/* ==========================================================================
   SendIt Landing — Option C (dark mode primary, coral accents)
   ========================================================================== */

:root {
  /* Option C overrides — rich near-black, not pure black */
  --ink:        #0E1117;       /* primary surface */
  --ink-soft:   #15191F;       /* raised */
  --ink-line:   #232831;       /* hairlines on dark */
  --ink-line-2: #2F3540;
  --on-ink:     #FFFFFF;
  --on-ink-mid: #B7BCC8;
  --on-ink-low: #7C849F;

  --coral:       #FF5B47;
  --coral-hover: #FF7A6A;
  --coral-press: #E04332;
  --coral-soft:  rgba(255, 91, 71, 0.12);

  --warm:       #F5F2ED;       /* warm off-white (Plasma cue, used sparingly) */
}

html, body { margin: 0; padding: 0; background: var(--ink); color: var(--on-ink); }

/* Force heading color on dark surfaces (override colors_and_type.css default) */
.page, .page h1, .page h2, .page h3, .page h4, .page h5, .page h6 { color: var(--on-ink); }
/* …but the warm cream "how it works" section is light */
.how, .how h1, .how h2, .how h3 { color: #0B1126; }
body {
  font-family: 'General Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-feature-settings: "ss01" 1;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

* { box-sizing: border-box; }

.num {
  font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  font-feature-settings: "tnum" 1, "zero" 1;
  letter-spacing: -0.01em;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-ink-low);
}

.display-xl { font-size: clamp(48px, 7.5vw, 108px); font-weight: 600; line-height: 0.98; letter-spacing: -0.035em; }
.display-lg { font-size: clamp(36px, 5vw, 68px); font-weight: 600; line-height: 1.03; letter-spacing: -0.03em; }

/* ===== Buttons ===== */
.btn-coral {
  position: relative;
  background: var(--coral);
  color: #fff;
  border: none;
  font: 500 16px/1 'General Sans', sans-serif;
  letter-spacing: -0.005em;
  padding: 18px 26px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    background 200ms cubic-bezier(.22,1,.36,1),
    box-shadow 240ms cubic-bezier(.22,1,.36,1),
    transform 240ms cubic-bezier(.22,1,.36,1);
  box-shadow:
    0 12px 32px rgba(255, 91, 71, 0.25),
    0 0 32px rgba(255, 91, 71, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-coral svg {
  transition: transform 240ms cubic-bezier(.22,1,.36,1);
}
.btn-coral:hover {
  background: var(--coral-hover);
  box-shadow:
    0 16px 40px rgba(255, 91, 71, 0.36),
    0 0 48px rgba(255, 91, 71, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}
.btn-coral:hover svg { transform: translateX(4px); }
.btn-coral:active {
  background: var(--coral-press);
  transform: scale(0.98);
  transition: background 120ms ease, transform 80ms ease;
}
.btn-coral.btn-sm {
  padding: 11px 18px;
  font-size: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  white-space: nowrap;
}
.btn-coral.btn-sm:hover {
  box-shadow:
    0 6px 18px rgba(255, 91, 71, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-ghost {
  position: relative;
  background: transparent;
  color: var(--on-ink);
  border: 1px solid var(--ink-line-2);
  font: 500 16px/1 'General Sans', sans-serif;
  padding: 17px 24px;
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: background 200ms, color 240ms cubic-bezier(.22,1,.36,1), border-color 240ms cubic-bezier(.22,1,.36,1);
}
.btn-ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid var(--coral);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 380ms cubic-bezier(.22,1,.36,1);
  pointer-events: none;
  z-index: 0;
}
.btn-ghost:hover {
  background: var(--ink-soft);
  color: var(--on-ink);
  border-color: transparent;
}
.btn-ghost:hover::before {
  transform: scaleX(1);
}

/* ===== Nav ===== */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: transparent;
  border-bottom: none;
}
.nav-brand { display: inline-flex; }
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  color: var(--on-ink-mid);
}
.nav-links a {
  color: inherit;
  text-decoration: none;
  transition: color 150ms;
}
.nav-links a:hover { color: var(--on-ink); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-sign {
  font-size: 14px;
  font-weight: 500;
  color: var(--on-ink-mid);
  text-decoration: none;
  white-space: nowrap;
}
.nav-sign:hover { color: var(--on-ink); }

@media (max-width: 860px) {
  .nav-links { display: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 120px 0 120px;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-bg.jpg");
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14,17,23,0.96) 0%, rgba(14,17,23,0.86) 38%, rgba(14,17,23,0.45) 62%, rgba(14,17,23,0.25) 100%),
    linear-gradient(180deg, rgba(14,17,23,0.55) 0%, rgba(14,17,23,0.35) 40%, rgba(14,17,23,0.92) 100%);
  z-index: 0;
}

/* Slow-drifting coral radial glow behind the headline */
.hero-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  left: 8%;
  top: 30%;
  background: radial-gradient(circle at center,
    rgba(255, 91, 71, 0.22) 0%,
    rgba(255, 91, 71, 0.10) 35%,
    rgba(255, 91, 71, 0) 70%);
  filter: blur(60px);
  opacity: 0.14;
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
@media (prefers-reduced-motion: no-preference) {
  .hero-glow {
    animation: hero-glow-drift 40s ease-in-out infinite alternate;
  }
}
@keyframes hero-glow-drift {
  0%   { transform: translate(-50%, -50%) translate(0px, 0px) scale(1); opacity: 0.12; }
  25%  { transform: translate(-50%, -50%) translate(60px, -40px) scale(1.05); opacity: 0.16; }
  50%  { transform: translate(-50%, -50%) translate(-30px, 50px) scale(0.97); opacity: 0.13; }
  75%  { transform: translate(-50%, -50%) translate(40px, 30px) scale(1.03); opacity: 0.17; }
  100% { transform: translate(-50%, -50%) translate(-50px, -20px) scale(1); opacity: 0.12; }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.hero-content > * { max-width: 720px; }
.hero-content .hero-headline { max-width: 880px; }

.hero-headline {
  font-size: clamp(48px, 6.8vw, 96px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 28px 0 0;
  text-wrap: balance;
  display: flex;
  flex-direction: column;
  gap: 0.12em;
}
.hl-line {
  display: block;
  line-height: 1;
  overflow: hidden;
  padding-bottom: 0.05em;
}
.hl-inner {
  display: block;
  transform: translateY(105%);
  opacity: 0;
  will-change: transform, opacity;
  animation: hl-reveal 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hl-1 .hl-inner { animation-delay: 80ms; }
.hl-2 .hl-inner { animation-delay: 160ms; }
.hl-3 .hl-inner { animation-delay: 240ms; }

@keyframes hl-reveal {
  0%   { transform: translateY(105%); opacity: 0; }
  60%  { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Cycling text — window must fit descenders (g, y, p) */
.cycle-line {
  display: block;
  line-height: 1.25;
}
.cycle {
  display: inline-flex;
  align-items: center;
  position: relative;
  color: var(--coral);
  line-height: 1.25;
  min-width: 0;
  overflow: hidden;
  padding-right: 0.05em;
}
.cycle-item {
  height: 1.25em;
  display: inline-flex;
  align-items: center;
  gap: 0.22em;
  white-space: nowrap;
  line-height: 1.25;
}
.cycle-item-active {
  animation: cycle-word-in 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.cycle-item-active .cycle-flag {
  display: inline-block;
  animation: cycle-flag-in 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.cycle-flag { font-size: 0.7em; line-height: 1; display: inline-block; }
.cycle-city {
  position: relative;
  color: var(--coral);
  line-height: 1.25;
  display: inline-block;
}
@keyframes cycle-word-in {
  0%   { transform: translateY(45%); opacity: 0; }
  60%  { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes cycle-flag-in {
  0%   { transform: translate(8px, 40%); opacity: 0; }
  60%  { opacity: 1; }
  100% { transform: translate(0, 0); opacity: 1; }
}

.hero-sub {
  margin-top: 28px;
  font-size: 19px;
  line-height: 1.45;
  color: var(--on-ink-mid);
  max-width: 560px;
  opacity: 0;
  animation: hero-fade-up 600ms cubic-bezier(0.22, 1, 0.36, 1) 740ms forwards;
}

.hero-ctas {
  margin-top: 40px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-ctas .btn-coral,
.hero-ctas .btn-ghost {
  opacity: 0;
  transform: scale(0.96);
  animation: cta-pop-in 500ms cubic-bezier(0.22, 1, 0.36, 1) 1100ms forwards;
}
.hero-ctas .btn-ghost { animation-delay: 1180ms; }
.hero-ctas .btn-coral {
  /* one-time pulse after entrance */
  animation:
    cta-pop-in 500ms cubic-bezier(0.22, 1, 0.36, 1) 1100ms forwards,
    cta-coral-pulse 1600ms cubic-bezier(0.22, 1, 0.36, 1) 1700ms 1;
}
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes cta-pop-in {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes cta-coral-pulse {
  0%   { box-shadow:
          0 12px 32px rgba(255, 91, 71, 0.25),
          0 0 0 0 rgba(255, 91, 71, 0.55),
          inset 0 1px 0 rgba(255, 255, 255, 0.18); }
  60%  { box-shadow:
          0 12px 32px rgba(255, 91, 71, 0.25),
          0 0 0 18px rgba(255, 91, 71, 0),
          inset 0 1px 0 rgba(255, 255, 255, 0.18); }
  100% { box-shadow:
          0 12px 32px rgba(255, 91, 71, 0.25),
          0 0 32px rgba(255, 91, 71, 0.30),
          inset 0 1px 0 rgba(255, 255, 255, 0.18); }
}

@media (prefers-reduced-motion: reduce) {
  .hl-inner,
  .hero-sub,
  .hero-ctas .btn-coral,
  .hero-ctas .btn-ghost {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .cycle-item-active,
  .cycle-item-active .cycle-flag {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .hero-glow { animation: none !important; }
}

/* Speed lines (decorative motif) */
.speedlines {
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
  z-index: 0;
}
.speedlines > span {
  display: block;
  height: 6px;
  background: var(--coral);
  border-radius: 999px;
  transform: skewX(-22deg);
}

/* ===== iPhone frame ===== */
.iphone {
  position: relative;
  width: 320px;
  filter: drop-shadow(0 50px 80px rgba(0,0,0,0.55)) drop-shadow(0 16px 30px rgba(0,0,0,0.35));
  transform: rotate(-3deg);
}
.iphone-frame {
  position: relative;
  background: linear-gradient(135deg, #1d2129 0%, #0c0e13 100%);
  border-radius: 48px;
  padding: 12px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.06), inset 0 0 0 6px #050608;
}
.iphone-screen {
  position: relative;
  background: #F7F6F2;
  color: #0B1126;
  border-radius: 38px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
}
.iphone-island {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 22px;
  background: #050608;
  border-radius: 999px;
  z-index: 10;
}
.iphone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 26px 0;
  font-size: 13px;
  font-weight: 700;
  color: #0B1126;
}
.iphone-status .iphone-status-r {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #0B1126;
}
.iphone-side {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  z-index: 1;
}
.iphone-side > span {
  position: absolute;
  width: 4px;
  background: #1a1d24;
  border-radius: 2px;
  display: block;
}
.iphone-side-l { left: -3px; }
.iphone-side-r { right: -3px; }

/* ===== Stage: scroll-evolving phone section ===== */
.stage {
  position: relative;
  min-height: 500vh;
  border-top: 1px solid var(--ink-line);
  background: linear-gradient(180deg, var(--ink) 0%, #0B0E14 100%);
}
.stage-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.stage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.stage-copy {
  position: relative;
  min-height: 360px;
}
.chapter {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (prefers-reduced-motion: no-preference) {
  .chapter {
    transition:
      opacity 400ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
  }
}
.chapter.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.chapter-eyebrow { margin-bottom: 18px; }
.chapter-title {
  margin: 0 0 22px;
  text-wrap: balance;
  max-width: 560px;
}
.chapter-body {
  margin: 0;
  font-size: 19px;
  line-height: 1.5;
  color: var(--on-ink-mid);
  max-width: 520px;
}

.stage-phone-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
.stage-phone-wrap {
  position: relative;
  width: 100%;
  max-width: 340px;
  display: flex;
  justify-content: center;
}
.stage-phone-wrap .iphone {
  transform: rotate(-2deg);
}

/* Phone screens (cross-fade slot inside the iphone-screen area) */
.phone-screen {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  overflow: hidden;
}
@media (prefers-reduced-motion: no-preference) {
  .phone-screen {
    transition:
      opacity 350ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
  }
}
.phone-screen.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Stage chapter dots */
.stage-dots {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 20;
}
.stage-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition:
    border-color 200ms ease,
    background 200ms ease,
    transform 200ms cubic-bezier(0.22, 1, 0.36, 1);
}
.stage-dot:hover { border-color: var(--coral); }
.stage-dot.is-passed {
  background: var(--coral);
  border-color: var(--coral);
}
.stage-dot.is-active {
  transform: scale(1.25);
}

/* ===== Phone screen content (shared bits) ===== */
.scr {
  position: absolute;
  inset: 0;
  /* Top padding clears the iPhone dynamic island (sits at 10px + 28px tall = 38px),
     plus breathing room. Bottom padding reserves space for the persistent receipt
     strip (~14px offset + ~28px chip height + breathing room). */
  padding: 76px 18px 78px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #0B1126;
  min-height: 0;
}
.scr-head {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #0B1126;
  text-align: center;
  margin-bottom: 2px;
}
.coral { color: var(--coral); }

/* ----- Screen 01: Receipt / The $0 ----- */
.scr-zero { align-items: stretch; }
.scr-receipt-card {
  background: #fff;
  border: 1px solid rgba(11,17,38,0.06);
  border-radius: 18px;
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 12px rgba(11,17,38,0.05);
}
.scr-rc-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.scr-rc-lbl {
  font-size: 10px;
  color: #7C849F;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.scr-rc-amt {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.scr-rc-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,91,71,0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 2px 0;
}
.scr-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(11,17,38,0.04);
  border-radius: 999px;
  font-size: 10px;
  color: #4a5170;
  font-weight: 500;
  white-space: nowrap;
}
.scr-strip-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(11,17,38,0.25);
}
.scr-noes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 4px 6px;
}
.scr-no {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #0B1126;
}
.scr-no-ic {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,91,71,0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ----- Shared phone-screen primitives (used by 02–05) ----- */
.scr-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -8px;
}
.scr-av {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(11,17,38,0.08);
  color: #0B1126;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}
.scr-topbar-help {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(11,17,38,0.06);
  color: #0B1126;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}
.scr-topbar-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(11,17,38,0.06);
  color: #0B1126;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.scr-back {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(11,17,38,0.06);
  color: #0B1126;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.scr-back-ghost { background: transparent; }

/* ----- Screen 02: Send / recipient search ----- */
.scr-send { align-items: stretch; }
.scr-send-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -8px;
}
.scr-send-title {
  font-size: 12px;
  font-weight: 600;
  color: #0B1126;
}
.scr-send-lbl {
  font-size: 9px;
  color: #7C849F;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-top: 2px;
}
.scr-search {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 11px;
  background: var(--warm);
  border: 1px solid rgba(11,17,38,0.10);
  border-radius: 10px;
}
.scr-search-ic { color: #7C849F; flex: 0 0 auto; }
.scr-search-txt {
  font-size: 13px;
  font-weight: 500;
  color: #0B1126;
  letter-spacing: -0.01em;
}
.scr-search-cursor {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: var(--coral);
  margin-left: 1px;
}
@media (prefers-reduced-motion: no-preference) {
  .scr-search-cursor {
    animation: scr-cursor-blink 1.05s steps(1) infinite;
  }
}
@keyframes scr-cursor-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
.scr-results {
  background: #fff;
  border: 1px solid rgba(11,17,38,0.06);
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(11,17,38,0.06);
  padding: 3px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.scr-result {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 6px;
  border-radius: 8px;
  background: transparent;
}
.scr-result.is-selected { background: rgba(255,91,71,0.10); }
.scr-result-av {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  flex: 0 0 auto;
}
.scr-result-mid { flex: 1 1 auto; min-width: 0; }
.scr-result-name {
  font-size: 10px;
  font-weight: 600;
  color: #0B1126;
  line-height: 1.1;
}
.scr-result-handle {
  font-size: 9px;
  color: #7C849F;
  line-height: 1.1;
  margin-top: 1px;
}
.scr-result-flag {
  font-size: 11px;
  flex: 0 0 auto;
}
.scr-send-foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.scr-arrives {
  font-size: 9px;
  color: #7C849F;
  font-weight: 500;
}
.scr-send-btn {
  background: var(--coral);
  color: #fff;
  border: none;
  width: 100%;
  padding: 10px 14px;
  border-radius: 999px;
  font: 600 12px/1 'General Sans', sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(255,91,71,0.28);
}

/* ----- Screen 03: Spend / Home ----- */
.scr-spend { align-items: stretch; }
.scr-balance { margin-top: -2px; }
.scr-balance-lbl {
  font-size: 9px;
  color: #7C849F;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.scr-balance-num {
  font-size: 28px;
  font-weight: 700;
  color: #0B1126;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-top: 2px;
}
.scr-balance-sub {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  font-size: 9px;
  color: #7C849F;
  font-weight: 500;
}
.scr-actions {
  display: flex;
  gap: 6px;
}
.scr-act {
  flex: 1 1 0;
  border-radius: 999px;
  padding: 9px 0;
  font: 600 11px/1 'General Sans', sans-serif;
  border: 1px solid transparent;
  cursor: pointer;
}
.scr-act-prim { background: #0B1126; color: #fff; }
.scr-act-sec  { background: #fff; color: #0B1126; border-color: rgba(11,17,38,0.10); }

.scr-card-visual {
  align-self: stretch;
  width: 100%;
  aspect-ratio: 1.586 / 1;
  background:
    radial-gradient(circle at 18% 18%, #2E3340 0%, transparent 55%),
    radial-gradient(circle at 90% 95%, #050608 0%, transparent 60%),
    linear-gradient(155deg, #1E222D 0%, #14181F 45%, #0A0C11 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 11px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  color: #fff;
  box-shadow:
    0 10px 22px rgba(11,17,38,0.22),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.scr-card-visual::after {
  /* Subtle coral glow from the bottom-left corner — keeps brand presence. */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 100%, rgba(255,91,71,0.10), transparent 50%);
  pointer-events: none;
  border-radius: inherit;
}
.scv-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255,255,255,0.06) 45%,
    rgba(255,255,255,0.16) 50%,
    rgba(255,255,255,0.06) 55%,
    transparent 70%
  );
  transform: translateX(-100%);
  pointer-events: none;
  border-radius: inherit;
  z-index: 1;
}
@media (prefers-reduced-motion: no-preference) {
  .scv-sheen { animation: scv-shimmer 5s linear infinite; }
}
@keyframes scv-shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.scv-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.scv-brand { display: inline-flex; align-items: center; }
.scv-chip {
  width: 26px;
  height: 20px;
  border-radius: 4px;
  background:
    linear-gradient(135deg, #E8C77A 0%, #C99A3A 45%, #8C6A22 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -1px 0 rgba(0,0,0,0.25);
  position: relative;
}
.scv-chip::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 2px;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(0,0,0,0.18) 0 1px,
      transparent 1px 4px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,0.18) 0 1px,
      transparent 1px 4px
    );
  opacity: 0.7;
}
.scv-mid {
  margin-top: auto;
  position: relative;
  z-index: 2;
}
.scv-amt {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}
.scv-amt-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 6px rgba(255,91,71,0.6);
}
.scv-amt-lbl {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 3px;
}
.scv-bottom {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 2;
}
.scv-cardno {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.12em;
}
.scv-exp {
  font-size: 9px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}

.scr-txns {
  background: var(--warm);
  border: 1px solid rgba(11,17,38,0.06);
  border-radius: 10px;
  padding: 3px 6px;
  display: flex;
  flex-direction: column;
}
.scr-txn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 2px;
}
.scr-txn-ic {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.scr-txn-ic-bag  { background: var(--coral); }
.scr-txn-ic-fork { background: #4A5170; }
.scr-txn-mid { flex: 1 1 auto; min-width: 0; }
.scr-txn-name {
  font-size: 10px;
  font-weight: 600;
  color: #0B1126;
  line-height: 1.1;
}
.scr-txn-date {
  font-size: 9px;
  color: #7C849F;
  line-height: 1.1;
  margin-top: 1px;
}
.scr-txn-right { text-align: right; }
.scr-txn-amt {
  font-size: 10px;
  font-weight: 600;
  color: #0B1126;
  line-height: 1.1;
}
.scr-txn-cb {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  font-size: 9px;
  color: var(--coral);
  font-weight: 600;
  line-height: 1.1;
  margin-top: 1px;
}
.scr-txn-tok {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--coral);
  display: inline-block;
}
.scr-txn-div {
  height: 1px;
  background: rgba(11,17,38,0.06);
  margin: 0 2px;
}

/* ----- Screen 04: Markets / Trade ----- */
.scr-trade { align-items: stretch; gap: 8px; }
.scr-trade-hdr {
  display: grid;
  grid-template-columns: 16px 1fr 16px;
  align-items: center;
  margin-top: -8px;
  gap: 4px;
}
.scr-trade-hdr-spacer { display: block; }
.scr-trade-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0B1126;
  text-align: center;
}

.scr-portfolio {
  background: linear-gradient(160deg, #1A2240 0%, #0B1126 100%);
  color: #fff;
  border-radius: 12px;
  padding: 8px 14px;
  position: relative;
  overflow: hidden;
  text-align: left;
}
.scr-portfolio::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(255,91,71,0.16), transparent 55%);
  pointer-events: none;
}
.scr-portfolio-val {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  position: relative;
}
.scr-portfolio-lbl {
  font-size: 7px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 3px;
  position: relative;
}

.scr-holdings {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.scr-hold {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 4px;
}
.scr-hold + .scr-hold {
  border-top: 1px solid rgba(11,17,38,0.06);
}
.scr-tok-circle {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--coral); /* fallback; overridden inline per row */
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
}
.scr-tok-circle svg {
  width: 13px;
  height: 13px;
  display: block;
}
.scr-tok-letter {
  font-family: 'General Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: 11px;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
}
.scr-tok-letter-btc {
  font-size: 13px;
  font-weight: 700;
}
.scr-tok-letter-sm {
  font-size: 7.5px;
  letter-spacing: -0.04em;
  font-weight: 700;
}
.scr-hold-meta { flex: 1 1 auto; min-width: 0; }
.scr-hold-sym {
  font-size: 11px;
  font-weight: 700;
  color: #0B1126;
  line-height: 1.15;
}
.scr-hold-name {
  font-size: 9px;
  color: #7C849F;
  font-weight: 500;
  line-height: 1.15;
  margin-top: 1px;
}
.scr-hold-r { text-align: right; }
.scr-hold-price {
  font-size: 11px;
  font-weight: 700;
  color: #0B1126;
  line-height: 1.15;
}
.scr-hold-pct {
  font-size: 9px;
  color: var(--coral);
  font-weight: 600;
  margin-top: 1px;
}

.scr-trade-foot {
  margin-top: auto;
  display: flex;
  gap: 6px;
}
.scr-trade-buy,
.scr-trade-sell {
  flex: 1 1 0;
  border-radius: 999px;
  padding: 10px 0;
  font: 700 13px/1 'General Sans', sans-serif;
  cursor: pointer;
  border: 1px solid transparent;
}
.scr-trade-buy {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 6px 14px rgba(255,91,71,0.26);
}
.scr-trade-sell {
  background: transparent;
  color: #0B1126;
  border-color: rgba(11,17,38,0.20);
}

/* ----- Screen 05: Save / Earn ----- */
.scr-save { align-items: stretch; gap: 8px; }
.scr-earn { margin-top: -2px; }
.scr-earn-lbl {
  font-size: 9px;
  color: #7C849F;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.scr-earn-num {
  font-size: 32px;
  font-weight: 700;
  color: #0B1126;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 2px;
}
.scr-earn-apy {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  font-size: 11px;
  color: var(--coral);
  font-weight: 700;
}
.scr-earn-cta {
  background: #0B1126;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 11px 0;
  font: 600 12px/1 'General Sans', sans-serif;
  cursor: pointer;
  width: 100%;
}
.scr-earn-reassure {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  color: #7C849F;
  font-weight: 500;
  margin-top: -2px;
}

.scr-sim {
  background: #fff;
  border: 1px solid rgba(11,17,38,0.08);
  border-radius: 12px;
  padding: 8px 10px 6px;
  margin-top: auto;
  box-shadow: 0 2px 8px rgba(11,17,38,0.04);
}
.scr-sim-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}
.scr-sim-title {
  font-size: 9px;
  font-weight: 700;
  color: #0B1126;
}
.scr-sim-step {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.scr-sim-step-btn {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.scr-sim-step-val {
  font-size: 9px;
  font-weight: 700;
  color: #0B1126;
}
.scr-sim-div {
  height: 1px;
  background: rgba(11,17,38,0.06);
  margin: 6px 0 5px;
}
.scr-sim-lbl {
  font-size: 8px;
  color: #7C849F;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.scr-sim-num {
  font-size: 18px;
  font-weight: 700;
  color: #0B1126;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-top: 2px;
}
.scr-sim-chart {
  width: 100%;
  height: 24px;
  margin-top: 4px;
  display: block;
}
.scr-sim-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3px;
  margin-top: 4px;
}
.scr-sim-tabs span {
  flex: 1 1 0;
  text-align: center;
  font-size: 9px;
  font-weight: 600;
  color: #7C849F;
  padding: 4px 0;
  border-radius: 999px;
}
.scr-sim-tabs span.is-active {
  background: rgba(11,17,38,0.08);
  color: #0B1126;
}

/* Reduced motion: snap chapters & screens, no transition */
@media (prefers-reduced-motion: reduce) {
  .chapter, .phone-screen {
    transition: none !important;
    transform: none !important;
  }
}

/* Tablet/mobile Stage */
@media (max-width: 860px) {
  .stage { min-height: 400vh; }
  .stage-sticky {
    align-items: flex-start;
    padding-top: 8vh;
  }
  .stage-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 24px;
    padding-top: 0;
    align-items: start;
    height: 100%;
  }
  .stage-phone-col { order: 1; }
  .stage-copy {
    order: 2;
    min-height: 220px;
    padding: 0 4px;
  }
  .stage-phone-wrap {
    max-width: 240px;
    margin: 0 auto;
  }
  .stage-phone-wrap .iphone {
    width: 240px;
    transform: rotate(-1.5deg);
  }
  .chapter-title { font-size: clamp(28px, 6vw, 40px); }
  .chapter-body { font-size: 15px; max-width: none; }
  /* Stage dots: mobile container + rail layout lives in the Phase 2
     mobile block lower in this file (it must come AFTER the Phase 2
     desktop `.stage-dots` rule to win on small screens). */
}

/* ===== How it works ===== */
.how {
  padding: 140px 0;
  background: var(--warm);
  color: #0B1126;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
.how .eyebrow { color: rgba(11,17,38,0.5); }
.how-head { max-width: 800px; }
.how-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.step { position: relative; }
.step-num {
  font-size: 14px;
  color: var(--coral);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.step-line {
  position: absolute;
  top: 7px; left: 28px; right: -32px;
  height: 1px;
  pointer-events: none;
}
.step-line span {
  display: block; height: 1px;
  background: repeating-linear-gradient(to right, rgba(11,17,38,0.2) 0, rgba(11,17,38,0.2) 4px, transparent 4px, transparent 8px);
}
.step:last-child .step-line { display: none; }
.step-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
}
.step-body {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(11,17,38,0.65);
  max-width: 320px;
}

/* ===== Comparison ===== */
.compare {
  padding: 140px 0;
}
.cmp {
  margin-top: 56px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--ink-line);
  background: var(--ink-soft);
}
.cmp-row {
  display: grid;
  grid-template-columns: minmax(220px, 2fr) repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--ink-line);
}
.cmp-row:last-child { border-bottom: none; }
.cmp-cell {
  height: 56px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--on-ink-mid);
  box-sizing: border-box;
}
.cmp-label-cell {
  justify-content: flex-start;
  font-size: 14px;
  color: var(--on-ink);
  font-weight: 500;
}
.cmp-head-row { background: #0B0E14; }
.cmp-head-row .cmp-cell { height: 52px; font-size: 12px; font-weight: 600; color: var(--on-ink-mid); letter-spacing: 0.02em; }
.cmp-col-hero {
  background: rgba(255,91,71,0.08);
  position: relative;
}
.cmp-col-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--coral);
}
.cmp-hero-cell { background: rgba(255,91,71,0.05); }

.cmp-val { font-size: 14px; color: var(--on-ink-mid); }
.cmp-val-hero { color: var(--coral); font-weight: 700; font-size: 15px; }

.cmp-badge {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cmp-yes { background: rgba(31,167,122,0.18); color: #1FA77A; }
.cmp-yes-hero { background: var(--coral); color: #fff; }
.cmp-no { background: var(--ink-line); color: var(--on-ink-low); }
.cmp-badge svg { display: block; }

.lifetime {
  margin-top: 72px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1000px;
}
.lifetime-num {
  font-size: clamp(80px, 9vw, 132px);
  font-weight: 600;
  color: var(--on-ink);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.lifetime-body {
  font-size: 20px;
  line-height: 1.45;
  color: var(--on-ink-mid);
  max-width: 560px;
}

/* ===== Final CTA ===== */
.final {
  position: relative;
  padding: 140px 0 160px;
  border-top: 1px solid var(--ink-line);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,91,71,0.12), transparent 60%),
    var(--ink);
}
.final-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.final-headline {
  text-wrap: balance;
}
.final-body {
  margin: 32px auto 0;
  font-size: 20px;
  color: var(--on-ink-mid);
  max-width: 560px;
  line-height: 1.5;
}
.final-count { color: var(--on-ink); font-weight: 600; }
.waitlist {
  margin: 48px auto 0;
  display: flex;
  gap: 8px;
  padding: 8px;
  background: var(--ink-soft);
  border: 1px solid var(--ink-line-2);
  border-radius: 999px;
  max-width: 520px;
}
.waitlist input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--on-ink);
  padding: 0 20px;
  font: 500 16px/1 'General Sans', sans-serif;
  outline: none;
}
.waitlist input::placeholder { color: var(--on-ink-low); }
.waitlist .btn-coral { box-shadow: none; padding: 16px 22px; }
.referral {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--on-ink-mid);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: color 150ms;
}
.referral:hover { color: var(--on-ink); }

/* ===== Footer ===== */
.footer {
  background: #08090E;
  padding: 80px 0 40px;
  border-top: 1px solid var(--ink-line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 2.6fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--ink-line);
}
.footer-tag {
  margin-top: 18px;
  font-size: 14px;
  color: var(--on-ink-low);
  max-width: 260px;
  line-height: 1.45;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer-cols > div { display: flex; flex-direction: column; gap: 10px; }
.footer-title {
  /* Reset h3 user-agent defaults (margin, font-size, font-weight) so the
     same rule renders identically whether the element is a <div> or <h3>. */
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--on-ink-low);
  font-family: 'JetBrains Mono', monospace;
}
.footer-cols a {
  font-size: 14px;
  color: var(--on-ink-mid);
  text-decoration: none;
  cursor: pointer;
  transition: color 150ms;
}
.footer-cols a:hover { color: var(--on-ink); }
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-social svg {
  flex: 0 0 14px;
  transition: color 150ms, transform 200ms cubic-bezier(.22,1,.36,1);
}
.footer-social:hover svg { color: var(--coral); transform: scale(1.1); }

.footer-fine {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--on-ink-low);
  flex-wrap: wrap;
  gap: 16px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .how-grid { grid-template-columns: 1fr; gap: 48px; }
  .step-line { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .nav { padding: 14px 20px; }
  .hero { padding: 40px 0 80px; }
  .hero-headline { font-size: 44px; }
  .how, .compare, .final { padding: 80px 0; }
  .lifetime { grid-template-columns: 1fr; gap: 24px; }
  .lifetime-num {
    font-size: clamp(48px, 14vw, 84px);
    letter-spacing: -0.035em;
    white-space: nowrap;
  }
  .lifetime-num span { display: inline; }

  /* Comparison table — tighten the 5-column grid so it fits on phones.
     Label column shrinks, value columns get smaller text + padding, and
     the whole table can horizontally scroll as a safety net at <380px. */
  .cmp { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .cmp-row {
    grid-template-columns: minmax(120px, 1.5fr) repeat(4, minmax(58px, 1fr));
    min-width: 460px;
  }
  .cmp-cell { height: 48px; padding: 0 6px; font-size: 11px; }
  .cmp-label-cell {
    padding: 0 10px;
    font-size: 12px;
    font-weight: 600;
    white-space: normal;
    line-height: 1.2;
  }
  .cmp-head-row .cmp-cell { height: 42px; font-size: 10px; padding: 0 4px; }
  .cmp-val { font-size: 11px; white-space: nowrap; }
  .cmp-val-hero { font-size: 12px; white-space: nowrap; }
  .cmp-badge { width: 18px; height: 18px; flex: 0 0 18px; }
  .cmp-badge svg { width: 10px; height: 10px; }

  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .waitlist { flex-direction: column; border-radius: 24px; }
  .waitlist input { padding: 14px 16px; text-align: center; }
  .waitlist .btn-coral { width: 100%; justify-content: center; }
  .modal { padding: 28px 22px; }
  .modal-form { flex-direction: column; border-radius: 20px; }
  .modal-form input { padding: 14px 16px; text-align: center; }
  .modal-form .btn-coral { width: 100%; justify-content: center; }
  .route-shell { padding: 26px 20px; border-radius: 24px; }
  .route-title { font-size: 34px; }
  .route-copy { font-size: 15px; }
  .route-actions,
  .modal-actions {
    flex-direction: column;
  }
  .route-socials { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .leaderboard-stats { grid-template-columns: 1fr; }
  .leaderboard-head,
  .leaderboard-row {
    grid-template-columns: 72px minmax(0, 1fr) 92px 110px;
    padding: 14px;
  }
  .modal-stack > input,
  .modal-referral-block input {
    text-align: center;
  }
  .modal-detail-row,
  .modal-detail-row-break {
    flex-direction: column;
    align-items: flex-start;
  }
  .modal-detail-row strong,
  .modal-detail-row-break strong {
    max-width: none;
    text-align: left;
  }
}

/* ===== Early access modal ===== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 20, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 100;
  animation: modal-fade 180ms ease-out;
}
.modal {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: rgba(17, 17, 17, 0.55);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border: 1px solid rgba(255, 91, 71, 0.7);
  border-radius: 24px;
  padding: 36px 32px 32px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55),
              0 0 0 4px rgba(255, 91, 71, 0.10),
              inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: var(--on-ink, #fff);
  animation: modal-pop 220ms cubic-bezier(0.2, 0.9, 0.3, 1.2);
  text-align: left;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: none;
  background: var(--ink-soft, rgba(255, 255, 255, 0.06));
  color: var(--on-ink-low, rgba(255, 255, 255, 0.6));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease;
}
.modal-close:hover {
  background: rgba(255, 91, 71, 0.14);
  color: var(--coral);
}
.modal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--coral-soft);
  color: var(--coral);
  font: 600 12px/1 'General Sans', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.modal-title {
  font: 600 28px/1.15 'General Sans', sans-serif;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.modal-sub {
  color: var(--on-ink-low, rgba(255, 255, 255, 0.65));
  font: 400 15px/1.5 'General Sans', sans-serif;
  margin: 0 0 22px;
}
.modal-email { color: var(--on-ink, #fff); font-weight: 500; }
.modal-form {
  display: flex;
  gap: 8px;
  padding: 8px;
  background: var(--ink-soft, rgba(255, 255, 255, 0.06));
  border: 1px solid var(--ink-line-2, rgba(255, 255, 255, 0.08));
  border-radius: 999px;
  margin-bottom: 14px;
}
.modal-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--on-ink, #fff);
  padding: 0 18px;
  font: 500 15px/1 'General Sans', sans-serif;
  outline: none;
  min-width: 0;
}
.modal-form input::placeholder { color: var(--on-ink-low, rgba(255, 255, 255, 0.45)); }
.modal-form .btn-coral { box-shadow: none; padding: 14px 18px; font-size: 14px; white-space: nowrap; }
.modal-waitlist-upgrade { max-width: 520px; }
.modal-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal-stack > input,
.modal-referral-block input {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.28);
  color: var(--on-ink, #fff);
  padding: 15px 16px;
  font: 500 15px/1 'General Sans', sans-serif;
  outline: none;
}
.modal-stack > input::placeholder,
.modal-referral-block input::placeholder {
  color: var(--on-ink-low, rgba(255, 255, 255, 0.45));
}
.modal-stack > input:focus,
.modal-referral-block input:focus {
  border-color: rgba(255, 91, 71, 0.72);
}
.modal-referral-block {
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}
.modal-referral-label {
  margin: 0 0 10px;
  color: var(--on-ink-low, rgba(255, 255, 255, 0.62));
  font: 600 11px/1 'General Sans', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.modal-submit {
  width: 100%;
  justify-content: center;
}
.modal-submit[disabled] {
  opacity: 0.7;
  cursor: wait;
}
.modal-error,
.modal-note {
  margin: 12px 0 0;
  font: 500 13px/1.5 'General Sans', sans-serif;
}
.modal-error { color: #ffb7ae; }
.modal-note { color: rgba(255, 255, 255, 0.72); }
.modal-detail-card {
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}
.modal-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}
.modal-detail-row + .modal-detail-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.modal-detail-row strong {
  color: #fff;
  font: 600 14px/1.2 'General Sans', sans-serif;
  text-align: right;
}
.modal-detail-row-break {
  align-items: flex-start;
}
.modal-detail-row-break strong {
  max-width: 58%;
  line-height: 1.45;
  word-break: break-all;
}
.modal-actions {
  display: flex;
  gap: 10px;
  margin: 0 0 10px;
}
.modal-action-btn {
  flex: 1;
  justify-content: center;
  text-align: center;
  text-decoration: none;
}
.modal-fine {
  color: var(--on-ink-low, rgba(255, 255, 255, 0.5));
  font: 400 12px/1.5 'General Sans', sans-serif;
  margin: 0;
}
.modal-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--coral-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.modal-done {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}
@keyframes modal-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes modal-pop {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== Route shells ===== */
.route-page {
  min-height: 100vh;
  min-height: 100svh;
  padding: 120px 0 72px;
  background:
    radial-gradient(circle at top, rgba(255, 91, 71, 0.14), transparent 38%),
    linear-gradient(180deg, #0e1117 0%, #0c1015 100%);
}
.route-shell {
  max-width: 900px;
  margin: 0 auto;
  padding: 34px 28px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.35);
}
.route-home {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font: 500 13px/1 'General Sans', sans-serif;
}
.route-home:hover { color: #fff; }
.route-kicker {
  margin: 0 0 10px;
  color: #ffb1a7;
  font: 600 11px/1 'General Sans', sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.route-title {
  margin: 0 0 12px;
  color: #fff;
  font: 600 clamp(30px, 5vw, 52px)/1.02 'General Sans', sans-serif;
  letter-spacing: -0.04em;
}
.route-copy {
  margin: 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font: 400 16px/1.65 'General Sans', sans-serif;
}
.route-copy-tight { max-width: none; }
.route-panel {
  margin-top: 28px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
}
.route-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.route-actions-top { margin-top: 26px; }
.route-socials {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.route-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font: 500 14px/1 'General Sans', sans-serif;
}
.route-socials a:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}
.route-error { margin-top: 16px; }

.leaderboard-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.leaderboard-stat-label {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.58);
  font: 600 11px/1 'General Sans', sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.leaderboard-stat-value {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 4vw, 38px);
}
.leaderboard-table {
  margin-top: 24px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
}
.leaderboard-head,
.leaderboard-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1.5fr) 120px 140px;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
}
.leaderboard-head {
  color: rgba(255, 255, 255, 0.56);
  font: 600 11px/1 'General Sans', sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.leaderboard-row {
  color: #fff;
  font: 500 14px/1.4 'General Sans', sans-serif;
}
.leaderboard-row + .leaderboard-row {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.leaderboard-empty {
  padding: 24px 18px;
  color: rgba(255, 255, 255, 0.72);
  font: 500 14px/1.6 'General Sans', sans-serif;
}
.leaderboard-error { color: #ffb7ae; }

/* ===== Page-wide film grain (above content, below modal) ===== */
.film-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.85'/></svg>");
  background-size: 240px 240px;
}
@media (prefers-reduced-motion: reduce) {
  .film-grain { opacity: 0.05; }
}
@media (max-width: 600px) {
  .film-grain { opacity: 0.04; }
  /* Battery saver — pause cosmetic loops on small screens. The card sheen
     and receipt-dot pulse are decorative; pausing them on mobile saves
     compositor work on GPUs that struggle most. */
  .scv-sheen { animation-play-state: paused; }
  .stage-receipt-dot { animation-play-state: paused; }
  .route-page { padding: 96px 0 48px; }
  .route-copy { font-size: 15px; }
  .route-socials { grid-template-columns: 1fr; }
  .leaderboard-head,
  .leaderboard-row {
    grid-template-columns: 58px minmax(0, 1fr) 82px;
    gap: 10px;
    padding: 13px 12px;
  }
  .leaderboard-head span:last-child,
  .leaderboard-row span:last-child {
    display: none;
  }
}

/* =========================================================================
   Count-up animations (used by CountUp in Comparison + FinalCta)
   ========================================================================= */

/* ---- Count-up shared bits ---- */
.count-wrap {
  position: relative;
  display: inline-block;
}
.count-pulse {
  animation: count-pulse-glow 900ms ease-out;
}
@keyframes count-pulse-glow {
  0%   { text-shadow: 0 0 0 rgba(255,91,71,0); }
  35%  { text-shadow: 0 0 24px rgba(255,91,71,0.65), 0 0 48px rgba(255,91,71,0.3); }
  100% { text-shadow: 0 0 0 rgba(255,91,71,0); }
}
@media (prefers-reduced-motion: reduce) {
  .count-pulse { animation: none; }
}

/* +1 floaters on the hero waitlist number */
.count-floater {
  position: absolute;
  left: 100%;
  top: 0;
  margin-left: 6px;
  color: var(--coral);
  font-size: 0.6em;
  font-weight: 600;
  pointer-events: none;
  opacity: 0;
  animation: count-floater 720ms ease-out forwards;
  white-space: nowrap;
}
@keyframes count-floater {
  0%   { opacity: 0; transform: translateY(2px); }
  20%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(-18px); }
}
@media (prefers-reduced-motion: reduce) {
  .count-floater { display: none; }
}

/* =========================================================================
   Stage Phase 2 — receipt strip, dot progress rail, phone tilt
   ========================================================================= */

/* ---- 1. Persistent live receipt strip (inside phone screen) ---- */
.stage-receipt {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 20; /* above .phone-screen layers */
  pointer-events: none;
  /* Never threaten the phone bezel — cap at 80% of screen width. */
  max-width: 80%;
}
/* Soft top-fade so any screen content sitting just above the strip
   melts into the background (matching .iphone-screen #F7F6F2) instead
   of clashing with the pill edge. Sits behind the pill via z-index. */
.stage-receipt::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 220%;
  height: 56px;
  pointer-events: none;
  background: linear-gradient(to top, rgba(247, 246, 242, 0.9) 0%, rgba(247, 246, 242, 0) 100%);
  z-index: -1;
}
.stage-receipt-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 11px;
  /* Solid (no backdrop-filter) — pill is pinned across ~5x100vh of the Stage
     section and would composite on every paint. Slightly more opaque to
     compensate for the lost glassy blur. */
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 91, 71, 0.28);
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.005em;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}
.stage-receipt-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0 rgba(255, 91, 71, 0.55);
  flex: 0 0 6px;
}
.stage-receipt-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  color: var(--coral);
}
.stage-receipt-icon svg { display: block; }
.stage-receipt-text {
  display: inline-block;
}
@media (prefers-reduced-motion: no-preference) {
  .stage-receipt-inner {
    animation: stage-receipt-in 350ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .stage-receipt-dot {
    animation: stage-receipt-pulse 1.8s ease-in-out infinite;
  }
}
@keyframes stage-receipt-in {
  0%   { opacity: 0; transform: translateY(4px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes stage-receipt-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 91, 71, 0.55); }
  50%      { box-shadow: 0 0 0 5px rgba(255, 91, 71, 0); }
}

/* ---- 2. Stage dots: vertical rail + coral progress fill ---- */
.stage-dots {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 20;
  /* padding so rail extends a touch beyond first/last dot visually */
  padding: 2px 0;
}
/* Rail (low-opacity white) */
.stage-dots::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 5px;
  bottom: 5px;
  width: 1px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 1px;
  pointer-events: none;
  z-index: 0;
}
/* Coral progress fill (top -> down) */
.stage-dots::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 5px;
  width: 1px;
  height: calc(var(--progress, 0) * (100% - 10px));
  transform: translateX(-50%);
  background: var(--coral);
  border-radius: 1px;
  pointer-events: none;
  z-index: 1;
  transition: height 80ms linear;
  box-shadow: 0 0 6px rgba(255, 91, 71, 0.5);
}
.stage-dot {
  position: relative;
  z-index: 2; /* dots sit above the rail */
}

/* Mobile: horizontal rail, fill grows left -> right.
   Rail spans from the centre of the first dot (5px) to the centre of the
   last dot (width - 5px). Progress fill grows that same span left -> right.
   NOTE: also re-asserts the container layout here because this block follows
   the Phase 2 desktop `.stage-dots` rule above — without these overrides
   the desktop (vertical, right-side) values would win on mobile too. */
@media (max-width: 860px) {
  .stage-dots {
    position: absolute;
    right: auto;
    bottom: 3vh;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 14px;
    width: auto;
    height: 10px;
    padding: 0;
  }
  .stage-dots::before {
    left: 5px;
    right: 5px;
    top: 50%;
    bottom: auto;
    width: auto;
    height: 1px;
    transform: translateY(-50%);
  }
  .stage-dots::after {
    left: 5px;
    right: auto;
    top: 50%;
    bottom: auto;
    width: calc(var(--progress, 0) * (100% - 10px));
    height: 1px;
    transform: translateY(-50%);
    transition: width 80ms linear;
  }

  /* Mobile phone screens: phone scales to 240px, so internal screen
     real-estate is much tighter. Reduce density everywhere so bottom-
     pinned UI sits clearly above the receipt strip with at least
     16px clearance. */
  .scr {
    padding: 60px 12px 82px;
    gap: 7px;
  }
  .scr-head { font-size: 11px; }

  /* Send screen — search list compacts. */
  .scr-send-title { font-size: 11px; }
  .scr-send-lbl { font-size: 8px; }
  .scr-search { padding: 7px 9px; }
  .scr-search-txt { font-size: 11px; }
  .scr-search-cursor { height: 10px; }
  .scr-result { padding: 4px 5px; }
  .scr-result-av { width: 16px; height: 16px; font-size: 8px; }
  .scr-result-name { font-size: 9px; }
  .scr-result-handle { font-size: 8px; }
  .scr-result-flag { font-size: 10px; }
  .scr-send-btn { padding: 8px 12px; font-size: 11px; }
  .scr-arrives { font-size: 8px; }

  /* Spend screen — balance + card + txns tighten. */
  .scr-balance-num { font-size: 22px; }
  .scr-balance-lbl { font-size: 8px; }
  .scr-balance-sub { font-size: 8px; }
  .scr-act { padding: 8px 0; font-size: 10px; }
  .scr-card-visual { padding: 9px 11px; border-radius: 10px; }
  .scv-chip { width: 22px; height: 17px; }
  .scv-amt { font-size: 14px; }
  .scv-amt-lbl { font-size: 7px; }
  .scv-cardno { font-size: 9px; letter-spacing: 0.1em; }
  .scv-exp { font-size: 8px; }
  .scr-txn { padding: 4px 2px; }
  .scr-txn-ic { width: 16px; height: 16px; }
  .scr-txn-name { font-size: 9px; }
  .scr-txn-date { font-size: 8px; }
  .scr-txn-amt { font-size: 9px; }
  .scr-txn-cb { font-size: 8px; }

  /* Trade screen — seven-row holdings list. */
  .scr-trade { gap: 5px; }
  .scr-trade-title { font-size: 11px; }
  .scr-portfolio { padding: 6px 11px; }
  .scr-portfolio-val { font-size: 14px; }
  .scr-portfolio-lbl { font-size: 6.5px; margin-top: 1px; }
  .scr-hold { padding: 2px 2px; gap: 6px; }
  .scr-tok-circle { width: 18px; height: 18px; }
  .scr-tok-circle svg { width: 11px; height: 11px; }
  .scr-tok-letter { font-size: 9.5px; }
  .scr-tok-letter-btc { font-size: 11px; }
  .scr-tok-letter-sm { font-size: 6.5px; }
  .scr-hold-sym { font-size: 9.5px; }
  .scr-hold-name { font-size: 7.5px; }
  .scr-hold-price { font-size: 9.5px; }
  .scr-hold-pct { font-size: 7.5px; }
  .scr-trade-buy, .scr-trade-sell { padding: 7px 0; font-size: 10px; }

  /* Save screen — earn balance + simulate card tighten. */
  .scr-earn-num { font-size: 24px; }
  .scr-earn-apy { font-size: 10px; }
  .scr-earn-cta { padding: 9px 0; font-size: 11px; }
  .scr-earn-reassure { font-size: 8px; }
  .scr-sim { padding: 7px 9px 5px; }
  .scr-sim-title { font-size: 8px; }
  .scr-sim-step-btn { width: 12px; height: 12px; font-size: 8px; }
  .scr-sim-step-val { font-size: 8px; }
  .scr-sim-lbl { font-size: 7px; }
  .scr-sim-num { font-size: 16px; }
  .scr-sim-chart { height: 20px; }
  .scr-sim-tabs span { font-size: 8px; padding: 3px 0; }
}

/* ---- 3. Phone tilt micro-animation on chapter change ---- */
.stage-phone-col {
  perspective: 1200px;
}
.stage-phone-wrap {
  transform-style: preserve-3d;
}
/* Only hint a compositor layer while the 600ms tilt is actually running —
   keeping `will-change` on the base wrapper would force a permanent layer
   for the whole Stage section. */
.stage-phone-wrap.is-tilting {
  will-change: transform, filter;
}
@media (prefers-reduced-motion: no-preference) {
  .stage-phone-wrap.is-tilting {
    animation: stage-phone-tilt 600ms cubic-bezier(0.22, 1, 0.36, 1);
  }
}
@keyframes stage-phone-tilt {
  0%   { transform: rotateY(0deg); filter: brightness(1) saturate(1); }
  45%  { transform: rotateY(-3deg); filter: brightness(1.05) saturate(1.04); }
  100% { transform: rotateY(0deg); filter: brightness(1) saturate(1); }
}
@media (prefers-reduced-motion: reduce) {
  .stage-phone-wrap.is-tilting { animation: none !important; }
  .stage-receipt-inner { animation: none !important; }
  .stage-receipt-dot { animation: none !important; }
  .stage-dots::after { transition: none !important; }
  .modal-backdrop,
  .modal { animation: none !important; }
}
