/* ═══════════════════════════════════════════════════════════
   FitJeton — Website Design System v1
   Derived 1:1 from the app's tokens (styles.css of the app
   prototypes) + the App Store screenshot language.
   Rules: orange = jeton/value · gold = the coin · green = action
   ═══════════════════════════════════════════════════════════ */

:root {
  /* — Pine (the app's dark green family) — */
  --pine-950: #0c2316;
  --pine-900: #0f2a1c;   /* app --accent-2 */
  --pine-800: #173d28;
  --pine-700: #1f5135;   /* app --accent (brand pine) */
  --pine-600: #266041;

  /* — Light canvas (the app's light surfaces) — */
  --cream: #faf8f4;      /* app --bg */
  --cream-warm: #f2efe8; /* app --bg-warm */
  --surface: #ffffff;
  --surface-2: #f6f3ec;

  /* — Gold: the coin (app's exact gold ramp) — */
  --gold: #c8a24a;
  --gold-light: #e6c77a;
  --gold-pale: #f5dd9b;
  --gold-deep: #8b6d2a;

  /* — Orange: jeton value (ring arc, jeton numbers) — */
  --jeton: #ef8f35;
  --jeton-soft: #fdf0e1;

  /* — Green: action — */
  --action: #2daa4c;
  --action-deep: #1f7a3a;
  --green-bright: #4fc36a;  /* line-2 headline green on dark */
  --green-leaf: #2e8b4f;    /* line-2 headline green on light */
  --green-soft: #e8efe9;

  /* — Ink — */
  --ink: #12130f;
  --ink-2: #3a3c36;
  --ink-3: #7a7c74;
  --mint: #e8f2ec;       /* body on dark */
  --mint-dim: #9fbaae;   /* muted on dark */

  --hair-d: rgba(255,255,255,0.09);
  --hair-l: rgba(18,19,15,0.08);

  --r-lg: 28px;
  --r-md: 20px;
  --r-sm: 14px;

  --shadow-soft: 0 8px 24px -6px rgba(40,34,18,0.10), 0 2px 5px rgba(40,34,18,0.05);
  --shadow-lift: 0 24px 50px -16px rgba(15,42,28,0.35), 0 4px 10px -4px rgba(15,42,28,0.15);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --font-display: 'Hanken Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-num: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
html { overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--pine-900);
  letter-spacing: -0.01em;
  line-height: 1.6;
  overflow-x: hidden;
}
section { scroll-margin-top: 76px; }
img { max-width: 100%; display: block; }
a { color: inherit; }

.num { font-family: var(--font-num); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }

/* ───── Acts ───── */
.act-dark {
  background: linear-gradient(180deg, var(--pine-900) 0%, var(--pine-800) 55%, var(--pine-900) 100%);
  color: var(--mint);
}
.act-light { background: var(--cream); color: var(--ink); }
.act-warm  { background: var(--cream-warm); color: var(--ink); }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.sec { padding: 88px 0; position: relative; }

/* ───── Type system ───── */
.eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin: 0 0 18px;
}
.act-dark .eyebrow { color: var(--gold-light); }
.act-light .eyebrow, .act-warm .eyebrow { color: var(--gold-deep); }

