/* ============================================================
   LiveResults — Landing Page Styles
   ============================================================ */

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

:root {
  --bg:           #080b12;
  --bg-2:         #0d1220;
  --bg-card:      rgba(255,255,255,0.035);
  --bg-card-h:    rgba(255,255,255,0.06);
  --border:       rgba(255,255,255,0.08);
  --border-h:     rgba(255,255,255,0.18);
  --text:         #e8eaf2;
  --text-muted:   #6b7280;
  --text-dim:     #9ca3af;
  --cyan:         #00d4ff;
  --cyan-dark:    #0099bb;
  --green:        #10b981;
  --purple:       #8b5cf6;
  --red:          #ef4444;
  --gradient:     linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  --font-body:    'Inter', system-ui, sans-serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;
  --radius:       14px;
  --radius-sm:    8px;
  --transition:   0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Utilities ─────────────────────────────────────────────── */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pulse-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(0,212,255,0.6);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.pulse-dot--red  { background: var(--red); box-shadow: 0 0 0 0 rgba(239,68,68,0.6); }
.pulse-dot--sm   { width: 6px; height: 6px; }

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,212,255,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(0,212,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,212,255,0); }
}

/* ── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}
.nav--scrolled {
  background: rgba(8,11,18,0.85);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800;
  color: var(--text);
}
.nav-logo-text { letter-spacing: -0.02em; }
.nav-badge {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--cyan); border: 1px solid var(--cyan);
  border-radius: 4px; padding: 2px 6px;
  opacity: 0.8;
}
.nav-cta {
  font-size: 0.85rem; font-weight: 600;
  color: var(--bg); background: var(--cyan);
  padding: 8px 20px; border-radius: 50px;
  text-decoration: none;
  transition: opacity var(--transition), transform var(--transition);
}
.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* ── LANGUAGE SWITCH ────────────────────────────────────────── */
.lang-switch {
  display: inline-flex;
  align-items: center;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 3px 6px;
  gap: 2px;
}
.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.lang-btn:hover {
  color: var(--text);
}
.lang-btn.active {
  background: rgba(0, 212, 255, 0.18);
  color: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}
.lang-divider {
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.7rem;
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 32px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0.15;
  animation: float 8s ease-in-out infinite;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: var(--cyan);
  top: -100px; left: -100px;
  animation-delay: 0s;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: var(--purple);
  bottom: -100px; right: -50px;
  animation-delay: 4s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 760px; margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em;
  color: var(--cyan); text-transform: uppercase;
  background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2);
  border-radius: 50px; padding: 8px 18px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.15rem; color: var(--text-dim);
  max-width: 580px; margin: 0 auto 40px;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.95rem; font-weight: 600;
  padding: 14px 28px; border-radius: 50px;
  text-decoration: none; transition: all var(--transition);
  cursor: pointer; border: none;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 0 40px rgba(0,212,255,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0,212,255,0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border-h);
}
.btn-ghost:hover { background: var(--bg-card-h); color: var(--text); }

.hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-val {
  display: block; font-family: var(--font-heading);
  font-size: 1.8rem; font-weight: 900; color: var(--text);
  letter-spacing: -0.03em;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); }
.stat-divider {
  width: 1px; height: 36px;
  background: var(--border);
}

/* ── SCREENSHOT ─────────────────────────────────────────────── */
.screenshot-section {
  padding: 0 32px 100px;
}
.screenshot-container {
  max-width: 1100px; margin: 0 auto;
}
.screenshot-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.screenshot-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em;
  color: var(--text); text-transform: uppercase;
  transition: opacity 0.2s ease;
}
.carousel-counter {
  font-family: var(--font-heading, monospace);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  padding: 3px 10px;
  border-radius: 20px;
}
.carousel-frame {
  position: relative; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 40px 120px rgba(0,0,0,0.65),
    0 0 80px rgba(0,212,255,0.06);
}
.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}
.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  user-select: none;
}
.screenshot-img {
  display: block; width: 100%; height: auto;
  border-radius: 16px;
}
.screenshot-glow {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 25%;
  background: linear-gradient(to top, rgba(8,11,18,0.5), transparent);
  pointer-events: none;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 14, 26, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
  opacity: 0.85;
}
.carousel-frame:hover .carousel-arrow {
  opacity: 1;
}
.carousel-arrow:hover {
  background: rgba(0, 212, 255, 0.25);
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-50%) scale(1.08);
}
.carousel-arrow--prev { left: 18px; }
.carousel-arrow--next { right: 18px; }

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
}
.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}
.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.45);
}
.carousel-dot.active {
  width: 28px;
  border-radius: 10px;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.5);
}

