/* Hallmark · macrostructure: triptych hero + single band (user-directed) · tone: performance editorial
 * theme: custom (vibe: "cream paper, navy ink, photographic thirds, royal blue accents"
 * · paper oklch(97% 0.015 90) cream · accent oklch(42% 0.11 262) blue · Fraunces + Inter)
 * axes: light / classical-serif / cool-blue · nav: overlay difference-blend · footer: single-line
 * pre-emit critique: P5 H5 E4 S5 R4 V5
 */

/* ── Reset & tokens ─────────────────────────────────────────── */

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

:root {
    --paper:      #FBF7ED;
    --paper-2:    #F3EEDF;
    --card:       #FFFEF9;
    --ink:        #152238;
    --dim:        rgba(21, 34, 56, 0.66);
    /* 0.44 measured 2.67:1 on cream, well under the 4.5:1 floor, and it
       carries real text (prices, plan names, captions, footer links).
       0.64 clears AA on both cream and paper-2 with the least tonal shift. */
    --faint:      rgba(21, 34, 56, 0.64);
    --line:       rgba(21, 34, 56, 0.14);
    --line-soft:  rgba(21, 34, 56, 0.08);
    --navy:       #101C36;
    --navy-raised:#172746;
    --accent:     #2E4F8F;
    --accent-bright: #4E72BD;
    --accent-line: rgba(46, 79, 143, 0.35);

    --w:          #FBFAF7;          /* text on photography */
    --w-dim:      rgba(251, 250, 247, 0.80);
    --w-line:     rgba(251, 250, 247, 0.32);

    --serif:      "Fraunces", Georgia, "Times New Roman", serif;
    --sans:       "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --fs-mast:    clamp(46px, 4.6vw, 76px);
    --fs-h2:      clamp(24px, 2.4vw, 34px);
    --fs-panel:   clamp(21px, 1.9vw, 27px);
    --fs-body:    15px;
    --fs-small:   13px;
    --fs-label:   11px;

    --dur:        220ms;
    --ease:       cubic-bezier(0.25, 0.6, 0.3, 1);
    --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
    --container:  min(1180px, 92vw);
    --focus:      0 0 0 2px var(--paper), 0 0 0 4px var(--ink);
}

@font-face {
    font-family: "Tektur";
    src: url("/fonts/tektur-latin.woff2") format("woff2-variations");
    font-weight: 400 900;
    font-style: normal;
    font-display: swap;
}

html { overflow-x: clip; scroll-behavior: smooth; }

body {
    overflow-x: clip;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: var(--fs-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: rgba(46, 79, 143, 0.22); }

h1, h2, h3 {
    font-family: var(--serif);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.01em;
    overflow-wrap: anywhere;
    min-width: 0;
    text-wrap: balance;
}

.container { width: var(--container); margin-inline: auto; }

.label {
    font-size: var(--fs-label);
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    :root { --dur: 0ms; }
}

/* ── Nav ────────────────────────────────────────────────────── */

.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 40;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(18px, 2.6vw, 34px);
}

