/* =========================================================
   Earnly — token system
========================================================= */
:root {
  --paper:      #F5F6F2;
  --paper-dim:  #ECEDE7;
  --card:       #FFFFFF;
  --ink:        #14181A;
  --ink-soft:   #55605C;
  --ink-faint:  #8A928C;
  --line:       #DDE0D9;
  --accent:     #E8A33D;
  --accent-2:   #1D6F5C;
  --danger:     #C0453B;
  --white:      #FFFFFF;
  --shadow: 0 30px 60px -20px rgba(20,24,26,0.18);

  /* Fixed tokens for elements that must always look the same
     regardless of light/dark theme (e.g. the dark CTA band).
     These are intentionally NOT overridden in [data-theme="dark"]. */
  --band-bg:  #14181A;
  --band-ink: #F3F4EF;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;

  --radius: 14px;
  --wrap: 1320px;

  color-scheme: light;
}

html[data-theme="dark"] {
  --paper:      #12161A;
  --paper-dim:  #171C20;
  --card:       #1B2126;
  --ink:        #F3F4EF;
  --ink-soft:   #ABB3AE;
  --ink-faint:  #6E7671;
  --line:       #2A3136;
  --accent-2:   #34C29B;
  --shadow: 0 30px 60px -20px rgba(0,0,0,0.55);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  transition: background 0.25s ease, color 0.25s ease;
}

img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.08; font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.15; }
h3 { font-size: 1.15rem; }

p { margin: 0 0 12px; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }

.hl { color: var(--accent-2); }
html[data-theme="dark"] .hl { color: var(--accent); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0 0 14px;
}

/* =========================================================
   Buttons
========================================================= */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.btn:disabled { opacity: 0.75; cursor: default; transform: none; }

.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--accent-2); color: var(--white); }

.btn-light { background: #FFFFFF; color: #14181A; }
.btn-light:hover { background: #f0f0ec; }

.btn-outline { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--accent-2); }

.btn-small { padding: 10px 20px; font-size: 0.88rem; }

.btn-spinner {
  display: none;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-right-color: transparent;
  animation: spin 0.7s linear infinite;
}
.btn.is-loading .btn-label { opacity: 0.5; }
.btn.is-loading .btn-spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* =========================================================
   Scroll progress bar
========================================================= */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  z-index: 300;
  transition: width 0.08s linear;
}

/* =========================================================
   Announcement bar
========================================================= */
.announce {
  background: var(--ink);
  color: var(--paper);
  font-size: 0.86rem;
}
.announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 32px;
  position: relative;
  text-align: center;
}
.announce p { color: inherit; margin: 0; }
.announce strong { color: var(--accent); }
.announce-close {
  position: absolute;
  right: 32px; top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: inherit;
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}
.announce.is-hidden { display: none; }

/* =========================================================
   Header
========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--paper) 85%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 4px 20px rgba(20,24,26,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  margin-right: auto;
  color: var(--ink);
}
.logo-dot { color: var(--accent); }

.main-nav {
  display: flex;
  gap: 26px;
  font-size: 0.94rem;
  font-weight: 500;
}
.main-nav a { color: var(--ink-soft); transition: color 0.15s ease; }
.main-nav a:hover { color: var(--ink); }
.nav-register-link { display: none; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.theme-toggle {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  cursor: pointer;
}
.theme-toggle .icon-moon { display: none; }
html[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
html[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 0 8px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero
========================================================= */
.hero { position: relative; padding-top: 64px; overflow: hidden; }

.hero-glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 640px;
  background:
    radial-gradient(480px 320px at 15% 20%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 70%),
    radial-gradient(520px 360px at 85% 10%, color-mix(in srgb, var(--accent-2) 18%, transparent), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-sub { max-width: 480px; font-size: 1.05rem; }

.hero-cta { margin-top: 26px; }
.btn-large { padding: 17px 34px; font-size: 1.02rem; }

.lead-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin-top: 26px;
}
.lead-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
}
.lead-form input:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 1px; }
.lead-form input.field-error { border-color: var(--danger); }

.form-note {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-top: 12px;
  max-width: 460px;
}
.form-note.is-success { color: var(--accent-2); }
.form-note.is-error { color: var(--danger); }

