/* ==========================================================================
   The Club Accelerator
   Built from the Claude Design handoff, 2026-08-13.

   Two compositions, one stylesheet. Desktop layout runs from 900px up.
   Below 900px the mobile composition takes over. There is nothing in
   between: the two were authored separately and must not be interpolated.

   Rules this build holds to (from the revision brief, section 24):
   no serif, no italics, no eyebrow labels beyond the single surviving one,
   no pills on informational content, no card shadows, no hover lift,
   no scroll animation. Gold appears exactly twice, both marked below.
   ========================================================================== */

/* --- Tokens ------------------------------------------------------------ */

:root {
  /* Surfaces */
  --paper:        #F6F7FA;
  --white:        #FDFDFE;
  --tint:         #E9EEEF;   /* alternating section ground, portrait panel */
  --tint-warm:    #DDE9EC;   /* hero sub-band, privacy intro band */

  /* Ink */
  --ink:          #191A1E;   /* headlines, primary text */
  --body:         #43454A;   /* body copy */
  --muted:        #686A70;   /* secondary body, footer */

  /* Structure */
  --lapis:        #2A3A52;   /* dark sections, buttons, accents */
  --lapis-hover:  #1F2D42;
  --teal-deep:    #3A5B5E;   /* supporting statements */
  --teal-rule:    #5A8B8F;   /* bracket border */

  /* Rules */
  --line:         #D8DAE0;   /* within tinted sections */
  --line-light:   #E4E6EA;   /* on paper */
  --line-mid:     #B0B2B8;   /* secondary offer rules */

  /* On dark */
  --on-dark-body: #D5D8DD;
  --on-dark-rule: rgba(143, 180, 183, 0.4);

  /* Signature. Two uses on the whole page, no more. */
  --gold:         #C4A24A;

  --error:        #E8A897;

  --font-display: Archivo, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-ui:      Inter, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --max:          1440px;
  --gutter:       80px;
}

/* --- Reset ------------------------------------------------------------- */

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

a { color: var(--lapis); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

img { max-width: 100%; }

h1, h2, h3, p { margin: 0; }

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

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--lapis); color: var(--paper);
  padding: 12px 20px; font-size: 14px; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* --- Layout ------------------------------------------------------------ */

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 32px;
}

/* Locked line breaks. The handoff sets these deliberately: no widows, no
   awkward wraps.
     .lb    break holds in both compositions
     .lb-d  desktop break only, wraps naturally on mobile
     .brk   no break on desktop, breaks on mobile
   Where the two compositions break the same headline differently, both sets
   ship wrapped in .d-only / .m-only and one is switched off at 900px. */
.lb    { display: block; white-space: nowrap; }
.lb-d  { display: block; white-space: nowrap; }
.brk   { display: inline; }
.d-only { display: block; }
.m-only { display: none; }

/* --- Type -------------------------------------------------------------- */

.h-hero {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, calc(3.4vw + 6px), 60px);
  line-height: 1.06;
  letter-spacing: -0.032em;
  color: var(--ink);
}

.h-section {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.033em;
  color: var(--ink);
}

.label {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--body);
}

.lede { font-size: 18px; line-height: 1.8; color: var(--body); }

.arrow { flex: none; }

/* --- Buttons ----------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 32px;
  background: var(--lapis);
  color: var(--paper);
  font-weight: 500;
  font-size: 15px;
  font-family: var(--font-ui);
  border: none;
  border-radius: 999px;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 140ms ease;
}
.btn:hover { background: var(--lapis-hover); text-decoration: none; }

.btn-light {
  background: var(--paper);
  color: var(--lapis);
  justify-content: center;
  width: 100%;
  padding: 16px 28px;
}
.btn-light:hover { background: var(--white); }

.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 15px;
  color: var(--lapis);
}

/* --- Nav --------------------------------------------------------------- */

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--line-light);
  background: rgba(246, 247, 250, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; line-height: 1.1; }
.brand:hover { text-decoration: none; }
.brand img { display: block; width: 34px; height: auto; }

.wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 6px;
  border-bottom: 2px solid var(--gold);   /* GOLD 1 of 2 */
}

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-weight: 500; font-size: 14px; color: var(--body); }

.nav-toggle { display: none; }