.nav--overlay { mix-blend-mode: difference; color: #fff; }

.nav--solid {
    position: sticky;
    background: rgba(251, 247, 237, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line-soft);
}

.nav__brand {
    font-family: "Tektur", var(--sans);
    font-weight: 700;
    font-variation-settings: "wght" 700;
    font-size: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
}

.nav__links { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 30px); }
.nav__form { display: inline; margin: 0; }
.nav__button {
  appearance: none;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.nav__link {
    font-size: var(--fs-label);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    opacity: 0.75;
    transition: opacity var(--dur) var(--ease);
    white-space: nowrap;
}

.nav__link:hover { opacity: 1; }

.nav__cta {
    font-size: var(--fs-label);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid currentColor;
    border-radius: 999px;
    padding: 10px 22px;
    white-space: nowrap;
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.nav--overlay .nav__cta:hover { background: #fff; color: #000; }
.nav--solid .nav__cta { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.nav--solid .nav__cta:hover { background: #000; }

a:focus-visible, button:focus-visible, summary:focus-visible { outline: none; box-shadow: var(--focus); border-radius: 4px; }

/* ── Buttons ─────────────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: var(--fs-label);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
    padding: 15px 32px;
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
                border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.btn:active { transform: translateY(1px); }

.btn--ink { background: var(--ink); color: var(--paper); border: 1px solid var(--ink); }
.btn--ink:hover { background: #000; }

.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn--ghost:hover { border-color: var(--ink); }

.btn--onphoto { background: transparent; color: var(--w); border: 1px solid var(--w-line); }
.btn--onphoto:hover { background: var(--w); color: var(--ink); border-color: var(--w); }

.btn--sm { padding: 10px 22px; }

/* ── Masthead + three exhibits ───────────────────────────────── */

/* Dark hero band: the page opens in ink with a warm glow, then hands
   over to paper. Contrast between the acts is the drama. */
.hero-top {
    padding: 136px 24px 84px;
    text-align: center;
    background:
        radial-gradient(ellipse 70% 60% at 50% -10%, rgba(251, 247, 237, 0.09), transparent 62%),
        radial-gradient(ellipse 90% 50% at 50% 115%, rgba(251, 247, 237, 0.05), transparent 60%),
        #101C36;
    border-bottom: 1px solid var(--line-soft);
}

.hero-top .mast__vital,
.hero-top .mast__club { color: var(--paper); }

.hero-promise {
    margin: 26px auto 0;
    max-width: 44ch;
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(20px, 2.2vw, 30px);
    /* Pinned so promoting this to an h1 does not inherit the heading
       tracking and shift the line. */
    letter-spacing: normal;
    line-height: 1.25;
    color: rgba(251, 247, 237, 0.92);
    text-wrap: balance;
}

.hero-cta {
    margin-top: 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero-cta__row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* The annual price sits centred under the join button, not the pair. */
.hero-cta__primary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.hero-cta .btn {
    font-size: 12px;
    letter-spacing: 0.2em;
    padding: 18px 42px;
}

.hero-cta .price {
    width: 100%;
    text-align: center;
    color: rgba(251, 247, 237, 0.55);
}

.btn--paper { background: var(--paper); color: var(--ink); border: 1px solid var(--paper); }
.btn--paper:hover { background: #fff; border-color: #fff; }

.btn--ghostlight { background: transparent; color: rgba(251, 247, 237, 0.9); border: 1px solid rgba(251, 247, 237, 0.32); }
.btn--ghostlight:hover { border-color: var(--paper); color: var(--paper); }

.price {
    font-size: var(--fs-label);
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--faint);
}

.trio {
    width: var(--container);
    margin: 40px auto 0;
    scroll-margin-top: 74px;
    padding-bottom: clamp(48px, 7vh, 80px);
    display: grid;
    /* Equal columns: media, headings and lists all share one width. */
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(22px, 3vw, 44px);
    justify-items: center;
}

.ex { width: 100%; }

.ex {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

/* Heading block: reserves the same height whether the title wraps to two
   lines or carries the W/ Vital subline, so every tick list starts level. */
.ex__head {
    margin-top: 10px;
    min-height: 84px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Vital badge: the app's V glyph locked up with the subline. */
.ex__sub {
    color: var(--accent);
    letter-spacing: 0.3em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.vmark {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 5px;
    margin-top: -1px;
}

.ex__num { color: var(--accent); }

/* One media slot per section, same height across the row. No mats, no borders:
   clean rounded imagery with a soft grounded shadow. */
/* Height derives from the column width, not the viewport: the phone sizes
   off this height, so a tall window can no longer widen it and squash the
   photos beside it. */
.ex__media {
    width: 100%;
    aspect-ratio: 4 / 5;
    /* Kill the flex auto-minimum: content may never inflate the 4:5 box. */
    min-height: 0;
    overflow: hidden;
}

/* Safari resolves percentage heights inside an aspect-ratio box as
   indefinite, letting collage images collide. Container-query units give
   the box a concrete height (width x 1.25) every engine agrees on. */
@supports (height: 100cqw) {
    .ex { container-type: inline-size; }
    .ex__media { aspect-ratio: auto; height: 125cqw; }
}

/* No shadows inside the clipped media box: they smear into a grey wash. */
.ex__img,
.ex__collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    /* One photographic grade across every shot: slightly warm, matte,
       gently desaturated, so mixed-source photography reads as one shoot. */
    filter: saturate(0.9) contrast(0.96) sepia(0.09) brightness(1.02);
}

.ex__collage {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    /* The single row exactly fills the 4:5 media box; image intrinsic
       sizes must never inflate it. */
    grid-template-rows: minmax(0, 1fr);
    gap: 10px;
    height: 100%;
}

/* Phone-led collage. The tile width is solved so the device's height
   (tile width minus bezel, at the screen's 598:1300 ratio, plus bezel)
   lands exactly on the media height — no circular sizing, no drift:
   0.575 x width + 8.64px. */
.ex__collage--phone { grid-template-columns: calc(57.5% + 8.64px) minmax(0, 1fr); }

.ex__stack {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 10px;
    min-height: 0;
}

.ex__collage img { border-radius: 14px; min-height: 0; }

/* ── Feature sections: coach video, transformations ──────────── */

.feature {
    padding: clamp(56px, 8vh, 88px) 0;
    border-top: 1px solid var(--line-soft);
}

.feature--tint { background: var(--paper-2); }

.feature__inner { max-width: 960px; text-align: center; }
.feature__label { color: var(--accent); display: block; margin-bottom: 12px; }
.feature h2 { font-size: var(--fs-h2); margin-bottom: 30px; }

.feature__video {
    display: block;
    width: min(100%, 880px);
    margin-inline: auto;
    border-radius: 14px;
    background: #000;
    box-shadow: 0 18px 44px rgba(23, 21, 17, 0.14);
}

.transforms {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2.6vw, 32px);
}

.transform { margin: 0; }

.transform__pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.transform figcaption {
    margin-top: 14px;
    font-family: var(--serif);
    font-weight: 600;
    font-size: 18px;
}

.shot {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(23, 21, 17, 0.14);
}

.shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) contrast(0.96) sepia(0.09) brightness(1.02);
}

.shot__tag {
    position: absolute;
    top: 10px;
    left: 10px;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
    background: rgba(251, 247, 237, 0.92);
    border-radius: 999px;
    padding: 6px 12px;
}



@media (max-width: 720px) {
    .transforms { grid-template-columns: minmax(0, 1fr); }
}



/* Solo phone: device centred in its column, spanning the full media
   height so it stays level with the photos either side. */
.ex__media--solo { display: grid; place-items: center; }
.ex__media--solo .phone { width: auto; height: 100%; }
.ex__media--solo .phone .screen { width: auto; height: 100%; aspect-ratio: 598 / 1300; }

/* The app: a real phone, whole screen visible, cycling themes.
   Fully width-driven; the tile calc above guarantees it fills the media
   height exactly, level with the photo tiles. */
.ex__phoneTile { height: 100%; min-height: 0; }

.phone {
    width: 100%;
    height: 100%;
    background: #0C0C0D;
    border-radius: clamp(30px, 3vw, 42px);
    padding: 8px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.09),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.phone .screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: clamp(24px, 2.4vw, 34px);
    overflow: hidden;
    background: #000;
}

.phone .screen img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ex h2 { font-size: var(--fs-panel); }

.ticks { list-style: none; }

.ticks li {
    display: flex;
    gap: 14px;
    align-items: baseline;
    font-size: var(--fs-small);
    letter-spacing: 0.005em;
    padding: 10px 0;
    color: var(--dim);
}

.ticks li + li { border-top: 1px solid var(--line-soft); }
.ticks li::before { content: "✓"; font-size: 11px; flex-shrink: 0; color: var(--accent); }

/* Full-column lists so every divider and check mark aligns across the row.
   Reserves four rows (the longest list) so all three columns end level. */
.ex .ticks {
    display: block;
    width: 100%;
    text-align: center;
    min-height: 170px;
}

.ex .ticks li { justify-content: center; }

.mast__lockup {
    font-size: var(--fs-mast);
    line-height: 0.98;
    letter-spacing: -0.015em;
}

/* VITAL in the app's Tektur wordmark; CLUB. in Fraunces caps, gold outline. */
.mast__vital {
    display: block;
    font-family: "Tektur", var(--sans);
    font-weight: 700;
    font-variation-settings: "wght" 700;
    font-size: clamp(64px, 7.4vw, 118px);
    letter-spacing: 0.12em;
    text-indent: 0.12em; /* optically recentre the tracked caps */
    line-height: 1;
    text-transform: uppercase;
}

/* CLUB. matches VITAL: same wordmark family, plain fill. No gold. */
.mast__club {
    display: block;
    margin-top: 12px;
    font-family: "Tektur", var(--sans);
    font-weight: 700;
    font-variation-settings: "wght" 700;
    font-size: clamp(42px, 4.9vw, 78px);
    letter-spacing: 0.12em;
    text-indent: 0.12em;
    line-height: 1;
    text-transform: uppercase;
    color: var(--ink);
}

/* Entrance reveal */

.reveal { opacity: 1; transform: none; }
.js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 720ms var(--ease-out), transform 720ms var(--ease-out);
}
.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .js .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 900px) {
    .hero-top { padding-top: 92px; }
    .trio { grid-template-columns: minmax(0, 1fr); gap: 44px; }
    /* The whole section, not just the image, shares one width on mobile
       so dividers and headings stay flush with the media. */
    .ex { max-width: 440px; }
    .ex .ticks { min-height: 0; }
    .ex__head { min-height: 0; }
}

/* ── Included band ───────────────────────────────────────────── */

.band { border-top: 1px solid var(--line-soft); background: var(--paper-2); padding: clamp(56px, 8vh, 88px) 0; }

.band__inner {
    max-width: 960px;
    text-align: center;
}

.band__inner h2 { font-size: var(--fs-h2); margin-bottom: 30px; }

.mini {
    list-style: none;
    width: 100%;
    text-align: left;
}

.mini li {
    display: flex;
    gap: 10px;
    align-items: baseline;
    padding: 7px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 13px;
    color: var(--dim);
}

.mini li:last-child { border-bottom: none; }
.mini li::before { content: "\2713"; font-size: 10px; flex-shrink: 0; color: var(--accent); }

.band__cta {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.price-frame { font-size: 12px; color: var(--faint); }

/* ── Sticky join bar ─────────────────────────────────────────── */

.joinbar {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 3vw, 28px);
    padding: 12px clamp(16px, 3vw, 32px);
    background: rgba(251, 247, 237, 0.94);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line-soft);
    transform: translateY(100%);
    transition: transform 280ms var(--ease);
}

.joinbar.is-shown { transform: none; }

.joinbar__brand {
    font-family: "Tektur", var(--sans);
    font-weight: 700;
    font-variation-settings: "wght" 700;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
}

.joinbar__price {
    font-size: var(--fs-label);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--faint);
    white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
    .joinbar { transition: none; }
}

