/* ═══════════════════════════════════════════════════════════════
   AONLABS — style.css
   Vibe: huly.io · Dark premium · Serif headlines · Modular sections
   ═══════════════════════════════════════════════════════════════ */

/* ─── TOKENS ────────────────────────────────────────────────── */
:root {
  --bg:          #09090E;
  --bg-1:        #0d0d14;
  --bg-2:        #111118;
  --surface:     rgba(255,255,255,.04);
  --surface-h:   rgba(255,255,255,.07);
  --border:      rgba(255,255,255,.07);
  --border-2:    rgba(255,255,255,.13);
  --text:        rgba(255,255,255,.9);
  --text-2:      rgba(255,255,255,.5);
  --text-3:      rgba(255,255,255,.25);
  --violet:      #7c3aed;
  --violet-l:    #a78bfa;
  --violet-glow: rgba(124,58,237,.22);
  --cyan:        #22d3ee;
  --cyan-glow:   rgba(34,211,238,.18);
  --emerald:     #10b981;
  --serif:       'Instrument Serif', Georgia, serif;
  --sans:        'Plus Jakarta Sans', system-ui, sans-serif;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:     cubic-bezier(0.32, 0.72, 0, 1);
}

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img, svg { display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── CONTAINER ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 2rem;
}

/* ─── CURSOR ─────────────────────────────────────────────────── */
.cursor-dot {
  position: fixed;
  width: 6px; height: 6px;
  background: var(--violet-l);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .2s var(--ease), height .2s var(--ease), opacity .3s;
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(167,139,250,.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: width .45s var(--ease), height .45s var(--ease),
              transform .12s linear, border-color .3s;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring { width: 48px; height: 48px; border-color: rgba(167,139,250,.6); }

/* Sparkle particles */
.sparkle {
  position: fixed;
  pointer-events: none;
  z-index: 9996;
  border-radius: 50%;
  transform-origin: center;
  animation: sparklePop 700ms var(--ease) forwards;
}
@keyframes sparklePop {
  0%   { opacity: 1; transform: translate(0, 0) scale(1) rotate(0deg); }
  100% { opacity: 0; transform: translate(var(--dx), var(--dy)) scale(0) rotate(var(--rot)); }
}

/* ─── HEADER ─────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.125rem 0;
  transition: background 500ms var(--ease), border-color 500ms var(--ease);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(9,9,14,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}
.header__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.header__logo { flex-shrink: 0; }
.header__logo-text {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.125rem;
  color: white;
  letter-spacing: -.03em;
}
.header__logo-text em { font-style: normal; color: var(--violet-l); }

.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.header__nav a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 300ms var(--ease);
}
.header__nav a:hover { color: white; }

.header__actions { display: flex; align-items: center; gap: .75rem; margin-left: 1.5rem; }

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.125rem;
  background: white;
  color: var(--bg);
  font-weight: 700;
  font-size: .875rem;
  border-radius: 8px;
  transition: background 300ms var(--ease), transform 300ms var(--ease);
}
.header__cta:hover { background: #e8e8e8; transform: translateY(-1px); }
.header__cta:active { transform: translateY(0); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .375rem;
  width: 2.25rem;
}
.burger span {
  display: block; height: 1.5px; width: 100%;
  background: rgba(255,255,255,.7); border-radius: 9999px;
  transform-origin: center;
  transition: transform 400ms var(--ease), opacity 300ms;
}
.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  inset: 0; z-index: 90;
  background: rgba(9,9,14,.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity 400ms var(--ease);
}
.mobile-overlay.is-open { opacity: 1; pointer-events: all; }
.mob-link {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--text-2);
  opacity: 0;
  transform: translateY(20px);
  transition: color 250ms, opacity 500ms var(--ease), transform 500ms var(--ease);
}
.mobile-overlay.is-open .mob-link { opacity: 1; transform: translateY(0); }
.mob-link:nth-child(1) { transition-delay: 60ms; }
.mob-link:nth-child(2) { transition-delay: 110ms; }
.mob-link:nth-child(3) { transition-delay: 160ms; }
.mob-link:nth-child(4) { transition-delay: 210ms; }
.mob-link:nth-child(5) { transition-delay: 260ms; }
.mob-link:hover { color: white; }
.mob-cta {
  margin-top: 1rem;
  padding: .875rem 2.5rem;
  background: white;
  color: var(--bg);
  font-weight: 700;
  font-size: 1.0625rem;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms var(--ease) 300ms, transform 500ms var(--ease) 300ms;
}
.mobile-overlay.is-open .mob-cta { opacity: 1; transform: translateY(0); }

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  padding: .875rem 1.625rem;
  background: white;
  color: var(--bg);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  transition: background 300ms var(--ease), transform 400ms var(--ease), box-shadow 400ms var(--ease);
}
.btn-primary:hover {
  background: #eaeaea;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,255,255,.1);
}
.btn-primary:active { transform: translateY(0); box-shadow: none; }

.btn-arrow { transition: transform 350ms var(--ease); flex-shrink: 0; }
.btn-primary:hover .btn-arrow { transform: translateX(3px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.625rem;
  background: transparent;
  color: var(--text-2);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid var(--border-2);
  transition: border-color 300ms var(--ease), color 300ms var(--ease), transform 300ms var(--ease);
}
.btn-outline:hover { border-color: rgba(255,255,255,.35); color: white; transform: translateY(-1px); }

/* ─── EYEBROW ─────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: .3125rem .875rem;
  margin-bottom: 1.5rem;
}
.eyebrow--violet { color: var(--violet-l); background: rgba(124,58,237,.08); border-color: rgba(124,58,237,.25); }
.eyebrow--cyan   { color: var(--cyan);     background: rgba(34,211,238,.06); border-color: rgba(34,211,238,.22); }

/* ─── REVEAL ─────────────────────────────────────────────────── */
.js-reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease),
    filter 900ms var(--ease);
  transition-delay: var(--delay, 0s);
}
.js-reveal.is-visible { opacity: 1; transform: translateY(0); filter: blur(0); }

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin-inline: auto;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
}

