/* =================================================================
 * Mesh — Founding Partner landing page
 * Brand: Direction C (locked). Industrial / chunky / interconnected.
 * ================================================================= */

:root {
  /* Palette */
  --mesh-blue:   #0F4C81;
  --mesh-blue-hi:#1E6FB8;
  --navy:        #0A2540;
  --silver:      #9CA3AF;
  --silver-lt:   #CBD0D6;
  --steel:       #64748B;
  --offwhite:    #F5F7FA;
  --white:       #FFFFFF;

  /* Semantic */
  --bg:          var(--offwhite);
  --surface:     var(--white);
  --text:        var(--navy);
  --muted:       var(--steel);
  --primary:     var(--mesh-blue);

  /* Type */
  --font:        'Inter', system-ui, sans-serif;
  --mono:        'JetBrains Mono', ui-monospace, monospace;

  /* Shape */
  --radius-sm:   8px;
  --radius:      12px;
  --radius-pill: 999px;
  --bw:          2px;
  --bw-thick:    3px;

  /* Hard-offset shadows — NO BLUR */
  --sh-sm:  3px 3px 0 var(--navy);
  --sh:     4px 4px 0 var(--navy);
  --sh-lg:  6px 6px 0 var(--navy);
  --sh-xl:  9px 9px 0 var(--navy);

  /* Layout */
  --maxw: 1180px;
  --pad-x: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { margin: 0; letter-spacing: -0.025em; line-height: 1.04; font-weight: 800; }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; }

/* ---- Shared utilities ---- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad-x); }

.mono {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 10px; height: 10px;
  background: var(--primary);
  border: 2px solid var(--navy);
  flex-shrink: 0;
}
.eyebrow.on-dark { color: var(--silver-lt); }
.eyebrow.on-dark::before { background: var(--mesh-blue-hi); border-color: var(--white); }

.section { padding-block: clamp(72px, 11vw, 140px); position: relative; }
.section-head { max-width: 760px; }
.section-head .title {
  font-size: clamp(34px, 5.2vw, 60px);
  margin-top: 22px;
  color: var(--navy);
}
.section-head .lede {
  font-size: clamp(18px, 2.2vw, 23px);
  color: var(--steel);
  margin-top: 22px;
  max-width: 640px;
}
.on-dark .title, .section--dark .title { color: var(--white); }
.section--dark { background: var(--navy); color: var(--silver-lt); }
.section--dark .lede { color: var(--silver); }

/* Accent box — the "Finally." treatment. Spend it sparingly. */
.box {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 0 0.32em;
  border: var(--bw-thick) solid var(--navy);
  box-shadow: var(--sh);
  transform: rotate(-1.2deg);
}
.section--dark .box { border-color: var(--white); box-shadow: 6px 6px 0 rgba(255,255,255,0.16); }

/* mesh grid background pattern */
.mesh-bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(10,37,64,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10,37,64,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 30%, transparent 75%);
}
.section--dark.mesh-bg::before {
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.06) 1px, transparent 1px);
}

/* =================================================================
 * Buttons
 * ================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 17px 26px;
  border: var(--bw-thick) solid var(--navy);
  border-radius: 10px;
  box-shadow: var(--sh);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  background: var(--white);
  color: var(--navy);
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: var(--sh-lg); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--navy); }
.btn:focus-visible { outline: 3px solid var(--mesh-blue-hi); outline-offset: 3px; }

.btn--primary { background: var(--primary); color: var(--white); }
.btn--lg { font-size: 18px; padding: 20px 32px; }
.btn--block { width: 100%; justify-content: center; }
.btn .arrow { transition: transform 0.15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.section--dark .btn { border-color: var(--white); box-shadow: 4px 4px 0 rgba(255,255,255,0.25); }
.section--dark .btn:hover { box-shadow: 6px 6px 0 rgba(255,255,255,0.25); }

/* =================================================================
 * Nav
 * ================================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245,247,250,0.86);
  backdrop-filter: blur(10px);
  border-bottom: var(--bw) solid var(--navy);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.nav-logo { display: flex; align-items: center; color: var(--navy); }
.nav-logo svg { height: 34px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a.nav-link {
  font-size: 14px; font-weight: 600; text-decoration: none; color: var(--steel);
  transition: color 0.12s ease;
}
.nav-links a.nav-link:hover { color: var(--navy); }
.nav-links a.nav-link:focus-visible { outline: 3px solid var(--mesh-blue-hi); outline-offset: 3px; border-radius: 4px; }
.nav .btn { padding: 12px 20px; font-size: 14px; box-shadow: var(--sh-sm); }
@media (max-width: 860px) { .nav-menu { display: none; } }

/* =================================================================
 * Hero
 * ================================================================= */
