/* ============ Aspen landing — near-black void + saturated navy surfaces ============ */

:root {
  --bg: #0A0A0F;
  --navy: #16213E;
  --navy-hi: #1D2B50;
  --navy-edge: #2C3E6B;
  --ink: #EAEDF5;
  --ink-dim: #9AA3BC;
  --blue: #7EA2FF;
  --blue-deep: #4F7CFF;
  --green: #5CDB95;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--blue-deep); color: #fff; }

h1, h2, h3 { font-family: var(--serif); font-weight: 700; letter-spacing: -0.015em; }
h1 em, h2 em { font-style: italic; color: var(--blue); }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 760px; }

body.splash-lock { overflow: hidden; }

/* ---------- splash: clean brand open ---------- */
.splash {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #031725;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.85s ease;
}
.splash.is-leaving { opacity: 0; pointer-events: none; }
.splash-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.splash-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.splash-logo {
  display: block;
  width: min(136px, 32vw);
  height: min(136px, 32vw);
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 1.25s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.splash-word {
  font-family: var(--serif);
  font-size: clamp(44px, 8.5vw, 60px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}
.splash.is-logo .splash-logo {
  opacity: 1;
  transform: scale(1);
}
.splash.is-word .splash-word {
  opacity: 1;
  transform: none;
}

.kicker {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}

.lede { color: var(--ink-dim); font-size: 19px; max-width: 46ch; margin-top: 20px; }

.section { padding: 140px 0; position: relative; }
.section h2 { font-size: clamp(34px, 5vw, 56px); line-height: 1.12; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: #fff;
  box-shadow: 0 4px 24px rgba(79, 124, 255, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(79, 124, 255, 0.5); }
.btn-ghost {
  background: var(--navy);
  color: var(--ink);
  border: 1px solid var(--navy-edge);
}
.btn-ghost:hover { background: var(--navy-hi); border-color: var(--blue-deep); transform: translateY(-2px); }
.btn-sm { padding: 9px 20px; font-size: 14px; }
.btn-lg { padding: 18px 40px; font-size: 18px; }

.text-link {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
}
.text-link:hover { text-decoration: underline; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(3, 23, 37, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(44, 62, 107, 0.45);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}
.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  position: relative;
  color: rgba(234, 237, 245, 0.7);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 1px;
  background: var(--blue);
  opacity: 0.85;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links a:hover {
  color: var(--ink);
  background: rgba(126, 162, 255, 0.08);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border-radius: 999px;
  background: rgba(10, 10, 15, 0.45);
  border: 1px solid var(--navy-edge);
}
.lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink-dim);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 7px 11px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lang-btn.is-active {
  background: var(--navy-hi);
  color: var(--ink);
}
.lang-btn:hover { color: var(--ink); }

/* ---------- hero ---------- */
.hero { height: 320vh; position: relative; }
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero-copy {
  position: absolute;
  z-index: 3;
  left: 5vw;
  top: 50%;
  transform: translateY(-50%);
  max-width: min(640px, 48vw);
  will-change: opacity, transform;
}
.hero-copy h1 {
  font-size: clamp(40px, 6.2vw, 72px);
  line-height: 1.08;
  margin: 0 0 26px;
}
.hero-copy h1 > span,
.hero-copy h1 > em {
  display: block;
  white-space: nowrap;
}
.hero-sub { color: var(--ink-dim); font-size: 19px; max-width: 44ch; margin-bottom: 36px; }
.hero-sub-short { display: none; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- phone device (shared: hero + journey) ---------- */
.phone {
  width: var(--phone-w, 300px);
  aspect-ratio: 9 / 18.6;
  border-radius: 44px;
  background: linear-gradient(160deg, #232a3f, #101422);
  border: 1px solid rgba(126, 162, 255, 0.22);
  box-shadow:
    inset 0 0 0 3px #05060a,
    0 40px 90px rgba(0, 0, 0, 0.65),
    0 0 70px rgba(79, 124, 255, 0.12);
  padding: 10px;
  position: relative;
}
.phone::before {
  /* speaker/camera island */
  content: "";
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  width: 26%; height: 22px;
  background: #05060a;
  border-radius: 12px;
  z-index: 3;
}
.phone-screen {
  position: absolute;
  inset: 10px;
  border-radius: 34px;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(29, 43, 80, 0.9), rgba(10, 10, 15, 0.98) 70%);
  overflow: hidden;
}

/* phone home UI */
.ph-off, .ph-home {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  transition: opacity 0.4s ease;
}
.ph-off {
  align-items: center;
  justify-content: center;
}
.ph-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  opacity: 0.85;
}
.ph-home { padding: 56px 18px 18px; gap: 14px; }
.ph-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ph-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue);
  background: rgba(79, 124, 255, 0.13);
  border: 1px solid rgba(79, 124, 255, 0.3);
  padding: 6px 12px;
  border-radius: 999px;
}
.ph-pill strong { color: var(--ink); font-variant-numeric: tabular-nums; }
.ph-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-edge), var(--navy-hi));
  border: 1px solid var(--navy-edge);
}
.ph-card {
  background: linear-gradient(165deg, var(--navy-hi), var(--navy));
  border: 1px solid var(--navy-edge);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.ph-card-label { font-size: 12px; color: var(--ink-dim); font-weight: 500; }
.ph-card-amount {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.ph-card-earn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--green);
}
.ph-card-earn .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}
.ph-card-btn {
  position: relative;
  margin-top: 6px;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 14.5px;
  padding: 12px;
  border-radius: 13px;
  box-shadow: 0 6px 20px rgba(79, 124, 255, 0.3);
}
.ph-row {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--ink-dim);
  background: rgba(22, 33, 62, 0.55);
  border: 1px solid rgba(44, 62, 107, 0.5);
  border-radius: 14px;
  padding: 13px 15px;
}
.ph-ok { color: var(--green); font-weight: 600; }
.ph-tabbar {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 12px 18px 4px;
  border-top: 1px solid rgba(44, 62, 107, 0.45);
}
.ph-tabbar span {
  width: 20px; height: 4px;
  border-radius: 99px;
  background: rgba(154, 163, 188, 0.3);
}
.ph-tabbar span.on { background: var(--blue); box-shadow: 0 0 8px rgba(126, 162, 255, 0.6); }