.form-alt {
  font-size: 0.86rem;
  margin-top: 14px;
  color: var(--ink-faint);
}
.form-alt-dark { color: #7C8683; }
.link-underline {
  color: var(--accent-2);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-alt-dark .link-underline { color: var(--accent); }
.link-underline:hover { opacity: 0.8; }

.hero-avatars {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.avatar-stack { display: flex; }
.avatar-stack img {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--paper);
  margin-left: -10px;
}
.avatar-stack img:first-child { margin-left: 0; }
.hero-avatars p { margin: 0; font-size: 0.85rem; }
.hero-avatars strong { color: var(--ink); }

.hero-figure { position: relative; }
.hero-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}
.hero-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; opacity: 0.92; }

.hero-tag {
  position: absolute;
  background: var(--card);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}
.hero-tag-top { right: 20px; top: 20px; }
.hero-tag-bottom {
  left: 20px; bottom: 20px;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
}
.hero-tag-num { font-family: var(--font-mono); font-weight: 500; font-size: 1.3rem; color: var(--ink); }
.hero-tag-label { font-size: 0.78rem; color: var(--ink-faint); }

.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  position: relative;
  flex-shrink: 0;
}
.pulse-dot::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--accent-2);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ticker */
.ticker {
  position: relative;
  z-index: 1;
  margin-top: 56px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--paper-dim);
}
.ticker-track {
  display: flex;
  gap: 28px;
  width: max-content;
  padding: 14px 0;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  animation: ticker-scroll 32s linear infinite;
}
.ticker-track span:nth-child(odd) { color: var(--accent-2); }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  .pulse-dot::after { animation: none; }
}

/* =========================================================
   Trusted-by strip
========================================================= */
.trusted { padding: 48px 0 8px; }
.trusted-label {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.trusted-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink-faint);
  font-size: 1.05rem;
  opacity: 0.75;
}

/* =========================================================
   Ledger stats
========================================================= */
.ledger { padding: 56px 0; border-bottom: 1px solid var(--line); }
.ledger-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.ledger-item { display: flex; flex-direction: column; gap: 6px; padding: 0 28px; border-left: 1px solid var(--line); }
.ledger-item:first-child { border-left: none; padding-left: 0; }
.ledger-num { font-family: var(--font-mono); font-size: 2.2rem; font-weight: 500; color: var(--ink); }
.ledger-label { font-size: 0.88rem; color: var(--ink-faint); }

/* =========================================================
   Shared section spacing
========================================================= */
section { padding: 96px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head-center { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
.section-sub { font-size: 1.02rem; }

/* =========================================================
   Earnings calculator
========================================================= */
.calc-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.calc-controls {
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  border-right: 1px solid var(--line);
}
.calc-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  margin-bottom: 10px;
}
.calc-field-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.calc-field-head label { margin-bottom: 0; }
.calc-hours-value {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 500;
}
.calc-field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
}
.calc-field input[type="range"] {
  width: 100%;
  accent-color: var(--accent-2);
  height: 6px;
}

.calc-result {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper-dim);
}
.calc-result-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  margin-bottom: 6px;
}
.calc-result-value {
  font-family: var(--font-mono);
  font-size: 2.4rem;
  color: var(--ink);
  margin-bottom: 18px;
}
.calc-currency { font-size: 1.3rem; color: var(--accent-2); vertical-align: top; }
.calc-dash { color: var(--ink-faint); margin: 0 6px; }
.calc-bar {
  height: 8px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
  margin-bottom: 18px;
}
.calc-bar-fill {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  border-radius: 999px;
  transition: width 0.35s ease;
}
.calc-disclaimer { font-size: 0.8rem; color: var(--ink-faint); margin: 0; }

/* =========================================================
   How it works
========================================================= */
.how-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.how-step { padding-left: 24px; border-left: 1px solid var(--line); }
.how-step:first-child { border-left: none; padding-left: 0; }
.how-index {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-2);
  border: 1px solid var(--accent-2);
  border-radius: 999px;
  padding: 3px 11px;
  margin-bottom: 18px;
}
.how-step p { font-size: 0.95rem; }

/* =========================================================
   Paths grid (expandable)
========================================================= */
.paths { background: var(--paper-dim); }
.paths-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

.path-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.15s ease;
  overflow: hidden;
}
.path-card:hover { border-color: var(--accent-2); }

