:root {
  --p: #595FA9;
  --pa: #7C83D4;
  --pb: #3D4399;
  --bg: #FFFFFF;
  --alt: #F4F5FF;
  --dark: #1A1D3B;
  --body: #4B5563;
  --body-soft: #6B7280;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--bg); color: var(--body); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
img, svg { display: block; max-width: 100%; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.on { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; } .d4 { transition-delay: .45s; }

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 48px); max-width: 1200px;
  z-index: 100; height: 60px; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 100px;
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
}
nav.scrolled {
  background: rgba(255,255,255,.76);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-color: rgba(89,95,169,.14);
  box-shadow: 0 4px 32px rgba(89,95,169,.12);
}
.logo { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 1.15rem; letter-spacing: -.02em; color: var(--dark); }
.logo img { height: 32px; }
.logo span { color: var(--p); }
.nav-links { display: flex; gap: 28px; align-items: center; list-style: none; }
.nav-links a { font-size: .875rem; font-weight: 500; color: var(--body); transition: color .2s; }
.nav-links a:hover { color: var(--p); }
.nav-cta {
  background: var(--p); color: #fff !important;
  padding: 0 20px; height: 36px; border-radius: 100px;
  font-size: .85rem; font-weight: 600;
  display: inline-flex; align-items: center;
  transition: background .2s, transform .2s var(--spring);
}
.nav-cta:hover { background: var(--pa); transform: scale(1.05); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: .3s; }
@media (max-width: 768px) { .nav-links { display: none; } .hamburger { display: flex; } }

.mobile-nav {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(26,29,59,.97);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  transform: translateX(100%); transition: transform .4s var(--ease);
}
.mobile-nav.open { transform: none; }
.mobile-nav a { font-size: 1.5rem; font-weight: 700; color: #fff; }
.mobile-close { position: absolute; top: 22px; right: 5vw; color: #fff; font-size: 1.4rem; }

/* ── HERO ────────────────────────────────────────────── */
#hero {
  min-height: 100svh;
  padding-top: 96px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  background: var(--bg);
}
.hero-mesh { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-mesh::before {
  content: ''; position: absolute; top: -20%; left: 50%;
  transform: translateX(-50%); width: 140%; height: 80%;
  background: radial-gradient(ellipse 70% 60% at 50% 0%,
    rgba(124,131,212,.22) 0%, rgba(89,95,169,.14) 35%,
    rgba(61,67,153,.07) 60%, transparent 80%);
}
.hero-mesh::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%); width: 120%; height: 40%;
  background: radial-gradient(ellipse 80% 50% at 50% 100%,
    rgba(89,95,169,.08) 0%, transparent 70%);
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(89,95,169,.10) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
  pointer-events: none; z-index: 0;
}

/* ── HERO PARTICLES ──────────────────────────────────── */
.hero-particles {
  position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.hero-particles span {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particle-float linear infinite;
}
@keyframes particle-float {
  0%   { opacity: 0; transform: translateY(0) scale(0.4); }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-120vh) scale(1); }
}

