/* Syntervo — refined static styles */

/* Forest green palette */
:root {
  --forest-deep: #061810;
  --forest: #0a241c;
  --green-bg: #123d2e;
  --green-mid: #1a523f;
  --green-card: #0e3024;
  --green-border: #2d6b52;
  --green-border-soft: rgba(45, 107, 82, 0.4);
  --accent: #22e8a8;
  --accent-hover: #4df5bc;
  --sage: #9fd4b8;
  --mint: #c8f0dc;
  --text: #f2faf6;
  --text-secondary: #a8c9b8;
  --text-tertiary: #7aad92;

  --bg: var(--forest);
  --surface: var(--green-bg);
  --surface-hover: var(--green-mid);
  --line: var(--green-border-soft);
  --line-subtle: rgba(45, 107, 82, 0.25);
  --line-accent: rgba(34, 232, 168, 0.4);
  --accent-dim: rgba(34, 232, 168, 0.85);
  --accent-ghost: rgba(34, 232, 168, 0.1);
  --glow: rgba(34, 232, 168, 0.18);
  --glow-sage: rgba(127, 200, 160, 0.2);

  --radius: 10px;
  --radius-lg: 14px;
  --header-h: 76px;
  --max: 1040px;
  --max-narrow: 680px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --section-y: clamp(5.5rem, 12vw, 8.5rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-secondary);
  background: linear-gradient(165deg, var(--forest-deep) 0%, var(--forest) 35%, var(--green-bg) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: var(--bg);
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(100% - 3rem, var(--max));
  margin-inline: auto;
}

/* --- Ambient --- */
.bg-glow {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  filter: blur(120px);
}

.bg-glow--hero {
  width: min(100vw, 880px);
  height: min(75vh, 580px);
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse 65% 55% at 50% 45%, var(--glow) 0%, transparent 70%);
  opacity: 1;
}

.bg-glow--edge {
  width: 420px;
  height: 420px;
  bottom: 5%;
  right: -5%;
  background: radial-gradient(circle, var(--glow-sage) 0%, transparent 68%);
  opacity: 0.85;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line-subtle) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-subtle) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 75% 50% at 50% 12%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 75% 50% at 50% 12%, black 0%, transparent 70%);
  opacity: 0.35;
}

/* --- Header --- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}

.header--scrolled {
  background: rgba(10, 36, 28, 0.9);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid var(--line-subtle);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: inline-flex;
  align-items: center;
  z-index: 101;
  line-height: 0;
}

.logo__img {
  display: block;
  height: 34px;
  width: auto;
  max-width: min(204px, 48vw);
  object-fit: contain;
  object-position: left center;
  /* Logo file is white on black — blend black away on dark backgrounds */
  mix-blend-mode: lighten;
}

.logo--footer .logo__img {
  height: 32px;
  max-width: 185px;
  opacity: 0.92;
}

.logo--footer:hover .logo__img {
  opacity: 1;
}

/* --- Nav --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 36px;
  height: 36px;
  z-index: 101;
}

.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--text);
  margin-left: auto;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__list {
  display: flex;
  gap: 2.25rem;
}

.nav__link {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--text-tertiary);
  transition: color 0.25s var(--ease);
}

.nav__link:hover,
.nav__link:focus-visible,
.nav__link--active {
  color: var(--text);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.625rem 1.25rem;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), opacity 0.25s var(--ease);
}

.btn:focus-visible {
  outline: 1px solid var(--accent-dim);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--accent);
  color: var(--forest-deep);
  border-color: transparent;
}

.btn--primary:hover {
  background: var(--accent-hover);
}

.btn--ghost {
  color: var(--text-secondary);
  border-color: var(--line);
  background: transparent;
}

.btn--ghost:hover {
  color: var(--text);
  border-color: var(--line-accent);
  background: var(--accent-ghost);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.btn__arrow {
  font-size: 0.875rem;
  opacity: 0.7;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.btn--primary:hover .btn__arrow {
  transform: translateX(2px);
  opacity: 1;
}

/* --- Hero --- */
.hero {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 4rem) 0 6rem;
  background: linear-gradient(180deg, var(--forest-deep) 0%, var(--green-bg) 55%, var(--green-mid) 100%);
}

.hero__inner {
  text-align: center;
  max-width: var(--max-narrow);
  margin-inline: auto;
}

.pill {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
}

.hero__title {
  font-size: clamp(2.125rem, 5.2vw, 3.25rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.045em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.hero__emph {
  font-style: normal;
  color: var(--accent);
  font-weight: 500;
}

.hero__sub {
  font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 34rem;
  margin: 0 auto 2.75rem;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero__visual {
  margin: 0 auto 3rem;
  max-width: 520px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--green-border);
  overflow: hidden;
  background: var(--green-card);
}

.hero__visual img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* --- Illustration blocks (teasers, cards) --- */
.visual {
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--green-border);
  overflow: hidden;
  background: var(--green-card);
  aspect-ratio: 16 / 9;
}

.visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Metrics --- */
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--green-border);
}

