/* ==========================================================================
   Knurl — marketing site styles
   Dark editorial theme · warm charcoal + coral · Space Grotesk headings
   ========================================================================== */

/* ---- Fonts (self-hosted Space Grotesk) ---- */
@import url("../fonts/space-grotesk.css");

/* ---- Design tokens ---- */
:root {
  --bg: #121110;          /* page background */
  --surface: #1b1917;     /* alternating sections + cards */
  --surface-2: #232019;   /* cards sitting on --surface */
  --ink: #111010;         /* device screens / deep insets */
  --ink-2: #0a0a0a;

  --line: #232019;        /* hairline borders */
  --line-2: #2a2622;
  --line-3: #35302a;
  --line-4: #3a362f;

  --text: #edeae4;        /* body copy on dark */
  --text-strong: #f4f1eb; /* numerals / emphasis */
  --muted: #8c857a;       /* secondary copy */
  --muted-2: #6b655c;     /* tertiary / captions */
  --muted-3: #5c554b;

  --coral: #f2a48f;
  --coral-hi: #f6bda3;
  --coral-ink: #1b1917;   /* text on coral */

  --green: #afc9a3;       /* sequence / gym accent */
  --green-2: #b8d98c;     /* "set logged" toast */
  --green-3: #9ec98a;     /* privacy dots */

  --font-head: "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1120px;
  --maxw-narrow: 760px;
  --maxw-doc: 720px;
  --radius: 26px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--coral); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--coral-hi); }