/* Atmospheric background */
.hero__bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 60% 10%, black 10%, transparent 80%);
}
.atm {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
  animation: atmFloat 18s ease-in-out infinite;
}
.atm-1 { width: 650px; height: 650px; top: -120px; right: -60px; background: radial-gradient(circle, rgba(124,58,237,.28), transparent 65%); animation-duration: 14s; }
.atm-2 { width: 500px; height: 500px; bottom: 5%; right: 20%; background: radial-gradient(circle, rgba(34,211,238,.16), transparent 65%); animation-duration: 20s; animation-delay: -5s; }
.atm-3 { width: 380px; height: 380px; top: 30%; left: -5%; background: radial-gradient(circle, rgba(167,139,250,.12), transparent 65%); animation-duration: 24s; animation-delay: -10s; }
@keyframes atmFloat {
  0%,100% { transform: translateY(0) translateX(0); }
  33%      { transform: translateY(-22px) translateX(12px); }
  66%      { transform: translateY(12px) translateX(-10px); }
}

/* Content */
.hero__content { position: relative; z-index: 1; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: .3125rem .875rem;
  margin-bottom: 2rem;
}
.badge__dot {
  width: 6px; height: 6px;
  background: var(--emerald);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--emerald);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.8)} }

.hero__h1 {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 5.5vw, 5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: white;
  margin-bottom: 1.5rem;
}
.hero__h1 em {
  font-style: italic;
  background: linear-gradient(135deg, #e2d4fa 0%, #c4f0f8 60%, #a5f3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__p {
  font-size: 1.0625rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.hero__actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero__trust { display: flex; align-items: center; gap: .875rem; }
.trust-avatars { display: flex; }
.trust-av {
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: var(--g);
  border: 2px solid var(--bg);
  margin-left: -.5rem;
}
.trust-av:first-child { margin-left: 0; }
.trust-text { font-size: .8125rem; color: var(--text-3); font-weight: 500; }

/* ─── PHONE MOCKUP ─────────────────────────────────────────────── */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 700px;
}
.phone-glow {
  position: absolute;
  width: 340px; height: 340px;
  background: radial-gradient(circle, var(--violet-glow), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100%{opacity:.8;transform:translate(-50%,-50%) scale(1)} 50%{opacity:1;transform:translate(-50%,-50%) scale(1.1)} }

.phone {
  position: relative;
  z-index: 2;
  animation: phoneHover 7s ease-in-out infinite;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,.7)) drop-shadow(0 0 60px rgba(124,58,237,.2));
}
@keyframes phoneHover {
  0%,100% { transform: translateY(0) rotate(-1.5deg); }
  50%      { transform: translateY(-14px) rotate(-1.5deg); }
}

.phone__outer {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 2.75rem;
  padding: .5rem;
  width: 260px;
}
.phone__inner {
  background: #0c0c16;
  border-radius: calc(2.75rem - .5rem);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.phone__sb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 1rem .375rem;
  font-size: .5rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
}
.sb-icons { display: flex; align-items: center; gap: .3rem; }

