/* ==========================================================================
   DashDashBoom Marketing — Production CSS
   Complete rewrite — game show broadcast energy
   ========================================================================== */

/* ---------- Custom Properties ---------- */
:root {
  --color-bg: #050505;
  --color-bg-elevated: #0a0a0a;
  --color-surface: rgba(255, 255, 255, 0.04);
  --color-border: rgba(255, 255, 255, 0.1);
  --color-border-hover: rgba(255, 255, 255, 0.18);
  --color-text: #f5f5f5;
  --color-text-muted: rgba(255, 255, 255, 0.55);
  --color-text-dim: rgba(255, 255, 255, 0.35);
  --color-yellow: #FFD000;
  --color-yellow-dim: rgba(255, 208, 0, 0.15);
  --color-cyan: #00D4FF;
  --color-pink: #FF3B9A;
  --color-green: #00E676;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --header-h: 72px;
  --section-pad: clamp(48px, 6vw, 80px);
  --max-w: 1440px;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

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

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }

/* ---------- Focus ---------- */
:focus-visible {
  outline: 2px solid var(--color-yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Skip Link ---------- */
.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--color-yellow);
  color: #050505;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: top 0.2s;
}

.skip-link:focus {
  top: 16px;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.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;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

/* Desktop Nav */
.nav-links {
  display: none;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  transition: color var(--transition-base), background var(--transition-base);
}

.nav-links a:hover {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.06);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-app-store {
  height: 44px;
  width: auto;
  display: none;
  transition: opacity var(--transition-base);
}

.header-app-store:hover {
  opacity: 0.85;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-base);
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  top: var(--header-h);
  z-index: 999;
  background: rgba(5, 5, 5, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.3s, transform 0.3s;
}

.mobile-nav[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  padding: 16px 0;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition-base);
}

.mobile-nav a:hover {
  color: var(--color-yellow);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 32px);
  padding-bottom: var(--section-pad);
  overflow: hidden;
}

/* Animated gradient mesh */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 208, 0, 0.09) 0%, transparent 70%);
  animation: meshFloat1 18s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
  animation: meshFloat2 22s ease-in-out infinite;
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 59, 154, 0.04) 0%, transparent 70%);
  animation: meshFloat3 15s ease-in-out infinite;
  pointer-events: none;
}

@keyframes meshFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(5%, 8%) scale(1.05); }
  66% { transform: translate(-3%, -5%) scale(0.97); }
}

@keyframes meshFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-6%, -4%) scale(1.03); }
  66% { transform: translate(4%, 6%) scale(0.98); }
}

@keyframes meshFloat3 {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
  50% { transform: translateX(-48%) scale(1.1); opacity: 0.6; }
}

.hero > .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.hero-content {
  text-align: center;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 10px;
  background: var(--color-yellow-dim);
  border: 1px solid rgba(255, 208, 0, 0.25);
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 24px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.75rem, 5.8vw, 4.35rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: var(--color-yellow);
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--color-text-muted);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.hero-sub strong {
  color: var(--color-text);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.store-badges {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

.store-badge-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-app-store {
  height: 48px;
  width: auto;
  transition: transform 0.4s var(--ease-spring), opacity var(--transition-base);
}

.hero-app-store:hover {
  transform: scale(1.04);
  opacity: 0.92;
}

.google-play-wrapper {
  opacity: 0.4;
  cursor: default;
  display: flex;
  align-items: center;
}

.hero-google-play {
  height: 48px;
  width: auto;
  filter: grayscale(0.3);
}

.badge-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.4;
}

.badge-label-dim {
  opacity: 0.5;
}

/* ==========================================================================
   iPhone Mockup
   ========================================================================== */
/* Screenshots row — 3 phones side by side */
.screenshots-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
  perspective: 1200px;
}

.screenshots-row .iphone-mockup:first-child {
  transform: rotateY(8deg) scale(0.92);
  opacity: 0.85;
}

