:root {
  --bg: #F8FAFF;
  --surface: #ffffff;
  --border: rgba(7,9,15,0.08);
  --border-hi: rgba(7,9,15,0.15);
  --blue: #0A84FF;
  --blue-dim: rgba(10,132,255,0.08);
  --blue-glow: rgba(10,132,255,0.22);
  --gold: #C9982B;
  --gold-light: #F5CC73;
  --gold-dim: rgba(201, 152, 43, 0.10);
  --gold-glow: rgba(245, 204, 115, 0.30);
  --text: #07090F;
  --muted: rgba(7,9,15,0.52);
  --label: rgba(7,9,15,0.36);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* Orbs */
.orb {
  position: fixed; border-radius: 50%;
  filter: blur(120px); pointer-events: none; z-index: 0;
}
.orb-top {
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(10,132,255,0.1) 0%, transparent 70%);
  top: -220px; left: 50%; transform: translateX(-50%);
  animation: orb-breathe 10s ease-in-out infinite;
}
.orb-bottom {
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(10,132,255,0.06) 0%, transparent 70%);
  bottom: 0; right: -200px;
  animation: orb-breathe-b 12s ease-in-out infinite;
  animation-delay: -5s;
}
@keyframes orb-breathe {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.1); }
}
@keyframes orb-breathe-b {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,250,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
}
.nav-inner {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; white-space: nowrap;
}
.nav-logo-mark { width: 30px; height: 30px; object-fit: contain; flex-shrink: 0; }
.nav-logo-text {
  font-weight: 900; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text);
}
.nav-logo-cursor {
  color: var(--blue); font-weight: 200; font-size: 16px; line-height: 1;
  animation: cursor-blink 0.65s step-end infinite;
}
@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.nav-cta {
  display: inline-block; position: relative; overflow: hidden;
  padding: 9px 20px; border-radius: 100px;
  background: var(--blue);
  color: #fff; font-size: 13px; font-weight: 700;
  text-decoration: none; letter-spacing: 0.02em;
  box-shadow: 0 4px 16px var(--blue-glow);
  transition: transform 0.15s, box-shadow 0.2s;
}
.nav-cta::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  transform: translateX(-100%); transition: transform 0.45s ease;
}
.nav-cta:hover::after { transform: translateX(100%); }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px var(--blue-glow); }
.nav-member-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--muted); font-size: 13px; font-weight: 600;
  text-decoration: none; letter-spacing: 0.01em;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap; background: #fff;
}
.nav-member-btn:hover { color: var(--text); border-color: var(--border-hi); }
.nav-right { display: flex; align-items: center; gap: 8px; }

/* Hero */
.hero {
  position: relative; z-index: 1;
  max-width: 620px; margin: 0 auto;
  padding: 56px 24px 32px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}

/* Hero stat row */
.hero-statrow {
  display: inline-flex; align-items: center; gap: 16px;
  margin-bottom: 22px;
}
.hero-ministat {
  display: flex; align-items: center; gap: 6px;
}
.hero-ministat-num {
  font-size: 15px; font-weight: 800; color: var(--blue);
  font-variant-numeric: tabular-nums; letter-spacing: -0.01em;
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1), opacity 0.25s ease;
}
.hero-ministat-label {
  font-size: 12px; font-weight: 500; color: var(--muted);
}
.hero-ministat-divider {
  width: 1px; height: 22px; background: var(--border);
}
#livePillNum {
  font-weight: 800; color: var(--blue);
  display: inline-block;
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1), opacity 0.25s ease;
}

.badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 14px; border: 1px solid rgba(10,132,255,0.18); border-radius: 100px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-dim); margin-bottom: 16px;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue);
}