@media (max-width: 560px) {
    .joinbar__price { display: none; }
}

/* ── Footer ──────────────────────────────────────────────────── */

.footer { border-top: 1px solid var(--line-soft); padding: 26px 0 30px; }

.footer__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px 32px;
    flex-wrap: wrap;
}

.footer__brand {
    font-family: "Tektur", var(--sans);
    font-weight: 700;
    font-variation-settings: "wght" 700;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
}

.footer__links { display: flex; gap: 24px; flex-wrap: wrap; }

.footer__links a {
    font-size: var(--fs-label);
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--faint);
    text-decoration: none;
    transition: color var(--dur) var(--ease);
}

.footer__links a:hover { color: var(--ink); }

.footer__legal { margin-top: 14px; font-size: 12px; color: var(--faint); max-width: 74ch; }

/* ── Auth / checkout shells (login, join) ─────────────────────── */

.shell {
    min-height: calc(100svh - 62px);
    display: grid;
    place-items: center;
    padding: 48px 0;
    background:
        radial-gradient(ellipse 60% 40% at 50% 0%, rgba(46, 79, 143, 0.05), transparent 65%),
        var(--paper);
}

.sheet {
    width: min(440px, 92vw);
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 34px;
    box-shadow: 0 24px 60px rgba(23, 21, 17, 0.10);
}

.sheet--wide { width: min(560px, 92vw); }

.sheet .label { display: block; color: var(--accent); margin-bottom: 10px; }
.sheet h1 { font-size: 24px; margin-bottom: 24px; }

.field { margin-bottom: 16px; }

.field label {
    display: block;
    font-size: var(--fs-label);
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--faint);
    margin-bottom: 8px;
}

.field input {
    width: 100%;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    font-family: var(--sans);
    font-size: 15px;
    padding: 12px 14px;
    transition: border-color var(--dur) var(--ease);
}

.field input::placeholder { color: var(--faint); }
.field input:hover { border-color: var(--faint); }
.field input:focus-visible { outline: none; border-color: var(--ink); box-shadow: var(--focus); }
.form-message {
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid rgba(143, 42, 42, .24);
  border-radius: 8px;
  background: #fff2ed;
  color: #7a2525;
  font-size: .9rem;
}

.sheet .btn { width: 100%; margin-top: 6px; }