/* hero phone entrance (transform driven by JS) */
.hero-phone {
  position: absolute;
  z-index: 2;
  right: 9vw;
  top: 50%;
  opacity: 0;
  transform: translateY(60vh);
  will-change: transform, opacity;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}
.hero-phone .ph-home { opacity: 0; }
.hero-phone .ph-home > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.hero-phone .ph-home > *:nth-child(1) { transition-delay: 0.05s; }
.hero-phone .ph-home > *:nth-child(2) { transition-delay: 0.18s; }
.hero-phone .ph-home > *:nth-child(3) { transition-delay: 0.32s; }
.hero-phone.alive .ph-off { opacity: 0; }
.hero-phone.alive .ph-home { opacity: 1; }
.hero-phone.alive .ph-home > * { opacity: 1; transform: none; }

.scroll-hint {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
  transition: opacity 0.4s;
}
.scroll-hint-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: hint-drop 1.8s ease-in-out infinite;
}
@keyframes hint-drop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- reveal on scroll ---------- */
.scene-3d { perspective: 1400px; transform-style: preserve-3d; }
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-3d {
  opacity: 0;
  transform: perspective(1200px) rotateX(16deg) translateY(48px) translateZ(-80px);
  transition:
    opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
.reveal-3d.in {
  opacity: 1;
  transform: perspective(1200px) rotateX(0deg) translateY(0) translateZ(0);
}
.panel-3d {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift: 0px;
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.3s ease,
    box-shadow 0.5s ease;
}
.panel-3d.in {
  transform:
    perspective(1200px)
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y))
    translateZ(var(--lift));
}
.panel-3d.in:hover { --lift: 14px; }

/* ---------- problem ---------- */
.problem {
  background:
    radial-gradient(900px 480px at 12% 0%, rgba(22, 33, 62, 0.5), transparent 65%),
    var(--bg);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 64px;
}
.card {
  background: var(--navy);
  border: 1px solid var(--navy-edge);
  border-radius: 18px;
  padding: 30px 28px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.03) inset,
    0 16px 40px rgba(0, 0, 0, 0.22);
}
.card.in:hover { border-color: var(--blue-deep); }
.card h3 { font-size: 21px; margin-bottom: 12px; }
.card p { color: var(--ink-dim); font-size: 15.5px; }

