/* ─── Kinetic Golf — Brand & Base Styles ─────────────────────────────────── */

:root {
  --volt:        #DFFF00;
  --volt-glow:   rgba(223,255,0,0.15);
  --volt-glow-s: rgba(223,255,0,0.06);
  --bg:          #0e0e0e;
  --card:        #1a1a1a;
  --card2:       #222222;
  --white:       #f5f5f5;
  --subtle:      rgba(245,245,245,0.55);
  --border:      rgba(255,255,255,0.08);
  --border-hover:rgba(223,255,0,0.35);
  --green:       #4ade80;
  --orange:      #fb923c;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --max-w:       1120px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

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

/* ─── Reveal animation ───────────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.48s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.56s; }
.reveal-stagger.visible > *:nth-child(9) { transition-delay: 0.64s; }

a { color: var(--volt); text-decoration: none; }
a:hover { text-decoration: underline; }

img { display: block; max-width: 100%; }

/* ─── Layout ─────────────────────────────────────────────────────────────── */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }
section:first-of-type { padding-top: 0; }

/* ─── Nav ────────────────────────────────────────────────────────────────── */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14,14,14,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-logo .volt-dot {
  width: 10px; height: 10px;
  background: var(--volt);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--subtle);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--white); text-decoration: none; }

.nav-cta {
  background: var(--volt);
  color: #000 !important;
  font-weight: 700 !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: opacity 0.15s !important;
}

.nav-cta:hover { opacity: 0.85; text-decoration: none !important; }

/* ─── Buttons ────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
  border: none;
  text-decoration: none;
}

.btn:hover { opacity: 0.88; transform: translateY(-2px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn-volt  { background: var(--volt); color: #000; box-shadow: 0 4px 20px rgba(223,255,0,0.15); }
.btn-volt:hover { box-shadow: 0 6px 28px rgba(223,255,0,0.25); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--border-hover); }
.btn-lg    { font-size: 1.1rem; padding: 16px 36px; border-radius: var(--radius-lg); }

/* ─── Typography helpers ─────────────────────────────────────────────────── */

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--volt);
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(1.9rem, 8vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.lead {
  font-size: 1.15rem;
  color: var(--subtle);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .lead { margin: 16px auto 0; }

/* ─── Cards ──────────────────────────────────────────────────────────────── */

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */

.hero {
  padding: 120px 0 96px;
  position: relative;
  overflow: hidden;
}

/* Multi-layer gradient backdrop */
.hero::before {
  content: '';
  position: absolute;
  top: -300px; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 800px;
  background:
    radial-gradient(ellipse at 35% 40%, rgba(223,255,0,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 65% 30%, rgba(223,255,0,0.06) 0%, transparent 50%);
  pointer-events: none;
  animation: heroPulse 8s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}

@keyframes heroPulse {
  from { opacity: 0.7; transform: translateX(-50%) scale(1); }
  to   { opacity: 1;   transform: translateX(-50%) scale(1.05); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(223,255,0,0.1);
  border: 1px solid rgba(223,255,0,0.25);
  color: var(--volt);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 24px;
}

.hero h1 { margin-bottom: 24px; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.hero-social-proof {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--subtle);
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--card2);
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-left: -8px;
}

.avatar-stack span:first-child { margin-left: 0; }

/* ─── Screenshots ────────────────────────────────────────────────────────── */

.screenshots-grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  position: relative;
}

/* Soft glow behind the screenshot group */
.screenshots-grid::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(223,255,0,0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.screenshot-img {
  width: 220px;
  height: auto;
  flex-shrink: 0;
  display: block;
  border-radius: 4px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  animation: phoneFloat 6s ease-in-out infinite alternate;
}

.screenshot-img--mid  {
  transform: translateY(-20px);
  animation-delay: -2s;
}

.screenshot-img--last {
  transform: translateY(10px);
  animation-delay: -4s;
}

@keyframes phoneFloat {
  from { transform: translateY(var(--float-start, 0px)); }
  to   { transform: translateY(var(--float-end, -8px)); }
}

.screenshot-img               { --float-start: 0px;   --float-end: -8px; }
.screenshot-img--mid          { --float-start: -20px;  --float-end: -28px; }
.screenshot-img--last         { --float-start: 10px;   --float-end: 2px; }




/* ─── Features ───────────────────────────────────────────────────────────── */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(223,255,0,0.06), 0 0 0 1px rgba(223,255,0,0.12);
}

.feature-icon {
  width: 48px; height: 48px;
  background: rgba(223,255,0,0.08);
  border: 1px solid rgba(223,255,0,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  transition: background var(--transition), box-shadow var(--transition);
}

.feature-card:hover .feature-icon {
  background: rgba(223,255,0,0.12);
  box-shadow: 0 0 20px rgba(223,255,0,0.10);
}

.feature-card h3 { margin-bottom: 8px; }
.feature-card p { font-size: 0.92rem; color: var(--subtle); line-height: 1.65; }

/* ─── Who it's for ───────────────────────────────────────────────────────── */

.personas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.persona-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.persona-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.persona-card .hcp-badge {
  display: inline-block;
  background: rgba(223,255,0,0.12);
  color: var(--volt);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 14px;
}

.persona-card h3 { margin-bottom: 8px; }
.persona-card p { font-size: 0.9rem; color: var(--subtle); }

/* ─── How it works ───────────────────────────────────────────────────────── */

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

/* Vertical connecting line */
.steps::before {
  content: '';
  position: absolute;
  left: 20px; top: 42px; bottom: 42px;
  width: 2px;
  background: linear-gradient(to bottom, var(--volt), rgba(223,255,0,0.15), var(--volt));
  border-radius: 99px;
  opacity: 0.3;
}

.step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.step:last-child { border-bottom: none; }

.step-num {
  width: 42px; height: 42px;
  background: var(--volt);
  color: #000;
  font-weight: 900;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(223,255,0,0.20);
  transition: box-shadow var(--transition), transform var(--transition);
}

.step:hover .step-num {
  box-shadow: 0 0 28px rgba(223,255,0,0.35);
  transform: scale(1.08);
}

.step-body h3 { margin-bottom: 6px; }
.step-body p { font-size: 0.92rem; color: var(--subtle); }

/* ─── Stats bar ──────────────────────────────────────────────────────────── */

.stats-bar {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  position: relative;
}

/* Dividers between stat items */
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: -16px; top: 10%;
  width: 1px; height: 80%;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

.stat-item .num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--volt);
  letter-spacing: -0.03em;
  line-height: 1;
  text-shadow: 0 0 30px rgba(223,255,0,0.20);
}

.stat-item .label {
  font-size: 0.85rem;
  color: var(--subtle);
  margin-top: 6px;
}

/* ─── Beta CTA ───────────────────────────────────────────────────────────── */

.beta-cta {
  background: linear-gradient(135deg, rgba(223,255,0,0.08) 0%, rgba(223,255,0,0.02) 50%, transparent 100%);
  border: 1px solid rgba(223,255,0,0.18);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle animated glow in corner */
.beta-cta::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(223,255,0,0.08) 0%, transparent 60%);
  pointer-events: none;
  animation: ctaGlow 6s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
  from { opacity: 0.5; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.2); }
}

