/* ── SELF-HOSTED FONTS ── */
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/bebas-neue-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('/fonts/dm-sans-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('/fonts/lora-400-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url('/fonts/lora-400i-latin.woff2') format('woff2');
}

:root {
  --navy: #312e81;
  --deep: #1e1b4b;
  --blue: #3730a3;
  --electric: #4f46e5;
  --mint: #00E5B0;
  --gold: #F5C842;
  --white: #F8F7F2;
  --muted: rgba(248,247,242,0.5);
  --card-bg: rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  cursor: pointer;
  background: none;
  color: inherit;
  line-height: inherit;
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--deep);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: default;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 50;
  opacity: 0.6;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 60px;
  background: linear-gradient(to bottom, rgba(6,11,31,0.95), transparent);
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}


.logo span { color: var(--mint); }

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  align-items: center;
}

nav ul a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav ul a:hover { color: var(--white); }

.nav-cta {
  background: var(--mint);
  color: var(--navy);
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,229,176,0.3);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  width: 800px; height: 800px;
  background: radial-gradient(ellipse, rgba(45,78,245,0.25) 0%, rgba(0,229,176,0.08) 40%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 12vw, 180px);
  line-height: 0.9;
  letter-spacing: -2px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero h1 em {
  font-style: normal;
  color: var(--mint);
  display: block;
}

.hero-sub {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 28px);
  color: var(--muted);
  max-width: 640px;
  line-height: 1.5;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.btn-primary {
  background: var(--mint);
  color: var(--navy);
  padding: 16px 40px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,229,176,0.3);
}

.btn-ghost {
  border: 1px solid var(--card-border);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 100px;
  font-size: 15px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.3);
  background: var(--card-bg);
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s 1.4s forwards;
}

.scroll-hint span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--mint), transparent);
  animation: scrollPulse 2s infinite;
}

/* ── MATCH SECTION ── */
.match-section {
  padding: 160px 60px;
  text-align: center;
  position: relative;
}

.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 24px;
}

.match-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.0;
  max-width: 800px;
  margin: 0 auto 24px;
  letter-spacing: 1px;
}

.match-headline em {
  font-style: normal;
  color: var(--mint);
}

.match-sub {
  color: var(--muted);
  font-size: 18px;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── STORY CARDS ── */
.stories {
  padding: 40px 60px 160px;
  max-width: 1400px;
  margin: 0 auto;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.story-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, transform 0.3s;
  cursor: default;
}

.story-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
  z-index: 2;
}

.story-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--electric), var(--mint));
  opacity: 0;
  transition: opacity 0.3s;
}

.story-card:hover::before { opacity: 1; }

.card-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}

.card-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 12px;
}

.card-headline {
  font-family: 'Lora', serif;
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 16px;
  font-style: italic;
}

.card-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

.card-punch {
  margin-top: 24px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.5px;
}

/* (wide card style removed — using equal-width cards) */

/* ── COMPARISON TABLE ── */
.comparison {
  padding: 160px 60px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.comparison h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  margin-bottom: 16px;
}

.comparison h2 span { color: var(--mint); }

.comparison-sub {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--muted);
  font-size: 20px;
  margin-bottom: 80px;
}

.comp-table-wrap {
  width: 100%;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 15px;
}

.comp-table th {
  padding: 16px 24px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--card-border);
}

.comp-table th:last-child {
  color: var(--mint);
}

.comp-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--card-border);
  color: var(--muted);
  vertical-align: middle;
}

.comp-table td:first-child {
  color: var(--white);
  font-weight: 400;
}

.comp-table td:last-child {
  color: var(--white);
}

.comp-table .bad { color: #FF6B6B; }
.comp-table .good { color: var(--mint); font-weight: 500; }

.comp-table tr:hover td {
  background: var(--card-bg);
}

/* ── TIMELINE / BUREAU ── */
.timeline-section {
  padding: 160px 60px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.timeline-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  margin-bottom: 16px;
}

.timeline-section .sub {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 80px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 90px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--electric), var(--mint) 70%, transparent);
}