.h-split {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 5.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.h-split .l1 { display: block; }
.h-split .l2 { display: block; }
.act-dark .l1 { color: #ffffff; }
.act-dark .l2 { color: var(--green-bright); }
.act-light .l1, .act-warm .l1 { color: var(--pine-900); }
.act-light .l2, .act-warm .l2 { color: var(--green-leaf); }

.lede {
  font-size: 17px; line-height: 1.65; margin: 0;
  max-width: 560px; text-wrap: pretty;
}
.act-dark .lede { color: var(--mint-dim); }
.act-light .lede, .act-warm .lede { color: var(--ink-2); }

.sec-head { max-width: 640px; margin-bottom: 48px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .lede { margin: 0 auto; }

/* ───── The coin ───── */
.coin {
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold-pale) 0%, var(--gold) 65%, var(--gold-deep) 100%);
  box-shadow: inset 0 -1px 2px rgba(0,0,0,0.25), inset 0 1px 1px rgba(255,255,255,0.45),
              0 8px 20px -8px rgba(108,84,30,0.55);
  display: inline-flex; align-items: center; justify-content: center;
  color: #6b5420;
  font-family: var(--font-display); font-weight: 800;
  position: relative; flex-shrink: 0;
  width: 24px; height: 24px; font-size: 13px;
}
.coin::before {
  content: ""; position: absolute; inset: 9%;
  border-radius: 50%;
  border: 1px solid rgba(107,84,32,0.35);
}
.coin.lg { width: 72px; height: 72px; font-size: 38px; }
.coin.lg::before { border-width: 2px; }
.coin.xl { width: 104px; height: 104px; font-size: 54px; }
.coin.xl::before { border-width: 2.5px; }

/* ───── Buttons ───── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  letter-spacing: -0.01em; text-decoration: none; cursor: pointer;
  border: none; border-radius: 999px;
  padding: 14px 28px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.2s;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--action); color: #fff;
  box-shadow: 0 10px 24px -10px rgba(45,170,76,0.65), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-primary:hover { background: var(--action-deep); }
.btn-ghost-dark {
  background: rgba(255,255,255,0.06); color: var(--mint);
  box-shadow: inset 0 0 0 1px var(--hair-d);
}
.btn-ghost-dark:hover { background: rgba(255,255,255,0.11); }
.btn-pine { background: var(--pine-700); color: #fff; }
.btn-pine:hover { background: var(--pine-800); }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }

/* Store badges — typographic, premium */
.badges { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; flex-direction: column; justify-content: center;
  text-decoration: none;
  padding: 9px 20px 10px; border-radius: 14px;
  background: #0e1411; color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14);
  transition: background 0.2s;
  min-width: 148px;
}
.store-badge:hover { background: #1a231e; }
.store-badge .pre { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.6; font-weight: 500; }
.store-badge .name { font-family: var(--font-display); font-size: 16.5px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.25; }
.act-light .store-badge, .act-warm .store-badge { box-shadow: none; }

/* ───── Jeton value badges / chips ───── */
.jeton-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-num); font-size: 12.5px; font-weight: 600;
  color: #b05f10; background: var(--jeton-soft);
  border: 1px solid rgba(239,143,53,0.25);
  padding: 4px 10px; border-radius: 999px;
  white-space: nowrap;
}
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--ink-2);
  background: var(--surface); border: 1px solid var(--hair-l);
  padding: 8px 16px; border-radius: 999px; cursor: pointer;
  transition: all 0.2s;
}
.chip.on { background: var(--pine-700); color: #fff; border-color: var(--pine-700); }
.gold-chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 600; color: var(--gold-deep);
  background: linear-gradient(180deg, #fbf1d6, #f3e4b4);
  border: 1px solid rgba(139,109,42,0.18);
  padding: 6px 13px; border-radius: 999px;
  box-shadow: 0 1px 2px rgba(139,109,42,0.1), inset 0 1px 0 rgba(255,255,255,0.6);
}
.earn-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(180deg, var(--pine-600), var(--pine-700));
  color: var(--gold-light);
  font-family: var(--font-num); font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em;
  padding: 9px 18px 9px 9px; border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 8px 18px -8px rgba(15,42,28,0.5);
}

/* ───── Nav ───── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  transition: background 0.35s, box-shadow 0.35s;
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 28px;
}
.nav.scrolled {
  background: rgba(15,42,28,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--hair-d);
}
.brand {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 800; font-size: 19px;
  color: #fff; text-decoration: none; letter-spacing: -0.02em;
  margin-right: auto;
}
.nav-links { display: none; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--mint-dim);
  text-decoration: none; padding: 8px 13px; border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav .btn { padding: 10px 20px; font-size: 14px; }
.nav-burger {
  display: inline-flex; flex-direction: column; gap: 5px; justify-content: center;
  width: 40px; height: 40px; padding: 0 9px;
  background: rgba(255,255,255,0.07); border: 1px solid var(--hair-d);
  border-radius: 12px; cursor: pointer;
}
.nav-burger span { height: 1.5px; background: var(--mint); border-radius: 2px; }
.nav-menu {
  position: fixed; inset: 64px 16px auto 16px; z-index: 59;
  background: var(--pine-800); border: 1px solid var(--hair-d);
  border-radius: var(--r-md); padding: 10px;
  display: none; flex-direction: column;
  box-shadow: var(--shadow-lift);
}
.nav-menu.open { display: flex; }
.nav-menu a {
  color: var(--mint); text-decoration: none; font-size: 15px; font-weight: 500;
  padding: 13px 16px; border-radius: 12px;
}
.nav-menu a:hover { background: rgba(255,255,255,0.06); }
.nav-menu .nav-menu-cta {
  margin-top: 6px; justify-content: center; color: #fff;
}
.nav-menu .nav-menu-cta:hover { background: var(--action-deep); }

/* ───── Jeton Akışı thread ───── */
.flow-rail {
  position: fixed; right: 26px; top: 50%;
  transform: translateY(-50%);
  height: 56vh; width: 2px; z-index: 50;
  background: linear-gradient(180deg, rgba(200,162,74,0) 0%, rgba(200,162,74,0.4) 12%, rgba(200,162,74,0.4) 88%, rgba(200,162,74,0) 100%);
  display: none;
}
.flow-node {
  position: absolute; left: 50%; transform: translate(-50%, -50%);
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--pine-600);
  box-shadow: 0 0 0 1px rgba(200,162,74,0.45);
  transition: background 0.3s, box-shadow 0.3s;
}
.flow-node.passed { background: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.flow-token {
  position: absolute; left: 50%; top: 0;
  width: 16px; height: 16px; margin-left: -8px; margin-top: -8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold-pale) 0%, var(--gold) 65%, var(--gold-deep) 100%);
  box-shadow: inset 0 -0.5px 1px rgba(0,0,0,0.25), 0 2px 6px rgba(15,42,28,0.4);
  transition: top 0.45s var(--ease-out);
}
.flow-edge {
  position: fixed; left: 0; top: 0; width: 2px; height: 0%;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  z-index: 55;
}