.screenshot-caption {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
  min-height: 24px;
  line-height: 1.5;
  transition: opacity 0.2s ease;
}

/* ── SECTIONS COMMON ────────────────────────────────────────── */
.section-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 32px;
}
.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--cyan); text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 60px;
}

/* ── FEATURES ───────────────────────────────────────────────── */
.features {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, var(--bg-2) 30%, var(--bg-2) 70%, transparent);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.feature-card:hover {
  background: var(--bg-card-h);
  border-color: var(--border-h);
  transform: translateY(-4px);
}
.feature-card--highlight {
  background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(139,92,246,0.08));
  border-color: rgba(0,212,255,0.2);
  grid-column: span 2;
}
@media (max-width: 700px) { .feature-card--highlight { grid-column: span 1; } }

.feature-icon {
  font-size: 2rem; margin-bottom: 14px;
}
.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem; font-weight: 800;
  margin-bottom: 8px; color: var(--text);
}
.feature-card p {
  font-size: 0.9rem; color: var(--text-dim); line-height: 1.65;
}

/* ── HOW IT WORKS ───────────────────────────────────────────── */
.how-it-works { padding: 100px 0; }

.steps {
  display: flex; align-items: flex-start;
  gap: 0; flex-wrap: wrap;
}
.step {
  flex: 1; min-width: 200px;
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step-connector {
  display: flex; align-items: center;
  width: 40px; flex-shrink: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  margin-top: 56px;
  opacity: 0.4;
}
@media (max-width: 700px) {
  .steps { flex-direction: column; }
  .step-connector { width: 2px; height: 30px; margin: 0 0 0 28px; }
}
.step-num {
  font-family: var(--font-heading);
  font-size: 3rem; font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,212,255,0.3);
  margin-bottom: 12px; line-height: 1;
}
.step-content h3 {
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 800;
  margin-bottom: 8px;
}
.step-content p {
  font-size: 0.88rem; color: var(--text-dim); line-height: 1.65;
}
.step-content strong { color: var(--text); }

/* ── ALPHA ──────────────────────────────────────────────────── */
.alpha-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, var(--bg-2) 30%, var(--bg-2) 70%, transparent);
}
.alpha-card {
  position: relative;
  background: linear-gradient(135deg, rgba(16,185,129,0.06), rgba(0,212,255,0.06));
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 20px;
  padding: 60px;
  overflow: hidden;
}
.alpha-card::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(16,185,129,0.12), transparent 70%);
  pointer-events: none;
}
.alpha-badge {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--green); text-transform: uppercase;
  border: 1px solid rgba(16,185,129,0.4);
  border-radius: 50px; padding: 6px 14px;
  margin-bottom: 24px;
}
.alpha-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900; line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.alpha-desc {
  font-size: 1rem; color: var(--text-dim);
  max-width: 600px; line-height: 1.75;
  margin-bottom: 32px;
}
.alpha-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
}
.alpha-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; color: var(--text-dim);
}
.check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(16,185,129,0.15);
  color: var(--green); font-size: 0.8rem; flex-shrink: 0;
  font-weight: 700;
}