h1 {
  font-size: clamp(36px, 7vw, 60px); font-weight: 800;
  line-height: 1.04; letter-spacing: -0.04em; margin-bottom: 24px;
  color: var(--text);
}
.accent {
  background: linear-gradient(135deg, #FFE3A3 0%, #F5CC73 25%, #6FAEFF 75%, #0A84FF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  background-size: 200% 200%;
  animation: accent-shift 14s ease-in-out infinite;
}
@keyframes accent-shift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.countdown-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--label); margin-bottom: 18px;
}
.countdown { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 36px; }
.cd-unit { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.cd-box {
  background: #ffffff; border: 1px solid rgba(10,132,255,0.14);
  border-radius: 16px; padding: 18px 22px; min-width: 84px;
  box-shadow: 0 2px 12px rgba(7,9,15,0.06);
}
.cd-digit {
  font-size: clamp(40px, 8vw, 64px); font-weight: 800;
  letter-spacing: -0.04em; font-variant-numeric: tabular-nums; line-height: 1;
  background: linear-gradient(180deg, #07090F 0%, rgba(7,9,15,0.45) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cd-label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--label);
}
.cd-sep {
  font-size: clamp(32px, 6vw, 52px); font-weight: 800;
  color: rgba(10,132,255,0.3); line-height: 1; padding-top: 16px;
}

.hero-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}

.hero-sub {
  font-size: 15px; line-height: 1.8; color: var(--muted);
  max-width: 520px; margin-bottom: 40px;
}

.hero-apply-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 20px 56px; border-radius: 9999px;
  background: var(--blue);
  color: #fff; font-size: 19px; font-weight: 800;
  text-decoration: none; letter-spacing: 0.01em;
  margin-bottom: 48px; position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: hero-glow 2.5s ease-in-out infinite;
}
.hero-apply-btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform: translateX(-100%);
}
.hero-apply-btn:hover::after { transform: translateX(100%); transition: transform 0.5s; }
.hero-apply-btn:hover { transform: translateY(-3px); }
.hero-apply-btn svg { transition: transform 0.2s; }
.hero-apply-btn:hover svg { transform: translateX(4px); }

@keyframes hero-glow {
  0%, 100% { box-shadow: 0 4px 24px rgba(10,132,255,0.4), 0 8px 48px rgba(10,132,255,0.12); }
  50% { box-shadow: 0 4px 40px rgba(10,132,255,0.6), 0 8px 64px rgba(10,132,255,0.22); }
}

.spots-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; font-size: 13px; color: var(--muted);
}
.spots-bar strong { color: var(--text); }
.spots-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #22c55e;
}

/* Services strip - marquee */
.services-strip {
  position: relative; z-index: 1; overflow: hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(10,132,255,0.025); padding: 14px 0;
  -webkit-mask: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.services-track {
  display: flex; align-items: center;
  width: max-content; animation: marquee 32s linear infinite;
  will-change: transform;
}
.services-set {
  display: flex; align-items: center; gap: 28px;
  padding-right: 28px; flex-shrink: 0;
}
.services-strip span { font-size: 12.5px; font-weight: 500; color: var(--muted); white-space: nowrap; flex-shrink: 0; }
.strip-dot { color: rgba(10,132,255,0.35); font-size: 14px; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Urgency Pill */
.urgency-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 20px; border-radius: 100px;
  background: rgba(220,38,38,0.05); border: 1px solid rgba(220,38,38,0.18);
  color: #dc2626; font-size: 12px; font-weight: 700; letter-spacing: 0.3px;
  margin-bottom: 16px; animation: pill-flash 1.8s ease-in-out infinite;
}
.urgency-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #ef4444; flex-shrink: 0;
}
@keyframes pill-flash {
  0%, 100% { border-color: rgba(220,38,38,0.18); background: rgba(220,38,38,0.05); }
  50%       { border-color: rgba(220,38,38,0.36); background: rgba(220,38,38,0.10); }
}

/* Form Section */
.form-section {
  position: relative; z-index: 1;
  max-width: 620px; margin: 0 auto;
  padding: 16px 24px 80px;
  display: flex; flex-direction: column; align-items: center;
}
.form-card {
  width: 100%; background: #ffffff;
  border-radius: 24px; padding: 44px 40px;
  position: relative; overflow: hidden;
  border: 1px solid rgba(10,132,255,0.12);
  box-shadow: 0 4px 16px rgba(7,9,15,0.06), 0 24px 56px rgba(7,9,15,0.08);
}
.form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(10,132,255,0.5), transparent);
  pointer-events: none;
}

.step { display: none; animation: stepIn 0.3s cubic-bezier(0.22,1,0.36,1); }
.step.active { display: block; }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

.step-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-dim); border: 1px solid rgba(10,132,255,0.2);
  padding: 4px 10px; border-radius: 100px; margin-bottom: 16px;
}
.step-question {
  font-size: 22px; font-weight: 800; letter-spacing: -0.03em;
  margin-bottom: 24px; line-height: 1.25; color: var(--text);
}