/* ───── Narrative bridges (v2 — chapter turns) ───── */
.bridge {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  text-align: center; margin: -28px auto 56px; max-width: 440px;
  padding: 0 24px;
}
.bridge .stem {
  width: 1px; height: 52px;
  background: linear-gradient(180deg, transparent, rgba(200,162,74,0.55));
}
.bridge .coin { width: 16px; height: 16px; font-size: 9px; }
.bridge p {
  margin: 0; font-size: 15px; font-weight: 500; letter-spacing: -0.01em;
  line-height: 1.55; text-wrap: balance;
}
.act-dark .bridge p { color: var(--mint-dim); }
.act-light .bridge p, .act-warm .bridge p { color: var(--ink-3); }

/* Handwritten accent — used once, hero only */
.hand {
  font-family: 'Caveat', cursive; font-weight: 600;
  color: var(--gold-light); letter-spacing: 0;
}
.hero-hand {
  position: absolute; right: 3%; top: 8px; z-index: 3;
  font-size: 23px; transform: rotate(-7deg);
  white-space: nowrap;
}
.hero-hand svg { display: block; margin: 2px auto 0; }

/* ───── Scroll reveals ───── */
.rv { opacity: 0; transform: translateY(14px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.rv.in { opacity: 1; transform: none; }
.rv.d1 { transition-delay: 0.08s; }
.rv.d2 { transition-delay: 0.16s; }
.rv.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
  .flow-token { transition: none; }
  * { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; }
}

/* ═══════ HERO ═══════ */
.hero { padding: 128px 0 0; overflow: hidden; position: relative; }
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 160px;
  background: radial-gradient(60% 100% at 50% 100%, rgba(200,162,74,0.07) 0%, rgba(200,162,74,0) 100%);
  pointer-events: none;
}
.hero-grid { display: grid; gap: 56px; align-items: center; }
.hero .h-split { font-size: clamp(42px, 6.5vw, 72px); }
.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin: 32px 0 22px; }
.hero-trust { font-size: 13px; color: var(--mint-dim); margin: 18px 0 0; display: flex; align-items: center; gap: 8px; }
.hero-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

.hero-stage { position: relative; display: flex; justify-content: center; padding-bottom: 0; }
.hero-coin {
  position: absolute; right: 8%; top: 52px; z-index: 2;
  transform: rotate(12deg);
}