/* ---------- journey (pinned phone story: Öde → Kazan → Kullan) ---------- */
.journey { height: 450vh; position: relative; background: var(--bg); }
.journey-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
#journey-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}
.j-copy {
  position: relative;
  display: grid;
  place-items: center start;
  padding-left: clamp(24px, 8vw, 120px);
  z-index: 2;
}
.j-step {
  grid-area: 1 / 1;
  max-width: 380px;
  opacity: 0;
  transform: translateY(26px);
  will-change: opacity, transform;
}
.j-num {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--blue);
}
.j-step h3 {
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1;
  margin: 10px 0 16px;
}
.j-step p { color: var(--ink-dim); font-size: 18px; }
.j-phone-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  will-change: transform;
}
.j-phone { --phone-w: min(300px, 62vw); }

/* journey screens crossfade inside the phone */
.j-screen {
  position: absolute;
  inset: 0;
  padding: 56px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  will-change: opacity, transform;
}
.j-screen[data-screen="0"] { opacity: 1; }

/* Öde — tap + success */
.tap-ring {
  position: absolute;
  right: 22%;
  top: 50%;
  width: 18px; height: 18px;
  margin-top: -9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.25), 0 0 24px rgba(255, 255, 255, 0.5);
  opacity: 0;
  transform: scale(0.4);
  will-change: opacity, transform;
}
.j-success {
  position: absolute;
  left: 18px; right: 18px; bottom: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(92, 219, 149, 0.1);
  border: 1px solid rgba(92, 219, 149, 0.35);
  border-radius: 16px;
  padding: 14px;
  color: var(--green);
  font-weight: 600;
  font-size: 15px;
  opacity: 0;
  transform: translateY(14px);
  will-change: opacity, transform;
}
.j-success svg { width: 30px; height: 30px; }
.j-success circle {
  fill: none;
  stroke: var(--green);
  stroke-width: 3.5;
  stroke-dasharray: 176;
  stroke-dashoffset: 176;
  transform: rotate(-90deg);
  transform-origin: center;
}
.j-success path {
  fill: none;
  stroke: var(--green);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
}

/* Kazan — the payoff */
.j-earn {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
}
.j-earn-halo {
  position: absolute;
  top: 50%; left: 50%;
  width: 240px; height: 240px;
  margin: -120px 0 0 -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92, 219, 149, 0.22), transparent 65%);
  will-change: transform, opacity;
}
.j-earn-plus {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 64px;
  color: var(--green);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 40px rgba(92, 219, 149, 0.4);
  position: relative;
}
.j-earn-label { font-size: 15px; color: var(--ink-dim); letter-spacing: 0.14em; text-transform: uppercase; position: relative; }
.j-earn-pill {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue);
  background: rgba(79, 124, 255, 0.13);
  border: 1px solid rgba(79, 124, 255, 0.3);
  padding: 8px 16px;
  border-radius: 999px;
  position: relative;
}
.j-earn-pill strong { color: var(--ink); font-variant-numeric: tabular-nums; }

/* Kullan — points against next month */
.ph-strike {
  position: relative;
  color: var(--ink-dim);
  font-size: 22px;
}
.ph-strike::after {
  content: "";
  position: absolute;
  left: -2px;
  right: calc(100% - var(--strike, 0%));
  top: 55%;
  height: 2px;
  background: var(--ink-dim);
}
.j-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}
.j-toggle {
  width: 40px; height: 24px;
  border-radius: 99px;
  background: rgba(154, 163, 188, 0.25);
  position: relative;
  transition: background 0.3s;
}
.j-toggle i {
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.3s cubic-bezier(0.3, 0.7, 0.3, 1.2);
}
.j-toggle.on { background: var(--green); }
.j-toggle.on i { transform: translateX(16px); }
.j-discount {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s, transform 0.35s;
}
.j-discount.show { opacity: 1; transform: none; }
.j-new-total { color: var(--ink); }
.j-partner { opacity: 0; transform: translateY(10px); transition: opacity 0.4s, transform 0.4s; }
.j-partner.show { opacity: 1; transform: none; }