.sheet__foot {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--line-soft);
    font-size: var(--fs-small);
    color: var(--faint);
    text-align: center;
}

.sheet__foot a { color: var(--dim); }
.sheet__foot a:hover { color: var(--ink); }

.order { list-style: none; margin-bottom: 22px; }

.order li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: var(--fs-small);
    color: var(--dim);
}

.order li strong { color: var(--ink); font-weight: 600; }
.order li.order__total { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }

.stub {
    border: 1px dashed var(--line);
    border-radius: 8px;
    padding: 22px;
    text-align: center;
    margin-bottom: 16px;
}

.stub .label { display: block; color: var(--accent); }
.stub p { margin-top: 8px; font-size: 12px; color: var(--faint); }

/* ── Member library ───────────────────────────────────────────── */

.library-head { padding: 48px 0 8px; }
.library-head .label { color: var(--accent); display: block; margin-bottom: 10px; }
.library-head h1 { font-size: clamp(30px, 3.4vw, 44px); }
.library-head p { margin-top: 10px; color: var(--dim); }

.shelf { padding-block: 30px; }

.shelf__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 10px;
}

.shelf__head h2 { font-size: 20px; }
.shelf__head .label { color: var(--faint); letter-spacing: 0.18em; }

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
    gap: 14px;
}

.card {
    background: var(--card);
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-decoration: none;
    transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease);
}

a.card:hover { border-color: var(--line); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(23, 21, 17, 0.08); }

.card__tag { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); }
.card h3 { font-size: 17px; }
.card p { font-size: var(--fs-small); color: var(--dim); }

.card__meta {
    margin-top: auto;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}

.card__meta .label { letter-spacing: 0.14em; color: var(--faint); font-size: 10px; }

.card--soon { opacity: 0.55; }
.card--soon:hover { transform: none; box-shadow: none; border-color: var(--line-soft); }

.badge {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 3px 10px;
    color: var(--faint);
    white-space: nowrap;
}

.badge--live { color: var(--accent); border-color: var(--accent-line); }

/* ══ Upgrade layer ═════════════════════════════════════════════
 * Sections added to carry the page past a feature list: the figure
 * strip, the approach creed, the Vital app block with its readiness
 * explainer and app-versus-coach table, the grouped inventory, the
 * two-plan pricing block and the questions. Everything below reuses
 * the tokens above: same palette, same 14px radius, same single
 * shadow, Fraunces and Inter only.
 * ============================================================== */

:root {
    --shadow:   0 18px 44px rgba(23, 21, 17, 0.14);
    --sec-pad:  clamp(58px, 8vh, 96px);
}

/* Past the masthead the difference blend would sit over photography and
   stop being legible, so the bar resolves into solid cream instead. */
.nav--overlay {
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
                border-color var(--dur) var(--ease);
}

.nav--overlay.is-stuck {
    mix-blend-mode: normal;
    color: var(--ink);
    background: rgba(251, 247, 237, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line-soft);
}

.nav--overlay.is-stuck .nav__cta {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
}

.nav--overlay.is-stuck .nav__cta:hover { background: #000; }

@media (prefers-reduced-motion: reduce) {
    .nav--overlay { transition: none; }
}

/* Anchor links only earn their space once the row can hold them. */
.nav__link--anchor { display: none; }

@media (min-width: 1000px) {
    .nav__link--anchor { display: inline; }
}

/* ── Shared section furniture ───────────────────────────────── */

.sec__head { max-width: 60ch; margin-bottom: clamp(34px, 4.4vw, 56px); }
.sec__head--centred { max-width: 62ch; margin-inline: auto; text-align: center; }
.sec__head h2 { font-size: var(--fs-h2); }
.sec__eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--accent); margin-bottom: 13px; }
.sec__eyebrow--dark { color: rgba(251, 247, 237, 0.66); }

.sec__intro {
    margin-top: 15px;
    max-width: 64ch;
    font-size: 16px;
    line-height: 1.65;
    color: var(--dim);
}

.sec__intro--centred { margin-inline: auto; text-align: center; }
.sec__intro--dark { color: rgba(251, 247, 237, 0.74); }

.feature__inner .sec__intro--centred { margin-bottom: 30px; }
.feature h2 + .sec__intro--centred { margin-top: -18px; }

/* ── Masthead additions ─────────────────────────────────────── */

.hero-note {
    margin-top: 4px;
    font-size: 12px;
    color: rgba(251, 247, 237, 0.5);
}

/* The offer button is the widest fixed-width element on the page.
   Below this width it must be allowed to wrap, or it overruns the
   hero padding and the whole band shifts sideways behind the clip. */
@media (max-width: 620px) {
    .hero-cta .btn { white-space: normal; max-width: 100%; padding: 16px 26px; }
    .hero-cta__row { width: 100%; }
    .hero-cta__primary { width: 100%; }
    .hero-cta .btn--ghostlight { width: 100%; }
}

/* ── Figure strip ───────────────────────────────────────────── */

.figures { padding: clamp(34px, 4.6vh, 52px) 0 0; }

.figures__row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px clamp(18px, 3vw, 40px);
}

.figure {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.figure__n {
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1;
    letter-spacing: -0.02em;
}

.figure__l { font-size: var(--fs-small); line-height: 1.45; color: var(--dim); }

@media (max-width: 720px) {
    .figures__row { grid-template-columns: minmax(0, 1fr); }
}

/* ── The approach ───────────────────────────────────────────── */

.creed { padding: var(--sec-pad) 0; border-top: 1px solid var(--line-soft); }

.creed__steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.8vw, 34px);
}

.creed__step {
    padding-top: 22px;
    border-top: 1px solid var(--line-soft);
}

.creed__label {
    display: block;
    margin-bottom: 14px;
    font-size: var(--fs-label);
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
}