/* Anchors clear the sticky bar */
[id] { scroll-margin-top: 88px; }

/* --- Hero -------------------------------------------------------------- */

.hero { padding: 150px 0 0; }
.hero .h-hero { grid-column: 1 / span 12; }

.hero-band {
  background: var(--tint-warm);
  margin-top: 104px;
  padding: 64px 0;
}

.hero-band .grid { align-items: center; }
.hero-copy { grid-column: 1 / span 7; }
.hero-cta  { grid-column: 9 / span 4; justify-self: end; }

.hero-statement {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(14px, 1.5vw, 24px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--lapis);
  white-space: nowrap;
  margin-bottom: 24px;
}

.hero-body {
  max-width: 52ch;
  font-size: 18px;
  line-height: 1.7;
  color: var(--lapis);
}

/* --- Bridge ------------------------------------------------------------ */

.bridge { padding: 150px 0 90px; }

.bridge-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 32px;
  align-items: center;
  margin-top: 76px;
}

.bridge-side {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.55vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.032em;
  text-transform: uppercase;
  color: var(--ink);
  grid-row: 1;
}
.bridge-left  { grid-column: 1 / span 3; text-align: right; }
.bridge-right { grid-column: 10 / span 3; }

.bridge-mid {
  grid-column: 4 / span 6;
  grid-row: 1;
  display: flex;
  justify-content: center;
}

.bracket {
  position: relative;
  border: 2.5px solid var(--teal-rule);
  padding: 56px 44px;
  width: 100%;
  max-width: 560px;
}
/* The break in the top and bottom of the bracket */
.bracket::before, .bracket::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 6px;
  background: var(--paper);
}
.bracket::before { top: -3px; }
.bracket::after  { bottom: -3px; }

.bracket p {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 1.95vw, 31px);
  line-height: 1.22;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
}

.bridge-credential {
  grid-column: 1 / span 12;
  grid-row: 2;
  margin-top: 40px;
  text-align: center;
  white-space: nowrap;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.55;
  color: var(--teal-deep);
}

.bridge-bar { display: none; }

/* --- Problem ----------------------------------------------------------- */

.problem { padding: 100px 0 150px; }

.problem-seam { border-top: 1px solid var(--line); margin-bottom: 70px; }

.problem .grid { align-items: start; }
.problem-head { grid-column: 1 / span 5; }
.problem-body {
  grid-column: 7 / span 6;
  display: flex;
  flex-direction: column;
  gap: 34px;
  padding-top: 6px;
}

.statement {
  padding-top: 26px;
  border-top: 1px solid var(--line-light);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.16;
  letter-spacing: -0.028em;
  color: var(--ink);
}

/* --- Point of view (dark 1 of 2) --------------------------------------- */

.pov { background: var(--lapis); padding: 118px 0; }
.pov .grid { align-items: start; }

.h-pov {
  grid-column: 1 / span 5;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--paper);
}

.pov-body {
  grid-column: 7 / span 6;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-top: 6px;
}
.pov-body p { font-size: 17px; line-height: 1.75; color: var(--on-dark-body); }

.pov-close {
  margin-top: 110px;
  padding-top: 44px;
  border-top: 1px solid var(--on-dark-rule);
  display: flex;
  justify-content: center;
}
.pov-close p {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(14px, 1.5vw, 24px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--paper);
}

/* --- What You Get ------------------------------------------------------ */

.services { background: var(--tint); padding: 140px 0; }
.services .grid { align-items: start; }

.services-head { grid-column: 1 / span 3; align-self: stretch; }
.services-head h2 {
  position: sticky;
  top: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.034em;
  color: var(--ink);
}

.services-body { grid-column: 4 / span 9; }

.h-offer {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 1.5vw, 24px);
  line-height: 1.14;
  letter-spacing: -0.026em;
  text-transform: uppercase;
  color: var(--ink);
}

.offer-kicker {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted);
}

/* Primary offer. The heavier rule is the whole hierarchy signal. */
.offer-primary {
  border-top: 1px solid var(--lapis);
  padding-top: 30px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  column-gap: 56px;
  align-items: stretch;
}
.offer-primary-head { display: flex; flex-direction: column; }
.offer-primary-head .h-offer { margin-bottom: 20px; }
.offer-primary-head .offer-kicker { margin: auto 0 0; padding-top: 26px; }
.offer-primary-body p {
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}