.metric {
  position: relative;
  padding: 1.5rem 1.25rem 1.35rem;
  text-align: center;
  border: 1px solid var(--green-border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(165deg, rgba(34, 232, 168, 0.06) 0%, transparent 42%),
    var(--green-card);
  transition:
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.metric::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, var(--glow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
  pointer-events: none;
}

.metric:hover {
  border-color: var(--line-accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.22);
}

.metric:hover::before {
  opacity: 1;
}

.metric__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 auto 1rem;
  border-radius: var(--radius);
  background: var(--accent-ghost);
  border: 1px solid var(--line-accent);
  color: var(--accent);
}

.metric__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.teaser-grid--hero {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--green-border);
  text-align: left;
}

.metric__num {
  display: block;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.4rem;
  opacity: 0.9;
}

.metric__label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.metric__detail {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  line-height: 1.5;
  max-width: 14rem;
  margin-inline: auto;
}

/* --- Sections --- */
.section {
  position: relative;
  z-index: 1;
  padding: var(--section-y) 0;
}

.section--divider {
  border-top: 1px solid var(--line-subtle);
}

.section--surface {
  background: linear-gradient(180deg, var(--green-bg) 0%, var(--green-mid) 100%);
}

.section--compact-top {
  padding-top: clamp(3.25rem, 6.5vw, 4.75rem);
}

.section--compact-top--slight {
  padding-top: clamp(1rem, 2vw, 1.5rem);
}

.section--page-start {
  padding-top: calc(var(--header-h) + 3rem);
}

.page-intro {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 2.75rem) 0 0.75rem;
  text-align: center;
  background: linear-gradient(180deg, var(--forest-deep) 0%, var(--green-bg) 70%, var(--green-bg) 100%);
}

.page-intro + .section--compact-top--slight {
  padding-top: 0.75rem;
}

.section--surface.section--compact-top--slight:has(+ .section--compact) {
  padding-bottom: clamp(1.25rem, 2.5vw, 2rem);
}

.prose--section.prose--centered {
  gap: 0;
}

.prose--section .prose__title {
  margin-bottom: 0.75rem;
}

.page-intro__title {
  max-width: 28rem;
  margin-inline: auto;
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 0;
}

.page-intro__sub {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 32rem;
}

.section--compact {
  padding: clamp(2.75rem, 5.5vw, 4rem) 0;
}

.section--compact .section__header {
  margin-bottom: 2rem;
}

.section--compact .step {
  padding: 1.35rem 0;
  gap: 1.5rem;
}

.section--process {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.section--process .section__header {
  margin-bottom: 2rem;
}

.section--process .step {
  padding: 1.35rem 0;
}

.section--compact:has(+ .section--process) {
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.section--surface:has(+ .section--compact) {
  padding-bottom: clamp(2.75rem, 5.5vw, 4rem);
}

/* About: less gap between hero graphic and prose section */
.page-hero:has(+ .section--compact-top) {
  padding-bottom: 2rem;
}

.section--surface .section__eyebrow {
  color: var(--mint);
}

.section__header--follow {
  margin-top: clamp(4.5rem, 9vw, 6.5rem);
}

.section__header {
  max-width: 28rem;
  margin-bottom: 3.75rem;
}

.section__eyebrow {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dim);
  margin-bottom: 1rem;
}

.section__title {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 0.875rem;
}

.section__desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.section__header--center {
  text-align: center;
  max-width: 32rem;
  margin-inline: auto;
}

/* --- Page hero (inner pages) --- */
.page-hero {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 4.5rem) 0 4rem;
  background: linear-gradient(180deg, var(--forest-deep) 0%, var(--green-bg) 100%);
}

.page-hero--short {
  padding-bottom: 2.5rem;
}

.page-hero__inner {
  max-width: var(--max-narrow);
}

.page-hero__title {
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.page-hero__sub {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 32rem;
}

.page-hero__visual {
  margin-top: 2.5rem;
  max-width: 480px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--green-border);
  overflow: hidden;
  background: var(--green-card);
}

.page-hero__visual img {
  display: block;
  width: 100%;
  height: auto;
}

/* --- Teaser grid (home) --- */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.teaser {
  display: block;
  padding: 2rem 1.75rem;
  border: 1px solid var(--green-border);
  border-radius: var(--radius-lg);
  background: var(--green-card);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.teaser:hover {
  border-color: var(--accent);
  background: var(--forest);
}

.teaser__num {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  margin-bottom: 1.25rem;
}

.teaser__title {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.teaser__text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.teaser__link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent);
}