h1, h2, h3 { font-family: var(--font-head); margin: 0; }

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

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

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--coral); color: var(--coral-ink);
  padding: 10px 16px; border-radius: 10px;
  font: 700 13px/1 var(--font-head); transition: top .2s ease;
}
.skip-link:focus { top: 16px; color: var(--coral-ink); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(18, 17, 16, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  height: 72px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 11px; color: var(--text); }
.brand:hover { color: var(--text); }
.brand__mark { width: 32px; height: 32px; border-radius: 9px; }
.brand__name {
  font-family: var(--font-head); font-weight: 700;
  font-size: 22px; letter-spacing: -.04em;
}
.nav__links { display: flex; align-items: center; gap: 22px; }
.nav__link {
  font: 600 13px/1 var(--font-body); color: var(--muted);
}
.nav__link:hover { color: var(--text); }

.btn-pill {
  display: inline-flex; align-items: center; gap: 8px;
  height: 38px; padding: 0 16px; border-radius: 12px;
  background: var(--coral); color: var(--coral-ink);
  font: 700 13px/1 var(--font-head);
}
.btn-pill:hover { background: var(--coral-hi); color: var(--coral-ink); }

/* ==========================================================================
   Shared section scaffolding
   ========================================================================== */
.section { background: var(--bg); }
.section--alt {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(72px, 9vw, 130px) 24px;
}
.split {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(72px, 9vw, 130px) 24px;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: clamp(40px, 6vw, 88px);
}
.split--reverse { flex-wrap: wrap-reverse; }
.split__text { flex: 1 1 400px; min-width: min(400px, 100%); }
.split__media { flex: 0 1 400px; margin: 0 auto; min-width: min(360px, 100%); }

.kicker {
  font: 600 11px/1 var(--font-body);
  letter-spacing: .16em; color: var(--coral);
  text-transform: uppercase;
}
.kicker--green { color: var(--green); }
.kicker--muted { color: var(--muted); }

.section__title {
  margin: 18px 0 0; font-weight: 700;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: .98; letter-spacing: -.035em;
  max-width: 640px; text-wrap: pretty;
}
.section__lede {
  margin: 20px 0 0; font-size: 17px; line-height: 1.6;
  color: var(--muted); max-width: 560px; text-wrap: pretty;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; overflow: hidden; background: var(--bg); }
.hero__hatch {
  position: absolute; top: 0; right: 0; width: 52%; height: 420px;
  background-image:
    repeating-linear-gradient(45deg, rgba(242,164,143,.06) 0 1px, transparent 1px 11px),
    repeating-linear-gradient(-45deg, rgba(242,164,143,.06) 0 1px, transparent 1px 11px);
  -webkit-mask-image: linear-gradient(160deg, #000 20%, transparent 75%);
  mask-image: linear-gradient(160deg, #000 20%, transparent 75%);
  pointer-events: none;
}
.hero__inner {
  position: relative; max-width: var(--maxw); margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) 24px clamp(64px, 9vw, 120px);
  display: flex; flex-wrap: wrap; align-items: center;
  gap: clamp(40px, 6vw, 88px);
}
.hero__col { flex: 1 1 440px; min-width: min(440px, 100%); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid var(--line-3); border-radius: 999px;
  padding: 8px 14px; font: 600 11px/1 var(--font-body);
  letter-spacing: .12em; color: var(--muted);
}
.eyebrow__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }

.hero__title {
  margin: 26px 0 0; font-weight: 700;
  font-size: clamp(44px, 6.4vw, 84px);
  line-height: .94; letter-spacing: -.04em;
  color: var(--text); text-wrap: pretty;
}
.hero__lede {
  margin: 22px 0 0; font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55; color: var(--muted); max-width: 480px; text-wrap: pretty;
}
.hero__actions {
  margin-top: 34px; display: flex; align-items: center;
  gap: 18px; flex-wrap: wrap;
}
.hero__meta { font: 500 12.5px/1.5 var(--font-body); color: var(--muted-2); }

/* App Store badge */
.badge-appstore {
  display: inline-flex; align-items: center; gap: 11px;
  height: 58px; padding: 0 22px; border-radius: 14px;
  background: #000; border: 1px solid var(--line-4); color: #fff;
}
.badge-appstore:hover { border-color: #5c554b; color: #fff; }
.badge-appstore svg { flex: none; }
.badge-appstore__text { display: flex; flex-direction: column; line-height: 1; text-align: left; }
.badge-appstore__sm { font: 500 11px/1 var(--font-body); opacity: .85; }
.badge-appstore__lg { font: 600 21px/1.15 var(--font-body); letter-spacing: -.01em; }

/* ==========================================================================
   Phone device + Lock-Screen live activity (hero centerpiece)
   ========================================================================== */
.demo { flex: 0 1 auto; margin: 0 auto; }
.phone {
  width: min(372px, 90vw); height: 700px; position: relative;
  background: #050403; border-radius: 48px;
  box-shadow: 0 0 0 2px #2a2622, 0 50px 100px -30px rgba(0,0,0,.85);
  overflow: hidden; cursor: pointer;
}
.phone__notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 112px; height: 32px; background: #000; border-radius: 18px; z-index: 6;
}
.phone__clock { text-align: center; margin-top: 58px; }
.phone__date { font: 500 14px/1 var(--font-body); color: #b4ada2; }
.phone__time { font: 300 78px/1 var(--font-body); color: var(--text-strong); letter-spacing: -.02em; margin-top: 6px; }

/* set-logged toast */
.toast {
  position: absolute; top: 220px; left: 50%;
  display: flex; align-items: center; gap: 7px;
  background: rgba(184,217,140,.14); border: 1px solid rgba(184,217,140,.4);
  border-radius: 12px; padding: 8px 14px; white-space: nowrap;
  transform: translateX(-50%) translateY(-8px); opacity: 0;
  transition: opacity .4s ease, transform .4s ease;
}
.toast__text { font: 600 12px/1 var(--font-body); color: var(--green-2); }
.phone.is-resting .toast { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Live activity card shell */
.la-card {
  position: absolute; left: 14px; right: 14px; bottom: 110px; height: 196px;
  background: var(--ink); border-radius: 28px; overflow: hidden;
}
.la-layer {
  position: absolute; inset: 0; padding: 17px 18px 18px;
  transition: opacity .45s ease, transform .45s ease;
}
.la-set { opacity: 1; transform: translateY(0); }
.la-rest { opacity: 0; transform: translateY(14px); pointer-events: none; }
.phone.is-resting .la-set { opacity: 0; transform: translateY(-14px); pointer-events: none; }
.phone.is-resting .la-rest { opacity: 1; transform: translateY(0); pointer-events: auto; }

.la-head { display: flex; align-items: center; gap: 10px; }
.la-mark { width: 22px; height: 22px; border-radius: 6px; flex: none; }
.la-title { font: 600 15px/1 var(--font-body); color: var(--text); }
.la-setnum {
  margin-left: auto; font-family: var(--font-head); font-weight: 600;
  font-size: 12px; letter-spacing: .06em; color: var(--coral);
}
.la-bignum {
  text-align: center; margin-top: 12px; font-family: var(--font-head);
  font-weight: 700; letter-spacing: -.03em; color: var(--text-strong);
}
.la-bignum .n { font-size: 48px; }
.la-bignum .u { font-size: 20px; color: var(--muted); }

.la-controls { display: flex; gap: 8px; margin-top: 14px; }
.stepper {
  flex: 1; display: flex; align-items: center;
  background: #1d1b19; border-radius: 14px; height: 48px; overflow: hidden;
}
.stepper__btn {
  width: 40px; height: 100%; display: flex; align-items: center;
  justify-content: center; color: var(--text); font-size: 22px; font-weight: 300;
}
.stepper__label {
  flex: 1; text-align: center; font: 600 9px/1 var(--font-body);
  letter-spacing: .08em; color: var(--muted);
}
.check-btn {
  width: 60px; height: 48px; border-radius: 14px; background: var(--coral);
  display: flex; align-items: center; justify-content: center; flex: none;
  cursor: pointer; border: 0; transition: transform .15s ease;
}
.phone.is-tapping .check-btn { transform: scale(.86); }

/* rest layer */
.la-rest-head { display: flex; align-items: center; gap: 10px; }
.la-rest-label { font: 600 13px/1 var(--font-body); letter-spacing: .04em; color: var(--muted); }
.la-rest-row { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.la-count {
  font-family: var(--font-head); font-weight: 700; font-size: 58px;
  line-height: .85; letter-spacing: -.04em; color: var(--text-strong);
}
.la-next { text-align: right; }
.la-next__k { font: 600 10px/1 var(--font-body); letter-spacing: .1em; color: var(--muted); }
.la-next__v { font: 600 14px/1.2 var(--font-body); color: var(--text); margin-top: 6px; }
.la-next__w { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--muted); margin-top: 3px; }
.la-progress {
  display: flex; margin-top: 18px; height: 5px; border-radius: 3px;
  background: #26241f; overflow: hidden;
}
.la-progress__bar { height: 100%; border-radius: 3px; background: var(--coral); width: 100%; }
.phone.is-resting .la-progress__bar { width: 38%; transition: width 4s linear; }

/* phone bottom nav */
.phone__nav {
  position: absolute; left: 0; right: 0; bottom: 38px;
  display: flex; align-items: center; justify-content: space-between; padding: 0 42px;
}
.phone__nav-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(237,234,228,.14);
  display: flex; align-items: center; justify-content: center;
}
.phone__home { width: 124px; height: 5px; border-radius: 3px; background: var(--text-strong); }

.demo__caption {
  text-align: center; margin-top: 16px;
  font: 500 12px/1.5 var(--font-body); color: var(--muted-2);
}

/* ==========================================================================
   Logging surfaces grid
   ========================================================================== */
.surfaces {
  margin-top: clamp(44px, 5vw, 64px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px;
}
.surface-card {
  background: var(--surface-2); border: 1px solid var(--line-2);
  border-radius: var(--radius); padding: 26px 24px;
  display: flex; flex-direction: column; gap: 20px;
}
.surface-card__title {
  font-family: var(--font-head); font-weight: 700;
  font-size: 21px; letter-spacing: -.02em;
}
.surface-card__body { margin: 9px 0 0; font-size: 14px; line-height: 1.55; color: var(--muted); text-wrap: pretty; }

/* mini lock-screen mock */
.mini-ls { background: var(--ink); border-radius: 20px; padding: 14px 15px; }
.mini-ls__head { display: flex; align-items: center; gap: 8px; }
.mini-ls__mark { width: 17px; height: 17px; border-radius: 5px; }
.mini-ls__name { font: 600 12px/1 var(--font-body); color: var(--text); }
.mini-ls__set {
  margin-left: auto; font-family: var(--font-head); font-weight: 600;
  font-size: 10px; letter-spacing: .05em; color: var(--coral);
}
.mini-ls__big {
  text-align: center; margin-top: 9px; font-family: var(--font-head);
  font-weight: 700; letter-spacing: -.03em; color: var(--text-strong);
}
.mini-ls__big .n { font-size: 29px; }
.mini-ls__big .u { font-size: 13px; color: var(--muted); }
.mini-ls__controls { display: flex; gap: 5px; margin-top: 10px; }
.mini-pill {
  flex: 1; height: 32px; border-radius: 9px; background: #1d1b19;
  display: flex; align-items: center; justify-content: center;
  font: 600 8px/1 var(--font-body); letter-spacing: .06em; color: var(--muted);
}
.mini-check {
  width: 40px; height: 32px; border-radius: 9px; background: var(--coral);
  display: flex; align-items: center; justify-content: center;
}

/* dynamic island mock */
.mini-di {
  display: flex; flex-direction: column; gap: 12px; align-items: center;
  justify-content: center; background: var(--ink); border-radius: 20px;
  padding: 20px 15px; min-height: 132px;
}
.di-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: #000; border-radius: 20px; padding: 9px 16px;
}
.di-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--coral); }
.di-val { font-family: var(--font-head); font-weight: 600; font-size: 13px; color: var(--text-strong); }
.di-gap { width: 34px; }
.di-controls {
  display: inline-flex; align-items: center; gap: 6px;
  background: #000; border-radius: 16px; padding: 8px 10px;
}
.di-step {
  height: 26px; width: 34px; border-radius: 8px; background: #1a1a1a;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text); font-size: 14px; font-weight: 300;
}
.di-check {
  height: 26px; width: 44px; border-radius: 8px; background: var(--coral);
  display: inline-flex; align-items: center; justify-content: center;
}