.hero { position: relative; overflow: hidden; padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(64px, 9vw, 120px); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.hero-copy { max-width: 620px; }
.hero h1 {
  font-size: clamp(44px, 7.4vw, 92px);
  font-weight: 900;
  color: var(--navy);
  margin-top: 26px;
  letter-spacing: -0.035em;
}
.hero h1 .blue { color: var(--primary); }
.hero-sub {
  font-size: clamp(18px, 2.3vw, 22px);
  color: var(--steel);
  margin-top: 28px;
  max-width: 540px;
}
.hero-sub strong { color: var(--navy); font-weight: 700; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; align-items: center; }
.hero-scarcity {
  margin-top: 30px;
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; color: var(--steel);
  border-left: 3px solid var(--primary);
  padding: 4px 0 4px 18px;
  max-width: 440px;
}
.hero-scarcity b { color: var(--navy); font-weight: 700; }

/* ---- Living mesh diagram ---- */
.mesh-stage {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin-inline: auto;
  aspect-ratio: 1 / 1;
}
.mesh-stage svg.mesh-lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.mesh-lines line { stroke: var(--silver); stroke-width: 2; }
.mesh-lines line.spoke { stroke: var(--mesh-blue); stroke-width: 2.5; }

.mnode {
  position: absolute;
  transform: translate(-50%, -50%);
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--white);
  border: var(--bw-thick) solid var(--navy);
  border-radius: var(--radius-pill);
  box-shadow: var(--sh-sm);
  padding: 9px 15px 9px 12px;
  font-size: 13px; font-weight: 600; color: var(--navy);
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  z-index: 2;
}
.mnode:hover { box-shadow: var(--sh); }
.mnode .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.mnode--core {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--sh-lg);
  padding: 0;
  width: 122px; height: 122px;
  border-radius: var(--radius);
  flex-direction: column; gap: 2px;
  justify-content: center;
  z-index: 3;
}
.mnode--core .hex { width: 46px; height: 46px; }
.mnode--core .word { font-size: 19px; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
.mnode--core .word .d { color: var(--mesh-blue-hi); }

/* hero diagram intro animation */
@media (prefers-reduced-motion: no-preference) {
  .js-anim .mesh-lines line { stroke-dasharray: var(--len, 400); stroke-dashoffset: var(--len, 400); }
  .js-anim .mnode:not(.mnode--core) { opacity: 0; transform: translate(-50%, -50%) scale(0.7); }
  .js-anim .mnode--core { opacity: 0; transform: translate(-50%, -50%) scale(0.85); }
  .mesh-stage.play .mesh-lines line { animation: draw 0.7s ease forwards; animation-delay: var(--d, 0s); }
  .mesh-stage.play .mnode:not(.mnode--core) { animation: pop 0.4s cubic-bezier(.2,1.3,.4,1) forwards; animation-delay: var(--pd, 0.5s); }
  .mesh-stage.play .mnode--core { animation: pop-core 0.5s cubic-bezier(.2,1.3,.4,1) forwards; }
}
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes pop { to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
@keyframes pop-core { to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }

/* =================================================================
 * Section B — the compromise
 * ================================================================= */
.compromise-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 56px;
}
.card {
  background: var(--surface);
  border: var(--bw-thick) solid var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--sh-lg);
  padding: 32px;
}
.comp-card .comp-tool {
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--steel);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.comp-card .comp-tool .sev { width: 8px; height: 8px; border-radius: 50%; background: var(--silver); }
.comp-card h3 { font-size: 24px; color: var(--navy); margin-bottom: 12px; }
.comp-card p { color: var(--steel); font-size: 16px; }
.compromise-punch {
  margin-top: 48px;
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 800; color: var(--navy);
  letter-spacing: -0.02em; line-height: 1.15;
  max-width: 880px;
}
.compromise-punch .box { font-size: 0.96em; }

/* =================================================================
 * Section C — the Mesh answer (stack)
 * ================================================================= */