.tl-item {
  display: flex;
  gap: 32px;
  padding: 24px 0;
  align-items: flex-start;
}

.tl-time {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: var(--muted);
  width: 90px;
  flex-shrink: 0;
  padding-top: 2px;
  letter-spacing: 1px;
}

.tl-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--card-border);
  border: 2px solid var(--card-border);
  margin-top: 6px;
  flex-shrink: 0;
  margin-left: -5px;
  position: relative;
  z-index: 2;
}

.tl-item.highlight .tl-dot {
  background: var(--mint);
  border-color: var(--mint);
  box-shadow: 0 0 16px rgba(0,229,176,0.5);
}

.tl-content { flex: 1; padding-left: 20px; }

.tl-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.tl-item.highlight .tl-content p {
  color: var(--white);
  font-weight: 500;
}

.tl-item.highlight .tl-time { color: var(--mint); }

/* ── STATS BAND ── */
.stats-band {
  padding: 80px 60px;
  background: linear-gradient(135deg, rgba(45,78,245,0.15), rgba(0,229,176,0.05));
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  line-height: 1;
  color: var(--white);
  letter-spacing: -1px;
}

.stat-num span { color: var(--mint); }

.stat-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* ── HOW IT WORKS ── */
.how {
  padding: 160px 60px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.how h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  margin-bottom: 80px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: left;
}

.step {
  position: relative;
  padding-top: 48px;
}

.step::before {
  content: attr(data-n);
  position: absolute;
  top: 0; left: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  line-height: 1;
  color: rgba(45,78,245,0.2);
  letter-spacing: -2px;
}

.step h3 {
  font-family: 'Lora', serif;
  font-size: 20px;
  margin-bottom: 12px;
  font-style: italic;
}

.step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

/* ── SOCIAL PROOF ── */
.social-proof {
  padding: 40px 60px;
  border-bottom: 1px solid var(--card-border);
}

.proof-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--muted);
}

.proof-icon {
  font-size: 18px;
}

/* ── STATS FOOTNOTE ── */
.stats-footnote {
  text-align: center;
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(248,247,242,0.3);
  margin-top: 24px;
}

/* ── UTILITY ── */
.hide-mobile { }
.show-mobile-only { display: none; }

/* ── CURRENCIES MARQUEE ── */
.marquee-section {
  padding: 60px 0;
  overflow: hidden;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--muted);
  flex-shrink: 0;
}

.marquee-item span { color: var(--mint); margin-right: 16px; }

/* ── MIC DROP ── */
.mic-drop {
  padding: 200px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mic-drop::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(0,229,176,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.mic-drop .headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 10vw, 140px);
  line-height: 0.9;
  letter-spacing: -2px;
  margin-bottom: 32px;
}

.mic-drop .headline em {
  font-style: normal;
  color: var(--mint);
  display: block;
}

.mic-drop .sub {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--muted);
  margin-bottom: 56px;
}