/* --- CTA band --- */
.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
  border: 1px solid var(--green-border);
  border-radius: var(--radius-lg);
  background: var(--green-card);
}

.cta-band__text {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 28rem;
}

/* --- Prose (about) --- */
.prose {
  display: grid;
  gap: 3rem;
  max-width: 36rem;
}

.prose__title {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1rem;
}

.prose__block p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.prose__block p:last-child {
  margin-bottom: 0;
}

.prose--section {
  max-width: 40rem;
}

.prose--centered {
  margin-inline: auto;
  text-align: center;
}

.founder-profile {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
  max-width: 52rem;
}

.founder-profile__media {
  position: relative;
  isolation: isolate;
  margin: 0;
  border: 2px solid rgba(34, 232, 168, 0.55);
  border-radius: var(--radius-lg);
  overflow: visible;
  background: var(--green-card);
  box-shadow:
    0 0 10px rgba(34, 232, 168, 0.11),
    0 0 18px rgba(34, 232, 168, 0.05);
}

.founder-profile__media img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  border-radius: calc(var(--radius-lg) - 2px);
  filter: brightness(0.94) saturate(0.94);
}

.founder-profile__media::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: calc(var(--radius-lg) - 2px);
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    165deg,
    rgba(18, 61, 46, 0.1) 0%,
    rgba(6, 24, 16, 0.22) 100%
  );
  mix-blend-mode: multiply;
}

.founder-profile__name {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.founder-profile__role {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-dim);
  margin-bottom: 1.25rem;
}

.founder-profile__body p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.founder-profile__body p:last-child {
  margin-bottom: 0;
}

.steps--wide {
  max-width: 42rem;
}

/* --- Contact info --- */
.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 40rem;
  margin-inline: auto;
}

.contact-info__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.contact-info__item p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --- Service cards --- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--green-border);
  border: 1px solid var(--green-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.card {
  padding: 2.25rem 2rem 2.5rem;
  background: var(--green-card);
  transition: background 0.35s var(--ease);
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.card:hover {
  background: var(--forest);
}

.card .visual {
  margin: -2.25rem -2rem 1.5rem;
  width: calc(100% + 4rem);
  max-width: none;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
}

/* Dashboard mockup — inset padding; ambient overlays match page glow/grid */
.card .visual.visual--screenshot {
  --visual-inset: 0.75rem;
  position: relative;
  isolation: isolate;
  aspect-ratio: 3 / 2;
  padding: var(--visual-inset);
  box-sizing: border-box;
  background: var(--green-card);
  overflow: visible;
}

.card .visual.visual--screenshot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: none;
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 0 1px rgba(34, 232, 168, 0.28),
    0 0 18px var(--glow),
    0 0 40px rgba(34, 232, 168, 0.09);
}

/* Hero-style glow + edge vignette (same tokens as .bg-glow / page atmosphere) */
.card .visual.visual--screenshot::before {
  content: '';
  position: absolute;
  z-index: 1;
  inset: var(--visual-inset);
  border-radius: var(--radius-lg);
  pointer-events: none;
  background:
    radial-gradient(ellipse 65% 55% at 50% 22%, var(--glow) 0%, transparent 70%),
    radial-gradient(circle at 88% 92%, var(--glow-sage) 0%, transparent 52%),
    radial-gradient(ellipse 95% 88% at 50% 50%, transparent 38%, rgba(6, 24, 16, 0.7) 100%);
  mix-blend-mode: soft-light;
}

/* Grid wash — mirrors .bg-grid mask on the image area */
.card .visual.visual--screenshot::after {
  content: '';
  position: absolute;
  z-index: 2;
  inset: var(--visual-inset);
  border-radius: var(--radius-lg);
  pointer-events: none;
  background-image:
    linear-gradient(var(--line-subtle) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-subtle) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 75% 50% at 50% 18%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 75% 50% at 50% 18%, black 0%, transparent 70%);
  opacity: 0.35;
}

.card__index {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  margin-bottom: 1.75rem;
}

.card__title {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card__text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.card__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--green-border);
}

.card__list li {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  padding-left: 0.875rem;
  position: relative;
}

.card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--line-accent);
  font-size: 0.75rem;
}

/* --- Process --- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 36rem;
}

.step {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 2rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--green-border);
}

.step:first-child {
  padding-top: 0;
}

.step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.step__num {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
  padding-top: 0.15rem;
}

.step__title {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.step__text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --- Proof --- */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.proof {
  padding-left: 1.25rem;
  border-left: 1px solid var(--line-accent);
  transition: border-color 0.35s var(--ease);
}

.proof:hover {
  border-left-color: var(--accent-dim);
}