.path-toggle {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 20px;
  cursor: pointer;
  position: relative;
  font-family: inherit;
  color: inherit;
}
.path-index {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink-faint);
  margin-bottom: 10px;
}
.path-toggle h3 { font-size: 1.02rem; margin-bottom: 6px; }
.path-toggle p { font-size: 0.88rem; margin: 0; padding-right: 20px; }
.path-chevron {
  position: absolute;
  top: 24px; right: 18px;
  color: var(--ink-faint);
  transition: transform 0.2s ease;
}
.path-toggle[aria-expanded="true"] .path-chevron { transform: rotate(180deg); color: var(--accent-2); }

.path-detail {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}
.path-detail-inner { overflow: hidden; }
.path-toggle[aria-expanded="true"] + .path-detail { grid-template-rows: 1fr; }
.path-detail ul {
  margin: 0;
  padding: 0 20px 22px 36px;
  font-size: 0.86rem;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* =========================================================
   Why choose us
========================================================= */
.why-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; margin-bottom: 72px; }
.why-figure img { border-radius: var(--radius); aspect-ratio: 4/5; object-fit: cover; }
.check-list { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.check-list li { position: relative; padding-left: 28px; color: var(--ink); font-size: 0.98rem; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 5px;
  width: 16px; height: 16px; border-radius: 50%; background: var(--accent);
}

/* comparison table */
.compare-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
}
.compare-row + .compare-row { border-top: 1px solid var(--line); }
.compare-row > div { padding: 18px 24px; font-size: 0.92rem; color: var(--ink-soft); }
.compare-head > div {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  background: var(--paper-dim);
}
.compare-row > div:not(:first-child) { border-left: 1px solid var(--line); }
.compare-row .is-good { color: var(--accent-2); font-weight: 600; }

/* =========================================================
   Mentors
========================================================= */
.mentors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mentor-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.mentor-card img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; margin: 0 auto 18px; }
.mentor-card h3 { margin-bottom: 4px; }
.mentor-role { font-size: 0.85rem; color: var(--ink-faint); margin: 0; }

/* =========================================================
   Testimonial carousel
========================================================= */
.story-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}
.story-viewport { overflow: hidden; min-width: 0; max-width: 760px; margin: 0 auto; width: 100%; }
.story-track {
  display: flex;
  transition: transform 0.4s ease;
}
.story-track .story-card { flex: 0 0 100%; }

.story-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
}
.story-quote { font-family: var(--font-display); font-size: 3rem; color: var(--accent); line-height: 1; display: block; margin-bottom: 8px; }
.story-stars { color: var(--accent); letter-spacing: 4px; margin-bottom: 16px; }
.story-text { font-size: 1.08rem; color: var(--ink); margin-bottom: 28px; }
.story-person { display: flex; align-items: center; justify-content: center; gap: 12px; }
.story-person img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.story-name { font-weight: 600; margin: 0; color: var(--ink); font-size: 0.95rem; }
.story-role { margin: 0; font-size: 0.82rem; color: var(--ink-faint); }

.story-nav {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  font-size: 1.4rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.15s ease;
}
.story-nav:hover { border-color: var(--accent-2); }

.story-dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.story-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  padding: 0;
}
.story-dot.is-active { background: var(--accent-2); width: 22px; border-radius: 999px; transition: width 0.2s ease; }

/* =========================================================
   Pricing / free access
========================================================= */
.free-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
}
.free-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
  text-align: left;
  max-width: 560px;
  margin: 0 auto 32px;
}

/* =========================================================
   FAQ accordion
========================================================= */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); overflow: hidden; }
.faq-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}
.faq-icon { color: var(--ink-faint); font-size: 1.2rem; transition: transform 0.2s ease; flex-shrink: 0; }
.faq-toggle[aria-expanded="true"] .faq-icon { transform: rotate(45deg); color: var(--accent-2); }
.faq-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.28s ease; }
.faq-panel-inner { overflow: hidden; }
.faq-toggle[aria-expanded="true"] + .faq-panel { grid-template-rows: 1fr; }
.faq-panel p { padding: 0 24px 22px; margin: 0; font-size: 0.95rem; }