.screenshots-row .iphone-mockup:nth-child(2) {
  transform: translateY(-12px) scale(1.02);
  z-index: 2;
}

.screenshots-row .iphone-mockup:last-child {
  transform: rotateY(-8deg) scale(0.92);
  opacity: 0.85;
}

.iphone-mockup {
  position: relative;
  width: 220px;
  flex-shrink: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.iphone-mockup:hover {
  transform: scale(1.04) !important;
  opacity: 1 !important;
}

.iphone-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 393 / 852;
  background: #1a1a1a;
  border-radius: 44px;
  border: 2px solid #333;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 30px 80px -20px rgba(0, 0, 0, 0.7),
    0 0 120px -40px rgba(255, 208, 0, 0.1);
  overflow: hidden;
  padding: 4px;
}

/* Side buttons */
.iphone-frame::before {
  content: '';
  position: absolute;
  top: 120px;
  left: -3px;
  width: 3px;
  height: 28px;
  background: #333;
  border-radius: 2px 0 0 2px;
  box-shadow: 0 36px 0 #333, 0 72px 0 #333;
}

.iphone-frame::after {
  content: '';
  position: absolute;
  top: 155px;
  right: -3px;
  width: 3px;
  height: 48px;
  background: #333;
  border-radius: 0 2px 2px 0;
}

/* Dynamic Island */
.iphone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 34px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
}

/* Screen content area */
.iphone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
  border-radius: 42px;
  overflow: hidden;
}

.iphone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* Game header */
.phone-game-header {
  padding: 48px 16px 10px;
  text-align: center;
}

.phone-game-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 6px;
}

.phone-game-status .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-green);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.phone-timer {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

/* Target card */
.phone-target-card {
  margin: 6px 12px;
  padding: 14px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
}

.phone-target-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 5px;
}

.phone-target-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.phone-target-timer-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 6px;
}

.phone-target-timer-fill {
  width: 68%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-yellow), var(--color-cyan));
  border-radius: 4px;
  animation: timerPulse 3s ease-in-out infinite;
}

@keyframes timerPulse {
  0%, 100% { width: 68%; }
  50% { width: 58%; }
}

.phone-target-hint {
  font-size: 0.55rem;
  color: var(--color-text-dim);
}

/* Leaderboard */
.phone-leaderboard {
  margin: 6px 12px;
  padding: 10px 12px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.phone-lb-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.phone-lb-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}

.phone-lb-row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.phone-lb-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-lb-rank {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.5rem;
}

.phone-lb-rank.gold { background: var(--color-yellow); color: #050505; }
.phone-lb-rank.silver { background: rgba(255, 255, 255, 0.15); color: var(--color-text); }
.phone-lb-rank.bronze { background: rgba(255, 255, 255, 0.08); color: var(--color-text-muted); }

.phone-lb-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.65rem;
  color: var(--color-text);
}

.phone-lb-score {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.65rem;
  color: var(--color-yellow);
}

/* Voice indicator */
.phone-voice-bar {
  margin: auto 12px 16px;
  padding: 10px 14px;
  background: rgba(255, 208, 0, 0.08);
  border: 1px solid rgba(255, 208, 0, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.phone-voice-waves {
  display: flex;
  align-items: center;
  gap: 2px;
}

.phone-voice-waves span {
  display: block;
  width: 3px;
  border-radius: 3px;
  background: var(--color-yellow);
  animation: voiceWave 1.2s ease-in-out infinite;
}

.phone-voice-waves span:nth-child(1) { height: 8px; animation-delay: 0s; }
.phone-voice-waves span:nth-child(2) { height: 14px; animation-delay: 0.1s; }
.phone-voice-waves span:nth-child(3) { height: 10px; animation-delay: 0.2s; }
.phone-voice-waves span:nth-child(4) { height: 16px; animation-delay: 0.3s; }
.phone-voice-waves span:nth-child(5) { height: 8px; animation-delay: 0.4s; }

@keyframes voiceWave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}

.phone-voice-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.55rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-yellow);
}