/* ── HERO ORBS ───────────────────────────────────────── */
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  filter: blur(60px); opacity: 0;
}
.hero-orb-1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(124,131,212,.28) 0%, transparent 70%);
  top: -80px; left: -100px;
  animation: orb-drift1 18s ease-in-out infinite;
}
.hero-orb-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(61,67,153,.20) 0%, transparent 70%);
  top: 20%; right: -80px;
  animation: orb-drift2 22s ease-in-out infinite;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(89,95,169,.18) 0%, transparent 70%);
  bottom: 10%; left: 30%;
  animation: orb-drift3 26s ease-in-out infinite;
}
@keyframes orb-drift1 {
  0%, 100% { opacity: .7; transform: translate(0,0) scale(1); }
  33%       { opacity: .9; transform: translate(40px, 30px) scale(1.08); }
  66%       { opacity: .6; transform: translate(-20px, 50px) scale(.95); }
}
@keyframes orb-drift2 {
  0%, 100% { opacity: .6; transform: translate(0,0) scale(1); }
  40%       { opacity: .85; transform: translate(-50px, 40px) scale(1.1); }
  70%       { opacity: .5; transform: translate(20px, -30px) scale(.9); }
}
@keyframes orb-drift3 {
  0%, 100% { opacity: .5; transform: translate(0,0) scale(1); }
  50%       { opacity: .8; transform: translate(30px, -40px) scale(1.12); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-particles, .hero-orb-1, .hero-orb-2, .hero-orb-3 { animation: none !important; opacity: 0 !important; }
}

.hero-body {
  position: relative; z-index: 1;
  padding: clamp(32px, 6vw, 80px) 5vw 0;
  max-width: 860px; width: 100%;
}

.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(89,95,169,.08);
  border: 1px solid rgba(89,95,169,.18);
  border-radius: 100px; padding: 5px 16px 5px 10px;
  font-size: .75rem; font-weight: 600; color: var(--p);
  letter-spacing: .05em; text-transform: uppercase;
  margin-bottom: 22px;
  opacity: 0; animation: fadein .7s var(--ease) .2s forwards;
}
.hero-pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pa); animation: pulse-d 2s infinite; }
@keyframes pulse-d { 0%,100%{transform:scale(1);opacity:1;} 50%{transform:scale(1.6);opacity:.5;} }

/* Role toggle */
.role-toggle {
  display: inline-flex;
  background: rgba(89,95,169,.08);
  border: 1px solid rgba(89,95,169,.14);
  border-radius: 100px;
  padding: 4px;
  margin-bottom: 26px;
  position: relative;
  opacity: 0; animation: fadein .7s var(--ease) .3s forwards;
}
.role-toggle button {
  position: relative; z-index: 2;
  padding: 9px 22px;
  font-size: .82rem; font-weight: 700;
  color: var(--body);
  border-radius: 100px;
  transition: color .3s ease;
  display: inline-flex; align-items: center; gap: 7px;
}
.role-toggle button.active { color: #fff; }
.role-toggle-thumb {
  position: absolute;
  top: 4px; left: 4px;
  height: calc(100% - 8px);
  background: var(--p);
  border-radius: 100px;
  transition: transform .4s var(--spring), width .4s var(--spring);
  box-shadow: 0 4px 14px rgba(89,95,169,.28);
  z-index: 1;
}

.hero-h1 {
  font-size: clamp(2.6rem, 6.5vw, 5.6rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -.045em;
  color: var(--dark); margin-bottom: 22px;
  opacity: 0; animation: fadein .8s var(--ease) .4s forwards;
  min-height: 3.15em;
}
.hero-h1 em { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--p); font-weight: 400; }

.hero-sub {
  font-size: clamp(.95rem, 1.7vw, 1.1rem);
  color: var(--body); line-height: 1.65; max-width: 540px;
  margin: 0 auto 32px;
  opacity: 0; animation: fadein .8s var(--ease) .55s forwards;
}
.hero-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 26px;
  opacity: 0; animation: fadein .8s var(--ease) .7s forwards;
}
.btn-main {
  background: var(--p); color: #fff;
  padding: 15px 32px; border-radius: 100px;
  font-size: .95rem; font-weight: 700;
  box-shadow: 0 10px 32px rgba(89,95,169,.30);
  transition: background .2s, transform .25s var(--spring), box-shadow .2s;
  cursor: pointer;
}
.btn-main:hover { background: var(--pa); transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 40px rgba(124,131,212,.38); }
.btn-ghost {
  border: 1.5px solid rgba(89,95,169,.25); color: var(--dark);
  padding: 15px 32px; border-radius: 100px;
  font-size: .95rem; font-weight: 600;
  transition: border-color .2s, color .2s, transform .25s var(--spring);
}
.btn-ghost:hover { border-color: var(--p); color: var(--p); transform: translateY(-3px); }