.stack-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 56px;
}
.module {
  background: var(--surface);
  border: var(--bw-thick) solid var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--sh);
  padding: 26px;
  position: relative; overflow: hidden;
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}
.module:hover { transform: translate(-2px,-2px); box-shadow: var(--sh-lg); }
.module .m-num {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em;
  color: var(--primary); text-transform: uppercase; margin-bottom: 14px;
}
.module h3 { font-size: 21px; color: var(--navy); margin-bottom: 8px; }
.module p { font-size: 15px; color: var(--steel); }
.stack-foot {
  margin-top: 44px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: clamp(20px, 2.6vw, 28px); font-weight: 700; color: var(--navy);
}
.stack-foot .sep { width: 36px; height: 3px; background: var(--primary); }

/* =================================================================
 * Section D — Coach Core (dark)
 * ================================================================= */
.coach-claim {
  font-size: clamp(28px, 4.4vw, 52px);
  font-weight: 800; color: var(--white);
  letter-spacing: -0.025em; line-height: 1.12;
  max-width: 920px; margin-top: 26px;
}
.coach-claim .dim { color: var(--silver); }
.coach-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px;
}
.coach-card {
  background: rgba(255,255,255,0.03);
  border: var(--bw-thick) solid var(--mesh-blue-hi);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 rgba(30,111,184,0.45);
  padding: 36px;
}
.coach-card .c-tag {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--mesh-blue-hi); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.coach-card .c-tag .dot { width: 9px; height: 9px; background: var(--mesh-blue-hi); border: 2px solid var(--white); }
.coach-card h3 { font-size: 28px; color: var(--white); margin-bottom: 12px; }
.coach-card p { color: var(--silver-lt); font-size: 17px; }
.coach-card .c-eg {
  margin-top: 22px; padding-top: 22px; border-top: 2px solid rgba(255,255,255,0.12);
  font-family: var(--mono); font-size: 13px; color: var(--silver);
  display: flex; gap: 12px; align-items: flex-start; line-height: 1.5;
}
.coach-card .c-eg .lbl { color: var(--mesh-blue-hi); flex-shrink: 0; }

/* =================================================================
 * Section E — Proof
 * ================================================================= */
.proof-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px,5vw,72px); align-items: center; }
.proof-quote {
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 700; color: var(--navy); letter-spacing: -0.02em;
  line-height: 1.28;
}
.proof-quote em { font-style: normal; color: var(--primary); }
.proof-attrib {
  margin-top: 28px; display: flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--steel);
}
.proof-attrib .pin { width: 12px; height: 12px; background: var(--primary); border: 2px solid var(--navy); border-radius: 50%; flex-shrink: 0; }
.proof-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pstat {
  background: var(--surface); border: var(--bw-thick) solid var(--navy);
  border-radius: var(--radius); box-shadow: var(--sh); padding: 26px;
}
.pstat .big { font-size: clamp(34px,4.4vw,48px); font-weight: 800; color: var(--navy); letter-spacing: -0.03em; line-height: 1; }
.pstat .lbl { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--steel); margin-top: 12px; line-height: 1.4; }
.proof-note { margin-top: 22px; font-size: 13px; color: var(--silver); font-family: var(--mono); letter-spacing: 0.04em; }

/* =================================================================
 * Section F — Compare table
 * ================================================================= */
.compare { margin-top: 56px; border: var(--bw-thick) solid var(--navy); border-radius: var(--radius); overflow: hidden; box-shadow: var(--sh-lg); background: var(--white); }
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td { text-align: left; padding: 22px 24px; border-bottom: var(--bw) solid var(--navy); vertical-align: top; }
.compare thead th {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--steel); font-weight: 600; background: var(--offwhite);
}
.compare thead th.col-mesh { color: var(--white); background: var(--primary); }
.compare tbody th {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--steel); font-weight: 600; width: 168px; white-space: nowrap;
}
.compare td { font-size: 15px; color: var(--steel); }
.compare td.cell-mesh { background: rgba(15,76,129,0.06); color: var(--navy); font-weight: 600; border-left: var(--bw) solid var(--navy); border-right: var(--bw) solid var(--navy); }
.compare tr:last-child th, .compare tr:last-child td { border-bottom: 0; }
.compare td.cell-mesh .ok { color: var(--primary); font-weight: 800; }
.compare-foot { margin-top: 18px; font-size: 13px; color: var(--silver); font-family: var(--mono); letter-spacing: 0.03em; line-height: 1.6; }

/* =================================================================
 * Section G — Offer
 * ================================================================= */