.beta-cta h2 { margin-bottom: 16px; }
.beta-cta .lead { margin: 0 auto 36px; }

.beta-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Privacy Policy ─────────────────────────────────────────────────────── */

.policy-body {
  max-width: 720px;
  margin: 0 auto;
  color: var(--subtle);
}

.policy-body h3 {
  color: var(--white);
  margin: 32px 0 10px;
}

.policy-body p, .policy-body li {
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 8px;
}

.policy-body ul { padding-left: 20px; }

/* ─── Contact cards ──────────────────────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.contact-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.contact-card h3 {
  margin-bottom: 6px;
}

.contact-card a {
  font-size: 0.9rem;
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */

footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--subtle);
}

.footer-links a:hover { color: var(--white); }

.footer-copy {
  font-size: 0.82rem;
  color: var(--subtle);
}

/* ─── Form styles (used in beta.html) ───────────────────────────────────── */

.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 660px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 22px;
}

label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

label .hint {
  font-weight: 400;
  color: var(--subtle);
  margin-left: 6px;
}

input[type="text"],
input[type="email"],
input[type="number"],
select,
textarea {
  width: 100%;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
  appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: rgba(223,255,0,0.5);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

textarea { resize: vertical; min-height: 100px; }

.radio-group, .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-option, .checkbox-option {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  cursor: pointer;
  transition: border-color 0.15s;
  font-size: 0.92rem;
}

.radio-option:hover, .checkbox-option:hover { border-color: rgba(223,255,0,0.35); }

.radio-option input, .checkbox-option input { accent-color: var(--volt); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  margin-top: 32px;
}

.form-submit .btn { width: 100%; justify-content: center; font-size: 1.05rem; }

.success-banner {
  display: none;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  color: var(--green);
  font-weight: 600;
  text-align: center;
  margin-top: 24px;
}

/* ─── Policy page ────────────────────────────────────────────────────────── */

.policy-page-header {
  padding: 80px 0 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 64px;
}

.policy-page-header h1 {
  margin: 12px 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.policy-contact-box {
  margin-top: 56px;
  padding: 36px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.policy-contact-box p {
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  margin: 0;
}

/* ─── Wizard (beta.html) ─────────────────────────────────────────────────── */

.wizard-section {
  padding: 80px 0 100px;
}

.wizard-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}

.wizard-header .hero-tag { display: inline-flex; margin-bottom: 20px; }
.wizard-header h1 { margin-bottom: 14px; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.wizard-header .lead { margin: 0 auto; font-size: 1rem; }

/* Progress bar */
.wizard-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 640px;
  margin: 0 auto 10px;
}

.wizard-step-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--subtle);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.wizard-pct {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--volt);
}

.wizard-progress-track {
  max-width: 640px;
  margin: 0 auto 32px;
  height: 4px;
  background: var(--card2);
  border-radius: 99px;
  overflow: hidden;
}