/* =========================================================
   Final CTA band
========================================================= */
.cta-band { background: #14181A; color: #F3F4EF; border-radius: 28px; margin: 0 32px 32px; padding: 80px 32px; }
.cta-inner { text-align: center; max-width: 620px; margin: 0 auto; padding: 0; }
.cta-band h2 { color: #F3F4EF; }
.cta-band p { color: #C7CCC9; }
.lead-form-dark { margin: 26px auto 0; }
.lead-form-dark input { background: #1F2528; border-color: #333; color: #F3F4EF; }
.lead-form-dark input::placeholder { color: #7C8683; }
.cta-band .form-note { color: #9CA6A1; margin-left: auto; margin-right: auto; }

/* =========================================================
   Footer
========================================================= */
.site-footer { padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 56px; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-col a { display: block; color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 10px; }
.footer-col a:hover { color: var(--ink); }
.footer-brand p { max-width: 300px; font-size: 0.92rem; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--ink-faint);
}
.footer-links { display: flex; gap: 20px; }
.footer-links a:hover { color: var(--ink); }

/* =========================================================
   Join toast
========================================================= */
.join-toast {
  position: fixed;
  left: 24px; bottom: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.join-toast-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.14);
  font-size: 0.85rem;
  max-width: 280px;
  animation: toast-in 0.35s ease, toast-out 0.35s ease 4.2s forwards;
}
.join-toast-item img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.join-toast-item strong { color: var(--ink); }
.join-toast-item span { display: block; color: var(--ink-faint); font-size: 0.78rem; }
@keyframes toast-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes toast-out { to { opacity: 0; transform: translateY(-8px); } }

/* =========================================================
   Back to top
========================================================= */
.back-to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 150;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* =========================================================
   Reveal-on-scroll
========================================================= */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   Register page
========================================================= */
.register-section {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: 64px 0;
}
.register-wrap { display: flex; justify-content: center; }
.register-card {
  width: 100%;
  max-width: 440px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 44px;
  box-shadow: var(--shadow);
}
.register-sub { font-size: 0.96rem; margin-bottom: 28px; }
.register-card form label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  margin-bottom: 8px;
}
.register-card form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.98rem;
  margin-bottom: 8px;
}
.register-card form input:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 1px; }
.register-card form input.field-error { border-color: var(--danger); }
.register-card .form-note { margin: 0 0 24px; }
.btn-full { width: 100%; }
.register-back { text-align: center; margin-top: 24px; font-size: 0.9rem; }
.register-back a { color: var(--ink-soft); }
.register-back a:hover { color: var(--ink); }
.register-footer { padding-top: 24px; }

@media (max-width: 520px) {
  .register-card { padding: 32px 24px; }
}

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 980px) {
  .hero-grid, .why-grid { grid-template-columns: 1fr; }
  .hero-figure { order: -1; max-width: 420px; }
  .ledger-row { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .ledger-item:nth-child(3) { border-left: none; padding-left: 0; }
  .how-timeline { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .how-step:nth-child(3) { border-left: none; padding-left: 0; }
  .paths-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .calc-panel { grid-template-columns: 1fr; }
  .calc-controls { border-right: none; border-bottom: 1px solid var(--line); }
  .mentors-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .compare-row { font-size: 0.85rem; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 20px 32px;
    gap: 16px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-register-link {
    display: block;
    color: var(--accent-2);
    font-weight: 600;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }
  .nav-toggle { display: flex; }
  .header-actions .btn-small { display: none; }
  .lead-form { flex-direction: column; }
  .paths-grid { grid-template-columns: repeat(2, 1fr); }
  .how-timeline { grid-template-columns: 1fr; }
  .how-step { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 24px; }
  .how-step:first-child { border-top: none; padding-top: 0; }
  .cta-band { margin: 0 16px 16px; padding: 56px 24px; }
  .story-card { padding: 32px 24px; }
  .story-carousel { grid-template-columns: 1fr; }
  .story-nav { display: none; }
  .free-list { grid-template-columns: 1fr; }
  .free-card { padding: 32px 24px; }
  .compare-row { grid-template-columns: 1fr; }
  .compare-row > div:not(:first-child) { border-left: none; border-top: 1px solid var(--line); }
  .compare-head { display: none; }
  .announce-inner { padding-right: 56px; }
}

@media (max-width: 520px) {
  .paths-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
