/* ============================================
   AudioLaunch Landing Page — style.css
   Dark space theme: Bonestell + Tron aesthetic
   ============================================ */

/* --- CSS Custom Properties — matched to app theme (theme/ScreenTheme.ts) --- */
:root {
  --bg-primary: #0B1426;
  --bg-secondary: #0F1A2E;
  --bg-card: rgba(15, 26, 46, 0.6);
  --bg-glass: rgba(255, 107, 53, 0.05);
  --border-glass: rgba(255, 255, 255, 0.10);

  /* Brand primary = app primary (orange) */
  --primary: #FF6B35;
  --primary-dim: rgba(255, 107, 53, 0.3);
  --primary-glow: rgba(255, 107, 53, 0.18);

  /* Secondary stays amber (app secondary) */
  --secondary: #FFB74D;
  --secondary-dim: rgba(255, 183, 77, 0.3);

  /* Wave-accent (cyan) — RESERVED for audio-flow moments only */
  --accent-wave: #00D9FF;
  --accent-wave-dim: rgba(0, 217, 255, 0.3);

  /* Pillar colors — match app's Three Pillars */
  --pillar-charm: #FF6B9D;
  --pillar-mastery: #42A5F5;
  --pillar-inspiration: #FFA726;

  /* Signature gradient — only for audio-flow CTAs / dividers */
  --gradient-wave: linear-gradient(90deg, #FF6B35 0%, #00D9FF 100%);

  /* Legacy purple kept for cross-project /about audiolab.tools card */
  --purple: #B388FF;
  --purple-dim: rgba(179, 136, 255, 0.3);

  --text-primary: #E8EAF0;
  --text-secondary: #8892A4;
  --text-dim: #556177;

  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.3s 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%;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* v96 audit-pass 2026-07-08: enable tabular figures site-wide so prices,
     specs, and BPM/kHz numbers land in tidy columns instead of the wobbly
     proportional widths Inter ships by default. Non-numeric text is
     unaffected. */
  font-variant-numeric: tabular-nums;
}

/* v96 audit-pass 2026-07-08: fixed grain overlay.
   Sections were flat plates of navy — subtle SVG-noise texture at 3.5%
   opacity breaks the digital sterility without touching layout, colors,
   or interactivity. Fixed so it doesn't scroll (parallax feel), pointer
   events off so it never intercepts clicks, z-index 1 so it sits above
   backgrounds but below content (page uses navbar z=1000, sticky z=200). */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}
@media (prefers-reduced-motion: reduce) {
  body::before { opacity: 0.02; }
}

/* v96 audit-pass 2026-07-08: balance display headings so no orphaned word
   sits alone on the last line. Supported in Chrome/Edge/Safari 17.5+;
   older browsers ignore gracefully (no polyfill needed). */
h1, h2, .rd-section-title, .rd-hero-headline, .rdb-hero-title, .cta-title {
  text-wrap: balance;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--secondary); }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--primary); }

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(11, 20, 38, 0.97);
  box-shadow: 0 1px 0 var(--border-glass);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
}

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

.logo-icon {
  color: var(--primary);
  font-size: 1.4rem;
  filter: drop-shadow(0 0 8px var(--primary-dim));
}
img.logo-icon {
  height: 30px;
  width: auto;
  display: block;
}

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

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

.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
  background: var(--primary);
  color: var(--bg-primary) !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  box-shadow: 0 0 20px var(--primary-dim);
}

/* Language switcher (i18n) — EN/NL/DE/FR, shared additive */
.nav-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid var(--border-glass, rgba(255, 255, 255, 0.12));
}

.nav-lang a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 2px 6px;
  border-radius: 6px;
  color: var(--text-dim, var(--text-secondary));
  text-transform: uppercase;
}

.nav-lang a:hover { color: var(--text-primary); }

.nav-lang a[aria-current="page"] {
  color: var(--primary);
  background: var(--primary-dim, rgba(38, 198, 218, 0.14));
}

.nav-signin {
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 600 !important;
  border: 1px solid var(--primary-dim);
  color: var(--primary) !important;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav-signin:hover {
  background: rgba(255, 107, 53, 0.08);
  box-shadow: 0 0 15px var(--primary-dim);
  color: var(--primary) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 60%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 10%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 40%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 80%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 15% 85%, rgba(255, 107, 53,0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 85% 15%, rgba(255,183,77,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 75%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 65% 55%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 35%, rgba(255,255,255,0.6) 0%, transparent 100%);
  animation: twinkle 8s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.nebula {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(179, 136, 255, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(255, 183, 77, 0.04) 0%, transparent 50%);
}

.grid-floor {
  position: absolute;
  bottom: 0;
  left: -50%;
  right: -50%;
  height: 40%;
  background:
    linear-gradient(to top, rgba(255, 107, 53, 0.06) 0%, transparent 100%),
    repeating-linear-gradient(90deg, rgba(255, 107, 53, 0.04) 0px, transparent 1px, transparent 60px),
    repeating-linear-gradient(0deg, rgba(255, 107, 53, 0.04) 0px, transparent 1px, transparent 60px);
  transform: perspective(500px) rotateX(45deg);
  transform-origin: center bottom;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-pre {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--secondary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
}

.title-line { display: block; }
.title-line.accent {
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.store-badge { display: inline-block; transition: transform var(--transition), filter var(--transition); }
.store-badge:hover { transform: translateY(-2px); filter: brightness(1.1); }
.badge-svg { width: 160px; height: auto; }

/* Phone Mockup */
.hero-mockup {
  display: flex;
  justify-content: center;
}

.phone-frame {
  position: relative;
  width: 280px;
  height: 560px;
  background: linear-gradient(145deg, #1a2540, #0d1829);
  border-radius: 40px;
  padding: 12px;
  border: 2px solid var(--border-glass);
  box-shadow:
    0 0 40px rgba(255, 107, 53, 0.1),
    0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-glow {
  position: absolute;
  inset: -20px;
  border-radius: 60px;
  background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
  z-index: -1;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* --- Phone Screen Carousel --- */
.phone-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
}

.phone-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
}

.phone-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* Slide header bar */
.slide-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 0 4px;
}

.slide-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #66BB6A;
  box-shadow: 0 0 6px rgba(102, 187, 106, 0.5);
}

.slide-header-title {
  font-family: var(--font-display);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Slide label at bottom */
.slide-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--primary);
  letter-spacing: 1.5px;
  margin-top: 16px;
  opacity: 0.8;
}

.slide-sublabel {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
}

/* Carousel dots indicator */
.carousel-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: auto;
  padding-top: 12px;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: background 0.3s, transform 0.3s;
}

.carousel-dot.active {
  background: var(--primary);
  transform: scale(1.3);
  box-shadow: 0 0 8px var(--primary-dim);
}

/* ── SLIDE 1: Recording Studio ── */
.rec-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 100px;
  width: 100%;
  margin-bottom: 12px;
}

.rec-bar {
  width: 5px;
  border-radius: 3px;
  background: linear-gradient(to top, var(--primary), var(--secondary));
  animation: rec-pulse 1.8s ease-in-out infinite;
}

@keyframes rec-pulse {
  0%, 100% { transform: scaleY(1); opacity: 0.9; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

.rec-bar:nth-child(odd) { animation-delay: 0.15s; }
.rec-bar:nth-child(3n) { animation-delay: 0.4s; }
.rec-bar:nth-child(5n) { animation-delay: 0.6s; }

.rec-controls {
  display: flex;
  gap: 16px;
  align-items: center;
}

.rec-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rec-glow 2s ease-in-out infinite;
}

.rec-btn-inner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #EF5350;
  box-shadow: 0 0 12px rgba(239, 83, 80, 0.6);
  animation: rec-blink 1.2s ease-in-out infinite;
}

@keyframes rec-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes rec-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(255, 107, 53,0); }
  50% { box-shadow: 0 0 15px rgba(255, 107, 53,0.3); }
}

