:root {
    --line: rgba(31,31,31,.14);
    --max: 1140px;
  }
  * { box-sizing: border-box; }
  @media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }
  }
  body { margin: 0; background: var(--cream); color: var(--charcoal); font-family: var(--body); font-size: 16px; line-height: 1.65; }
  .wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

  /* ── Buttons ── */
  .btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--body); font-weight: 600; font-size: 15.5px; line-height: 1; border-radius: 999px; padding: 15px 26px; cursor: pointer; text-decoration: none; border: 2px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease; }
  .btn:active { transform: scale(.97); }
  .btn-primary { background: var(--cobalt); color: var(--white); box-shadow: 0 2px 0 rgba(31,31,31,.25); }
  .btn-primary:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 5px 0 rgba(31,31,31,.22); }
  .btn-outline { background: var(--white); color: var(--charcoal); border-color: var(--charcoal); }
  .btn-outline:hover { background: var(--sunshine); transform: translateY(-2px) scale(1.03); }
  .btn-coral { background: var(--coral-ink); color: var(--white); box-shadow: 0 2px 0 rgba(31,31,31,.25); }
  .btn-coral:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 5px 0 rgba(31,31,31,.22); }
  .btn-sun { background: var(--sunshine); color: var(--charcoal); border-color: var(--charcoal); box-shadow: 0 2px 0 rgba(31,31,31,.25); }
  .btn-sun:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 5px 0 rgba(31,31,31,.22); }

  /* ── Chips / stickers ── */
  .chip { display: inline-flex; align-items: center; gap: 8px; background: var(--mint); border: 1.5px solid var(--charcoal); border-radius: 999px; padding: 7px 16px; font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
  .chip-live { background: var(--mint); }
  .live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--coral-ink); border: 1.5px solid var(--charcoal); flex: none; }

  /* ── Nav ── */
  nav { position: sticky; top: 0; z-index: 50; background: var(--cream); border-bottom: 1.5px solid var(--line); }
  .nav-inner { display: flex; align-items: center; gap: 28px; height: 76px; }
  .nav-inner .logo { margin-right: auto; }
  .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-links { display: flex; gap: 28px; align-items: center; }
  .nav-links a { text-decoration: none; color: var(--charcoal); font-weight: 500; font-size: 15px; transition: color .15s; }
  .nav-links a:hover { color: var(--cobalt); }
  .nav-links a.active { color: var(--cobalt); font-weight: 700; }
  .nav-cta { padding: 12px 22px; }

  /* ── Section scaffolding ── */
  section { padding: 84px 0; }
  .eyebrow { display: inline-block; background: var(--cobalt); color: var(--white); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; border-radius: 8px; padding: 6px 14px; margin: 0 0 16px; }
  .eyebrow-coral { background: var(--coral-ink); }
  h2 { font-family: var(--display); font-weight: 600; font-size: clamp(32px, 3.6vw, 44px); line-height: 1.14; margin: 0 0 16px; letter-spacing: -.005em; }
  .sec-sub { color: var(--ink-soft); font-size: 17px; max-width: 60ch; margin: 0; }

  /* Highlight mark */
  .hl-mark { position: relative; white-space: nowrap; z-index: 0; }
  .hl-mark::after { content: ''; position: absolute; left: -2%; right: -2%; bottom: 4px; height: 38%; background: var(--mint); z-index: -1; border-radius: 6px; transform: rotate(-1deg); }
  .hl-mark.sun::after { background: var(--sunshine); }

  /* ── Hero ── */
  .hero { padding: 60px 0 74px; position: relative; overflow-x: clip; }
  .hero-back { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; color: var(--ink-soft); text-decoration: none; margin-bottom: 22px; transition: color .15s; }
  .hero-back:hover { color: var(--cobalt); }
  .hero-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
  .hero-kicker { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
  h1 { font-family: var(--display); font-weight: 600; font-size: clamp(42px, 5vw, 60px); line-height: 1.08; letter-spacing: -.01em; margin: 22px 0 0; max-width: 20ch; }
  .hero-sub { font-size: 18px; color: var(--ink-soft); max-width: 60ch; margin: 24px 0 30px; }
  .hero-ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
  .hero-star { position: absolute; top: 46px; right: 8%; transform: rotate(-8deg); }

  /* ── At a glance (ledger strip) ── */
  .at-glance { padding: 0 0 72px; }
  .glance-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; border: 2px solid var(--charcoal); border-radius: 20px; overflow: hidden; background: var(--white); box-shadow: 0 4px 0 rgba(31,31,31,.2); }
  .glance-cell { padding: 22px 26px 24px; border-right: 1.5px solid var(--line); border-bottom: 1.5px solid var(--line); }
  .glance-cell:nth-child(3n) { border-right: 0; }
  .glance-cell:nth-child(n+4) { border-bottom: 0; }
  .glance-cell dt { font-size: 11.5px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; color: var(--cobalt); }
  .glance-cell dd { margin: 9px 0 0; font-family: var(--display); font-size: 21px; font-weight: 600; line-height: 1.16; }
  .glance-cell dd span { display: block; margin-top: 5px; font-family: var(--body); font-size: 13px; font-weight: 400; color: var(--ink-soft); line-height: 1.4; }

  /* ── Opportunity (conversion core) ── */
  .opportunity { background: var(--white); border-top: 1.5px solid var(--line); border-bottom: 1.5px solid var(--line); }
  .opp-lead { max-width: 62ch; margin: 4px 0 0; font-size: 18px; line-height: 1.65; color: var(--ink-soft); }
  .opp-data { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 46px 0 0; }
  .opp-stat { display: flex; flex-direction: column; justify-content: flex-end; gap: 8px; padding: 24px 22px; border: 2px solid var(--charcoal); border-radius: 16px; background: var(--cream); box-shadow: 0 4px 0 rgba(31,31,31,.18); }
  .opp-num { font-family: var(--display); font-weight: 600; font-size: clamp(28px, 3vw, 36px); line-height: 1; letter-spacing: -.01em; color: var(--cobalt); font-variant-numeric: tabular-nums; }
  .opp-stat:nth-child(2) .opp-num { color: var(--coral-ink); }
  .opp-stat:nth-child(3) .opp-num { color: var(--cobalt); }
  .opp-stat-open { background: var(--sunshine); }
  .opp-stat-open .opp-num { color: var(--charcoal); }
  .opp-lbl { font-size: 13.5px; font-weight: 650; color: var(--ink-soft); line-height: 1.4; }
  .opp-stat-open .opp-lbl { color: var(--charcoal); }
  .opp-take { display: flex; gap: 18px; align-items: flex-start; margin: 30px 0 0; padding: 26px 30px; border: 2px solid var(--charcoal); border-radius: 18px; background: var(--mint); box-shadow: 0 4px 0 rgba(31,31,31,.2); }
  .opp-take-mark { flex: none; display: grid; place-items: center; width: 46px; height: 46px; border: 1.5px solid var(--charcoal); border-radius: 13px; background: var(--white); transform: rotate(-3deg); }
  .opp-take p { margin: 0; font-size: 17px; line-height: 1.6; max-width: 68ch; }
  .opp-source { margin: 22px 0 0; font-size: 12.5px; color: var(--ink-soft); }

  /* ── Problem in the room ── */
  .prob-lead { margin: 34px 0 0; font-size: 12.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
  .prob-space { list-style: none; margin: 16px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .prob-item { display: flex; align-items: center; gap: 14px; padding: 18px 22px; border: 1.5px solid var(--charcoal); border-radius: 14px; background: var(--white); font-size: 16px; font-weight: 600; line-height: 1.3; }
  .prob-item:nth-child(2), .prob-item:nth-child(3) { background: var(--cream); }
  .prob-ic { flex: none; display: grid; place-items: center; width: 42px; height: 42px; border: 1.5px solid var(--charcoal); border-radius: 12px; background: var(--mint); }
  .prob-item:nth-child(even) .prob-ic { background: var(--sunshine); }
  .prob-note { margin: 24px 0 0; font-size: 14px; color: var(--ink-soft); font-style: italic; max-width: 62ch; }

  /* ── The day (timeline) ── */
  .method { background: var(--white); border-top: 1.5px solid var(--line); border-bottom: 1.5px solid var(--line); }
  .timeline { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); column-gap: 14px; align-items: stretch; margin-top: clamp(44px, 5vw, 64px); }
  .tl-connector { position: absolute; top: 50%; left: 0; right: 0; height: 0; z-index: 0; }
  .tl-arrow { position: absolute; top: 0; width: 72px; height: 22px; overflow: visible; transform: translate(-50%, -50%); }
  .tl-arrow-line { fill: none; stroke: var(--charcoal); stroke-width: 2.4; stroke-linecap: round; }
  .tl-arrow-head { fill: none; stroke: var(--charcoal); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
  .tl-step { display: grid; grid-template-rows: 1fr auto 1fr; min-width: 0; }
  .tl-node { position: relative; grid-row: 2; justify-self: center; z-index: 1; width: 64px; height: 64px; transition: transform .2s ease; }
  .tl-tile { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; border: 2.4px solid var(--charcoal); border-radius: 16px; background: var(--white); box-shadow: 0 4px 0 rgba(31,31,31,.18); }
  .tl-glyph { display: block; width: 28px; height: 28px; }
  .tl-fill-mint { background: var(--mint); }
  .tl-fill-sunshine { background: var(--sunshine); }
  .tl-content { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 0 6px; text-align: center; }
  .tl-up .tl-content { grid-row: 1; align-self: end; padding-bottom: 22px; }
  .tl-down .tl-content { grid-row: 3; align-self: start; padding-top: 22px; }
  .tl-time { display: inline-block; font-family: var(--body); font-size: 12px; font-weight: 800; letter-spacing: .06em; color: var(--cobalt); font-variant-numeric: tabular-nums; }
  /* A step with no time still needs the line box, or its heading rides up out
     of line with the other steps on its side of the axis. */
  .tl-time:empty::before { content: "\00a0"; }
  .timeline h3 { margin: 0; font-family: var(--display); font-size: 21px; font-weight: 600; }
  .timeline p { margin: 2px 0 0; max-width: 23ch; color: var(--ink-soft); font-size: 13.5px; line-height: 1.5; }
  .tl-step:hover .tl-node { transform: translateY(-3px) scale(1.06); }
  .method-link { margin: clamp(40px, 5vw, 60px) 0 0; font-size: 15px; font-weight: 600; }
  .method-link a { color: var(--cobalt); text-decoration: underline; text-underline-offset: 3px; }

  /* ── Prize (podium) ── */
  .podium { list-style: none; margin: 44px 0 0; padding: 0; display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 18px; align-items: end; }
  .podium-place { display: flex; flex-direction: column; gap: 6px; padding: 26px 26px 28px; border: 2px solid var(--charcoal); border-radius: 18px; background: var(--white); box-shadow: 0 4px 0 rgba(31,31,31,.2); }
  .podium-first { background: var(--cobalt); color: var(--cream); padding-top: 44px; box-shadow: 0 5px 0 rgba(31,31,31,.22); }
  .podium-second { background: var(--mint); padding-top: 34px; }
  .podium-third { background: var(--cream); }
  .podium-rank { font-size: 12px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
  .podium-first .podium-rank { color: var(--sunshine); }
  .podium-second .podium-rank, .podium-third .podium-rank { color: var(--coral-ink); }
  .podium-amt { font-family: var(--display); font-weight: 600; font-size: clamp(36px, 4.4vw, 52px); line-height: 1; letter-spacing: -.01em; }
  .podium-note { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
  .podium-first .podium-note { color: rgba(255,247,230,.82); }

  /* ── Who it is for ── */
  .who-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 30px; margin-top: 40px; align-items: start; }
  .who-list { border: 1.5px solid var(--charcoal); border-radius: 18px; background: var(--white); overflow: hidden; }
  .who-list-h { margin: 0; padding: 20px 26px; border-bottom: 1.5px solid var(--charcoal); background: var(--cream); font-family: var(--display); font-size: 19px; font-weight: 600; }
  .who-list ul { list-style: none; margin: 0; padding: 0; }
  .who-list li { display: flex; gap: 14px; align-items: flex-start; padding: 18px 26px; border-bottom: 1.5px solid var(--line); font-size: 15.5px; line-height: 1.5; }
  .who-list li:last-child { border-bottom: 0; }
  .tick { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--mint); border: 1.5px solid var(--charcoal); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
  .gateway { padding: 30px 30px 32px; border: 2px solid var(--charcoal); border-radius: 18px; background: var(--sunshine); box-shadow: 0 4px 0 rgba(31,31,31,.2); transform: rotate(.7deg); }
  .gateway h3 { margin: 0 0 10px; font-family: var(--display); font-size: 24px; font-weight: 600; line-height: 1.1; }
  .gateway p { margin: 0; font-size: 15px; line-height: 1.6; }
  .who-overflow { margin: 30px 0 0; font-size: 15px; color: var(--ink-soft); max-width: 66ch; }
  .who-overflow a { color: var(--cobalt); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

  /* ── Take part (three routes) ── */
  .take-part { background: var(--white); border-top: 1.5px solid var(--line); border-bottom: 1.5px solid var(--line); }
  .routes { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
  .route { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; padding: 30px 32px 32px; border: 2px solid var(--charcoal); border-radius: 20px; background: var(--cream); box-shadow: 0 4px 0 rgba(31,31,31,.18); }
  .route-primary { grid-column: 1 / -1; background: var(--cobalt); color: var(--cream); box-shadow: 0 5px 0 rgba(31,31,31,.22); }
  .route-tag { font-size: 11.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--coral-ink); }
  .route-primary .route-tag { color: var(--sunshine); }
  .route h3 { margin: 2px 0 0; font-family: var(--display); font-size: 26px; font-weight: 600; line-height: 1.1; }
  .route p { margin: 0; font-size: 15px; color: var(--ink-soft); line-height: 1.6; max-width: 60ch; flex: 1; }
  .route-primary p { color: rgba(255,247,230,.85); max-width: 68ch; }
  .route .btn, .route-ctas { margin-top: 6px; }
  .route-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
  .route-primary .btn-primary { background: var(--sunshine); color: var(--charcoal); border-color: var(--charcoal); }

  /* ── FAQ ── */
  /* Base .faq styles live in global.css; this page runs a wider column. */
  .faq-list { max-width: 760px; }

  /* ── Final CTA ── */
  .final-cta { background: var(--cobalt); color: var(--white); text-align: center; position: relative; overflow: hidden; }
  .final-cta h2 { color: var(--white); font-size: clamp(38px, 4.4vw, 56px); }
  .final-cta .win { color: var(--sunshine); }
  .final-cta p { color: rgba(255,255,255,.82); font-size: 17px; margin: 18px auto 32px; max-width: 54ch; }
  .final-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .final-cta .btn { border-color: var(--charcoal); box-shadow: 0 3px 0 rgba(31,31,31,.25); }
  .final-cta .doodle-star { position: absolute; }

  /* ── Footer ── */
  footer { background: var(--navy); color: var(--cream); padding: 64px 0 0; }
  .foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1fr; gap: 44px; align-items: start; }
  .foot-brand p { margin: 16px 0 0; font-size: 14.5px; color: rgba(255,247,230,.72); max-width: 30ch; line-height: 1.55; }
  .foot-h { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,247,230,.55); margin: 0 0 16px; }
  .foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
  .foot-col a { color: var(--cream); text-decoration: none; font-size: 14.5px; font-weight: 500; }
  .foot-col a:hover { color: var(--sunshine); }
  .foot-social { display: flex; align-items: center; gap: 9px; }
  .foot-nl-pitch { margin: 0 0 14px; font-size: 14px; color: rgba(255,247,230,.72); line-height: 1.5; max-width: 28ch; }
  .foot-nl-done { display: none; margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--sunshine); }
  .foot-prov p { margin: 0 0 10px; font-size: 14.5px; color: rgba(255,247,230,.72); line-height: 1.55; }
  .foot-prov .flag { font-size: 13px; color: var(--cream); font-weight: 600; }
  .foot-base { border-top: 1px solid rgba(255,247,230,.15); margin-top: 52px; padding: 20px 0; }
  .foot-base .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
  .foot-base p { margin: 0; font-size: 12.5px; color: rgba(255,247,230,.5); }

  /* ── Mobile nav ── */
  .nav-burger { display: none; width: 44px; height: 44px; border: 1.5px solid var(--charcoal); border-radius: 12px; background: var(--white); cursor: pointer; align-items: center; justify-content: center; padding: 0; }
  .nav-burger svg { display: block; }
  .nav-burger .x-icon { display: none; }
  nav.open .nav-burger .bars-icon { display: none; }
  nav.open .nav-burger .x-icon { display: block; }
  .nav-mobile { display: none; border-top: 1.5px solid var(--line); padding: 10px 32px 24px; background: var(--cream); }
  nav.open .nav-mobile { display: block; }
  .nav-mobile a { display: block; padding: 14px 2px; text-decoration: none; color: var(--charcoal); font-weight: 600; font-size: 17px; border-bottom: 1px solid rgba(31,31,31,.1); }
  .nav-mobile a.btn { border-bottom: none; margin-top: 16px; display: flex; justify-content: center; color: var(--white); }

  /* ── Skip link ── */
  .skip-link { position: absolute; left: 16px; top: -200px; z-index: 100; background: var(--cobalt); color: var(--white); font-family: var(--body); font-weight: 600; font-size: 15px; text-decoration: none; padding: 12px 22px; border-radius: 999px; border: 2px solid var(--charcoal); box-shadow: 0 3px 0 rgba(31,31,31,.25); transition: top .15s ease; }
  .skip-link:focus { top: 16px; }
  main:focus { outline: none; }

  /* ── Focus-visible rings ── */
  a:focus-visible, button:focus-visible, .btn:focus-visible, .faq summary:focus-visible,
  .nav-links a:focus-visible, .nav-burger:focus-visible, .logo:focus-visible, .skip-link:focus-visible {
    outline: 3px solid var(--cobalt); outline-offset: 2px;
  }
  footer a:focus-visible, footer button:focus-visible, .final-cta .btn:focus-visible {
    outline-color: var(--sunshine);
  }

  /* ── Reveal ── */
  @media (prefers-reduced-motion: no-preference) {
    .reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
    .reveal.in { opacity: 1; transform: none; }
  }

  @media (max-width: 920px) {
    .nav-links, .nav-cta { display: none; }
    .nav-burger { display: flex; }
    .glance-grid { grid-template-columns: 1fr 1fr; }
    .glance-cell { border-right: 1.5px solid var(--line); border-bottom: 1.5px solid var(--line); }
    .glance-cell:nth-child(3n) { border-right: 1.5px solid var(--line); }
    .glance-cell:nth-child(2n) { border-right: 0; }
    .glance-cell:nth-child(n+4) { border-bottom: 1.5px solid var(--line); }
    .glance-cell:nth-last-child(-n+2) { border-bottom: 0; }
    .opp-data { grid-template-columns: 1fr 1fr; }
    .who-grid { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .foot-col ul { gap: 4px; }
    .foot-col a { min-height: 44px; display: flex; align-items: center; }
  }
  @media (max-width: 760px) {
    .timeline { grid-template-columns: 1fr; margin-top: 32px; }
    .tl-connector { top: 0; bottom: 0; left: 32px; right: auto; width: 0; height: auto; border-left: 2.4px dashed var(--charcoal); transform: none; }
    .tl-arrow { display: none; }
    .tl-step { grid-template-rows: none; grid-template-columns: 64px 1fr; align-items: start; gap: 6px 20px; padding: 22px 0; }
    .tl-node { grid-row: 1 / span 2; grid-column: 1; align-self: start; }
    .tl-content, .tl-up .tl-content, .tl-down .tl-content { grid-row: auto; grid-column: 2; align-self: start; align-items: flex-start; padding: 0; text-align: left; }
    .timeline p { max-width: 54ch; }
    .podium { grid-template-columns: 1fr; align-items: stretch; }
    .podium-first, .podium-second { padding-top: 26px; }
    .routes { grid-template-columns: 1fr; }
    .route-primary { grid-column: auto; }
    .prob-space { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .wrap { padding: 0 22px; }
    .nav-mobile { padding: 10px 22px 24px; }
    .hero { padding: 40px 0 52px; }
    .hero-star { display: none; }
    h1 { font-size: clamp(32px, 8.8vw, 42px); }
    .hero-sub { font-size: 16.5px; }
    .hero-ctas .btn { width: 100%; justify-content: center; }
    section { padding: 56px 0; }
    h2 { font-size: clamp(27px, 7.2vw, 34px); }
    /* A wrapped highlight cannot be drawn with one absolutely positioned bar: the
       ::after covers the inline's whole bounding box, so once the phrase breaks
       across lines the wash collapses onto the last fragment. Here the wash becomes
       a per-fragment background instead, cloned onto every line box. The
       single-colour linear-gradient is a flat fill with no blend; it is only a way
       to size the band to the lower part of the text, which background-color cannot do. */
    .hl-mark { white-space: normal; -webkit-box-decoration-break: clone; box-decoration-break: clone; background-image: linear-gradient(var(--mint), var(--mint)); background-repeat: no-repeat; background-size: 104% 38%; background-position: -2% calc(100% - 4px); border-radius: 6px; }
    .hl-mark.sun { background-image: linear-gradient(var(--sunshine), var(--sunshine)); }
    .hl-mark::after { content: none; }
    .glance-grid { grid-template-columns: 1fr; }
    .glance-cell, .glance-cell:nth-child(3n), .glance-cell:nth-child(2n) { border-right: 0; border-bottom: 1.5px solid var(--line); }
    .glance-cell:last-child { border-bottom: 0; }
    .opp-data { grid-template-columns: 1fr; }
    .opp-take { flex-direction: column; gap: 14px; }
    .route-ctas .btn { width: 100%; justify-content: center; }
    .final-cta .doodle-star { display: none; }
    .final-ctas .btn { width: 100%; justify-content: center; }
    .foot-grid { grid-template-columns: 1fr; gap: 34px; }
    .foot-base .wrap { flex-direction: column; gap: 6px; }
  }
