/* ============================================================
   Ethos Ink Media — "The House" (v2, light theme)
   Static port of the approved design handoff. The prototype's
   CSS-in-JS (`v2Css`) + inline styles are translated here into a
   real stylesheet. Tokens below are the LIGHT theme resolved to
   fixed values (the shipped build passes theme="light").
   Palette: sage ground · dark-green ink · burnt-orange accent ·
   lime highlighter · dark-green inset as the inversion.
   ============================================================ */

/* ---- reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
body {
  font-family: 'IBM Plex Sans', sans-serif;
  background: #eaf0e6;                 /* LIGHT.bg — sage ground */
  color: #1f2e25;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ============================================================
   Design tokens (light theme, resolved + runtime-injected accents)
   ============================================================ */
.v2-wrap {
  --v2-pop: #dbe85a;                    /* lime highlighter */
  --v2-bg: #eaf0e6;                     /* page ground */
  --v2-panel: #dde7d8;                  /* raised full-bleed panels */
  --v2-fg: #1f2e25;                     /* primary ink (dark green) */
  --v2-fg-soft: rgba(31,46,37,0.74);
  --v2-fg-mute: rgba(31,46,37,0.5);
  --v2-rule: rgba(31,46,37,0.16);
  --v2-rule-soft: rgba(31,46,37,0.1);
  --v2-surface: #16271c;                /* dark pills (nav/team CTA) */
  --v2-on-surface: #fdfaf2;
  --v2-chip: #16271c;
  --v2-chip-soft: rgba(31,46,37,0.07);
  --v2-inset-bg: #16271c;               /* the ethos inset — inverts to dark */
  --v2-inset-fg: #fdfaf2;
  --v2-inset-fg-soft: rgba(253,250,242,0.78);
  --v2-inset-shadow: rgba(31,46,37,0.3);
  --v2-card-bg: #fbfdf8;                /* near-white cards */
  --v2-card-border: rgba(31,46,37,0.12);
  /* injected accents (accentOrange #c5481a on a neutral ground) */
  --v2-accent: #c5481a;
  --v2-cta-bg: #c5481a;
  --v2-cta-fg: #fdfaf2;
  --v2-feature: #c5481a;
  --arm-hq: #1d6b46;                    /* HQ arm (light-theme deep green) */

  font-family: 'IBM Plex Sans', sans-serif;
  background: var(--v2-bg);
  color: var(--v2-fg);
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: clip;
}

.v2-wrap h1, .v2-wrap h2, .v2-wrap h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* ---- shared type / marks ---- */
.v2-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--v2-fg-mute);
}
.v2-label--pop { color: var(--v2-pop); }
.v2-mark {
  background: var(--v2-pop); color: #16271c;
  padding: 0.02em 0.16em; border-radius: 4px;
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
}
.v2-rule { height: 1px; background: var(--v2-rule); border: 0; margin: 0; }

/* ---- eyebrow (dot + label) ---- */
.v2-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--v2-accent);
}
.v2-eyebrow .v2-dot,
.v2-eyebrow .v2-burst {
  width: 8px; height: 8px; border-radius: 999px; background: var(--v2-accent);
  flex-shrink: 0;
}
.v2-dot { box-shadow: 0 0 6px 0 var(--v2-accent); }
.v2-burst {
  box-shadow: 0 0 7px 1px var(--v2-accent);
  animation: v2burst 1.6s cubic-bezier(.4,0,.2,1) infinite;
}
@keyframes v2burst {
  0%   { box-shadow: 0 0 0 0 var(--v2-accent), 0 0 6px 1px var(--v2-accent); }
  70%  { box-shadow: 0 0 0 10px rgba(0,0,0,0), 0 0 9px 2px var(--v2-accent); }
  100% { box-shadow: 0 0 0 0 rgba(0,0,0,0), 0 0 6px 1px var(--v2-accent); }
}
@keyframes v2pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