/* ── FOOTER ── */
footer {
  padding: 60px;
  border-top: 1px solid var(--card-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 3px;
}

.footer-logo span { color: var(--mint); }

footer p {
  font-size: 13px;
  color: var(--muted);
}

footer nav {
  position: static;
  background: none;
  padding: 0;
}

footer nav ul {
  gap: 24px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── MOBILE STICKY BOTTOM BAR ── */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 20px;
  padding-bottom: max(12px, env(safe-area-inset-bottom, 12px));
  background: rgba(6,11,31,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--card-border);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.mobile-bottom-bar.visible {
  transform: translateY(0);
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-eyebrow, .hero h1, .hero-sub, .hero-ctas, .scroll-hint { opacity: 1; animation: none; }
  .scroll-line { animation: none; }
}

/* ── RESPONSIVE: TABLET (768px–1024px) ── */
@media (max-width: 1024px) {
  nav { padding: 20px 40px; }
  .hero { padding: 120px 40px 80px; }
  .match-section { padding: 120px 40px; }
  .stories { padding: 40px 40px 120px; }
  .stories-grid { grid-template-columns: repeat(3, 1fr); }
  .comparison { padding: 120px 40px; }
  .timeline-section { padding: 120px 40px; }
  .how { padding: 120px 40px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .mic-drop { padding: 120px 40px; }
  footer { padding: 40px; }
}

/* ── RESPONSIVE: MOBILE (<768px) ── */
@media (max-width: 767px) {
  nav { padding: 16px 20px; }
  .hero { padding: 100px 20px 80px; min-height: auto; padding-bottom: 120px; }
  .hero-sub { font-size: 16px; }
  /* hero CTAs hidden on mobile via .hide-mobile — sticky bottom bar takes over */
  .match-section { padding: 80px 20px; }
  .stats-band { padding: 48px 20px; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat-num { font-size: 48px; }
  .stories { padding: 40px 20px 80px; }
  .stories-grid { grid-template-columns: 1fr; }
  .hide-mobile { display: none; }
  .show-mobile-only { display: inline-block; }
  .social-proof { padding: 32px 20px; }
  .proof-inner { gap: 24px; }
  .story-card { padding: 32px 24px; }
  .timeline-section { padding: 80px 20px; }
  .timeline::before { left: 60px; }
  .tl-time { width: 60px; font-size: 15px; }
  .comparison { padding: 80px 20px; }
  .comp-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .comp-table { min-width: 520px; font-size: 13px; }
  .comp-table th { padding: 12px 16px; font-size: 10px; }
  .comp-table td { padding: 14px 16px; }
  .how { padding: 80px 20px; }
  .how h2 { margin-bottom: 48px; }
  .steps { grid-template-columns: 1fr; gap: 48px; }
  .mic-drop { padding: 100px 20px; }
  .mic-drop .sub { font-size: 18px; }
  footer { padding: 32px 20px; flex-direction: column; gap: 20px; text-align: center; }
  footer nav { position: static; background: none; padding: 0; }
  footer nav ul { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }
  .mobile-bottom-bar { display: flex; gap: 12px; }
  .marquee-item { font-size: 16px; }
  .scroll-hint { display: none; }
}

/* ── MOBILE NAV ── */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-toggle:hover { background: rgba(255,255,255,0.08); }

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  position: relative;
  transition: background 0.2s;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.2s;
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(6px); }

.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: rotate(45deg); }
.nav-toggle.open span::after { transform: rotate(-45deg); }

@media (max-width: 767px) {
  .nav-toggle { display: flex; }

  nav ul {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    background: rgba(6,11,31,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  nav ul.open {
    display: flex;
    opacity: 1;
    pointer-events: auto;
  }
  nav ul a {
    font-size: 18px;
    letter-spacing: 2px;
  }
  nav ul .nav-cta {
    font-size: 16px;
    padding: 14px 40px;
  }
}

/* ── INSTALL MODAL ── */
.install-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0);
  transition: background 0.3s, backdrop-filter 0.3s;
  padding: 20px;
}
.install-overlay.visible {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
}
.install-modal {
  position: relative;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px 32px;
  max-width: 420px;
  width: 100%;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}
.install-overlay.visible .install-modal {
  transform: translateY(0);
  opacity: 1;
}
.install-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.install-modal-close:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}
.install-modal h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 16px;
}
.install-modal p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 12px;
}
.install-modal ol {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 16px 0;
}
.install-modal ol li {
  counter-increment: step;
  position: relative;
  padding-left: 36px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--white);
}
.install-modal ol li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--electric);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.install-note {
  font-size: 13px;
  color: rgba(248, 247, 242, 0.35);
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── CSP-safe utility classes (replacing inline styles) ── */
.hero-cash-em { font-style: italic; color: var(--mint); }
.section-label-center { text-align: center; margin-bottom: 64px; }
.mic-drop-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.mic-drop-cta-btn { font-size: 17px; padding: 20px 56px; }
.mobile-bottom-login { flex: 1; text-align: center; padding: 14px 0; font-size: 14px; }
.mobile-bottom-install { flex: 1; text-align: center; padding: 14px 0; font-size: 14px; }
.install-divider { margin: 20px 0; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 16px; }
.install-link { color: var(--mint); font-weight: 500; }