.hero-badges {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadein .8s var(--ease) .85s forwards;
}
.hero-badge-chip {
  display: flex; align-items: center; gap: 7px;
  background: var(--alt); border: 1px solid rgba(89,95,169,.12);
  border-radius: 100px; padding: 6px 14px;
  font-size: .78rem; font-weight: 600; color: var(--dark);
}
.chip-icon { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.hero-mockup-stage {
  position: relative; z-index: 1;
  width: 100%;
  margin-top: 48px;
  display: flex; justify-content: center; align-items: flex-end;
  opacity: 0; animation: fadein-up .9s var(--ease) 1s forwards;
  padding: 0 5vw;
}
@keyframes fadein { from{opacity:0} to{opacity:1} }
@keyframes fadein-up { from{opacity:0;transform:translateY(40px)} to{opacity:1;transform:none} }

.phone-wrap { position: relative; }
.iphone {
  width: 280px; background: #fff;
  border-radius: 44px;
  box-shadow:
    0 50px 120px rgba(89,95,169,.22),
    0 0 0 10px rgba(89,95,169,.07),
    0 0 0 1px rgba(89,95,169,.14);
  overflow: hidden;
}
.iphone-notch { height: 36px; background: var(--dark); display: flex; align-items: center; justify-content: center; }
.iphone-notch-pill { width: 72px; height: 7px; background: #000; border-radius: 100px; }
.iphone-screen { background: #F4F5FF; min-height: 480px; display: flex; flex-direction: column; }

.float-notif {
  position: absolute; top: -12px; right: -28px;
  background: #fff; border-radius: 16px;
  padding: 9px 14px;
  box-shadow: 0 10px 36px rgba(89,95,169,.18);
  display: flex; align-items: center; gap: 9px;
  z-index: 10;
  animation: float-y 4s ease-in-out infinite;
  white-space: nowrap;
}
.float-notif-2 { top: auto; bottom: 60px; left: -32px; right: auto; animation: float-y 5s ease-in-out 1s infinite; }
@keyframes float-y { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
.float-notif-icon { width: 26px; height: 26px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.float-notif-text { font-size: 9px; font-weight: 700; color: var(--dark); line-height: 1.4; }
.float-notif-text span { color: var(--body-soft); font-weight: 500; display: block; }

@media (max-width: 600px) {
  .float-notif { right: -10px; }
  .float-notif-2 { left: -10px; }
}

/* ── MARQUEE ─────────────────────────────────────────── */
.marquee-wrap { background: var(--alt); padding: 16px 0; overflow: hidden; border-top: 1px solid rgba(89,95,169,.08); border-bottom: 1px solid rgba(89,95,169,.08); }
.marquee-track { display: flex; gap: 0; animation: mq 32s linear infinite; width: max-content; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
@keyframes mq { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.mq-item { display: flex; align-items: center; gap: 12px; padding: 0 36px; font-size: .78rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--p); white-space: nowrap; }
.mq-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--pa); }

/* ── HOW IT WORKS ─────────────────────────────────────── */
#howitworks { background: var(--alt); padding: clamp(72px,8vw,110px) 5vw; }
.how-inner { max-width: 1000px; margin: 0 auto; }
.how-header { text-align: center; margin-bottom: 64px; }
.label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--pa); margin-bottom: 12px; display: block; }
.h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); font-weight: 800; color: var(--dark); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 16px; }
.sub { font-size: .975rem; color: var(--body); line-height: 1.7; max-width: 480px; margin: 0 auto; }
.how-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.step-card {
  background: #fff; border-radius: 24px; padding: 36px 28px;
  border: 1px solid rgba(89,95,169,.08);
  transition: transform .35s var(--spring), box-shadow .35s;
}
.step-card:hover { transform: translateY(-8px); box-shadow: 0 24px 64px rgba(89,95,169,.12); }
.step-num { font-size: 3.5rem; font-weight: 800; color: rgba(89,95,169,.10); line-height: 1; margin-bottom: 20px; letter-spacing: -.04em; font-family: 'Instrument Serif', serif; }
.step-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.step-card p { font-size: .875rem; line-height: 1.65; color: var(--body); }
@media (max-width: 768px) { .how-steps { grid-template-columns: 1fr; } }