.offer-top { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px,5vw,64px); align-items: start; }
.offer-pillars { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.opill { display: flex; gap: 18px; align-items: flex-start; }
.opill .ic { width: 46px; height: 46px; flex-shrink: 0; border: var(--bw-thick) solid var(--navy); border-radius: var(--radius-sm); background: var(--primary); box-shadow: var(--sh-sm); display: grid; place-items: center; }
.opill .ic span { width: 14px; height: 14px; background: var(--white); }
.opill .ic.r span { border-radius: 50%; }
.opill .ic.d span { transform: rotate(45deg); }
.opill h4 { font-size: 19px; color: var(--navy); margin: 0 0 4px; font-weight: 700; }
.opill p { font-size: 15px; color: var(--steel); }

.price-card { background: var(--navy); color: var(--white); border: var(--bw-thick) solid var(--navy); border-radius: var(--radius); box-shadow: var(--sh-xl); padding: 34px; }
.price-card .pc-tag { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mesh-blue-hi); margin-bottom: 22px; }
.price-row { display: flex; align-items: baseline; gap: 10px; padding-block: 16px; border-bottom: 2px solid rgba(255,255,255,0.12); }
.price-row:last-of-type { border-bottom: 0; }
.price-row .amt { font-size: 32px; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
.price-row .amt small { font-size: 15px; font-weight: 600; color: var(--silver); letter-spacing: 0; }
.price-row .desc { font-size: 14px; color: var(--silver-lt); margin-top: 4px; }
.price-row .lead { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--silver); display: block; margin-bottom: 6px; }
.price-note { margin-top: 22px; font-size: 13px; color: var(--silver); line-height: 1.5; }
.price-note b { color: var(--white); }

.offer-get { margin-top: 56px; }
.get-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.get-item { display: flex; gap: 13px; align-items: flex-start; background: var(--white); border: var(--bw) solid var(--navy); border-radius: var(--radius-sm); box-shadow: var(--sh-sm); padding: 18px 20px; font-size: 15px; color: var(--navy); font-weight: 600; }
.get-item .chk { width: 22px; height: 22px; flex-shrink: 0; background: var(--primary); border: 2px solid var(--navy); border-radius: 5px; display: grid; place-items: center; }
.get-item .chk::after { content: ""; width: 9px; height: 5px; border-left: 2.5px solid var(--white); border-bottom: 2.5px solid var(--white); transform: rotate(-45deg); margin-top: -2px; }

/* =================================================================
 * Section H — Who for / not for
 * ================================================================= */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.fit-card { background: var(--surface); border: var(--bw-thick) solid var(--navy); border-radius: var(--radius); box-shadow: var(--sh-lg); padding: 36px; }
.fit-card.is-not { background: var(--offwhite); }
.fit-card .fit-h { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.fit-card .fit-h .badge { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 12px; border: 2px solid var(--navy); border-radius: var(--radius-pill); font-weight: 600; }
.fit-card .fit-h .badge.yes { background: var(--primary); color: var(--white); }
.fit-card .fit-h .badge.no { background: var(--white); color: var(--steel); }
.fit-card .fit-h h3 { font-size: 21px; color: var(--navy); }
.fit-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.fit-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 16px; color: var(--steel); }
.fit-list li .mk { width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%; border: 2px solid var(--navy); display: grid; place-items: center; margin-top: 1px; font-weight: 800; font-size: 13px; }
.fit-card:not(.is-not) .mk { background: var(--primary); color: var(--white); }
.fit-card.is-not .mk { background: var(--white); color: var(--steel); }

/* =================================================================
 * Section I — Apply (dark)
 * ================================================================= */
.apply-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px,5vw,72px); align-items: start; }
.process { list-style: none; margin: 32px 0 0; padding: 0; display: flex; flex-direction: column; gap: 0; }
.process li { display: flex; gap: 18px; padding-block: 18px; border-bottom: 2px solid rgba(255,255,255,0.1); }
.process li:last-child { border-bottom: 0; }
.process .step-n { font-family: var(--mono); font-size: 13px; color: var(--mesh-blue-hi); font-weight: 700; flex-shrink: 0; width: 30px; }
.process .step-t { font-size: 17px; color: var(--white); font-weight: 600; }
.process .step-d { font-size: 14px; color: var(--silver); margin-top: 3px; }