.choices { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.choice-input { display: none; }
.choice-label {
  display: inline-block; padding: 11px 20px;
  border: 1px solid var(--border); border-radius: 100px;
  font-size: 14px; font-weight: 500; color: var(--muted);
  cursor: pointer; transition: all 0.15s; background: #fff;
}
.choice-label:hover { border-color: rgba(10,132,255,0.35); color: var(--text); background: var(--blue-dim); }
.choice-input:checked + .choice-label {
  border-color: var(--blue); background: var(--blue-dim);
  color: var(--blue); font-weight: 600; box-shadow: 0 0 0 2px rgba(10,132,255,0.1);
}

.step-input {
  width: 100%; background: #f8f9ff;
  border: 1px solid var(--border); border-radius: 12px;
  padding: 14px 16px; color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 15px;
  outline: none; margin-bottom: 28px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.step-input::placeholder { color: var(--label); }
.step-input:focus {
  border-color: rgba(10,132,255,0.45); background: #fff;
  box-shadow: 0 0 0 3px rgba(10,132,255,0.08);
}
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.row-2 .step-input { margin-bottom: 0; }

.btn-row { display: flex; align-items: center; justify-content: space-between; }
.back-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border);
  color: var(--muted); font-size: 16px; cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s; flex-shrink: 0;
}
.back-btn:hover { background: #f0f4ff; color: var(--text); border-color: var(--border-hi); }
.back-btn.hidden { visibility: hidden; pointer-events: none; }

.ok-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 24px; background: var(--blue);
  color: #fff; border: none; border-radius: 100px;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700;
  cursor: pointer; letter-spacing: 0.02em;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px var(--blue-glow); position: relative; overflow: hidden;
}
.ok-btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
  transform: translateX(-100%); transition: transform 0.45s ease;
}
.ok-btn:hover::after { transform: translateX(100%); }
.ok-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 28px var(--blue-glow); }
.ok-btn:active { transform: scale(0.97); }
.ok-arrow {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}

.submit-btn {
  padding: 14px 32px; background: var(--blue);
  color: #fff; border: none; border-radius: 100px;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700;
  cursor: pointer; letter-spacing: 0.02em;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px var(--blue-glow); position: relative; overflow: hidden;
}
.submit-btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
  transform: translateX(-100%); transition: transform 0.45s ease;
}
.submit-btn:hover::after { transform: translateX(100%); }
.submit-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 36px var(--blue-glow); }

.disclaimer { font-size: 12px; color: var(--label); line-height: 1.65; margin-bottom: 20px; }
.disclaimer strong { color: var(--muted); }
.does-not { font-weight: 900; color: var(--text); letter-spacing: 0.04em; }

.error-msg {
  display: none; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: #dc2626; margin-bottom: 16px;
}
.error-msg.show { display: flex; }
.error-dot { width: 6px; height: 6px; border-radius: 50%; background: #dc2626; flex-shrink: 0; }

.dots { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 28px; }
.dot {
  height: 5px; border-radius: 100px; background: rgba(10,132,255,0.15);
  transition: width 0.3s, background 0.3s; width: 5px;
}
.dot.active { width: 18px; background: var(--blue); }

.success-state {
  display: none; flex-direction: column; align-items: center;
  gap: 14px; padding: 32px 0; text-align: center;
}
.success-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--blue-dim); border: 1px solid rgba(10,132,255,0.25);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.success-state h3 { font-size: 20px; font-weight: 700; color: var(--text); }
.success-state p { font-size: 14px; color: var(--muted); max-width: 320px; line-height: 1.6; }

/* Info Sections */
.info-section { position: relative; z-index: 1; border-top: 1px solid var(--border); padding: 96px 24px; }
.info-container { max-width: 900px; margin: 0 auto; }

.section-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
  color: var(--blue); margin-bottom: 16px; text-align: center;
}
.section-title {
  font-size: clamp(30px, 4vw, 46px); font-weight: 800;
  letter-spacing: -0.5px; text-align: center; margin-bottom: 64px; color: var(--text);
}
.section-title em {
  font-family: 'Playfair Display', serif; font-style: italic;
  background: linear-gradient(135deg, #60A5FA 0%, #0A84FF 60%, #0055FF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.steps-grid { display: flex; align-items: flex-start; justify-content: center; gap: 16px; flex-wrap: wrap; }
.info-card {
  background: #ffffff; border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 28px; text-align: center;
  flex: 1; min-width: 200px; max-width: 260px;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(7,9,15,0.05);
}
.info-card:hover {
  transform: translateY(-6px); border-color: rgba(10,132,255,0.2);
  box-shadow: 0 8px 24px rgba(7,9,15,0.08), 0 24px 48px rgba(10,132,255,0.08);
}
.info-num { font-size: 32px; font-weight: 800; color: var(--blue); line-height: 1; margin-bottom: 12px; }
.info-icon { font-size: 28px; margin-bottom: 14px; }
.info-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.info-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }
.steps-arrow { font-size: 24px; color: var(--blue); align-self: center; padding-bottom: 16px; opacity: 0.4; flex-shrink: 0; }

/* Why Different */
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.diff-text p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.diff-text p em { color: rgba(7,9,15,0.72); font-style: italic; }
.diff-text p strong { color: var(--text); font-weight: 700; }
.diff-highlight {
  background: rgba(10,132,255,0.05); border: 1px solid rgba(10,132,255,0.14);
  border-left: 3px solid var(--blue); border-radius: 10px; padding: 18px 22px;
  font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.65; margin-bottom: 32px;
}
.purple-btn {
  display: inline-block; padding: 14px 32px; background: var(--blue);
  color: #fff; border-radius: 100px; font-size: 14px; font-weight: 700;
  text-decoration: none; letter-spacing: 0.02em;
  box-shadow: 0 4px 20px var(--blue-glow); transition: transform 0.15s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.purple-btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
  transform: translateX(-100%); transition: transform 0.45s ease;
}
.purple-btn:hover::after { transform: translateX(100%); }
.purple-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 32px var(--blue-glow); }