.creed__step h3 {
    margin-bottom: 12px;
    font-size: clamp(20px, 2vw, 26px);
}

.creed__step p {
    max-width: 38ch;
    font-size: var(--fs-small);
    line-height: 1.6;
    color: var(--dim);
}

@media (max-width: 780px) {
    .creed__steps { grid-template-columns: minmax(0, 1fr); }
    .creed__step p { max-width: 60ch; }
}

/* ── The Vital app ──────────────────────────────────────────── */

.app {
    padding: var(--sec-pad) 0;
    background:
        radial-gradient(ellipse 62% 50% at 22% 0%, rgba(251, 247, 237, 0.07), transparent 62%),
        radial-gradient(ellipse 70% 54% at 84% 100%, rgba(46, 79, 143, 0.20), transparent 62%),
        #101C36;
    color: var(--paper);
}

.app h2, .app h3 { color: var(--paper); }
.app .vmark { border-radius: 5px; }

.app__grid {
    display: grid;
    grid-template-columns: 268px minmax(0, 1fr);
    gap: clamp(30px, 4.6vw, 64px);
    align-items: start;
}

/* Device sizing is width-driven so a tall window can never inflate it. */
.phone--app { width: 100%; height: auto; }
.phone--app .screen { height: auto; aspect-ratio: 598 / 1226; }

/* Real screens from the current build. App UI carries no photographic
   grade: the site's warm filter is for photography, and tinting a
   screenshot would misrepresent the product. */
.proof {
    margin-top: clamp(34px, 4.4vw, 56px);
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.9fr);
    gap: clamp(22px, 2.6vw, 36px);
    align-items: start;
}

.proof__item {
    margin: 0;
}

.proof__item--lead { grid-row: span 2; }

.proof__item img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid rgba(251, 247, 237, 0.14);
    border-radius: 18px;
    box-shadow: var(--vp-proof-shadow, 0 24px 64px rgba(0, 0, 0, 0.42));
}

.proof__item figcaption {
    margin-top: 16px;
    display: grid;
    gap: 6px;
    font-size: var(--fs-small);
    line-height: 1.6;
    color: rgba(251, 247, 237, 0.62);
}

.proof__item figcaption strong {
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.2;
    color: var(--paper);
}

@media (max-width: 860px) {
    .proof {
        grid-template-columns: minmax(0, 1fr);
        max-width: 520px;
        margin-inline: auto;
        gap: 28px;
    }
    .proof__item--lead { grid-row: auto; }
}

.app__body { display: grid; gap: clamp(20px, 2.6vw, 30px); }

.explain, .honest {
    background: rgba(251, 247, 237, 0.05);
    border: 1px solid rgba(251, 247, 237, 0.14);
    border-radius: 14px;
    padding: clamp(22px, 2.8vw, 32px);
}

.explain h3, .honest h3 { font-size: 19px; margin-bottom: 12px; }

.explain p, .honest p {
    font-size: var(--fs-small);
    line-height: 1.65;
    color: rgba(251, 247, 237, 0.74);
    max-width: 62ch;
}

.bands { list-style: none; margin: 20px 0 16px; }

.bands li {
    display: grid;
    grid-template-columns: 126px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 9px 0;
    border-top: 1px solid rgba(251, 247, 237, 0.10);
    font-size: var(--fs-small);
    color: rgba(251, 247, 237, 0.74);
}

.band-chip {
    justify-self: start;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--paper);
    border: 1px solid rgba(251, 247, 237, 0.34);
    border-radius: 999px;
    padding: 4px 11px;
}

.explain__note, .honest__caveat {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(251, 247, 237, 0.14);
    color: rgba(251, 247, 237, 0.58) !important;
}

@media (max-width: 900px) {
    .app__grid { grid-template-columns: minmax(0, 1fr); justify-items: center; }
    .app__device { width: min(248px, 62%); }
    .app__body { width: 100%; }
}

/* ── App versus coach ───────────────────────────────────────── */

/* The table scrolls inside its own box so the page never scrolls
   sideways on a narrow phone. */
