: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);
  --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;
}

/* Live Revenue Pill */
.live-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 16px; border-radius: 100px;
  background: #fff; border: 1px solid rgba(10,132,255,0.18);
  font-size: 13px; font-weight: 500; color: var(--muted);
  box-shadow: 0 2px 12px rgba(10,132,255,0.1);
  margin-bottom: 20px; white-space: nowrap;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #22c55e;
  animation: pulse 2s ease-in-out infinite; flex-shrink: 0;
}
#livePillNum {
  font-weight: 700; color: var(--blue);
  display: inline-block; overflow: hidden; vertical-align: middle;
  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);
  animation: pulse 2s ease-in-out infinite;
}

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, #60A5FA 0%, #0A84FF 60%, #0055FF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.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-sub {
  font-size: 15px; line-height: 1.75; color: var(--muted);
  max-width: 480px; 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;
  animation: pulse 2s ease-in-out infinite;
}

/* 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 8%, black 92%, transparent);
  mask: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.services-track {
  display: flex; align-items: center; gap: 24px;
  width: max-content; animation: marquee 28s linear infinite;
}
.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; animation: pulse 1s ease-in-out infinite;
}
@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; }
}

/* 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: #05050A;
  --surface: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.09);
  --border-hi: rgba(255,255,255,0.18);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.5);
  --label: rgba(255,255,255,0.28);
  --blue-dim: rgba(10,132,255,0.14);
  --blue-glow: rgba(10,132,255,0.35);
}

/* Dark mode element overrides */
html.dark .nav { background: rgba(5,5,10,0.88); }
html.dark .theme-toggle { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
html.dark .theme-toggle:hover { background: rgba(10,132,255,0.15); }
html.dark .nav-member-btn { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); }
html.dark .nav-member-btn:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.2); }
html.dark .live-pill { background: rgba(255,255,255,0.05); border-color: rgba(10,132,255,0.25); color: rgba(255,255,255,0.5); }
html.dark .badge { background: rgba(10,132,255,0.14); border-color: rgba(10,132,255,0.3); }
html.dark .cd-box { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.14); box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset; }
html.dark .cd-digit { background: linear-gradient(180deg,#fff 30%,rgba(255,255,255,0.45) 100%); -webkit-background-clip:text; background-clip:text; }
html.dark .form-section { background: transparent; }
html.dark .form-card { background: rgba(10,132,255,0.07) !important; border-color: rgba(10,132,255,0.28) !important; box-shadow: 0 0 0 1px rgba(10,132,255,0.06) inset, 0 32px 64px rgba(0,0,0,0.5); }
html.dark .choice-label { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); }
html.dark .choice-label:hover { background: rgba(10,132,255,0.14); border-color: rgba(10,132,255,0.4); color: #fff; }
html.dark .choice-input:checked + .choice-label { background: rgba(10,132,255,0.18); border-color: #0A84FF; color: #fff; }
html.dark .step-input { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); color: #fff; }
html.dark .step-input::placeholder { color: rgba(255,255,255,0.22); }
html.dark .step-input:focus { background: rgba(255,255,255,0.07); border-color: rgba(10,132,255,0.5); box-shadow: 0 0 0 3px rgba(10,132,255,0.12); }
html.dark .back-btn { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.5); }
html.dark .back-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }
html.dark .urgency-pill { background: rgba(220,38,38,0.1); border-color: rgba(220,38,38,0.3); color: #fca5a5; }
html.dark .services-strip { background: rgba(255,255,255,0.02); border-color: rgba(255,255,255,0.07); }
html.dark .services-strip span { color: rgba(255,255,255,0.4); }
html.dark .stats-section { background: rgba(255,255,255,0.01); border-color: rgba(255,255,255,0.07); }
html.dark .stat-div { background: rgba(255,255,255,0.08); }
html.dark .info-section { border-color: rgba(255,255,255,0.07); }
html.dark .info-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.09); box-shadow: 0 1px 0 rgba(255,255,255,0.07) inset; }
html.dark .info-card:hover { border-color: rgba(255,255,255,0.18); box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset, 0 24px 48px rgba(0,0,0,0.4); }
html.dark .info-card h3 { color: #fff; }
html.dark .diff-card.bad { background: rgba(239,68,68,0.07); border-color: rgba(239,68,68,0.2); }
html.dark .diff-card.good { background: rgba(10,132,255,0.08); border-color: rgba(10,132,255,0.22); }
html.dark .diff-card.good ul li { color: rgba(255,255,255,0.75); }
html.dark .diff-highlight { background: rgba(10,132,255,0.08); border-color: rgba(10,132,255,0.2); color: rgba(255,255,255,0.9); }
html.dark .testimonial-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.09); }
html.dark .testimonial-card:hover { border-color: rgba(255,255,255,0.18); }
html.dark .testimonial-name { color: #fff; }
html.dark .testimonial-body { color: rgba(255,255,255,0.65); }
html.dark .faq-item { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.08); }
html.dark .faq-item:hover { border-color: rgba(255,255,255,0.15); }
html.dark .faq-item.open { background: rgba(10,132,255,0.06); border-color: rgba(10,132,255,0.25); }
html.dark .faq-q { color: #fff; }
html.dark .faq-q:hover { background: rgba(255,255,255,0.03); }
html.dark .faq-a { color: rgba(255,255,255,0.55); }
html.dark .footer { background: rgba(255,255,255,0.02); border-color: rgba(255,255,255,0.07); }
html.dark .footer-logo { color: rgba(255,255,255,0.2); }
html.dark .footer-legal { color: rgba(255,255,255,0.18); }
html.dark .footer-links a { color: rgba(255,255,255,0.2); }
html.dark .footer-links a:hover { color: rgba(255,255,255,0.4); }
html.dark .footer-links span { color: rgba(255,255,255,0.1); }
