/* ==========================================================================
   Sarge landing page — "gym poster meets Apple polish"
   Brand tokens mirror the iOS design system; typography is condensed and loud
   like a locker-room board, spacing and surfaces stay calm like the app.
   ========================================================================== */
:root {
  --coral: #FF6B47;
  --coral-deep: #E84E2C;
  --sunset: #FF9F5A;
  --teal: #1FA89F;
  --gold: #E9A83A;
  --violet: #7C6CF6;
  --navy: #1F2637;
  --hr: #E0457B;

  --canvas: #F6F2EC;
  --surface: #FFFFFF;
  --sunken: #EFE9E1;
  --hairline: rgba(23, 26, 33, 0.08);
  --ink: #171A21;
  --ink-2: #5B6170;
  --ink-3: #9097A6;
  --dark: #0B0E14;
  --dark-2: #151A24;
  --dark-card: #0B0E14;
  --shadow: 0 12px 40px rgba(23, 26, 33, 0.08);
  --shadow-lg: 0 30px 80px rgba(23, 26, 33, 0.16);
  --grid-ink: rgba(23, 26, 33, 0.05);

  --font-display: "Barlow Condensed", "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Barlow", "SF Pro Text", -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 22px;
  --radius-lg: 30px;
  --max: 1180px;
  --tape: repeating-linear-gradient(-45deg, var(--coral) 0 16px, var(--sunset) 16px 32px);
}

