/* moneve.co — one visual language for the landing, the login and the member area.
   Pure black, Inter for everything, Instrument Serif italic only for the accents. */

html, body { background: #000000 !important; color: #ffffff; }

:root {
  --bg: #000000;
  --text: #ffffff;
  --muted: #9a9a9a;
  --stat: #d8d8d8;
  --border: rgba(255, 255, 255, 0.16);
  --border-soft: rgba(255, 255, 255, 0.12);
  --surface: rgba(255, 255, 255, 0.035);
  --win: #b7e4c7;
  --loss: #f2a6a0;

  --logo: 15.5px; --logo-mark: 22px; --nav: 14px; --nav-h: 40px;
  --btn: 13.5px; --btn-h: 40px; --hero-btn-h: 42px;
  --h1: 48px; --lede: 15.5px; --badge: 12.5px; --stat-size: 13.5px;
  --header-y: 22px; --header-x: 40px; --stats-x: 72px; --stats-y: 36px;
  --hero-gap: 85px; --copy-max: 860px; --lede-max: 470px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Instrument Serif", "Times New Roman", Times, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  background: #000000; background: var(--bg, #000000);
  color: #ffffff; color: var(--text, #ffffff);
}
body {
  font-family: var(--font);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; overflow-x: hidden; position: relative;
  font-size: 15px; line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img { display: block; max-width: 100%; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--muted); letter-spacing: -0.02em; }
.link { color: #fff; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(255,255,255,.35); }
.link:hover { text-decoration-color: #fff; }
[hidden] { display: none !important; }

/* ---------------------------------------------------------------- grain */
.grain {
  position: fixed; inset: -50%; z-index: 100; pointer-events: none; opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 1.4s steps(4) infinite;
}
@keyframes grain { 0% { transform: translate(0,0) } 25% { transform: translate(-3%,2%) } 50% { transform: translate(2%,-3%) } 75% { transform: translate(-1%,-1%) } 100% { transform: translate(0,0) } }

/* ------------------------------------------------------------ viewport */
.viewport { position: relative; min-height: 100vh; min-height: 100dvh; overflow: hidden; }
.hero-photo { position: absolute; inset: 0; z-index: 0; background: #000; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; opacity: 1; }
.hero-photo:not(.has-photo) {
  background:
    radial-gradient(120% 70% at 50% 110%, rgba(255,255,255,.16), rgba(255,255,255,0) 60%),
    radial-gradient(60% 40% at 20% 100%, rgba(255,255,255,.06), rgba(255,255,255,0) 70%),
    #000;
}
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 55%, rgba(0,0,0,.72) 100%);
}
.page {
  position: relative; z-index: 1; display: grid; grid-template-rows: auto 1fr auto;
  min-height: 100vh; min-height: 100dvh;
}
.page-auto { min-height: 100vh; min-height: 100dvh; grid-template-rows: auto 1fr auto; }

/* -------------------------------------------------------------- header */
.header {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: var(--header-y) var(--header-x) 10px; position: relative; z-index: 50;
}
.header-min { grid-template-columns: 1fr auto; }
.header-min .nav-link { justify-self: end; }
.logo {
  display: inline-flex; align-items: center; gap: 9px; justify-self: start;
  font-size: var(--logo); font-weight: 600; letter-spacing: -0.03em; color: #fff;
}
.logo-mark { width: var(--logo-mark); height: var(--logo-mark); }
.logo-suffix { font-weight: 400; }
.logo-text { font-weight: 600; letter-spacing: -0.03em; }
.nav { display: flex; align-items: center; gap: 8px; justify-self: center; }
.nav-link {
  position: relative; overflow: hidden; display: inline-flex; align-items: center;
  height: var(--nav-h); padding: 0 18px; border-radius: 7px;
  border: 1px solid rgba(198,198,198,0.55);
  background: linear-gradient(105deg, #050505 0%, #2a2a2a 48%, #4a4a4a 100%);
  color: #f3f3f3; font-size: var(--nav); font-weight: 400; letter-spacing: -0.01em; white-space: nowrap;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.nav-link::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.16) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .6s ease;
}
.nav-link:hover { border-color: rgba(235,235,235,0.9); background: linear-gradient(105deg, #111 0%, #3a3a3a 45%, #6a6a6a 100%); box-shadow: 0 0 18px rgba(200,210,230,0.18); }
.nav-link:hover::before { transform: translateX(120%); }
.header-right { display: flex; align-items: center; gap: 10px; justify-self: end; }
.me-name { color: var(--muted); font-size: 13.5px; letter-spacing: -0.01em; }
.burger {
  display: none; width: 42px; height: 42px; border-radius: 6px; border: 1px solid var(--border);
  background: rgba(8,8,8,0.55); z-index: 60; place-content: center; gap: 5px;
  transition: border-color .25s ease, background .25s ease;
}
.burger span { display: block; width: 16px; height: 1.5px; background: #fff; border-radius: 1px; transition: transform .25s ease, opacity .2s ease; }
.burger:hover { border-color: rgba(255,255,255,0.32); background: rgba(255,255,255,0.05); }
body.menu-open .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.menu-backdrop { display: none; }

/* ------------------------------------------------------------- buttons */
.btn {
  position: relative; isolation: isolate; overflow: hidden; display: inline-flex; align-items: center; justify-content: center;
  height: var(--btn-h); padding: 0 16px; border-radius: 6px; font-size: var(--btn); font-weight: 500;
  letter-spacing: -0.02em; line-height: 1; white-space: nowrap; cursor: pointer;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, color .35s ease, filter .35s ease;
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,0.45) 48%, transparent 76%);
  transform: translateX(-130%); transition: transform .65s ease;
}
.btn:hover::after { transform: translateX(130%); }
.btn-solid {
  background: linear-gradient(180deg, #ffffff 0%, #e7e7e7 48%, #cfcfcf 100%);
  color: #111; border: 1px solid #fff; box-shadow: inset 0 1px 0 rgba(255,255,255,0.95);
}
.btn-solid:hover {
  background: linear-gradient(180deg, #fff 0%, #f3f6ff 42%, #d5def2 100%); border-color: #f2f6ff;
  box-shadow: inset 0 1px 0 #fff, 0 0 22px rgba(186,208,255,0.35), 0 8px 18px rgba(255,255,255,0.12);
}
.btn-hero.btn-solid:hover { box-shadow: inset 0 1px 0 #fff, 0 0 26px rgba(186,208,255,0.4), 0 8px 18px rgba(255,255,255,0.14); }
.btn-ghost {
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(0,0,0,0.45) 50%, rgba(160,175,200,0.08));
  color: #fff; border: 1px solid rgba(198,198,198,0.45); box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-ghost:hover {
  background: linear-gradient(135deg, rgba(210,225,255,0.18), rgba(0,0,0,0.35) 48%, rgba(180,195,220,0.16));
  border-color: rgba(220,230,255,0.75); box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 0 20px rgba(170,200,255,0.22);
}
.btn-hero { height: var(--hero-btn-h); padding: 0 18px; }
.btn-hero.btn-ghost {
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(0,0,0,0.5) 46%, rgba(150,170,200,0.1));
  border: 1px solid rgba(198,198,198,0.55); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.btn-hero.btn-ghost:hover { box-shadow: 0 0 24px rgba(170,200,255,0.28); border-color: rgba(220,230,255,0.8); }

/* ---------------------------------------------------------------- hero */
.hero { display: flex; align-items: flex-end; justify-content: center; padding: 8px 24px var(--hero-gap); min-height: 0; }
.hero-copy { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; max-width: var(--copy-max); width: 100%; }
.badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px; padding: 9px 15px; border: 0; border-radius: 5px;
  background: linear-gradient(90deg, #7d7d7d 0%, #2a2a2a 52%, #0a0a0a 100%);
  color: #f2f2f2; font-size: var(--badge); font-weight: 400; letter-spacing: -0.01em;
}
.badge-star { filter: drop-shadow(0 0 3px rgba(255,255,255,0.45)); animation: in-star .9s var(--ease) .28s both; }
h1 { font-size: var(--h1); font-weight: 500; letter-spacing: -0.045em; line-height: 1.12; color: #fff; display: flex; flex-direction: column; align-items: center; }
.headline-line { display: block; overflow: hidden; padding: 0.06em 0.15em 0.14em; }
h1 em { font-size: 1.08em; letter-spacing: -0.03em; color: #9a9a9a; animation: in-em 1.2s var(--ease) .72s both; }
.lede { max-width: var(--lede-max); margin-top: 18px; color: #9a9a9a; font-size: var(--lede); font-weight: 400; line-height: 1.55; letter-spacing: -0.015em; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 26px; }

/* --------------------------------------------------------------- stats */
.stats {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 0 var(--stats-x) var(--stats-y); padding-bottom: max(var(--stats-y), env(safe-area-inset-bottom)); color: #d8d8d8;
}
.stat { display: inline-flex; align-items: center; gap: 14px; font-size: var(--stat-size); letter-spacing: -0.015em; white-space: nowrap; }
.stat-icon { width: 20px; height: 20px; flex: none; color: #e8e8e8; }
.stat-icon-wide { width: 38px; height: 21px; }

/* ------------------------------------------------------- entrance motion */
.appear { opacity: 1; animation-duration: 1.05s; animation-fill-mode: both; animation-timing-function: var(--ease); animation-delay: var(--d, 0.08s); }
.appear--scale { animation-name: in-scale; }
.appear--soft { animation-name: in-soft; }
.appear--mask { animation-name: in-mask; }
.appear--pop { animation-name: in-pop; }
.appear--btn { animation-name: in-btn; }
.appear--side { animation-name: in-side; }
.appear--stat { animation-name: in-stat; }
.appear.is-in, .hero-photo.is-in { animation: none; opacity: 1; transform: none; clip-path: none; filter: none; }
@keyframes in-scale { from { opacity: 0; transform: scale(.84) } to { opacity: 1; transform: scale(1) } }
@keyframes in-soft { from { opacity: 0; transform: translateY(14px) } to { opacity: 1; transform: translateY(0) } }
@keyframes in-mask { from { opacity: 0; transform: translateY(40%) } to { opacity: 1; transform: translateY(0) } }
@keyframes in-pop { 0% { opacity: 0; transform: scale(.9) } 70% { opacity: 1; transform: scale(1.03) } 100% { opacity: 1; transform: scale(1) } }
@keyframes in-btn { from { opacity: 0; transform: translateY(18px) scale(.94) } to { opacity: 1; transform: translateY(0) scale(1) } }
@keyframes in-side { from { opacity: 0; transform: translateX(22px) } to { opacity: 1; transform: translateX(0) } }
@keyframes in-stat { from { opacity: 0; transform: translateY(20px) } to { opacity: 1; transform: translateY(0) } }
@keyframes in-star { 0% { transform: scale(.2) rotate(-50deg) } 65% { transform: scale(1.2) rotate(8deg) } 100% { transform: scale(1) rotate(0) } }
@keyframes in-em { from { opacity: .35; filter: blur(4px) } to { opacity: 1; filter: blur(0) } }

/* scroll reveal for the sections below the fold */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }

/* ------------------------------------------------------------ sections */
.section { position: relative; padding: 120px 24px; }
.section-line { border-top: 1px solid var(--border-soft); }
.wrap { max-width: 1120px; margin: 0 auto; }
.wrap-narrow { max-width: 760px; }
.section-head { max-width: 760px; margin-bottom: 48px; }
.eyebrow { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
h2 { font-size: 40px; font-weight: 500; letter-spacing: -0.04em; line-height: 1.1; }
h2 em { font-size: 1.06em; }
.sub { color: var(--muted); font-size: 16px; line-height: 1.6; margin-top: 16px; max-width: 640px; letter-spacing: -0.01em; }
.center { text-align: center; }
.center .sub { margin-left: auto; margin-right: auto; }
.center .btn { margin-top: 40px; }
.note { color: var(--muted); font-size: 13px; margin-top: 18px; line-height: 1.55; max-width: 640px; }
.empty { border: 1px dashed var(--border); border-radius: 10px; padding: 32px; color: var(--muted); text-align: center; }

/* ledger */
.ledger { border: 1px solid var(--border-soft); border-radius: 12px; overflow: hidden; background: var(--surface); }
.ledger-row { display: grid; grid-template-columns: 1.2fr .8fr .9fr 1.6fr 1fr; align-items: center; gap: 16px; padding: 16px 20px; border-top: 1px solid var(--border-soft); font-variant-numeric: tabular-nums; }
.ledger-head { border-top: 0; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding: 12px 20px; }
.ledger-inst { font-weight: 600; letter-spacing: -0.02em; font-size: 16px; }
.ledger-date { color: var(--muted); font-size: 13.5px; }
.ledger-levels { display: flex; gap: 12px; color: rgba(255,255,255,.35); font-size: 12.5px; letter-spacing: .02em; }
.ledger-result b { font-weight: 600; }
.ledger-result i { font-style: normal; color: var(--muted); margin-left: 6px; }
.ledger-row[data-outcome="win"] .ledger-result b { color: var(--win); }
.ledger-row[data-outcome="loss"] .ledger-result b { color: var(--loss); }

/* --------------------------------------------------------- weekly proofs */
.ledger-weeks .ledger-row { grid-template-columns: 1.3fr .7fr 1.1fr 1.1fr 1.6fr; }
.ledger-weeks .ledger-result i { display: block; margin-left: 0; font-size: 12px; margin-top: 2px; }
.week-now { font-style: normal; font-weight: 500; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-left: 8px; vertical-align: middle; }
@media (max-width: 720px) {
  .ledger-weeks .ledger-row { grid-template-columns: 1.2fr .6fr 1fr 1fr; }
  .ledger-weeks .ledger-row > :nth-child(4) { display: none; }
}
.ta-r { text-align: right; }
.pill { display: inline-flex; align-items: center; height: 24px; padding: 0 10px; border-radius: 999px; font-size: 12px; font-weight: 500; letter-spacing: .02em; border: 1px solid var(--border); }
.pill-long { color: var(--win); border-color: rgba(183,228,199,.35); }
.pill-short { color: var(--loss); border-color: rgba(242,166,160,.35); }

/* steps */
.steps-grid { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step { border: 1px solid var(--border-soft); border-radius: 12px; padding: 26px 22px 24px; background: var(--surface); min-height: 240px; }
.step-num em { font-size: 44px; line-height: 1; color: rgba(255,255,255,.5); }
.step h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.03em; margin: 18px 0 12px; }
.step ul { list-style: none; color: var(--muted); font-size: 13.5px; line-height: 1.5; display: grid; gap: 8px; }
.step li { padding-left: 14px; position: relative; }
.step li::before { content: ""; position: absolute; left: 0; top: .6em; width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.4); }
.tiers { margin-top: 40px; border: 1px solid var(--border-soft); border-radius: 12px; padding: 24px; }
.tiers-title { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.tier-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.tier { border: 1px solid var(--border-soft); border-radius: 10px; padding: 16px 18px; display: grid; gap: 4px; }
.tier b { font-size: 20px; font-weight: 600; letter-spacing: -0.03em; }
.tier span { color: var(--muted); font-size: 13px; }

/* inside */
.inside-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.inside { border: 1px solid var(--border-soft); border-radius: 12px; padding: 28px; background: var(--surface); }
.inside h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.03em; margin-bottom: 10px; }
.inside p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* about */
.section-about { overflow: hidden; border-top: 1px solid var(--border-soft); }
.about-photo { position: absolute; inset: 0; z-index: 0; opacity: .35; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.75) 55%, rgba(0,0,0,.35) 100%); }
.about-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: start; }
.about-text h2 { margin-bottom: 24px; }
.about-text p { color: #d8d8d8; font-size: 15.5px; line-height: 1.65; margin-top: 14px; letter-spacing: -0.01em; }
.about-text .eyebrow { margin-bottom: 14px; }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 32px; }
.fact { border: 1px solid var(--border-soft); border-radius: 10px; padding: 16px; }
.fact b { display: block; font-size: 22px; font-weight: 600; letter-spacing: -0.03em; }
.fact span { color: var(--muted); font-size: 12.5px; }
.about-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-photos .photo:first-child { grid-column: 1 / -1; aspect-ratio: 4 / 3; }
.photo { border-radius: 12px; overflow: hidden; aspect-ratio: 1; border: 1px solid var(--border-soft); background: var(--surface); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder { display: grid; place-items: center; border-style: dashed; color: var(--muted); text-align: center; font-size: 13px; }
.photo-placeholder small { color: rgba(255,255,255,.35); font-size: 11px; }

/* faq */
.faq { display: grid; gap: 0; border-top: 1px solid var(--border-soft); }
.faq details { border-bottom: 1px solid var(--border-soft); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 22px 0; font-size: 17px; font-weight: 500; letter-spacing: -0.02em; }
.faq summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; width: 14px; height: 14px; flex: none; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; background: #fff; left: 50%; top: 50%; transform: translate(-50%,-50%); transition: transform .3s ease; }
.faq-plus::before { width: 14px; height: 1.5px; }
.faq-plus::after { width: 1.5px; height: 14px; }
.faq details[open] .faq-plus::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq p { color: var(--muted); line-height: 1.65; padding: 0 0 24px; max-width: 640px; }

.cta-final { padding: 140px 24px; border-top: 1px solid var(--border-soft); }
.cta-final h2 { font-size: 52px; }
.cta-final .hero-actions { margin-top: 32px; }

/* footer */
.footer { border-top: 1px solid var(--border-soft); padding: 40px 24px; color: var(--muted); font-size: 13px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr auto; gap: 32px; align-items: start; }
.footer-grid p { margin-top: 8px; max-width: 420px; line-height: 1.55; }
.footer-links { display: grid; gap: 8px; }
.footer-links a:hover { color: #fff; }
.footer-min { text-align: center; }
.footer-min a:hover { color: #fff; }

/* ---------------------------------------------------------- auth page */
.auth { display: grid; place-items: center; padding: 24px; }
.auth-card { max-width: 560px; width: 100%; border: 1px solid var(--border-soft); border-radius: 16px; padding: 44px 40px; background: var(--surface); text-align: center; }
.auth-card h1 { font-size: 36px; display: block; margin-top: 8px; }
.auth-card .lede { margin: 16px auto 24px; }
.auth-code { display: inline-grid; gap: 4px; margin-bottom: 20px; padding: 12px 18px; border: 1px solid var(--border-soft); border-radius: 10px; }
.auth-code span { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.auth-code b { font-size: 26px; letter-spacing: .28em; font-weight: 500; font-variant-numeric: tabular-nums; }
.auth-status { margin-top: 22px; color: var(--muted); font-size: 14px; display: inline-flex; align-items: center; gap: 10px; }
.auth-status .dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: pulse 1.4s ease-in-out infinite; }
.auth-status.is-ok .dot { animation: none; background: var(--win); }
.auth-status.is-err .dot { animation: none; background: var(--loss); }
@keyframes pulse { 0%, 100% { opacity: .25 } 50% { opacity: 1 } }
.auth-hint { color: rgba(255,255,255,.4); font-size: 12.5px; margin-top: 14px; line-height: 1.5; }

/* --------------------------------------------------------- member area */
.me { max-width: 1120px; width: 100%; margin: 0 auto; padding: 24px 24px 80px; }
.me-status { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; align-items: stretch; padding: 36px; border: 1px solid var(--border-soft); border-radius: 16px; background: var(--surface); }
.me-status h1 { display: block; font-size: 40px; margin-top: 6px; }
.me-status .lede { margin-top: 12px; max-width: 560px; }
.progress { display: flex; gap: 8px; margin-top: 22px; }
.progress-dot { width: 46px; height: 5px; border-radius: 3px; background: rgba(255,255,255,.14); }
.progress-dot.is-done { background: #fff; }
.progress-dot.is-current { background: rgba(255,255,255,.5); }
.me-access { display: grid; gap: 12px; align-content: start; padding: 22px; border: 1px solid var(--border-soft); border-radius: 12px; }
.me-access b { font-size: 16px; letter-spacing: -0.02em; }
.me-access span { color: var(--muted); font-size: 13.5px; line-height: 1.5; }
.me-grid { display: grid; grid-template-columns: 1.5fr .8fr; gap: 24px; margin-top: 24px; }
.mstep { border: 1px solid var(--border-soft); border-radius: 12px; margin-bottom: 12px; background: var(--surface); }
.mstep.is-current { border-color: rgba(255,255,255,.4); }
.mstep summary { list-style: none; display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 14px; padding: 18px 20px; cursor: pointer; }
.mstep summary::-webkit-details-marker { display: none; }
.mstep-num { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border); display: grid; place-items: center; font-size: 14px; font-weight: 500; }
.mstep.is-done .mstep-num { background: #fff; color: #000; border-color: #fff; }
.mstep-title { font-size: 17px; font-weight: 500; letter-spacing: -0.02em; }
.mstep-state { font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.mstep-body { padding: 0 20px 22px 68px; }
.mstep-intro { color: #d8d8d8; line-height: 1.6; font-size: 14.5px; }
.mstep-intro b { color: #fff; }
.checklist { list-style: none; margin: 16px 0; display: grid; gap: 8px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.checklist li { padding-left: 22px; position: relative; }
.checklist li::before { content: ""; position: absolute; left: 0; top: .35em; width: 12px; height: 12px; border: 1px solid var(--border); border-radius: 3px; }
.mstep-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.mstep-help { margin-top: 16px; padding: 16px; border-left: 2px solid rgba(255,255,255,.3); color: var(--muted); font-size: 13.5px; line-height: 1.6; }
.me-side { display: grid; gap: 12px; align-content: start; }
.side-card { border: 1px solid var(--border-soft); border-radius: 12px; padding: 20px; display: grid; gap: 12px; background: var(--surface); }
.side-card p { color: var(--muted); font-size: 13.5px; line-height: 1.5; }
.side-card .eyebrow { margin: 0; }
.side-card .btn { justify-self: start; }
.tier-list { list-style: none; display: grid; gap: 8px; }
.tier-list li { display: flex; justify-content: space-between; font-size: 14px; }
.tier-list span { color: var(--muted); }
.side-glossary summary { list-style: none; cursor: pointer; font-size: 14px; font-weight: 500; }
.side-glossary summary::-webkit-details-marker { display: none; }
.side-glossary div { color: var(--muted); font-size: 13px; line-height: 1.6; }
.feed { margin-top: 56px; }
.feed .section-head { margin-bottom: 24px; }
.feed-list { display: grid; gap: 12px; }
.post { border: 1px solid var(--border-soft); border-radius: 12px; padding: 18px 20px; background: var(--surface); }
.post header { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.post header b { font-size: 16px; letter-spacing: -0.02em; }
.post time { color: var(--muted); font-size: 13px; font-variant-numeric: tabular-nums; }
.post-outcome { margin-left: auto; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.outcome-win { color: var(--win); }
.outcome-loss { color: var(--loss); }
.post-text { font-family: inherit; white-space: pre-wrap; word-break: break-word; font-size: 14.5px; line-height: 1.6; color: #e6e6e6; }
.post.is-locked .post-text { color: #cfcfcf; }
.post-events { list-style: none; margin-top: 12px; display: grid; gap: 6px; color: var(--muted); font-size: 13.5px; }
.legal { padding: 24px 24px 80px; width: 100%; }
.legal h1 { display: block; font-size: 36px; margin-bottom: 24px; }
.legal p { color: #d8d8d8; line-height: 1.7; margin-bottom: 14px; }

/* --------------------------------------------------------- responsive */
@media (min-width: 1600px) {
  :root { --logo: 17px; --logo-mark: 24px; --nav: 15px; --nav-h: 44px; --btn: 15px; --btn-h: 44px; --hero-btn-h: 48px; --h1: 64px; --lede: 18px; --badge: 13.5px; --stat-size: 15px; --header-y: 28px; --header-x: 64px; --stats-x: 96px; --stats-y: 44px; --copy-max: 980px; --lede-max: 540px; }
  .nav-link { padding: 0 20px; }
  .badge { margin-bottom: 26px; } .lede { margin-top: 22px; } .hero-actions { margin-top: 30px; gap: 12px; }
  .stat-icon { width: 22px; height: 22px; } .stat-icon-wide { width: 45px; height: 24px; }
}
@media (min-width: 1920px) {
  :root { --logo: 18px; --logo-mark: 26px; --nav: 16px; --nav-h: 48px; --btn: 16px; --btn-h: 48px; --hero-btn-h: 52px; --h1: 76px; --lede: 20px; --badge: 14.5px; --stat-size: 16px; --header-y: 32px; --header-x: 80px; --stats-x: 120px; --stats-y: 52px; --copy-max: 1120px; --lede-max: 620px; }
  .nav { gap: 10px; } .nav-link { padding: 0 22px; } .btn { padding: 0 22px; } .badge { padding: 10px 15px; }
  .stat-icon-wide { width: 48px; height: 26px; }
}
@media (min-width: 2560px) { :root { --h1: 88px; --lede: 22px; --header-x: 120px; --stats-x: 160px; --copy-max: 1280px; --lede-max: 680px; } }
@media (min-width: 1280px) and (max-width: 1599px) { :root { --h1: 54px; --lede: 16px; --header-x: 48px; --stats-x: 80px; --copy-max: 900px; } }
@media (min-width: 901px) and (max-width: 1279px) {
  :root { --logo: 15px; --nav: 13px; --nav-h: 36px; --btn: 13px; --btn-h: 38px; --hero-btn-h: 40px; --h1: 42px; --lede: 15px; --badge: 12px; --stat-size: 12.5px; --header-y: 16px; --header-x: 28px; --stats-x: 36px; --stats-y: 28px; --hero-gap: 64px; --copy-max: 760px; --lede-max: 440px; }
  .nav-link { padding: 0 14px; } .badge { margin-bottom: 16px; } .lede { margin-top: 14px; } .hero-actions { margin-top: 20px; }
}
@media (min-width: 901px) and (max-height: 850px) { :root { --header-y: 14px; --stats-y: 24px; --hero-gap: 48px; --h1: 40px; } .badge { margin-bottom: 12px; } .lede { margin-top: 12px; } .hero-actions { margin-top: 16px; } }
@media (min-width: 901px) and (max-height: 720px) { :root { --h1: 34px; --lede: 14px; --hero-gap: 32px; --stats-y: 18px; --nav-h: 30px; --btn-h: 34px; --hero-btn-h: 36px; } .badge { margin-bottom: 8px; } }
@media (min-width: 901px) { .viewport .page { height: 100vh; height: 100dvh; overflow: hidden; } }

@media (max-width: 900px) {
  :root { --logo: 16px; --btn: 15px; --btn-h: 46px; --hero-btn-h: 48px; --h1: 36px; --lede: 16.5px; --badge: 13.5px; --stat-size: 15px; --header-y: 16px; --header-x: 18px; --stats-x: 20px; --stats-y: 28px; --hero-gap: 36px; }
  .header { grid-template-columns: 1fr auto auto; gap: 8px; padding-top: max(var(--header-y), env(safe-area-inset-top)); }
  .logo, .header-cta, .burger { z-index: 80; }
  .burger { display: grid; }
  .header-cta { display: none; }
  .menu-backdrop { display: block; position: fixed; inset: 0; z-index: 40; background: rgba(8,8,8,0.42); opacity: 0; visibility: hidden; transition: opacity .28s ease, visibility .28s ease; }
  body.menu-open .menu-backdrop { opacity: 1; visibility: visible; backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
  .nav { position: fixed; inset: 0; z-index: 45; flex-direction: column; justify-content: center; align-items: stretch; gap: 12px; padding: 96px 22px 32px; padding-top: max(96px, calc(env(safe-area-inset-top) + 88px)); background: transparent; opacity: 0; visibility: hidden; transition: opacity .28s ease, visibility .28s ease; }
  body.menu-open .nav { opacity: 1; visibility: visible; }
  .nav-link { width: 100%; height: 56px; font-size: 19px; border-radius: 10px; justify-content: center; }
  body.menu-open { overflow: hidden; }
  .hero { padding: 20px 20px 64px; }
  .stats { flex-direction: column; align-items: center; gap: 16px; text-align: center; }
  .stat { white-space: normal; }
  .hero-copy, .lede { max-width: 100%; }
  .section { padding: 80px 20px; }
  h2 { font-size: 32px; } .cta-final h2 { font-size: 38px; }
  .ledger-row { grid-template-columns: 1fr auto; gap: 8px 12px; }
  .ledger-head, .ledger-levels, .ledger-date { display: none; }
  .ledger-row .pill { justify-self: start; }
  .ledger-result { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .tier-row { grid-template-columns: 1fr 1fr; }
  .inside-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .facts { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .me-status { grid-template-columns: 1fr; padding: 24px; }
  .me-status h1 { font-size: 30px; }
  .me-grid { grid-template-columns: 1fr; }
  .mstep-body { padding-left: 20px; }
  .auth-card { padding: 32px 22px; }
  .auth-card h1 { font-size: 28px; }
  .header-min .nav-link { position: static; width: auto; height: var(--nav-h); font-size: 13px; opacity: 1; visibility: visible; }
}
@media (max-width: 560px) {
  :root { --h1: 34px; --lede: 16px; --header-x: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .steps-grid, .tier-row { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .about-photos { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .appear, .hero-photo, .hero h1 em, .badge-star, .reveal { opacity: 1; transform: none; clip-path: none; filter: none; }
}

/* ------------------------------------------------- v2: weekly results, why-free, join strip */
.section-head-sm { margin-top: 64px; margin-bottom: 20px; }
.weeks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.week { border: 1px solid var(--border-soft); border-radius: 14px; padding: 26px 24px 22px; background: var(--surface); display: grid; gap: 10px; position: relative; overflow: hidden; }
.week::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 60% at 100% 0%, rgba(183,228,199,.10), transparent 70%); pointer-events: none; }
.week.is-neg::before { background: radial-gradient(80% 60% at 100% 0%, rgba(242,166,160,.10), transparent 70%); }
.week-label { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.week-pct { font-size: 52px; font-weight: 500; letter-spacing: -0.05em; line-height: 1; color: var(--win); font-variant-numeric: tabular-nums; }
.week.is-neg .week-pct { color: var(--loss); }
.week-meta { color: var(--muted); font-size: 13px; }
.weeks-total { display: flex; flex-wrap: wrap; gap: 12px 32px; margin-top: 22px; color: var(--muted); font-size: 14px; }
.weeks-total b { color: #fff; font-weight: 600; margin-left: 4px; }
.ledger-result i { font-style: normal; color: var(--muted); margin-left: 8px; font-variant-numeric: tabular-nums; }
.inside { position: relative; padding-top: 30px; }
.inside-num em { display: block; font-size: 30px; line-height: 1; color: rgba(255,255,255,.4); margin-bottom: 14px; }
.section-free { border-top: 1px solid var(--border-soft); background: radial-gradient(60% 80% at 0% 50%, rgba(255,255,255,.05), transparent 70%); }
.free-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.free-grid h2 { font-size: 44px; }
.free-text p { color: #d8d8d8; font-size: 15.5px; line-height: 1.65; margin-bottom: 14px; letter-spacing: -0.01em; }
.free-text .facts { margin-top: 24px; }
.join-strip { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.join-strip li { display: flex; align-items: center; gap: 14px; padding: 18px 20px; border: 1px solid var(--border-soft); border-radius: 12px; background: var(--surface); font-size: 15px; font-weight: 500; letter-spacing: -0.02em; }
.join-num { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--border); display: grid; place-items: center; font-size: 13px; color: var(--muted); flex: none; }
.about-text .btn { margin-top: 8px; }
@media (max-width: 900px) {
  .weeks { grid-template-columns: 1fr 1fr; }
  .week-pct { font-size: 42px; }
  .free-grid { grid-template-columns: 1fr; gap: 28px; }
  .free-grid h2 { font-size: 34px; }
  .join-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .weeks { grid-template-columns: 1fr; }
  .join-strip { grid-template-columns: 1fr; }
}

/* tiers v2 */
.week-now { font-style: normal; font-size: 10px; letter-spacing: .08em; padding: 2px 6px; border: 1px solid var(--border); border-radius: 999px; margin-left: 6px; vertical-align: middle; }
.tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.tier-card { border: 1px solid var(--border-soft); border-radius: 14px; padding: 24px 22px; background: var(--surface); display: grid; gap: 8px; align-content: start; }
.tier-card.is-top { border-color: rgba(255,255,255,.35); }
.tier-name { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.tier-amount { font-size: 28px; font-weight: 600; letter-spacing: -0.04em; }
.tier-duration { color: #fff; font-size: 14px; }
.tier-desc { color: var(--muted); font-size: 13px; line-height: 1.55; margin-top: 4px; }
.tier-list-in, .tier-list-out { list-style: none; display: grid; gap: 6px; margin-top: 10px; font-size: 13px; line-height: 1.45; }
.tier-list-in li { padding-left: 20px; position: relative; color: #e6e6e6; }
.tier-list-in li::before { content: "✓"; position: absolute; left: 0; color: var(--win); font-size: 12px; }
.tier-list-out li { padding-left: 20px; position: relative; color: rgba(255,255,255,.38); }
.tier-list-out li::before { content: "–"; position: absolute; left: 0; }
@media (max-width: 900px) { .tier-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .tier-grid { grid-template-columns: 1fr; } }

/* v3: hero sits higher, disclaimer in the footer */
.hero { align-items: center; padding-bottom: calc(var(--hero-gap) + 6vh); }
.hero-copy { transform: translateY(-4vh); }
.footer-disclaimer { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border-soft); }
.footer-disclaimer p { font-size: 12px; line-height: 1.6; color: rgba(255,255,255,.42); max-width: 900px; }
.footer-disclaimer a { color: rgba(255,255,255,.6); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 900px) { .hero { align-items: center; padding-bottom: calc(64px + 4vh); } .hero-copy { transform: none; } }

/* stats row must never widen the page */
.stats { flex-wrap: wrap; max-width: 100%; }
.stat { white-space: normal; max-width: 360px; line-height: 1.35; }
.viewport, .page { max-width: 100vw; }