.diff-cards { display: flex; flex-direction: column; gap: 16px; }
.diff-card { border-radius: 16px; padding: 24px 22px; transition: transform 0.25s cubic-bezier(0.22,1,0.36,1); }
.diff-card:hover { transform: translateY(-3px); }
.diff-card.bad { background: rgba(239,68,68,0.04); border: 1px solid rgba(239,68,68,0.14); }
.diff-card.good { background: rgba(10,132,255,0.04); border: 1px solid rgba(10,132,255,0.16); }
.diff-card-label { font-size: 12px; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 14px; }
.diff-card.bad .diff-card-label { color: #dc2626; }
.diff-card.good .diff-card-label { color: var(--blue); }
.diff-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.diff-card ul li { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.diff-card.good ul li { color: rgba(7,9,15,0.72); }

/* Stats Bar */
.stats-section {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 48px 24px; background: rgba(10,132,255,0.02);
}
.stats-inner {
  max-width: 500px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap;
}
.stat-item {
  flex: 1; min-width: 140px;
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; padding: 12px 40px; text-align: center;
}
.stat-num {
  font-size: clamp(28px, 4vw, 42px); font-weight: 900;
  letter-spacing: -0.04em; line-height: 1;
  background: linear-gradient(135deg, #60A5FA 0%, #0A84FF 60%, #0055FF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-desc { font-size: 12px; color: var(--muted); font-weight: 500; letter-spacing: 0.02em; }
.stat-div { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; align-self: center; }
@media (max-width: 640px) { .stat-div { display: none; } .stat-item { min-width: 50%; } }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: #ffffff; border: 1px solid var(--border); border-radius: 20px; padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(7,9,15,0.04);
}
.testimonial-card:hover {
  transform: translateY(-5px); border-color: rgba(10,132,255,0.18);
  box-shadow: 0 8px 24px rgba(7,9,15,0.08), 0 0 0 1px rgba(10,132,255,0.06);
}
.testimonial-stars { color: #F59E0B; font-size: 14px; letter-spacing: 2px; }
.testimonial-body { font-size: 14px; color: var(--muted); line-height: 1.7; flex: 1; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.testimonial-name { font-size: 13px; font-weight: 700; color: var(--text); }
.testimonial-handle { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: #ffffff; transition: border-color 0.2s; }
.faq-item:hover { border-color: rgba(10,132,255,0.18); }
.faq-item.open { border-color: rgba(10,132,255,0.22); background: rgba(10,132,255,0.02); }
.faq-q {
  width: 100%; padding: 18px 20px; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
  color: var(--text); text-align: left; transition: background 0.15s;
}
.faq-q:hover { background: rgba(10,132,255,0.025); }
.faq-icon {
  font-size: 20px; font-weight: 300; color: var(--blue); flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1); line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 20px 18px; font-size: 14px; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 56px 24px; position: relative; z-index: 1; background: #ffffff; }
.footer-logo { font-size: 15px; font-weight: 800; margin-bottom: 14px; color: var(--label); }
.footer-legal { font-size: 11px; color: var(--label); line-height: 1.7; max-width: 560px; margin: 0 auto; }
.footer-links { margin-top: 14px; font-size: 11px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.footer-links a { color: var(--label); text-decoration: none; }
.footer-links a:hover { color: var(--muted); }
.footer-links span { color: rgba(7,9,15,0.15); }

/* Animations */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* Scroll Reveal */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
[data-reveal="bottom"] { transform: translateY(40px); }
[data-reveal="left"]   { transform: translateX(-48px); }
[data-reveal="right"]  { transform: translateX(48px); }
[data-reveal].visible  { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 0.12s; }
[data-delay="2"] { transition-delay: 0.24s; }
[data-delay="3"] { transition-delay: 0.36s; }
[data-delay="4"] { transition-delay: 0.48s; }

/* Mobile */
@media (max-width: 640px) {
  .diff-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-arrow { display: none; }
  .steps-grid { flex-direction: column; align-items: stretch; }
  .info-card { max-width: 100%; }
  .form-card { padding: 28px 20px; }
  .cd-box { min-width: 68px; padding: 14px; }
  .countdown { gap: 6px; }
  .row-2 { grid-template-columns: 1fr; }
  .nav-logo-text, .nav-logo-cursor { display: none; }
  .nav-member-btn {
    display: inline-flex;
    padding: 7px 12px;
    font-size: 11.5px;
    gap: 5px;
  }
  .nav-cta { padding: 9px 14px; font-size: 12px; }
  .nav-right { gap: 6px; }

  /* Kill entrance animations on mobile — they cause the "screen jumps around / feels zoomed in" effect */
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Poppy apply section */
.form-section {
  background: transparent;
}
.form-card {
  background: linear-gradient(155deg, #EBF4FF 0%, #F2F7FF 60%, #EEF4FF 100%) !important;
  border: 1px solid rgba(10,132,255,0.22) !important;
  box-shadow: 0 4px 20px rgba(7,9,15,0.06), 0 28px 64px rgba(10,132,255,0.14), 0 0 0 1px rgba(10,132,255,0.08) inset;
}

/* Theme toggle */
.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border);
  cursor: pointer; padding: 0; color: var(--muted);
  transition: background 0.15s, border-color 0.15s, transform 0.3s, color 0.15s;
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: rgba(10,132,255,0.08); border-color: rgba(10,132,255,0.3);
  color: #0A84FF; transform: rotate(22deg) scale(1.1);
}

/* Dark mode variables */
html.dark {
  --bg: #030812;
  --surface: rgba(10, 18, 42, 0.6);
  --border: rgba(59, 130, 246, 0.18);
  --border-hi: rgba(59, 130, 246, 0.38);
  --text: #f1f5f9;
  --muted: rgba(241, 245, 249, 0.55);
  --label: rgba(241, 245, 249, 0.3);
  --blue: #3b82f6;
  --blue-dim: rgba(59, 130, 246, 0.15);
  --blue-glow: rgba(59, 130, 246, 0.5);
  --gold: #E8C779;
  --gold-light: #FFE3A3;
  --gold-dim: rgba(232, 199, 121, 0.10);
  --gold-glow: rgba(232, 199, 121, 0.35);
}

/* Live pill — removed per request */
.hero-live-pill { display: none !important; }

/* Dark mode element overrides */
html.dark .nav {
  background: rgba(3, 8, 18, 0.82);
  backdrop-filter: blur(28px) saturate(1.8);
  -webkit-backdrop-filter: blur(28px) saturate(1.8);
  border-bottom: 1px solid rgba(59,130,246,0.12);
  box-shadow: 0 1px 0 rgba(59,130,246,0.08), 0 4px 32px rgba(0,0,0,0.5);
}
html.dark .theme-toggle { background: rgba(59,130,246,0.08); border-color: rgba(59,130,246,0.2); color: rgba(241,245,249,0.6); }
html.dark .theme-toggle:hover { background: rgba(59,130,246,0.18); border-color: rgba(59,130,246,0.4); color: #60a5fa; }
html.dark .nav-member-btn { background: rgba(59,130,246,0.07); border-color: rgba(59,130,246,0.18); color: rgba(241,245,249,0.55); }
html.dark .nav-member-btn:hover { background: rgba(59,130,246,0.14); color: #fff; border-color: rgba(59,130,246,0.35); }
html.dark .hero-ministat-divider { background: rgba(59,130,246,0.2); }
html.dark .hero-ministat-label { color: rgba(241,245,249,0.4); }
html.dark .hero-statrow { background: rgba(10,18,42,0.55); border: 1px solid rgba(59,130,246,0.2); border-radius: 100px; padding: 8px 18px; backdrop-filter: blur(12px); }
html.dark .badge { background: rgba(59,130,246,0.12); border-color: rgba(59,130,246,0.3); }
html.dark .cd-box {
  background: rgba(10,18,42,0.7); border-color: rgba(59,130,246,0.22);
  backdrop-filter: blur(12px); box-shadow: 0 1px 0 rgba(59,130,246,0.1) inset, 0 8px 24px rgba(0,0,0,0.4);
}
html.dark .cd-digit { background: linear-gradient(180deg, #f1f5f9 30%, rgba(241,245,249,0.4) 100%); -webkit-background-clip: text; background-clip: text; }
html.dark .form-section { background: transparent; }
html.dark .form-card {
  background: rgba(10,18,42,0.75) !important;
  border-color: rgba(59,130,246,0.22) !important;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 0 1px rgba(59,130,246,0.08) inset, 0 32px 64px rgba(0,0,0,0.6), 0 0 80px rgba(59,130,246,0.06);
}
html.dark .choice-label { background: rgba(59,130,246,0.05); border-color: rgba(59,130,246,0.15); color: rgba(241,245,249,0.5); }
html.dark .choice-label:hover { background: rgba(59,130,246,0.14); border-color: rgba(59,130,246,0.4); color: #fff; }
html.dark .choice-input:checked + .choice-label { background: rgba(59,130,246,0.18); border-color: #3b82f6; color: #fff; }
html.dark .step-input { background: rgba(59,130,246,0.06); border-color: rgba(59,130,246,0.18); color: #f1f5f9; }
html.dark .step-input::placeholder { color: rgba(241,245,249,0.22); }
html.dark .step-input:focus { background: rgba(59,130,246,0.1); border-color: rgba(59,130,246,0.5); box-shadow: 0 0 0 3px rgba(59,130,246,0.12); }
html.dark .back-btn { background: rgba(59,130,246,0.07); border-color: rgba(59,130,246,0.18); color: rgba(241,245,249,0.5); }
html.dark .back-btn:hover { background: rgba(59,130,246,0.14); color: #fff; }
html.dark .urgency-pill { background: rgba(220,38,38,0.1); border-color: rgba(220,38,38,0.28); color: #fca5a5; }
html.dark .services-strip { background: rgba(59,130,246,0.03); border-color: rgba(59,130,246,0.1); }
html.dark .services-strip span { color: rgba(241,245,249,0.4); }
html.dark .strip-dot { color: rgba(59,130,246,0.4); }
html.dark .stats-section { background: rgba(59,130,246,0.03); border-color: rgba(59,130,246,0.12); }
html.dark .stat-div { background: rgba(59,130,246,0.2); }
html.dark .info-section { border-color: rgba(59,130,246,0.1); }
html.dark .info-card {
  background: rgba(10,18,42,0.65); border-color: rgba(59,130,246,0.16);
  backdrop-filter: blur(12px); box-shadow: 0 1px 0 rgba(59,130,246,0.08) inset;
}
html.dark .info-card:hover {
  border-color: rgba(59,130,246,0.35);
  box-shadow: 0 1px 0 rgba(59,130,246,0.12) inset, 0 24px 48px rgba(0,0,0,0.5), 0 0 40px rgba(59,130,246,0.08);
}
html.dark .info-card h3 { color: #f1f5f9; }
html.dark .diff-text p em { color: rgba(241,245,249,0.85) !important; }
html.dark .diff-card.bad { background: rgba(239,68,68,0.07); border-color: rgba(239,68,68,0.18); }
html.dark .diff-card.good { background: rgba(59,130,246,0.08); border-color: rgba(59,130,246,0.22); }
html.dark .diff-card.good ul li { color: rgba(241,245,249,0.75); }
html.dark .diff-highlight { background: rgba(59,130,246,0.08); border-color: rgba(59,130,246,0.2); border-left-color: #3b82f6; color: rgba(241,245,249,0.9); }
html.dark .testimonial-card { background: rgba(10,18,42,0.65); border-color: rgba(59,130,246,0.14); backdrop-filter: blur(12px); }
html.dark .testimonial-card:hover { border-color: rgba(59,130,246,0.3); }
html.dark .testimonial-name { color: #f1f5f9; }
html.dark .testimonial-body { color: rgba(241,245,249,0.6); }
html.dark .faq-item { background: rgba(10,18,42,0.5); border-color: rgba(59,130,246,0.12); backdrop-filter: blur(8px); }
html.dark .faq-item:hover { border-color: rgba(59,130,246,0.25); }
html.dark .faq-item.open { background: rgba(59,130,246,0.08); border-color: rgba(59,130,246,0.28); }
html.dark .faq-q { color: #f1f5f9; }
html.dark .faq-q:hover { background: rgba(59,130,246,0.05); }
html.dark .faq-a { color: rgba(241,245,249,0.55); }
html.dark .footer { background: rgba(3,8,18,0.95); border-color: rgba(59,130,246,0.1); }
html.dark .footer-logo { color: rgba(241,245,249,0.25); }
html.dark .footer-legal { color: rgba(241,245,249,0.2); }
html.dark .footer-links a { color: rgba(241,245,249,0.22); }
html.dark .footer-links a:hover { color: rgba(241,245,249,0.5); }
html.dark .footer-links span { color: rgba(59,130,246,0.2); }
html.dark .orb-top { background: radial-gradient(ellipse, rgba(37,99,235,0.4) 0%, transparent 70%); }
html.dark .orb-bottom { background: radial-gradient(ellipse, rgba(37,99,235,0.18) 0%, transparent 70%); }

/* ════════════════════════════════════════════════════════════════════
   CHAMPAGNE PALETTE — dark mode override (matches /linkinbio)
   ════════════════════════════════════════════════════════════════════ */
html.dark { background: #030812; }
html.dark body { background: #030812; }

/* Section eyebrows + stat numbers + italic title accents → champagne */
html.dark .section-eyebrow { color: var(--gold-light); }
html.dark .stat-num {
  background: linear-gradient(135deg, #FFF6D8 0%, #F5CC73 50%, #C28A2B 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
html.dark .section-title em {
  background: linear-gradient(135deg, #FFF6D8 0%, #F5CC73 50%, #C28A2B 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Aurora removed per request — original blue orbs reinstated below */

/* Surface elements lift above aurora */
html.dark .nav,
html.dark .hero,
html.dark .form-section,
html.dark .services-strip,
html.dark .info-section,
html.dark .stats-section,
html.dark .footer { position: relative; z-index: 2; }
html.dark .orb { z-index: 1; }

/* Nav warmed */
html.dark .nav {
  background: rgba(11,11,20,0.72);
  border-bottom-color: rgba(245, 205, 130, 0.14);
  box-shadow: 0 1px 0 rgba(245,205,130,0.08), 0 4px 32px rgba(0,0,0,0.5);
}
html.dark .nav-logo-cursor { color: var(--gold-light); }
html.dark .nav-member-btn { background: rgba(245,205,130,0.06); border-color: rgba(245,205,130,0.18); color: rgba(241,245,249,0.7); }
html.dark .nav-member-btn:hover { background: rgba(245,205,130,0.14); border-color: rgba(245,205,130,0.42); color: var(--gold-light); }
html.dark .theme-toggle { background: rgba(245,205,130,0.06); border-color: rgba(245,205,130,0.20); color: rgba(241,245,249,0.7); }
html.dark .theme-toggle:hover { background: rgba(245,205,130,0.14); border-color: rgba(245,205,130,0.45); color: var(--gold-light); }

/* Primary CTAs — gold gradient with dark text, lifted look */
html.dark .nav-cta,
html.dark .hero-apply-btn,
html.dark .ok-btn,
html.dark .submit-btn,
html.dark .purple-btn {
  background: linear-gradient(150deg, #F4CB6E 0%, #C28A2B 100%) !important;
  color: #1F1505 !important;
  border: 1px solid rgba(255, 240, 195, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 245, 210, 0.55) inset,
    0 10px 28px rgba(220, 160, 60, 0.42),
    0 0 60px rgba(245, 200, 110, 0.18) !important;
}
html.dark .nav-cta:hover,
html.dark .hero-apply-btn:hover,
html.dark .ok-btn:hover,
html.dark .submit-btn:hover,
html.dark .purple-btn:hover {
  box-shadow:
    0 1px 0 rgba(255, 245, 210, 0.6) inset,
    0 14px 36px rgba(220, 160, 60, 0.55),
    0 0 80px rgba(245, 200, 110, 0.32) !important;
}
html.dark .hero-apply-btn { animation: hero-glow-gold 2.8s ease-in-out infinite; }
@keyframes hero-glow-gold {
  0%, 100% { filter: drop-shadow(0 4px 24px rgba(245,200,110,0.30)) drop-shadow(0 8px 48px rgba(245,200,110,0.10)); }
  50%      { filter: drop-shadow(0 4px 40px rgba(245,200,110,0.55)) drop-shadow(0 8px 64px rgba(245,200,110,0.22)); }
}

/* Badges + eyebrows + stat numbers swapped to champagne */
html.dark .badge {
  background: rgba(245,205,130,0.10);
  border-color: rgba(245,205,130,0.32);
  color: var(--gold-light);
}
html.dark .badge-dot { background: var(--gold-light); box-shadow: 0 0 10px rgba(245,205,130,0.6); }
html.dark .hero-eyebrow { color: var(--gold-light); }
html.dark .hero-ministat-num,
html.dark #livePillNum { color: var(--gold-light); }
html.dark .hero-ministat-divider { background: rgba(245,205,130,0.22); }
html.dark .hero-statrow { background: rgba(20,16,8,0.6); border-color: rgba(245,205,130,0.22); }

/* Hero accent text — pure champagne sweep, no more blue */
html.dark .accent {
  background: linear-gradient(135deg, #FFF6D8 0%, #F5CC73 50%, #C28A2B 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: none;
}

/* Countdown */
html.dark .cd-box { background: rgba(20,16,8,0.7); border-color: rgba(245,205,130,0.26); box-shadow: 0 1px 0 rgba(245,205,130,0.12) inset, 0 8px 24px rgba(0,0,0,0.4); }
html.dark .cd-sep { color: rgba(245,205,130,0.4); }

/* Services strip */
html.dark .services-strip { background: rgba(245,205,130,0.025); border-color: rgba(245,205,130,0.12); }
html.dark .strip-dot { color: rgba(245,205,130,0.4); }

/* Form */
html.dark .form-card {
  background: rgba(20,16,8,0.78) !important;
  border-color: rgba(245,205,130,0.22) !important;
  box-shadow: 0 0 0 1px rgba(245,205,130,0.08) inset, 0 32px 64px rgba(0,0,0,0.6), 0 0 80px rgba(245,200,110,0.10) !important;
}
html.dark .form-card::before {
  background: linear-gradient(90deg, transparent, rgba(245,205,130,0.55), transparent);
}
html.dark .step-eyebrow {
  background: rgba(245,205,130,0.10);
  border-color: rgba(245,205,130,0.25);
  color: var(--gold-light);
}
html.dark .choice-label { background: rgba(245,205,130,0.04); border-color: rgba(245,205,130,0.18); color: rgba(241,245,249,0.6); }
html.dark .choice-label:hover { background: rgba(245,205,130,0.12); border-color: rgba(245,205,130,0.42); color: #FAF3DC; }
html.dark .choice-input:checked + .choice-label {
  background: rgba(245,205,130,0.16); border-color: var(--gold-light); color: #FFF6D8;
  box-shadow: 0 0 0 2px rgba(245,205,130,0.12);
}
html.dark .step-input { background: rgba(245,205,130,0.06); border-color: rgba(245,205,130,0.20); color: #FAF3DC; }
html.dark .step-input::placeholder { color: rgba(241,245,249,0.28); }
html.dark .step-input:focus { background: rgba(245,205,130,0.10); border-color: rgba(245,205,130,0.55); box-shadow: 0 0 0 3px rgba(245,205,130,0.14); }
html.dark .back-btn { background: rgba(245,205,130,0.07); border-color: rgba(245,205,130,0.20); color: rgba(241,245,249,0.55); }
html.dark .back-btn:hover { background: rgba(245,205,130,0.14); color: var(--gold-light); }
html.dark .dot.active { background: var(--gold-light); }

/* Info / cards / diff / testimonial / faq */
html.dark .info-section { border-color: rgba(245,205,130,0.10); }
html.dark .info-card { background: rgba(20,16,8,0.62); border-color: rgba(245,205,130,0.18); box-shadow: 0 1px 0 rgba(245,205,130,0.08) inset; }
html.dark .info-card:hover { border-color: rgba(245,205,130,0.38); box-shadow: 0 1px 0 rgba(245,205,130,0.14) inset, 0 24px 48px rgba(0,0,0,0.5), 0 0 40px rgba(245,205,130,0.12); }
html.dark .info-num { color: var(--gold-light); }
html.dark .steps-arrow { color: rgba(245,205,130,0.55); }
html.dark .diff-card.good { background: rgba(245,205,130,0.08); border-color: rgba(245,205,130,0.24); }
html.dark .diff-card.good .diff-card-label { color: var(--gold-light); }
html.dark .diff-highlight { background: rgba(245,205,130,0.08); border-color: rgba(245,205,130,0.22); border-left-color: var(--gold-light); }
html.dark .stats-section { background: rgba(245,205,130,0.03); border-color: rgba(245,205,130,0.12); }
html.dark .stat-div { background: rgba(245,205,130,0.22); }
html.dark .testimonial-card { background: rgba(20,16,8,0.65); border-color: rgba(245,205,130,0.14); }
html.dark .testimonial-card:hover { border-color: rgba(245,205,130,0.32); }
html.dark .faq-item { background: rgba(20,16,8,0.5); border-color: rgba(245,205,130,0.12); }
html.dark .faq-item:hover { border-color: rgba(245,205,130,0.26); }
html.dark .faq-item.open { background: rgba(245,205,130,0.08); border-color: rgba(245,205,130,0.30); }
html.dark .faq-q:hover { background: rgba(245,205,130,0.05); }

/* Footer */
html.dark .footer { background: rgba(11,11,20,0.95); border-color: rgba(245,205,130,0.10); }
html.dark .footer-links span { color: rgba(245,205,130,0.22); }

