/* =============================================================
   Veyra Growth — Stylesheet
   Mobile-first. Dark base, off-white contrast, single accent.
   ============================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Palette */
  --bg:        #0A0A0B;
  --bg-alt:    #0E0E10;
  --surface:   #141417;
  --surface-2: #1B1B1F;
  --line:      rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.18);

  --text:      #F5F5F3;
  --text-mid:  #B4B4B0;
  --text-dim:  #8A8A86;

  --accent:      #D7FF3E;   /* electric chartreuse — the single signal colour */
  --accent-ink:  #0A0A0B;   /* text on accent */
  --accent-soft: rgba(215, 255, 62, 0.12);

  /* Type */
  --font-display: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono:    ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

  /* Layout */
  --container: 1140px;
  --gutter: 22px;
  --radius: 14px;
  --radius-lg: 20px;

  --nav-h: 68px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 24px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "cv05", "ss01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* clip (not hidden) so body doesn't become its own scroll container */
  overflow-x: clip;
}

@supports not (overflow-x: clip) {
  html { overflow-x: hidden; }
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

img, svg { display: block; max-width: 100%; }

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(64px, 11vw, 128px);
  border-top: 1px solid var(--line);
}
.section--tight { padding-block: clamp(52px, 8vw, 92px); }
.section--alt { background: var(--bg-alt); }

.section__head {
  max-width: 720px;
  margin-bottom: clamp(36px, 6vw, 60px);
}
.section__index {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 18px;
}
.section__title {
  font-size: clamp(1.9rem, 5vw, 3rem);
}
.section__desc {
  margin-top: 18px;
  color: var(--text-mid);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  max-width: 60ch;
}
.section__desc strong { color: var(--text); font-weight: 600; }

.accent-text { color: var(--accent); }

/* Line breaks that only apply on wider screens */
.br-lg { display: none; }
@media (min-width: 700px) {
  .br-lg { display: inline; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.eyebrow--center { justify-content: center; }
.eyebrow__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--text);
  --btn-fg: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background 0.2s var(--ease),
              color 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
}
.btn:hover {
  --btn-bg: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -12px rgba(215, 255, 62, 0.5);
}
.btn:active { transform: translateY(0); }

.btn--lg { padding: 16px 28px; font-size: 1rem; }
.btn--sm { padding: 10px 16px; font-size: 0.85rem; }
.btn--block { width: 100%; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  border-color: var(--text);
  box-shadow: none;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), height 0.3s var(--ease);
}
.nav.is-scrolled {
  height: 60px;
  border-bottom-color: var(--line);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 1.02rem;
  flex-shrink: 0;
}
.nav__mark { color: var(--accent); }
.nav__links {
  display: none;
  gap: 30px;
  font-size: 0.92rem;
  color: var(--text-mid);
}
.nav__links a:hover { color: var(--text); }
.nav__links a.is-active { color: var(--text); }
.nav__cta { display: none; }

.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  padding: 0 9px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--text);
  transition: transform 0.28s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 auto 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 18px var(--gutter) 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.mobile-menu:not([hidden]) {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu__links {
  display: flex;
  flex-direction: column;
}
.mobile-menu__links a {
  padding: 14px 2px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--line);
}
.mobile-menu__links a:hover { color: var(--text); }