/* ───── Phone mockup (recreated raw screen — not a composite) ───── */
.phone {
  width: 312px;
  background: #101312;
  border-radius: 48px;
  padding: 10px;
  box-shadow: var(--shadow-lift), inset 0 0 0 1.5px rgba(255,255,255,0.12);
  position: relative; z-index: 1;
}
.phone-screen {
  border-radius: 38px; overflow: hidden;
  background: var(--cream);
  color: var(--ink);
  font-size: 13px; line-height: 1.45; letter-spacing: -0.01em;
}
.phone.crop .phone-screen { border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
.phone.crop { border-bottom-left-radius: 0; border-bottom-right-radius: 0; padding-bottom: 0; box-shadow: var(--shadow-lift); }

.ph-dark {
  background: linear-gradient(175deg, var(--pine-600) 0%, var(--pine-700) 55%, var(--pine-800) 100%);
  color: #fff; padding: 12px 18px 22px;
  border-bottom-left-radius: 30px; border-bottom-right-radius: 30px;
}
.ph-status {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; font-weight: 600; padding: 4px 6px 12px;
}
.ph-status svg { display: block; opacity: 0.9; }
.ph-toprow { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.ph-date {
  font-size: 10px; font-weight: 600; padding: 5px 10px;
  background: rgba(255,255,255,0.1); border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
}
.ph-help {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 600; color: var(--gold-light);
  border: 1px solid rgba(230,199,122,0.45);
  padding: 5px 10px; border-radius: 999px;
}
.ph-greet { font-size: 12px; color: var(--mint-dim); margin-top: 14px; }
.ph-name { font-family: var(--font-display); font-size: 23px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
.ph-goal {
  display: inline-flex; font-size: 10px; font-weight: 600; color: var(--mint);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08);
  padding: 4px 10px; border-radius: 999px; margin-top: 9px;
}
.ph-ringwrap { display: flex; flex-direction: column; align-items: center; margin-top: 14px; }
.ph-ring { position: relative; width: 172px; height: 172px; }
.ph-ring svg { transform: rotate(-90deg); display: block; }
.ph-ring .track { stroke: rgba(255,255,255,0.92); }
.ph-ring .arc { stroke: var(--jeton); stroke-linecap: round; }
.ph-ring-label {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1px;
}
.ph-ring-label .k { font-size: 9.5px; letter-spacing: 0.22em; color: var(--mint-dim); font-weight: 600; }
.ph-ring-label .v { font-family: var(--font-num); font-size: 38px; font-weight: 700; letter-spacing: -0.04em; line-height: 1; color: #fff; }
.ph-ring-coin {
  position: absolute; width: 17px; height: 17px; font-size: 9px;
}
.ph-success {
  display: flex; align-items: center; gap: 7px;
  width: 100%; margin-top: 14px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; padding: 9px 12px;
  font-size: 11px; font-weight: 500; color: var(--mint);
}
.ph-success .spacer { margin-left: auto; color: var(--mint-dim); font-size: 10.5px; }
.ph-light { padding: 14px 14px 12px; }
.ph-macros { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.ph-macro {
  background: var(--surface); border-radius: 13px; padding: 8px 10px;
  box-shadow: 0 1px 2px rgba(31,27,14,0.05); border: 1px solid var(--hair-l);
}
.ph-macro .t { display: flex; align-items: center; gap: 4px; font-size: 8.5px; font-weight: 700; letter-spacing: 0.08em; color: var(--ink-3); }
.ph-macro .t i { width: 5px; height: 5px; border-radius: 50%; display: block; }
.ph-macro .v { font-family: var(--font-num); font-size: 15px; font-weight: 700; margin-top: 2px; }
.ph-macro .v small { font-size: 9px; color: var(--ink-3); font-weight: 500; }
.ph-label { font-size: 9.5px; font-weight: 700; letter-spacing: 0.16em; color: var(--ink-3); margin: 13px 2px 7px; display: flex; align-items: center; gap: 6px; }
.ph-label::before { content: ""; width: 3px; height: 11px; border-radius: 2px; background: var(--pine-700); }
.ph-meal {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border-radius: 15px; border: 1px solid var(--hair-l);
  padding: 9px 10px; margin-bottom: 7px;
  box-shadow: 0 1px 2px rgba(31,27,14,0.04);
}
.ph-meal .ico {
  width: 30px; height: 30px; border-radius: 10px;
  background: var(--surface-2); display: flex; align-items: center; justify-content: center;
}
.ph-meal .nm { font-size: 12.5px; font-weight: 600; }
.ph-meal .btns { margin-left: auto; display: flex; gap: 6px; }
.ph-meal .b {
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.ph-meal .b.add { background: var(--action); }
.ph-meal .b.zap { background: var(--jeton); }
.ph-tab {
  display: flex; align-items: center; justify-content: space-around;
  border-top: 1px solid var(--hair-l); background: var(--surface);
  padding: 9px 8px 13px; font-size: 8.5px; font-weight: 600; color: var(--ink-3);
}
.ph-tab .ti { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.ph-tab .ti.on { color: var(--pine-700); }
.ph-tab .add-fab {
  width: 38px; height: 38px; border-radius: 50%; margin-top: -22px;
  background: linear-gradient(180deg, var(--pine-600), var(--pine-700));
  display: flex; align-items: center; justify-content: center; color: #fff;
  box-shadow: 0 8px 16px -6px rgba(15,42,28,0.5), inset 0 1px 0 rgba(255,255,255,0.15);
}

/* ═══════ Jeton düştü ═══════ */
.drop-sec { text-align: center; padding: 110px 0; }
.drop-stage { height: 150px; display: flex; align-items: flex-end; justify-content: center; margin-bottom: 34px; }
.drop-coin { opacity: 0; }
.drop-sec.played .drop-coin { animation: coinDrop 1.1s var(--ease-out) forwards; }
@keyframes coinDrop {
  0%   { opacity: 0; transform: translateY(-110px) rotate(-14deg); }
  62%  { opacity: 1; transform: translateY(0) rotate(2deg); }
  80%  { transform: translateY(-7px) rotate(0deg); }
  100% { opacity: 1; transform: translateY(0); }
}
.drop-shadow {
  width: 64px; height: 8px; border-radius: 50%;
  background: rgba(0,0,0,0.35); filter: blur(4px);
  margin: 6px auto 0; opacity: 0;
}
.drop-sec.played .drop-shadow { animation: shadowIn 1.1s var(--ease-out) forwards; }
@keyframes shadowIn { 0%, 50% { opacity: 0; transform: scale(0.5); } 100% { opacity: 1; transform: scale(1); } }
.drop-sec .h-split { font-size: clamp(38px, 5.5vw, 60px); }
.drop-sec .lede { margin: 0 auto; }

/* ═══════ Nasıl çalışır ═══════ */
.how-cards { display: grid; gap: 14px; margin-top: 8px; }
.how-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--hair-d);
  border-radius: var(--r-md); padding: 28px 26px;
}
.how-card .n {
  font-family: var(--font-num); font-size: 12px; color: var(--gold-light);
  letter-spacing: 0.1em; display: block; margin-bottom: 14px;
}
.how-card h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: #fff; margin: 0 0 8px; letter-spacing: -0.02em;
}
.how-card p { font-size: 14.5px; color: var(--mint-dim); margin: 0; line-height: 1.6; }
.how-flow {
  margin-top: 44px;
  display: flex; align-items: center; justify-content: center; gap: 0;
  flex-wrap: wrap;
}
.hf-item { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 0 22px; }
.hf-item .bubble {
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 1px solid var(--hair-d);
  display: flex; align-items: center; justify-content: center; color: var(--mint);
}
.hf-item .cap { font-size: 12px; font-weight: 600; color: var(--mint-dim); letter-spacing: 0.02em; }
.hf-item .val { font-family: var(--font-num); font-size: 13px; font-weight: 600; }
.hf-item .val.out { color: var(--jeton); }
.hf-item .val.in { color: var(--green-bright); }
.hf-link { width: 56px; height: 1px; background: linear-gradient(90deg, rgba(200,162,74,0.1), rgba(200,162,74,0.55), rgba(200,162,74,0.1)); position: relative; }
.hf-link::after {
  content: ""; position: absolute; right: -1px; top: -2.5px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}
.how-reassure {
  margin: 44px auto 0; max-width: 520px; text-align: center;
  font-size: 15px; color: var(--mint); line-height: 1.7;
  padding-top: 28px; border-top: 1px solid var(--hair-d);
}
.how-reassure strong { color: var(--gold-light); font-weight: 600; }

/* ═══════ Light feature cards (shared) ═══════ */
.card {
  background: var(--surface); border-radius: var(--r-md);
  border: 1px solid var(--hair-l); box-shadow: var(--shadow-soft);
  padding: 26px;
}
.feature-grid { display: grid; gap: 16px; }
.feature-card h3 {
  font-family: var(--font-display); font-size: 19px; font-weight: 700;
  margin: 16px 0 7px; letter-spacing: -0.02em; color: var(--pine-900);
}
.feature-card p { font-size: 14px; color: var(--ink-2); margin: 0; line-height: 1.6; }
.feature-card .f-ico {
  width: 44px; height: 44px; border-radius: 13px;
  background: var(--green-soft); color: var(--pine-700);
  display: flex; align-items: center; justify-content: center;
}
.ne-yesem { margin-top: 18px; }
.ne-yesem .chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.ne-yesem .kalan { display: flex; align-items: baseline; gap: 8px; }
.ne-yesem .kalan .v { font-family: var(--font-num); font-size: 34px; font-weight: 700; color: var(--pine-900); }
.ne-yesem .kalan .u { font-size: 13px; color: var(--ink-3); }

/* ═══════ Recipes ═══════ */
.recipe-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
.recipe-card {
  background: var(--surface); border-radius: var(--r-md);
  border: 1px solid var(--hair-l); box-shadow: var(--shadow-soft);
  padding: 16px; display: flex; gap: 14px; align-items: center;
  position: relative;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.recipe-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.recipe-thumb {
  width: 72px; height: 72px; border-radius: 16px; flex-shrink: 0;
  background: var(--surface-2); border: 1px solid var(--hair-l);
  display: flex; align-items: center; justify-content: center;
}
.recipe-thumb img { width: 54px; height: 54px; object-fit: contain; }
.recipe-card h4 { font-size: 15.5px; font-weight: 600; margin: 0 0 3px; letter-spacing: -0.015em; }
.recipe-card .desc { font-size: 12.5px; color: var(--ink-3); margin: 0 0 8px; }
.recipe-card .row { display: flex; align-items: center; gap: 8px; }
.recipe-card .ekle {
  margin-left: auto; align-self: center; flex-shrink: 0;
  font-size: 13px; font-weight: 600; color: #fff;
  background: var(--action); border: none; border-radius: 999px;
  padding: 8px 18px; cursor: pointer; transition: background 0.2s;
}
.recipe-card .ekle:hover { background: var(--action-deep); }
.recipe-lock {
  position: absolute; top: 12px; right: 12px;
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px; font-weight: 600; color: var(--gold-deep);
  background: linear-gradient(180deg, #fbf1d6, #f3e4b4);
  padding: 4px 9px; border-radius: 999px;
  border: 1px solid rgba(139,109,42,0.18);
}
.recipe-card.locked .ekle { background: var(--surface-2); color: var(--ink-3); }

/* ═══════ Kaçamak — recovery timeline ═══════ */
.recover { display: grid; gap: 40px; align-items: center; }
.recover-card { padding: 30px 26px; }
.recover-head { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.recover-head h4 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin: 0; letter-spacing: -0.02em; }
.recover-head .tag { margin-left: auto; }
.recover-sub { font-size: 13px; color: var(--ink-3); margin: 0 0 22px; }
.recover-days { display: flex; flex-direction: column; gap: 0; }
.recover-day { display: flex; gap: 16px; position: relative; padding-bottom: 22px; }
.recover-day:last-child { padding-bottom: 0; }
.recover-day .rail { display: flex; flex-direction: column; align-items: center; width: 26px; flex-shrink: 0; }
.recover-day .node {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--green-soft); color: var(--pine-700);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-num); font-size: 11.5px; font-weight: 700;
  border: 1px solid rgba(31,81,53,0.15);
}
.recover-day .line { flex: 1; width: 1.5px; background: linear-gradient(180deg, rgba(31,81,53,0.2), rgba(31,81,53,0.06)); margin-top: 4px; }
.recover-day .nm { font-size: 14px; font-weight: 600; margin: 3px 0 2px; }
.recover-day .ds { font-size: 12.5px; color: var(--ink-3); }
.recover-day .gain { margin-left: auto; align-self: flex-start; font-family: var(--font-num); font-size: 12.5px; font-weight: 600; color: var(--action-deep); white-space: nowrap; padding-top: 4px; }
.recover-day.final .node { background: linear-gradient(180deg, var(--pine-600), var(--pine-700)); color: var(--gold-light); border: none; }
.recover-foot {
  margin-top: 20px; padding: 12px 16px; border-radius: var(--r-sm);
  background: var(--green-soft); font-size: 13px; color: var(--pine-800);
  display: flex; align-items: center; gap: 9px;
}

/* ═══════ Hareket ═══════ */
.move { display: grid; gap: 40px; align-items: center; }
.activity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.activity {
  background: var(--surface); border: 1px solid var(--hair-l);
  border-radius: 18px; padding: 18px 10px 14px;
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 600; color: var(--ink-2);
  box-shadow: 0 1px 2px rgba(31,27,14,0.04);
}
.activity svg { color: var(--ink-2); }
.activity.on {
  background: linear-gradient(180deg, var(--pine-600), var(--pine-700));
  color: #fff; border-color: transparent;
  box-shadow: 0 14px 28px -12px rgba(15,42,28,0.45);
}
.activity.on svg { color: #fff; }
.move-side .earn-pill { margin: 22px 0 0; }
.steps-mini {
  margin-top: 14px; display: flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--hair-l);
  border-radius: var(--r-sm); padding: 14px 18px; box-shadow: var(--shadow-soft);
  max-width: 320px;
}
.steps-mini .v { font-family: var(--font-num); font-size: 20px; font-weight: 700; }
.steps-mini .l { font-size: 12px; color: var(--ink-3); }

/* ═══════ İlerleme (dark) ═══════ */
.progress-grid { display: grid; gap: 16px; }
.prog-points { display: grid; gap: 14px; }
.prog-point { padding: 22px 24px; background: rgba(255,255,255,0.045); border: 1px solid var(--hair-d); border-radius: var(--r-md); }
.prog-point h4 { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: #fff; margin: 0 0 5px; letter-spacing: -0.02em; }
.prog-point p { font-size: 13.5px; color: var(--mint-dim); margin: 0; }
.trend-card {
  background: rgba(255,255,255,0.045); border: 1px solid var(--hair-d);
  border-radius: var(--r-md); padding: 24px;
}
.trend-card .tc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.trend-card .tc-head .t { font-size: 13px; font-weight: 600; color: var(--mint); }
.trend-card .tc-head .num { font-size: 12px; color: var(--gold-light); }
.week-pills { display: flex; gap: 7px; margin-bottom: 22px; }
.week-pill {
  flex: 1; height: 44px; border-radius: 11px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--hair-d);
  position: relative;
}
.week-pill.full { background: linear-gradient(180deg, var(--green-bright), var(--action-deep)); border-color: transparent; }
.week-pill.part { background: rgba(79,195,106,0.25); }
.week-pill span {
  position: absolute; top: -19px; left: 50%; transform: translateX(-50%);
  font-size: 9.5px; font-weight: 600; color: var(--mint-dim); letter-spacing: 0.04em;
}
.trend-svg { display: block; width: 100%; height: auto; }

/* ═══════ Premium ═══════ */
.premium-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(230,199,122,0.22);
  border-radius: var(--r-lg); padding: 36px 28px;
  display: grid; gap: 32px;
  position: relative; overflow: hidden;
}
.premium-card::before {
  content: ""; position: absolute; inset: -40% -20% auto;
  height: 80%;
  background: radial-gradient(50% 60% at 50% 0%, rgba(230,199,122,0.1), transparent 70%);
  pointer-events: none;
}
.premium-feats { display: flex; flex-direction: column; gap: 14px; position: relative; }
.premium-feat { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--mint); }
.plan {
  border: 1px solid var(--hair-d); border-radius: var(--r-md);
  padding: 18px 20px; display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px; position: relative;
}
.plan .pn { font-size: 15px; font-weight: 600; color: #fff; }
.plan .pd { font-size: 12.5px; color: var(--mint-dim); }
.plan .tag { margin-left: auto; }
.plan.best {
  border-color: rgba(230,199,122,0.5);
  background: rgba(230,199,122,0.06);
}
.tag-gold {
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--pine-900); background: linear-gradient(180deg, var(--gold-pale), var(--gold));
  padding: 4px 10px; border-radius: 999px;
}

/* ─── Launch pricing ─── */
.plan.founder {
  display: block; padding: 22px 22px 20px;
  border-color: rgba(230,199,122,0.55);
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(230,199,122,0.12), transparent 55%),
    linear-gradient(180deg, rgba(45,170,76,0.07), rgba(230,199,122,0.04));
  margin-bottom: 14px;
}
.founder-toprow { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.founder-tag {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--gold-light);
  background: rgba(230,199,122,0.1);
  border: 1px solid rgba(230,199,122,0.3);
  padding: 5px 11px; border-radius: 999px;
}
.founder-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; margin: 15px 0 0;
}
.founder-price { text-align: right; line-height: 1; white-space: nowrap; }
.pp-was {
  font-family: var(--font-num); font-size: 15px; font-weight: 500;
  color: var(--mint-dim); text-decoration: line-through;
  text-decoration-color: rgba(159,186,174,0.7); margin-right: 8px;
}
.pp-now {
  font-family: var(--font-num); font-size: 28px; font-weight: 700;
  color: var(--gold-light); letter-spacing: -0.03em;
}
.pp-per { font-size: 14px; font-weight: 500; color: var(--mint-dim); margin-left: 2px; letter-spacing: 0; }
.founder-micro { display: flex; flex-direction: column; gap: 3px; margin: 13px 0 0; }
.fm-line { font-size: 13px; color: var(--mint-dim); display: flex; align-items: center; gap: 7px; }
.fm-line::before {
  content: ""; width: 14px; height: 14px; flex: none; border-radius: 50%;
  background: rgba(45,170,76,0.18);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234fc36a' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/9px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234fc36a' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/9px no-repeat;
  background-color: var(--green-bright);
}
.fm-strong { color: #fff; font-weight: 600; font-size: 13.5px; }

/* Monthly plan price */
.plan-price { margin-left: auto; text-align: right; line-height: 1; white-space: nowrap; }
.plan-price .pp-was { font-size: 13px; }
.plan-price .pp {
  font-family: var(--font-num); font-size: 18px; font-weight: 700;
  color: #fff; letter-spacing: -0.02em;
}
.plan-price .pp-per { font-size: 12px; }

/* ═══════ Dietitian ═══════ */
.diet-note { display: grid; gap: 36px; align-items: center; }
.diet-portrait {
  width: 132px; height: 132px; border-radius: 50%;
  background: repeating-linear-gradient(45deg, #ece7da 0 8px, #f4f0e6 8px 16px);
  border: 1px solid var(--hair-l);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-num); font-size: 10px; color: var(--ink-3);
  text-align: center; line-height: 1.5; padding: 14px;
}
.diet-quote {
  font-family: var(--font-display); font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 600; letter-spacing: -0.02em; line-height: 1.45;
  color: var(--pine-900); margin: 0 0 18px; text-wrap: pretty;
}
.diet-sign { font-size: 14px; color: var(--ink-3); }
.diet-sign strong { color: var(--ink); font-weight: 600; }

/* ═══════ Download ═══════ */
.dl { text-align: center; padding: 110px 0; }
.dl .badges { justify-content: center; margin-top: 32px; }
.dl-qr {
  margin: 40px auto 0; width: 132px;
  background: var(--surface); border-radius: var(--r-sm); padding: 10px;
  box-shadow: 0 0 0 1px rgba(230,199,122,0.5), var(--shadow-soft);
  display: none;
}
.dl-qr .qr-ph {
  aspect-ratio: 1; border-radius: 8px;
  background: repeating-linear-gradient(45deg, #e8e4d8 0 6px, #f3f0e7 6px 12px);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-num); font-size: 9.5px; color: var(--ink-3);
  text-align: center; line-height: 1.5; padding: 10px;
}
.dl-ring { margin: 0 auto 38px; width: 150px; position: relative; }
.dl-ring svg { transform: rotate(-90deg); display: block; }
.dl-ring .lbl { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.dl-ring .lbl .v { font-family: var(--font-num); font-size: 30px; font-weight: 700; color: #fff; letter-spacing: -0.04em; }
.dl-ring .lbl .k { font-size: 8.5px; letter-spacing: 0.22em; color: var(--mint-dim); font-weight: 600; }

/* ═══════ SSS ═══════ */
.faq { max-width: 720px; margin: 0 auto; }
.faq details {
  background: var(--surface); border: 1px solid var(--hair-l);
  border-radius: var(--r-sm); margin-bottom: 10px;
  box-shadow: var(--shadow-soft);
}
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 600; padding: 18px 20px;
  letter-spacing: -0.015em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: var(--surface-2); border: 1px solid var(--hair-l);
  transition: background 0.25s;
}
.faq details[open] summary::before {
  background: radial-gradient(circle at 35% 30%, var(--gold-pale) 0%, var(--gold) 65%, var(--gold-deep) 100%);
  border-color: transparent;
}
.faq details p { margin: 0; padding: 0 20px 18px 40px; font-size: 14px; color: var(--ink-2); line-height: 1.65; }

/* ═══════ Footer ═══════ */
.footer { background: var(--pine-950); color: var(--mint-dim); padding: 64px 0 0; }
.footer-grid { display: grid; gap: 36px; padding-bottom: 48px; }
.footer h5 {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--mint); margin: 0 0 14px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer ul a { font-size: 13.5px; color: var(--mint-dim); text-decoration: none; }
.footer ul a:hover { color: #fff; }
.footer-brand p { font-size: 13.5px; margin: 12px 0 4px; color: var(--mint); }
.footer-brand .dry { font-size: 12px; color: var(--mint-dim); }
.footer-bottom {
  border-top: 1px solid var(--hair-d);
  padding: 20px 0; font-size: 12.5px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}

/* ═══════ Desktop ═══════ */
@media (min-width: 720px) {
  .how-cards { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .recipe-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; }
  .premium-card { grid-template-columns: 1.1fr 1fr; padding: 44px 40px; }
  .diet-note { grid-template-columns: auto 1fr; gap: 48px; }
  .recover { grid-template-columns: 1fr 1fr; }
  .move { grid-template-columns: 1fr 1fr; }
  .progress-grid { grid-template-columns: 1fr 1.2fr; align-items: center; }
}
@media (min-width: 1000px) {
  .sec { padding: 120px 0; }
  .nav-links { display: flex; }
  .nav-burger, .nav-menu { display: none; }
  .flow-rail { display: block; }
  .flow-edge { display: none; }
  .hero { padding: 170px 0 0; }
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 40px; }
  .recipe-grid { grid-template-columns: repeat(3, 1fr); }
  .recipe-card { flex-direction: column; align-items: flex-start; padding: 20px; }
  .recipe-thumb { width: 100%; height: 110px; }
  .recipe-thumb img { width: 76px; height: 76px; }
  .recipe-card .ekle { margin-left: 0; width: 100%; margin-top: 12px; padding: 10px 18px; }
  .recipe-card .body { width: 100%; }
  .dl-qr { display: block; }
}
@media (max-width: 999px) {
  .flow-edge { display: block; }
  .hero-stage { order: 2; }
}

/* ═══════ v3 — product-forward layer (scoped to body.v3) ═══════ */
.rv.rv-scale { transform: translateY(18px) scale(0.96); }
.rv.rv-scale.in { transform: none; }

.has-deco { overflow: hidden; }
.deco-ring { position: absolute; pointer-events: none; user-select: none; z-index: 0; }
.deco-ring circle { fill: none; }
.deco-ring .track { stroke: rgba(255,255,255,0.05); }
.deco-ring .arc { stroke: var(--jeton); stroke-linecap: round; opacity: 0.5; }
.act-light .deco-ring .track, .act-warm .deco-ring .track { stroke: rgba(18,19,15,0.05); }
body.v3 .sec > .wrap, body.v3 .hero > .wrap, body.v3 .dl > .wrap { position: relative; z-index: 1; }

/* Bigger hero product */
body.v3 .hero-coin { width: 112px; height: 112px; font-size: 56px; right: 2%; top: 26px; }
body.v3 .hero-coin::before { border-width: 2.5px; }
@media (min-width: 1000px) {
  body.v3 .hero .phone { width: 356px; }
}

/* Heavier "Jeton düştü" moment */
body.v3 .drop-coin { width: 132px; height: 132px; font-size: 66px; }
body.v3 .drop-stage { height: 176px; }
body.v3 .drop-shadow { width: 84px; }

/* Stronger bridge token */
body.v3 .bridge .coin { width: 22px; height: 22px; font-size: 12px; }
body.v3 .bridge .stem { height: 68px; }

/* Kaydet — editorial feature list + product phone */
.kaydet-grid { display: grid; gap: 48px; align-items: center; }
.feat-list { display: flex; flex-direction: column; gap: 28px; }
.feat-li { display: flex; gap: 18px; align-items: flex-start; }
.feat-li h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; margin: 2px 0 5px; letter-spacing: -0.02em; color: var(--pine-900); }
.feat-li p { font-size: 14.5px; color: var(--ink-2); margin: 0; line-height: 1.6; max-width: 400px; }
.kaydet-stage { display: flex; justify-content: center; }
@media (min-width: 1000px) { .kaydet-grid { grid-template-columns: 1.05fr 0.95fr; } }

/* Light app sheets inside phones */
.ph-status.ink { color: var(--ink); }
.ph-sheet, .ph-pad { padding: 2px 16px 18px; }
.sh-title {
  font-family: var(--font-display); font-size: 19px; font-weight: 800;
  letter-spacing: -0.02em; display: flex; justify-content: space-between;
  align-items: center; margin: 6px 2px 14px;
}
.sh-x {
  width: 26px; height: 26px; border-radius: 50%; background: var(--surface-2);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-3); font-size: 12px; font-weight: 400;
}
.ph-photo-tile {
  border-radius: 18px; border: 1.5px dashed rgba(31,81,53,0.35);
  background: var(--green-soft); padding: 26px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  text-align: center; color: var(--pine-800);
}
.ph-photo-tile .big { font-size: 13.5px; font-weight: 700; }
.ph-photo-tile .sub { font-size: 10.5px; color: var(--ink-3); }
.ph-opt {
  display: flex; align-items: center; gap: 11px;
  background: var(--surface); border: 1px solid var(--hair-l);
  border-radius: 14px; padding: 11px 12px; margin-top: 9px;
  font-size: 12.5px; font-weight: 600;
  box-shadow: 0 1px 2px rgba(31,27,14,0.04);
}
.ph-opt .oi {
  width: 30px; height: 30px; border-radius: 10px; background: var(--surface-2);
  display: flex; align-items: center; justify-content: center; color: var(--pine-700);
}
.ph-opt .chev { margin-left: auto; color: var(--ink-3); font-size: 14px; }
.ph-meal .ico img { width: 19px; height: 19px; object-fit: contain; }

/* Dark app screen inside phone (İlerleme) */
.scr-dark {
  background: linear-gradient(175deg, var(--pine-600) 0%, var(--pine-700) 55%, var(--pine-800) 100%);
  color: var(--mint); padding: 12px 16px 20px;
}
.scr-dark .sh-title { color: #fff; margin-bottom: 8px; }
.scr-dark .tc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.scr-dark .tc-head .t { font-size: 12.5px; font-weight: 600; color: var(--mint); }
.scr-dark .tc-head .num { font-size: 11.5px; color: var(--gold-light); }
.scr-dark .week-pill { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.07); height: 38px; }
.prog-stage { display: flex; justify-content: center; }

/* Phone-framed telafi plan */
.phone .recover-head { margin-top: 2px; }
.phone .recover-head h4 { font-size: 16.5px; }
.recover-stage { display: flex; justify-content: center; }