.rec-timer {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 2px;
}

/* ── SLIDE 2: Synth Lab ── */
.synth-panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.synth-row {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.synth-knob {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #2a3a5c, #141e33);
  border: 2px solid rgba(255,255,255,0.1);
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
}

.synth-knob::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  width: 2px;
  height: 12px;
  background: var(--primary);
  border-radius: 1px;
  transform-origin: bottom center;
  animation: knob-turn 4s ease-in-out infinite;
}

.synth-knob:nth-child(2)::after { animation-delay: 0.5s; }
.synth-knob:nth-child(3)::after { animation-delay: 1s; }
.synth-knob:nth-child(4)::after { animation-delay: 1.5s; }

@keyframes knob-turn {
  0% { transform: translateX(-50%) rotate(-60deg); }
  50% { transform: translateX(-50%) rotate(60deg); }
  100% { transform: translateX(-50%) rotate(-60deg); }
}

.synth-knob-label {
  font-size: 0.5rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.synth-keys {
  display: flex;
  gap: 2px;
  justify-content: center;
  margin-top: 4px;
}

.synth-key {
  width: 18px;
  height: 48px;
  background: linear-gradient(to bottom, #e8e8e8, #ccc);
  border-radius: 0 0 3px 3px;
  border: 1px solid rgba(0,0,0,0.15);
  transition: background 0.15s;
}

.synth-key.black {
  width: 12px;
  height: 30px;
  background: linear-gradient(to bottom, #2a2a2a, #1a1a1a);
  margin: 0 -6px;
  z-index: 1;
  border-radius: 0 0 2px 2px;
}

.synth-key.pressed {
  background: linear-gradient(to bottom, var(--primary), #26C6DA);
  animation: key-press 3s ease-in-out infinite;
}

@keyframes key-press {
  0%, 100% { background: linear-gradient(to bottom, #e8e8e8, #ccc); }
  15%, 25% { background: linear-gradient(to bottom, var(--primary), #26C6DA); }
}

.synth-key.pressed:nth-child(5) { animation-delay: 0.8s; }
.synth-key.pressed:nth-child(8) { animation-delay: 1.6s; }
.synth-key.pressed:nth-child(11) { animation-delay: 2.4s; }

/* ── SLIDE 3: Signal Network (Skill Tree) ── */
.tree-viz {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 8px;
}

.tree-node {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.tree-node.core {
  width: 28px;
  height: 28px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  box-shadow: 0 0 16px var(--primary-dim);
}

.tree-node.branch {
  width: 18px;
  height: 18px;
  background: rgba(255, 107, 53,0.3);
  border: 1px solid var(--primary-dim);
  animation: node-appear 0.5s ease-out both;
}

.tree-node.locked {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

.tree-line {
  position: absolute;
  background: rgba(255, 107, 53,0.2);
  width: 2px;
  transform-origin: top center;
}

.tree-pulse {
  animation: tree-glow 3s ease-in-out infinite;
}

@keyframes tree-glow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; box-shadow: 0 0 10px var(--primary-dim); }
}

@keyframes node-appear {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ── SLIDE 4: Mixer ── */
.mixer-channels {
  display: flex;
  gap: 8px;
  justify-content: center;
  width: 100%;
}

.mixer-channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 36px;
}

.mixer-label {
  font-size: 0.5rem;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

.mixer-meter {
  width: 8px;
  height: 80px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.mixer-meter-fill {
  position: absolute;
  bottom: 0;
  width: 100%;
  border-radius: 4px;
  background: linear-gradient(to top, #66BB6A, #FFB74D, #EF5350);
  animation: meter-bounce 2s ease-in-out infinite;
}

.mixer-meter-fill:nth-child(1) { animation-delay: 0s; }

@keyframes meter-bounce {
  0%, 100% { height: 40%; }
  25% { height: 75%; }
  50% { height: 55%; }
  75% { height: 85%; }
}

.mixer-fader-track {
  width: 4px;
  height: 60px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  position: relative;
}

.mixer-fader-thumb {
  position: absolute;
  width: 16px;
  height: 8px;
  background: linear-gradient(to bottom, #ddd, #999);
  border-radius: 2px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 1px 4px rgba(0,0,0,0.4);
  animation: fader-move 3s ease-in-out infinite;
}

@keyframes fader-move {
  0%, 100% { top: 30%; }
  50% { top: 55%; }
}

.mixer-channel:nth-child(2) .mixer-meter-fill { animation-delay: 0.3s; }
.mixer-channel:nth-child(2) .mixer-fader-thumb { animation-delay: 0.5s; }
.mixer-channel:nth-child(3) .mixer-meter-fill { animation-delay: 0.6s; }
.mixer-channel:nth-child(3) .mixer-fader-thumb { animation-delay: 1s; }
.mixer-channel:nth-child(4) .mixer-meter-fill { animation-delay: 0.9s; }
.mixer-channel:nth-child(4) .mixer-fader-thumb { animation-delay: 1.5s; }
.mixer-channel:nth-child(5) .mixer-meter-fill { animation-delay: 0.2s; }
.mixer-channel:nth-child(5) .mixer-fader-thumb { animation-delay: 0.7s; }

/* ── SLIDE 5: NPC Encounter ── */
.encounter-viz {
  text-align: center;
}

.encounter-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, #FFB74D, #FF8A65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 0 20px rgba(255,183,77,0.3);
  animation: encounter-float 3s ease-in-out infinite;
}

@keyframes encounter-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.encounter-name {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: #FFB74D;
  margin-bottom: 4px;
}

.encounter-role {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}

.encounter-dialogue {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  line-height: 1.4;
  padding: 10px 12px;
  background: rgba(255,183,77,0.06);
  border: 1px solid rgba(255,183,77,0.12);
  border-radius: 8px;
  max-width: 200px;
  margin: 0 auto;
}

.encounter-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 600;
  background: rgba(255,183,77,0.15);
  color: #FFB74D;
  border: 1px solid rgba(255,183,77,0.25);
  animation: btn-glow 2s ease-in-out infinite;
}

@keyframes btn-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(255,183,77,0); }
  50% { box-shadow: 0 0 12px rgba(255,183,77,0.3); }
}

/* Legacy fallback */
.mockup-placeholder {
  text-align: center;
  padding: 20px;
}

.mockup-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 120px;
  margin-bottom: 24px;
}

.wave-bar {
  width: 8px;
  height: var(--h, 50%);
  background: linear-gradient(to top, var(--primary), var(--secondary));
  border-radius: 4px;
  animation: rec-pulse 1.5s ease-in-out infinite;
  animation-delay: calc(var(--h, 50%) * 0.01s);
}

.wave-bar:nth-child(odd) { animation-delay: 0.2s; }
.wave-bar:nth-child(3n) { animation-delay: 0.5s; }

.mockup-label {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: 2px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bob 2s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Section Shared Styles --- */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--secondary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* --- Features Section --- */
.features {
  padding: 120px 0;
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  backdrop-filter: blur(10px);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.3);
}

/* --- Feature Card Artwork (full-bleed top, replaces SVG icon) --- */
.feature-card--art {
  padding-top: 0;
  overflow: hidden;
}

.feature-art {
  display: block;
  position: relative;
  width: calc(100% + 56px);
  margin: 0 -28px 24px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.10), transparent 70%), var(--bg-secondary);
  border-bottom: 1px solid var(--border-glass);
}

.feature-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition);
}

.feature-card--art:hover .feature-art img {
  transform: scale(1.04);
}

/* Subtle bottom gradient for legibility against varied artwork */
.feature-art::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(to bottom, transparent, rgba(11, 20, 38, 0.55));
  pointer-events: none;
}

/* Color-tinted glow variants */
.feature-art--amber {
  background: radial-gradient(ellipse at center, rgba(255, 183, 77, 0.10), transparent 70%), var(--bg-secondary);
}

.feature-art--purple {
  background: radial-gradient(ellipse at center, rgba(179, 136, 255, 0.10), transparent 70%), var(--bg-secondary);
}

@media (max-width: 540px) {
  .feature-art {
    aspect-ratio: 4 / 3;
  }
}

.feature-icon {
  width: 64px;
  height: 64px;
  color: var(--primary);
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px var(--primary-dim));
}

.feature-icon.icon-amber {
  color: var(--secondary);
  filter: drop-shadow(0 0 10px var(--secondary-dim));
}

.feature-icon.icon-purple {
  color: var(--purple);
  filter: drop-shadow(0 0 10px var(--purple-dim));
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.feature-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- Screenshots Section --- */
.screenshots {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
}

.screenshots::before,
.screenshots::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
}

.screenshots::before { top: 0; }
.screenshots::after { bottom: 0; }

.carousel-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 20px 0;
}