.vs {
    margin-top: clamp(34px, 4.4vw, 56px);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.vs__table { width: 100%; min-width: 360px; border-collapse: collapse; text-align: left; }

.vs__caption {
    caption-side: top;
    text-align: left;
    padding-bottom: 18px;
    font-family: var(--serif);
    font-weight: 600;
    font-size: var(--fs-panel);
    color: var(--paper);
}

.vs__table thead th {
    padding: 0 0 13px;
    border-bottom: 1px solid rgba(251, 247, 237, 0.28);
    font-family: var(--serif);
    font-weight: 600;
    font-size: 17px;
    color: var(--paper);
    vertical-align: bottom;
}

.vs__table thead th span {
    display: block;
    margin-top: 3px;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(251, 247, 237, 0.5);
}

.vs__blank { font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(251, 247, 237, 0.5); }

.vs__table tbody th {
    padding: 14px 20px 14px 0;
    font-weight: 400;
    font-size: var(--fs-small);
    line-height: 1.5;
    color: rgba(251, 247, 237, 0.78);
    border-bottom: 1px solid rgba(251, 247, 237, 0.10);
}

.vs__table td {
    padding: 14px 0;
    border-bottom: 1px solid rgba(251, 247, 237, 0.10);
    font-size: var(--fs-small);
    color: rgba(251, 247, 237, 0.78);
    text-align: center;
    width: 22%;
}

.vs__table thead th:not(:first-child) { text-align: center; width: 22%; }

.mark { display: inline-block; line-height: 1; }
.mark--yes::before { content: "\2713"; font-size: 16px; color: var(--paper); }
.mark--no::before { content: "\2013"; font-size: 16px; color: rgba(251, 247, 237, 0.3); }

/* The closing row is the point of the table, so it is set as a
   statement rather than another pair of marks. */
.vs__table tbody .vs__key th,
.vs__table tbody .vs__key td {
    border-bottom: none;
    padding-top: 20px;
    color: var(--paper);
    font-weight: 600;
}

.vs__table tbody .vs__key th { font-family: var(--serif); font-size: 16px; }

/* ── Privacy and requirements ───────────────────────────────── */

.privacy {
    list-style: none;
    margin-top: clamp(30px, 4vw, 48px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 clamp(22px, 3vw, 44px);
}

.privacy li {
    position: relative;
    padding: 16px 0 0 26px;
    border-top: 1px solid rgba(251, 247, 237, 0.14);
    font-size: var(--fs-small);
    line-height: 1.6;
    color: rgba(251, 247, 237, 0.66);
}

.privacy li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 17px;
    font-size: 11px;
    color: rgba(251, 247, 237, 0.8);
}
.privacy strong { display: block; color: var(--paper); font-weight: 600; margin-bottom: 2px; }

.app__req {
    margin-top: 26px;
    max-width: 76ch;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(251, 247, 237, 0.46);
}

@media (max-width: 780px) {
    .privacy { grid-template-columns: minmax(0, 1fr); }
}

/* ── Results honesty line ───────────────────────────────────── */

.disclaim {
    margin: 26px auto 0;
    max-width: 66ch;
    font-size: 12px;
    line-height: 1.6;
    color: var(--faint);
}

/* ── Grouped inventory ──────────────────────────────────────── */

.groups {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    text-align: left;
}

.group {
    background: var(--card);
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: var(--shadow);
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.group:hover { transform: translateY(-2px); box-shadow: 0 22px 52px rgba(23, 21, 17, 0.16); }

.group__n {
    font-size: var(--fs-label);
    font-weight: 600;
    letter-spacing: 0.24em;
    color: var(--accent);
}

.group strong { font-family: var(--serif); font-weight: 600; font-size: 21px; }
.group__lede { font-size: var(--fs-small); line-height: 1.6; color: var(--dim); }

.detail {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--line-soft);
}

.detail__h {
    margin-top: 14px;
    font-size: var(--fs-label);
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--faint);
}

.detail__body .mini { margin-top: 2px; }

@media (max-width: 900px) {
    .groups { grid-template-columns: minmax(0, 1fr); }
}

/* ── Pricing ────────────────────────────────────────────────── */

.pricing { padding: var(--sec-pad) 0; border-top: 1px solid var(--line-soft); }

.plans {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 780px;
    margin-inline: auto;
    align-items: stretch;
}

.plan {
    position: relative;
    background: var(--paper-2);
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    padding: clamp(24px, 3vw, 34px);
    display: flex;
    flex-direction: column;
    gap: 9px;
}

/* Hierarchy is carried by elevation, not by a coloured banner. */
.plan--best { background: var(--card); box-shadow: var(--shadow); }

.plan__badge {
    align-self: flex-start;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid var(--accent-line);
    border-radius: 999px;
    padding: 5px 12px;
    margin-bottom: 4px;
}

.plan__name {
    font-size: var(--fs-label);
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--faint);
}

.plan__quote { font-family: var(--serif); font-weight: 600; font-size: 19px; line-height: 1.25; }
.plan__price { display: flex; align-items: baseline; gap: 8px; margin-top: 6px; }
.plan__amt { font-family: var(--serif); font-weight: 600; font-size: clamp(32px, 3.6vw, 44px); line-height: 1; letter-spacing: -0.02em; }
.plan__per { font-size: var(--fs-small); color: var(--dim); }
.plan__sub { font-size: var(--fs-small); line-height: 1.6; color: var(--dim); }
.plan__btn { margin-top: auto; width: 100%; }

.pricing__frame {
    margin: 22px auto 0;
    max-width: 60ch;
    text-align: center;
    font-size: 12px;
    color: var(--faint);
}

@media (max-width: 680px) {
    .plans { grid-template-columns: minmax(0, 1fr); }
}

/* ── Questions ──────────────────────────────────────────────── */

.faq { max-width: 780px; margin: clamp(40px, 5vw, 62px) auto 0; }

.faq__h {
    font-family: var(--serif);
    font-weight: 600;
    font-size: var(--fs-panel);
    margin-bottom: 8px;
}

.q { border-bottom: 1px solid var(--line-soft); }

.q summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 34px 18px 0;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
}

.q summary::-webkit-details-marker { display: none; }

.q summary::after {
    content: "+";
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 17px;
    color: var(--accent);
}

.q[open] summary::after { content: "\2212"; }
.q summary:hover { color: var(--accent); }
.q__a { padding: 0 0 20px; }
.q__a p { max-width: 68ch; font-size: var(--fs-small); line-height: 1.7; color: var(--dim); }

/* ── Close ──────────────────────────────────────────────────── */

.close {
    padding: var(--sec-pad) 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% -10%, rgba(251, 247, 237, 0.09), transparent 62%),
        #101C36;
    color: var(--paper);
    text-align: center;
}

.close__inner { max-width: 640px; display: flex; flex-direction: column; align-items: center; gap: 18px; }

.close__lede {
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(19px, 2vw, 26px);
    line-height: 1.32;
    color: rgba(251, 247, 237, 0.92);
    text-wrap: balance;
}

.close .btn { font-size: 12px; letter-spacing: 0.2em; padding: 17px 38px; }
.close__price { color: rgba(251, 247, 237, 0.5); }

@media (max-width: 620px) {
    .close .btn { white-space: normal; max-width: 100%; padding: 16px 26px; }
}

/* ── Motion: lift on the cards that are choices ─────────────── */

.transform, .plan { transition: transform var(--dur) var(--ease); }
.plan--best:hover { transform: translateY(-2px); }

@media (prefers-reduced-motion: reduce) {
    .group, .plan, .transform { transition: none; }
    .group:hover, .plan--best:hover { transform: none; }
}