/* ==========================================================================
   Social Proof Bar
   ========================================================================== */
.social-proof {
  padding: 28px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.social-proof-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.social-proof-stars {
  display: flex;
  gap: 4px;
}

.social-proof-stars svg {
  width: 22px;
  height: 22px;
  fill: var(--color-yellow);
}

.social-proof-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Section Shared
   ========================================================================== */
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 56px;
}

.section-header-center {
  text-align: center;
}

.section-header-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   How It Works
   ========================================================================== */
.how-it-works {
  padding: var(--section-pad) 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.step-card {
  position: relative;
  padding: 32px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.step-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-3px);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--color-yellow);
  color: #050505;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.step-icon {
  font-size: 2.25rem;
  margin-bottom: 12px;
  line-height: 1;
}

.step-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.step-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   Features
   ========================================================================== */
.features {
  padding: var(--section-pad) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

.feature-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 40px -12px rgba(0, 0, 0, 0.4);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1;
  display: block;
}

.feature-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.feature-desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials {
  padding: var(--section-pad) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.testimonial-card {
  padding: 28px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--color-yellow);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.testimonial-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--color-text-dim);
}

/* ==========================================================================
   Hear Your Host
   ========================================================================== */
/* Hero right column — screenshots + hosts box */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero hosts compact box — glass card under screenshots */
.hero-hosts-box {
  margin-top: 24px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  text-align: center;
  width: 100%;
}

/* Social proof in hero */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.hero-social-proof .social-proof-stars {
  display: flex;
  gap: 4px;
}

.hero-social-proof .social-proof-stars svg {
  width: 18px;
  height: 18px;
}

.hero-social-proof .social-proof-text {
  font-size: 0.85rem;
  color: var(--color-text-dim);
  font-weight: 500;
}

.hero-hosts-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-yellow);
  margin-bottom: 4px;
}

.hero-hosts-subtitle {
  font-size: 0.75rem;
  color: var(--color-text-dim);
  margin-bottom: 16px;
}

.hero-hosts-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Individual host pill button */
.hero-host-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: var(--color-text);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  font-family: var(--font-body);
}

.hero-host-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Color-coded hover per personality */
.hero-host-btn[data-color="yellow"]:hover { border-color: var(--color-yellow); }
.hero-host-btn[data-color="cyan"]:hover { border-color: var(--color-cyan); }
.hero-host-btn[data-color="pink"]:hover { border-color: var(--color-pink); }

.hero-host-emoji {
  font-size: 1.3rem;
  line-height: 1;
}

.hero-host-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--color-yellow);
}

.hero-host-btn .pause-icon,
.hero-host-btn .audio-waves {
  display: none;
}

.hero-host-btn.playing .play-icon { display: none; }
.hero-host-btn.playing .hero-host-emoji { display: none; }
.hero-host-btn.playing .pause-icon { display: block; }

.hero-host-btn.playing .audio-waves {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 16px;
}

.hero-host-btn .audio-waves span {
  display: block;
  width: 3px;
  border-radius: 2px;
  animation: audioWave 0.8s ease-in-out infinite alternate;
}

/* Colored audio waves per personality */
.wave-yellow span { background: var(--color-yellow); }
.wave-cyan span { background: var(--color-cyan); }
.wave-pink span { background: var(--color-pink); }

.hero-host-btn .audio-waves span:nth-child(1) { height: 5px; animation-delay: 0s; }
.hero-host-btn .audio-waves span:nth-child(2) { height: 12px; animation-delay: 0.15s; }
.hero-host-btn .audio-waves span:nth-child(3) { height: 8px; animation-delay: 0.3s; }

@keyframes audioWave {
  from { transform: scaleY(0.4); }
  to { transform: scaleY(1); }
}

.hero-host-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.hero-host-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.2;
}