/* home widget mock */
.mini-widget {
  background: var(--ink-2); border-radius: 20px; padding: 15px 16px;
  min-height: 132px; display: flex; flex-direction: column;
}
.widget-top { display: flex; align-items: center; justify-content: space-between; }
.widget-head { display: flex; align-items: center; gap: 8px; }
.widget-mark { width: 16px; height: 16px; border-radius: 5px; }
.widget-name { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--text); }
.widget-today { font: 600 10px/1 var(--font-body); color: var(--muted-2); }
.widget-play {
  width: 28px; height: 28px; border-radius: 50%; background: var(--coral);
  display: flex; align-items: center; justify-content: center;
}
.widget-list { margin-top: 10px; font: 500 11.5px/1.4 var(--font-body); color: #b4ada2; }
.widget-list .dim { color: var(--muted-2); }
.widget-foot {
  margin-top: auto; display: flex; align-items: center; gap: 7px;
  padding-top: 10px; border-top: 1px solid #1c1a18;
}
.widget-foot__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--coral); }
.widget-foot__k { font: 600 9.5px/1 var(--font-body); letter-spacing: .06em; color: var(--muted); }
.widget-foot__v { font-family: var(--font-head); font-weight: 600; font-size: 12px; color: var(--text); margin-left: auto; }