body.menu-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(56px, 14vw, 128px));
  padding-bottom: clamp(64px, 12vw, 130px);
  overflow: hidden;
}
.hero__inner { position: relative; z-index: 2; }
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 0%, transparent 78%);
  opacity: 0.5;
}
.hero__title {
  margin-top: 22px;
  font-size: clamp(2.55rem, 8.2vw, 5rem);
  font-weight: 600;
}
.hero__sub {
  margin-top: 22px;
  max-width: 46ch;
  color: var(--text-mid);
  font-size: clamp(1.05rem, 2.6vw, 1.3rem);
}
.hero__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero__cred {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}
.hero__cred-mark {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(215, 255, 62, 0.4);
  color: var(--accent);
  font-size: 0.7rem;
  line-height: 1;
}
.hero__levers {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}
.lever-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-mono);
}
.lever-chip__label {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--text);
}
.lever-chip__arrow {
  font-size: 1.05rem;
  font-family: var(--font-body);
  color: var(--accent);
}
.lever-chip__sep {
  width: 1px;
  height: 18px;
  background: var(--line-strong);
}
.lever-chip__sr {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Problem ---------- */
.problem__grid {
  display: grid;
  gap: 40px;
}
.problem__lead {
  font-size: clamp(1.15rem, 3vw, 1.6rem);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--text);
  max-width: 24ch;
}
.problem__list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.problem__list li {
  display: grid;
  gap: 4px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.problem__k {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
}
.problem__v { color: var(--text-mid); }

/* ---------- Growth funnel ---------- */
.funnel-section { background: var(--bg-alt); }
.funnel {
  display: grid;
  gap: 44px;
}
.funnel__stages {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
}
.funnel__stage {
  --w: 100%;
  width: min(var(--w), 100%);
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}
.funnel__stage:hover {
  border-color: var(--line-strong);
  background: var(--surface-2);
}
.funnel__stage:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 10px;
  margin-top: 68px; /* visual connector hint */
  background: var(--line-strong);
}
.funnel__stage--end {
  background: var(--accent-soft);
  border-color: rgba(215, 255, 62, 0.35);
}
.funnel__idx {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.funnel__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.98rem, 2.6vw, 1.12rem);
}
.funnel__note {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-align: right;
}
.funnel__stage--end .funnel__note { color: var(--text-mid); }

.funnel__levers {
  display: grid;
  gap: 16px;
}
.lever {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 8px;
  align-content: start;
}
.lever__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lever__code {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--text-mid);
}
.lever__arrow {
  font-size: 1.3rem;
  line-height: 1;
  color: var(--accent);
}
.lever__title {
  font-size: 1.15rem;
  font-weight: 600;
}
.lever__body {
  color: var(--text-mid);
  font-size: 0.95rem;
}
.lever__span {
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--text-dim);
}

/* ---------- Services cards ---------- */
.cards {
  display: grid;
  gap: 18px;
}
.card {
  padding: clamp(24px, 4vw, 34px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
}
.card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}
.card--feature {
  background: var(--surface-2);
  border-color: rgba(215, 255, 62, 0.28);
}
.card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.card__code {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--text-dim);
}
.card__lever {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  padding: 4px 10px;
  border: 1px solid rgba(215, 255, 62, 0.3);
  border-radius: 999px;
}
.card__title {
  font-size: clamp(1.4rem, 3.4vw, 1.75rem);
}
.card__sub {
  margin-top: 8px;
  color: var(--text-mid);
  font-size: 0.98rem;
}
.card__list {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 11px;
}
.card__list li {
  position: relative;
  padding-left: 20px;
  color: var(--text);
  font-size: 0.96rem;
}
.card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 1px;
  transform: rotate(45deg);
}

/* ---------- Process ---------- */
.process {
  display: grid;
  gap: 16px;
  counter-reset: step;
}
.process__step {
  padding: clamp(22px, 3.5vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  display: grid;
  gap: 8px;
}
.process__num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.process__title {
  font-size: 1.3rem;
  font-weight: 600;
}
.process__body {
  color: var(--text-mid);
  font-size: 0.96rem;
  max-width: 46ch;
}

/* ---------- Experience / Stillmere ---------- */
.experience__card {
  padding: clamp(26px, 5vw, 48px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.experience__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--accent);
}
.experience__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.experience__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: -0.02em;
}
.experience__tags {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}
.experience__grid {
  display: grid;
  gap: 0;
  margin: 8px 0 24px;
}
.experience__grid li {
  display: flex;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.experience__k {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  width: 76px;
  flex-shrink: 0;
  padding-top: 2px;
}
.experience__v {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
}
.experience__note {
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 62ch;
}

/* ---------- Offer ---------- */
.offer {
  display: grid;
  gap: 40px;
}
.offer__intro .section__index { margin-bottom: 16px; }
.offer__desc {
  margin: 20px 0 30px;
  color: var(--text-mid);
  max-width: 44ch;
  font-size: 1.05rem;
}
.offer__includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.offer__includes li {
  background: var(--surface);
  padding: 18px 18px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.offer__includes li::before {
  content: "→";
  color: var(--accent);
  font-size: 0.9rem;
}

/* ---------- Who it's for ---------- */
.who__lead {
  font-size: clamp(1.1rem, 2.6vw, 1.35rem);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 400;
  margin-bottom: 12px;
}
.who__list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.who__list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  letter-spacing: -0.01em;
}
.who__list li span { color: var(--accent); }

/* ---------- FAQ ---------- */
.faq {
  border-top: 1px solid var(--line);
  max-width: 820px;
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 44px 24px 0;
  position: relative;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.05rem, 2.6vw, 1.25rem);
  letter-spacing: -0.01em;
  transition: color 0.2s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent); }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--text-dim);
  transition: transform 0.25s var(--ease), color 0.2s var(--ease);
}
.faq__item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  color: var(--accent);
}
.faq__body {
  padding: 0 44px 26px 0;
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 66ch;
}