/* ── CONTACT ────────────────────────────────────────────────── */
.contact { padding: 100px 0 60px; text-align: center; }
.contact-sub {
  font-size: 1.05rem; color: var(--text-dim);
  max-width: 520px; margin: -30px auto 48px;
  line-height: 1.7;
}
.contact-links {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.contact-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.95rem; font-weight: 600;
  padding: 14px 28px; border-radius: 50px;
  text-decoration: none; transition: all var(--transition);
}
.contact-link--form {
  background: rgba(0, 212, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(0, 212, 255, 0.35);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.15);
}
.contact-link--form:hover {
  background: rgba(0, 212, 255, 0.22);
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 212, 255, 0.25);
}
.contact-link--email {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border-h);
}
.contact-link--email:hover {
  background: var(--bg-card-h);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* ── SMART EMAIL DROPDOWN ───────────────────────────────────── */
.email-dropdown-wrapper {
  position: relative;
  display: inline-block;
}
.email-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 320px;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 24px rgba(0, 212, 255, 0.12);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 120;
}
.email-dropdown-wrapper.open .email-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.email-dropdown-wrapper.open #emailChevron {
  transform: rotate(180deg);
}
.email-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, transform 0.15s ease;
}
.email-menu-item:hover {
  background: rgba(255, 255, 255, 0.08);
}
.email-menu-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.email-menu-text {
  display: flex;
  flex-direction: column;
}
.email-menu-text strong {
  font-size: 0.88rem;
  color: #fff;
  font-weight: 600;
}
.email-menu-text small {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 32px;
  text-align: center;
}
.footer-logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-weight: 800;
  color: var(--text-muted); margin-bottom: 14px; font-size: 0.95rem;
}
.footer-note {
  font-size: 0.78rem; color: var(--text-muted); line-height: 1.7;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 16px 0 12px;
  font-size: 0.85rem;
}
.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  cursor: pointer;
  transition: color var(--transition);
}
.footer-link:hover {
  color: var(--text);
  text-decoration: underline;
}
.footer-dot {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
  user-select: none;
}

/* ── POLICY MODAL ───────────────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 15, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-backdrop.open,
.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-dialog {
  background: #0f1624;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  width: 100%;
  max-width: 820px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 240, 255, 0.08);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.modal-backdrop.open .modal-dialog,
.modal-backdrop.active .modal-dialog {
  transform: translateY(0) scale(1);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(15, 22, 36, 0.95);
  gap: 12px;
}
.modal-tabs {
  display: flex;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.modal-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
}
.modal-tab-btn:hover {
  color: var(--text);
}
.modal-tab-btn.active {
  background: var(--bg-card);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.modal-close-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}
.modal-close-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}
.modal-body {
  padding: 28px 32px;
  overflow-y: auto;
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.7;
}
.modal-body h3 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.3rem;
  margin-top: 24px;
  margin-bottom: 10px;
}
.modal-body h3:first-child {
  margin-top: 0;
}
.modal-body h4 {
  font-family: var(--font-heading);
  color: #38bdf8;
  font-size: 1.02rem;
  margin-top: 18px;
  margin-bottom: 8px;
}
.modal-body p {
  margin-bottom: 14px;
}
.modal-body ul {
  margin: 0 0 16px 20px;
  padding: 0;
}
.modal-body li {
  margin-bottom: 6px;
}
.modal-body strong {
  color: #f8fafc;
}
.modal-panel {
  display: none;
}
.modal-panel.active {
  display: block;
}
.policy-badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 20px;
  background: rgba(0, 240, 255, 0.1);
  color: var(--primary);
  border: 1px solid rgba(0, 240, 255, 0.2);
  margin-bottom: 12px;
}
.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.85rem;
}
.policy-table th, .policy-table td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  text-align: left;
}
.policy-table th {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-weight: 600;
}

/* ── COOKIE CONSENT BANNER ─────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: calc(100% - 48px);
  max-width: 860px;
  background: rgba(15, 22, 36, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 240, 255, 0.08);
  z-index: 999;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
}
.cookie-banner-text {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.5;
}
.cookie-banner-text strong {
  color: #fff;
}
.cookie-banner-text a {
  color: var(--primary);
  text-decoration: underline;
  cursor: pointer;
}
.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn-primary {
  background: var(--gradient-primary);
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 18px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-btn-primary:hover {
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
  transform: translateY(-1px);
}
.cookie-btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #e2e8f0;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 9px 16px;
  border-radius: 50px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    bottom: 16px;
    width: calc(100% - 32px);
  }
  .cookie-banner-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

/* ── ANIMATIONS ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 600px) {
  .hero { padding: 100px 20px 60px; }
  .section-inner { padding: 0 20px; }
  .alpha-card { padding: 36px 24px; }
  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }
}