.carousel-track::-webkit-scrollbar { display: none; }

.carousel-slide {
  flex: 0 0 260px;
  scroll-snap-align: center;
  transition: transform var(--transition), opacity var(--transition);
}

.screenshot-placeholder {
  width: 260px;
  height: 460px;
  background: linear-gradient(145deg, #111D33, #0B1426);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.screenshot-content {
  width: 100%;
  padding: 40px 24px;
  text-align: center;
}

.ss-header {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--primary);
  letter-spacing: 2px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.ss-waveform-mini {
  height: 40px;
  margin: 0 auto 20px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary) 0px, var(--primary) 3px,
    transparent 3px, transparent 7px
  );
  opacity: 0.4;
  border-radius: 4px;
}

.ss-waveform-large {
  height: 80px;
  margin: 0 auto 30px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary) 0px, var(--primary) 3px,
    transparent 3px, transparent 6px
  );
  opacity: 0.5;
  border-radius: 4px;
}

.ss-buttons { display: flex; gap: 12px; justify-content: center; }
.ss-btn { width: 50px; height: 50px; border-radius: 50%; background: rgba(255, 107, 53, 0.15); border: 1px solid var(--border-glass); }
.ss-btn.accent { background: rgba(255, 107, 53, 0.3); border-color: var(--primary); }

.ss-record-btn {
  width: 60px; height: 60px; border-radius: 50%;
  background: #FF1744;
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(255, 23, 68, 0.3);
}

.ss-knobs { display: flex; gap: 16px; justify-content: center; margin-bottom: 30px; }
.ss-knob {
  width: 40px; height: 40px; border-radius: 50%;
  background: conic-gradient(from 180deg, var(--primary) 0%, transparent 70%);
  border: 2px solid var(--border-glass);
}

.ss-keys {
  height: 50px;
  background: repeating-linear-gradient(
    90deg,
    #fff 0px, #fff 14px,
    #333 14px, #333 16px
  );
  border-radius: 0 0 4px 4px;
  opacity: 0.15;
}

.ss-tree { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center; }
.ss-node { width: 28px; height: 28px; border-radius: 50%; background: var(--primary-dim); border: 2px solid var(--primary); }
.ss-node.core { width: 40px; height: 40px; background: var(--primary); border-radius: 8px; }
.ss-branch { width: 60px; height: 2px; background: var(--primary-dim); }

.ss-mission-list { display: flex; flex-direction: column; gap: 12px; }
.ss-mission {
  height: 48px;
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
}

.slide-caption {
  text-align: center;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  background: rgba(255, 107, 53, 0.15);
  border-color: var(--primary);
}

.carousel-prev { left: -20px; }
.carousel-next { right: -20px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-dim);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}

.carousel-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* --- Testimonials Section --- */
.testimonials {
  padding: 120px 0;
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: transform var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

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

.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--bg-primary);
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
}

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

/* --- Download CTA Section --- */
.download-cta {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.download-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255, 107, 53, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(255, 183, 77, 0.04) 0%, transparent 60%);
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 20px;
}

.cta-description {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Signup Form --- */
.hero-signup, .cta-signup { width: 100%; max-width: 480px; }
.cta-signup { margin: 0 auto; }

.signup-row {
  display: flex;
  gap: 8px;
  width: 100%;
}

.signup-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.signup-btn-full {
  width: 100%;
  margin-top: 10px;
}

.signup-login-link {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 12px;
  text-align: center;
}
.signup-login-link a {
  color: var(--primary);
  text-decoration: none;
}
.signup-login-link a:hover {
  text-decoration: underline;
}

.signup-input {
  flex: 1;
  padding: 14px 18px;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition);
}
.signup-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-dim);
}
.signup-input::placeholder {
  color: var(--text-dim);
}