/* ---- CTAs ---- */
.v2-cta { transition: transform .16s, box-shadow .22s, background .2s, color .2s; }
.v2-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(0,0,0,0.6); }

/* pill: dark surface (nav "Book intro call", team "Meet the team") */
.v2-pill-surface {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--v2-surface); color: var(--v2-on-surface);
  text-decoration: none; border-radius: 999px; font-weight: 600;
}
/* pill: accent-filled (hero "See the two paths") */
.v2-pill-accent {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--v2-cta-bg); color: var(--v2-cta-fg);
  padding: 19px 28px; border-radius: 999px;
  text-decoration: none; font-size: 16px; font-weight: 600;
}
.v2-pill-accent .v2-pill-icon {
  width: 30px; height: 30px; border-radius: 999px;
  background: var(--v2-cta-fg); color: var(--v2-cta-bg);
  display: grid; place-items: center; font-weight: 700;
}

/* ---- nav links (animated underline) ---- */
.v2-navlink {
  position: relative; color: var(--v2-fg-soft);
  text-decoration: none; transition: color .2s;
}
.v2-navlink:hover { color: var(--v2-fg); }
.v2-navlink::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: var(--v2-accent); transform: scaleX(0); transform-origin: left;
  transition: transform .28s cubic-bezier(.22,.7,.25,1);
}
.v2-navlink:hover::after { transform: scaleX(1); }

/* ============================================================
   Nav
   ============================================================ */
.v2-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 48px; border-bottom: 1px solid var(--v2-rule-soft);
  position: relative; z-index: 20;
}
.v2-wordmark {
  text-decoration: none; display: inline-flex; align-items: baseline;
  gap: 9px; line-height: 1; white-space: nowrap;
}
.v2-wordmark-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 25px; font-weight: 600; color: var(--v2-fg); letter-spacing: -0.01em;
}
.v2-wordmark-media {
  display: inline-flex; flex-direction: column; align-items: flex-start; gap: 2px;
}
.v2-wordmark-media > span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 24px; font-weight: 700; letter-spacing: 0.1em; color: var(--v2-fg);
}
.v2-nav-links { display: flex; gap: 34px; font-size: 14px; font-weight: 500; }
.v2-nav-cta {
  font-size: 13px; padding: 12px 18px 12px 16px;
}
.v2-nav-cta .v2-pulse-dot {
  width: 7px; height: 7px; border-radius: 999px; background: var(--v2-accent);
  animation: v2pulse 2s infinite;
}

/* ---- mobile: hamburger + drawer ---- */
.v2-burger {
  display: none; background: transparent; border: 0; width: 44px; height: 44px;
  padding: 0; cursor: pointer; position: relative; z-index: 30;
  align-items: center; justify-content: center;
}
.v2-burger span {
  position: absolute; left: 11px; width: 22px; height: 2px;
  background: var(--v2-fg); border-radius: 2px;
  transition: transform .3s cubic-bezier(.22,.7,.25,1), opacity .2s;
}
.v2-burger span:nth-child(1) { top: 16px; }
.v2-burger span:nth-child(2) { top: 22px; }
.v2-burger span:nth-child(3) { top: 28px; }
.v2-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.v2-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.v2-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.v2-drawer {
  position: fixed; inset: 0; background: var(--v2-bg); z-index: 15;
  display: flex; flex-direction: column; padding: 104px 26px 40px;
  opacity: 0; pointer-events: none; transform: translateY(-8px);
  transition: opacity .3s cubic-bezier(.22,.7,.25,1), transform .3s cubic-bezier(.22,.7,.25,1);
}
.v2-drawer[data-open="true"] { opacity: 1; pointer-events: auto; transform: none; }
.v2-drawer-link {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 34px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--v2-fg); text-decoration: none; padding: 16px 2px;
  border-bottom: 1px solid var(--v2-rule);
  display: flex; align-items: center; justify-content: space-between;
}
.v2-drawer-idx {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em; color: var(--v2-fg-mute);
}
.v2-drawer-cta {
  margin-top: auto; display: inline-flex; align-items: center; justify-content: center;
  gap: 12px; background: var(--v2-cta-bg); color: var(--v2-cta-fg);
  padding: 20px 24px; border-radius: 999px; text-decoration: none;
  font-size: 17px; font-weight: 600;
}
.v2-drawer-cta .v2-drawer-cta-dot {
  width: 8px; height: 8px; border-radius: 999px; background: var(--v2-cta-fg);
}
@media (min-width: 961px) { .v2-burger, .v2-drawer { display: none !important; } }