/* ---------- trust / dashboard ---------- */
.trust {
  background:
    radial-gradient(1000px 600px at 80% 40%, rgba(79, 124, 255, 0.07), transparent 60%),
    var(--bg);
}
.trust-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.dash {
  background: linear-gradient(160deg, var(--navy-hi), var(--navy));
  border: 1px solid var(--navy-edge);
  border-radius: 20px;
  padding: 26px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 24px 70px rgba(0, 0, 0, 0.55),
    0 0 50px rgba(79, 124, 255, 0.08);
  transform-style: preserve-3d;
}
.dash-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; gap: 12px; }
.dash-title { font-weight: 600; font-size: 15px; }
.dash-sum { font-size: 13px; color: var(--ink-dim); white-space: nowrap; }
.dash-progress {
  height: 6px;
  background: rgba(10, 10, 15, 0.6);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 20px;
}
.dash-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue-deep), var(--green));
  border-radius: 99px;
  transition: width 0.7s cubic-bezier(0.3, 0.7, 0.3, 1);
}
.dash-rows { list-style: none; }
.dash-rows li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(44, 62, 107, 0.5);
  font-size: 15px;
}
.dash-rows li:last-child { border-bottom: 0; }
.dash-rows li span:nth-child(2) { color: var(--ink-dim); font-variant-numeric: tabular-nums; }
.status {
  font-size: 12.5px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(154, 163, 188, 0.12);
  color: var(--ink-dim);
  min-width: 74px;
  text-align: center;
  transition: background 0.5s, color 0.5s, box-shadow 0.5s;
}
.status.paid {
  background: rgba(92, 219, 149, 0.14);
  color: var(--green);
  box-shadow: 0 0 14px rgba(92, 219, 149, 0.18);
}
.status.late {
  background: rgba(240, 160, 80, 0.14);
  color: #f0a060;
}

/* ---------- coexist ---------- */
.coexist-wrap { text-align: center; }
.coexist-wrap .lede { margin-left: auto; margin-right: auto; max-width: 62ch; }
.coexist-wrap .lede strong { color: var(--ink); }
.coexist-diagram {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 22px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.co-box {
  background: var(--navy);
  border: 1px solid var(--navy-edge);
  border-radius: 18px;
  padding: 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 260px;
  max-width: 340px;
}
.co-box-aspen {
  border-color: var(--blue-deep);
  animation: co-breathe 4.5s ease-in-out infinite;
}
@keyframes co-breathe {
  0%, 100% { box-shadow: 0 0 28px rgba(79, 124, 255, 0.1); }
  50% { box-shadow: 0 0 52px rgba(79, 124, 255, 0.24); }
}
@media (prefers-reduced-motion: reduce) {
  .co-box-aspen { animation: none; box-shadow: 0 0 40px rgba(79, 124, 255, 0.15); }
}
.co-label { font-family: var(--serif); font-size: 20px; }
.co-desc { font-size: 14px; color: var(--ink-dim); }
.co-keep {
  margin-top: 10px;
  align-self: center;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-dim);
  background: rgba(154, 163, 188, 0.1);
  padding: 5px 14px;
  border-radius: 999px;
}
.co-keep-new { color: var(--blue); background: rgba(79, 124, 255, 0.12); }
.co-plus {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--blue);
  align-self: center;
}

/* ---------- how it works ---------- */
.how {
  background:
    radial-gradient(900px 500px at 88% 8%, rgba(22, 33, 62, 0.45), transparent 65%),
    var(--bg);
}
.how-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
}
.how-col {
  background: var(--navy);
  border: 1px solid var(--navy-edge);
  border-radius: 22px;
  padding: 40px 36px;
  scroll-margin-top: 90px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.03) inset,
    0 20px 50px rgba(0, 0, 0, 0.24);
  transform-style: preserve-3d;
}
.how-col-head h3 { font-size: 27px; margin: 14px 0 30px; }
.how-badge {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(92, 219, 149, 0.1);
  padding: 5px 14px;
  border-radius: 999px;
}
.how-badge-alt { color: var(--blue); background: rgba(79, 124, 255, 0.12); }
.steps { list-style: none; display: flex; flex-direction: column; gap: 26px; margin-bottom: 32px; }
.steps li { display: flex; gap: 18px; }
.step-num {
  flex: 0 0 34px;
  height: 34px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--blue);
  border: 1px solid var(--navy-edge);
  border-radius: 50%;
  background: rgba(10, 10, 15, 0.4);
}
.steps strong { display: block; font-size: 17px; margin-bottom: 4px; }
.steps p { color: var(--ink-dim); font-size: 15px; }