.signup-btn {
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: #0B1426;
  background: var(--primary);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition);
}
.signup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--primary-dim);
}
.signup-btn:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

.signup-hint {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 10px 0 0;
  text-align: center;
}

.signup-success {
  text-align: center;
  animation: fadeIn 0.4s ease;
}
.signup-welcome {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}
.signup-downloads {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.store-badge-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: #fff;
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid var(--primary);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.store-badge-link:hover {
  background: rgba(255, 107, 53, 0.25);
  transform: translateY(-2px);
}
.store-badge-soon {
  opacity: 0.5;
  border-color: var(--text-dim);
  pointer-events: none;
}
.store-icon { font-size: 0.9rem; }
.signup-check-email {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 8px;
}

.signup-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 14px;
  width: 100%;
}
.signup-divider::before,
.signup-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-glass);
}
.signup-divider span {
  font-size: 0.8rem;
  color: var(--text-dim);
  white-space: nowrap;
}

.sso-buttons {
  display: flex;
  gap: 10px;
  width: 100%;
  flex-wrap: wrap;
}
.sso-btn {
  flex: 1;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.sso-btn:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}
.sso-btn svg {
  flex-shrink: 0;
}
.sso-google:hover { border-color: #4285F4; }
.sso-discord:hover { border-color: #5865F2; }
.sso-spotify:hover { border-color: #1DB954; }
.sso-apple:hover { border-color: #fff; }

@media (max-width: 600px) {
  .sso-buttons { flex-wrap: wrap; }
  .sso-btn { flex: 1 1 calc(50% - 5px); min-width: calc(50% - 5px); }
}

.signup-error {
  font-size: 0.85rem;
  color: #EF5350;
  margin-top: 10px;
  text-align: center;
}

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

@media (max-width: 600px) {
  .signup-row { flex-direction: column; }
  .signup-btn { width: 100%; }
}

/* --- Footer --- */
.footer {
  padding: 80px 0 32px;
  border-top: 1px solid var(--border-glass);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 280px;
}

.footer-links-group h4,
.footer-links-group .footer-heading {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-links-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-group a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 107, 53, 0.08);
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* --- Scroll Animations --- */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-description { margin: 0 auto 36px; }
  .hero-badges { justify-content: center; }

  .phone-frame { width: 240px; height: 480px; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 20, 38, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border-glass);
  }

  .nav-toggle { display: flex; }

  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .carousel-btn { display: none; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .badge-svg { width: 140px; }
  .phone-frame { width: 200px; height: 400px; }
  .carousel-slide { flex: 0 0 220px; }
  .screenshot-placeholder { width: 220px; height: 380px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* --- Legal Pages Shared --- */
.legal-page {
  padding: 120px 0 80px;
  min-height: 100vh;
}

.legal-page .container {
  max-width: 800px;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 8px;
}

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

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--primary);
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-page p,
.legal-page li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-page ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-page a {
  color: var(--primary);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.legal-back:hover { color: var(--primary); }

/* --- Persona Cards (collapsible) --- */
.persona-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}
.persona-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 107, 53, 0.3);
}
.persona-card[open] {
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.4);
}
.persona-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.persona-summary::-webkit-details-marker { display: none; }
.persona-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--primary);
  filter: drop-shadow(0 0 8px var(--primary-dim));
}
.persona-icon.icon-amber { color: var(--secondary); filter: drop-shadow(0 0 8px var(--secondary-dim)); }
.persona-icon.icon-purple { color: var(--purple); filter: drop-shadow(0 0 8px var(--purple-dim)); }
.persona-summary-text {
  flex: 1;
  min-width: 0;
}
.persona-title {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.persona-teaser {
  color: var(--text-secondary);
  font-size: 0.8rem;
  opacity: 0.7;
}
.persona-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.5;
  transition: transform var(--transition);
}
.persona-card[open] .persona-chevron {
  transform: rotate(180deg);
}
.persona-body {
  padding: 0 24px 24px 80px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
  animation: persona-reveal 0.3s ease;
}
@keyframes persona-reveal {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 720px) {
  .persona-body { padding: 0 24px 24px 24px; }
}