/* ── FEATURES ─────────────────────────────────────────── */
#features { background: var(--bg); }
.features-header { max-width: 640px; margin: 0 auto; text-align: center; padding: clamp(72px,8vw,110px) 5vw 56px; }
.feat-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  align-items: stretch; max-width: 100%;
  border-top: 1px solid rgba(89,95,169,.08);
}
.feat-row:last-child { border-bottom: 1px solid rgba(89,95,169,.08); }
.feat-copy { padding: clamp(48px, 6vw, 80px) clamp(32px, 6vw, 80px); display: flex; flex-direction: column; justify-content: center; }
.feat-row:nth-child(odd) .feat-copy { border-right: 1px solid rgba(89,95,169,.08); }
.feat-row:nth-child(even) .feat-copy { order: 2; border-left: 1px solid rgba(89,95,169,.08); }
.feat-num { font-size: .72rem; font-weight: 700; color: rgba(89,95,169,.35); letter-spacing: .1em; margin-bottom: 16px; }
.feat-copy h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 800; color: var(--dark); letter-spacing: -.02em; margin-bottom: 14px; line-height: 1.2; }
.feat-copy p { font-size: .95rem; line-height: 1.7; margin-bottom: 24px; color: var(--body); }
.feat-tag { display: inline-flex; align-items: center; gap: 7px; background: var(--alt); border-radius: 100px; padding: 7px 16px; font-size: .78rem; font-weight: 600; color: var(--p); width: fit-content; }
.feat-visual {
  background: var(--alt);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(32px, 5vw, 64px);
  min-height: 380px;
}
@media (max-width: 768px) {
  .feat-row { grid-template-columns: 1fr; }
  .feat-row:nth-child(even) .feat-copy { order: -1; border-left: none; }
  .feat-row:nth-child(odd) .feat-copy { border-right: none; }
  .feat-visual { min-height: 260px; }
}