/* ---------- community ---------- */
.community {
  background:
    radial-gradient(700px 420px at 15% 50%, rgba(92, 219, 149, 0.07), transparent 65%),
    var(--bg);
}
.community-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.community-card {
  background: var(--navy);
  border: 1px solid var(--navy-edge);
  border-radius: 20px;
  padding: 24px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 24px 60px rgba(0, 0, 0, 0.28);
  transform-style: preserve-3d;
}
.comm-notifs { display: flex; flex-direction: column; gap: 12px; }
.comm-notif {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(10, 10, 15, 0.45);
  border: 1px solid rgba(44, 62, 107, 0.55);
  border-radius: 14px;
  padding: 16px 18px;
  opacity: 0;
  transform: perspective(900px) rotateX(18deg) translateX(24px) translateZ(-40px);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}
.comm-notifs.comm-live .comm-notif {
  opacity: 1;
  transform: perspective(900px) rotateX(0deg) translateX(0) translateZ(0);
}
.comm-notifs.comm-live .comm-notif:nth-child(2) { transition-delay: 0.12s; }
.comm-notifs.comm-live .comm-notif:nth-child(3) { transition-delay: 0.24s; }
.comm-notifs:not(.comm-live) .comm-notif { transition-delay: 0s; }
.comm-notif-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(126, 162, 255, 0.14);
  border: 1px solid rgba(126, 162, 255, 0.28);
  position: relative;
  box-shadow: 0 8px 20px rgba(79, 124, 255, 0.12);
}
.comm-notif-icon::before {
  content: "";
  position: absolute;
  inset: 9px 10px 11px 10px;
  border: 2px solid var(--blue);
  border-radius: 4px 4px 2px 2px;
}
.comm-notif-icon::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 4px;
  top: 7px;
  left: 15px;
  background: var(--blue);
  border-radius: 2px 2px 0 0;
}
.comm-notif-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}
.comm-notif-body p {
  margin: 0;
  color: var(--ink-dim);
  font-size: 14.5px;
  line-height: 1.55;
}

/* ---------- FAQ ---------- */
.faq {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 80% 20%, rgba(79, 124, 255, 0.1), transparent 60%),
    var(--bg);
}
.faq-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  perspective: 1200px;
  transform-style: preserve-3d;
}
.faq-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  transform-style: preserve-3d;
  animation: faqOrbFloat 14s ease-in-out infinite;
}
.faq-orb-1 {
  width: 280px; height: 280px;
  top: 8%; left: -6%;
  background: rgba(79, 124, 255, 0.22);
  transform: translateZ(-80px);
}
.faq-orb-2 {
  width: 220px; height: 220px;
  bottom: 10%; right: -4%;
  background: rgba(92, 219, 149, 0.16);
  animation-delay: -5s;
  transform: translateZ(-40px);
}
.faq-orb-3 {
  width: 160px; height: 160px;
  top: 42%; right: 18%;
  background: rgba(126, 162, 255, 0.14);
  animation-delay: -9s;
  transform: translateZ(60px);
}
@keyframes faqOrbFloat {
  0%, 100% { transform: translate3d(0, 0, -60px) scale(1); }
  50% { transform: translate3d(0, -18px, 40px) scale(1.06); }
}
.faq-scene {
  position: relative;
  z-index: 1;
  perspective: 1400px;
  transform-style: preserve-3d;
}
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform-style: preserve-3d;
}
.faq-item {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift: 0px;
  background: var(--navy);
  border: 1px solid var(--navy-edge);
  border-radius: 16px;
  overflow: hidden;
  transform-style: preserve-3d;
  transform:
    perspective(1200px)
    rotateX(calc(8deg + var(--tilt-x)))
    rotateY(var(--tilt-y))
    translateZ(var(--lift));
  transition:
    border-color 0.35s,
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.45s;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 14px 28px rgba(0, 0, 0, 0.22),
    0 28px 60px rgba(0, 0, 0, 0.18);
  will-change: transform;
}
.faq-item.faq-visible {
  --lift: 12px;
  transform:
    perspective(1200px)
    rotateX(calc(2deg + var(--tilt-x)))
    rotateY(var(--tilt-y))
    translateZ(var(--lift));
}
.faq-item.open {
  border-color: var(--blue-deep);
  --lift: 28px;
  transform:
    perspective(1200px)
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y))
    translateZ(var(--lift))
    scale(1.01);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 20px 40px rgba(0, 0, 0, 0.28),
    0 0 40px rgba(79, 124, 255, 0.12);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  padding: 22px 26px;
  cursor: pointer;
}
.faq-icon {
  flex: 0 0 18px;
  position: relative;
  height: 18px;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--blue);
  transition: transform 0.3s;
}
.faq-icon::before { left: 0; right: 0; top: 8px; height: 2px; }
.faq-icon::after { top: 0; bottom: 0; left: 8px; width: 2px; }
.faq-item.open .faq-icon::after { transform: scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.3, 0.7, 0.3, 1);
}
.faq-a p { padding: 0 26px 24px; color: var(--ink-dim); font-size: 15.5px; }
.faq-a p.faq-more { padding-top: 0; margin-top: -8px; }
.faq-more a { color: var(--blue); text-decoration: none; font-weight: 600; }
.faq-more a:hover { text-decoration: underline; }