/* --- Origin Section --- */
.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.origin-portrait {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  background: rgba(255, 107, 53, 0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.origin-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.origin-portrait-fallback {
  width: 60%;
  opacity: 0.4;
}
.origin-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
}
.origin-text p.origin-footnote {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  margin-bottom: 0;
}

/* Founder bio card — "meet the person behind it" inside the Origin section.
   Deliberately distinct from the Founder's Edition product (/founders.html),
   which is the €139 pre-launch offer. This block is about Nathan as the
   founder, not about the paid tier. */
.origin-founder {
  margin: 1.5rem 0 1.25rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--al-primary, #FF6B35);
  background: rgba(255, 107, 53, 0.05);
  border-radius: 4px;
}
.origin-founder .origin-founder-name {
  font-family: 'Orbitron', 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.15rem;
  letter-spacing: 0.02em;
}
.origin-founder .origin-founder-role {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.origin-founder p:last-child {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0;
}
.origin-founder strong {
  color: var(--al-primary, #FF6B35);
  font-weight: 600;
}

@media (max-width: 720px) {
  .origin-grid { grid-template-columns: 1fr; gap: 28px; }
  .origin-founder { padding: 1rem 1.15rem; margin: 1.25rem 0 1rem; }
}

/* --- Positioning ("Why") Cards --- */
.why-card .why-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
  margin: 0 0 10px 0;
}
.why-card .why-label.them-cyan { color: var(--primary); }
.why-card .why-label.them-amber { color: var(--secondary); }
.why-card .why-label.them-purple { color: var(--purple); }
.why-card .why-claim {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin: 0 0 18px 0;
  line-height: 1.4;
}
.why-card .why-answer {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}
.why-grid {
  grid-template-columns: repeat(2, 1fr) !important;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .why-grid { grid-template-columns: 1fr !important; }
}

/* --- Empty Testimonials (CTA placeholders) --- */
.testimonial-card.testimonial-empty {
  border-style: dashed;
  border-color: rgba(255, 107, 53, 0.25);
  background: rgba(255, 107, 53, 0.03);
}
.testimonial-card.testimonial-empty:hover {
  border-color: rgba(255, 107, 53, 0.5);
  background: rgba(255, 107, 53, 0.06);
}
.testimonial-stars.is-empty {
  color: rgba(255, 255, 255, 0.2);
}
.author-avatar.is-empty {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.35);
  border: 1px dashed rgba(255, 255, 255, 0.2);
}
.testimonial-cta {
  display: inline-block;
  margin: 14px 0 18px 0;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 999px;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.testimonial-cta:hover {
  background: rgba(255, 107, 53, 0.15);
  border-color: var(--primary);
  transform: translateY(-1px);
}

/* ============================================
   LAUNCH LIST — passive email capture
   Used on index.html between hero and first
   content section, and anchor-linked from the
   footer via #waitlist.
   ============================================ */
.launch-list {
  padding: 72px 0;
  position: relative;
  scroll-margin-top: 80px;
}
.launch-list-inner {
  max-width: 580px;
  margin: 0 auto;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
}
.launch-list .section-label { margin-bottom: 8px; }
.launch-list-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.launch-list-sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
}
.launch-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.launch-row {
  display: flex;
  gap: 8px;
}
.launch-input {
  flex: 1;
  padding: 13px 16px;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.24);
  color: var(--text-primary);
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.launch-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.18);
}
.launch-submit {
  padding: 13px 22px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--primary);
  color: #08242A;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.launch-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 107, 53, 0.3);
}
.launch-submit:disabled { opacity: 0.5; cursor: wait; transform: none; }
.launch-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.launch-consent input { margin-top: 3px; accent-color: var(--primary); flex-shrink: 0; }
.launch-consent a { color: var(--primary); }
.launch-status {
  min-height: 20px;
  font-size: 0.85rem;
  text-align: center;
  margin-top: 4px;
}
.launch-status.is-ok { color: #5afa8f; }
.launch-status.is-error { color: #ff6b6b; }
.launch-list-meta {
  margin-top: 14px;
  font-size: 0.75rem;
  color: var(--text-dim);
}
.launch-list-meta a { color: var(--text-secondary); }
.launch-list-meta a:hover { color: var(--primary); }
@media (max-width: 520px) {
  .launch-list { padding: 48px 0; }
  .launch-list-inner { padding: 24px 20px; }
  .launch-row { flex-direction: column; }
  .launch-submit { width: 100%; }
}

/* ============================================
   Inside the app — seven screens, one universe
   ============================================ */
.inside-the-app {
  position: relative;
  padding: 120px 0 96px;
  background: linear-gradient(
    180deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 50%,
    var(--bg-primary) 100%
  );
  overflow: hidden;
  scroll-margin-top: 80px;
}
.inside-the-app::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  width: 720px;
  height: 720px;
  background: radial-gradient(
    circle at center,
    rgba(255, 107, 53, 0.10) 0%,
    rgba(255, 107, 53, 0.04) 32%,
    transparent 72%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}
.inside-the-app .container { position: relative; z-index: 1; }
.inside-header { margin-bottom: 48px; }

.inside-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(240px, 280px) 1fr;
  align-items: center;
  justify-items: center;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 560px;
}
.inside-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 640px;
  height: 640px;
  margin: -320px 0 0 -320px;
  border: 1px dashed rgba(255, 107, 53, 0.20);
  border-radius: 50%;
  animation: inside-ring-spin 90s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.inside-ring::after {
  content: "";
  position: absolute;
  inset: 80px;
  border: 1px dashed rgba(179, 136, 255, 0.16);
  border-radius: 50%;
}
@keyframes inside-ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.inside-phone {
  position: relative;
  width: 260px;
  aspect-ratio: 9 / 19.5;
  background: linear-gradient(145deg, #1A2540 0%, #0B1426 100%);
  border-radius: 36px;
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255, 107, 53, 0.25),
    0 0 48px rgba(255, 107, 53, 0.22),
    0 30px 60px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  z-index: 3;
}
.inside-phone-notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 14px;
  background: #000;
  border-radius: 0 0 10px 10px;
  z-index: 2;
}
.inside-phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 26px;
  overflow: hidden;
}
.inside-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  will-change: opacity;
}
/* First slide is the static default — always visible as a floor so the
   phone never goes black in environments that can't tick animations. */
.inside-slide:first-child { opacity: 1; }
/* The full 7-slide cycle layers on top of the static first slide. Slides
   2–7 use offset delays; slide 1 re-plays in sync to keep the loop
   seamless in animating browsers. */
.inside-slide { animation: inside-slide-cycle 28s infinite; animation-delay: calc(var(--i) * 4s); }
@keyframes inside-slide-cycle {
  0%, 12% { opacity: 1; transform: scale(1); }
  14% { opacity: 0; transform: scale(1); }
  98% { opacity: 0; transform: scale(1.02); }
  100% { opacity: 1; transform: scale(1); }
}
.inside-phone-badge {
  position: absolute;
  left: 50%;
  bottom: -46px;
  transform: translateX(-50%);
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(15, 26, 46, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-glass);
  border-radius: 999px;
  white-space: nowrap;
  z-index: 4;
}

.inside-peek {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  z-index: 2;
}
.inside-peek img { width: 100%; height: auto; display: block; }
.inside-peek figcaption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 4px 10px;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(11, 20, 38, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-glass);
  border-radius: 999px;
}
.inside-peek--left {
  justify-self: end;
  transform: rotate(-4deg) translateX(14px);
}
.inside-peek--right {
  justify-self: start;
  transform: rotate(4deg) translateX(-14px);
}

.inside-thumbs {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin: 88px auto 0;
  max-width: 880px;
  padding: 0;
  list-style: none;
}
.inside-thumbs li { margin: 0; }
.inside-thumbs figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.inside-thumbs figure:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 53, 0.45);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}
.inside-thumbs img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  display: block;
}
.inside-thumbs figcaption {
  padding: 8px 4px;
  font-size: 0.68rem;
  text-align: center;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.inside-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.inside-btn-primary,
.inside-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--transition);
}
.inside-btn-primary {
  background: var(--primary);
  color: #0B1426;
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}
.inside-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255, 107, 53, 0.55);
  color: #0B1426;
}
.inside-btn-ghost {
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid var(--border-glass);
}
.inside-btn-ghost:hover {
  color: var(--primary);
  border-color: var(--primary);
}

/* Entry animation — elements are visible by default (opacity:1 from base
   rules), the animation only adds a subtle slide-up. This keeps the
   section fully readable even if the animation timeline doesn't tick
   (headless renderers, screenshot bots, old reduced-motion). */