.vis-card { background: #fff; border-radius: 20px; box-shadow: 0 20px 60px rgba(89,95,169,.12), 0 0 0 1px rgba(89,95,169,.07); overflow: hidden; width: 100%; max-width: 360px; }
.pay-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(89,95,169,.08); }
.pay-row:last-child { border-bottom: none; }
.pay-label { font-size: 9.5px; font-weight: 600; color: var(--body-soft); }
.pay-val { font-size: 10px; font-weight: 700; color: var(--dark); }
.pay-escrow { display: flex; align-items: center; gap: 9px; background: linear-gradient(135deg, var(--p), var(--pa)); border-radius: 14px; padding: 14px 16px; color: #fff; margin-top: 10px; }
.pay-escrow-icon { width: 32px; height: 32px; background: rgba(255,255,255,.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pay-escrow-text { font-size: 10px; font-weight: 700; line-height: 1.4; }
.pay-escrow-text span { font-weight: 400; opacity: .75; font-size: 9px; display: block; }

.msg { display: flex; gap: 8px; }
.msg.right { flex-direction: row-reverse; }
.msg-av { width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 800; color: #fff; }
.msg-bubble { max-width: 70%; background: var(--alt); border-radius: 12px 12px 12px 4px; padding: 8px 12px; font-size: 9px; color: var(--dark); line-height: 1.5; }
.msg.right .msg-bubble { background: var(--p); color: #fff; border-radius: 12px 12px 4px 12px; }
.msg-time { font-size: 7.5px; color: rgba(107,114,128,.5); margin-top: 3px; text-align: right; }
.chat-messages { display: flex; flex-direction: column; gap: 8px; padding: 14px; }

/* ── PRE-LAUNCH METRICS ───────────────────────────────── */
#prelaunch { background: var(--bg); padding: clamp(72px,8vw,110px) 5vw; }
.prelaunch-inner { max-width: 1100px; margin: 0 auto; }
.prelaunch-header { text-align: center; margin-bottom: 56px; }
.prelaunch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.prelaunch-card {
  background: var(--alt);
  border: 1px solid rgba(89,95,169,.08);
  border-radius: 22px;
  padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: transform .35s var(--spring), box-shadow .35s;
}
.prelaunch-card:hover { transform: translateY(-5px); box-shadow: 0 20px 56px rgba(89,95,169,.12); }
.prelaunch-card.accent { background: linear-gradient(135deg, var(--p), var(--pa)); color: #fff; border-color: transparent; }
.prelaunch-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(89,95,169,.10);
}
.prelaunch-card.accent .prelaunch-icon { background: rgba(255,255,255,.2); box-shadow: none; }
.prelaunch-value {
  font-size: clamp(2rem, 3.2vw, 2.7rem); font-weight: 800;
  color: var(--dark); letter-spacing: -.035em; line-height: 1;
  margin-bottom: 6px; font-feature-settings: "tnum";
}
.prelaunch-card.accent .prelaunch-value { color: #fff; }
.prelaunch-value sup { font-size: .55em; color: var(--p); font-weight: 700; }
.prelaunch-card.accent .prelaunch-value sup { color: rgba(255,255,255,.85); }
.prelaunch-label { font-size: .85rem; color: var(--body); line-height: 1.45; }
.prelaunch-card.accent .prelaunch-label { color: rgba(255,255,255,.85); }
@media (max-width: 900px) { .prelaunch-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .prelaunch-grid { grid-template-columns: 1fr; } }

/* ── EARNINGS CALCULATOR ──────────────────────────────── */
#calculator { background: var(--alt); padding: clamp(72px,8vw,110px) 5vw; position: relative; overflow: hidden; }
.calc-inner { max-width: 900px; margin: 0 auto; position: relative; }
.calc-header { text-align: center; margin-bottom: 48px; }
.calc-card {
  background: #fff;
  border-radius: 28px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(89,95,169,.10);
  box-shadow: 0 30px 80px rgba(89,95,169,.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
@media (max-width: 700px) { .calc-card { grid-template-columns: 1fr; } }
.calc-slider-row { margin-bottom: 24px; }
.calc-slider-row:last-child { margin-bottom: 0; }
.calc-slider-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.calc-slider-label { font-size: .9rem; font-weight: 600; color: var(--dark); }
.calc-slider-val { font-size: 1.1rem; font-weight: 800; color: var(--p); font-feature-settings: "tnum"; }
.calc-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px;
  background: var(--alt);
  border-radius: 100px;
  outline: none;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--p);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(89,95,169,.35);
  transition: transform .15s ease;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-slider::-moz-range-thumb {
  width: 22px; height: 22px; border: none; border-radius: 50%;
  background: var(--p); cursor: pointer;
  box-shadow: 0 4px 12px rgba(89,95,169,.35);
}
.calc-result {
  background: linear-gradient(135deg, var(--p), var(--pa));
  border-radius: 22px;
  padding: clamp(24px, 3vw, 36px);
  text-align: center;
  color: #fff;
  box-shadow: 0 20px 50px rgba(89,95,169,.25);
}
.calc-result-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.7);
  margin-bottom: 10px;
}
.calc-result-value {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800; letter-spacing: -.04em; line-height: 1;
  font-feature-settings: "tnum";
  margin-bottom: 6px;
}
.calc-result-sub { font-size: .82rem; color: rgba(255,255,255,.75); line-height: 1.5; margin-bottom: 18px; }
.calc-annual {
  font-size: .85rem; font-weight: 600;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: 8px 16px;
  display: inline-block;
}
.calc-annual strong { font-weight: 800; }
.calc-note {
  font-size: .72rem; color: var(--body-soft);
  text-align: center; margin-top: 16px;
  opacity: .8;
}

/* ── CLOSING STATEMENT ────────────────────────────────── */
#closing {
  background: linear-gradient(135deg, var(--p) 0%, var(--pb) 50%, #2D3179 100%);
  padding: clamp(90px, 10vw, 140px) 5vw;
  position: relative; overflow: hidden;
  text-align: center;
}
.closing-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.closing-circle { position: absolute; border-radius: 50%; border: 2px solid rgba(255,255,255,.1); }
.closing-circle-1 { width: 400px; height: 400px; top: -100px; left: -100px; animation: float-slow 20s ease-in-out infinite; }
.closing-circle-2 { width: 300px; height: 300px; bottom: -80px; right: -80px; animation: float-slow 25s ease-in-out infinite reverse; }
.closing-dot-grid { position: absolute; width: 200px; height: 200px; bottom: 15%; left: 8%; background-image: radial-gradient(rgba(255,255,255,.15) 2px, transparent 2px); background-size: 20px 20px; opacity: .6; }
@keyframes float-slow { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 50% { transform: translate(20px, -20px) rotate(10deg); } }

.closing-inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }
.closing-word-stack { margin-bottom: 44px; }
.closing-word { display: block; font-size: clamp(2.2rem, 7vw, 6rem); font-weight: 800; color: #fff; letter-spacing: -.04em; line-height: 1.02; }
.closing-word.accent { color: var(--pa); font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; }
.closing-divider { width: 80px; height: 3px; background: linear-gradient(90deg, transparent, var(--pa), transparent); margin: 0 auto 36px; border-radius: 100px; }
.closing-sub { color: rgba(255,255,255,.75); font-size: 1rem; line-height: 1.65; margin-bottom: 32px; }

/* ── BETA TESTIMONIALS ────────────────────────────────── */
#testimonials { background: var(--bg); padding: clamp(72px,8vw,110px) 5vw; }
.testi-inner { max-width: 1100px; margin: 0 auto; }
.testi-header { text-align: center; margin-bottom: 52px; }
.testi-beta-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(89,95,169,.08); border: 1px solid rgba(89,95,169,.18);
  border-radius: 100px; padding: 5px 14px;
  font-size: .72rem; font-weight: 700; color: var(--p);
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 14px;
}
.testi-beta-pill span { width: 6px; height: 6px; border-radius: 50%; background: var(--pa); animation: pulse-d 2s infinite; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testi-card {
  background: var(--alt); border-radius: 24px; padding: 32px;
  border: 1px solid rgba(89,95,169,.08);
  transition: transform .35s var(--spring), box-shadow .35s;
  position: relative;
  display: flex; flex-direction: column;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(89,95,169,.10); }
.testi-beta-badge {
  position: absolute; top: 20px; right: 20px;
  font-size: .62rem; font-weight: 700;
  color: var(--p); background: #fff;
  border: 1px solid rgba(89,95,169,.15);
  border-radius: 100px;
  padding: 3px 9px;
  letter-spacing: .06em; text-transform: uppercase;
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.star-s { width: 12px; height: 12px; fill: #F59E0B; }
.testi-quote { font-size: .93rem; font-weight: 500; color: var(--dark); line-height: 1.65; font-style: italic; margin-bottom: 22px; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 11px; }
.testi-av { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; color: #fff; font-size: .85rem; flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: .875rem; color: var(--dark); }
.testi-role { font-size: .75rem; color: var(--body-soft); }
@media (max-width: 768px) { .testi-grid { grid-template-columns: 1fr; } }

/* ── FAQ ─────────────────────────────────────────────── */
#faq { background: var(--alt); padding: clamp(72px,8vw,110px) 5vw; }
.faq-inner { max-width: 700px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 52px; }
.faq-item { border-bottom: 1px solid rgba(89,95,169,.10); }
.faq-btn {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: .95rem; font-weight: 600; color: var(--dark);
  width: 100%; text-align: left; gap: 16px; transition: color .2s;
}
.faq-btn:hover { color: var(--p); }
.faq-icon { width: 26px; height: 26px; border-radius: 50%; background: #fff; border: 1.5px solid rgba(89,95,169,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s, transform .35s var(--spring); }
.faq-item.open .faq-icon { background: var(--p); border-color: var(--p); transform: rotate(45deg); }
.faq-item.open .faq-icon svg path { stroke: #fff; }
.faq-icon svg { width: 11px; height: 11px; }
.faq-ans { overflow: hidden; max-height: 0; transition: max-height .4s var(--ease); }
.faq-item.open .faq-ans { max-height: 280px; }
.faq-ans p { padding-bottom: 20px; font-size: .9rem; line-height: 1.7; color: var(--body); }

/* ── UNIFIED EARLY ACCESS ─────────────────────────────── */
#early {
  background: var(--bg);
  padding: clamp(72px,8vw,120px) 5vw;
  text-align: center;
  position: relative; overflow: hidden;
}
.early-bg { position: absolute; inset: 0; pointer-events: none; }
.early-bg::before {
  content: '';
  position: absolute; top: 10%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(124,131,212,.10), transparent 70%);
}
.early-inner { max-width: 580px; margin: 0 auto; position: relative; }
.early-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(89,95,169,.08); border: 1px solid rgba(89,95,169,.18);
  border-radius: 100px; padding: 5px 14px;
  font-size: .72rem; font-weight: 700; color: var(--p);
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 18px;
}
.early-pill span { width: 6px; height: 6px; border-radius: 50%; background: var(--pa); animation: pulse-d 2s infinite; }
.early-inner .h2 { margin-bottom: 14px; }
.early-inner .sub { margin-bottom: 36px; }
.early-perks {
  display: flex; justify-content: center; gap: 18px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.early-perk {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 600; color: var(--dark);
}
.early-perk svg { width: 16px; height: 16px; flex-shrink: 0; }
.early-form {
  display: flex; gap: 10px; flex-wrap: wrap;
  max-width: 480px; margin: 0 auto;
}
.early-form input[type="email"] {
  flex: 1; min-width: 0; padding: 15px 22px;
  border-radius: 100px; border: 1.5px solid rgba(89,95,169,.18);
  background: #fff; font-family: inherit; font-size: .9rem; color: var(--dark);
  outline: none; transition: border-color .2s, box-shadow .2s;
}
.early-form input[type="email"]:focus { border-color: var(--p); box-shadow: 0 0 0 3px rgba(89,95,169,.12); }
.early-form input[type="email"]::placeholder { color: var(--body-soft); opacity: .6; }
.early-form button {
  background: var(--p); color: #fff; padding: 15px 28px;
  border-radius: 100px; font-size: .9rem; font-weight: 700;
  white-space: nowrap; cursor: pointer; border: none; font-family: inherit;
  box-shadow: 0 10px 30px rgba(89,95,169,.30);
  transition: background .2s, transform .25s var(--spring), box-shadow .2s;
}
.early-form button:hover { background: var(--pa); transform: translateY(-2px) scale(1.03); }
.early-form button:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.early-privacy { font-size: .75rem; color: var(--body-soft); margin-top: 14px; }
.early-success {
  display: none; flex-direction: column; align-items: center; gap: 12px;
  padding: 24px 0;
}
.early-success.on { display: flex; }
.success-icon { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--p), var(--pa)); display: flex; align-items: center; justify-content: center; animation: pop .5s var(--spring) both; box-shadow: 0 10px 30px rgba(89,95,169,.30); }
@keyframes pop { from{transform:scale(0);opacity:0} to{transform:scale(1);opacity:1} }
.early-success p { font-size: 1.05rem; font-weight: 700; color: var(--dark); }
.early-success small { font-size: .82rem; color: var(--body); font-weight: 500; }
.early-counter {
  margin-top: 28px;
  font-size: .8rem; color: var(--body-soft);
}
.early-counter strong { color: var(--p); font-weight: 800; }
@media (max-width: 520px) { .early-form { flex-direction: column; } }

/* ── FOOTER ──────────────────────────────────────────── */
footer { background: var(--dark); padding: 64px 5vw 32px; }
.foot-top {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.foot-brand .logo { color: #fff; }
.foot-brand .logo span { color: var(--pa); }
.foot-brand p { font-size: .85rem; color: rgba(255,255,255,.48); line-height: 1.7; margin-top: 14px; max-width: 240px; }
.foot-col h4 { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.36); margin-bottom: 16px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col ul a { font-size: .85rem; color: rgba(255,255,255,.55); transition: color .2s; }
.foot-col ul a:hover { color: var(--pa); }
.foot-newsletter input {
  width: 100%; padding: 10px 15px; border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.09); background: rgba(255,255,255,.05);
  color: #fff; font-family: inherit; font-size: .85rem;
  outline: none; margin-bottom: 9px; transition: border-color .2s;
}
.foot-newsletter input::placeholder { color: rgba(255,255,255,.3); }
.foot-newsletter input:focus { border-color: var(--pa); }
.foot-newsletter .foot-btn { background: var(--p); color: #fff; padding: 9px 16px; border-radius: 8px; font-size: .8rem; font-weight: 700; width: 100%; transition: background .2s; cursor: pointer; }
.foot-newsletter .foot-btn:hover { background: var(--pa); }
.foot-bottom {
  max-width: 1100px; margin: 0 auto; padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.foot-bottom p { font-size: .75rem; color: rgba(255,255,255,.3); }
.foot-socials { display: flex; gap: 10px; }
.soc-link {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: border-color .2s, color .2s, transform .2s var(--spring);
}
.soc-link:hover { border-color: var(--pa); color: var(--pa); transform: translateY(-3px); }
@media (max-width: 768px) {
  .foot-top { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1/-1; }
  .foot-bottom { justify-content: center; text-align: center; }
}
@media (max-width: 400px) { .foot-top { grid-template-columns: 1fr; } }

/* COOKIE CONSENT */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 300;
  width: min(calc(100% - 32px), 980px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  padding: 20px;
  border: 1px solid rgba(89,95,169,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  color: var(--body);
  box-shadow: 0 24px 80px rgba(26,29,59,.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translate(-50%, 22px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.cookie-banner.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.cookie-copy {
  min-width: 0;
}
.cookie-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--p);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.cookie-copy h2 {
  margin-bottom: 6px;
  color: var(--dark);
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.cookie-copy p {
  max-width: 640px;
  font-size: .84rem;
  line-height: 1.55;
  color: var(--body);
}
.cookie-copy a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--p);
  font-size: .8rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-options {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  background: var(--alt);
}
.cookie-options[hidden] {
  display: none;
}
.cookie-options label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dark);
  font-size: .82rem;
  font-weight: 700;
}
.cookie-options input {
  width: 16px;
  height: 16px;
  accent-color: var(--p);
}
.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cookie-btn {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 800;
  transition: transform .2s var(--spring), background .2s, border-color .2s;
}
.cookie-btn:hover {
  transform: translateY(-1px);
}
.cookie-btn-main {
  background: var(--p);
  color: #fff;
  box-shadow: 0 10px 26px rgba(89,95,169,.26);
}
.cookie-btn-main:hover {
  background: var(--pa);
}
.cookie-btn-light {
  background: var(--alt);
  color: var(--dark);
}
.cookie-btn-ghost {
  border: 1px solid rgba(89,95,169,.18);
  color: var(--p);
  background: #fff;
}
.cookie-manage-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 16px;
  padding: 0 18px;
  border-radius: 100px;
  background: var(--p);
  color: #fff;
  font-size: .86rem;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(89,95,169,.24);
  transition: transform .2s var(--spring), background .2s;
}
.cookie-manage-btn:hover {
  background: var(--pa);
  transform: translateY(-1px);
}
@media (max-width: 760px) {
  .cookie-banner {
    grid-template-columns: 1fr;
    align-items: stretch;
    bottom: 12px;
    padding: 16px;
    border-radius: 16px;
  }
  .cookie-actions {
    justify-content: stretch;
  }
  .cookie-btn {
    flex: 1 1 100%;
  }
}
