/* ──────────────────────────────────────────────────────────
   Unloc · site.css · v4
   Dark, living, luminous.
────────────────────────────────────────────────────────── */

/* 01 · RESET & TOKENS
────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Base */
  --bg:        #0C0A10;
  --bg2:       #100D16;
  --glass:     rgba(255,255,255,0.04);
  --glass-b:   rgba(255,255,255,0.08);
  --border:    rgba(255,255,255,0.07);
  --muted:     rgba(255,255,255,0.25);
  --soft:      rgba(255,255,255,0.55);
  --text:      rgba(255,255,255,0.92);

  /* Activity */
  --calories:  #F03A5F;
  --workout:   #A8E040;
  --steps:     #0AB4FE;
  --stand:     #30D5E8;
  --pushups:   #FE951A;
  --squats:    #FFD600;
  --sleep:     #6B62E8;
  --breathe:   #C47FD8;
  --apps:      #4DA6FF;

  /* Glows */
  --glow-calories: rgba(240,58,95,0.35);
  --glow-workout:  rgba(168,224,64,0.35);
  --glow-steps:    rgba(10,180,254,0.35);
  --glow-stand:    rgba(48,213,232,0.35);
  --glow-pushups:  rgba(254,149,26,0.35);
  --glow-squats:   rgba(255,214,0,0.35);
  --glow-sleep:    rgba(107,98,232,0.35);
  --glow-breathe:  rgba(196,127,216,0.35);
  --glow-apps:     rgba(77,166,255,0.35);

  /* Spacing */
  --section-y: clamp(80px, 10vw, 128px);
  --content-x: clamp(20px, 5vw, 44px);
  --max-w: 1100px;

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* 02 · TYPOGRAPHY
────────────────────────────────────────────────────────── */
h1, h2, h3, .display {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--text);
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

/* App-store style accent words — colored to match each panel */
.acc-time   { color: var(--steps); }
.acc-lock   { color: var(--calories); }
.acc-unloc  { color: var(--workout); }
.acc-rules  { color: var(--sleep); }
.acc-track  { color: var(--stand); }
.acc-earn   { color: var(--squats); }

.section-sub {
  font-size: 16px;
  color: var(--soft);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 48px;
}

p { color: var(--soft); }
a { color: inherit; text-decoration: none; }
strong { color: var(--text); font-weight: 600; }

/* 03 · UTILITIES
────────────────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--content-x);
}

.glass {
  background: var(--glass);
  border: 1px solid var(--glass-b);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-md);
}

.glass-subtle {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}

.tag-free {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(168,224,64,0.12);
  color: var(--workout);
  border: 1px solid rgba(168,224,64,0.2);
}

.tag-pro {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(107,98,232,0.15);
  color: var(--sleep);
  border: 1px solid rgba(107,98,232,0.25);
}

/* 04 · LOAD CURTAIN
────────────────────────────────────────────────────────── */
.curtain {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  pointer-events: none;
}

.curtain.exit {
  animation: curtainSlideUp 0.75s cubic-bezier(0.7, 0, 0.9, 1) forwards;
}

.curtain-wordmark {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -2px;
  color: var(--text);
  opacity: 0;
  animation: fadeUp 0.5s var(--ease) 0.2s forwards;
}

.curtain-dots {
  display: flex;
  gap: 8px;
}

.curtain-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  opacity: 0;
}

.curtain-dot:nth-child(1) { background: var(--calories); box-shadow: 0 0 10px var(--glow-calories); animation: dotPop 0.4s var(--ease) 0.5s forwards; }
.curtain-dot:nth-child(2) { background: var(--workout);  box-shadow: 0 0 10px var(--glow-workout);  animation: dotPop 0.4s var(--ease) 0.6s forwards; }
.curtain-dot:nth-child(3) { background: var(--steps);    box-shadow: 0 0 10px var(--glow-steps);    animation: dotPop 0.4s var(--ease) 0.7s forwards; }
.curtain-dot:nth-child(4) { background: var(--stand);    box-shadow: 0 0 10px var(--glow-stand);    animation: dotPop 0.4s var(--ease) 0.8s forwards; }
.curtain-dot:nth-child(5) { background: var(--pushups);  box-shadow: 0 0 10px var(--glow-pushups);  animation: dotPop 0.4s var(--ease) 0.9s forwards; }
.curtain-dot:nth-child(6) { background: var(--squats);   box-shadow: 0 0 10px var(--glow-squats);   animation: dotPop 0.4s var(--ease) 1.0s forwards; }
.curtain-dot:nth-child(7) { background: var(--sleep);    box-shadow: 0 0 10px var(--glow-sleep);    animation: dotPop 0.4s var(--ease) 1.1s forwards; }
.curtain-dot:nth-child(8) { background: var(--breathe);  box-shadow: 0 0 10px var(--glow-breathe);  animation: dotPop 0.4s var(--ease) 1.2s forwards; }
.curtain-dot:nth-child(9) { background: var(--apps);     box-shadow: 0 0 10px var(--glow-apps);     animation: dotPop 0.4s var(--ease) 1.3s forwards; }