/* ---------- payment security ---------- */
.security {
  background:
    radial-gradient(900px 480px at 50% 0%, rgba(92, 219, 149, 0.07), transparent 60%),
    var(--bg);
}
.security .lede { max-width: 52ch; }
.sec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.sec-card {
  background: var(--navy);
  border: 1px solid var(--navy-edge);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.03) inset,
    0 16px 40px rgba(0, 0, 0, 0.22);
}
.sec-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--blue);
  background: rgba(126, 162, 255, 0.12);
  border: 1px solid rgba(126, 162, 255, 0.22);
}
.sec-icon svg { width: 28px; height: 28px; }
.sec-icon-accent {
  color: var(--green);
  background: rgba(92, 219, 149, 0.12);
  border-color: rgba(92, 219, 149, 0.28);
}
.sec-card h3 { font-size: 21px; margin-bottom: 10px; }
.sec-card p { color: var(--ink-dim); font-size: 15px; }
/* ---------- registration form ---------- */
.register {
  background:
    radial-gradient(800px 480px at 50% 0%, rgba(79, 124, 255, 0.08), transparent 65%),
    var(--bg);
}
.register .lede a { color: var(--blue); text-decoration: none; }
.register .lede a:hover { text-decoration: underline; }
.reg-form {
  margin-top: 40px;
  background: var(--navy);
  border: 1px solid var(--navy-edge);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 24px 60px rgba(0, 0, 0, 0.24);
  transform: none !important;
  will-change: auto;
}
.register h2 { margin-bottom: 8px; }
.reg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.reg-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.reg-field-full { margin-top: 18px; }
.reg-field span {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
}
.reg-field input,
.reg-field textarea {
  width: 100%;
  background: rgba(10, 10, 15, 0.55);
  border: 1px solid var(--navy-edge);
  border-radius: 12px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  padding: 14px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.reg-field input:focus,
.reg-field textarea:focus {
  outline: none;
  border-color: var(--blue-deep);
  box-shadow: 0 0 0 3px rgba(79, 124, 255, 0.15);
}
.reg-field.is-invalid input,
.reg-field.is-invalid textarea {
  border-color: #e08a5a;
  box-shadow: 0 0 0 3px rgba(224, 138, 90, 0.15);
}
.reg-hint {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-dim);
  opacity: 0.85;
}
.reg-field-error {
  font-size: 12.5px;
  font-weight: 600;
  color: #f0a060;
  line-height: 1.35;
}
.reg-field textarea { resize: vertical; min-height: 110px; }
.reg-form .btn { width: 100%; margin-top: 24px; }
.reg-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.reg-legal {
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.5;
  text-align: center;
}
.reg-legal a { color: var(--blue); text-decoration: none; }
.reg-legal a:hover { text-decoration: underline; }
.reg-status {
  margin-top: 16px;
  font-size: 15px;
  text-align: center;
  color: var(--ink-dim);
}
.reg-status.ok { color: var(--green); }
.reg-status.err { color: #f0a060; }
.reg-alt,
.reg-resident {
  margin-top: 18px;
  font-size: 14px;
  text-align: center;
  color: var(--ink-dim);
}
.reg-resident { margin-top: 12px; }
.reg-alt a,
.reg-resident a { color: var(--blue); text-decoration: none; }
.reg-alt a:hover,
.reg-resident a:hover { text-decoration: underline; }

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid rgba(44, 62, 107, 0.5);
  background: var(--navy);
  padding: 34px 0;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--ink-dim);
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.footer-brand img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  object-fit: cover;
}
.footer-logo { font-family: var(--serif); font-weight: 700; font-size: 20px; color: var(--ink); }
.footer a { color: var(--blue); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

/* ---------- legal page ---------- */
.legal-page { background: var(--bg); }
.legal-main {
  padding: 120px 0 80px;
}
.legal-main h1 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.15;
  margin-bottom: 12px;
}
.legal-updated {
  color: var(--ink-dim);
  font-size: 14px;
  margin-bottom: 28px;
}
.legal-lead {
  color: var(--ink-dim);
  font-size: 16.5px;
  line-height: 1.75;
  max-width: 68ch;
  margin-bottom: 36px;
}
.legal-toc {
  margin: 0 0 48px;
  padding: 22px 24px;
  border: 1px solid var(--navy-edge);
  border-radius: 14px;
  background: rgba(22, 33, 62, 0.45);
}
.legal-toc-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.legal-toc ol {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  margin: 0;
  padding: 0;
}
.legal-toc a {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 13.5px;
  line-height: 1.4;
}
.legal-toc a:hover { color: var(--ink); }
.legal-block {
  margin-bottom: 40px;
  scroll-margin-top: 96px;
}
.legal-block h2 {
  font-size: 22px;
  margin-bottom: 14px;
}
.legal-block p {
  color: var(--ink-dim);
  font-size: 15.5px;
  line-height: 1.75;
  max-width: 68ch;
  margin-bottom: 12px;
}
.legal-block ul {
  margin: 8px 0 16px;
  padding-left: 1.15em;
  max-width: 68ch;
}
.legal-block li {
  color: var(--ink-dim);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 8px;
}
.legal-disclaimer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--navy-edge);
  color: var(--ink-dim);
  font-size: 13.5px;
  line-height: 1.65;
  max-width: 68ch;
  opacity: 0.9;
}
.legal-back {
  margin-top: 40px;
}
.legal-back a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}
.legal-back a:hover { text-decoration: underline; }
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: rgba(126, 162, 255, 0.1);
}
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
@media (max-width: 720px) {
  .legal-toc ol { grid-template-columns: 1fr; }
}