.offers-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  margin-top: 80px;
}
.offer {
  border-top: 1px solid var(--line);
  padding-top: 26px;
}
.offer .h-offer { margin-bottom: 18px; }
.offer .offer-kicker { margin-bottom: 26px; }
.offer p { font-size: 15.5px; line-height: 1.75; color: var(--muted); }
.offer .copy { margin-bottom: 22px; max-width: 40ch; }
.offer .emphasis {
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--teal-deep);
  max-width: 34ch;
}
.offer .stat {
  margin-bottom: 28px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lapis);
}
.offer .list { margin-bottom: 28px; line-height: 1.9; max-width: 32ch; }

/* --- About ------------------------------------------------------------- */

.about { padding: 140px 0; }
.about .grid { align-items: start; }

.portrait-col { grid-column: 1 / span 4; align-self: stretch; }
.portrait {
  position: sticky;
  top: 100px;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--tint);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.portrait img {
  display: block;
  width: 96%;
  height: 96%;
  object-fit: contain;
  object-position: bottom;
}
.portrait-wide { display: none; }

.about-body { grid-column: 6 / span 7; }
.about-body h2 {
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.036em;
  color: var(--ink);
}
.about-sub {
  margin-bottom: 40px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(19px, 1.9vw, 25px);
  line-height: 1.32;
  letter-spacing: -0.02em;
  color: var(--teal-deep);
}
.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
}
.about-cols p { font-size: 17px; line-height: 1.7; color: var(--body); }

.byline {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: inline-block;
}
.byline .name { font-weight: 600; font-size: 17px; color: var(--ink); }
.byline .role {
  display: block;
  margin-top: 7px;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--body);
}

/* --- FAQ --------------------------------------------------------------- */

.faq { background: var(--tint); padding: 150px 0; }
.faq .grid { align-items: start; }

.faq h2.faq-head {
  grid-column: 1 / span 4;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.034em;
  color: var(--ink);
}

.faq-list {
  grid-column: 6 / span 7;
  border-top: 1px solid var(--line);
}

/* One markup for both compositions: <details> works with no JS on mobile,
   and above 900px a small script enforces one-open-at-a-time. */
.faq-item { border-bottom: 1px solid var(--line); }

.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  cursor: pointer;
  font-weight: 500;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }

.faq-mark {
  font-size: 20px;
  color: var(--lapis);
  line-height: 1;
  width: 14px;
  text-align: center;
  flex: none;
}
.faq-item[open] .faq-mark::before { content: "\2212"; }   /* minus */
.faq-item:not([open]) .faq-mark::before { content: "+"; }

.faq-item p {
  padding-bottom: 28px;
  margin-top: -8px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  max-width: 62ch;
}

/* --- Final CTA (dark 2 of 2) ------------------------------------------- */

.cta { background: var(--lapis); padding: 140px 0; }
.cta .grid { align-items: end; }

.cta h2 {
  grid-column: 1 / span 7;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.3vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.033em;
  color: var(--paper);
}

.cta-form-col { grid-column: 8 / span 5; }

.cta-form { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }

.cta-form input[type="email"] {
  width: 100%;
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 16px 24px;
  font: 400 15px var(--font-ui);
  color: var(--ink);
  outline: none;
}
/* --muted on white, the darkest the palette offers before it reads as a
   filled value rather than a prompt. 5.3:1, clears AA. */
.cta-form input[type="email"]::placeholder { color: var(--muted); }
.cta-form input[type="email"]:focus-visible {
  outline: 2px solid var(--on-dark-body);
  outline-offset: 2px;
}

.form-note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--on-dark-body);
}
.form-note a { color: var(--paper); border-bottom: 1px solid var(--on-dark-rule); }
.form-error { color: var(--error); }

.form-done p { color: var(--paper); font-weight: 500; font-size: 18px; }
.form-done .sub { margin-top: 10px; font-weight: 400; font-size: 15px; color: var(--on-dark-body); }