/* 05 · NAV
────────────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  padding: 16px var(--content-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(12,10,16,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}

.site-nav.scrolled { border-bottom-color: var(--border); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-wordmark {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--text);
}

.nav-dots {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transition: transform 0.3s var(--ease);
}

.nav-dot:hover { transform: scale(1.4); }
.nav-dot.c  { background: var(--calories); }
.nav-dot.w  { background: var(--workout); }
.nav-dot.s  { background: var(--steps); }
.nav-dot.st { background: var(--stand); }
.nav-dot.p  { background: var(--pushups); }
.nav-dot.sq { background: var(--squats); }
.nav-dot.sl { background: var(--sleep); }
.nav-dot.b  { background: var(--breathe); }
.nav-dot.a  { background: var(--apps); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--bg);
  background: var(--text);
  padding: 9px 20px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.nav-cta:hover { opacity: 0.85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 14px;
  color: var(--soft);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--text); }

/* 06 · HERO
────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px var(--content-x) 80px;
  overflow: hidden;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0;
}

.orb--calories { width: 380px; height: 380px; background: var(--calories); top: -10%; left: -8%;  animation: orbFadeIn 2s var(--ease) 1.6s forwards, orbDrift 14s ease-in-out 1.6s infinite; --drift-x: 30px;  --drift-y: 20px; }
.orb--workout  { width: 320px; height: 320px; background: var(--workout);  top: 20%;  right: -5%; animation: orbFadeIn 2s var(--ease) 1.8s forwards, orbDrift 16s ease-in-out 1.8s infinite; --drift-x: -20px; --drift-y: 30px; }
.orb--sleep    { width: 400px; height: 400px; background: var(--sleep);    bottom: -10%; left: 20%; animation: orbFadeIn 2s var(--ease) 2.0s forwards, orbDrift 12s ease-in-out 2.0s infinite; --drift-x: 15px;  --drift-y: -20px; }
.orb--steps    { width: 260px; height: 260px; background: var(--steps);    top: 40%;  left: 40%; animation: orbFadeIn 2s var(--ease) 2.2s forwards, orbDrift 18s ease-in-out 2.2s infinite; --drift-x: -30px; --drift-y: 15px; }
.orb--breathe  { width: 200px; height: 200px; background: var(--breathe);  bottom: 10%; right: 15%; animation: orbFadeIn 2s var(--ease) 2.4s forwards, orbDrift 10s ease-in-out 2.4s infinite; --drift-x: 20px;  --drift-y: -25px; }
.orb--apps     { width: 220px; height: 220px; background: var(--apps);     top: 15%; right: 25%; animation: orbFadeIn 2s var(--ease) 2.6s forwards, orbDrift 14s ease-in-out 2.6s infinite; --drift-x: -15px; --drift-y: 20px; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 1.4s forwards;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--workout);
  box-shadow: 0 0 8px var(--glow-workout);
  animation: glowPulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(42px, 7vw, 80px);
  letter-spacing: clamp(-2px, -0.03em, -3px);
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1.55s forwards;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--soft);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.65;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1.7s forwards;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1.85s forwards;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--text);
  color: var(--bg);
  padding: 13px 22px;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-store:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-store-text small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.05em;
  opacity: 0.65;
  line-height: 1;
  margin-bottom: 2px;
}

.btn-store-text strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  letter-spacing: -0.3px;
  color: var(--bg);
  font-weight: 700;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--soft);
  text-decoration: none;
  padding: 13px 20px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--glass-b);
  transform: translateY(-1px);
}

.hero-footnote {
  margin-top: 28px;
  font-size: 12px;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 2.0s forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 2.3s forwards;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.15), transparent);
  animation: scrollBob 2s ease-in-out infinite;
}

/* 07 · SECTION WRAPPER
────────────────────────────────────────────────────────── */
.section {
  padding: var(--section-y) 0;
  position: relative;
}

.section--alt { background: var(--bg2); }

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--content-x);
}

.section-header { margin-bottom: 56px; }

.section-header--center { text-align: center; }

.section-header--center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* 08 · PROBLEM SECTION
────────────────────────────────────────────────────────── */
/* Chat-bubble problem framing */
.chat-thread {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 600px;
  margin: 0 auto clamp(48px, 7vw, 80px);
}

