:root {
    --slate-950: #1A1F26;
    --slate-900: #2A3038;
    --slate-800: #363C44;
    --slate-700: #3F4549;
    --slate-600: #5A6068;
    --slate-500: #6E747C;
    --lime-700: #3F7320;
    --lime-600: #5FA02E;
    --lime-500: #7BC242;
    --lime-300: #B5DD8B;
    --lime-50:  #F2F9EA;
    --white:    #FFFFFF;
    --off-white:#F7F8FA;
    --cream:    #FAF8F4;
    --line:     #E5E7EB;
    --line-2:   #D1D5DB;
    --muted:    #9CA3AF;
    --body:     #4B5563;
    --ink:      #1F2937;

    --container: 1280px;

    --font-sans: 'Geist', ui-sans-serif, system-ui, -apple-system, sans-serif;
    --font-mono: 'Geist Mono', ui-monospace, SFMono-Regular, monospace;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;

    --shadow-sm: 0 1px 2px rgba(26, 31, 38, 0.04), 0 1px 3px rgba(26, 31, 38, 0.04);
    --shadow-md: 0 8px 24px -8px rgba(26, 31, 38, 0.10);
    --shadow-lg: 0 24px 60px -24px rgba(26, 31, 38, 0.20);
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--off-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  img, svg { display: block; max-width: 100%; height: auto; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; }

  .mono { font-family: var(--font-mono); }
  h1, h2, h3, h4 { letter-spacing: -0.028em; font-weight: 700; line-height: 1.1; margin: 0; }
  h1 em, h2 em, h3 em { color: var(--lime-600); font-style: normal; }
  .on-dark h1 em, .on-dark h2 em, .on-dark h3 em { color: var(--lime-500); }
  p { margin: 0; }

  .container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
  @media (max-width: 540px) { .container { padding: 0 20px; } }

  /* ─────── Eyebrow ─────── */
  .eyebrow {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lime-600);
    display: inline-flex; align-items: center; gap: 10px;
  }
  .eyebrow::before {
    content: ""; display: block;
    width: 24px; height: 1px; background: currentColor;
  }
  .on-dark .eyebrow { color: var(--lime-500); }

  /* ─────── Buttons ─────── */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600; font-size: 15px;
    letter-spacing: -0.005em;
    border: 1px solid transparent;
    transition: background-color .18s, border-color .18s, color .18s, transform .18s, box-shadow .18s;
    white-space: nowrap;
  }
  .btn-primary { background: var(--lime-500); color: var(--slate-950); }
  .btn-primary:hover {
    background: var(--lime-600); color: var(--slate-950);
    box-shadow: 0 8px 24px -8px rgba(95, 160, 46, 0.5);
    transform: translateY(-1px);
  }
  .btn-secondary { background: var(--white); color: var(--ink); border-color: var(--line); }
  .btn-secondary:hover { border-color: var(--slate-600); }
  .on-dark .btn-secondary { background: transparent; color: var(--white); border-color: var(--slate-700); }
  .on-dark .btn-secondary:hover { border-color: var(--slate-500); background: rgba(255,255,255,0.04); }

  .link-arrow {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--lime-600); font-weight: 500;
    transition: gap .2s;
  }
  .link-arrow:hover { color: var(--lime-700); gap: 10px; }
  .on-dark .link-arrow { color: var(--lime-500); }
  .on-dark .link-arrow:hover { color: var(--lime-300); }

  /* ─────── PAGE PROGRESS BAR ─────── */
  .page-progress {
    position: fixed; top: 0; left: 0;
    height: 2px; width: 100%;
    background: transparent;
    z-index: 100;
    pointer-events: none;
  }
  .page-progress::after {
    content: ""; display: block;
    height: 100%;
    width: var(--scroll-progress, 0%);
    background: var(--lime-500);
    box-shadow: 0 0 12px rgba(123, 194, 66, 0.6);
    transition: width .08s linear;
  }

  /* ─────── HEADER ─────── */
  .site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line);
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
  }
  .site-header .container {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 16px; padding-bottom: 16px;
    transition: padding .25s ease;
  }
  .site-header.shrunk {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    border-bottom-color: rgba(229, 231, 235, 0.6);
    box-shadow: 0 8px 24px -16px rgba(26, 31, 38, 0.18);
  }
  .site-header.shrunk .container { padding-top: 10px; padding-bottom: 10px; }
  .site-header.shrunk .brand-logo { height: 36px; }
  .site-header.shrunk .header-cta .btn { padding: 8px 16px; font-size: 13px; }
  .brand { display: inline-flex; align-items: center; }
  .brand-logo { height: 44px; width: auto; max-width: 220px; display: block; transition: height .25s ease; }
  @media (max-width: 540px) { .brand-logo { height: 36px; } }

  .nav { display: flex; align-items: center; gap: 32px; }
  .nav a {
    font-size: 14px; font-weight: 500;
    color: var(--ink);
    transition: color .18s;
  }
  .nav a:hover { color: var(--lime-600); }
  .header-cta { display: inline-flex; align-items: center; gap: 12px; }
  .header-cta .btn { padding: 10px 18px; font-size: 14px; }
  .header-phone {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--body);
    font-weight: 500;
  }
  @media (max-width: 860px) { .nav, .header-phone { display: none; } }

  /* ─────── HERO (dark · Variant B editorial split) ─────── */
  .hero {
    background: var(--slate-950);
    color: var(--white);
    padding: 112px 0 96px;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: ""; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
  }
  .hero::after {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(70% 50% at 85% 10%, rgba(123, 194, 66, 0.08), transparent 60%),
      radial-gradient(50% 40% at 5% 80%, rgba(123, 194, 66, 0.05), transparent 60%);
    pointer-events: none;
  }
  .hero .container { position: relative; z-index: 1; }
  .hero h1 em { color: var(--lime-500); font-style: normal; }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: center;
  }
  @media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  }

  .hero-copy h1 {
    font-size: clamp(44px, 5.6vw, 76px);
    margin: 28px 0 28px;
    letter-spacing: -0.035em;
    color: var(--white);
  }
  .hero-lede {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.72);
    max-width: 580px;
    margin: 0 0 36px;
  }
  .hero-cta-row {
    display: flex; align-items: center; gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 22px;
  }
  .hero-cta-row .meta {
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em;
  }
  .hero-cta-row .meta .dot { color: var(--lime-500); margin-right: 8px; }

  /* Hero image card */
  .hero-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: var(--slate-900);
    box-shadow: 0 24px 60px -24px rgba(0,0,0,0.6);
  }
  .hero-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .hero-visual::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 55%, rgba(26,31,38,0.55) 100%);
    pointer-events: none;
  }
  .hero-visual-tag {
    position: absolute; left: 18px; right: 18px; bottom: 18px;
    z-index: 2;
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    font-family: var(--font-mono); font-size: 11px;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.12em; text-transform: uppercase;
    background: rgba(26, 31, 38, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .hero-visual-tag .accent { color: var(--lime-500); }
  .hero-visual-tag .pulse {
    display: inline-block; vertical-align: middle; margin-right: 8px;
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--lime-500);
    box-shadow: 0 0 0 0 rgba(123,194,66,0.7);
    animation: heroPulse 2s infinite;
  }
  @keyframes heroPulse {
    0%   { box-shadow: 0 0 0 0 rgba(123,194,66,0.5); }
    70%  { box-shadow: 0 0 0 10px rgba(123,194,66,0); }
    100% { box-shadow: 0 0 0 0 rgba(123,194,66,0); }
  }

  /* Three-path cards (on dark hero bg) */
  .paths-head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; margin: 96px 0 28px;
  }
  .paths-head .label {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
  }
  .paths-head .label strong { color: var(--lime-500); font-weight: 500; }
  .paths-divider {
    height: 1px; background: rgba(255,255,255,0.08);
    flex: 1;
  }

  .paths {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  @media (max-width: 900px) { .paths { grid-template-columns: 1fr; } }

  .path {
    position: relative; display: block;
    padding: 32px 28px 80px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    color: var(--white);
    transition: border-color .25s, transform .25s, background-color .25s;
    opacity: 0; transform: translateY(16px);
    animation: pathIn .7s cubic-bezier(.2,.7,.2,1) forwards;
    min-height: 300px;
  }
  .path:nth-child(1) { animation-delay: .1s; }
  .path:nth-child(2) { animation-delay: .22s; }
  .path:nth-child(3) { animation-delay: .34s; }
  @keyframes pathIn { to { opacity: 1; transform: translateY(0); } }
  .path:hover {
    border-color: rgba(123, 194, 66, 0.5);
    background: rgba(123, 194, 66, 0.04);
    transform: translateY(-3px);
  }
  .path .path-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--lime-500);
    text-transform: uppercase;
    margin-bottom: 18px;
    display: flex; align-items: center; gap: 10px;
  }
  .path .path-eyebrow::before {
    content: ""; display: block;
    width: 24px; height: 1px; background: var(--lime-500);
  }
  .path h3 {
    font-size: 22px;
    line-height: 1.2;
    color: var(--white);
    margin: 0 0 12px;
  }
  .path h3 em { color: var(--lime-500); font-style: normal; }
  .path p {
    font-size: 14.5px;
    line-height: 1.55;
    color: rgba(255,255,255,0.65);
    margin: 0;
  }
  .path .take {
    position: absolute; left: 28px; bottom: 28px;
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--lime-500);
    transition: gap .2s;
  }
  .path:hover .take { gap: 14px; }
  .path .corner-num {
    position: absolute; top: 24px; right: 28px;
    font-family: var(--font-mono); font-size: 11px;
    color: rgba(255,255,255,0.3); letter-spacing: 0.1em;
  }

  /* ─────── TRUST INDICATORS (v2 · marquee) ─────── */
  .trust {
    background: var(--slate-950);
    color: var(--white);
    padding: 28px 0;
    position: relative;
    overflow: hidden;
  }
  .trust::before {
    content: ""; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
  }
  .trust .container { position: relative; z-index: 1; }
  .trust-head {
    text-align: center;
    margin-bottom: 18px;
  }
  .trust-head .label {
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    display: inline-flex; align-items: center; gap: 12px;
  }
  .trust-head .label::before,
  .trust-head .label::after {
    content: ""; display: block; width: 32px; height: 1px;
    background: rgba(255,255,255,0.2);
  }
  .trust-track-wrap {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  }
  .trust-track {
    display: inline-flex;
    gap: 56px;
    animation: trustMarquee 36s linear infinite;
    white-space: nowrap;
    will-change: transform;
  }
  .trust-track:hover { animation-play-state: paused; }
  @keyframes trustMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .trust-item {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--font-mono);
    font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255,255,255,0.72);
  }
  .trust-item .hex {
    width: 10px; height: 11px; flex-shrink: 0;
  }
  .trust-item .hex path { fill: var(--lime-500); }
  @media (prefers-reduced-motion: reduce) {
    .trust-track { animation: none; }
  }

  /* ─────── PAIN POINTS ─────── */
  .pain {
    background: var(--off-white);
    padding: 112px 0;
  }
  .section-head { max-width: 760px; margin: 0 0 56px; }
  .section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
  .section-head.center .eyebrow { justify-content: center; }
  .section-head h2 {
    font-size: clamp(32px, 4.6vw, 52px);
    line-height: 1.08;
    color: var(--ink);
    margin: 16px 0 16px;
  }
  .section-head p {
    font-size: 18px;
    color: var(--body);
    line-height: 1.55;
    max-width: 620px;
  }
  .section-head.center p { margin: 0 auto; }

  /* Pain Points v2 — editorial complaint/diagnosis rows */
  .pain-rows { display: flex; flex-direction: column; }
  .pain-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 64px 0;
    border-bottom: 1px solid var(--line);
    position: relative;
  }
  .pain-row:last-of-type { border-bottom: none; }
  .pain-row.even .pain-complaint { order: 2; text-align: right; }
  .pain-row.even .pain-diagnosis { order: 1; }
  @media (max-width: 900px) {
    .pain-row, .pain-row.even { grid-template-columns: 1fr; gap: 24px; padding: 48px 0; }
    .pain-row.even .pain-complaint, .pain-row.even .pain-diagnosis { order: initial; }
    .pain-row.even .pain-complaint { text-align: left; }
  }

  .pain-complaint .num {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
    display: inline-flex; align-items: center; gap: 12px;
  }
  .pain-complaint .num::before {
    content: ""; display: block;
    width: 32px; height: 1px; background: rgba(31,41,55,0.2);
  }
  .pain-row.even .pain-complaint .num { flex-direction: row-reverse; }
  .pain-complaint .quote {
    font-size: clamp(26px, 3.6vw, 40px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: var(--ink);
    font-style: italic;
    max-width: 16ch;
  }
  .pain-row.even .pain-complaint .quote { margin-left: auto; }
  .pain-complaint .source {
    margin-top: 18px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--muted);
  }

  .pain-diagnosis .label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--lime-600);
    margin-bottom: 14px;
    display: inline-flex; align-items: center; gap: 12px;
  }
  .pain-diagnosis .label::before {
    content: ""; display: block;
    width: 24px; height: 1px; background: var(--lime-600);
  }
  .pain-diagnosis h3 {
    font-size: clamp(22px, 2.6vw, 30px);
    color: var(--ink);
    margin-bottom: 18px;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }
  .pain-diagnosis h3 em { font-style: normal; color: var(--lime-600); }
  .pain-diagnosis p {
    font-size: 16px;
    line-height: 1.55;
    color: var(--body);
    max-width: 52ch;
  }
  .pain-diagnosis .truth {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--muted);
  }
  .pain-diagnosis .truth strong { color: var(--ink); font-weight: 500; }

  /* ─────── MANIFESTO V2 (editorial · dark anchor) ─────── */
  .manifesto {
    background: var(--slate-950);
    color: var(--white);
    padding: 128px 0 144px;
    position: relative;
    overflow: hidden;
  }
  .manifesto::before {
    content: ""; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 75%);
    pointer-events: none;
  }
  .manifesto .container { position: relative; z-index: 1; }

  .m2-head {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: end;
    gap: 32px;
    margin-bottom: 88px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .m2-head-l,
  .m2-head-r {
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    align-self: end;
  }
  .m2-head-r { text-align: right; }
  .m2-head-l span,
  .m2-head-r span { color: var(--lime-500); }
  .m2-head-title { text-align: center; }
  .m2-head-title .eyebrow {
    font-family: var(--font-mono);
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--lime-500);
    margin-bottom: 16px;
    display: inline-block;
  }
  .m2-head-title h2 {
    font-size: clamp(48px, 8vw, 116px);
    letter-spacing: -0.045em;
    line-height: 0.95;
    color: var(--white);
    margin: 0;
  }
  .m2-head-title h2 em {
    font-style: normal;
    color: var(--lime-500);
    display: block;
  }
  @media (max-width: 800px) {
    .m2-head { grid-template-columns: 1fr; text-align: center; }
    .m2-head-l, .m2-head-r { text-align: center; }
  }

  .stake-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 72px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
  }
  .stake-row:last-of-type { border-bottom: none; }
  .stake-row.even .stake-numeral { order: 2; text-align: right; }
  .stake-row.even .stake-body { order: 1; }
  @media (max-width: 900px) {
    .stake-row, .stake-row.even { grid-template-columns: 1fr; gap: 28px; padding: 56px 0; }
    .stake-row.even .stake-numeral, .stake-row.even .stake-body { order: initial; }
    .stake-row.even .stake-numeral { text-align: left; }
  }

  .stake-numeral { position: relative; line-height: 0.85; }
  .stake-numeral .num-big {
    font-family: var(--font-mono);
    font-weight: 400;
    font-size: clamp(140px, 18vw, 240px);
    letter-spacing: -0.06em;
    color: transparent;
    -webkit-text-stroke: 2.5px rgba(123, 194, 66, 0.85);
    line-height: 0.85;
    display: block;
  }
  .stake-row.even .stake-numeral .num-big {
    -webkit-text-stroke: 2.5px rgba(255, 255, 255, 0.32);
  }
  .stake-row.featured .stake-numeral .num-big {
    color: var(--lime-500);
    -webkit-text-stroke: 0;
  }
  .stake-numeral .num-meta {
    display: block;
    margin-top: -10px;
    margin-left: 4px;
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,0.45);
  }
  .stake-row.even .stake-numeral .num-meta { margin-left: 0; margin-right: 4px; }

  .stake-body .label {
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--lime-500);
    margin-bottom: 18px;
    display: inline-flex; align-items: center; gap: 12px;
  }
  .stake-body .label::before {
    content: ""; display: block; width: 32px; height: 1px; background: var(--lime-500);
  }
  .stake-body h3 {
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--white);
    margin: 0 0 22px;
    max-width: 22ch;
  }
  .stake-body h3 em { font-style: normal; color: var(--lime-500); }
  .stake-body p {
    font-size: 17px;
    line-height: 1.55;
    color: rgba(255,255,255,0.7);
    max-width: 52ch;
  }
  .stake-body .pull {
    margin-top: 24px;
    font-family: var(--font-mono);
    font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255,255,255,0.4);
  }
  .stake-body .pull strong { color: var(--lime-500); font-weight: 500; }

  .m2-foot {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
    margin-top: 88px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .m2-foot .rule { height: 1px; background: rgba(255,255,255,0.08); }
  .m2-foot .ticker {
    font-family: var(--font-mono);
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    text-align: center;
  }
  .m2-foot .ticker span { color: var(--lime-500); }

  /* ─────── STATS CREDENTIALS ─────── */
  .stats {
    background: var(--cream);
    padding: 80px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  @media (max-width: 800px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; } }
  .stat-cell .num {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: clamp(36px, 4.5vw, 52px);
    color: var(--lime-600);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .stat-cell .label {
    margin-top: 12px;
    font-size: 14px;
    color: var(--body);
    line-height: 1.5;
    max-width: 220px;
  }

  /* ─────── FOUNDER SECTION ─────── */
  .founder {
    background: var(--white);
    padding: 128px 0;
    border-top: 1px solid var(--line);
    position: relative;
    overflow: hidden;
  }
  .founder::before {
    content: ""; position: absolute; inset: 0;
    background-image:
      radial-gradient(40% 60% at 15% 50%, rgba(123, 194, 66, 0.06), transparent 60%);
    pointer-events: none;
  }
  .founder .container { position: relative; }
  .founder-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 72px;
    align-items: center;
  }
  @media (max-width: 900px) { .founder-grid { grid-template-columns: 1fr; gap: 48px; } }

  .founder-photo {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--slate-900);
    aspect-ratio: 4/5;
    max-width: 460px;
    box-shadow: var(--shadow-lg);
  }
  .founder-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
  }
  .founder-photo::after {
    content: ""; position: absolute;
    inset: auto 0 0 0; height: 30%;
    background: linear-gradient(transparent, rgba(26, 31, 38, 0.55));
    pointer-events: none;
  }
  .founder-photo-tag {
    position: absolute; left: 24px; bottom: 24px;
    font-family: var(--font-mono); font-size: 11px;
    color: rgba(255,255,255,0.92);
    letter-spacing: 0.14em; text-transform: uppercase;
    z-index: 1;
    display: inline-flex; align-items: center; gap: 10px;
  }
  .founder-photo-tag .dot { color: var(--lime-500); }

  /* Founder content v2 — operator's profile card */
  .founder-content { max-width: 640px; }
  .founder-content .eyebrow { margin-bottom: 28px; }
  .founder-headquote {
    margin: 0 0 28px;
    padding: 0 0 0 36px;
    border: none;
    background: transparent;
    position: relative;
  }
  .founder-headquote::before {
    content: "\201C";
    position: absolute;
    left: -4px; top: -22px;
    font-family: var(--font-mono);
    font-size: 88px;
    line-height: 1;
    color: var(--lime-500);
    font-weight: 400;
  }
  .founder-headquote p {
    font-size: clamp(26px, 3.4vw, 38px);
    line-height: 1.18;
    letter-spacing: -0.025em;
    color: var(--ink);
    font-weight: 700;
    margin: 0;
  }
  .founder-headquote p em { font-style: normal; color: var(--lime-600); }

  .founder-attrib {
    display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }
  .founder-name {
    font-size: 16px; font-weight: 600; color: var(--ink);
  }
  .founder-title {
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--muted);
    padding-left: 14px;
    border-left: 1px solid var(--line);
  }

  .founder-bio {
    font-size: 16px;
    line-height: 1.6;
    color: var(--body);
    margin: 0 0 28px;
    max-width: 540px;
  }

  .founder-credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    margin: 0 0 28px;
    overflow: hidden;
  }
  .founder-credentials .cred {
    background: var(--white);
    padding: 14px 18px;
  }
  .founder-credentials .cred:hover { background: var(--off-white); }
  .founder-credentials dt {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 4px;
  }
  .founder-credentials dd {
    font-size: 13.5px;
    color: var(--ink);
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
  }
  @media (max-width: 540px) { .founder-credentials { grid-template-columns: 1fr; } }

  .founder-cta {
    display: inline-flex; gap: 28px; align-items: center;
    flex-wrap: wrap;
  }

  /* ─────── SERVICES ─────── */
  .services { background: var(--off-white); padding: 128px 0; }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  @media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px) { .services-grid { grid-template-columns: 1fr; } }
  .service {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    display: flex; flex-direction: column;
    transition: border-color .2s, transform .2s, box-shadow .2s;
  }
  .service:hover {
    border-color: var(--lime-500);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
  .service .svc-icon {
    max-width: 56px; max-height: 56px;
    width: 56px; height: 56px;
    color: var(--slate-700);
    margin-bottom: 28px;
    transition: color .25s ease, transform .25s ease;
  }
  .service:hover .svc-icon {
    color: var(--lime-600);
    transform: translateY(-2px);
  }
  .service h3 { font-size: 20px; color: var(--ink); margin: 0 0 8px; }
  .service .svc-desc {
    font-size: 14px; line-height: 1.55;
    color: var(--body); margin: 0 0 20px; flex: 1;
  }
  .service ul {
    list-style: none; padding: 0; margin: 0 0 24px;
    border-top: 1px solid var(--line);
    padding-top: 16px;
  }
  .service ul li {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--body);
    letter-spacing: 0.02em;
    padding: 4px 0;
    display: flex; align-items: center; gap: 8px;
  }
  .service ul li::before {
    content: ""; display: block;
    width: 4px; height: 4px;
    background: var(--lime-500);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ─────── PORTFOLIO SHOWCASE ─────── */
  .portfolio { background: var(--white); padding: 128px 0; border-top: 1px solid var(--line); }
  .portfolio-head { display: flex; align-items: end; justify-content: space-between; gap: 48px; margin-bottom: 72px; }
  @media (max-width: 800px) { .portfolio-head { flex-direction: column; align-items: start; } }
  .portfolio-head h2 { font-size: clamp(32px, 4.4vw, 48px); margin: 12px 0 0; max-width: 600px; }

  .case-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 96px;
  }
  .case-row:last-child { margin-bottom: 0; }
  .case-row.flipped > div:first-child { order: 2; }
  @media (max-width: 900px) {
    .case-row { grid-template-columns: 1fr; gap: 32px; }
    .case-row.flipped > div:first-child { order: 0; }
  }
  .case-meta {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lime-600);
    margin-bottom: 16px;
    display: inline-flex; align-items: center; gap: 10px;
  }
  .case-meta::before {
    content: ""; width: 24px; height: 1px; background: var(--lime-600);
  }
  .case-row h3 {
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.15;
    color: var(--ink);
    margin: 0 0 20px;
  }
  .case-row .case-body {
    font-size: 16px;
    line-height: 1.6;
    color: var(--body);
    margin-bottom: 28px;
    max-width: 520px;
  }
  .case-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    padding: 20px 0 0;
    border-top: 1px solid var(--line);
  }
  .case-stat .num {
    font-family: var(--font-mono);
    font-size: 22px;
    color: var(--lime-600);
    font-weight: 500;
    line-height: 1;
  }
  .case-stat .lbl {
    font-size: 12px; color: var(--muted);
    margin-top: 6px;
  }

  /* Mock website screenshot (browser frame around content) */
  .mockup {
    background: var(--slate-950);
    border-radius: var(--radius-lg);
    padding: 10px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
  }
  .mockup-chrome {
    display: flex; align-items: center; gap: 8px;
    padding: 4px 4px 10px;
  }
  .mockup-chrome span { width: 10px; height: 10px; border-radius: 50%; background: var(--slate-700); }
  .mockup-frame { background: var(--white); border-radius: 8px; aspect-ratio: 16/10; overflow: hidden; position: relative; }
  .mockup-frame .mfh {
    background: var(--slate-950); height: 40px; display: flex; align-items: center;
    padding: 0 18px; color: var(--white); font-family: var(--font-mono); font-size: 11px;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--slate-700);
  }
  .mockup-frame .mfh .mfh-cta {
    margin-left: auto;
    background: var(--lime-500); color: var(--slate-950);
    padding: 4px 10px; border-radius: 4px;
    font-size: 10px;
  }
  .mockup-frame .mfb {
    padding: 32px 24px;
  }
  .mockup-frame .mfb .h {
    height: 14px; background: var(--slate-800); border-radius: 4px;
    margin: 0 0 14px;
  }
  .mockup-frame .mfb .h.short { width: 60%; }
  .mockup-frame .mfb .h.med   { width: 75%; }
  .mockup-frame .mfb .h.lg    { width: 90%; }
  .mockup-frame .mfb .lines { display: flex; flex-direction: column; gap: 8px; margin: 18px 0 24px; }
  .mockup-frame .mfb .l { height: 8px; background: var(--line); border-radius: 4px; }
  .mockup-frame .mfb .l.s60 { width: 60%; }
  .mockup-frame .mfb .l.s80 { width: 80%; }
  .mockup-frame .mfb .l.s90 { width: 90%; }
  .mockup-frame .mfb .row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .mockup-frame .mfb .card-mini {
    background: var(--off-white);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 10px;
  }
  .mockup-frame .mfb .card-mini .ic { width: 14px; height: 14px; background: var(--lime-500); border-radius: 2px; margin-bottom: 8px; }
  .mockup-frame .mfb .card-mini .t  { height: 6px; background: var(--slate-700); border-radius: 3px; width: 70%; margin-bottom: 6px; }
  .mockup-frame .mfb .card-mini .u  { height: 4px; background: var(--line); border-radius: 2px; width: 90%; margin-bottom: 3px; }

  /* ─────── BEFORE / AFTER SLIDER (polish v2 · pointer-following) ─────── */
  .ba { background: var(--cream); padding: 128px 0; border-top: 1px solid var(--line); }
  .ba-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16/10;
    max-width: 1100px;
    margin: 56px auto 0;
    user-select: none;
    background: var(--slate-950);
    cursor: ew-resize;
    touch-action: none;
    --reveal: 50%;
  }
  .ba-frame:focus-visible { outline: 2px solid var(--lime-500); outline-offset: 4px; }
  .ba-side {
    position: absolute; inset: 0;
    background-size: cover; background-position: top center; background-repeat: no-repeat;
  }
  .ba-after  { background-image: url("../images/portfolio/giantlockbox-after.png"); }
  .ba-before {
    background-image: url("../images/portfolio/giantlockbox-before.png");
    background-color: #FFFFFF;
    clip-path: polygon(0 0, var(--reveal) 0, var(--reveal) 100%, 0 100%);
  }

  /* One-time idle tease — telegraphs "drag me" on first view */
  .ba-frame.idle .ba-before { animation: baTease 2.6s ease-in-out 0.6s 1 forwards; }
  @keyframes baTease {
    0%   { clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%); }
    35%  { clip-path: polygon(0 0, 62% 0, 62% 100%, 0 100%); }
    70%  { clip-path: polygon(0 0, 38% 0, 38% 100%, 0 100%); }
    100% { clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%); }
  }
  .ba-frame.idle .ba-handle { animation: baHandleTease 2.6s ease-in-out 0.6s 1 forwards; }
  @keyframes baHandleTease {
    0%   { left: 50%; }
    35%  { left: 62%; }
    70%  { left: 38%; }
    100% { left: 50%; }
  }

  .ba-tag {
    position: absolute; top: 24px;
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: 0.14em; text-transform: uppercase;
    background: rgba(255,255,255,0.95); color: var(--ink);
    padding: 6px 14px; border-radius: 999px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    transition: opacity .25s ease;
    pointer-events: none;
  }
  .ba-tag.before { left: 24px; }
  .ba-tag.after  { right: 24px; background: rgba(123, 194, 66, 0.95); color: var(--slate-950); }
  .ba-frame.active .ba-tag { opacity: 0.35; }

  .ba-credit {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: 0.1em; text-transform: uppercase;
    background: rgba(26, 31, 38, 0.85); color: var(--white);
    padding: 8px 16px; border-radius: 999px;
    font-weight: 500;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
  }
  .ba-credit .dot { color: var(--lime-500); margin: 0 8px; }

  .ba-handle {
    position: absolute; top: 0; bottom: 0;
    left: 50%; width: 2px;
    background: var(--lime-500);
    transform: translateX(-50%);
    pointer-events: none;
    box-shadow: 0 0 18px rgba(123, 194, 66, 0.55);
    z-index: 2;
    transition: box-shadow .25s ease;
  }
  .ba-frame.active .ba-handle { box-shadow: 0 0 24px rgba(123, 194, 66, 0.85); }
  .ba-handle .grip {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 22px; height: 36px;
    background: var(--lime-500);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center; gap: 3px;
    box-shadow: 0 6px 20px -4px rgba(0,0,0,0.4);
  }
  .ba-handle .grip span {
    display: block;
    width: 2px; height: 14px;
    background: var(--slate-950);
    border-radius: 1px;
  }
  .ba-handle .pct {
    position: absolute;
    top: 18px; left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: 0.1em;
    font-weight: 500;
    color: var(--slate-950);
    background: var(--lime-500);
    padding: 5px 10px; border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity .22s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  }
  .ba-frame.active .ba-handle .pct,
  .ba-frame.hover .ba-handle .pct { opacity: 1; }

  /* Idle pulse on grip until first interaction */
  .ba-frame.idle .ba-handle .grip {
    animation: baPulse 2.4s ease-in-out infinite;
  }
  @keyframes baPulse {
    0%, 100% { box-shadow: 0 6px 20px -4px rgba(0,0,0,0.4), 0 0 0 0 rgba(123,194,66,0.6); }
    50%      { box-shadow: 0 6px 20px -4px rgba(0,0,0,0.4), 0 0 0 14px rgba(123,194,66,0); }
  }

  @media (prefers-reduced-motion: reduce) {
    .ba-frame.idle .ba-before,
    .ba-frame.idle .ba-handle,
    .ba-frame.idle .ba-handle .grip { animation: none; }
  }

  .ba-mode {
    max-width: 1100px;
    margin: 18px auto 0;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--muted);
  }
  .ba-mode .state {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--body);
  }
  .ba-mode .state .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--lime-500);
  }
  .ba-mode .state.pinned .dot { background: var(--lime-600); }
  .ba-mode .hint { color: var(--muted); }

  /* ─────── DIFFERENTIATION (Us vs Them comparison) ─────── */
  .differentiation { background: var(--white); padding: 128px 0; border-top: 1px solid var(--line); }
  .compare-table {
    display: grid;
    grid-template-columns: minmax(160px, 0.9fr) minmax(260px, 1.3fr) minmax(260px, 1.3fr);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
  }
  .compare-table > div {
    padding: 22px 28px;
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
    font-size: 15px;
    line-height: 1.45;
  }
  .compare-table > div:nth-child(3n) { border-right: none; }
  .compare-table > div:nth-child(-n+3) { border-top: none; }

  .compare-h {
    background: var(--off-white);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    display: flex; align-items: center;
  }
  .compare-h.them { color: var(--slate-700); }
  .compare-h.us {
    color: var(--lime-600);
    background: rgba(123, 194, 66, 0.04);
  }
  .compare-topic {
    background: var(--off-white);
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--ink);
    font-weight: 500;
    display: flex; align-items: center;
  }
  .compare-them, .compare-us {
    display: flex; align-items: flex-start; gap: 12px;
  }
  .compare-them { color: var(--body); }
  .compare-them svg { flex-shrink: 0; color: var(--muted); margin-top: 3px; }
  .compare-them em { font-style: normal; color: var(--slate-600); }
  .compare-us {
    background: rgba(123, 194, 66, 0.04);
    color: var(--ink);
    font-weight: 500;
  }
  .compare-us svg { flex-shrink: 0; color: var(--lime-500); margin-top: 3px; }
  .compare-us strong { color: var(--lime-700); font-weight: 600; }
  @media (max-width: 800px) {
    .compare-table { grid-template-columns: 1fr; border-radius: var(--radius-md); }
    .compare-table > div { border-right: none; }
    .compare-h:not(.them):not(.us) { display: none; }
    .compare-h.them, .compare-h.us {
      padding: 14px 22px;
      font-weight: 600;
    }
    .compare-topic {
      background: var(--ink); color: var(--white);
      font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
      padding: 12px 22px;
    }
    .compare-them, .compare-us { padding: 18px 22px; }
  }

  /* ─────── LIVE DATA DEMO ─────── */
  .demo { background: var(--off-white); padding: 128px 0; }
  .demo-grid {
    display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center;
  }
  @media (max-width: 900px) { .demo-grid { grid-template-columns: 1fr; } }
  .demo-grid h2 { font-size: clamp(30px, 4vw, 44px); margin: 16px 0 20px; }
  .demo-grid p { font-size: 17px; color: var(--body); line-height: 1.6; max-width: 480px; margin-bottom: 24px; }

  .code-block {
    background: var(--slate-950);
    border-radius: var(--radius-md);
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    font-family: var(--font-mono);
    font-size: 13px;
    line-height: 1.6;
  }
  .code-head {
    display: flex; align-items: center; gap: 10px;
    background: var(--slate-900);
    border-bottom: 1px solid var(--slate-700);
    padding: 12px 18px;
  }
  .code-head .dots { display: flex; gap: 6px; }
  .code-head .dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--slate-700); }
  .code-head .file {
    font-family: var(--font-mono); font-size: 11px;
    color: var(--muted); letter-spacing: 0.04em;
  }
  .code-body {
    padding: 22px 24px;
    color: #E5E7EB;
    white-space: pre;
    overflow-x: auto;
  }
  .code-body .ln { color: var(--slate-500); margin-right: 16px; user-select: none; }
  .code-body .k  { color: #C792EA; }  /* keyword */
  .code-body .s  { color: var(--lime-500); } /* string */
  .code-body .n  { color: #FFD479; } /* number */
  .code-body .c  { color: var(--slate-500); } /* comment */
  .code-body .v  { color: #82AAFF; } /* variable */
  .code-body .p  { color: #C9CFD7; }

  /* ─────── PROCESS V2 (sticky-pinned) ─────── */
  .process { background: var(--off-white); position: relative; border-top: 1px solid var(--line); }
  .p2-intro { padding: 112px 0 64px; }
  .p2-intro .eyebrow {
    font-family: var(--font-mono);
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--lime-600);
    margin-bottom: 16px;
    display: inline-flex; align-items: center; gap: 12px;
  }
  .p2-intro .eyebrow::before {
    content: ""; display: block; width: 32px; height: 1px; background: var(--lime-600);
  }
  .p2-intro h2 {
    font-size: clamp(36px, 5vw, 64px);
    letter-spacing: -0.035em;
    color: var(--ink);
    max-width: 18ch;
    margin-bottom: 24px;
  }
  .p2-intro h2 em { font-style: normal; color: var(--lime-600); }
  .p2-intro p {
    font-size: 18px; line-height: 1.55;
    color: var(--body);
    max-width: 580px;
  }

  .p2-scroller {
    position: relative;
    height: 500vh;
  }
  .p2-trigger {
    position: absolute;
    left: 0; right: 0;
    height: 100vh;
    width: 100%;
    pointer-events: none;
  }
  .p2-trigger[data-step="1"] { top: 0; }
  .p2-trigger[data-step="2"] { top: 100vh; }
  .p2-trigger[data-step="3"] { top: 200vh; }
  .p2-trigger[data-step="4"] { top: 300vh; }

  .p2-stage-wrap {
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 1;
  }
  .p2-stage {
    height: 100vh;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 64px;
    padding: 80px 0;
    align-items: center;
  }
  @media (max-width: 900px) {
    /* Disable sticky pinning on mobile — stack all 4 steps in flow */
    .p2-scroller { height: auto; }
    .p2-trigger { display: none; }
    .p2-stage-wrap { position: static; height: auto; }
    .p2-stage {
      grid-template-columns: 1fr;
      height: auto;
      gap: 32px;
      padding: 32px 0 48px;
    }
    .p2-rail { display: none; } /* rail makes no sense without sticky swap */
    .p2-content { position: relative; min-height: 0; }
    .p2-step {
      position: relative;
      inset: auto;
      opacity: 1;
      transform: none;
      pointer-events: auto;
      padding: 48px 0;
      border-bottom: 1px solid var(--line);
      transition: none;
    }
    .p2-step:last-child { border-bottom: none; }
  }

  .p2-rail {
    position: relative;
    padding-left: 24px;
  }
  .p2-rail::before {
    content: ""; position: absolute;
    left: 0; top: 8px; bottom: 8px;
    width: 1px;
    background: rgba(31, 41, 55, 0.1);
  }
  .p2-rail::after {
    content: ""; position: absolute;
    left: 0; top: 8px;
    width: 1px;
    height: var(--rail-progress, 0%);
    background: var(--lime-500);
    transition: height .5s cubic-bezier(.4,0,.2,1);
  }
  .p2-rail-item {
    position: relative;
    display: flex; align-items: center; gap: 14px;
    padding: 14px 0;
    font-family: var(--font-mono);
    font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--muted);
    cursor: pointer;
    transition: color .35s;
  }
  .p2-rail-item::before {
    content: ""; position: absolute;
    left: -29px; top: 50%; transform: translateY(-50%);
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--off-white);
    border: 1px solid rgba(31, 41, 55, 0.2);
    transition: all .35s;
  }
  .p2-rail-item.active { color: var(--ink); }
  .p2-rail-item.active::before {
    background: var(--lime-500);
    border-color: var(--lime-500);
    box-shadow: 0 0 0 4px rgba(123, 194, 66, 0.18);
  }
  .p2-rail-item .label { font-weight: 500; }
  .p2-rail-item .week { color: var(--muted); font-weight: 400; }

  .p2-content {
    position: relative;
    min-height: 480px;
  }
  .p2-step {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .45s ease, transform .45s ease;
    pointer-events: none;
  }
  .p2-step.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  @media (max-width: 900px) {
    .p2-step { grid-template-columns: 1fr; gap: 16px; }
  }
  .p2-step-num {
    font-family: var(--font-mono);
    font-weight: 400;
    font-size: clamp(120px, 14vw, 200px);
    letter-spacing: -0.06em;
    line-height: 0.85;
    color: transparent;
    -webkit-text-stroke: 2.5px rgba(95, 160, 46, 0.7);
  }
  .p2-step.featured .p2-step-num {
    color: var(--lime-500);
    -webkit-text-stroke: 0;
  }
  .p2-step-body { max-width: 580px; }
  .p2-step-week {
    font-family: var(--font-mono);
    font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--lime-600);
    margin-bottom: 14px;
    display: inline-flex; align-items: center; gap: 10px;
  }
  .p2-step-week::before {
    content: ""; display: block; width: 24px; height: 1px; background: var(--lime-600);
  }
  .p2-step h3 {
    font-size: clamp(28px, 3.8vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.028em;
    color: var(--ink);
    margin-bottom: 20px;
  }
  .p2-step h3 em { font-style: normal; color: var(--lime-600); }
  .p2-step p {
    font-size: 17px;
    line-height: 1.55;
    color: var(--body);
    max-width: 52ch;
  }
  .p2-step .deliverable {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-family: var(--font-mono);
    font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--muted);
  }
  .p2-step .deliverable strong { color: var(--ink); font-weight: 500; }

  .p2-foot {
    background: var(--off-white);
    padding: 64px 0 96px;
    border-top: 1px solid var(--line);
  }
  .p2-foot-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
  }
  .p2-foot .rule { height: 1px; background: var(--line); }
  .p2-foot .ticker {
    font-family: var(--font-mono);
    font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--muted);
    text-align: center;
  }
  .p2-foot .ticker span { color: var(--lime-600); }

  /* ─────── TESTIMONIALS ─────── */
  .testimonials { background: var(--off-white); padding: 128px 0; }
  .quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }
  .quote {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    display: flex; flex-direction: column; gap: 24px;
    transition: border-color .2s, transform .2s, box-shadow .2s;
  }
  .quote:hover { border-color: var(--slate-600); transform: translateY(-3px); box-shadow: var(--shadow-md); }
  .quote .qmark {
    font-family: var(--font-mono);
    color: var(--lime-500);
    font-size: 40px;
    line-height: 1;
    margin: 0;
  }
  .quote-body {
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink);
    flex: 1;
  }
  .quote-body em { color: var(--lime-700); font-style: normal; font-weight: 600; }
  .quote-author {
    display: flex; align-items: center; gap: 12px;
    border-top: 1px solid var(--line);
    padding-top: 20px;
  }
  .quote-avatar {
    width: 44px; height: 44px;
    background: var(--slate-800);
    color: var(--lime-500);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-mono); font-weight: 500; font-size: 14px;
  }
  .quote-name { font-size: 14px; color: var(--ink); font-weight: 600; }
  .quote-role { font-family: var(--font-mono); font-size: 12px; color: var(--muted); letter-spacing: 0.02em; }

  /* ─────── SERVICE AREAS ─────── */
  .areas { background: var(--white); padding: 112px 0; border-top: 1px solid var(--line); }
  .areas-head { display: flex; align-items: end; justify-content: space-between; gap: 48px; margin-bottom: 48px; }
  @media (max-width: 800px) { .areas-head { flex-direction: column; align-items: start; } }
  .areas-head h2 { font-size: clamp(28px, 3.4vw, 40px); margin: 12px 0 0; max-width: 560px; }
  .areas-head p { font-size: 15px; color: var(--body); max-width: 320px; }

  /* AZ Map */
  .az-map-wrap {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 56px;
    background: var(--off-white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px;
  }
  @media (max-width: 900px) { .az-map-wrap { grid-template-columns: 1fr; padding: 28px; } }
  .az-map { width: 100%; height: auto; }
  .az-map .state { fill: none; stroke: var(--slate-700); stroke-width: 1.5; }
  .az-map .conn { stroke: var(--line-2); stroke-width: 1; stroke-dasharray: 3 3; fill: none; }
  .az-map .node { fill: var(--lime-500); stroke: var(--white); stroke-width: 2; }
  .az-map .node--hq { fill: var(--lime-500); stroke: var(--slate-950); stroke-width: 2.5; }
  .az-map .city-label {
    font-family: var(--font-mono); font-size: 10px;
    fill: var(--ink); letter-spacing: 0.04em;
    font-weight: 500;
  }
  .az-map .city-label--hq { font-weight: 700; font-size: 11px; }
  .az-map .pulse {
    fill: var(--lime-500); opacity: 0.3;
    animation: hqPulse 2.5s ease-out infinite;
  }
  @keyframes hqPulse {
    0%   { transform-origin: 250px 380px; r: 6; opacity: 0.5; }
    100% { transform-origin: 250px 380px; r: 22; opacity: 0; }
  }
  .az-map-detail h3 {
    font-size: 22px; color: var(--ink); margin: 0 0 12px; line-height: 1.2;
  }
  .az-map-detail p { font-size: 15px; color: var(--body); line-height: 1.55; margin-bottom: 20px; }
  .az-map-detail .legend {
    display: flex; flex-direction: column; gap: 8px;
    font-family: var(--font-mono); font-size: 12px; color: var(--body);
    margin-top: 16px;
  }
  .az-map-detail .legend-item { display: flex; align-items: center; gap: 10px; }
  .az-map-detail .legend-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--lime-500); border: 2px solid var(--slate-950); flex-shrink: 0; }
  .az-map-detail .legend-dot.satellite { border-color: var(--white); }
  .areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
  }
  @media (max-width: 800px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .areas-grid { grid-template-columns: 1fr; } }
  .areas-grid a {
    background: var(--white);
    padding: 20px 22px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--ink);
    letter-spacing: 0.02em;
    transition: background .15s, color .15s;
    display: flex; align-items: center; justify-content: space-between;
  }
  .areas-grid a::after {
    content: "→";
    color: var(--muted);
    transition: color .15s, transform .15s;
  }
  .areas-grid a:hover {
    background: var(--off-white);
    color: var(--lime-600);
  }
  .areas-grid a:hover::after { color: var(--lime-600); transform: translateX(2px); }

  /* ─────── FINAL CTA + QUOTE FORM ─────── */
  .final-cta {
    background: var(--slate-950);
    color: var(--white);
    padding: 128px 0;
    position: relative; overflow: hidden;
  }
  .final-cta::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(60% 60% at 70% 30%, rgba(123, 194, 66, 0.12), transparent 70%),
      radial-gradient(40% 40% at 20% 80%, rgba(123, 194, 66, 0.06), transparent 70%);
    pointer-events: none;
  }
  .final-cta .container { position: relative; }
  .final-grid {
    display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: start;
  }
  @media (max-width: 900px) { .final-grid { grid-template-columns: 1fr; gap: 48px; } }
  .final-cta h2 {
    font-size: clamp(36px, 5vw, 56px);
    color: var(--white);
    margin: 16px 0 16px;
    letter-spacing: -0.035em;
    line-height: 1.05;
  }
  .final-cta .lede { font-size: 18px; color: #C9CFD7; max-width: 520px; line-height: 1.55; margin-bottom: 32px; }
  .final-points { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
  .final-points li {
    list-style: none;
    font-family: var(--font-mono);
    font-size: 13px;
    color: #BFC5CD;
    letter-spacing: 0.02em;
    display: flex; align-items: center; gap: 12px;
  }
  .final-points li::before {
    content: ""; width: 16px; height: 1px; background: var(--lime-500);
  }

  /* Quote form */
  .quote-card {
    background: var(--white);
    color: var(--ink);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
  }
  .quote-card h3 { font-size: 22px; margin: 0 0 6px; }
  .quote-card .sub { font-family: var(--font-mono); font-size: 12px; color: var(--muted); letter-spacing: 0.04em; margin-bottom: 24px; }
  .form-grid {
    display: grid; gap: 16px;
    grid-template-columns: 1fr 1fr;
  }
  .form-grid .full { grid-column: 1 / -1; }
  @media (max-width: 540px) { .form-grid { grid-template-columns: 1fr; } }
  .field label {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .field input, .field select, .field textarea {
    width: 100%;
    background: var(--off-white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--ink);
    transition: border-color .15s, background .15s;
  }
  .field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--lime-500);
    background: var(--white);
  }
  .field textarea { resize: vertical; min-height: 80px; }
  .form-actions {
    margin-top: 24px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; flex-wrap: wrap;
  }
  .form-meta { font-family: var(--font-mono); font-size: 11px; color: var(--muted); letter-spacing: 0.02em; }

  /* Path picker — radio cards echoing the hero's three-path framing */
  .path-picker-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
  }
  .path-picker {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 24px;
  }
  .path-card {
    display: block;
    position: relative;
    cursor: pointer;
  }
  .path-card input[type="radio"] {
    position: absolute; opacity: 0; pointer-events: none;
    width: 0; height: 0;
  }
  .path-card-inner {
    padding: 14px 16px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--off-white);
    transition: border-color .2s, background .2s, transform .15s;
    display: flex; align-items: center; gap: 12px;
  }
  .path-card:hover .path-card-inner {
    border-color: var(--slate-600);
    background: var(--white);
  }
  .path-card input:checked + .path-card-inner {
    border-color: var(--lime-500);
    background: rgba(123, 194, 66, 0.06);
  }
  .path-card input:focus-visible + .path-card-inner {
    outline: 2px solid var(--lime-500);
    outline-offset: 2px;
  }
  .path-card-marker {
    width: 14px; height: 14px;
    border-radius: 50%;
    border: 1.5px solid var(--line-2);
    background: var(--white);
    flex-shrink: 0;
    position: relative;
    transition: all .2s;
  }
  .path-card input:checked + .path-card-inner .path-card-marker {
    border-color: var(--lime-500);
    background: var(--lime-500);
    box-shadow: inset 0 0 0 3px var(--white);
  }
  .path-card-body { flex: 1; min-width: 0; }
  .path-card-body .eyb {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--lime-600);
    margin-bottom: 3px;
  }
  .path-card-body .ttl {
    font-size: 14px;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.3;
  }

  /* ─────── GRAVITY FORMS — brand override (scoped to .quote-card) ─────── */
  .quote-card .gform_wrapper { margin: 0; }
  .quote-card .gform_wrapper form { margin: 0; }
  /* Reset fieldset (radios are wrapped in one) */
  .quote-card .gform_wrapper fieldset {
    border: 0; padding: 0; margin: 0; min-width: 0;
  }
  .quote-card .gform_wrapper legend {
    padding: 0; margin: 0; width: 100%;
  }
  .quote-card .gform_wrapper .gform_validation_container,
  .quote-card .gform_wrapper .gfield--type-honeypot {
    position: absolute !important;
    left: -9999px !important;
    height: 0 !important;
    overflow: hidden !important;
  }
  .quote-card .gform_required_legend { display: none; }
  .quote-card .gform_heading { display: none; } /* belt-and-suspenders — we use our own h3 */

  .quote-card .gform_fields {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr 1fr;
    list-style: none;
    padding: 0; margin: 0;
  }
  .quote-card .gfield { list-style: none; margin: 0; padding: 0; }
  .quote-card .gfield--type-radio,
  .quote-card .gfield--type-textarea,
  .quote-card .gfield--width-full {
    grid-column: 1 / -1;
  }

  /* Labels */
  .quote-card .gfield_label {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 8px;
    font-weight: 500;
  }
  .quote-card .gfield_required { color: var(--lime-600); margin-left: 6px; }
  .quote-card .gfield_required_text { display: none; }
  .quote-card .gfield_required::after { content: "·"; }

  /* Text/email/textarea inputs */
  .quote-card .ginput_container input[type="text"],
  .quote-card .ginput_container input[type="email"],
  .quote-card .ginput_container input[type="tel"],
  .quote-card .ginput_container textarea {
    width: 100%;
    background: var(--off-white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--ink);
    transition: border-color .15s, background .15s;
  }
  .quote-card .ginput_container input:focus,
  .quote-card .ginput_container textarea:focus {
    outline: none;
    border-color: var(--lime-500);
    background: var(--white);
  }
  .quote-card .ginput_container textarea { min-height: 110px; resize: vertical; }

  /* Radios → path-card style */
  .quote-card .ginput_container_radio .gfield_radio {
    list-style: none;
    padding: 0; margin: 0;
    display: grid;
    gap: 8px;
  }
  .quote-card .gchoice { position: relative; margin: 0; }
  .quote-card .gchoice input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0; height: 0;
  }
  .quote-card .gchoice label {
    display: block;
    padding: 14px 16px 14px 44px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--off-white);
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--ink);
    transition: border-color .2s, background .2s;
    position: relative;
    line-height: 1.35;
    margin: 0;
    text-transform: none;
  }
  .quote-card .gchoice label::before {
    content: "";
    position: absolute;
    left: 16px; top: 50%;
    transform: translateY(-50%);
    width: 14px; height: 14px;
    border-radius: 50%;
    border: 1.5px solid var(--line-2);
    background: var(--white);
    transition: all .2s;
  }
  .quote-card .gchoice:hover label { border-color: var(--slate-600); background: var(--white); }
  .quote-card .gchoice input[type="radio"]:checked + label {
    border-color: var(--lime-500);
    background: rgba(123, 194, 66, 0.06);
  }
  .quote-card .gchoice input[type="radio"]:checked + label::before {
    background: var(--lime-500);
    border-color: var(--lime-500);
    box-shadow: inset 0 0 0 3px var(--white);
  }
  .quote-card .gchoice input[type="radio"]:focus-visible + label {
    outline: 2px solid var(--lime-500);
    outline-offset: 2px;
  }

  /* Submit button */
  .quote-card .gform_footer {
    margin: 24px 0 0;
    padding: 0;
    border: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
  }
  .quote-card .gform_button {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.005em;
    background: var(--lime-500);
    color: var(--slate-950);
    border: 1px solid transparent;
    cursor: pointer;
    transition: background .18s, box-shadow .18s, transform .18s;
  }
  .quote-card .gform_button:hover {
    background: var(--lime-600);
    box-shadow: 0 8px 24px -8px rgba(95, 160, 46, 0.5);
    transform: translateY(-1px);
  }
  .quote-card .gform_ajax_spinner { margin-left: 12px; }

  /* Validation states */
  .quote-card .gfield_error .gfield_label { color: #b91c1c; }
  .quote-card .gfield_error input,
  .quote-card .gfield_error textarea {
    border-color: #b91c1c;
    background: #fef2f2;
  }
  .quote-card .gfield_validation_message,
  .quote-card .validation_message {
    color: #b91c1c;
    font-family: var(--font-mono);
    font-size: 12px;
    margin-top: 6px;
  }
  .quote-card .gform_validation_errors {
    background: rgba(185, 28, 28, 0.06);
    border: 1px solid rgba(185, 28, 28, 0.2);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin-bottom: 20px;
    color: #991b1b;
    font-size: 14px;
  }
  .quote-card .gform_validation_errors h2,
  .quote-card .gform_validation_errors .gform_submission_error {
    font-size: 14px;
    margin: 0;
    font-weight: 600;
  }

  /* Confirmation message (after submit) */
  .quote-card .gform_confirmation_message,
  .quote-card .gform_confirmation_wrapper {
    background: rgba(123, 194, 66, 0.08);
    border: 1px solid rgba(123, 194, 66, 0.3);
    border-radius: var(--radius-md);
    padding: 24px;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.55;
  }
  .quote-card .gform_confirmation_message p { margin: 0; }
  .quote-card .gform_confirmation_message strong { color: var(--lime-700); }

  @media (max-width: 540px) {
    .quote-card .gform_fields { grid-template-columns: 1fr; }
  }

  /* ─────── FOOTER ─────── */
  .footer {
    background: var(--slate-950);
    color: #C9CFD7;
    padding: 96px 0 40px;
    border-top: 1px solid var(--slate-800);
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--slate-700);
  }
  @media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; } }
  .footer-brand { max-width: 320px; }
  .footer-brand .brand { margin-bottom: 20px; }
  .footer-brand .brand-logo { height: 38px; }
  .footer-brand p { font-size: 13px; line-height: 1.6; color: var(--muted); }
  .footer-contact {
    list-style: none; padding: 0; margin: 20px 0 0;
    display: flex; flex-direction: column; gap: 6px;
  }
  .footer-contact a {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--white);
    letter-spacing: 0.02em;
    transition: color .18s;
  }
  .footer-contact a:hover { color: var(--lime-500); }
  .footer-col h4 {
    font-family: var(--font-mono);
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--muted); margin: 0 0 18px;
  }
  .footer-col ul { list-style: none; padding: 0; margin: 0; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    font-size: 14px; color: #BFC5CD; transition: color .18s;
  }
  .footer-col a:hover { color: var(--lime-500); }
  .footer-bottom {
    padding-top: 32px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
  }
  .footer-bottom p {
    font-family: var(--font-mono); font-size: 12px;
    color: var(--slate-500); letter-spacing: 0.02em; margin: 0;
  }
  .footer-legal { display: flex; gap: 24px; }
  .footer-legal a {
    font-family: var(--font-mono); font-size: 12px;
    color: var(--slate-500); letter-spacing: 0.02em;
  }
  .footer-legal a:hover { color: var(--lime-500); }