.honey { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* --- Footer ------------------------------------------------------------ */

.foot { border-top: 1px solid var(--line-light); padding: 72px 0 44px; }
.foot .grid { align-items: start; }

.foot-brand { grid-column: 1 / span 4; }
.foot-wordmark {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink);
}
.foot-brand p { margin-top: 10px; font-size: 15px; color: var(--muted); }

.foot-links {
  grid-column: 6 / span 7;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
}
.foot-links a { font-size: 15px; color: var(--body); }

.foot-legal {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 32px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.foot-legal .copyright { margin-top: 8px; }

.signoff {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--gold);   /* GOLD 2 of 2 */
}

/* --- Mobile action bar ------------------------------------------------- */

.action-bar { display: none; }

/* ==========================================================================
   Mobile composition. Authored separately at 390px, not a reflow.
   ========================================================================== */

@media (max-width: 899px) {

  :root { --gutter: 24px; }

  .lb-d { white-space: normal; display: inline; }  /* desktop-only breaks off */
  .brk { display: block; }
  .m-only { display: block; }
  .d-only, .br-d { display: none; }

  .grid { display: block; }

  /* Nav */
  .nav { padding: 14px var(--gutter); }
  .brand img { width: 27px; }
  .wordmark { font-size: 11.5px; letter-spacing: 1.4px; padding-bottom: 5px; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line-light);
    padding: 8px var(--gutter) 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; font-size: 16px; width: 100%; }
  .nav-toggle {
    display: inline-block;
    background: none;
    border: none;
    padding: 6px 0;
    font: 500 12px var(--font-ui);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--body);
    cursor: pointer;
  }

  /* Hero */
  .hero { padding: 52px 0 40px; }
  .h-hero { font-size: 30px; line-height: 1.12; }
  .hero-band { margin-top: 0; padding: 36px 0 40px; }
  .hero-statement {
    font-size: 19px;
    white-space: normal;
    margin-bottom: 20px;
  }
  .hero-body { font-size: 16.5px; margin-bottom: 32px; text-wrap: pretty; }
  /* Chrome honours justify-self on block boxes, which shrink-wraps this cell
     once the grid collapses. Reset it or the CTA never goes full width. */
  .hero-cta { justify-self: stretch; }
  .hero-band .btn { display: flex; justify-content: center; width: 100%; padding: 17px 24px; }

  /* Bridge. The two sides stay side by side: the opposition is the point. */
  .bridge { padding: 72px 0 44px; }
  .bridge .label { font-size: 11.5px; margin-bottom: 32px; }
  .bridge-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    column-gap: 14px;
    align-items: center;
    margin-top: 0;
  }
  /* Explicit rows. The bracket sits between the two headings in the DOM, so
     without them auto-placement drops it onto row 1 and shunts the right
     heading down. Order on screen: headings, bracket, credential. */
  .bridge-side { font-size: 20px; line-height: 1.12; grid-row: 1; }
  .bridge-left  { grid-column: 1; text-align: left; }
  .bridge-right { grid-column: 3; text-align: right; }
  .bridge-bar {
    display: block;
    grid-column: 2;
    grid-row: 1;
    width: 2.5px;
    height: 72px;
    background: var(--teal-rule);
    transform: rotate(18deg);
    transform-origin: center;
  }
  .bridge-mid { display: block; grid-column: 1 / -1; grid-row: 2; margin-top: 32px; }
  .bracket { padding: 34px 20px; max-width: none; }
  .bracket::before, .bracket::after { width: 46%; }
  .bracket p { font-size: 21px; line-height: 1.2; }
  /* The mobile bridge is a 3-column grid, so the credential line has to be
     told to span it. Left on the desktop's "1 / span 12" it overflows. */
  .bridge-credential {
    grid-column: 1 / -1;
    grid-row: 3;
    margin-top: 26px;
    font-size: 17px;
    white-space: normal;
  }

  /* Problem */
  .problem { padding: 52px 0 72px; }
  .problem-seam { display: none; }
  .h-section { font-size: 28px; line-height: 1.1; letter-spacing: -0.032em; }
  .problem-head { margin-bottom: 30px; }
  .problem-body { gap: 0; padding-top: 0; }
  .problem-body .lede { font-size: 17px; line-height: 1.78; }
  .statement { margin-top: 46px; font-size: 23px; line-height: 1.22; }

  /* Point of view */
  .pov { padding: 64px 0; }
  .h-pov { font-size: 23px; line-height: 1.18; letter-spacing: -0.026em; margin-bottom: 32px; }
  .pov-body { padding-top: 0; }
  .pov-body p { font-size: 16.5px; line-height: 1.78; }
  .pov-close {
    display: block;
    margin-top: 44px;
    padding-top: 26px;
  }
  .pov-close p { text-align: left; font-size: 17px; line-height: 1.32; }

  /* What You Get */
  .services { padding: 76px 0; }
  .services-head h2 { position: static; font-size: 28px; margin-bottom: 40px; }
  .offer-primary {
    display: block;
    border-top-width: 2.5px;
    padding-top: 26px;
  }
  .offer-primary .h-offer {
    font-size: 19px;
    line-height: 1.12;
    letter-spacing: -0.03em;
    white-space: nowrap;
    margin-bottom: 16px;
  }
  .offer-primary-head .offer-kicker {
    margin: 0 0 22px;
    padding-top: 0;
    color: var(--teal-deep);
  }
  .offer-primary-body p { margin-bottom: 26px; color: var(--body); }
  /* The primary CTA is a filled pill on mobile: it has to outrank the two
     text links below it without the desktop grid to do that work. */
  .offer-primary-body .link-cta {
    padding: 15px 26px;
    background: var(--lapis);
    color: var(--paper);
    border-radius: 999px;
    font-size: 14.5px;
  }
  .offer-primary-body .link-cta:hover { background: var(--lapis-hover); text-decoration: none; }

  .offers-secondary { display: block; margin-top: 0; }
  .offer {
    border-top: 1px solid var(--line-mid);
    padding-top: 22px;
    margin-top: 52px;
  }
  .offer .h-offer { font-size: 19px; line-height: 1.16; margin-bottom: 14px; }
  .offer .offer-kicker { font-size: 11.5px; margin-bottom: 20px; }
  .offer p { font-size: 16px; color: var(--body); }
  .offer .copy { margin-bottom: 20px; max-width: none; }
  .offer .emphasis { font-size: 16px; line-height: 1.55; margin-bottom: 16px; max-width: none; }
  .offer .stat { margin-bottom: 24px; }
  .offer .list { line-height: 1.95; margin-bottom: 24px; max-width: none; }

  /* About. Portrait leads, headline below. */
  .about { padding: 68px 0 60px; }
  .portrait { display: none; }
  .portrait-wide {
    display: flex;
    border-radius: 14px;
    overflow: hidden;
    background: var(--tint);
    aspect-ratio: 4 / 3;
    align-items: flex-end;
    justify-content: center;
  }
  .portrait-wide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  .about-body { margin-top: 32px; }
  .about-body h2 { font-size: 29px; line-height: 1.08; letter-spacing: -0.034em; }
  .about-sub {
    font-size: 19px;
    line-height: 1.34;
    margin: 20px 0 0;
  }
  .about-cols { display: flex; flex-direction: column; gap: 18px; margin-top: 30px; }
  .about-cols p { font-size: 16.5px; line-height: 1.75; }
  .byline { display: block; margin-top: 28px; }
  .byline .name { font-size: 16.5px; }

  /* FAQ */
  .faq { padding: 72px 0; }
  .faq h2.faq-head { font-size: 27px; line-height: 1.1; margin-bottom: 30px; }
  .faq-list { border-top: none; }
  .faq-item {
    border-bottom: none;
    border-top: 1px solid var(--line);
    padding-top: 18px;
    margin-bottom: 24px;
  }
  .faq-item summary {
    align-items: flex-start;
    gap: 16px;
    padding: 0;
    font-weight: 600;
    font-size: 17px;
  }
  .faq-mark { font-size: 18px; line-height: 1.2; }
  /* Mobile hides the marker on the open row rather than swapping it */
  .faq-item[open] .faq-mark { visibility: hidden; }
  .faq-item p { margin-top: 12px; padding-bottom: 0; font-size: 16px; line-height: 1.72; }

  /* Final CTA */
  .cta { padding: 72px 0; }
  .cta h2 { font-size: 25px; line-height: 1.14; letter-spacing: -0.03em; margin-bottom: 28px; }

  /* Footer */
  .foot { padding: 44px 0 40px; }
  .foot-wordmark { font-size: 12.5px; letter-spacing: 1.5px; }
  .foot-brand p { font-size: 14.5px; margin-bottom: 32px; }
  .foot-links {
    flex-direction: column;
    gap: 14px;
    padding: 24px 0;
    border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
  }
  .foot-legal {
    display: block;
    margin-top: 26px;
    padding-top: 0;
    border-top: none;
  }
  .foot-legal .copyright { margin: 0 0 22px; }
  .signoff { font-size: 12px; padding-bottom: 4px; }

  /* Persistent action bar. Body clears it so nothing is ever covered. */
  body { padding-bottom: 0; }
  .foot { padding-bottom: 96px; }
  .action-bar {
    position: sticky;
    bottom: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--paper);
    border-top: 1px solid var(--line);
    padding: 14px var(--gutter);
  }
  .action-bar span {
    font-weight: 600;
    font-size: 11.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--body);
  }
  .action-bar .btn { padding: 12px 20px; font-size: 13.5px; gap: 8px; }
}