.chat-bubble {
  position: relative;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(21px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.25;
  padding: 20px 28px;
  border-radius: 26px;
  max-width: 84%;
  width: fit-content;
}

.chat-bubble--in {
  align-self: flex-start;
  background: #26242F;
  color: var(--text);
  border-bottom-left-radius: 8px;
}
.chat-bubble--in::after {
  content: '';
  position: absolute;
  left: -7px;
  bottom: 0;
  width: 22px;
  height: 22px;
  background: #26242F;
  clip-path: path('M22 22 C 10 22, 0 12, 0 0 L 22 0 Z');
}

.chat-bubble--out {
  align-self: flex-end;
  text-align: right;
  background: linear-gradient(135deg, var(--workout) 0%, var(--stand) 100%);
  color: #0C0A10;
  border-bottom-right-radius: 8px;
  box-shadow: 0 18px 50px -16px var(--glow-workout);
}
.chat-bubble--out::after {
  content: '';
  position: absolute;
  right: -7px;
  bottom: 0;
  width: 22px;
  height: 22px;
  background: var(--stand);
  border-bottom-right-radius: 16px;
  clip-path: path('M0 22 C 12 22, 22 12, 22 0 L 0 0 Z');
}

.problem-bridge {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.bridge-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 700;
  letter-spacing: -1.4px;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 18px;
}

.bridge-sub { font-size: clamp(15px, 1.6vw, 18px); color: var(--soft); max-width: 480px; margin: 0 auto; line-height: 1.6; }

/* 09 · HOW IT WORKS
────────────────────────────────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
}

.how-connector {
  display: flex;
  align-items: flex-start;
  padding-top: 60px;
  padding-inline: 8px;
}

.how-connector-line {
  width: 40px;
  height: 1px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.how-connector-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--workout), transparent);
  transform: translateX(-100%);
}

.how-connector-line.animate::after {
  animation: connectorFlow 1.4s var(--ease) forwards;
}

.how-step {
  padding: 32px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: var(--r-md);
}

.how-step-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.how-step-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 20px;
  position: relative;
}

.step-svg { transition: transform 0.3s var(--ease); }
.how-step:hover .step-svg { transform: scale(1.1); }

.how-step-icon--earn .step-svg { color: var(--workout); filter: drop-shadow(0 0 8px var(--glow-workout)); animation: heartPulse 2.5s ease-in-out infinite; }
.how-step-icon--unlock .step-svg { color: var(--steps); filter: drop-shadow(0 0 8px var(--glow-steps)); animation: lockWobble 4s ease-in-out infinite; }


.how-step-icon--earn    { color: var(--workout); background: rgba(168,224,64,0.08); border: 1px solid rgba(168,224,64,0.15); box-shadow: 0 0 24px rgba(168,224,64,0.1); }
.how-step-icon--credits { color: var(--sleep);   background: rgba(107,98,232,0.08); border: 1px solid rgba(107,98,232,0.15); box-shadow: 0 0 24px rgba(107,98,232,0.1); }
.how-step-icon--unlock  { color: var(--steps);   background: rgba(10,180,254,0.08);  border: 1px solid rgba(10,180,254,0.15);  box-shadow: 0 0 24px rgba(10,180,254,0.1); }

.how-step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.how-step-desc { font-size: 13px; color: var(--soft); line-height: 1.6; max-width: 200px; }
.how-step-content { display: contents; }



.credits-counter {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--sleep);
  text-shadow: 0 0 20px var(--glow-sleep);
  line-height: 1;
}

.credits-unit { font-family: 'Inter', sans-serif; font-size: 11px; color: var(--muted); margin-top: 4px; letter-spacing: 0.05em; }

.lock-icon { font-size: 28px; display: block; animation: lockOpen 3s ease-in-out infinite; }

/* 10 · PHONE MOCKUP
────────────────────────────────────────────────────────── */
.unlock-section {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  gap: 56px;
  align-items: center;
}

/* Distractions: recreated locked-phone illustration */
.distraction-stage { display: flex; justify-content: center; padding: 30px 0; }
.lock-phone { position: relative; }

.phone--lock {
  width: 260px;
  height: 530px;
  background: radial-gradient(120% 80% at 50% 35%, #1a1622 0%, #0e0b14 70%);
}
.lp-screen { position: absolute; inset: 0; }

/* dimmed (blocked) app row near the top */
.lp-dim-row {
  position: absolute;
  top: 19%;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 26px;
}
.lp-dim {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--t) 16%, #14111c);
  color: color-mix(in srgb, var(--t) 60%, transparent);
  opacity: 0.5;
}
.lp-dim svg { width: 24px; height: 24px; }

/* center lock */
.lp-lock {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
.lp-lock svg {
  width: 40px; height: 40px;
  filter: drop-shadow(0 0 14px rgba(255,255,255,0.45));
}

/* soft glow at the base of the screen */
.phone--lock::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 40% at 50% 102%, rgba(168,224,64,0.16), transparent 70%);
  pointer-events: none;
}