@media (prefers-color-scheme: dark) {
  :root {
    --coral: #FF8264;
    --sunset: #FFB070;
    --teal: #4ECDC4;
    --gold: #FFCC66;
    --violet: #9D91FF;
    --hr: #FF6FA0;
    --canvas: #0B0E14;
    --surface: #161A22;
    --sunken: #11151C;
    --hairline: rgba(255, 255, 255, 0.08);
    --ink: #F4F4F6;
    --ink-2: #A3A9B7;
    --ink-3: #6B7180;
    --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.55);
    --grid-ink: rgba(255, 255, 255, 0.045);
    --dark-card: #1E232D;
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { margin: 0; }
h1, h2, .display { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: -0.005em; line-height: .94; }
h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: 0; line-height: 1.05; }
.grad { background: linear-gradient(90deg, var(--coral), var(--sunset)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.container.narrow { max-width: 780px; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 12px; border-radius: 8px; }
.skip-link:focus { left: 8px; z-index: 100; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }

/* --- Paper grid: a faint gym-floor lattice behind everything ------------- */
.page-grid { position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: linear-gradient(var(--grid-ink) 1px, transparent 1px), linear-gradient(90deg, var(--grid-ink) 1px, transparent 1px);
  background-size: 48px 48px; mask-image: linear-gradient(#000, transparent 70%); -webkit-mask-image: linear-gradient(#000, transparent 70%); }
main, .site-header, .site-footer { position: relative; z-index: 1; }

/* --- Set label: replaces the generic eyebrow ------------------------------ */
.set-label { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: .16em; text-transform: uppercase; color: var(--coral); margin-bottom: 16px; }
.set-label .set-dots { display: inline-flex; gap: 4px; align-items: center; }
.set-label .set-dots i { width: 8px; height: 5px; border-radius: 3px; background: color-mix(in srgb, var(--coral) 35%, transparent); }
.set-label .set-dots i.on { width: 18px; background: var(--coral); }
.set-label .set-dots i.done { background: var(--teal); }
.set-label-light { color: var(--sunset); }

/* --- App icon: rendered from AppIcon.icon, same asset as the App Store ---------- */
.app-icon { border-radius: 22.37%; box-shadow: 0 2px 6px rgba(0,0,0,.18); }
.app-icon-lg { box-shadow: 0 16px 36px rgba(255,107,71,.35); }

/* --- Header ---------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 50; backdrop-filter: saturate(160%) blur(18px); -webkit-backdrop-filter: saturate(160%) blur(18px); background: color-mix(in srgb, var(--canvas) 80%, transparent); border-bottom: 1px solid var(--hairline); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 26px; text-transform: uppercase; letter-spacing: .04em; }
.brand-tag { font-size: 11px; letter-spacing: .18em; color: var(--ink-3); font-weight: 700; margin-left: 2px; padding-left: 10px; border-left: 2px solid var(--coral); line-height: 1; }
.nav-links { display: flex; align-items: center; gap: 26px; font-family: var(--font-display); font-weight: 600; font-size: 16px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2); }
.nav-links a:hover { color: var(--coral); }
.nav-toggle { display: none; background: none; border: 0; width: 40px; height: 40px; border-radius: 12px; cursor: pointer; flex-direction: column; justify-content: center; gap: 5px; align-items: center; }
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }

/* --- Buttons --------------------------------------------------------------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: .06em; text-transform: uppercase; padding: 14px 24px; border-radius: 14px; transition: transform .15s ease, box-shadow .15s ease, background .15s; white-space: nowrap; }
.btn:active { transform: scale(.98); }
.btn-small { padding: 9px 16px; font-size: 15px; border-radius: 11px; }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--coral), var(--sunset)); box-shadow: 0 10px 28px rgba(255, 107, 71, 0.32); }
.btn-primary:hover { box-shadow: 0 14px 34px rgba(255, 107, 71, 0.42); transform: translateY(-1px); }
.btn-ghost { color: var(--ink); background: var(--surface); border: 1px solid var(--hairline); box-shadow: var(--shadow); }
.btn-ghost:hover { border-color: var(--coral); color: var(--coral); }
.btn-dark { color: #fff; background: var(--dark); }
.appstore-badge img { height: 60px; width: auto; transition: transform .15s ease; }
.appstore-badge:hover img { transform: translateY(-1px) scale(1.02); }

/* --- Hero ------------------------------------------------------------------ */
.hero { position: relative; overflow: hidden; padding: 64px 0 24px; }
.hero-glow { position: absolute; inset: -10% -10% auto -10%; height: 120%; pointer-events: none; background:
  radial-gradient(640px 420px at 18% 18%, color-mix(in srgb, var(--coral) 24%, transparent), transparent 70%),
  radial-gradient(520px 420px at 88% 62%, color-mix(in srgb, var(--violet) 16%, transparent), transparent 70%); }
.hero-lanes { position: absolute; right: -8%; top: -10%; width: 60%; height: 120%; pointer-events: none; opacity: .5;
  background: repeating-linear-gradient(-62deg, transparent 0 84px, color-mix(in srgb, var(--coral) 9%, transparent) 84px 86px); mask-image: linear-gradient(90deg, transparent, #000 40%); -webkit-mask-image: linear-gradient(90deg, transparent, #000 40%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 32px; align-items: center; }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 18px; padding: 8px 14px 8px 10px; border-radius: 999px; background: var(--surface); border: 1px solid var(--hairline); box-shadow: var(--shadow); }
.hero-kicker .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px color-mix(in srgb, var(--teal) 22%, transparent); }
.hero h1 { font-size: clamp(56px, 8.4vw, 118px); }
.hero h1 .line-2 { display: block; }
.lead { font-size: 20px; color: var(--ink-2); margin: 22px 0 30px; max-width: 560px; }
.cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 24px 26px; margin-top: 40px; }
.hero-proof li { display: flex; flex-direction: column; gap: 6px; }
.hero-proof strong { font-family: var(--font-display); font-size: 48px; font-weight: 800; line-height: .9; letter-spacing: -0.01em; }
.hero-proof span { font-family: var(--font-display); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.hero-proof .bar { width: 44px; height: 5px; border-radius: 3px; background: var(--tape); }

/* Devices: phone in front, watch tucked on the phone's shoulder */
.hero-devices { position: relative; height: 720px; display: grid; place-items: center; }
.phone { position: relative; margin: 0; width: 300px; aspect-ratio: 300 / 652; border-radius: 48px; background: #0d0f14; padding: 10px; box-shadow: var(--shadow-lg), inset 0 0 0 2px #2a2e38; }
.phone::before { content: ""; position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 92px; height: 26px; background: #0d0f14; border-radius: 16px; z-index: 2; }
.phone img { width: 100%; height: 100%; object-fit: cover; border-radius: 40px; }
.phone-front, .phone-back, .hero-watch { position: absolute; left: 50%; will-change: translate; backface-visibility: hidden; }
.phone-front { transform: translateX(-24%) rotate(-3deg); z-index: 2; animation: float 7s ease-in-out infinite; }
.phone-back { transform: translateX(-86%) translateY(30px) rotate(6deg) scale(.9); opacity: .95; animation: float 8s ease-in-out infinite reverse; }
.hero-watch { z-index: 3; transform: translateX(-118%) translateY(180px) rotate(-8deg); animation: float 6s ease-in-out infinite; }
@keyframes float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -14px; } }
@media (prefers-reduced-motion: reduce) { .phone-front, .phone-back, .hero-watch, .marquee-track, .pulse { animation: none !important; } }

/* --- Apple Watch frame ----------------------------------------------------- */
/* The screenshot keeps its own 416:496 ratio; the case is sized by the image, so nothing is stretched. */
.watch { position: relative; margin: 0; width: 200px; border-radius: 25% / 21.5%; padding: 5%; background: linear-gradient(160deg, #3a3f4b, #0d0f14 60%); box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255,255,255,.14), inset 0 -6px 12px rgba(0,0,0,.5); }
.watch::before { content: ""; position: absolute; right: -5.5%; top: 31%; width: 6%; height: 17%; border-radius: 4px; background: linear-gradient(90deg, #4a5060, #22262e); box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); }
.watch::after { content: ""; position: absolute; right: -3.5%; top: 55%; width: 4%; height: 13%; border-radius: 3px; background: linear-gradient(90deg, #3a3f4b, #22262e); }
.watch img { width: 100%; height: auto; aspect-ratio: 416 / 496; object-fit: cover; border-radius: 21.5% / 18%; background: #000; }
.watch-strapped::before { top: 30%; }
.watch-strapped .strap { position: absolute; left: 22%; width: 56%; height: 46px; background: linear-gradient(90deg, #22262e, #3a3f4b, #22262e); z-index: -1; }
.watch-strapped .strap-top { top: -40px; border-radius: 14px 14px 4px 4px; }
.watch-strapped .strap-bottom { bottom: -40px; border-radius: 4px 4px 14px 14px; }

/* --- Marquee: hazard tape with the coach's voice ---------------------------- */
.marquee-wrap { overflow: hidden; padding: 12px 0; margin: 12px 0 0; }
.marquee { position: relative; overflow: hidden; background: var(--tape); color: var(--dark); border-block: 3px solid var(--dark); transform: rotate(-1.2deg) scale(1.02); }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee 32s linear infinite; }
.marquee-track ul { display: flex; align-items: center; gap: 0; padding: 12px 0; }
.marquee-track li { display: inline-flex; align-items: center; gap: 22px; padding: 0 22px; font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.marquee-track li::after { content: "★"; font-size: 14px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* --- Sections -------------------------------------------------------------- */
.section { padding: 100px 0; }
.section-alt { background: var(--sunken); }
.section-head { max-width: 780px; margin: 0 0 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .set-label { justify-content: center; }
h2 { font-size: clamp(38px, 5.6vw, 72px); }
.sub { color: var(--ink-2); font-size: 19px; margin-top: 18px; max-width: 640px; }
.center .sub { margin-inline: auto; }

/* --- Features: bento of training cards ------------------------------------ */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.bento-card { position: relative; overflow: hidden; background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease; grid-column: span 2; }
.bento-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.bento-card.wide { grid-column: span 3; }
.bento-card.tall { grid-column: span 3; }
.bento-card h3 { font-size: 28px; margin: 20px 0 10px; text-transform: uppercase; letter-spacing: .01em; }
.bento-card p { color: var(--ink-2); font-size: 16px; }
.bento-num { position: absolute; top: 16px; right: 20px; font-family: var(--font-display); font-weight: 800; font-size: 44px; line-height: 1; color: color-mix(in srgb, var(--ink) 8%, transparent); }
.feature-icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; font-size: 22px; font-weight: 800; color: #fff; }
.icon-coral { background: linear-gradient(135deg, var(--coral), var(--sunset)); }
.icon-violet { background: linear-gradient(135deg, var(--violet), #B7AEFF); }
.icon-sunset { background: linear-gradient(135deg, var(--sunset), var(--coral-deep)); }
.icon-teal { background: linear-gradient(135deg, var(--teal), #7EDDD6); }
.icon-gold { background: linear-gradient(135deg, var(--gold), var(--sunset)); }
.icon-navy { background: linear-gradient(135deg, var(--navy), #3A4460); }
.icon-hr { background: linear-gradient(135deg, var(--hr), var(--violet)); }
.bento-card .tape-corner { position: absolute; top: 0; left: 0; width: 64px; height: 8px; background: var(--tape); border-bottom-right-radius: 8px; }
.bento-card.dark { background: linear-gradient(150deg, var(--dark-card), var(--dark) 120%); color: #F4F4F6; border-color: rgba(255,255,255,.08); padding-right: 200px; }
.bento-card.dark p { color: #A3A9B7; }
.bento-card.dark .bento-num { color: rgba(255,255,255,.09); }
.bento-watch-figure { position: absolute; right: -22px; bottom: -70px; width: 190px; transform: rotate(-10deg); opacity: .95; }

/* --- Sarge says: the coach's pull-quote ------------------------------------- */
.sarg-says { margin-top: 26px; display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: center; padding: 22px 26px; border-radius: var(--radius); background: var(--dark-card); color: #fff; border-left: 8px solid var(--coral); box-shadow: var(--shadow); }
.sarg-says .badge { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--coral), var(--sunset)); font-family: var(--font-display); font-weight: 800; font-size: 26px; }
.sarg-says blockquote { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 2.6vw, 32px); text-transform: uppercase; letter-spacing: .02em; line-height: 1.05; }
.sarg-says cite { display: block; margin-top: 6px; font-style: normal; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; color: #A3A9B7; font-weight: 600; }

/* --- Watch band ------------------------------------------------------------ */
.watch-band { position: relative; background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%); color: #F4F4F6; overflow: hidden; }
.watch-band::before { content: ""; position: absolute; inset: 0; pointer-events: none; background:
  radial-gradient(700px 480px at 78% 30%, rgba(255, 130, 100, .22), transparent 70%),
  radial-gradient(520px 420px at 18% 85%, rgba(78, 205, 196, .14), transparent 70%); }
.watch-band .sub { color: #A3A9B7; }
.watch-grid { position: relative; display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: center; }
.watch-points { display: grid; gap: 16px; margin-top: 30px; }
.watch-points li { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.watch-points .pt-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); font-size: 20px; }
.watch-points h3 { font-size: 22px; text-transform: uppercase; letter-spacing: .02em; color: #fff; }
.watch-points p { color: #A3A9B7; font-size: 15px; margin-top: 3px; }
.watch-stage { position: relative; height: 560px; }
.watch-stage .watch { position: absolute; }
.watch-stage .w1 { width: 250px; left: 32%; top: 20px; z-index: 3; transform: rotate(-4deg); }
.watch-stage .w2 { width: 200px; left: 2%; top: 190px; z-index: 2; transform: rotate(6deg); }
.watch-stage .w3 { width: 200px; left: 66%; top: 250px; z-index: 2; transform: rotate(-9deg); }
.live-chip { position: absolute; z-index: 4; display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; padding: 10px 14px; border-radius: 999px; background: rgba(11,14,20,.72); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: .06em; text-transform: uppercase; box-shadow: var(--shadow-lg); }
.live-chip.hr { left: 4%; top: 60px; color: var(--hr); }
.live-chip.kcal { right: 2%; top: 480px; color: var(--gold); }
.live-chip .pulse { display: inline-block; animation: pulse 1s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.25); } }
.watch-row { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 64px; padding-top: 48px; border-top: 1px solid rgba(255,255,255,.1); }
.watch-row figure { margin: 0; display: grid; justify-items: center; gap: 14px; }
.watch-row .watch { width: min(100%, 190px); }
.watch-row figcaption { font-family: var(--font-display); font-size: 15px; letter-spacing: .1em; text-transform: uppercase; color: #A3A9B7; font-weight: 600; text-align: center; }

/* --- Gallery: tilted cards ------------------------------------------------- */
.gallery { position: relative; }
.gallery-track { display: flex; gap: 32px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 24px calc((100% - var(--max)) / 2 + 20px) 36px; scrollbar-width: none; }
.gallery-track::-webkit-scrollbar { display: none; }
.shot { flex: 0 0 auto; width: 260px; margin: 0; scroll-snap-align: center; text-align: center; transition: transform .25s ease; }
.shot:nth-child(odd) { transform: rotate(-1.6deg); }
.shot:nth-child(even) { transform: rotate(1.6deg) translateY(10px); }
.shot:hover { transform: rotate(0) translateY(-6px); }
.shot picture img { width: 100%; border-radius: 34px; box-shadow: var(--shadow-lg); border: 6px solid #0d0f14; }
.shot figcaption { margin-top: 14px; font-family: var(--font-display); font-size: 16px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2); font-weight: 600; }
.gallery-controls { display: flex; justify-content: center; gap: 10px; }
.gallery-btn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--hairline); background: var(--surface); color: var(--ink); font-size: 18px; cursor: pointer; box-shadow: var(--shadow); }
.gallery-btn:hover { color: var(--coral); border-color: var(--coral); }

/* --- Steps: the warm-up, the block, the start ------------------------------ */
.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.steps::before { content: ""; position: absolute; left: 6%; right: 6%; top: 44px; height: 4px; border-radius: 2px; background: linear-gradient(90deg, var(--coral), var(--sunset), var(--teal)); opacity: .7; }
.step { position: relative; background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 30px 28px 28px; box-shadow: var(--shadow); }
.step-num { display: inline-grid; place-items: center; width: 64px; height: 40px; border-radius: 10px; background: var(--dark-card); border: 1px solid rgba(255,255,255,.1); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: .06em; }
.step h3 { font-size: 26px; margin: 18px 0 8px; text-transform: uppercase; }
.step p { color: var(--ink-2); font-size: 16px; }

/* --- Programs -------------------------------------------------------------- */
.programs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.chip-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.chip-cloud li { padding: 8px 14px; border-radius: 999px; background: var(--surface); border: 1px solid var(--hairline); font-family: var(--font-display); font-size: 15px; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; color: var(--ink); }
.program-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pcard { position: relative; border-radius: 18px; padding: 20px; color: #fff; min-height: 132px; display: flex; flex-direction: column; justify-content: flex-end; box-shadow: var(--shadow); overflow: hidden; transition: transform .2s ease; }
.pcard:hover { transform: translateY(-3px) rotate(-.6deg); }
.pcard::after { content: ""; position: absolute; right: -30px; top: -30px; width: 120px; height: 120px; border-radius: 50%; background: rgba(255,255,255,.14); }
.pcard-cat { font-family: var(--font-display); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; opacity: .9; }
.pcard h3 { font-size: 26px; margin: 4px 0 2px; text-transform: uppercase; }
.pcard p { font-size: 13px; opacity: .9; }
.pcard-coral { background: linear-gradient(135deg, #FF6B47, #FF9F5A); }
.pcard-violet { background: linear-gradient(135deg, #7C6CF6, #4ECDC4); }
.pcard-teal { background: linear-gradient(135deg, #1FA89F, #7C6CF6); }
.pcard-navy { background: linear-gradient(135deg, #1F2637, #4A5570); }
.pcard-sunset { background: linear-gradient(135deg, #FF9F5A, #E84E2C); }
.pcard-gold { background: linear-gradient(135deg, #E9A83A, #FF6B47); }
.pcard-red { background: linear-gradient(135deg, #C2413B, #1F2637); }

/* --- Pricing --------------------------------------------------------------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan { position: relative; background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.plan h3 { font-size: 24px; text-transform: uppercase; letter-spacing: .06em; }
.price { font-family: var(--font-display); font-size: 60px; font-weight: 800; margin: 10px 0 2px; line-height: 1; }
.price span { font-size: 18px; color: var(--ink-3); font-weight: 600; letter-spacing: .04em; }
.plan-sub { color: var(--ink-2); font-size: 15px; }
.plan ul { margin: 22px 0 26px; display: grid; gap: 10px; flex: 1; }
.plan li { position: relative; padding-left: 26px; font-size: 15px; color: var(--ink); }
.plan li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--teal); font-weight: 800; }
.plan-credits { border-color: color-mix(in srgb, var(--gold) 50%, transparent); }
.plan-credits li::before { color: var(--gold); }
.plan-pro { border: 2px solid transparent; background: linear-gradient(var(--surface), var(--surface)) padding-box, linear-gradient(135deg, var(--coral), var(--violet)) border-box; box-shadow: var(--shadow-lg); }
.plan-badge { position: absolute; top: -16px; left: 24px; background: var(--dark-card); color: #fff; font-family: var(--font-display); font-size: 14px; font-weight: 800; padding: 6px 12px; border-radius: 8px; letter-spacing: .12em; text-transform: uppercase; }
.plan-badge::before { content: ""; position: absolute; inset: -3px; z-index: -1; border-radius: 10px; background: var(--tape); }

/* --- Privacy (dark band) ----------------------------------------------------- */
.section-dark { background: var(--dark); color: #F4F4F6; }
.section-dark .sub { color: #A3A9B7; }
.privacy-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.checks { display: grid; gap: 12px; margin-top: 26px; }
.checks li { position: relative; padding-left: 30px; font-weight: 500; }
.checks li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 20px; height: 20px; border-radius: 50%; background: var(--teal); color: var(--dark); display: grid; place-items: center; font-size: 12px; font-weight: 800; }
.phone-solo { margin-inline: auto; width: 280px; }

/* --- FAQ ------------------------------------------------------------------- */
.faq { display: grid; gap: 12px; }
.faq details { background: var(--surface); border: 1px solid var(--hairline); border-radius: 16px; padding: 4px 22px; box-shadow: var(--shadow); }
.faq summary { cursor: pointer; font-family: var(--font-display); font-weight: 700; font-size: 21px; padding: 16px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; color: var(--coral); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--ink-2); padding: 0 0 18px; font-size: 16px; }

/* --- Final CTA: the locker-room board ---------------------------------------- */
.cta-final { padding: 40px 0 110px; }
.cta-inner { position: relative; overflow: hidden; text-align: center; background: var(--dark-card); color: #fff; border-radius: var(--radius-lg); padding: 72px 28px; box-shadow: var(--shadow-lg); display: grid; place-items: center; gap: 14px; }
.cta-inner::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 12px; background: var(--tape); }
.cta-inner::after { content: ""; position: absolute; inset: auto -20% -60% -20%; height: 80%; background: radial-gradient(closest-side, rgba(255,107,71,.28), transparent); pointer-events: none; }
.cta-inner h2 { font-size: clamp(40px, 6vw, 84px); }
.cta-inner .sub { color: #A3A9B7; margin-top: 0; }
.cta-inner .appstore-badge { margin-top: 12px; position: relative; z-index: 1; }

/* --- Footer ----------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--hairline); padding: 36px 0 48px; color: var(--ink-2); font-size: 14px; }
.footer-inner { display: grid; gap: 18px; text-align: center; place-items: center; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 18px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink); }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer-links a:hover { color: var(--coral); }
.copyright { font-size: 12px; color: var(--ink-3); max-width: 680px; }

/* --- Responsive --------------------------------------------------------------- */
@media (max-width: 1080px) {
  .bento-card, .bento-card.wide, .bento-card.tall { grid-column: span 3; }
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: grid; place-items: center; }
  .lead { margin-inline: auto; }
  .cta-row, .hero-proof { justify-content: center; }
  .hero-devices { height: 600px; margin-top: 10px; }
  .phone { width: 250px; }
  .hero-watch { transform: translateX(-112%) translateY(150px) rotate(-8deg) scale(.85); }
  .section-head { margin-inline: auto; text-align: center; }
  .section-head .set-label { justify-content: center; }
  .sub { margin-inline: auto; }
  .steps, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .programs-grid, .privacy-grid, .watch-grid { grid-template-columns: 1fr; }
  .plan-pro { grid-column: 1 / -1; }
  .watch-stage { height: 520px; max-width: 560px; margin-inline: auto; }
  .watch-row { grid-template-columns: repeat(2, 1fr); }
  .watch-points { text-align: left; }
}
@media (max-width: 640px) {
  .nav-links { position: absolute; top: 70px; left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--hairline); flex-direction: column; align-items: stretch; padding: 12px 20px 20px; gap: 6px; display: none; }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 10px 4px; }
  .nav-toggle { display: flex; }
  .brand-tag { display: none; }
  .hero { padding-top: 40px; }
  .hero h1 { font-size: clamp(52px, 16vw, 72px); }
  .lead { font-size: 17px; }
  .hero-devices { height: 470px; }
  .phone { width: 200px; }
  .phone-front { transform: translateX(-30%) rotate(-3deg); }
  .phone-back { transform: translateX(-92%) translateY(30px) rotate(6deg) scale(.9); }
  .hero-watch { width: 120px; transform: translateX(-125%) translateY(200px) rotate(-8deg); }
  .hero-proof { gap: 18px 22px; justify-content: center; }
  .hero-proof strong { font-size: 40px; }
  .marquee-track li { font-size: 18px; }
  .section { padding: 64px 0; }
  .bento { grid-template-columns: 1fr; }
  .bento-card, .bento-card.wide, .bento-card.tall { grid-column: auto; }
  .bento-card.dark { padding-right: 28px; padding-bottom: 150px; }
  .bento-watch-figure { width: 150px; right: -20px; bottom: -60px; }
  .sarg-says { grid-template-columns: 1fr; }
  .steps, .pricing-grid, .program-cards { grid-template-columns: 1fr; }
  .plan-pro { grid-column: auto; }
  .gallery-track { padding-inline: 20px; }
  .watch-stage { height: 480px; }
  .watch-stage .w1 { width: 190px; left: 50%; margin-left: -95px; top: 56px; }
  .watch-stage .w2 { width: 140px; left: 0; top: 250px; }
  .watch-stage .w3 { width: 140px; left: auto; right: 0; top: 270px; }
  .live-chip { font-size: 15px; padding: 8px 12px; }
  .live-chip.hr { left: 0; top: 0; }
  .live-chip.kcal { right: 0; top: auto; bottom: 0; }
  .watch-row { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