/* Narrow phones: let the locked breaks give way rather than overflow the
   viewport. A wrapped line is a smaller problem than a horizontal scrollbar. */
@media (max-width: 379px) {
  .lb { white-space: normal; }
  .offer-primary .h-offer { white-space: normal; }
  .bridge-side { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}

/* ==========================================================================
   Privacy page. Shares the nav, footer, and tokens; adds a two-column
   legal body. No mobile composition was authored, so below 900px the two
   columns stack and everything else reuses the homepage's mobile rules.
   ========================================================================== */

.legal-head { padding: 120px 0 40px; }
.legal-head .grid { align-items: end; }
.legal-head h1 {
  grid-column: 1 / span 7;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.034em;
  color: var(--ink);
}
.legal-date {
  grid-column: 9 / span 4;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.legal-intro { background: var(--tint-warm); padding: 44px 0; }
.legal-intro p {
  max-width: 74ch;
  font-size: 18px;
  line-height: 1.7;
  color: var(--lapis);
}

.legal-body { padding: 90px 0 130px; }
.legal-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 32px;
  row-gap: 52px;
  align-items: start;
}
.legal-grid h2 {
  grid-column: 1 / span 3;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.16;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
}
.legal-grid > p,
.legal-grid > .legal-text { grid-column: 5 / span 7; }
.legal-grid p { font-size: 17px; line-height: 1.75; color: var(--body); }
.legal-text { display: flex; flex-direction: column; gap: 18px; }
.legal-text strong { font-weight: 600; color: var(--ink); }

/* List items are separated by rules, not bullets */
.legal-list { display: flex; flex-direction: column; gap: 14px; }
.legal-list p { padding-top: 14px; border-top: 1px solid var(--line-light); }

.legal-contact { background: var(--lapis); padding: 100px 0; }
.legal-contact .grid { align-items: end; }
.legal-contact h2 {
  grid-column: 1 / span 6;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1.06;
  letter-spacing: -0.033em;
  color: var(--paper);
}
.legal-contact p {
  grid-column: 8 / span 5;
  font-size: 17px;
  line-height: 1.75;
  color: var(--on-dark-body);
}
.legal-contact a { color: var(--paper); border-bottom: 1px solid rgba(143, 180, 183, 0.6); }

.foot-legal-page { padding: 70px 0 60px; border-top: none; }

@media (max-width: 899px) {
  .legal-head { padding: 52px 0 24px; }
  .legal-head h1 { font-size: 32px; margin-bottom: 16px; }
  .legal-intro { padding: 32px 0; }
  .legal-intro p { font-size: 16.5px; line-height: 1.7; }
  .legal-body { padding: 56px 0 72px; }
  .legal-grid { display: block; }
  .legal-grid h2 { font-size: 17px; margin: 44px 0 16px; }
  .legal-grid h2:first-child { margin-top: 0; }
  .legal-grid p { font-size: 16px; line-height: 1.72; }
  .legal-contact { padding: 64px 0; }
  .legal-contact h2 { font-size: 26px; margin-bottom: 20px; }
  .legal-contact p { font-size: 16px; }
  .foot-legal-page { padding: 44px 0 60px; }
}