.wizard-progress-fill {
  height: 100%;
  background: var(--volt);
  border-radius: 99px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
}

/* Card */
.wizard-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 640px;
  margin: 0 auto;
  min-height: 320px;
}

/* Steps — hidden by default, shown when .active */
.wizard-step { display: none; }
.wizard-step.active { display: block; animation: stepIn 0.25s ease; }

@keyframes stepIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.wizard-q-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--volt);
  margin-bottom: 10px;
}

.wizard-q {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--white);
}

.wizard-hint {
  font-size: 0.85rem;
  color: var(--subtle);
  margin-top: -18px;
  margin-bottom: 18px;
}

.wizard-input {
  width: 100%;
  background: var(--card2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--white);
  font-family: var(--font);
  font-size: 1.1rem;
  padding: 16px 20px;
  outline: none;
  transition: border-color 0.15s;
}

.wizard-input:focus { border-color: rgba(223,255,0,0.5); }

.wizard-textarea {
  resize: vertical;
  min-height: 120px;
  font-size: 0.95rem;
}

/* Option buttons */
.wizard-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wizard-options--row {
  flex-direction: row;
  flex-wrap: wrap;
}

.wizard-options--row .opt-btn { flex: 1 1 120px; }

.opt-btn {
  background: var(--card2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 18px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.opt-btn:hover { border-color: rgba(223,255,0,0.4); background: rgba(223,255,0,0.05); }

.opt-btn.selected {
  border-color: var(--volt);
  background: rgba(223,255,0,0.1);
  color: var(--volt);
  font-weight: 700;
}

/* Multi-select hint */
.wizard-options--multi .opt-btn { position: relative; }
.wizard-options--multi .opt-btn.selected::after {
  content: '✓';
  position: absolute;
  right: 16px;
  top: 50%; transform: translateY(-50%);
  color: var(--volt);
  font-weight: 900;
}

/* Error message */
.wizard-error {
  font-size: 0.82rem;
  color: #f87171;
  margin-top: 10px;
  min-height: 18px;
}

/* Consent on final step */
.wizard-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--subtle);
  cursor: pointer;
  line-height: 1.6;
}

.wizard-consent input { accent-color: var(--volt); margin-top: 3px; flex-shrink: 0; }

/* Nav row */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 640px;
  margin: 20px auto 0;
  gap: 12px;
}

.wizard-nav .btn-volt { margin-left: auto; }

/* ─── Beta Hero (legacy, kept for safety) ────────────────────────────────── */

.beta-hero {
  padding: 100px 0 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.beta-hero::before {
  content: '';
  position: absolute;
  top: -160px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(223,255,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.beta-hero-inner { max-width: 640px; margin: 0 auto; }
.beta-hero-inner .hero-tag { display: inline-flex; margin-bottom: 24px; }
.beta-hero-inner h1 { margin-bottom: 20px; }
.beta-hero-inner .lead { margin: 0 auto; }

/* ─── Beta Form Wrapper ───────────────────────────────────────────────────── */

.form-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 680px;
  margin: 0 auto 80px;
}

/* ─── Form extras ────────────────────────────────────────────────────────── */

.req { color: var(--volt); }

.form-hint {
  font-size: 0.8rem;
  color: var(--subtle);
  font-weight: 400;
  margin-bottom: 8px;
  margin-top: -4px;
}

.check-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--card2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  cursor: pointer;
  transition: border-color 0.15s;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--subtle);
}

.check-option:hover { border-color: rgba(223,255,0,0.35); }
.check-option input { accent-color: var(--volt); margin-top: 2px; flex-shrink: 0; }

.consent-check {
  background: transparent;
  border-color: transparent;
  padding: 0;
  font-size: 0.85rem;
  line-height: 1.5;
}

.form-error {
  color: #f87171;
  font-size: 0.88rem;
  background: rgba(248,113,113,0.08);
  border: 1px solid rgba(248,113,113,0.25);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 16px;
}

.submit-btn {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  margin-top: 8px;
}

.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.success-banner {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.25);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 680px;
  margin: 0 auto 80px;
}

.success-banner .success-icon { font-size: 3rem; }
.success-banner h3 { font-size: 1.4rem; color: var(--green); }
.success-banner p { color: var(--subtle); font-size: 0.95rem; max-width: 420px; }

/* ─── Responsive ─────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .screenshots-grid { justify-content: center; margin-top: 40px; }
  .screenshot-img { width: 160px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .personas-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item + .stat-item::before { display: none; }
  .beta-cta { padding: 40px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding: 64px 0; }
  .hero { padding: 80px 0 64px; }
  .screenshots-grid { gap: 8px; }
  .screenshot-img { width: 110px; }
  .features-grid { grid-template-columns: 1fr; }
  .personas-grid { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .form-card { padding: 28px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .wizard-card { padding: 28px 20px; }
  .wizard-options--row { flex-direction: column; }
  .wizard-nav { flex-direction: row; }
  .steps::before { display: none; }
}