.phone__screen { padding: .5rem .75rem; }
.phone__tabs {
  display: flex;
  justify-content: space-around;
  padding: .625rem .5rem .375rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.tab { font-size: .75rem; opacity: .3; }
.tab--active { opacity: 1; }
.phone__home-bar {
  width: 40px; height: 3px;
  background: rgba(255,255,255,.2);
  border-radius: 9999px;
  margin: .25rem auto .625rem;
}

/* Screen elements */
.sc-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: .875rem; }
.sc-date { font-size: .4375rem; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: .08em; }
.sc-title { font-family: var(--sans); font-size: .9375rem; font-weight: 800; color: white; margin-top: .125rem; }
.sc-av { width: 1.75rem; height: 1.75rem; border-radius: 50%; background: linear-gradient(135deg,#7c3aed,#22d3ee); }

.sc-ring-row { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.sc-ring { position: relative; width: 88px; height: 88px; flex-shrink: 0; }
.ring-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.ring-val { font-family: var(--sans); font-size: .9375rem; font-weight: 800; color: white; line-height: 1; }
.ring-unit { font-size: .375rem; font-weight: 700; color: var(--text-3); letter-spacing: .08em; text-transform: uppercase; margin-top: .125rem; }

.sc-macros-col { flex: 1; display: flex; flex-direction: column; gap: .4rem; }
.sc-macro { display: flex; align-items: center; gap: .375rem; }
.macro-label { font-size: .4375rem; font-weight: 600; color: var(--text-3); width: 36px; }
.macro-bar { flex: 1; height: 3px; background: rgba(255,255,255,.07); border-radius: 9999px; overflow: hidden; }
.macro-fill { height: 100%; border-radius: 9999px; }
.macro-val { font-size: .4375rem; font-weight: 700; color: var(--text-3); width: 24px; text-align: right; }

.sc-section-label { font-size: .4375rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: .375rem; }

.sc-meal { display: flex; align-items: center; gap: .375rem; padding: .375rem; background: rgba(255,255,255,.03); border-radius: .5rem; margin-bottom: .25rem; }
.sc-meal--pending { opacity: .5; }
.sc-meal-icon { font-size: .6875rem; width: 1.25rem; flex-shrink: 0; text-align: center; }
.sc-meal-body { flex: 1; min-width: 0; }
.sc-meal-name { font-size: .4375rem; font-weight: 700; color: rgba(255,255,255,.8); }
.sc-meal-items { font-size: .375rem; color: var(--text-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sc-meal-kcal { font-size: .5rem; font-weight: 800; color: var(--violet-l); flex-shrink: 0; }
.sc-meal-kcal span { font-size: .375rem; font-weight: 500; color: var(--text-3); margin-left: .125rem; }

.sc-water {
  display: flex;
  align-items: center;
  gap: .375rem;
  padding: .375rem .5rem;
  background: rgba(34,211,238,.06);
  border-radius: .5rem;
  font-size: .4375rem;
  color: var(--text-3);
  margin-top: .375rem;
}
.sc-water-icon { font-size: .625rem; }
.sc-water-dots { display: flex; gap: 2px; flex: 1; }
.wd { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.1); }
.wd--full { background: #22d3ee; }
.sc-water-val { font-weight: 700; color: #22d3ee; }

/* Floating stat cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1rem;
  background: rgba(13,13,20,.9);
  border: 1px solid var(--border-2);
  border-radius: 1rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  z-index: 3;
}
.float-card--1 { top: 12%; left: -4%; animation: fcFloat 6s ease-in-out infinite; }
.float-card--2 { bottom: 18%; right: -2%; animation: fcFloat 8s ease-in-out infinite 1.5s; }
@keyframes fcFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.fc-icon { width: 2.25rem; height: 2.25rem; border-radius: .625rem; display: flex; align-items: center; justify-content: center; font-size: .875rem; flex-shrink: 0; }
.fc-val { font-family: var(--sans); font-size: .9375rem; font-weight: 800; color: white; line-height: 1.1; }
.fc-label { font-size: .625rem; font-weight: 500; color: var(--text-3); }

/* ─── TICKER ─────────────────────────────────────────────────── */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: .875rem 0;
  background: rgba(255,255,255,.01);
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 35s linear infinite;
}
.ticker__track span {
  padding: 0 2.5rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
}
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ═══════════════════════════════════════════════════════════════
   STATS SECTION
   ═══════════════════════════════════════════════════════════════ */
.stats-section { padding: 6rem 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-val {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 400;
  color: white;
  line-height: 1;
  display: inline;
}
.stat-plus { display: inline; font-family: var(--serif); font-size: clamp(2rem,3.5vw,3rem); color: var(--violet-l); }
.stat-label {
  font-size: .8125rem;
  color: var(--text-3);
  line-height: 1.5;
  margin-top: .625rem;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION COMMONS
   ═══════════════════════════════════════════════════════════════ */
.section { padding: 8rem 0; }
.section-header { margin-bottom: 5rem; }
.section-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: white;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.section-h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #e2d4fa, #a5f3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-p { font-size: 1.0625rem; color: var(--text-2); max-width: 520px; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════════
   FEATURE CARDS GRID
   ═══════════════════════════════════════════════════════════════ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 1rem;
}

/* Card layout spans */
.fcard--workout   { grid-column: span 7; grid-row: span 2; }
.fcard--nutrition { grid-column: span 5; grid-row: span 2; }
.fcard--analytics { grid-column: span 8; grid-row: span 1; }
.fcard--timer     { grid-column: span 4; }
.fcard--themes    { grid-column: span 4; grid-row: span 1; align-self: start; }

/* Shell (outer bezel) */
.fcard__shell {
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: .5rem;
  transition: border-color 500ms var(--ease), box-shadow 500ms var(--ease);
}
.fcard:hover .fcard__shell {
  border-color: var(--border-2);
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
}

/* Core (inner bezel) */
.fcard__core {
  height: 100%;
  background: var(--bg-1);
  border-radius: calc(20px - .5rem);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden;
  position: relative;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.fcard__img {
  width: calc(100% + 3.5rem);
  margin: -1.75rem -1.75rem 1.5rem;
  height: 200px;
  object-fit: cover;
  filter: brightness(.65) saturate(.8);
  transition: filter 600ms var(--ease), transform 600ms var(--ease);
}
.fcard:hover .fcard__img { filter: brightness(.8) saturate(1); transform: scale(1.02); }

.fcard__overlay {} /* stacking context, no styles needed */
.fcard__tag {
  font-size: .625rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: .625rem;
}
.fcard__h3 {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: white;
  line-height: 1.2;
  margin-bottom: .625rem;
}
.fcard__p { font-size: .875rem; color: var(--text-2); line-height: 1.6; }

/* Nutrition mini ring */
.mini-ring-wrap { display: flex; align-items: center; gap: 1rem; margin-top: 1.25rem; flex: 1; }
.mini-ring { position: relative; width: 80px; height: 80px; flex-shrink: 0; }
.mr-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.mr-val { font-family: var(--sans); font-size: .875rem; font-weight: 800; color: white; line-height: 1; }
.mr-unit { font-size: .375rem; font-weight: 700; color: var(--text-3); letter-spacing: .1em; text-transform: uppercase; }
.mini-macro-bars { flex: 1; display: flex; flex-direction: column; gap: .4rem; }
.mmb { display: flex; align-items: center; gap: .375rem; font-size: .5rem; font-weight: 700; color: var(--text-3); }
.mmt { flex: 1; height: 3px; background: rgba(255,255,255,.07); border-radius: 9999px; overflow: hidden; }
.mmt div { height: 100%; border-radius: 9999px; }

/* Analytics card */
.mini-chart { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; margin-top: 1rem; }
.mc-svg { width: 100%; height: 90px; }
.analytics-pills { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .875rem; }
.apill {
  padding: .25rem .625rem;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-size: .625rem;
  font-weight: 600;
  color: var(--text-2);
}
.apill--good { border-color: rgba(16,185,129,.3); color: var(--emerald); background: rgba(16,185,129,.07); }

/* Timer card */
.big-timer { margin-top: 1.25rem; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.bt-digits {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  color: white;
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: .75rem;
}
.bt-bar { height: 4px; background: rgba(255,255,255,.07); border-radius: 9999px; overflow: hidden; margin-bottom: .5rem; }
.bt-fill { height: 100%; background: linear-gradient(90deg, var(--violet), var(--cyan)); border-radius: 9999px; transition: width 1s linear; }
.bt-label { font-size: .625rem; color: var(--text-3); font-weight: 500; }

/* Themes card */
.theme-pills { display: flex; flex-direction: column; gap: .625rem; margin-top: 1rem; flex: 1; justify-content: center; }
.tp {
  display: flex; align-items: center; justify-content: space-between;
  padding: .625rem .875rem;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 350ms var(--ease);
  font-size: .6875rem; font-weight: 700;
}
.tp:hover { transform: scale(1.025) translateX(3px); }
.tp--dark  { background: rgba(6,6,12,1);   border: 1px solid rgba(255,255,255,.1);  color: rgba(255,255,255,.6); }
.tp--zen   { background: #f0fdf4; border: 1px solid rgba(22,163,74,.25);  color: rgba(22,163,74,.9); }
.tp--cyber { background: #02000a; border: 1px solid rgba(255,0,255,.3);   color: rgba(255,0,255,.9);  font-family: monospace; letter-spacing: .05em; }
.tp__dots { display: flex; gap: .375rem; }
.tp__dots span { width: 10px; height: 10px; border-radius: 50%; }

/* ═══════════════════════════════════════════════════════════════
   SPLIT SECTIONS
   ═══════════════════════════════════════════════════════════════ */
.split-section { padding: 9rem 0; }
.split-section--alt { background: var(--bg-1); }

.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split-inner--rev { direction: rtl; }
.split-inner--rev > * { direction: ltr; }

.split-h2 {
  font-family: var(--serif);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 400;
  color: white;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.split-h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #e2d4fa, #a5f3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.split-p { font-size: 1rem; color: var(--text-2); line-height: 1.75; margin-bottom: 2.25rem; }

.feature-list { display: flex; flex-direction: column; gap: 1.25rem; }
.feature-list li { display: flex; align-items: flex-start; gap: .875rem; font-size: .9375rem; color: var(--text-2); line-height: 1.55; }
.feature-list li strong { color: white; }
.fl-check {
  width: 1.375rem; height: 1.375rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .625rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.fl-check--violet { background: rgba(124,58,237,.15); border: 1px solid rgba(124,58,237,.3); color: var(--violet-l); }
.fl-check--cyan   { background: rgba(34,211,238,.1);  border: 1px solid rgba(34,211,238,.25); color: var(--cyan); }

/* Split visual card */
.sv-card { position: relative; }
.sv-shell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: .5rem;
  transition: border-color 500ms var(--ease);
}
.sv-shell:hover { border-color: var(--border-2); }
.sv-core {
  background: var(--bg-1);
  border-radius: calc(22px - .5rem);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}
.sv-core--dark { background: #09090f; }
.sv-label { font-size: .625rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--text-3); margin-bottom: 1rem; }

.sv-exercise-row {
  display: flex; align-items: center; gap: .875rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
}
.sv-ex-img { width: 56px; height: 56px; border-radius: .875rem; object-fit: cover; flex-shrink: 0; }
.sv-ex-name { font-size: 1rem; font-weight: 700; color: white; }
.sv-ex-muscles { font-size: .75rem; color: var(--text-3); margin-top: .125rem; }
.sv-ex-pr {
  margin-left: auto;
  font-size: .625rem; font-weight: 800; letter-spacing: .08em;
  color: var(--violet-l);
  background: rgba(124,58,237,.12);
  border: 1px solid rgba(124,58,237,.25);
  border-radius: 9999px;
  padding: .25rem .625rem;
  flex-shrink: 0;
}

.sv-table { width: 100%; border-collapse: collapse; margin-bottom: 1.25rem; }
.sv-table th {
  font-size: .5625rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-3); text-align: left; padding: .4rem .5rem;
}
.sv-table td { padding: .625rem .5rem; font-size: .8125rem; color: rgba(255,255,255,.5); border-top: 1px solid rgba(255,255,255,.04); }
.sv-done td { background: rgba(167,139,250,.04); color: rgba(255,255,255,.8); }
.sv-check { color: var(--violet-l); font-size: .875rem; }

.sv-timer-row {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  padding: .875rem 1rem;
  background: rgba(124,58,237,.08);
  border: 1px solid rgba(124,58,237,.18);
  border-radius: 12px;
}
.svt-label { font-size: .5625rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(167,139,250,.6); }
.svt-val { font-family: var(--serif); font-size: 1.5rem; color: var(--violet-l); line-height: 1; }
.svt-next { text-align: right; flex: 1; }
.svt-btn {
  width: 2.25rem; height: 2.25rem;
  background: rgba(124,58,237,.2);
  border: 1px solid rgba(124,58,237,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 300ms var(--ease), transform 300ms var(--ease);
}
.svt-btn:hover { background: rgba(124,58,237,.35); transform: scale(1.08); }

.sv-glow {
  position: absolute;
  width: 250px; height: 250px;
  border-radius: 50%; filter: blur(70px); pointer-events: none;
  bottom: -80px; right: -60px;
}
.sv-glow--v { background: radial-gradient(circle, rgba(124,58,237,.25), transparent 70%); }
.sv-glow--c { background: radial-gradient(circle, rgba(34,211,238,.18), transparent 70%); }

/* Floating mini card (workout section) */
.sv-float {
  position: absolute;
  bottom: -1.25rem; right: -2rem;
  display: flex; align-items: center; gap: .625rem;
  padding: .75rem .875rem;
  background: rgba(13,13,20,.95);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  animation: fcFloat 7s ease-in-out infinite 1s;
}
.svf-img { width: 2.25rem; height: 2.25rem; border-radius: .5rem; object-fit: cover; flex-shrink: 0; }

/* Nutrition card elements */
.tdee-row { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.25rem; }
.tdee-label { font-size: .625rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--text-3); margin-bottom: .25rem; }
.tdee-val { font-family: var(--serif); font-size: 2rem; color: white; line-height: 1; }
.tdee-val span { font-size: 1rem; color: var(--text-3); }
.tdee-target { background: rgba(34,211,238,.07); border: 1px solid rgba(34,211,238,.2); border-radius: 10px; padding: .5rem .875rem; text-align: center; }
.tdee-tl { font-size: .5rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--cyan); }
.tdee-tv { font-family: var(--sans); font-size: 1.125rem; font-weight: 800; color: white; }
.lg-ring-wrap { display: flex; justify-content: center; margin-bottom: 1.25rem; }

.macro-chips { display: flex; gap: .5rem; margin-bottom: 1rem; }
.mc { flex: 1; padding: .625rem .5rem; border-radius: 10px; text-align: center; }
.mc--p { background: rgba(124,58,237,.1);  border: 1px solid rgba(124,58,237,.2); }
.mc--c { background: rgba(168,85,247,.08); border: 1px solid rgba(168,85,247,.18); }
.mc--f { background: rgba(16,185,129,.08); border: 1px solid rgba(16,185,129,.18); }
.mc-val { font-family: var(--sans); font-size: 1.125rem; font-weight: 800; color: white; }
.mc--p .mc-val { color: var(--violet-l); }
.mc--c .mc-val { color: #c084fc; }
.mc--f .mc-val { color: var(--emerald); }
.mc-label { font-size: .5rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--text-3); margin-top: .125rem; }

.meal-preview { display: flex; flex-direction: column; gap: .25rem; }
.mp-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .75rem; color: var(--text-2);
  padding: .4rem .5rem;
  background: rgba(255,255,255,.03);
  border-radius: .5rem;
}
.mp-item span:first-child { font-size: .875rem; }
.mp-kcal { margin-left: auto; font-size: .6875rem; font-weight: 700; color: var(--violet-l); }
.mp-item--add { color: var(--text-3); border: 1px dashed var(--border); background: transparent; cursor: pointer; }
.mp-item--add span:first-child { width: 1.25rem; height: 1.25rem; border-radius: 50%; background: rgba(255,255,255,.06); display:flex; align-items:center; justify-content:center; font-style:normal; font-size:.75rem; }

/* ═══════════════════════════════════════════════════════════════
   ANALYTICS SECTION
   ═══════════════════════════════════════════════════════════════ */
.analytics-section {
  position: relative;
  padding: 9rem 0;
  overflow: hidden;
}
.analytics-bg { position: absolute; inset: 0; pointer-events: none; }
.an-orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.an-orb-1 { width: 500px; height: 500px; top: -100px; left: -80px; background: radial-gradient(circle, rgba(124,58,237,.2), transparent 70%); }
.an-orb-2 { width: 400px; height: 400px; bottom: -80px; right: -60px; background: radial-gradient(circle, rgba(34,211,238,.14), transparent 70%); }

.analytics-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.analytics-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: white;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.analytics-h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #e2d4fa, #a5f3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.analytics-p { font-size: 1rem; color: var(--text-2); line-height: 1.7; margin-bottom: 2.5rem; }
.analytics-stats { display: flex; align-items: center; gap: 0; }
.as-item { flex: 1; padding: 1rem; }
.as-val { font-family: var(--serif); font-size: 1.5rem; color: white; font-weight: 400; }
.as-label { font-size: .6875rem; color: var(--text-3); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; margin-top: .25rem; }
.as-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* Chart card */
.ac-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.ac-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.ac-title { font-size: .875rem; font-weight: 700; color: white; }
.ac-filters { display: flex; gap: .25rem; }
.acf {
  padding: .25rem .625rem;
  font-size: .6875rem; font-weight: 600;
  color: var(--text-3); border-radius: 6px;
  transition: background 250ms, color 250ms;
}
.acf:hover { background: var(--surface-h); color: white; }
.acf--active { background: rgba(124,58,237,.15); color: var(--violet-l); }

.ac-chart { padding: 1.25rem 1.5rem 0; }
.ac-svg { width: 100%; height: 180px; }
.ac-x-axis {
  display: flex; justify-content: space-between;
  padding: .5rem 0 1rem;
  font-size: .625rem; color: var(--text-3); font-weight: 500;
}

.ac-footer {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
}
.acf-stat {
  flex: 1;
  padding: 1rem 1.25rem;
  border-right: 1px solid var(--border);
}
.acf-stat:last-child { border-right: none; }
.acf-val { font-family: var(--serif); font-size: 1.25rem; color: white; display: block; }
.acf-val--up { color: var(--emerald); }
.acf-lbl { font-size: .6875rem; color: var(--text-3); font-weight: 500; margin-top: .125rem; }

/* Volume cards */
.vol-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; margin-top: 1rem; }
.vol-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  transition: border-color 350ms var(--ease);
}
.vol-card:hover { border-color: var(--border-2); }
.vc-name { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-3); margin-bottom: .5rem; }
.vc-bar { height: 4px; background: rgba(255,255,255,.07); border-radius: 9999px; overflow: hidden; margin-bottom: .5rem; }
.vc-fill { height: 100%; border-radius: 9999px; background: linear-gradient(90deg, var(--violet), var(--cyan)); }
.vc-val { font-size: .8125rem; font-weight: 700; color: white; }

/* ═══════════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════════ */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 860px;
  margin-inline: auto;
  align-items: start;
}

.pc-shell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: .5rem;
  transition: border-color 500ms var(--ease), box-shadow 500ms var(--ease);
}
.price-card:hover .pc-shell { border-color: var(--border-2); box-shadow: 0 24px 80px rgba(0,0,0,.3); }
.pc-shell--premium {
  background: rgba(124,58,237,.1);
  border-color: rgba(124,58,237,.3);
}
.price-card--premium:hover .pc-shell--premium { border-color: rgba(167,139,250,.5); box-shadow: 0 24px 80px rgba(124,58,237,.15); }

.pc-core {
  background: var(--bg-1);
  border-radius: calc(22px - .5rem);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  padding: 2.25rem;
}
.pc-core--premium { background: #0e0b1a; box-shadow: inset 0 1px 0 rgba(167,139,250,.1); }

.pc-tier { font-size: .6875rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--text-3); margin-bottom: 1rem; }
.pc-tier--premium { color: var(--violet-l); margin-bottom: 0; }
.pc-top-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.pc-badge {
  font-size: .5rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
  color: var(--bg);
  background: var(--violet-l);
  border-radius: 9999px;
  padding: .25rem .5rem;
}
.pc-price { font-family: var(--serif); font-size: 3rem; color: white; line-height: 1; margin-bottom: .375rem; }
.pc-price span { font-family: var(--sans); font-size: 1rem; color: var(--text-3); font-weight: 400; }
.pc-price--premium { background: linear-gradient(135deg, #a78bfa, #22d3ee); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pc-desc { font-size: .875rem; color: var(--text-2); margin-bottom: 1.5rem; }
.pc-divider { height: 1px; background: var(--border); margin-bottom: 1.5rem; }
.pc-divider--premium { background: rgba(124,58,237,.2); }

.pc-list { display: flex; flex-direction: column; gap: .875rem; margin-bottom: 2rem; }
.pc-list li { display: flex; align-items: center; gap: .625rem; font-size: .9375rem; color: var(--text-2); }
.pc-check {
  width: 1.25rem; height: 1.25rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .5625rem;
  flex-shrink: 0;
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.25);
  color: var(--emerald);
}
.pc-check--v { background: rgba(124,58,237,.1); border-color: rgba(124,58,237,.25); color: var(--violet-l); }
.pc-cancel { font-size: .75rem; color: var(--text-3); text-align: center; margin-top: 1rem; }

/* ═══════════════════════════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════════════════════════ */
.cta-final {
  position: relative;
  overflow: hidden;
  padding: 10rem 0;
  text-align: center;
  background: var(--bg-1);
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.cta-orb-1 { width: 600px; height: 600px; top: -150px; left: 50%; transform: translateX(-50%); background: radial-gradient(circle, rgba(124,58,237,.25), transparent 65%); }
.cta-orb-2 { width: 400px; height: 400px; bottom: -100px; left: 50%; transform: translateX(-50%); background: radial-gradient(circle, rgba(34,211,238,.15), transparent 65%); }
.cta-grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 20%, transparent 85%);
}
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin-inline: auto; }
.cta-h2 {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  font-weight: 400;
  color: white;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}
.cta-h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #e2d4fa, #a5f3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-p { font-size: 1.125rem; color: var(--text-2); margin-bottom: 3rem; }
.cta-store-row { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.store-btn {
  display: inline-flex; align-items: center; gap: .875rem;
  padding: .875rem 1.5rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  color: white;
  transition: background 400ms var(--ease), border-color 400ms var(--ease), transform 400ms var(--ease);
}
.store-btn:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); transform: translateY(-3px); }
.store-btn:active { transform: translateY(0); }
.sb-small { font-size: .625rem; font-weight: 600; color: var(--text-3); letter-spacing: .08em; text-transform: uppercase; }
.sb-big { font-family: var(--sans); font-size: 1.0625rem; font-weight: 800; color: white; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer { padding: 4rem 0 2rem; border-top: 1px solid var(--border); }
.footer-inner { display: flex; justify-content: space-between; gap: 3rem; margin-bottom: 3rem; flex-wrap: wrap; }
.footer-brand { max-width: 220px; }
.footer-logo { font-family: var(--sans); font-weight: 800; font-size: 1.25rem; color: rgba(255,255,255,.5); letter-spacing: -.03em; display: inline-block; margin-bottom: .75rem; }
.footer-logo em { font-style: normal; color: var(--violet-l); }
.footer-desc { font-size: .875rem; color: var(--text-3); line-height: 1.6; }
.footer-nav { display: flex; gap: 4rem; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: .75rem; }
.footer-col-title { font-size: .6875rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--text-3); margin-bottom: .25rem; }
.footer-col a { font-size: .875rem; color: rgba(255,255,255,.3); transition: color 250ms; }
.footer-col a:hover { color: rgba(255,255,255,.7); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 2rem; border-top: 1px solid var(--border); font-size: .8125rem; color: var(--text-3); flex-wrap: wrap; gap: 1rem; }

/* ═══════════════════════════════════════════════════════════════
   SCROLL PROGRESS BAR
   ═══════════════════════════════════════════════════════════════ */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  z-index: 200; width: 0%;
  transition: width 80ms linear;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 8rem; }
  .hero__visual { display: none; }
  .hero__p { max-width: 100%; }

  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
  .fcard--workout   { grid-column: span 2; grid-row: span 1; }
  .fcard--nutrition { grid-column: span 1; grid-row: span 1; }
  .fcard--analytics { grid-column: span 2; }
  .fcard--timer     { grid-column: span 1; }
  .fcard--themes    { grid-column: span 1; }

  .analytics-inner { grid-template-columns: 1fr; gap: 3rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:last-child { border-bottom: none; border-right: none; }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__cta  { display: none; }
  .burger { display: flex; }
  .header__actions { margin-left: auto; }

  .split-inner,
  .split-inner--rev { grid-template-columns: 1fr; direction: ltr; gap: 3rem; }

  .price-grid { grid-template-columns: 1fr; max-width: 440px; }

  .analytics-stats { flex-direction: column; gap: 1rem; }
  .as-divider { width: 40px; height: 1px; }

  .vol-cards { grid-template-columns: repeat(2, 1fr); }

  .cta-store-row { flex-direction: column; align-items: center; }
  .store-btn { width: 100%; max-width: 260px; justify-content: center; }

  .footer-inner { flex-direction: column; }
  .footer-nav { gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }

  .cursor-dot, .cursor-ring { display: none; }

  .sv-float { display: none; }
  .float-card { display: none; }

  .feat-grid { grid-template-columns: 1fr; }
  .fcard--workout, .fcard--nutrition, .fcard--analytics, .fcard--timer, .fcard--themes {
    grid-column: span 1; grid-row: span 1;
  }
}

@media (max-width: 480px) {
  .container { padding-inline: 1.25rem; }
  .hero { padding: 7rem 1.25rem 4rem; }
  .section { padding: 5rem 0; }
  .split-section { padding: 5rem 0; }
  .cta-final { padding: 6rem 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
}