/* floating "distraction" app icons popping over the edges */
.lp-app {
  position: absolute;
  width: 66px; height: 66px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 34px -8px rgba(0,0,0,0.7);
  z-index: 5;
  animation: lpFloat 6s ease-in-out infinite;
}
.lp-app svg { width: 34px; height: 34px; }
.lp-app--tl {
  top: 12%; left: -34px;
  background: linear-gradient(150deg, #FF4B3E, #C81E2B);
  transform: rotate(-8deg);
  animation-delay: -0.4s;
}
.lp-app--tr {
  top: 17%; right: -38px;
  background: linear-gradient(150deg, #3a2a52, #160f24);
  box-shadow: 0 16px 34px -8px rgba(0,0,0,0.7), 0 0 22px -4px rgba(120,90,220,0.7);
  transform: rotate(9deg);
  animation-delay: -2.2s;
}
.lp-app--tr svg { filter: drop-shadow(0 0 4px rgba(0,220,255,0.9)) drop-shadow(0 0 5px rgba(255,40,120,0.7)); }
.lp-app--bl {
  bottom: 15%; left: -30px;
  background: linear-gradient(135deg, #7A3CC8 0%, #E1306C 45%, #FCAF45 100%);
  transform: rotate(6deg);
  animation-delay: -1.3s;
}
.lp-app--br {
  bottom: 12%; right: -34px;
  background: linear-gradient(150deg, #2C8BFF, #1C5FE0);
  transform: rotate(-6deg);
  animation-delay: -3.1s;
}
@keyframes lpFloat {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -8px; }
}

.phone-wrap { display: flex; justify-content: center; }

.phone {
  width: 254px;
  height: 510px;
  background: #161122;
  border-radius: 44px;
  border: 2px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 6px #0C0A10, 0 0 0 8px rgba(255,255,255,0.05), 0 60px 100px rgba(0,0,0,0.7);
  flex-shrink: 0;
}

.phone::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 26px;
  background: #0C0A10;
  border-radius: 20px;
  z-index: 20;
}

.phone-state {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 18px 24px;
  opacity: 0;
  transition: opacity 0.7s var(--ease);
  text-align: center;
}

.phone-state.active { opacity: 1; }

.phone-state--blocked { background: #161122; }

.phone-app-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.07);
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  filter: grayscale(0.4) opacity(0.75);
}

.phone-lock-label { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.phone-time-spent { font-size: 11px; color: var(--muted); margin-bottom: 18px; }
.phone-balance { font-family: 'Space Grotesk', sans-serif; font-size: 44px; font-weight: 700; color: var(--text); line-height: 1; margin-bottom: 2px; }
.phone-balance-unit { font-size: 11px; color: var(--muted); margin-bottom: 18px; letter-spacing: 0.04em; }

.phone-earn-pills { display: flex; flex-direction: column; gap: 7px; width: 100%; }

.phone-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 0.01em;
}

.phone-pill--burn     { background: rgba(240,58,95,0.12);  color: var(--calories); border: 1px solid rgba(240,58,95,0.2); }
.phone-pill--activate { background: rgba(168,224,64,0.10); color: var(--workout);  border: 1px solid rgba(168,224,64,0.18); }
.phone-pill--apps     { background: rgba(77,166,255,0.12); color: var(--apps);     border: 1px solid rgba(77,166,255,0.2); }

.phone-state--earned { background: rgba(168,224,64,0.06); }

.phone-bloom {
  position: absolute;
  inset: -40%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,224,64,0.22) 0%, transparent 65%);
  animation: bloomPulse 2s ease-in-out infinite;
}

.phone-unlock-icon { font-size: 44px; margin-bottom: 18px; position: relative; z-index: 2; }
.phone-earn-headline { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; color: var(--workout); text-shadow: 0 0 20px var(--glow-workout); position: relative; z-index: 2; margin-bottom: 6px; }
.phone-earn-sub { font-size: 13px; color: var(--soft); position: relative; z-index: 2; line-height: 1.5; }

.phone-state--low { background: rgba(240,58,95,0.04); }

.phone-low-glow { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(240,58,95,0.18), transparent 55%); }

.phone-low-number { font-family: 'Space Grotesk', sans-serif; font-size: 54px; font-weight: 700; color: var(--calories); text-shadow: 0 0 30px var(--glow-calories); line-height: 1; margin-bottom: 4px; position: relative; z-index: 2; }
.phone-low-label  { font-size: 14px; color: var(--soft); margin-bottom: 4px; position: relative; z-index: 2; }
.phone-low-hint   { font-size: 12px; color: var(--muted); margin-bottom: 18px; position: relative; z-index: 2; }