/* ══ Direction A · premium-blue art direction ════════════════
 * The content and section order stay fixed. This layer changes scale,
 * rhythm and image treatment so the page reads as a composed campaign
 * rather than a run of similarly weighted sections.
 * ============================================================== */

/* ── Hero: one decisive human image inside the blue brand world ─ */

.hero-top {
    position: relative;
    isolation: isolate;
    min-height: min(780px, 100svh);
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: center;
    justify-content: stretch;
    padding: 128px 0 86px;
    background: var(--navy);
}

.hero-top > :not(.hero-art) {
    position: relative;
    z-index: 1;
}

.hero-art {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            var(--navy) 0%,
            rgba(16, 28, 54, 0.98) 25%,
            rgba(16, 28, 54, 0.88) 48%,
            rgba(16, 28, 54, 0.30) 100%),
        linear-gradient(0deg,
            var(--navy) 0%,
            rgba(16, 28, 54, 0.16) 34%,
            transparent 62%);
}

.hero-art__image {
    width: min(54vw, 780px);
    height: 100%;
    margin-left: auto;
    object-fit: cover;
    object-position: 50% 45%;
    opacity: 0.72;
    filter: saturate(0.82) contrast(1.02);
}

.js .hero-art__image {
    clip-path: inset(0 0 0 100%);
    transform: scale(1.035);
    transition:
        clip-path 1100ms var(--ease-out),
        transform 1400ms var(--ease-out);
}

.js .hero-art.is-in .hero-art__image {
    clip-path: inset(0);
    transform: none;
}

.hero-top .mast,
.hero-top .hero-cta {
    grid-column: 1;
    width: min(680px, calc(100% - 48px));
    margin-inline: auto;
}

.hero-top .hero-cta { margin-top: 34px; }

.hero-promise { max-width: 38ch; }

/* ── Proof in numbers: one continuous editorial rule ───────── */

.figures {
    padding: clamp(40px, 5.5vw, 68px) 0 clamp(26px, 3.8vw, 44px);
}

.figures__row { gap: 0; }

.figure {
    justify-content: center;
    min-height: 116px;
    padding: 6px clamp(20px, 3vw, 40px);
    border-top: 0;
}

.figure:first-child { padding-left: 0; }
.figure:last-child { padding-right: 0; }
.figure + .figure { border-left: 1px solid var(--line); }
.figure__n { color: var(--accent); }
.figure__l { max-width: 32ch; }

/* ── Three pillars: retain the trio, break the showroom line ── */

.trio {
    margin-top: clamp(28px, 4vw, 58px);
    padding-bottom: clamp(90px, 11vw, 150px);
    align-items: start;
}

.trio .ex:nth-child(2) { margin-top: clamp(26px, 3vw, 48px); }

.ex__media {
    border-radius: 18px;
    box-shadow: 0 26px 68px rgba(21, 34, 56, 0.14);
}

.ex__img { border-radius: 18px; }
.ex__media--solo { box-shadow: none; }

/* ── How it works: a held proposition beside a progression ─── */

.creed {
    padding: clamp(82px, 10vw, 140px) 0;
    background:
        linear-gradient(90deg, rgba(46, 79, 143, 0.045), transparent 36%),
        var(--paper);
}

.creed__layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(54px, 8vw, 118px);
    align-items: start;
}

.creed .sec__head {
    position: sticky;
    top: 106px;
    margin-bottom: 0;
}

.creed__steps {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
}

.creed__step {
    min-height: 194px;
    padding: 32px 0 34px;
    display: grid;
    grid-template-columns: minmax(96px, 0.34fr) minmax(0, 0.66fr);
    column-gap: clamp(20px, 3vw, 44px);
    align-content: start;
}

.creed__label {
    grid-row: 1 / span 2;
    margin: 5px 0 0;
}

.creed__step h3 { margin-bottom: 14px; }
.creed__step p { max-width: 48ch; }

/* ── Human proof: broader, calmer image-led sections ───────── */

.feature--coach,
.feature--results {
    padding: clamp(86px, 10vw, 142px) 0;
}

.feature--coach .feature__inner,
.feature--results .feature__inner {
    max-width: none;
}

.feature--coach .feature__label,
.feature--coach h2,
.feature--coach .sec__intro,
.feature--results .feature__label,
.feature--results h2,
.feature--results .sec__intro {
    max-width: 700px;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}

.feature--coach .feature__video {
    width: 100%;
    max-width: none;
    margin-top: clamp(38px, 5vw, 68px);
    border-radius: 22px;
    box-shadow: 0 34px 90px rgba(16, 28, 54, 0.20);
}

.feature--results .transforms {
    margin-top: clamp(40px, 5vw, 70px);
    gap: clamp(26px, 3.8vw, 54px);
}

.feature--results .transform__pair { gap: clamp(10px, 1.2vw, 18px); }
.feature--results .shot { border-radius: 16px; }
.feature--results .disclaim { margin-left: 0; text-align: left; }

/* ── Vital Plus: chapters, not one uninterrupted feature wall ─ */

.app {
    padding: clamp(82px, 9vw, 128px) 0;
    padding-bottom: clamp(54px, 6vw, 78px);
    background:
        radial-gradient(ellipse 70% 42% at 14% 2%, rgba(78, 114, 189, 0.22), transparent 62%),
        radial-gradient(ellipse 68% 44% at 92% 82%, rgba(46, 79, 143, 0.18), transparent 64%),
        var(--navy);
}

.app__chapter + .app__chapter {
    margin-top: clamp(72px, 8.5vw, 122px);
}

.app__chapter--intro .sec__head { max-width: 68ch; }

.app__grid {
    grid-template-columns: minmax(230px, 300px) minmax(0, 1fr);
    gap: clamp(42px, 6vw, 80px);
}

.app__body { gap: 0; }