/* ============================================================
   Sections — generic
   ============================================================ */
.v2-wrap > section { padding: 90px 48px; }
.v2-textured { position: relative; }
.v2-textured > * { position: relative; z-index: 1; }

/* the tangle-to-order motif */
.v2-draw { display: block; max-width: 950px; width: 100%; height: 46px; }
.v2-draw .v2-spark {
  filter: drop-shadow(0 0 4px var(--v2-pop));
  animation: v2glow 2.2s ease-in-out infinite;
}
@keyframes v2glow {
  0%, 100% { filter: drop-shadow(0 0 3px var(--v2-pop)); }
  50%      { filter: drop-shadow(0 0 9px var(--v2-pop)); }
}

/* ---- Hero ---- */
.v2-hero { padding: 72px 48px 64px !important; }
.v2-hero-eyebrow { margin-bottom: 40px; }
.v2-h-xl {
  font-size: 132px; line-height: 0.9; margin: 0; color: var(--v2-fg);
  letter-spacing: -0.03em; text-transform: none;
}
.v2-hero-tangle { margin-top: 40px; max-width: 950px; }
.v2-hero-grid {
  margin-top: 44px; display: grid; grid-template-columns: 1.5fr 1fr;
  gap: 56px; align-items: end;
}
.v2-hero-lead {
  font-size: 21px; line-height: 1.5; color: var(--v2-fg-soft); margin: 0; max-width: 680px;
}
.v2-hero-lead strong { color: var(--v2-fg); font-weight: 500; }
.v2-hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.v2-hero-textlink { font-size: 15px; font-weight: 500; color: var(--v2-fg); }
/* light-theme highlighter band on "growth systems." */
.v2-pop-band {
  background: linear-gradient(180deg, transparent 56%, var(--v2-pop) 56% 92%, transparent 92%);
  padding: 0 0.04em; box-decoration-break: clone; -webkit-box-decoration-break: clone;
}
.v2-hero-caption {
  margin-top: 56px; border-top: 1px solid var(--v2-rule); padding-top: 16px;
  display: flex; flex-wrap: wrap;
}
.v2-hero-caption span {
  padding-right: 26px; margin-right: 26px; border-right: 1px solid var(--v2-rule);
}
.v2-hero-caption span:last-child { border-right: none; color: var(--v2-accent); }

/* ---- Approach ---- */
.v2-approach { background: var(--v2-panel); }
.v2-approach-head {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px;
  align-items: end; margin-bottom: 54px;
}
.v2-h-lg { line-height: 0.96; margin: 0; color: var(--v2-fg); }
.v2-approach-h2 { font-size: 60px; letter-spacing: -0.025em; }
.v2-approach-lead {
  font-size: 20px; line-height: 1.5; color: var(--v2-fg-soft); margin: 0; max-width: 540px;
}
.v2-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--v2-rule);
}
.v2-step { padding: 34px 30px 30px; }
.v2-step:not(:last-child) { border-right: 1px solid var(--v2-rule); }
.v2-step-num {
  font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; color: var(--v2-fg-mute); transition: color .3s;
}
.v2-step:hover .v2-step-num { color: var(--v2-accent); }
.v2-step h3 {
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 34px; font-weight: 600;
  color: var(--v2-fg); margin: 46px 0 0;
}
.v2-step p { font-size: 15.5px; line-height: 1.56; color: var(--v2-fg-soft); margin: 16px 0 0; }