/* apple watch mock */
.mini-watch-wrap {
  display: flex; justify-content: center; background: var(--ink);
  border-radius: 20px; padding: 16px; min-height: 132px; align-items: center;
}
.watch {
  width: 132px; height: 160px; background: #000; border-radius: 34px;
  box-shadow: 0 0 0 4px #1c1a17, 0 0 0 6px #322d27; overflow: hidden;
  position: relative; flex: none;
}
.watch__screen { position: absolute; inset: 0; padding: 12px 13px 11px; display: flex; flex-direction: column; }
.watch__top { display: flex; align-items: center; justify-content: space-between; }
.watch__name { font: 600 9px/1 var(--font-body); color: #b4ada2; }
.watch__hr { display: inline-flex; align-items: center; gap: 3px; background: #1a1a1a; border-radius: 6px; padding: 2.5px 5px; }
.watch__hr-dot { width: 4px; height: 4px; border-radius: 50%; background: #e08e72; }
.watch__hr-v { font-family: var(--font-head); font-weight: 600; font-size: 8px; color: var(--text); }
.watch__set { font-family: var(--font-head); font-weight: 600; font-size: 8px; letter-spacing: .05em; color: var(--coral); margin-top: 4px; }
.watch__weight {
  margin-top: 7px; align-self: flex-start; display: flex; align-items: baseline; gap: 3px;
  padding: 3px 8px 4px; border-radius: 10px; background: rgba(242,164,143,.12);
  box-shadow: inset 0 0 0 1.2px var(--coral);
}
.watch__weight .n { font-family: var(--font-head); font-weight: 700; font-size: 32px; line-height: .8; letter-spacing: -.04em; color: var(--text-strong); }
.watch__weight .u { font-family: var(--font-head); font-weight: 600; font-size: 9px; color: var(--muted); }
.watch__check {
  margin-top: auto; height: 30px; border-radius: 15px; background: var(--coral);
  display: flex; align-items: center; justify-content: center;
}

/* ==========================================================================
   Sequence-based today section
   ========================================================================== */
.note-row {
  margin-top: 24px; display: flex; align-items: center; gap: 10px;
  font: 500 14px/1.4 var(--font-body); color: var(--muted-2);
}
.note-row__icon { font-size: 18px; color: var(--green); }

.program-card {
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: 30px; padding: 24px 22px;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.7);
}
.program-card__k { font: 600 11px/1 var(--font-body); letter-spacing: .14em; color: var(--muted); }
.program-card__day {
  font-family: var(--font-head); font-weight: 700; font-size: 56px;
  line-height: .9; letter-spacing: -.035em; color: var(--green); margin-top: 12px;
}
.program-card__meta { font-size: 13px; font-weight: 500; color: var(--muted); margin-top: 8px; }
.program-card__actions { display: flex; gap: 10px; margin-top: 20px; }
.btn-solid {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 9px;
  height: 52px; border-radius: 16px; background: var(--coral); color: var(--coral-ink);
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
}
.btn-ghost {
  flex: none; padding: 0 24px; display: flex; align-items: center; height: 52px;
  border-radius: 16px; border: 1.5px solid var(--line-4); color: var(--muted);
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
}
.stat-row {
  margin-top: 16px; display: flex; align-items: center; justify-content: space-between;
  background: var(--surface-2); border: 1px solid var(--line-2);
  border-radius: 16px; padding: 13px 16px;
}
.stat-row__k { font: 600 10px/1 var(--font-body); letter-spacing: .11em; color: var(--muted); }
.stat-row__v { font-family: var(--font-head); font-weight: 700; font-size: 24px; letter-spacing: -.02em; color: var(--text); margin-top: 5px; }
.stat-row__v .u { font-size: 12px; color: var(--muted); }
.stat-row__delta { font: 600 11px/1 var(--font-body); color: var(--green); margin-top: 3px; }

/* ==========================================================================
   Track section
   ========================================================================== */
.track-stack { flex: 0 1 420px; margin: 0 auto; min-width: min(360px, 100%); display: flex; flex-direction: column; gap: 14px; }
.track-hero {
  background: var(--coral); border-radius: 24px; padding: 20px 22px;
  color: var(--coral-ink); position: relative; overflow: hidden;
}
.track-hero__hatch {
  position: absolute; top: 0; right: 0; width: 110px; height: 110px;
  background-image:
    repeating-linear-gradient(45deg, rgba(27,25,23,.10) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(-45deg, rgba(27,25,23,.10) 0 1px, transparent 1px 7px);
}
.track-hero__top { display: flex; align-items: center; justify-content: space-between; position: relative; }
.track-hero__part { font: 700 14px/1 var(--font-body); }
.track-hero__vol { font: 600 11px/1 var(--font-body); color: rgba(27,25,23,.62); }
.track-hero__mid { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 10px; position: relative; }
.track-hero__num { display: flex; align-items: baseline; gap: 8px; }
.track-hero__num .n { font-family: var(--font-head); font-weight: 700; font-size: 46px; line-height: .8; letter-spacing: -.03em; }
.track-hero__num .u { font: 600 13px/1 var(--font-body); }
.track-hero__delta { margin-top: 8px; font: 700 12px/1 var(--font-body); position: relative; }
.track-hero__delta .dim { font-weight: 500; color: rgba(27,25,23,.6); }

.track-cards { display: flex; gap: 14px; flex-wrap: wrap; }
.ring-card {
  flex: 1 1 180px; background: var(--surface-2); border: 1px solid var(--line-2);
  border-radius: 24px; padding: 18px 20px; display: flex; align-items: center; gap: 18px;
}
.ring { position: relative; width: 84px; height: 84px; flex: none; }
.ring__label { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.ring__pct { font-family: var(--font-head); font-weight: 700; font-size: 22px; letter-spacing: -.03em; color: var(--text); }
.ring__pct .u { font-size: 12px; color: var(--muted); }
.ring-card__title { font: 600 14px/1.1 var(--font-body); color: var(--text); }
.ring-card__meta { font: 500 12px/1.4 var(--font-body); color: var(--muted); margin-top: 5px; }
.ring-card__meta .hl { color: var(--coral); font-weight: 600; }

.pr-card { flex: 1 1 140px; background: var(--surface-2); border: 1px solid var(--line-2); border-radius: 24px; padding: 18px 20px; }
.pr-card__k { font: 600 10px/1 var(--font-body); letter-spacing: .1em; color: var(--muted); }
.pr-card__v { font-family: var(--font-head); font-weight: 700; font-size: 32px; letter-spacing: -.02em; color: var(--coral); margin-top: 10px; }
.pr-card__v .u { font-size: 14px; color: var(--muted); }
.pr-card__meta { font: 500 12px/1.4 var(--font-body); color: var(--muted); margin-top: 4px; }

/* ==========================================================================
   Private by design
   ========================================================================== */
.private { position: relative; overflow: hidden; }
.private__hatch {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(45deg, rgba(237,234,228,.025) 0 1px, transparent 1px 10px),
    repeating-linear-gradient(-45deg, rgba(237,234,228,.025) 0 1px, transparent 1px 10px);
}
.private__inner {
  position: relative; max-width: 820px; margin: 0 auto;
  padding: clamp(80px, 10vw, 150px) 24px; text-align: center;
}
.private__title {
  margin: 20px 0 0; font-weight: 700; font-size: clamp(36px, 5vw, 64px);
  line-height: .98; letter-spacing: -.035em; text-wrap: pretty;
}
.private__lede {
  margin: 22px auto 0; font-size: 17px; line-height: 1.6;
  color: var(--muted); max-width: 560px; text-wrap: pretty;
}
.chips { margin-top: 40px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.chip {
  display: flex; align-items: center; gap: 9px;
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: 14px; padding: 13px 18px;
  font: 600 13px/1 var(--font-body); color: #b4ada2;
}
.chip__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-3); }
.private__link { margin-top: 26px; font: 600 14px/1 var(--font-body); }

/* ==========================================================================
   Start at the gym
   ========================================================================== */
.gym-card {
  background: var(--ink); border-radius: 28px; padding: 18px 19px;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.7); border: 1px solid var(--line);
}
.gym-card__head { display: flex; align-items: center; gap: 10px; }
.gym-card__mark { width: 22px; height: 22px; border-radius: 6px; flex: none; }
.gym-card__title { font: 600 13px/1 var(--font-body); color: var(--text); }
.gym-card__loc { margin-left: auto; display: flex; align-items: center; gap: 5px; }
.gym-card__loc span { font: 500 11px/1 var(--font-body); color: var(--muted); }
.gym-card__ready { margin-top: 14px; }
.gym-card__k { font: 600 10px/1 var(--font-body); letter-spacing: .1em; color: var(--muted); }
.gym-card__day { font-family: var(--font-head); font-weight: 700; font-size: 40px; line-height: .9; letter-spacing: -.03em; color: var(--green); margin-top: 8px; }
.gym-card__meta { font: 500 12px/1 var(--font-body); color: var(--muted); margin-top: 6px; }
.gym-card__actions { display: flex; gap: 9px; margin-top: 18px; }
.gym-card__start {
  flex: 1; height: 50px; border-radius: 15px; background: var(--green); color: var(--coral-ink);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 16px;
}
.gym-card__later {
  flex: none; padding: 0 20px; height: 50px; border-radius: 15px;
  background: #1d1b19; color: var(--muted); display: flex; align-items: center;
  font: 600 14px/1 var(--font-body);
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq__title {
  margin: 0; font-weight: 700; font-size: clamp(32px, 4vw, 50px); letter-spacing: -.035em;
}
.faq { margin-top: 36px; display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; margin: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; cursor: pointer; color: var(--text);
  font: 600 16px/1.35 var(--font-body); text-wrap: pretty;
}
.faq__q:hover { color: var(--text); }
.faq__chev {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s ease;
}
.faq__q[aria-expanded="true"] .faq__chev { transform: rotate(180deg); }
.faq__a {
  overflow: hidden; max-height: 0; opacity: 0;
  transition: max-height .35s ease, opacity .35s ease;
}
.faq__q[aria-expanded="true"] + .faq__a { max-height: 400px; opacity: 1; }
.faq__a p { margin: 0; padding: 0 40px 22px 4px; font-size: 15px; line-height: 1.65; color: var(--muted); text-wrap: pretty; }
.faq__more { margin-top: 28px; font: 500 14px/1.5 var(--font-body); color: var(--muted-2); }

/* ==========================================================================
   Footer CTA + footer
   ========================================================================== */
.footer { background: var(--surface); border-top: 1px solid var(--line); }
.footer-cta {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(64px, 8vw, 110px) 24px 0; text-align: center;
}
.footer-cta__mark {
  width: 64px; height: 64px; border-radius: 16px; display: inline-block;
  box-shadow: 0 24px 48px -16px rgba(0,0,0,.6);
}
.footer-cta__title {
  margin: 26px 0 0; font-weight: 700; font-size: clamp(32px, 4.4vw, 54px);
  letter-spacing: -.035em; line-height: 1; text-wrap: pretty;
}
.footer-cta__actions { margin-top: 30px; display: flex; justify-content: center; }

.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(56px, 7vw, 90px) 24px 36px;
}
.footer__rule { height: 1px; background-image: repeating-linear-gradient(90deg, var(--line-4) 0 6px, transparent 6px 12px); }
.footer__row {
  margin-top: 28px; display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
}
.footer__brand { display: flex; align-items: center; gap: 10px; }
.footer__brand-mark { width: 22px; height: 22px; border-radius: 6px; }
.footer__brand-name { font-family: var(--font-head); font-weight: 700; font-size: 17px; letter-spacing: -.03em; color: var(--muted); }
.footer__links { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer__link { font: 600 13px/1 var(--font-body); color: var(--muted); }
.footer__link:hover { color: var(--text); }
.footer__copy { font: 500 12px/1 var(--font-body); color: var(--muted-3); }

/* ==========================================================================
   Document pages (privacy / support)
   ========================================================================== */
.doc-nav__inner { max-width: var(--maxw-doc); }
.doc-back { font: 600 13px/1 var(--font-body); color: var(--muted); }
.doc-back:hover { color: var(--text); }

.doc {
  max-width: var(--maxw-doc); margin: 0 auto;
  padding: clamp(56px, 7vw, 88px) 24px clamp(72px, 9vw, 120px);
}
.doc__title {
  margin: 16px 0 0; font-weight: 700; font-size: clamp(38px, 5.5vw, 56px);
  line-height: .98; letter-spacing: -.035em;
}
.doc__updated { margin-top: 14px; font: 500 13px/1 var(--font-body); color: var(--muted-2); }

.callout {
  margin-top: 36px; background: var(--surface); border: 1px solid var(--line-2);
  border-radius: 22px; padding: 24px 26px;
}
.callout__k { font: 600 11px/1 var(--font-body); letter-spacing: .13em; color: var(--coral); }
.callout__body { margin: 12px 0 0; font-size: 16px; line-height: 1.65; color: #b4ada2; text-wrap: pretty; }

.callout--contact { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.callout__icon {
  width: 46px; height: 46px; border-radius: 14px;
  background: rgba(242,164,143,.12); border: 1px solid rgba(242,164,143,.3);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.callout__text { flex: 1; min-width: 220px; }
.callout__title { font: 600 15px/1.3 var(--font-body); color: var(--text); }
.callout__sub { font: 500 13px/1.5 var(--font-body); color: var(--muted); margin-top: 4px; }
.callout__btn {
  display: inline-flex; align-items: center; height: 44px; padding: 0 18px;
  border-radius: 13px; background: var(--coral); color: var(--coral-ink);
  font: 700 14px/1 var(--font-head);
}
.callout__btn:hover { background: var(--coral-hi); color: var(--coral-ink); }

.prose { margin-top: 16px; font-size: 16.5px; line-height: 1.7; color: #b4ada2; }
.prose h2 {
  margin: 44px 0 0; font-weight: 700; font-size: 26px;
  letter-spacing: -.02em; color: var(--text);
}
.prose h3 {
  margin: 30px 0 0; font-family: var(--font-head); font-weight: 600;
  font-size: 19px; letter-spacing: -.01em; color: var(--text);
}
.prose p { margin: 14px 0 0; text-wrap: pretty; }
.prose ul { margin: 14px 0 0; padding-left: 22px; }
.prose li { margin: 7px 0 0; text-wrap: pretty; }
.prose li::marker { color: var(--coral); }
.prose strong { color: var(--text); font-weight: 600; }
.prose em { color: var(--muted); font-style: normal; }
.prose > *:first-child { margin-top: 0; }

.doc__section-title {
  margin: 52px 0 0; font-family: var(--font-head); font-weight: 700;
  font-size: 26px; letter-spacing: -.02em;
}
.doc__aside { margin-top: 36px; font: 500 14px/1.6 var(--font-body); color: var(--muted-2); }
.doc__aside a { font-weight: 600; }

.doc-footer { border-top: 1px solid var(--line); background: var(--surface); }
.doc-footer__inner {
  max-width: var(--maxw-doc); margin: 0 auto; padding: 30px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.doc-footer__links { display: flex; align-items: center; gap: 22px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 860px) {
  .nav__links { gap: 16px; }
  .nav__link--hide-sm { display: none; }
  .phone { height: 640px; }
}

@media (max-width: 560px) {
  .nav__inner { padding: 0 18px; }
  .nav__links { gap: 12px; }
  .nav__link { font-size: 12px; }
  .btn-pill { padding: 0 13px; height: 36px; }
  .hero__actions { gap: 14px; }
  .footer__row { justify-content: center; text-align: center; }
  .footer__copy { flex-basis: 100%; }
}

/* ==========================================================================
   Reduced motion — fall back to the static end state, no transitions
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