.nav-cta-short { display: none; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .trust-wrap { grid-template-columns: 1fr; gap: 44px; }
  .how-cols { grid-template-columns: 1fr; }
  .community-wrap { grid-template-columns: 1fr; gap: 36px; }
  .sec-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}

/* Tablet + phone: no scroll theaters, no stacked absolute layers */
@media (max-width: 900px) {
  .scene-3d {
    perspective: none;
    transform-style: flat;
  }
  .reveal-3d,
  .reveal-3d.in,
  .panel-3d,
  .panel-3d.in,
  .panel-3d.in:hover,
  .faq-item,
  .faq-item.open,
  .card.in,
  .community-card,
  .dash {
    transform: none !important;
    transform-style: flat;
    will-change: auto;
  }

  /* Hero: clean copy on top, building as atmosphere below */
  .hero {
    height: auto !important;
    min-height: 100svh;
  }
  .hero-sticky {
    position: relative !important;
    height: 100svh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 88px 20px 0;
    overflow: hidden;
  }
  .hero-sticky::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
      linear-gradient(180deg,
        rgba(8, 12, 22, 0.5) 0%,
        rgba(8, 12, 22, 0.22) 26%,
        transparent 46%);
  }
  #hero-canvas {
    opacity: 1;
  }
  .hero-copy {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    max-width: 34rem;
    width: 100%;
    padding: 0 4px;
    text-align: center;
    z-index: 3;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  .hero-copy::before { display: none; }
  .hero-copy .kicker {
    display: block;
    margin-bottom: 10px;
  }
  .hero-copy h1 {
    font-size: clamp(30px, 7.5vw, 40px);
    margin: 0 0 12px;
    line-height: 1.08;
  }
  .hero-copy h1 > span,
  .hero-copy h1 > em {
    white-space: nowrap;
  }
  .hero-sub-short { display: none !important; }
  .hero-sub-full {
    display: block;
    font-size: 15px;
    line-height: 1.5;
    margin: 0 auto 20px;
    max-width: 36ch;
    color: var(--ink-dim);
  }
  .hero-ctas {
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 10px;
    max-width: 340px;
    margin: 0 auto;
  }
  .hero-ctas .btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding: 12px 10px;
    font-size: 13.5px;
    white-space: nowrap;
  }
  .hero-phone {
    display: none !important;
  }
  .scroll-hint { display: none; }

  /* Journey: phone first, then steps stacked with clear gaps */
  .journey {
    height: auto !important;
  }
  .journey-sticky {
    position: relative !important;
    height: auto !important;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 56px 0 72px;
    grid-template-columns: 1fr;
  }
  .j-copy {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    padding: 0 22px;
    display: flex;
    flex-direction: column;
    gap: 36px;
    place-items: stretch;
    text-align: left;
  }
  .j-step {
    grid-area: auto !important;
    position: relative;
    opacity: 1 !important;
    transform: none !important;
    max-width: none;
    will-change: auto;
  }
  .j-step h3 { font-size: clamp(30px, 8vw, 44px); margin-bottom: 10px; }
  .j-step p { font-size: 15.5px; line-height: 1.55; }
  .j-phone-wrap {
    order: -1;
    align-self: center;
    padding: 0;
    margin: 0;
  }
  .j-phone { --phone-w: min(250px, 68vw); }
  .j-earn-plus { font-size: 40px; }
  .j-earn-halo { width: 150px; height: 150px; margin: -75px 0 0 -75px; }
  #journey-canvas { opacity: 0.28; }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 36px;
  }
  .how-cols { gap: 20px; }
  .community-wrap { gap: 28px; }
  .sec-grid { gap: 14px; }
  .comm-notif {
    opacity: 1 !important;
    transform: none !important;
  }
  .community-card { margin: 0; }
}