.proof__cat {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 1rem;
}

.proof__title {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 0.625rem;
}

.proof__text {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --- Contact --- */
.page-hero--short:has(+ .section--contact) {
  padding-bottom: 1.25rem;
}

.section--contact {
  padding-top: clamp(1rem, 2vw, 1.5rem);
  padding-bottom: calc(var(--section-y) + 1rem);
}

.contact {
  text-align: center;
  max-width: 32rem;
  margin-inline: auto;
  padding: 3.5rem 2rem;
  border: 1px solid var(--green-border);
  border-radius: var(--radius-lg);
  background: var(--green-card);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 100%;
  background: radial-gradient(ellipse at center top, rgba(34, 232, 168, 0.14) 0%, transparent 55%);
  pointer-events: none;
}

.contact__title,
.contact__text,
.contact__success,
.contact-form,
.contact__note {
  position: relative;
}

.contact__title {
  font-size: clamp(1.375rem, 3vw, 1.625rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.contact__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.contact__success {
  text-align: left;
  margin-bottom: 1.5rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line-accent);
  border-radius: var(--radius);
  background: var(--accent-ghost);
}

.contact__success-title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.contact__success-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-form {
  text-align: left;
}

.contact-form__honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-field {
  margin-bottom: 1.1rem;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}

.form-input {
  display: block;
  width: 100%;
  font-family: var(--font);
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text);
  background: var(--forest);
  border: 1px solid var(--green-border);
  border-radius: var(--radius);
  padding: 0.65rem 0.85rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.form-input::placeholder {
  color: var(--text-tertiary);
}

.form-input:hover {
  border-color: var(--line-accent);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(34, 232, 168, 0.15);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237aad92' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.25rem;
  cursor: pointer;
}

.form-select option {
  background: var(--forest);
  color: var(--text);
}

.form-textarea {
  resize: vertical;
  min-height: 7.5rem;
}

.btn--block {
  width: 100%;
  margin-top: 0.35rem;
}

.contact__note {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
}

.contact__email-link {
  color: var(--accent);
  transition: opacity 0.25s var(--ease);
}

.contact__email-link:hover {
  opacity: 0.85;
}

/* --- Footer --- */
.footer {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--green-border);
  background: var(--forest-deep);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 2rem 3rem;
  align-items: start;
}

.footer__tagline {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  max-width: 16rem;
  line-height: 1.55;
}

.footer__nav {
  display: flex;
  gap: 1.75rem;
  align-self: center;
}

.footer__nav a {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  transition: color 0.25s var(--ease);
}

.footer__nav a:hover {
  color: var(--accent);
}

.footer__copy {
  grid-column: 1 / -1;
  font-size: 0.75rem;
  color: var(--text-tertiary);
  padding-top: 2rem;
  border-top: 1px solid var(--green-border);
}

/* --- Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--d1 { transition-delay: 0.08s; }
.reveal--d2 { transition-delay: 0.16s; }
.reveal--d3 { transition-delay: 0.24s; }
.reveal--d4 { transition-delay: 0.32s; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .cards,
  .proof-grid,
  .teaser-grid,
  .contact-info {
    grid-template-columns: 1fr;
  }

  .card + .card {
    border-top: none;
  }

  .metrics {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .metric {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 1rem;
    row-gap: 0.15rem;
    padding: 1.25rem 1.15rem;
    text-align: left;
  }

  .metric__icon {
    grid-row: 1 / span 3;
    margin: 0;
    align-self: center;
  }

  .metric__num {
    grid-column: 2;
    margin-bottom: 0;
  }

  .metric__label {
    grid-column: 2;
    margin-bottom: 0;
  }

  .metric__detail {
    grid-column: 2;
    margin-inline: 0;
    max-width: none;
  }
}

@media (max-width: 768px) {
  :root { --header-h: 72px; }

  .logo__img {
    height: 27px;
    max-width: 149px;
  }

  .hero__visual {
    max-width: 100%;
    margin-bottom: 2.5rem;
  }

  .container {
    width: min(100% - 2rem, var(--max));
  }

  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    background: rgba(6, 24, 16, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
  }

  .nav__link { font-size: 0.9375rem; }

  .nav__cta { min-width: 200px; }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 3rem);
    padding-bottom: 4.5rem;
  }

  .section__header { margin-bottom: 2.75rem; }

  .step {
    grid-template-columns: 2.5rem 1fr;
    gap: 1.25rem;
  }

  .footer__inner { grid-template-columns: 1fr; }

  .founder-profile {
    grid-template-columns: 1fr;
    max-width: 28rem;
  }

  .founder-profile__media {
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn { width: 100%; }

  .contact { padding: 2.5rem 1.5rem; }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover .btn__arrow { transform: none; }
}