@keyframes inside-rise {
  from { transform: translateY(28px); }
  to { transform: translateY(0); }
}
@keyframes inside-rise-left {
  from { transform: rotate(-4deg) translate(34px, 24px); }
  to { transform: rotate(-4deg) translateX(14px); }
}
@keyframes inside-rise-right {
  from { transform: rotate(4deg) translate(-34px, 24px); }
  to { transform: rotate(4deg) translateX(-14px); }
}
.inside-stage .inside-phone {
  animation: inside-rise 0.9s ease 0.1s both;
}
.inside-stage .inside-peek--left {
  animation: inside-rise-left 0.9s ease 0.35s both;
}
.inside-stage .inside-peek--right {
  animation: inside-rise-right 0.9s ease 0.55s both;
}
.inside-thumbs li {
  animation: inside-rise 0.7s ease both;
}
.inside-thumbs li:nth-child(1) { animation-delay: 0.75s; }
.inside-thumbs li:nth-child(2) { animation-delay: 0.83s; }
.inside-thumbs li:nth-child(3) { animation-delay: 0.91s; }
.inside-thumbs li:nth-child(4) { animation-delay: 0.99s; }
.inside-thumbs li:nth-child(5) { animation-delay: 1.07s; }
.inside-thumbs li:nth-child(6) { animation-delay: 1.15s; }
.inside-thumbs li:nth-child(7) { animation-delay: 1.23s; }
.inside-cta {
  animation: inside-rise 0.8s ease 1.35s both;
}

@media (max-width: 900px) {
  .inside-stage {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: 0;
  }
  .inside-peek { max-width: 280px; }
  .inside-peek--left,
  .inside-peek--right,
  .inside-the-app.is-revealed .inside-peek--left,
  .inside-the-app.is-revealed .inside-peek--right {
    transform: none;
    justify-self: center;
  }
  .inside-ring { display: none; }
  .inside-thumbs {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 560px;
  }
  .inside-thumbs li:nth-child(n+8) { display: none; }
}
@media (max-width: 520px) {
  .inside-the-app { padding: 80px 0 64px; }
  .inside-phone { width: 220px; }
  .inside-thumbs { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .inside-thumbs figcaption { font-size: 0.6rem; padding: 6px 2px; }
  .inside-cta { flex-direction: column; width: 100%; }
  .inside-btn-primary, .inside-btn-ghost { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .inside-ring { animation: none; }
  .inside-slide { animation: none; opacity: 0; }
  .inside-slide:first-child { opacity: 1; }
  .inside-stage .inside-phone,
  .inside-thumbs li,
  .inside-cta {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .inside-stage .inside-peek--left { animation: none; opacity: 1; transform: rotate(-4deg) translateX(14px); }
  .inside-stage .inside-peek--right { animation: none; opacity: 1; transform: rotate(4deg) translateX(-14px); }
}

/* ====================================================================
   FUNNEL BLOCKS — trust-strip, founder-push, pricing, faq-band, dual-cta
   ==================================================================== */

/* --- Trust strip (just below hero) --- */
.trust-strip {
  padding: 28px 0 32px;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  background: linear-gradient(180deg, rgba(255, 107, 53, 0.02), rgba(11, 20, 38, 0.4));
  position: relative;
  z-index: 2;
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.trust-items li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}
.trust-items svg {
  color: var(--primary);
  opacity: 0.7;
  flex-shrink: 0;
}
.trust-pulse {
  padding: 5px 12px;
  border: 1px solid rgba(255, 183, 77, 0.35);
  background: rgba(255, 183, 77, 0.06);
  border-radius: 999px;
  color: var(--text-primary) !important;
}
.trust-pulse strong { color: var(--secondary); }
.trust-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 8px var(--secondary);
  animation: trust-pulse-pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes trust-pulse-pulse {
  0%, 100% { opacity: 0.45; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* --- Founder push (between waitlist & for-you) --- */
.founder-push {
  padding: 80px 0;
  position: relative;
}
.founder-card {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 40px 44px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 215, 0, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, rgba(26, 35, 50, 0.85), rgba(15, 26, 46, 0.75));
  border: 1px solid rgba(255, 215, 0, 0.28);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  text-align: center;
  overflow: hidden;
}
.founder-card-glow {
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.18), transparent 30%, transparent 70%, rgba(255, 184, 77, 0.18));
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}
.founder-card > * { position: relative; z-index: 1; }
.founder-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 184, 77, 0.06));
  color: #FFE66B;
  border: 1px solid rgba(255, 215, 0, 0.32);
}
.founder-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFD700;
  box-shadow: 0 0 8px #FFD700;
  animation: trust-pulse-pulse 2.2s ease-in-out infinite;
}
.founder-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  margin: 20px 0 10px;
  color: var(--text-primary);
}
.founder-title-gold {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFE66B 60%, #FFB84D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.founder-lede {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.founder-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0 auto 8px;
  flex-wrap: wrap;
  max-width: 600px;
}
.founder-price {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}
.founder-price-currency {
  font-size: 1.6rem;
  color: #FFE66B;
  align-self: flex-start;
  margin-top: 8px;
}
.founder-price-amount {
  font-size: 4.5rem;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFE66B 60%, #FFB84D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.founder-price-meta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-family: var(--font-body);
  text-align: left;
  margin-left: 8px;
}
.founder-anchor {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: left;
  max-width: 240px;
  margin: 0;
}
.founder-anchor strong { color: var(--text-primary); }
.founder-perks {
  list-style: none;
  margin: 32px 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  text-align: left;
}
.founder-perks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 215, 0, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.12);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.founder-perks li svg {
  color: #FFE66B;
  flex-shrink: 0;
  margin-top: 2px;
}
.founder-perks li strong { color: var(--text-primary); font-weight: 600; }
.founder-cta {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #FFD700, #FFB84D);
  color: #0B1426;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(255, 184, 77, 0.25), 0 0 0 1px rgba(255, 215, 0, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.founder-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 184, 77, 0.35), 0 0 0 1px rgba(255, 215, 0, 0.6);
}
.founder-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
  margin-top: 24px;
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
.founder-trust-sep { color: var(--text-dim); opacity: 0.5; }

@media (max-width: 720px) {
  .founder-card { padding: 36px 24px 32px; }
  .founder-perks { grid-template-columns: 1fr; }
  .founder-price-row { flex-direction: column; gap: 14px; }
  .founder-anchor { text-align: center; max-width: 320px; }
  .founder-price-meta { text-align: center; margin-left: 0; }
}

