/* ═══════════════════════════════════════════════════════════════════════
   OPULENT BOTS — ZEUS AI LANDING PAGE
   Design: Dark theme with neon lime green accents
   Fonts: Montserrat (headings) + Lato (body)
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  --black: #000000;
  --dark: #0a0a0a;
  --dark-surface: #111111;
  --dark-card: #161616;
  --dark-border: #222222;
  --glow: #c1ff72;
  --glow-dim: rgba(193, 255, 114, 0.15);
  --glow-bright: rgba(193, 255, 114, 0.4);
  --navy: #001233;
  --blue: #188bf6;
  --white: #ffffff;
  --gray: #8a8e9a;
  --light-gray: #d3d7e0;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Lato', sans-serif;

  /* Spacing scale (8px base) */
  --sp-xs:   8px;
  --sp-sm:   16px;
  --sp-md:   24px;
  --sp-base: 32px;
  --sp-lg:   48px;
  --sp-xl:   64px;
  --sp-2xl:  96px;
  --sp-3xl:  128px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  margin: 0;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  line-height: 1.6;
}

/* ═══════════ TYPOGRAPHY ═══════════ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.text-glow {
  color: var(--glow);
  text-shadow: 0 0 20px var(--glow-dim);
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-top: 0;
  margin-bottom: var(--sp-md);
}

.section-subtitle {
  font-size: 1.35rem;
  color: var(--light-gray);
  font-weight: 300;
  line-height: 1.6;
  margin-top: var(--sp-sm);
  margin-bottom: var(--sp-lg);
}

/* ═══════════ HEADER ═══════════ */

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  overflow: hidden;
  height: 50px;
}

.logo:hover { color: var(--white); }

.logo-img {
  height: 180px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px var(--glow-dim));
  mix-blend-mode: lighten;
}

.logo-accent {
  color: var(--glow);
}

/* ═══════════ HAMBURGER MENU ═══════════ */

.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
  position: relative;
}

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--glow);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.nav-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.nav-menu-item {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: color 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.nav-overlay.open .nav-menu-item {
  opacity: 1;
  transform: translateY(0);
}
.nav-overlay.open .nav-menu-item:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.open .nav-menu-item:nth-child(2) { transition-delay: 0.2s; }
.nav-overlay.open .nav-menu-item:nth-child(3) { transition-delay: 0.3s; }

.nav-menu-item:hover {
  color: var(--glow);
  transform: translateY(-2px);
  text-shadow: 0 0 30px var(--glow-dim);
}

.nav-menu-item .nav-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 4px;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .nav-menu-item {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }
}

.btn-outline-glow {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--glow);
  color: var(--glow);
  border-radius: 100em;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-outline-glow:hover {
  background: var(--glow);
  color: var(--black);
  box-shadow: 0 0 30px var(--glow-dim);
  transform: translateY(-2px);
}

/* ═══════════ GLOW BUTTON (Primary CTA) ═══════════ */

.btn-glow-pulse {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--black);
  color: var(--glow);
  border: 2px solid var(--glow);
  border-radius: 100em;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
}

.btn-glow-pulse::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 100em;
  border: 2px solid var(--glow);
  opacity: 0;
  animation: pulseOut 2s ease-out infinite;
}

.btn-glow-pulse:hover {
  background: var(--glow);
  color: var(--black);
  box-shadow: 0 0 40px var(--glow-bright), 0 0 80px var(--glow-dim);
  transform: scale(1.05);
}

@keyframes pulseOut {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ═══════════ GLOBAL SECTION SPACING ═══════════ */
/* Gap between sections: Mobile 24px | Desktop 32px (padding-bottom).
   Internal breathing room: Mobile 48px | Desktop 64px (padding-top).
   No stacked margins. No spacer divs. */

section,
#hero,
#form-section,
#pricing-section,
#features-section,
#host-section,
#testimonials-section,
#success-section {
  padding-top: 48px;
  padding-bottom: 24px;
  margin-top: 0;
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  section,
  #hero,
  #form-section,
  #pricing-section,
  #features-section,
  #host-section,
  #testimonials-section,
  #success-section {
    padding-top: 64px;
    padding-bottom: 32px;
  }
}