.phone-state--invisible { background: #161122; }

.phone-great-icon  { font-size: 32px; margin-bottom: 14px; opacity: 0.55; }
.phone-great-title { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.phone-great-sub   { font-size: 13px; color: var(--muted); line-height: 1.55; }

.unlock-states { display: flex; flex-direction: column; gap: 8px; }

.unlock-state-card {
  padding: 16px 18px;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: transparent;
}

.unlock-state-card:hover,
.unlock-state-card.active {
  border-color: rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
}

.us-label { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.us-title { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.us-desc  { font-size: 12px; color: var(--soft); line-height: 1.5; }

.unlock-state-card[data-for="earned"]    .us-title { color: var(--workout); }
.unlock-state-card[data-for="low"]       .us-title { color: var(--calories); }
.unlock-state-card[data-for="invisible"] .us-title { color: var(--sleep); }

.unlock-spacer { display: block; }

/* 11 · EARN SOURCES
────────────────────────────────────────────────────────── */
.earn-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.earn-card {
  --c: var(--steps);
  --g: var(--glow-steps);
  padding: 22px 22px 20px;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--c);
  color: #0C0A10;
  cursor: pointer;
  /* dimmed by default */
  filter: brightness(0.78) saturate(0.95);
  box-shadow: 0 12px 30px -14px var(--g);
  transition: filter 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

/* pointer / focus / tap lights it up */
.earn-card:hover,
.earn-card:focus-visible,
.earn-card:active {
  filter: brightness(1.05) saturate(1.05);
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--c) 55%, #ffffff),
              0 24px 50px -14px var(--g),
              0 0 42px -6px var(--g);
}

.earn-card.c  { --c: var(--calories); --g: var(--glow-calories); }
.earn-card.w  { --c: var(--workout);  --g: var(--glow-workout); }
.earn-card.p  { --c: var(--pushups);  --g: var(--glow-pushups); }
.earn-card.sq { --c: var(--squats);   --g: var(--glow-squats); }
.earn-card.s  { --c: var(--steps);    --g: var(--glow-steps); }
.earn-card.st { --c: var(--stand);    --g: var(--glow-stand); }
.earn-card.sl { --c: var(--sleep);    --g: var(--glow-sleep); }
.earn-card.b  { --c: var(--breathe);  --g: var(--glow-breathe); }
.earn-card.a  { --c: var(--apps);     --g: var(--glow-apps); }

.earn-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 28px; }

.earn-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  color: #0C0A10;
  letter-spacing: -1.4px;
  line-height: 1.02;
}

.earn-example { font-size: 13px; color: rgba(12,10,16,0.72); font-style: italic; line-height: 1.5; font-weight: 500; }

/* badges sit on the colored card as translucent black pills */
.earn-card .tag-pro,
.earn-card .tag-free {
  background: rgba(0,0,0,0.16);
  color: #0C0A10;
  border: none;
}

/* 12 · REFLECTION
────────────────────────────────────────────────────────── */
.reflection-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.reflection-item { padding: 28px 26px; display: flex; gap: 18px; }

.reflection-num { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700; color: var(--muted); flex-shrink: 0; padding-top: 2px; min-width: 24px; }
.reflection-title { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.reflection-desc  { font-size: 13px; color: var(--soft); line-height: 1.65; }

.reflection-item--principle {
  grid-column: 1 / -1;
  background: rgba(255,255,255,0.015);
  border: 1px solid var(--border);
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.reflection-item--principle .reflection-num { min-width: unset; }
.reflection-item--principle .reflection-title { color: var(--soft); font-size: 17px; }

/* Statistics chart — mirrors the in-app Progress screen */
.stats-card {
  grid-column: 1 / -1;
  padding: 28px 30px 24px;
  margin-bottom: 4px;
}
.stats-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 22px; flex-wrap: wrap; gap: 8px; }
.stats-title { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.stats-total { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; color: var(--text); }
.stats-total span { color: var(--steps); }
.stats-chart { display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px; align-items: end; height: 168px; }
.stats-col { display: flex; flex-direction: column; align-items: center; gap: 10px; height: 100%; justify-content: flex-end; }
.stats-bar { width: 70%; max-width: 26px; border-radius: 5px 5px 2px 2px; display: flex; flex-direction: column-reverse; overflow: hidden; }
.stats-seg { width: 100%; }
.stats-seg--steps   { background: var(--steps); }
.stats-seg--workout { background: var(--workout); }
.stats-seg--calories{ background: var(--calories); }
.stats-day { font-size: 11px; font-weight: 600; color: var(--muted); }
.stats-legend { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border); }
.stats-legend-item { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--soft); }
.stats-dot { width: 9px; height: 9px; border-radius: 50%; }

/* ── DASHBOARD COMPONENT + FLOATING CHIPS ─────────────── */
.dash-section { padding: clamp(40px, 6vw, 72px) 0 var(--section-y); overflow-x: clip; }
.dash-section .section-inner { overflow: visible; }
.dash-intro { text-align: center; max-width: 560px; margin: 0 auto clamp(24px, 4vw, 44px); }
.dash-intro .eyebrow { margin-bottom: 16px; }
.dash-intro .section-title { margin-bottom: 14px; }
.dash-intro .section-sub { margin: 0 auto; }

.dash-stage {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(50px, 9vw, 96px) 10px;
  perspective: 1200px;
}

/* The phone-style dashboard card */
.dash-card {
  position: relative;
  z-index: 3;
  width: min(380px, 92%);
  margin: 0 auto;
  background: linear-gradient(180deg, #16141d 0%, #100E16 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 20px 22px 22px;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.02) inset;
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
}
.dash-card-head { display: flex; align-items: center; justify-content: center; position: relative; height: 30px; margin-bottom: 6px; }
.dash-card-title { font-size: 16px; font-weight: 700; color: var(--text); letter-spacing: -0.2px; }
.dash-gear { position: absolute; right: 0; top: 0; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--soft); }

.dash-gauge { position: relative; display: flex; align-items: center; justify-content: center; margin: 6px auto 2px; width: 220px; max-width: 100%; }
.dash-gauge svg { width: 100%; height: auto; display: block; }
.dash-gauge-track { fill: none; stroke: rgba(255,255,255,0.08); stroke-width: 15; stroke-linecap: round; }
.dash-gauge-fill { fill: none; stroke: #EDEDED; stroke-width: 15; stroke-linecap: round; filter: drop-shadow(0 0 6px rgba(255,255,255,0.25)); transition: stroke-dasharray 0.8s cubic-bezier(0.4,0,0.2,1); }
.dash-gauge-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding-top: 6px; }
.dash-gauge-num { font-family: 'Space Grotesk', sans-serif; font-size: 56px; font-weight: 700; color: #fff; line-height: 1; letter-spacing: -2px; }
.dash-gauge-label { font-size: 14px; font-weight: 600; color: var(--soft); margin-top: 8px; }
.dash-meta { text-align: center; font-size: 12px; color: var(--muted); margin: 12px 0 16px; }
.dash-meta b { color: var(--soft); font-weight: 600; }

.dash-divider { height: 1px; background: var(--border); margin: 0 -22px 16px; }

.dash-stepper-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.dash-stepper-label { font-size: 15px; font-weight: 500; color: var(--soft); }
.dash-stepper { display: flex; align-items: center; gap: 14px; }
.dash-step-btn { width: 38px; height: 38px; border-radius: 12px; background: rgba(255,255,255,0.06); border: 1px solid var(--border); color: var(--text); font-size: 20px; font-weight: 600; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.15s ease, transform 0.1s ease; user-select: none; }
.dash-step-btn:hover { background: rgba(255,255,255,0.11); }
.dash-step-btn:active { transform: scale(0.92); }
.dash-step-val { font-size: 17px; font-weight: 700; color: var(--text); min-width: 56px; text-align: center; font-variant-numeric: tabular-nums; }

.dash-unlock { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; background: rgba(255,255,255,0.07); border: 1px solid var(--border); border-radius: 16px; padding: 16px; font-size: 15px; font-weight: 600; color: var(--text); cursor: pointer; transition: background 0.2s ease; }
.dash-unlock:hover { background: rgba(255,255,255,0.12); }
.dash-unlock svg { width: 16px; height: 16px; }

/* Floating earn chips */
.dash-chip {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(22,20,30,0.74);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 13px 22px 13px 16px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 44px -12px rgba(0,0,0,0.72);
  transform-origin: center;
  transform-style: preserve-3d;
  transform:
    translate(var(--px,0px), var(--py,0px))
    rotate(var(--rot,0deg))
    rotateX(var(--tiltX,0deg))
    rotateY(var(--tiltY,0deg))
    scale(var(--cs,1));
  transition: transform 0.4s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.3s ease;
  will-change: transform;
}
.dash-chip:hover {
  z-index: 6;
  transition-duration: 0.08s;
  box-shadow: 0 30px 60px -14px rgba(0,0,0,0.85);
}
.dash-chip-inner { display: inline-flex; align-items: center; gap: 10px; animation: chipFloat 6s ease-in-out infinite; }
.dash-chip .dc-emoji { font-size: 20px; }
.dash-chip .dc-min { font-weight: 700; }
@keyframes chipFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.dash-chip-1 { top: 4%;  left: 2%;  --rot: -5deg; }
.dash-chip-2 { top: 16%; right: 0%; --rot: 4deg; }
.dash-chip-3 { top: 46%; left: -3%; --rot: 3deg; }
.dash-chip-4 { bottom: 20%; right: -2%; --rot: -4deg; }
.dash-chip-5 { bottom: 5%;  left: 6%;  --rot: 5deg; }
.dash-chip-6 { bottom: 2%;  right: 8%; --rot: -3deg; }

@media (max-width: 600px) {
  .dash-stage { padding: 60px 2px; }
  .dash-card { width: min(330px, 86%); }
  .dash-chip { font-size: 14px; padding: 9px 15px 9px 12px; gap: 7px; }
  .dash-chip .dc-emoji { font-size: 16px; }
  .dash-chip-1 { top: 2%;  left: 0; }
  .dash-chip-2 { top: 9%;  right: 0; }
  .dash-chip-3 { top: 48%; left: 0; }
  .dash-chip-4 { bottom: 24%; right: 0; }
  .dash-chip-5 { bottom: 3%; left: 2%; }
  .dash-chip-6 { bottom: 0;  right: 2%; }
}

/* 13 · CREDIT SYSTEM
────────────────────────────────────────────────────────── */
.credit-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.credit-visual { display: flex; flex-direction: column; gap: 16px; }

.credit-var { padding: 22px; border-radius: var(--r-md); background: rgba(255,255,255,0.025); border: 1px solid var(--border); }

.credit-var-label { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.credit-var-title { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 12px; }

.credit-bar-track { height: 5px; background: var(--glass-b); border-radius: 3px; overflow: hidden; position: relative; }

.credit-bar-fill {
  height: 100%;
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.credit-bar-fill.animate { transform: scaleX(1); }
.credit-bar-fill--goal     { background: linear-gradient(90deg, var(--sleep), var(--breathe)); width: 65%; }
.credit-bar-fill--baseline { background: linear-gradient(90deg, var(--workout), var(--steps)); width: 72%; }

.credit-bar-note { font-size: 11px; color: var(--muted); margin-top: 8px; }

.credit-result { padding: 22px; border-radius: var(--r-md); background: rgba(168,224,64,0.04); border: 1px solid rgba(168,224,64,0.1); text-align: center; }
.credit-result-value { font-family: 'Space Grotesk', sans-serif; font-size: 38px; font-weight: 700; color: var(--workout); text-shadow: 0 0 24px var(--glow-workout); line-height: 1; margin-bottom: 4px; }
.credit-result-label { font-size: 12px; color: var(--muted); }

.credit-copy-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 16px; }

.credit-copy-item { display: flex; gap: 12px; align-items: flex-start; }

.credit-copy-dot { width: 7px; height: 7px; border-radius: 50%; margin-top: 7px; flex-shrink: 0; }
.credit-copy-text { font-size: 14px; color: var(--soft); line-height: 1.65; }

/* 14 · PRICING
────────────────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 800px; margin: 0 auto; }

.pricing-card { padding: 36px 32px; display: flex; flex-direction: column; }

.pricing-card--pro { border-color: rgba(168,224,64,0.18); box-shadow: 0 0 60px rgba(168,224,64,0.05), inset 0 0 40px rgba(168,224,64,0.02); }

.pricing-badge { display: inline-flex; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px; border-radius: 5px; margin-bottom: 20px; align-self: flex-start; }
.pricing-badge--free { background: rgba(255,255,255,0.06); color: var(--soft); border: 1px solid var(--border); }
.pricing-badge--pro  { background: rgba(168,224,64,0.12);  color: var(--workout); border: 1px solid rgba(168,224,64,0.2); }

.pricing-title { font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 700; letter-spacing: -0.5px; color: var(--text); margin-bottom: 6px; }
.pricing-desc  { font-size: 13px; color: var(--muted); margin-bottom: 28px; line-height: 1.5; }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex: 1; }

.pricing-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--soft); line-height: 1.4; }

.pf-check { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 9px; flex-shrink: 0; margin-top: 1px; }
.pf-check--on  { background: rgba(168,224,64,0.12); color: var(--workout); border: 1px solid rgba(168,224,64,0.2); }
.pf-check--off { background: rgba(255,255,255,0.04); color: var(--muted);   border: 1px solid var(--border); }
.pf-check--pro { background: rgba(107,98,232,0.12);  color: var(--sleep);   border: 1px solid rgba(107,98,232,0.2); }

.pricing-cta { display: block; text-align: center; padding: 14px; border-radius: var(--r-sm); font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600; text-decoration: none; transition: opacity 0.2s, transform 0.2s; }
.pricing-cta--free { background: var(--glass); border: 1px solid var(--glass-b); color: var(--soft); }
.pricing-cta--pro  { background: var(--workout); color: #0C0A10; }
.pricing-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* 15 · TRUST
────────────────────────────────────────────────────────── */
.trust-row { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }

.trust-pill { display: flex; align-items: center; gap: 10px; padding: 12px 20px; border-radius: 100px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); font-size: 13px; color: var(--soft); white-space: nowrap; }
.trust-pill-icon { font-size: 15px; }

/* 16 · BOTTOM CTA
────────────────────────────────────────────────────────── */
.cta-section { position: relative; overflow: hidden; text-align: center; }

.cta-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 55% 60% at 30% 50%, rgba(107,98,232,0.13), transparent), radial-gradient(ellipse 55% 60% at 70% 50%, rgba(168,224,64,0.09), transparent); }

