:root {
  --paper: #f3eee6;
  --paper-2: #ebe4d8;
  --ink: #2b2926;
  --ink-soft: #5c574f;
  --muted: #7a746b;
  --line: rgba(43, 41, 38, 0.12);
  --white: #fffcf7;
  --cyan: #19b4e0;
  --blue: #247dff;        /* logo blue */
  --blue-deep: #1a5dbf;   /* buttons: white text passes AA on this one */
  --blue-soft: #a9cdff;   /* blue text on navy */
  --blue-tint: #e6efff;
  --navy: #0b194d;
  --navy-ink: #060b22;
  --footer: #2a2e32;
  --footer-text: #c5c0b8;
  --max: 1120px;
  --focus: #1a5dbf;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; }
[hidden] { display: none !important; }

/* Focus: one visible ring everywhere, keyboard only */
:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 6px;
}
footer :focus-visible, .hero :focus-visible { outline-color: #fffcf7; }
.btn:focus-visible, .pill:focus-visible { border-radius: 999px; }

.skip {
  position: absolute;
  left: 16px;
  top: -64px;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: top .15s ease;
}
.skip:focus { top: 16px; }

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

/* Nav */
.nav {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.nav-inner {
  pointer-events: auto;
  position: relative;
  width: min(1180px, calc(100% - 32px));
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(243, 238, 230, 0.78);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(43,41,38,.08);
  border-radius: 999px;
  padding: 0 12px 0 26px;
}
.brand { display: inline-flex; align-items: center; justify-self: start; }
.brand img { height: 24px; width: auto; }
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-links a { padding: 8px 0; transition: color .15s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { justify-self: end; display: flex; align-items: center; gap: 6px; }
.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  background: none;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
}
.menu-btn span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .2s ease, top .2s ease;
}
.menu-btn span:nth-child(1) { top: 16px; }
.menu-btn span:nth-child(2) { top: 23px; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { top: 19.5px; transform: rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { top: 19.5px; transform: rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0 18px;
  height: 40px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { height: 48px; padding: 0 26px; font-size: 15px; }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #1d1b19; }
.btn-blue { background: var(--blue-deep); color: #fff; box-shadow: 0 10px 30px -10px rgba(36,125,255,.7); }
.btn-blue:hover { background: #1f6ae0; }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.28); }
.btn-ghost:hover { background: rgba(255,255,255,.16); }
.btn-white { background: #fff; color: var(--navy); }
.btn-line { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
.btn-line:hover { box-shadow: inset 0 0 0 1px var(--ink); }
.nav .btn-dark { background: var(--blue-deep); }
.nav .btn-dark:hover { background: #1f6ae0; }
.nav-links a:hover { color: var(--blue-deep); }
.nav.scrolled .nav-inner { background: rgba(243,238,230,.92); box-shadow: 0 12px 32px -18px rgba(11,25,77,.45); }
.nav-inner { transition: box-shadow .25s ease, background .25s ease; }
.chip.chip-dark { background: rgba(255,255,255,.08); color: #dfe9ff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.18); }
.chip {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

/* Hero: navy product stage */
.hero {
  position: relative;
  margin: 18px auto 0;
  width: min(1320px, calc(100% - 24px));
  border-radius: 28px;
  overflow: hidden;
  background: radial-gradient(120% 140% at 80% 10%, #14309a 0%, var(--navy) 38%, var(--navy-ink) 100%);
  color: #f4f7ff;
  isolation: isolate;
}
.hero-bg, .band-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; }
.hero .g1 { width: 620px; height: 620px; right: -60px; top: -120px; background: var(--blue); animation: drift 14s ease-in-out infinite alternate; }
.hero .g2 { width: 420px; height: 420px; left: 30%; bottom: -260px; background: #5b3df0; opacity: .35; animation: drift 18s ease-in-out infinite alternate-reverse; }
.grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(169,205,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169,205,255,.07) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(80% 80% at 70% 40%, #000 0%, transparent 75%);
  mask-image: radial-gradient(80% 80% at 70% 40%, #000 0%, transparent 75%);
}
@keyframes drift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-60px,40px,0) scale(1.15); } }
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: min(82vh, 780px);
  padding: 0 64px;
}
.hero-copy { position: relative; z-index: 1; max-width: 560px; padding: 72px 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.hero-stage { position: relative; height: 100%; min-height: 640px; display: flex; align-items: flex-end; justify-content: center; }
.device {
  --w: 300px;
  width: var(--w);
  padding: calc(var(--w) * .026);
  border-radius: 11.2% / 5.5%;
  background: #0b0b0d;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.14),
    0 1px 0 1px rgba(6,11,34,.3),
    0 50px 80px -30px rgba(6,11,34,.65);
}
.device-screen {
  position: relative;
  aspect-ratio: 900 / 1884;
  border-radius: 9% / 4.3%; /* scales with the phone. The app's clock sits tight to the corner, so a rounder screen clips it */
  overflow: hidden;
  background: #f6f6f6;
}
.device-screen img { display: block; width: 100%; height: auto; }
.device-hero { --w: 330px; margin-bottom: -70px; animation: rise 1s cubic-bezier(.2,.7,.2,1) both .1s; }
.float {
  position: absolute;
  width: 270px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 30px 60px -20px rgba(3,8,30,.7), 0 0 0 1px rgba(255,255,255,.5);
  background: #fafcfe;
}
.f1 { right: -8px; top: 96px; animation: rise .9s cubic-bezier(.2,.7,.2,1) both .45s, bob 7s ease-in-out infinite 1.4s; }
.f2 { left: -120px; top: 380px; animation: rise .9s cubic-bezier(.2,.7,.2,1) both .6s, bob 8s ease-in-out infinite 1.8s reverse; }
.f3 { right: 8px; bottom: 56px; width: 230px; animation: rise .9s cubic-bezier(.2,.7,.2,1) both .75s, bob 9s ease-in-out infinite 2.2s; }
@keyframes rise { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bob { 0%,100% { translate: 0 0; } 50% { translate: 0 -12px; } }
.eyebrow {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 16px;
}
.hero-copy .eyebrow, .band .eyebrow { color: var(--blue-soft); }
h1, h2, .serif {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.04;
  text-wrap: balance;
}
h1 { font-size: clamp(44px, 6.4vw, 84px); }
h2 { font-size: clamp(34px, 5vw, 68px); color: var(--ink); }
.hero-copy h1 { color: #fff; font-size: clamp(44px, 5.4vw, 76px); }
.hero-copy > p:not(.eyebrow) {
  margin: 22px 0 28px;
  max-width: 420px;
  font-size: 18px;
  color: rgba(223,233,255,.86);
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  justify-content: center;
  padding: 28px 24px 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.section { padding: 110px 0 40px; }
.section-tight { padding-top: 24px; }
.section-head { margin-bottom: 56px; }
.center { text-align: center; }
.lede {
  margin: 18px auto 0;
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 18px;
  text-wrap: pretty;
}
.lede-left { margin-left: 0; text-align: left; }
.source {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}

/* Feature showcase: tabs drive the phone */
.showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 56px;
  align-items: center;
  margin-top: 64px;
}
.tabs { display: grid; gap: 6px; }
.tab {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 4px 12px;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 20px;
  padding: 18px 22px;
  cursor: pointer;
  overflow: hidden;
  transition: background .25s ease, box-shadow .25s ease;
}
.tab:hover { background: rgba(255,252,247,.6); }
.tab-num { font-size: 12px; font-weight: 700; letter-spacing: .08em; color: var(--muted); padding-top: 6px; font-variant-numeric: tabular-nums; }
.tab-title { display: block; font-family: "Newsreader", serif; font-size: 26px; line-height: 1.15; letter-spacing: -0.01em; color: var(--ink-soft); transition: color .25s ease; }
.tab-body { display: block; overflow: hidden; color: var(--ink-soft); font-size: 15px; }
.tab[aria-selected="true"] { background: var(--white); box-shadow: 0 20px 40px -28px rgba(11,25,77,.35), inset 0 0 0 1px var(--line); }
.tab[aria-selected="true"] .tab-num { color: var(--blue-deep); }
.tab[aria-selected="true"] .tab-title { color: var(--ink); }
.tab-text { display: block; min-width: 0; }
.tab .tab-body { max-height: 0; opacity: 0; transition: max-height .4s ease, opacity .3s ease, margin .3s ease; }
.tab[aria-selected="true"] .tab-body { max-height: 120px; opacity: 1; margin-top: 6px; }
.tab-progress { position: absolute; left: 22px; right: 22px; bottom: 0; height: 2px; background: transparent; transform-origin: left; }
.tab[aria-selected="true"] .tab-progress { background: linear-gradient(90deg, var(--blue), var(--blue-deep)); transform: scaleX(0); }
.showcase.playing .tab[aria-selected="true"] .tab-progress { animation: progress var(--dwell, 6s) linear forwards; }
@keyframes progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.showcase-stage {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 56px 24px;
  border-radius: 36px;
  background: linear-gradient(160deg, #102268 0%, var(--navy) 45%, var(--navy-ink) 100%);
  overflow: hidden;
  isolation: isolate;
}
.stage-glow { position: absolute; z-index: -1; width: 460px; height: 460px; left: 50%; top: 40%; translate: -50% -50%; border-radius: 50%; background: var(--blue); filter: blur(90px); opacity: .55; animation: pulse 6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: .4; scale: .92; } 50% { opacity: .65; scale: 1.06; } }
.device-lg { --w: 310px; }
.poster { display: none; width: min(100%, 440px); height: auto; border-radius: 24px; box-shadow: 0 50px 80px -30px rgba(3,8,30,.7), inset 0 0 0 1px rgba(255,255,255,.14); animation: rise .7s cubic-bezier(.2,.7,.2,1) both; }
.showcase-stage.is-poster .poster.is-active { display: block; }
.showcase-stage.is-poster .device { display: none; }
.shot { position: absolute; left: 0; top: 0; opacity: 0; transform: translateY(18px) scale(.985); transition: opacity .5s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.shot.is-active { opacity: 1; transform: none; }
.shot.is-active.pan { animation: pan 9s ease-in-out 1s infinite alternate; }
@keyframes pan { 0%,12% { transform: translateY(0); } 88%,100% { transform: translateY(var(--pan, 0px)); } }

/* Bento */
.bento {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 64px;
}
.bento-card {
  --mx: 50%; --my: 0%;
  position: relative;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-height: 380px;
  padding: 28px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.bento-card::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(420px circle at var(--mx) var(--my), rgba(36,125,255,.14), transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: inset 0 0 0 1px rgba(36,125,255,.35), 0 30px 50px -30px rgba(11,25,77,.4); }
.bento-card:hover::before { opacity: 1; }
.b-3 { grid-column: span 3; }
.b-3.b-photo, .b-3.b-blue { min-height: 340px; }
.b-coach { grid-column: span 4; grid-row: span 2; flex-direction: row; align-items: stretch; color: #f4f7ff; background: radial-gradient(120% 120% at 90% 0%, #1b3fc0 0%, var(--navy) 45%, var(--navy-ink) 100%); box-shadow: none; }
.b-coach .bento-copy { max-width: 340px; align-self: flex-start; }
.bento-card h3 { font-family: "Newsreader", serif; font-weight: 400; font-size: 28px; line-height: 1.12; letter-spacing: -0.02em; margin: 16px 0 10px; text-wrap: balance; }
.b-coach h3 { font-size: clamp(30px, 3vw, 42px); }
.bento-card p { font-size: 15px; color: var(--ink-soft); }
.b-coach p, .b-dark p, .b-blue p { color: rgba(223,233,255,.82); }
.bento-card .tag { background: var(--blue-tint); color: var(--blue-deep); }
.b-coach .tag, .b-dark .tag, .b-blue .tag { background: rgba(169,205,255,.16); color: var(--blue-soft); }
.bento-art { border-radius: 14px; overflow: hidden; background: #fafcfe; box-shadow: 0 0 0 1px rgba(11,25,77,.06), 0 18px 30px -22px rgba(11,25,77,.35); }
.bento-art img { width: 100%; height: auto; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.bento-card:hover .bento-art img { transform: scale(1.03); }
.b-dark { background: var(--navy-ink); color: #f4f7ff; box-shadow: none; }
.b-dark .bento-art { background: transparent; box-shadow: inset 0 0 0 1px rgba(169,205,255,.16); }
.b-blue { background: linear-gradient(150deg, var(--blue) 0%, var(--blue-deep) 55%, #123f8a 100%); color: #fff; box-shadow: none; justify-content: flex-end; }
.b-blue p { color: rgba(255,255,255,.88); }
.b-blue .tag { background: rgba(255,255,255,.18); color: #fff; }
.b-blue::after { content: ""; position: absolute; z-index: -1; right: -60px; top: -60px; width: 260px; height: 260px; border-radius: 50%; box-shadow: 0 0 0 40px rgba(255,255,255,.06), 0 0 0 90px rgba(255,255,255,.04), 0 0 0 150px rgba(255,255,255,.03); }
.b-photo { padding: 0; color: #fff; justify-content: flex-end; box-shadow: none; }
.b-photo .bento-copy { position: relative; z-index: 1; padding: 28px; background: linear-gradient(180deg, rgba(6,11,34,0) 0%, rgba(6,11,34,.82) 60%); }
.b-photo p { color: rgba(255,255,255,.9); }
.b-photo .tag { background: rgba(255,255,255,.2); color: #fff; }
.bento-photo { position: absolute; inset: 0; z-index: 0; }
.bento-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.b-photo:hover .bento-photo img { transform: scale(1.05); }
.bento-device { flex: none; align-self: flex-end; margin: 0 12px -120px 0; }
.bento-device .device { --w: 310px; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.b-coach:hover .bento-device .device { transform: translateY(-14px); }

/* Navy data band */
.band {
  position: relative;
  margin: 110px auto 0;
  width: min(1320px, calc(100% - 24px));
  padding: 110px 0 72px;
  border-radius: 28px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-ink) 100%);
  color: #f4f7ff;
  overflow: hidden;
  isolation: isolate;
}
.band h2 { color: #fff; font-size: clamp(34px, 4.4vw, 60px); }
.band .lede { color: rgba(223,233,255,.8); }
.band .g1 { width: 700px; height: 500px; left: 50%; top: -300px; translate: -50% 0; background: var(--blue); opacity: .4; }
.band .grid { -webkit-mask-image: radial-gradient(70% 70% at 50% 0%, #000 0%, transparent 80%); mask-image: radial-gradient(70% 70% at 50% 0%, #000 0%, transparent 80%); }
.gauges { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 64px; }
.gauge { padding: 32px 28px; border-radius: 24px; background: rgba(255,255,255,.04); box-shadow: inset 0 0 0 1px rgba(169,205,255,.14); text-align: center; transition: background .3s ease, box-shadow .3s ease; }
.gauge:hover { background: rgba(36,125,255,.10); box-shadow: inset 0 0 0 1px rgba(169,205,255,.35); }
.gauge-ring { position: relative; width: 148px; height: 148px; margin: 0 auto 22px; }
.gauge-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); overflow: visible; }
.g-track { fill: none; stroke: rgba(169,205,255,.14); stroke-width: 7; }
.g-value { fill: none; stroke: var(--blue); stroke-width: 7; stroke-linecap: round; stroke-dasharray: 326.73; stroke-dashoffset: 326.73; filter: drop-shadow(0 0 8px rgba(36,125,255,.9)); transition: stroke-dashoffset 1.6s cubic-bezier(.2,.7,.2,1); }
.gauge-num { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.gauge-num .count { font-size: 32px; font-weight: 700; letter-spacing: -0.02em; line-height: 1; font-variant-numeric: tabular-nums; color: #fff; }
.gauge-num .g-unit { margin-top: 6px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--blue-soft); }
.gauge h3 { font-family: "Newsreader", serif; font-weight: 400; font-size: 24px; letter-spacing: -0.01em; margin-bottom: 8px; color: #fff; }
.gauge p { font-size: 14px; color: rgba(223,233,255,.74); max-width: 280px; margin: 0 auto; }
.band-note { margin-top: 32px; text-align: center; font-size: 12px; color: rgba(169,205,255,.6); }

/* Marquee */
.marquee-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.marquee { display: flex; gap: 20px; overflow: hidden; padding: 8px 0 40px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { flex: none; display: flex; gap: 20px; animation: marquee 60s linear infinite; }
.marquee-track li { flex: none; width: 250px; border-radius: 24px; overflow: hidden; box-shadow: 0 30px 40px -28px rgba(11,25,77,.55); transition: transform .4s cubic-bezier(.2,.7,.2,1); }
.marquee-track li:hover { transform: translateY(-8px); }
.marquee:hover .marquee-track, .marquee.paused .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(calc(-100% - 20px)); } }

/* Scroll reveal (only when JS is running) */
.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .9s cubic-bezier(.2,.7,.2,1); transition-delay: var(--d, 0ms); }
.js [data-reveal].in { opacity: 1; transform: none; }
.js .bento-card[data-reveal].in { transition: opacity .8s ease var(--d, 0ms), transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease; }

.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin: 64px auto 0;
  max-width: 1000px;
}
.trio h3 {
  font-family: "Newsreader", serif;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 400;
  margin-bottom: 10px;
}
.trio p { color: var(--ink-soft); font-size: 15px; }

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
.split-photo {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 50px 80px -40px rgba(6,11,34,.6);
}
.split-photo img { width: 100%; height: 100%; object-fit: cover; }
.split .lede { margin-top: 0; }
.pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}
.pill { display: flex; align-items: center; }
.pill::before { content: ""; flex: none; width: 7px; height: 7px; margin-right: 10px; border-radius: 50%; background: var(--blue); vertical-align: 1px; }
.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  background: var(--white);
}

.tag {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 6px;
  width: fit-content;
}
.audience {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  margin-top: 48px;
}
.tile {
  position: relative;
  min-height: 460px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
}
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.tile:hover img { transform: scale(1.04); }
.tile-chip { position: absolute; z-index: 2; left: 20px; top: 20px; display: inline-flex; align-items: center; gap: 6px; padding: 9px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; color: #fff; background: rgba(10,20,60,.45); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); box-shadow: inset 0 0 0 1px rgba(255,255,255,.3); }
.tile-chip b { font-weight: 800; }
.tile-chip::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 10px var(--blue); }
.tile .cap {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background: linear-gradient(180deg, rgba(20,16,12,0) 45%, rgba(20,16,12,.78) 100%);
}
.tile h3 {
  font-family: "Newsreader", serif;
  font-weight: 400;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 8px;
}
.tile p { max-width: 440px; font-size: 15px; color: rgba(255,255,255,.9); }

.faq { max-width: 760px; margin: 40px auto 0; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary { transition: color .15s ease; }
.faq summary:hover, .faq details[open] summary { color: var(--blue-deep); }
.faq summary::after {
  content: "";
  flex: none;
  width: 12px;
  height: 12px;
  background:
    linear-gradient(var(--muted), var(--muted)) center / 12px 1.5px no-repeat,
    linear-gradient(var(--muted), var(--muted)) center / 1.5px 12px no-repeat;
  transition: transform .2s ease;
}
.faq details[open] summary::after {
  background: linear-gradient(var(--muted), var(--muted)) center / 12px 1.5px no-repeat;
}
.faq details p { margin: -4px 0 22px; max-width: 660px; color: var(--ink-soft); }

.close { padding: 110px 0 24px; }
.close-card {
  position: relative;
  width: min(1320px, calc(100% - 24px));
  margin: 0 auto;
  padding: 96px 24px;
  border-radius: 28px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-deep) 0%, #1740a8 45%, var(--navy) 100%);
  overflow: hidden;
  isolation: isolate;
}
.close-card .g1 { z-index: -1; width: 520px; height: 520px; right: -120px; top: -220px; background: #6fa8ff; opacity: .45; animation: drift 16s ease-in-out infinite alternate; }
.close-card h2 { color: #fff; }
.close-card p { margin: 16px auto 28px; max-width: 520px; color: rgba(255,255,255,.86); font-size: 18px; }

footer {
  margin-top: 48px;
  background: var(--footer);
  color: var(--footer-text);
  padding: 64px 0 36px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.foot-brand img { width: 168px; height: auto; margin-bottom: 20px; }
.foot-brand p { max-width: 300px; font-size: 14px; }
footer a { color: var(--footer-text); transition: color .15s ease; }
footer a:hover { color: #fff; }
footer h4 {
  color: #eeeae3;
  font-size: 13px;
  margin-bottom: 12px;
  font-weight: 600;
}
footer ul { display: grid; gap: 8px; font-size: 14px; }
.legal {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* Inner pages */
.page-hero { padding: 96px 0 20px; }
.page-hero h1 { font-size: clamp(40px, 5.4vw, 68px); }
.prose { max-width: 720px; }
.prose p { margin-bottom: 16px; color: var(--ink-soft); font-size: 17px; }
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  display: grid;
  gap: 18px;
  max-width: 560px;
}
.field { display: grid; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.field .opt { font-weight: 500; color: var(--muted); }
.form-card input, .form-card select, .form-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 12px;
  padding: 13px 14px;
  font-size: 16px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-card select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%235c574f' stroke-width='1.5'%3E%3Cpath d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-card input:focus-visible, .form-card select:focus-visible, .form-card textarea:focus-visible {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(43,41,38,.14);
}
.form-card textarea { min-height: 140px; resize: vertical; }
.form-card .btn { justify-self: start; }
.form-error { font-size: 14px; color: #8a2f1f; font-weight: 600; }
.success {
  background: #dce8d6;
  color: #243226;
  border-radius: 12px;
  padding: 14px;
  font-weight: 600;
}

@media (max-width: 900px) {
  html { scroll-padding-top: 88px; }
  .nav-inner { grid-template-columns: 1fr auto; padding: 0 8px 0 20px; height: 60px; }
  .brand img { height: 22px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: var(--paper);
    border-radius: 20px;
    padding: 10px 20px;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--line);
    box-shadow: 0 24px 48px -24px rgba(20,16,12,.35);
    font-size: 16px;
    color: var(--ink);
  }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links.open { display: flex; }
  .menu-btn { display: block; }

  .hero { border-radius: 24px; }
  .hero-inner { grid-template-columns: 1fr; min-height: 0; padding: 0 24px; gap: 0; }
  .hero-copy { max-width: none; padding: 48px 0 8px; }
  .hero-copy > p:not(.eyebrow) { max-width: 520px; margin: 16px 0 24px; }
  .hero-stage { min-height: 0; height: 470px; margin-top: 16px; }
  .device-hero { --w: 250px; margin-bottom: -150px; }
  .float { width: 190px; border-radius: 12px; }
  .f1 { right: -14px; top: 28px; }
  .f2 { left: -22px; top: 350px; }
  .f3 { display: none; }
  .showcase { grid-template-columns: 1fr; gap: 28px; margin-top: 40px; }
  .showcase-stage { order: -1; padding: 40px 16px; border-radius: 28px; }
  .device-lg { --w: 260px; }
  .poster { width: min(100%, 360px); border-radius: 20px; }
  .tab { padding: 14px 16px; grid-template-columns: 32px 1fr; }
  .tab-title { font-size: 22px; }
  .bento { grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 40px; }
  .bento-card, .b-3 { grid-column: span 2; min-height: 0; }
  .b-coach { grid-column: span 2; grid-row: auto; flex-direction: column; padding-bottom: 0; }
  .b-coach .bento-copy { max-width: none; }
  .bento-device { align-self: center; margin: 8px 0 -170px; }
  .b-photo { min-height: 360px; }
  .b-blue { min-height: 260px; }
  .band { margin-top: 72px; padding: 72px 0 48px; border-radius: 24px; }
  .gauges { grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 40px; }
  .gauge { padding: 24px 14px; }
  .gauge-ring { width: 116px; height: 116px; }
  .gauge-num .count { font-size: 25px; }
  .gauge h3 { font-size: 20px; }
  .gauge p { font-size: 13px; }
  .marquee-track li { width: 190px; border-radius: 18px; }
  .marquee-head { margin-bottom: 24px; }
  .close-card { padding: 72px 24px; border-radius: 24px; }
  .trust { flex-direction: column; align-items: center; gap: 8px; padding-top: 24px; }
  .trio, .split, .audience, .foot-grid { grid-template-columns: 1fr; }
  .trio { gap: 28px; margin-top: 48px; }
  .split { gap: 32px; }
  .split-photo { max-width: 420px; margin: 0 auto; }
  .section-head { margin-bottom: 36px; }
  .tile { min-height: 400px; }
  .tile h3 { font-size: 30px; }
  .section { padding: 72px 0 24px; }
  .section-tight { padding-top: 16px; }
  .close { padding: 72px 0 16px; }
  .page-hero { padding: 64px 0 12px; }
  .foot-grid { gap: 36px; }
  .form-card { padding: 24px; }
}

@media (max-width: 360px) {
  .wrap { width: calc(100% - 40px); }
  .pills { grid-template-columns: 1fr; }
  .nav-cta .btn { padding: 0 14px; }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .hero-inner { padding: 0 40px; }
  .float { width: 220px; }
  .f2 { left: -10px; }
  .bento-device .device { --w: 240px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .g-value { stroke-dashoffset: var(--final, 80); }
}