/* ---------- Final CTA ---------- */
.final-cta {
  border-top: 1px solid var(--line);
  padding-block: clamp(72px, 14vw, 150px);
  text-align: center;
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, var(--accent-soft), transparent 70%),
    var(--bg-alt);
}
.final-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.final-cta__title {
  margin-top: 20px;
  font-size: clamp(2rem, 6.4vw, 3.6rem);
}
.final-cta__sub {
  margin-top: 20px;
  max-width: 52ch;
  color: var(--text-mid);
  font-size: clamp(1.02rem, 2.4vw, 1.2rem);
}
.final-cta .btn { margin-top: 34px; }
.final-cta__meta {
  margin-top: 26px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--text-dim);
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding-block: 44px;
  background: var(--bg);
}
.footer__inner {
  display: grid;
  gap: 24px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__brand .nav__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
}
.footer__tag {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.footer__links a:hover { color: var(--text); }
.footer__legal {
  font-size: 0.82rem;
  color: var(--text-dim);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}
.footer__legal a { color: var(--text-mid); }
.footer__legal a:hover { color: var(--text); }

/* ---------- Reveal animation ----------
   The hidden state only applies when JS is running (html.js). If JS fails
   or is disabled, content stays fully visible. main.js also has a failsafe
   that reveals everything if IntersectionObserver never fires. */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

/* =============================================================
   Responsive — tablet
   ============================================================= */
@media (min-width: 700px) {
  :root { --gutter: 32px; }

  .problem__grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: start;
  }
  .problem__lead { max-width: none; }

  .cards { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .process { grid-template-columns: repeat(2, 1fr); }

  .funnel__levers { grid-template-columns: repeat(3, 1fr); }

  .footer__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .footer__legal { grid-column: 1 / -1; }
}

/* =============================================================
   Responsive — desktop
   ============================================================= */
@media (min-width: 1000px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
  .mobile-menu { display: none; }

  .funnel {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 56px;
    align-items: start;
  }
  .funnel__stages { align-items: flex-start; }
  .funnel__stage { width: var(--w); }
  .funnel__stage:not(:last-child)::after { left: 34px; }
  .funnel__levers {
    grid-template-columns: 1fr;
    position: sticky;
    top: calc(var(--nav-h) + 30px);
  }

  .offer {
    grid-template-columns: 1fr 0.9fr;
    gap: 64px;
    align-items: center;
  }

  .process { grid-template-columns: repeat(4, 1fr); }

  .experience__grid { grid-template-columns: repeat(2, 1fr); gap: 0 40px; }
  .experience__grid li:nth-last-child(2) { border-bottom: 1px solid var(--line); }
}

@media (min-width: 1240px) {
  :root { --gutter: 24px; }
}

/* =============================================================
   Motion / accessibility preferences
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* Fallback if backdrop-filter unsupported */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav { background: var(--bg); }
}

/* color-mix fallback */
@supports not (background: color-mix(in srgb, red, blue)) {
  .nav { background: rgba(10, 10, 11, 0.9); }
}