.cta-title { font-size: clamp(36px, 5vw, 60px); letter-spacing: -2px; margin-bottom: 16px; position: relative; z-index: 2; }
.cta-sub   { font-size: 16px; color: var(--soft); max-width: 420px; margin: 0 auto 40px; position: relative; z-index: 2; line-height: 1.65; }

.cta-store-group { display: flex; flex-direction: column; align-items: center; gap: 14px; position: relative; z-index: 2; }
.cta-note { font-size: 12px; color: var(--muted); }

/* 17 · FOOTER
────────────────────────────────────────────────────────── */
.site-footer { padding: 36px var(--content-x); border-top: 1px solid var(--border); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; max-width: 100%; }

.footer-brand { display: flex; align-items: center; gap: 10px; font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: -0.5px; color: var(--text); text-decoration: none; }
.footer-dots  { display: flex; gap: 4px; }
.footer-dot   { width: 6px; height: 6px; border-radius: 50%; }

.footer-links { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.footer-link  { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-link:hover { color: var(--soft); }

.footer-meta { text-align: right; }
.footer-copy { font-size: 12px; color: var(--muted); line-height: 1.6; }
.footer-disclaimer { font-size: 11px; color: rgba(255,255,255,0.14); margin-top: 4px; }

/* 18 · LEGAL / STATIC PAGES
────────────────────────────────────────────────────────── */
.legal-hero { padding: 120px var(--content-x) 56px; max-width: var(--max-w); margin: 0 auto; }
.legal-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.legal-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(28px, 4vw, 40px); font-weight: 700; letter-spacing: -1.5px; color: var(--text); margin-bottom: 12px; }
.legal-meta  { font-size: 13px; color: var(--muted); }

.legal-body { max-width: 700px; margin: 0 auto; padding: 0 var(--content-x) var(--section-y); }

.legal-section { margin-bottom: 44px; }

.legal-section h2 { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 700; letter-spacing: -0.3px; color: var(--text); margin-bottom: 12px; padding-top: 10px; border-top: 1px solid var(--border); }
.legal-section p  { font-size: 14px; color: var(--soft); line-height: 1.8; margin-bottom: 10px; }
.legal-section ul { padding-left: 20px; margin-bottom: 10px; }
.legal-section ul li { font-size: 14px; color: var(--soft); line-height: 1.8; margin-bottom: 5px; }

.legal-summary-card { padding: 22px 24px; margin-bottom: 32px; }
.legal-summary-card p { font-size: 14px; color: var(--soft); line-height: 1.75; margin-bottom: 0; }

/* 19 · SUPPORT FAQ
────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 3px; margin-bottom: 48px; }

.faq-item { border-radius: var(--r-sm); overflow: hidden; border: 1px solid var(--border); }

.faq-question { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; cursor: pointer; background: transparent; border: none; color: var(--text); font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600; width: 100%; text-align: left; transition: background 0.2s; letter-spacing: -0.2px; }
.faq-question:hover { background: rgba(255,255,255,0.03); }

.faq-chevron { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; font-size: 9px; color: var(--muted); transition: transform 0.3s var(--ease), background 0.2s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); background: rgba(255,255,255,0.1); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner { padding: 0 22px 20px; font-size: 14px; color: var(--soft); line-height: 1.75; border-top: 1px solid var(--border); padding-top: 16px; }

.support-contact { padding: 28px 32px; text-align: center; }
.support-contact h2 { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.support-contact p  { font-size: 14px; color: var(--soft); margin-bottom: 14px; }
.support-contact a  { color: var(--steps); text-shadow: 0 0 12px var(--glow-steps); }
.support-contact a:hover { text-decoration: underline; }

/* 20 · SCROLL REVEAL
────────────────────────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
[data-reveal].visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }
[data-reveal][data-delay="4"] { transition-delay: 0.32s; }
[data-reveal][data-delay="5"] { transition-delay: 0.40s; }
[data-reveal][data-delay="6"] { transition-delay: 0.48s; }

/* 21 · KEYFRAMES
────────────────────────────────────────────────────────── */
@keyframes curtainSlideUp { to { transform: translateY(-100%); } }
@keyframes fadeUp  { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes dotPop  { 0% { opacity: 0; transform: scale(0.3); } 65% { opacity: 1; transform: scale(1.35); } 100% { opacity: 1; transform: scale(1); } }

@keyframes orbFadeIn { from { opacity: 0; } to { opacity: 0.14; } }
@keyframes orbDrift  { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(var(--drift-x, 20px), var(--drift-y, -20px)); } }

@keyframes glowPulse  { 0%, 100% { opacity: 0.8; box-shadow: 0 0 6px var(--glow-workout); } 50% { opacity: 1; box-shadow: 0 0 14px 3px var(--glow-workout); } }
@keyframes scrollBob  { 0%, 100% { transform: scaleY(1); opacity: 0.35; } 50% { transform: scaleY(1.25); opacity: 0.7; } }

@keyframes connectorFlow { from { transform: translateX(-100%); } to { transform: translateX(100%); } }

@keyframes heartPulse  { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }
@keyframes lockWobble  { 0%, 100% { transform: rotate(0deg); } 40% { transform: rotate(-15deg); } 45% { transform: rotate(-15deg) translateY(-2px); } 50% { transform: rotate(-15deg); } }
@keyframes bloomPulse  { 0%, 100% { transform: scale(0.85); opacity: 0.5; } 50% { transform: scale(1.12); opacity: 1; } }


/* 22 · RESPONSIVE
────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .unlock-section { grid-template-columns: 1fr; gap: 40px; }
  .unlock-spacer  { display: none; }
  .unlock-states  { flex-direction: row; flex-wrap: wrap; }
  .unlock-state-card { flex: 1 1 calc(50% - 4px); min-width: 140px; }

  .how-grid { grid-template-columns: 1fr; }
  .how-connector { display: none; }

  .how-step { display: grid; grid-template-columns: 72px 1fr; grid-template-rows: auto auto; column-gap: 20px; text-align: left; padding: 24px 20px; border-bottom: 1px solid var(--border); border-radius: 0; }
  .how-step:last-child { border-bottom: none; }
  .how-step-num   { grid-column: 1; grid-row: 1; text-align: center; margin-bottom: 8px; }
  .how-step-icon  { grid-column: 1; grid-row: 2; margin-bottom: 0; }
  .how-step-title { grid-column: 2; grid-row: 1; align-self: end; }
  .how-step-desc  { grid-column: 2; grid-row: 2; max-width: none; }

  .credit-layout    { grid-template-columns: 1fr; gap: 40px; }
  .earn-grid        { grid-template-columns: 1fr 1fr; }
  .reflection-layout { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .pricing-grid  { grid-template-columns: 1fr; }
  .earn-grid     { grid-template-columns: 1fr; }
  .nav-links     { display: none; }
  .unlock-states { flex-direction: column; }

  .site-footer { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .footer-brand { justify-content: center; }
  .footer-meta  { text-align: center; }

  .trust-row  { flex-direction: column; align-items: stretch; }
  .trust-pill { justify-content: center; }
}

/* 23 · REDUCED MOTION
────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .orb { opacity: 0.1 !important; }
  .curtain-wordmark, .curtain-dot, .hero-badge, .hero-title, .hero-sub, .hero-ctas, .hero-footnote { opacity: 1 !important; transform: none !important; }
}