/* ═══════════ HERO ═══════════ */

#hero {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 180px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(193, 255, 114, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(24, 139, 246, 0.03) 0%, transparent 60%),
    linear-gradient(180deg, var(--black) 0%, #050505 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: var(--sp-base);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--light-gray);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: var(--sp-md);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--glow);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
  50% { opacity: 0.5; transform: translateY(-100px) scale(1); }
}

/* ═══════════ FORM SECTION ═══════════ */

#form-section {
  background: linear-gradient(180deg, #050505 0%, var(--dark) 50%, #050505 100%);
  position: relative;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: var(--sp-md) 0 var(--sp-lg);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: var(--sp-sm) 0;
  font-size: 1.1rem;
  color: var(--light-gray);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list .bullet {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--glow);
  border-radius: 50%;
  margin-top: 0.55rem;
  box-shadow: 0 0 10px var(--glow-dim);
}

/* Stats Row */
.stats-row {
  display: flex;
  gap: var(--sp-md);
  flex-wrap: wrap;
  margin-top: var(--sp-xl);
  padding-top: var(--sp-lg);
  border-top: 1px solid var(--dark-border);
}

.stat-card {
  flex: 1;
  min-width: 100px;
  text-align: center;
  padding: 1.25rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--glow);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

/* Form Card */
.form-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--dark-border);
  box-shadow: 0 0 60px rgba(193, 255, 114, 0.05);
}

.form-header {
  background: var(--glow);
  color: var(--black);
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.form-header p { margin: 0; }

.form-body {
  background: var(--dark-surface);
  padding: 2rem 1.5rem;
  border: 2px solid var(--dark-border);
  border-top: none;
  border-radius: 0 0 16px 16px;
}

.form-body .form-control,
.form-body .form-select {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-body .form-control:focus,
.form-body .form-select:focus {
  border-color: var(--glow);
  box-shadow: 0 0 0 3px var(--glow-dim);
  background: var(--dark-card);
  color: var(--white);
}

.form-body .form-control::placeholder {
  color: var(--gray);
}

.form-body .form-check-input {
  background-color: var(--dark-card);
  border-color: var(--dark-border);
}

.form-body .form-check-input:checked {
  background-color: var(--glow);
  border-color: var(--glow);
}

.form-body .form-check-label {
  color: var(--gray);
}

/* Center the submit button */
#submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
}

.form-body form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.form-body form > button[type="submit"] {
  align-self: center;
}

/* ═══════════ SUCCESS SECTION ═══════════ */

#success-section {
  display: flex;
  align-items: center;
}

.success-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  box-shadow: 0 0 80px rgba(193, 255, 114, 0.05);
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 20px var(--glow-bright));
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* ═══════════ CTA BLOCK — Isolated breathing room ═══════════ */

.cta-block {
  margin-top: var(--sp-xl);
  padding-top: var(--sp-lg);
}

/* ═══════════ FEATURES SECTION ═══════════ */

#features-section {
  background: var(--dark);
}

.feature-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--glow);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(193, 255, 114, 0.08);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--glow);
}

.feature-card p {
  color: var(--gray);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* ═══════════ PRICING SECTION ═══════════ */

#pricing-section {
  background: linear-gradient(180deg, var(--dark) 0%, #050505 50%, var(--dark) 100%);
}

#pricing-section .feature-list li {
  font-size: 1rem;
}

#pricing-section .feature-list li strong {
  color: var(--glow);
}

/* ═══════════ TESTIMONIALS ═══════════ */

#testimonials-section {
  background: linear-gradient(180deg, var(--dark) 0%, #050505 100%);
}

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
}

.testimonial-card .stars {
  color: var(--glow);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: var(--light-gray);
  font-style: italic;
  line-height: 1.7;
  font-size: 0.95rem;
}

.testimonial-author {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--dark-border);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author strong {
  color: var(--white);
  font-family: var(--font-heading);
}