.hero-host-desc {
  font-size: 0.7rem;
  color: var(--color-text-dim);
  line-height: 1.3;
}

/* Mobile: stack pills */
@media (max-width: 639px) {
  .hero-hosts-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-host-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}


/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  padding: var(--section-pad) 0;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.faq-item[open] {
  border-color: var(--color-border-hover);
}

.faq-item summary {
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  transition: color var(--transition-base);
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }

.faq-item summary:hover {
  color: var(--color-yellow);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-text-muted);
  transition: transform 0.3s;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
  padding: var(--section-pad) 0;
}

.cta-card {
  position: relative;
  text-align: center;
  padding: 48px 32px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 208, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-card h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  position: relative;
}

.cta-card p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
  position: relative;
}

.cta-app-store {
  height: 66px;
  width: auto;
  margin: 0 auto;
  position: relative;
  transition: transform 0.4s var(--ease-spring);
}

.cta-app-store:hover {
  transform: scale(1.04);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--color-border);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-tagline {
  color: var(--color-text-dim);
  font-size: 0.9rem;
}

.footer-app-store {
  height: 50px;
  width: auto;
  transition: opacity var(--transition-base);
}

.footer-app-store:hover {
  opacity: 0.85;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}

.footer-col h4,
.footer-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: color var(--transition-base);
}

.footer-col a:hover {
  color: var(--color-text);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  transition: color var(--transition-base), border-color var(--transition-base), background var(--transition-base);
}

.footer-social a:hover {
  color: var(--color-text);
  border-color: var(--color-border-hover);
  background: rgba(255, 255, 255, 0.06);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--color-text-dim);
}

.footer-bottom a {
  color: var(--color-text-muted);
  transition: color var(--transition-base);
}

.footer-bottom a:hover {
  color: var(--color-text);
}

/* ==========================================================================
   Scroll Reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }
.reveal-d6 { transition-delay: 0.48s; }

/* ==========================================================================
   Divider
   ========================================================================== */
.section-divider {
  border: none;
  height: 1px;
  background: var(--color-border);
  margin: 0;
}

/* ==========================================================================
   Legal / Content Pages (shared across privacy, terms, support)
   ========================================================================== */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 0 80px;
}

@media (min-width: 768px) {
  .legal-content {
    padding: 80px 0 120px;
  }
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.legal-date {
  color: var(--color-text-dim);
  font-size: 0.9rem;
  margin-bottom: 48px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--color-yellow);
}

.legal-content p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  color: var(--color-text-muted);
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal-content strong {
  color: var(--color-text);
}

.legal-content a {
  color: var(--color-yellow);
}

/* Support page */
.support-hero {
  text-align: center;
  padding: 80px 0 40px;
}

@media (min-width: 768px) {
  .support-hero {
    padding: 100px 0 60px;
  }
}

.support-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.support-hero p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

.support-section {
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.contact-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.contact-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-card p {
  color: var(--color-text-muted);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.contact-card a {
  color: var(--color-yellow);
  font-size: 1.125rem;
  font-weight: 600;
}

.contact-card .response-time {
  font-size: 0.85rem;
  color: var(--color-text-dim);
  margin-top: 12px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Mobile: hide side phones, show only center */
.screenshots-row .iphone-mockup:first-child,
.screenshots-row .iphone-mockup:last-child {
  display: none;
}

/* 640px+ */
@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .screenshots-row .iphone-mockup {
    width: 200px;
  }

  .screenshots-row .iphone-mockup:first-child,
  .screenshots-row .iphone-mockup:last-child {
    display: flex;
  }

  .header-app-store {
    display: block;
  }

  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* 768px+ */
@media (min-width: 768px) {
  .hero > .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 56px;
  }

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

  .hero-sub {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-actions {
    align-items: flex-start;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 1024px+ */
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }

  .hamburger {
    display: none;
  }

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

  .screenshots-row .iphone-mockup {
    width: 260px;
  }
}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