/* --- Pricing comparison --- */
.pricing {
  padding: 120px 0;
  position: relative;
}
.pricing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 32px 24px 28px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.08);
}
.pricing-card--featured {
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow: 0 0 0 1px rgba(255, 107, 53, 0.15), 0 12px 40px rgba(255, 107, 53, 0.08);
}
.pricing-card--gold {
  border-color: rgba(255, 215, 0, 0.4);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 215, 0, 0.08), transparent 60%),
    var(--bg-card);
}
.pricing-card--gold:hover {
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 12px 40px rgba(255, 184, 77, 0.12);
}
.pricing-card--studio {
  border-color: rgba(179, 136, 255, 0.25);
}
.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--primary);
  color: #0B1426;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-badge-gold {
  background: linear-gradient(135deg, #FFD700, #FFB84D);
  color: #0B1426;
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.pricing-card--featured .pricing-tier { color: var(--primary); }
.pricing-card--gold .pricing-tier { color: #FFE66B; }
.pricing-card--studio .pricing-tier { color: var(--purple); }
.pricing-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.pricing-currency { font-size: 1.2rem; color: var(--text-secondary); align-self: flex-start; margin-top: 4px; }
.pricing-period {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dim);
  margin-left: 4px;
  font-family: var(--font-body);
}
.pricing-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  min-height: 2.6em;
  line-height: 1.4;
}
.pricing-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}
.pricing-feats li {
  position: relative;
  padding-left: 22px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 10px;
}
.pricing-feats li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 8px;
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(-45deg);
  opacity: 0.8;
}
.pricing-card--gold .pricing-feats li::before { border-color: #FFE66B; }
.pricing-card--studio .pricing-feats li::before { border-color: var(--purple); }
.pricing-cta {
  display: block;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-radius: 8px;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.pricing-cta-ghost {
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.02);
}
.pricing-cta-ghost:hover {
  border-color: var(--primary);
  background: rgba(255, 107, 53, 0.06);
}
.pricing-cta-primary {
  color: #0B1426;
  background: var(--primary);
  border: 1px solid var(--primary);
}
.pricing-cta-primary:hover {
  transform: translateY(-1px);
  background: #67E0F1;
}
.pricing-cta-gold {
  color: #0B1426;
  background: linear-gradient(135deg, #FFD700, #FFB84D);
  border: 1px solid rgba(255, 215, 0, 0.5);
  box-shadow: 0 4px 16px rgba(255, 184, 77, 0.18);
}
.pricing-cta-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 184, 77, 0.28);
}
.pricing-foot {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 32px;
  letter-spacing: 0.02em;
}

@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 14px; }
  .pricing { padding: 80px 0; }
}

/* --- FAQ band (before download) --- */
.faq-band {
  padding: 100px 0;
  position: relative;
}
.faq-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
}
.faq-band-grid {
  max-width: 900px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}
.faq-band-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  transition: border-color var(--transition);
}
.faq-band-card[open] { border-color: rgba(255, 107, 53, 0.3); }
.faq-band-card summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.01em;
}
.faq-band-card summary::-webkit-details-marker { display: none; }
.faq-band-card summary::before {
  content: '+';
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.3rem;
  width: 18px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  text-align: center;
}
.faq-band-card[open] summary::before { content: '−'; }
.faq-band-card summary:hover { color: var(--primary); }
.faq-band-body {
  margin: 10px 0 4px 28px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
}
.faq-band-body p { margin: 0; }
.faq-band-body a { color: var(--primary); }
.faq-band-more {
  text-align: center;
  margin-top: 32px;
}
.faq-band-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.faq-band-link:hover {
  color: var(--primary);
  border-color: var(--primary);
}

@media (max-width: 760px) {
  .faq-band-grid { grid-template-columns: 1fr; gap: 12px; }
  .faq-band { padding: 72px 0; }
}

/* --- Dual-path download CTA --- */
.download-cta--dual .cta-content { max-width: 720px; }
.cta-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 16px;
}
.cta-dual-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  background: rgba(15, 26, 46, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-primary);
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
  text-align: left;
}
.cta-dual-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.1);
}
.cta-dual-btn > div { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.cta-dual-pre {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cta-dual-main {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
.cta-dual-btn--primary {
  background: rgba(255, 107, 53, 0.06);
  border-color: rgba(255, 107, 53, 0.3);
}
.cta-dual-btn--primary:hover {
  border-color: var(--primary);
  background: rgba(255, 107, 53, 0.06);
}
.cta-dual-btn--secondary {
  background: rgba(255, 183, 77, 0.06);
  border-color: rgba(255, 183, 77, 0.22);
  color: var(--secondary);
}
.cta-dual-btn--secondary svg { color: var(--secondary); }
.cta-dual-btn--secondary .cta-dual-main { color: var(--text-primary); }
.cta-dual-btn--secondary:hover {
  border-color: var(--secondary);
  background: rgba(255, 183, 77, 0.06);
}
.cta-fine {
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--text-dim);
  text-align: center;
}
.cta-fine a {
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.cta-fine a:hover { color: var(--primary); border-color: var(--primary); }

@media (max-width: 560px) {
  .cta-dual { grid-template-columns: 1fr; }
}

/* --- Web Beta badge variant for hero --- */
.store-badge--web .badge-svg { opacity: 0.95; }
.store-badge--web:hover .badge-svg { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .trust-pulse-dot,
  .founder-eyebrow-dot { animation: none; }
}

/* ====================================================================
   STICKY MOBILE CTA — bottom-bar conversion anchor (mobile only)
   ==================================================================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: none; /* desktop: hidden */
  gap: 10px;
  padding: 10px 12px;
  padding-bottom: max(10px, env(safe-area-inset-bottom, 10px));
  background: rgba(11, 20, 38, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 107, 53, 0.18);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
  transform: translateY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sticky-cta.sticky-cta--hidden {
  transform: translateY(110%);
  pointer-events: none;
}
.sticky-cta-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  min-height: 48px;
  transition: transform 0.15s ease;
}
.sticky-cta-btn:active { transform: scale(0.98); }
.sticky-cta-btn--primary {
  background: var(--primary);
  color: #0B1426;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}
.sticky-cta-btn--gold {
  background: linear-gradient(135deg, #FFD700, #FFB84D);
  color: #0B1426;
  box-shadow: 0 4px 12px rgba(255, 184, 77, 0.25);
}
@media (max-width: 760px) {
  .sticky-cta { display: flex; }
  /* Reserve bottom space so footer content isn't covered when scrolled to end */
  body { padding-bottom: 76px; }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-cta { transition: none; }
}

/* ====================================================================
   HERO PHONE — Real-screenshot carousel (replaces CSS mockup slides)
   ==================================================================== */
.phone-carousel--real .phone-slide--image {
  padding: 0;
  background: var(--bg-primary);
  overflow: hidden;
}
.phone-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  /* subtle screen-glow blends the screenshot into the device frame */
  filter: saturate(1.05) contrast(1.02);
}
.phone-slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 38px;
  padding: 0 14px;
  text-align: center;
  pointer-events: none;
  z-index: 2;
}
.phone-slide-caption .slide-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin: 0 0 2px;
  text-shadow: 0 2px 12px rgba(11, 20, 38, 0.85), 0 0 4px rgba(11, 20, 38, 0.95);
}
.phone-slide-caption .slide-sublabel {
  font-size: 0.7rem;
  color: var(--text-secondary);
  margin: 0;
  text-shadow: 0 2px 10px rgba(11, 20, 38, 0.85);
}
/* Soft gradient under the caption so text reads on any screenshot */
.phone-slide--image::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 20, 38, 0.45) 60%, rgba(11, 20, 38, 0.78) 100%);
  pointer-events: none;
  z-index: 1;
}
/* Keep dots above the gradient */
.phone-carousel--real .carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 3;
}