.testimonial-author span {
  color: var(--gray);
  font-size: 0.85rem;
}

/* ═══════════ HOST SECTION ═══════════ */

#host-section {
  background: var(--dark);
}

.host-image-wrapper {
  position: relative;
  display: inline-block;
}

.host-image-placeholder {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--dark-card), var(--dark-surface));
  border: 3px solid var(--glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 0 40px var(--glow-dim);
}

.host-image-placeholder span {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: var(--glow);
}

.host-title {
  color: var(--gray);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

#host-section p {
  color: var(--light-gray);
  line-height: 1.8;
  text-align: center;
}

#host-section .section-title,
#host-section .host-title,
#host-section .text-glow.fs-4 {
  text-align: center;
}

/* ═══════════ LEARN MORE LINK ═══════════ */

.learn-more-link {
  display: block;
  margin-top: 1.25rem;
  color: var(--gray);
  font-size: 0.85rem;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.learn-more-link:hover {
  color: var(--glow);
}

/* ═══════════ MOATS CARD ═══════════ */

.moats-card {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 2.5rem;
}

.moats-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--glow);
  margin-bottom: 0.75rem;
}

.moats-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.moat-item {
  text-align: center;
}

.moat-icon {
  font-size: 2rem;
  color: var(--glow);
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 0 10px var(--glow-dim));
}

.moat-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.moat-item p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

.moats-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--dark-border);
  font-size: 0.8rem;
  color: rgba(138, 142, 154, 0.7);
  text-align: center;
  line-height: 1.6;
}

/* ═══════════ CONSULTATION BUTTON (smaller) ═══════════ */

.btn-consultation {
  font-size: 0.8rem;
  padding: 0.5rem 1.5rem;
  letter-spacing: 0.5px;
}


/* ═══════════ FOOTER ═══════════ */

#footer {
  padding: 3rem 0;
  border-top: 1px solid var(--dark-border);
  background: var(--black);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
}

.footer-logo-img {
  height: 180px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  mix-blend-mode: lighten;
}

/* ═══════════ SCROLL ANIMATIONS ═══════════ */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════ LIVE CALL UI ═══════════ */

.call-ui {
  margin-top: 1.5rem;
  padding: 1.5rem 2rem;
  background: var(--dark-card);
  border: 1px solid var(--glow);
  border-radius: 1rem;
  box-shadow: 0 0 30px var(--glow-dim), inset 0 0 20px rgba(0, 0, 0, 0.5);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.call-status-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.call-pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--glow);
  animation: callPulse 1.5s ease-in-out infinite;
}

.call-pulse.speaking {
  background: #ff4444;
  animation: callPulse 0.6s ease-in-out infinite;
}

@keyframes callPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--glow-bright); }
  50% { opacity: 0.6; box-shadow: 0 0 0 8px transparent; }
}

#call-status-text {
  flex: 1;
  font-size: 0.9rem;
  color: var(--glow);
  font-weight: 600;
}

.call-timer {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  min-width: 50px;
  text-align: right;
}

.call-timer.warning { color: #ff8800; }
.call-timer.critical { color: #ff4444; }

.call-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 40px;
  margin-bottom: 1rem;
}

.wave-bar {
  width: 4px;
  height: 8px;
  background: var(--glow);
  border-radius: 2px;
  opacity: 0.3;
  transition: height 0.1s, opacity 0.1s;
}

.call-ui.active .wave-bar {
  animation: waveAnim 1.2s ease-in-out infinite;
  opacity: 0.8;
}

.call-ui.active .wave-bar:nth-child(1) { animation-delay: 0s; }
.call-ui.active .wave-bar:nth-child(2) { animation-delay: 0.1s; }
.call-ui.active .wave-bar:nth-child(3) { animation-delay: 0.2s; }
.call-ui.active .wave-bar:nth-child(4) { animation-delay: 0.3s; }
.call-ui.active .wave-bar:nth-child(5) { animation-delay: 0.4s; }
.call-ui.active .wave-bar:nth-child(6) { animation-delay: 0.3s; }
.call-ui.active .wave-bar:nth-child(7) { animation-delay: 0.2s; }
.call-ui.active .wave-bar:nth-child(8) { animation-delay: 0.1s; }
.call-ui.active .wave-bar:nth-child(9) { animation-delay: 0s; }

@keyframes waveAnim {
  0%, 100% { height: 8px; }
  50% { height: 32px; }
}

.call-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.call-control-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--dark-border);
  background: var(--dark-surface);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.call-control-btn:hover {
  border-color: var(--glow);
  background: var(--dark-card);
}