/* ---- Index (two paths) ---- */
.v2-index { padding: 90px 48px 80px !important; }
.v2-index-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; margin-bottom: 44px;
}
.v2-index-h2 { font-size: 62px; max-width: 760px; letter-spacing: -0.03em; }
.v2-index-intro {
  font-size: 16px; line-height: 1.55; color: var(--v2-fg-soft); margin: 0; max-width: 340px;
}
.v2-index-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }

.v2-pathcard {
  position: relative; display: flex; flex-direction: column;
  background: var(--v2-card-bg); border: 1px solid var(--v2-card-border);
  border-radius: 22px; padding: 38px 36px 34px; overflow: hidden;
  text-decoration: none; color: var(--v2-fg);
  transition: transform .3s cubic-bezier(.22,.7,.25,1), box-shadow .3s, border-color .3s;
}
.v2-pathcard::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--arm);
}
.v2-pathcard:hover {
  transform: translateY(-6px); box-shadow: 0 30px 60px -36px rgba(0,0,0,0.45); border-color: var(--arm);
}
.v2-pathcard-top {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px;
}
.v2-pathkey {
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 62px; font-weight: 600;
  line-height: 0.9; letter-spacing: -0.025em; color: var(--arm);
}
.v2-pathcard-sub { color: var(--v2-fg-mute); margin-top: 12px; }
.v2-pathcard-divider { height: 1px; background: var(--v2-rule); margin: 26px 0 22px; }
.v2-pathcard-lockup {
  display: flex; align-items: baseline; gap: 9px; white-space: nowrap; margin-bottom: 12px;
}
.v2-pathcard-lockup .pre {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--v2-fg-mute);
}
.v2-pathcard-lockup .name {
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 27px; font-weight: 600;
  letter-spacing: -0.01em; color: var(--v2-fg);
}
.v2-pathcard-value { font-size: 17px; line-height: 1.5; color: var(--v2-fg); margin: 0 0 22px; font-weight: 500; }
.v2-pathcard-points { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.v2-pathcard-points li {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: 15px; line-height: 1.45; color: var(--v2-fg-soft);
}
.v2-pathcard-points li .check { color: var(--arm); font-weight: 700; flex-shrink: 0; }
.v2-pathcard-spacer { flex: 1; min-height: 30px; }
.v2-pathcard-foot { display: flex; align-items: center; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.v2-pathcard-explore {
  display: inline-flex; align-items: center; gap: 11px; padding: 15px 24px;
  background: var(--arm); color: var(--arm-fg); border-radius: 999px;
  font-size: 15px; font-weight: 600; width: fit-content;
}
.v2-pathgo { display: inline-block; transition: transform .3s cubic-bezier(.5,1.4,.4,1); }
.v2-pathcard:hover .v2-pathgo { transform: translate(4px,-4px); }
.v2-index-foot { padding: 30px 0 0; text-align: center; }
.v2-index-foot a { color: var(--v2-accent); font-weight: 600; font-size: 14px; text-decoration: none; }

/* ---- Ethos (cream/dark inset — the inversion) ---- */
.v2-ethos { padding: 48px 48px !important; }
.v2-inset {
  background: var(--v2-inset-bg); color: var(--v2-inset-fg);
  border-radius: 26px; padding: 72px 64px;
  box-shadow: 0 40px 80px -50px var(--v2-inset-shadow);
}
/* eyebrow inside the inset flips to accent on the inset bg */
.v2-inset .v2-eyebrow { margin-bottom: 26px; letter-spacing: 0.14em; }
.v2-ethos-quote {
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 58px; line-height: 1.04;
  margin: 0; color: var(--v2-inset-fg); font-weight: 500; letter-spacing: -0.025em; text-wrap: pretty;
}
.v2-ethos-quote-wrap { margin: 0; max-width: 1040px; }
.v2-ethos-grid { margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.v2-ethos-para { font-size: 18.5px; line-height: 1.6; color: var(--v2-inset-fg-soft); margin: 0; }
.v2-ethos-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.v2-ethos-list li { display: flex; gap: 14px; align-items: flex-start; }
.v2-ethos-list .bullet {
  width: 9px; height: 9px; border-radius: 999px; background: var(--v2-accent);
  margin-top: 8px; flex-shrink: 0;
}
.v2-ethos-list strong {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; font-size: 18px; color: var(--v2-inset-fg);
}
.v2-ethos-list .desc { color: var(--v2-inset-fg-soft); font-size: 16px; }

/* ---- Team ---- */
.v2-team { padding: 80px 48px 90px !important; }
.v2-team-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.v2-team-h2 { font-size: 52px; line-height: 1.0; letter-spacing: -0.02em; }
.v2-team-lead { font-size: 19px; line-height: 1.55; color: var(--v2-fg-soft); margin-top: 24px; max-width: 520px; }
.v2-team-lead strong { color: var(--v2-fg); font-weight: 600; }
.v2-team-cta { margin-top: 28px; padding: 15px 22px; font-size: 15px; }
.v2-team-cta .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--v2-accent); }
.v2-founders { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.v2-founder { transition: transform .4s cubic-bezier(.22,.7,.25,1), box-shadow .3s; }
.v2-founder:hover { transform: rotate(0deg) translateY(-4px) !important; }
.v2-founder-photo {
  aspect-ratio: 4 / 5; border-radius: 16px; border: 1.5px solid var(--v2-rule);
  display: grid; place-items: center; box-shadow: 0 24px 48px -30px rgba(0,0,0,0.7); overflow: hidden;
  background-color: #ece2cf;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 11px, rgba(58,42,24,0.05) 11px, rgba(58,42,24,0.05) 22px);
}
.v2-founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; }
.v2-founder-name { font-family: 'Bricolage Grotesque', sans-serif; font-size: 20px; font-weight: 600; color: var(--v2-fg); margin-top: 12px; }
.v2-founder-role { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.06em; color: var(--v2-accent); text-transform: uppercase; }

.v2-testimonial { margin-top: 72px; border-top: 1px solid var(--v2-rule); padding-top: 48px; }
.v2-testimonial-quotemark { font-family: 'Bricolage Grotesque', sans-serif; font-size: 64px; line-height: 0.6; color: var(--v2-accent); }
.v2-testimonial blockquote { margin: 8px 0 0; max-width: 1100px; }
.v2-testimonial p {
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 34px; line-height: 1.24; margin: 0;
  color: var(--v2-fg); font-weight: 400; letter-spacing: -0.015em; text-wrap: pretty;
}
.v2-testimonial-by { margin-top: 26px; display: flex; align-items: center; gap: 14px; }
.v2-testimonial-avatar {
  width: 44px; height: 44px; border-radius: 999px; background: var(--v2-chip-soft);
  border: 1px solid var(--v2-rule); display: grid; place-items: center;
  font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 13px; color: var(--v2-fg);
}
.v2-testimonial-name { font-size: 16px; font-weight: 600; color: var(--v2-fg); }
.v2-testimonial-title { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.04em; color: var(--v2-fg-mute); text-transform: uppercase; }

/* ---- Contact ---- */
.v2-contact { padding: 96px 48px !important; background: var(--v2-panel); color: var(--v2-fg); }
.v2-contact .v2-eyebrow { margin-bottom: 22px; letter-spacing: 0.14em; }
.v2-contact-h2 { font-size: 76px; line-height: 0.94; max-width: 1180px; letter-spacing: -0.03em; text-wrap: pretty; }
.v2-contact-lead { font-size: 20px; line-height: 1.5; color: var(--v2-fg-soft); margin-top: 28px; max-width: 720px; }
.v2-contact-body { margin-top: 44px; display: grid; grid-template-columns: 1fr; gap: 20px; }
.v2-calendly-frame {
  border-radius: 26px; overflow: hidden; border: 1px solid var(--v2-rule);
  box-shadow: 0 40px 80px -50px rgba(0,0,0,0.6); background: #fdfaf2;
}
.v2-calendly-frame .calendly-inline-widget { min-width: 320px; height: 720px; }
.v2-contact-email { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.v2-email-pill {
  display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--v2-fg);
  border: 1.5px solid var(--v2-fg-mute); padding: 13px 22px; border-radius: 999px;
  text-decoration: none; font-size: 15px; font-weight: 500;
}

/* ============================================================
   Footer (orange, cream text, paper grain)
   ============================================================ */
.m-footer {
  position: relative; background: var(--v2-accent); color: #fdfaf2;
  padding: 64px 60px 32px; font-family: 'IBM Plex Sans', sans-serif;
}
.m-footer::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1.4px);
  background-size: 22px 22px; opacity: .7;
}
.m-footer > * { position: relative; z-index: 1; }
.m-footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.1fr; gap: 48px; align-items: start; }
.m-footer .v2-wordmark-name,
.m-footer .v2-wordmark-media > span { color: #fdfaf2; }
.m-footer-tagline { font-size: 15px; line-height: 1.55; margin-top: 18px; max-width: 340px; color: rgba(253,250,242,0.86); }
.m-footer-cta {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; padding: 12px 18px;
  background: #fdfaf2; color: #3a2a18; text-decoration: none; border-radius: 999px;
  font-size: 13px; font-weight: 600;
}
.m-footer-cta .dot { width: 7px; height: 7px; border-radius: 999px; background: #ad3e12; }
.m-footer-col-title {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--v2-pop); margin-bottom: 18px; font-weight: 700;
}
.m-footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.m-footer-list a { font-size: 15px; color: #fdfaf2; text-decoration: none; }
.m-footer-list .sub { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: rgba(253,250,242,0.5); letter-spacing: 0.06em; }
.m-footer-bottom {
  margin-top: 56px; padding-top: 22px; border-top: 1px solid rgba(253,250,242,0.2);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; color: rgba(253,250,242,0.62); letter-spacing: 0.04em;
}
.m-footer-bottom a { color: inherit; text-decoration: none; }
.m-footer-bottom .links { display: flex; gap: 22px; }

/* ============================================================
   Motion / accessibility
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .v2-wrap *, .v2-wrap *::before, .v2-wrap *::after,
  .m-footer *, .m-footer *::before, .m-footer *::after {
    transition-duration: .001ms !important; animation: none !important;
  }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .v2-wrap > section { padding: 60px 22px !important; }
  .v2-nav { padding: 16px 22px !important; }
  .v2-nav-links { display: none !important; }
  .v2-nav-cta { display: none !important; }
  .v2-burger { display: inline-flex !important; }
  .v2-hero { padding: 48px 22px !important; }
  .v2-approach-head, .v2-hero-grid, .v2-ethos-grid, .v2-team-grid { grid-template-columns: 1fr !important; }
  .v2-index-cards { grid-template-columns: 1fr !important; }
  .v2-founders { grid-template-columns: 1fr 1fr !important; }
  .v2-h-xl { font-size: 56px !important; line-height: 0.96 !important; }
  .v2-h-lg { font-size: 40px !important; }
  .v2-steps { grid-template-columns: 1fr !important; }
  .v2-step:not(:last-child) { border-right: none; border-bottom: 1px solid var(--v2-rule); }
  .v2-inset { padding: 44px 26px !important; }
  .v2-pathkey { font-size: 44px !important; }
  .v2-ethos-quote { font-size: 40px; }
  .v2-contact-h2 { font-size: 40px !important; }
  .m-footer { padding: 52px 22px 26px !important; }
  .m-footer-grid { grid-template-columns: 1fr 1fr !important; gap: 36px !important; }
}
@media (max-width: 520px) {
  .v2-h-xl { font-size: 44px !important; }
  .v2-pathkey { font-size: 38px !important; }
  .m-footer-grid { grid-template-columns: 1fr !important; }
  .v2-founders { gap: 16px !important; }
}