.explain,
.honest {
    background: transparent;
    border: 0;
    border-top: 1px solid rgba(251, 247, 237, 0.18);
    border-radius: 0;
    padding: clamp(24px, 3vw, 36px) 0;
}

.app__chapter--proof .proof,
.app__chapter--decision .vs,
.app__chapter--privacy .privacy {
    margin-top: 0;
}

.app__chapter--decision,
.app__chapter--privacy {
    padding-top: clamp(28px, 4vw, 50px);
    border-top: 1px solid rgba(251, 247, 237, 0.16);
}

.proof { gap: clamp(24px, 3vw, 44px); }

.proof__item img {
    clip-path: inset(1.6% 0.55% 1.6% 0.55% round 5.2% / 9.5%);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    filter: drop-shadow(0 24px 52px rgba(0, 0, 0, 0.32));
}

.proof__item figcaption { margin-top: 10px; }
.proof__item figcaption strong { font-size: clamp(19px, 1.8vw, 24px); }

.vs__caption { max-width: 28ch; font-size: clamp(24px, 3vw, 38px); }

.privacy li::before,
.mark--yes::before { color: #8FA9E0; }

.app__chapter--privacy {
    margin-top: clamp(38px, 5vw, 64px) !important;
    padding-top: clamp(24px, 2.5vw, 34px);
}

.privacy { gap: clamp(18px, 2.5vw, 34px); }

.privacy li {
    padding-top: 0;
    border-top: 0;
}

.privacy li::before { top: 1px; }

.app__req {
    max-width: none;
    margin-top: clamp(18px, 2.4vw, 26px);
    padding-top: clamp(14px, 1.8vw, 20px);
    border-top: 1px solid rgba(251, 247, 237, 0.14);
}

/* ── Offer and close: polish without changing the proposition ─ */

.band { padding: clamp(86px, 10vw, 136px) 0; }
.band__inner { max-width: 1080px; }
.band__inner > .sec__intro { margin-bottom: clamp(42px, 5vw, 64px); }
.groups { gap: clamp(14px, 2vw, 24px); }

.group {
    border-color: rgba(46, 79, 143, 0.13);
    box-shadow: 0 22px 62px rgba(21, 34, 56, 0.10);
}

.pricing { padding: clamp(86px, 10vw, 136px) 0; }

.plans {
    max-width: 860px;
    gap: clamp(16px, 2vw, 24px);
}

.plan {
    border-color: rgba(46, 79, 143, 0.14);
    transition:
        transform var(--dur) var(--ease-out),
        border-color var(--dur) var(--ease),
        box-shadow var(--dur) var(--ease);
}

.plan:hover,
.plan:focus-within {
    border-color: var(--accent-line);
    box-shadow: 0 24px 64px rgba(21, 34, 56, 0.12);
}

.plan--best {
    box-shadow: 0 28px 72px rgba(21, 34, 56, 0.15);
}

.close {
    padding: clamp(96px, 12vw, 164px) 0;
    background:
        radial-gradient(ellipse 60% 64% at 50% -10%, rgba(78, 114, 189, 0.30), transparent 65%),
        linear-gradient(180deg, var(--navy-raised), var(--navy));
}

.close__inner { max-width: 720px; gap: 22px; }
.close__lede { font-size: clamp(22px, 2.6vw, 34px); }

@media (max-width: 900px) {
    .hero-top {
        min-height: 760px;
        grid-template-columns: minmax(0, 1fr);
        align-content: end;
        justify-content: center;
        padding: 112px 24px 70px;
    }

    .hero-art__image {
        width: min(82vw, 620px);
        opacity: 0.60;
        object-position: 50% 35%;
    }

    .hero-art::after {
        background:
            linear-gradient(90deg, rgba(16, 28, 54, 0.76), rgba(16, 28, 54, 0.34)),
            linear-gradient(0deg, var(--navy) 0%, rgba(16, 28, 54, 0.93) 34%, rgba(16, 28, 54, 0.12) 78%);
    }

    .hero-top .mast,
    .hero-top .hero-cta {
        width: min(680px, 100%);
    }

    .trio .ex:nth-child(2) { margin-top: 0; }

    .creed__layout { grid-template-columns: minmax(0, 1fr); gap: 38px; }
    .creed .sec__head { position: static; }

    .app__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 46px;
    }
}

@media (max-width: 720px) {
    .figures__row { gap: 0; }

    .figure {
        min-height: 0;
        padding: 22px 0;
    }

    .figure:first-child { padding-top: 0; }
    .figure:last-child { padding-bottom: 0; }
    .figure + .figure { border-left: 0; border-top: 1px solid var(--line); }

    .creed__step {
        min-height: 0;
        grid-template-columns: minmax(0, 1fr);
        padding: 28px 0;
    }

    .creed__label {
        grid-row: auto;
        margin: 0 0 12px;
    }

    .feature--coach .feature__label,
    .feature--coach h2,
    .feature--coach .sec__intro,
    .feature--results .feature__label,
    .feature--results h2,
    .feature--results .sec__intro {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .feature--results .disclaim { text-align: center; margin-left: auto; }
    .app__chapter + .app__chapter { margin-top: 68px; }

    .privacy { gap: 18px; }
    .privacy li + li { padding-top: 4px; }
}

@media (max-width: 560px) {
    .hero-top {
        min-height: 720px;
        padding-bottom: 52px;
    }

    .hero-art__image {
        width: 100%;
        opacity: 0.54;
        object-position: 54% 25%;
    }

    .mast__vital { font-size: clamp(54px, 18vw, 78px); }
    .mast__club { font-size: clamp(36px, 12vw, 54px); }
}

@media (prefers-reduced-motion: reduce) {
    .js .hero-art__image {
        clip-path: inset(0);
        transform: none;
        transition: none;
    }

    .plan { transition: none; }
}