/* =========================================================================
   PRE-LAUNCH STATE — catch-landing window 2026-05-12 → 2026-06-01
   On 2026-06-01 flip body[data-launch-state="pre"] to "live" everywhere to
   reveal the original hero + store badges + download CTAs again. The whole
   pre-launch overlay is one search-replace away from being switched off.
   ========================================================================= */

/* Hide post-launch UI while we're in catch mode */
body[data-launch-state="pre"] .hero-badges,
body[data-launch-state="pre"] .cta-badges,
body[data-launch-state="pre"] .hero-assembly,
body[data-launch-state="pre"] .post-launch-only {
  display: none !important;
}

/* account.html: hide the legacy auth/dashboard surface during catch window.
   The .pre-launch-only main above carries the lockdown placeholder. */
body.account-page[data-launch-state="pre"] .account-main:not(.pre-launch-only),
body.account-page[data-launch-state="pre"] .auth-container,
body.account-page[data-launch-state="pre"] .dashboard {
  display: none !important;
}

/* Reveal pre-launch UI only when the body state matches */
.pre-launch-only { display: none; }
body[data-launch-state="pre"] .pre-launch-only { display: revert; }
body[data-launch-state="live"] .pre-launch-only { display: none !important; }

/* ───── Catch-landing hero (replaces #heroAssembly during pre-launch) ───── */
.catch-landing-hero {
  position: relative;
  min-height: calc(100vh - 80px);
  padding: 96px 24px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 50% 8%, rgba(255, 184, 77, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 55% 40% at 50% 100%, rgba(255, 107, 53, 0.10) 0%, transparent 65%),
    var(--al-background, #0B1426);
}
.catch-landing-hero .container {
  max-width: 640px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.catch-rocket {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.catch-rocket-logo {
  width: 96px;
  height: 96px;
  filter: drop-shadow(0 0 36px rgba(255, 184, 77, 0.42));
  animation: catch-rocket-bob 4.5s ease-in-out infinite;
}
.catch-rocket-trail {
  position: absolute;
  left: 50%;
  bottom: -36px;
  width: 4px;
  height: 64px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255, 184, 77, 0.7) 0%, rgba(255, 107, 53, 0) 100%);
  border-radius: 2px;
  filter: blur(2px);
  opacity: 0.65;
  animation: catch-rocket-trail 4.5s ease-in-out infinite;
}
@keyframes catch-rocket-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes catch-rocket-trail {
  0%, 100% { opacity: 0.45; transform: translateX(-50%) scaleY(0.85); }
  50% { opacity: 0.85; transform: translateX(-50%) scaleY(1.15); }
}
@media (prefers-reduced-motion: reduce) {
  .catch-rocket-logo,
  .catch-rocket-trail { animation: none; }
}

.catch-eyebrow {
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  letter-spacing: 0.35em;
  color: #FFB84D;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.catch-headline {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(34px, 6vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin: 0 0 18px;
}
.catch-subline {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: rgba(232, 234, 237, 0.78);
  max-width: 520px;
  margin: 0 auto 36px;
}

.catch-form {
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}
.catch-form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
.catch-form input[type="email"] {
  flex: 1;
  padding: 15px 18px;
  font-size: 16px;
  font-family: inherit;
  color: inherit;
  background: rgba(15, 26, 46, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.catch-form input[type="email"]:focus {
  outline: none;
  border-color: #FFB84D;
  box-shadow: 0 0 0 3px rgba(255, 184, 77, 0.18);
}
.catch-form-submit {
  padding: 15px 22px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #0B1426;
  background: linear-gradient(135deg, #FF6B35 0%, #FFB84D 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(255, 184, 77, 0.28);
  transition: transform 0.15s ease, box-shadow 0.18s ease, opacity 0.15s ease;
}
.catch-form-submit:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 184, 77, 0.38);
}
.catch-form-submit:disabled {
  opacity: 0.55;
  cursor: wait;
  transform: none;
}
.catch-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(232, 234, 237, 0.7);
}
.catch-consent input {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: #FFB84D;
}
.catch-consent a {
  color: #FFB84D;
  text-decoration: underline;
}
.catch-status {
  margin-top: 12px;
  min-height: 20px;
  font-size: 14px;
  text-align: center;
}
.catch-status.is-error { color: #FF8A6B; }
.catch-status.is-ok { color: #5AFA8F; }

.catch-footnote {
  margin: 28px auto 0;
  font-size: 12px;
  color: rgba(232, 234, 237, 0.45);
  letter-spacing: 0.02em;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 520px) {
  .catch-landing-hero { padding: 72px 16px 48px; min-height: calc(100vh - 64px); }
  .catch-rocket { width: 96px; height: 96px; margin-bottom: 24px; }
  .catch-rocket-logo { width: 72px; height: 72px; }
  .catch-form-row { flex-direction: column; gap: 12px; }
  .catch-form-submit { width: 100%; }
}

/* ============================================
   Discord OAuth buttons (waitlist forms)
   Used by both #catch-waitlist-form and #hp-waitlist-form
   ============================================ */
.catch-discord-btn,
.launch-discord-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto 12px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  background: #5865F2;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(88, 101, 242, 0.28);
  transition: transform 0.15s ease, box-shadow 0.18s ease, background 0.15s ease;
}

.catch-discord-btn:hover,
.launch-discord-btn:hover {
  background: #4752C4;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(88, 101, 242, 0.38);
  color: #fff;
}

.catch-discord-btn svg,
.launch-discord-btn svg {
  flex-shrink: 0;
}

.catch-discord-btn em,
.launch-discord-btn em {
  font-style: normal;
  font-weight: 500;
  opacity: 0.82;
  letter-spacing: 0.02em;
}

.catch-or,
.launch-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto 14px;
  max-width: 480px;
}

.catch-or::before,
.catch-or::after,
.launch-or::before,
.launch-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.catch-or span,
.launch-or span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 234, 237, 0.4);
  white-space: nowrap;
}

@media (max-width: 520px) {
  .catch-discord-btn,
  .launch-discord-btn { padding: 13px 18px; font-size: 14px; }
  .catch-discord-btn em,
  .launch-discord-btn em { display: none; }
}