.call-control-btn.muted {
  background: #ff4444;
  border-color: #ff4444;
}

.call-control-btn.call-end {
  background: #ff4444;
  border-color: #ff4444;
  width: 56px;
  height: 56px;
}

.call-control-btn.call-end:hover {
  background: #cc0000;
  border-color: #cc0000;
  transform: scale(1.1);
}

/* ═══════════ MIC PERMISSION BANNER ═══════════ */

.mic-help-banner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 136, 0, 0.1);
  border: 1px solid rgba(255, 136, 0, 0.4);
  border-radius: 0.75rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeSlideIn 0.3s ease-out;
  position: relative;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.mic-help-icon {
  flex-shrink: 0;
  color: #ff8800;
  margin-top: 2px;
}

.mic-help-content {
  flex: 1;
  text-align: left;
}

.mic-help-message {
  color: #ff8800;
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0 0 0.5rem;
}

.mic-help-steps {
  color: var(--gray);
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.5;
}

.mic-help-steps strong { color: var(--light-gray); }

.mic-help-close {
  position: absolute;
  top: 6px;
  right: 10px;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.mic-help-close:hover { color: var(--white); }

/* ═══════════ RESPONSIVE ═══════════ */

@media (max-width: 991px) {
  .hero-title { font-size: 2.75rem; }
  .hero-subtitle { font-size: 1.2rem; }
  .section-title { font-size: 2rem; }
  .stats-row { gap: 0.75rem; }
  .stat-card { min-width: 80px; padding: 1rem; }
  .stat-number { font-size: 1.5rem; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 2.25rem; }
  .hero-subtitle { font-size: 1.05rem; }
  .section-title { font-size: 1.75rem; }
  .section-subtitle { font-size: 1.1rem; }
  .btn-glow-pulse { font-size: 0.95rem; padding: 0.85rem 1.75rem; }
  .stats-row { display: grid; grid-template-columns: 1fr 1fr; }
  .host-image-placeholder { width: 200px; height: 200px; }
  .host-image-placeholder span { font-size: 3rem; }
  .footer-logo-img { height: 140px; }

  /* Nav: stack logo above centered Learn More button */
  #header nav {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .logo {
    height: 40px;
  }
  .logo-img {
    height: 140px;
    width: auto;
  }
  .btn-outline-glow {
    font-size: 0.7rem;
    padding: 0.35rem 1rem;
    letter-spacing: 0.5px;
  }


  .moats-card { padding: 1.5rem; }
  .moats-title { font-size: 1.35rem; }
  .moat-item h4 { font-size: 0.9rem; }
  .moat-item p { font-size: 0.85rem; }
  .moats-footer { font-size: 0.75rem; }

}

/* ═══════════ LIGHTNING CANVAS (persistent, behind text) ═══════════ */

.lightning-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Sound Toggle */

.sound-toggle {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 6;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--dark-border);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
}

.sound-toggle:hover {
  border-color: var(--glow);
  color: var(--glow);
}

.sound-toggle.active {
  color: var(--glow);
  border-color: rgba(193, 255, 114, 0.4);
}

.sound-toggle .sound-on  { display: none; }
.sound-toggle .sound-off { display: block; }
.sound-toggle.active .sound-on  { display: block; }
.sound-toggle.active .sound-off { display: none; }

/* Reduced Motion — disable lightning + sound toggle */
@media (prefers-reduced-motion: reduce) {
  .lightning-canvas { display: none !important; }
  .sound-toggle { display: none !important; }
}