@media (max-width: 720px) {
  .wrap { padding: 0 18px; }
  .section { padding: 64px 0; }
  .kicker { font-size: 11.5px; }
  .lede { font-size: 15.5px; line-height: 1.55; }
  h2 { font-size: clamp(28px, 8vw, 38px); line-height: 1.12; }

  .nav {
    padding: 10px 14px;
    gap: 10px;
  }
  .nav-logo {
    font-size: 18px;
    gap: 8px;
    min-width: 0;
  }
  .nav-logo img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
  }
  .nav-actions { gap: 8px; flex-shrink: 0; }
  .lang-btn { min-width: 34px; padding: 5px 8px; font-size: 12px; }
  .nav-cta { padding: 8px 12px; font-size: 12.5px; white-space: nowrap; }
  .nav-cta-full { display: none; }
  .nav-cta-short { display: inline; }

  .hero-copy .kicker { display: block; }
  .hero-copy h1 { font-size: clamp(28px, 8vw, 36px); }
  .hero-sub-full { font-size: 14px; max-width: 34ch; }
  .hero-ctas .btn { font-size: 12.5px; padding: 11px 8px; }

  .co-plus { transform: rotate(90deg); }
  .how-col { padding: 24px 18px; }
  .how-col h3 { font-size: 22px; }
  .dash {
    padding: 16px 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .dash-rows li {
    gap: 8px;
    font-size: 13.5px;
  }
  .faq-q {
    font-size: 15.5px;
    padding: 18px 18px;
    align-items: flex-start;
  }
  .faq-a p { padding: 0 18px 18px; font-size: 14.5px; }
  .faq-item {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  }
  .faq-list { gap: 10px; }
  .reg-grid { grid-template-columns: 1fr; gap: 14px; }
  .reg-form { padding: 20px 16px; }
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 12px;
  }
  .btn-lg { padding: 16px 28px; font-size: 16px; }
}

@media (max-width: 420px) {
  .hero-copy h1 { font-size: 28px; }
  .hero-sub { font-size: 14.5px; }
  .nav-logo span { max-width: 12ch; overflow: hidden; text-overflow: ellipsis; }
  .j-phone { --phone-w: min(230px, 72vw); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-hint-line { animation: none; }
  .reveal-3d { opacity: 1; transform: none; transition: none; }
  .splash { display: none !important; }
  .faq-orb { animation: none; }
  .faq-item { transform: none !important; }
}