.form-card { background: var(--white); border: var(--bw-thick) solid var(--navy); border-radius: var(--radius); box-shadow: var(--sh-xl); padding: clamp(26px, 3.5vw, 40px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--steel); font-weight: 600; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font); font-size: 16px; color: var(--navy);
  background: var(--offwhite); border: var(--bw) solid var(--navy); border-radius: var(--radius-sm);
  padding: 13px 14px; box-shadow: var(--sh-sm); transition: box-shadow 0.12s ease, transform 0.12s ease;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; box-shadow: 0 0 0 3px var(--mesh-blue-hi); transform: translate(-1px,-1px); }
.field input::placeholder, .field textarea::placeholder { color: var(--silver); }
.form-foot { margin-top: 8px; font-size: 13px; color: var(--steel); display: flex; align-items: center; gap: 10px; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; }
.form-success .tick { width: 64px; height: 64px; margin: 0 auto 22px; border: var(--bw-thick) solid var(--navy); border-radius: 50%; background: var(--primary); display: grid; place-items: center; box-shadow: var(--sh); }
.form-success .tick::after { content: ""; width: 22px; height: 12px; border-left: 4px solid var(--white); border-bottom: 4px solid var(--white); transform: rotate(-45deg) translateY(-3px); }
.form-success h3 { font-size: 26px; color: var(--navy); margin-bottom: 10px; }
.form-success p { color: var(--steel); font-size: 16px; max-width: 360px; margin-inline: auto; }

/* =================================================================
 * Section J — FAQ
 * ================================================================= */
.faq-list { margin-top: 48px; border-top: var(--bw) solid var(--navy); }
.faq-item { border-bottom: var(--bw) solid var(--navy); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 26px 56px 26px 0; position: relative; font-family: var(--font); font-size: clamp(18px,2.2vw,22px); font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.faq-q:focus-visible { outline: 3px solid var(--mesh-blue-hi); outline-offset: 3px; }
.faq-q .pm { position: absolute; right: 6px; top: 50%; width: 22px; height: 22px; transform: translateY(-50%); }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--primary); border-radius: 2px; }
.faq-q .pm::before { top: 50%; left: 0; right: 0; height: 3px; transform: translateY(-50%); }
.faq-q .pm::after { left: 50%; top: 0; bottom: 0; width: 3px; transform: translateX(-50%); transition: transform 0.2s ease, opacity 0.2s ease; }
.faq-item.open .faq-q .pm::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.28s ease; }
.faq-a-inner { padding: 0 56px 28px 0; color: var(--steel); font-size: 17px; max-width: 760px; }

/* =================================================================
 * Footer
 * ================================================================= */
.footer { background: var(--navy); color: var(--silver); padding-block: 64px 40px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 2px solid rgba(255,255,255,0.12); }
.footer-logo svg { height: 40px; color: var(--white); }
.footer-tag { font-size: 20px; font-weight: 700; color: var(--white); letter-spacing: -0.02em; margin-top: 18px; }
.footer-tag .box { font-size: 0.92em; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--silver); text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 28px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--steel); }

/* =================================================================
 * Scroll reveal
 * ================================================================= */
@media (prefers-reduced-motion: no-preference) {
  .js-anim .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .js-anim .reveal.in { opacity: 1; transform: none; }
  .js-anim .reveal.d1 { transition-delay: 0.08s; }
  .js-anim .reveal.d2 { transition-delay: 0.16s; }
  .js-anim .reveal.d3 { transition-delay: 0.24s; }
}

/* =================================================================
 * Responsive
 * ================================================================= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 640px; }
  .mesh-stage { max-width: 440px; order: 2; }
  .compromise-grid, .stack-grid, .get-grid { grid-template-columns: 1fr 1fr; }
  .coach-grid, .proof-grid, .offer-top, .fit-grid, .apply-grid { grid-template-columns: 1fr; }
  .proof-grid .proof-stats { max-width: 480px; }
}
@media (max-width: 640px) {
  body { font-size: 17px; }
  .compromise-grid, .stack-grid, .get-grid, .form-row, .proof-stats { grid-template-columns: 1fr; }
  .mesh-stage { max-width: 360px; }
  .mnode { font-size: 11px; padding: 7px 11px; }
  .mnode--core { width: 96px; height: 96px; }
  .mnode--core .word { font-size: 16px; }
  .nav .btn { padding: 10px 16px; }
  .compare { overflow-x: auto; }
  .compare table { min-width: 640px; }
}

/* Honeypot — off-screen anti-spam field (CC deploy brief §4). Not a visual element. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
