/* ============================================
   SoravaCue — Marketing Site Styles
   ============================================ */

/* --- Custom Properties --- */
:root {
  --bg-primary: #0A0A0A;
  --bg-secondary: #111111;
  --bg-surface: #161616;
  --bg-surface-hover: #1E1E1E;
  --text-primary: #FFFFFF;
  --text-secondary: #AAAAAA;
  --text-muted: #666666;
  --accent: #6C63FF;
  --accent-hover: #5B53E0;
  --gold: #FFB800;
  --red: #FF3B30;
  --blue: #3B82F6;
  --border: #222222;
  --border-light: #2A2A2A;
  --container: 1200px;
  --font-heading: 'Clash Display', 'Arial Black', sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  z-index: 1000;
  font-size: 14px;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-accent { color: var(--accent); }
.text-gold { color: var(--gold); }

.mono {
  font-family: var(--font-mono);
  font-size: 0.875em;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(108, 99, 255, 0.3);
}

.btn-ghost {
  color: var(--text-secondary);
  padding: 14px 4px;
}
.btn-ghost:hover {
  color: var(--text-primary);
}
.btn-ghost .arrow {
  transition: transform 0.25s var(--ease-out);
}
.btn-ghost:hover .arrow {
  transform: translateX(4px);
}

.btn-gold {
  background: var(--gold);
  color: #000;
}
.btn-gold:hover {
  background: #E5A600;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(255, 184, 0, 0.25);
}

.btn-outline {
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(108, 99, 255, 0.08);
}

/* App Store Badge */
.app-store-badge {
  display: inline-block;
  transition: transform 0.25s var(--ease-out), opacity 0.25s;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.app-store-badge:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.app-store-badge svg {
  height: 52px;
  width: auto;
}

/* --- Badge --- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-pro {
  background: rgba(255, 184, 0, 0.12);
  color: var(--gold);
  border: 1px solid rgba(255, 184, 0, 0.2);
}
.badge-free {
  background: rgba(108, 99, 255, 0.1);
  color: var(--accent);
  border: 1px solid rgba(108, 99, 255, 0.2);
}
.badge-value {
  background: var(--gold);
  color: #000;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
}

/* --- Scroll Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > .reveal:nth-child(1) { transition-delay: 0ms; }
.stagger > .reveal:nth-child(2) { transition-delay: 150ms; }
.stagger > .reveal:nth-child(3) { transition-delay: 300ms; }
.stagger > .reveal:nth-child(4) { transition-delay: 150ms; }
.stagger > .reveal:nth-child(5) { transition-delay: 300ms; }
.stagger > .reveal:nth-child(6) { transition-delay: 450ms; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s, backdrop-filter 0.3s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

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

.nav-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
  font-weight: 500;
}
.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px !important;
  font-weight: 600;
  padding: 10px 20px;
  background: var(--accent);
  color: #fff !important;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  z-index: 110;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}
.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

/* Subtle gradient orbs */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}
.hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.hero h1 {
  margin-bottom: 24px;
  max-width: 560px;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  animation: float 2.5s ease-in-out infinite;
}
.scroll-hint svg {
  width: 20px;
  height: 20px;
  opacity: 0.5;
}

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

/* --- iPhone Mockup --- */
.phone-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.phone {
  width: 280px;
  height: 572px;
  border-radius: 44px;
  border: 3px solid #2A2A2A;
  background: #000;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 25px 80px -12px rgba(0,0,0,0.6),
    0 0 120px -20px rgba(108, 99, 255, 0.15);
}

/* Dynamic Island */
.phone-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #000;
  border-radius: 20px;
  z-index: 5;
}

.phone-screen {
  position: absolute;
  inset: 0;
  border-radius: 41px;
  overflow: hidden;
  background: #0D0D0D;
}

/* Prompter UI inside phone */
.prompter-ui {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
}

.prompter-header {
  padding: 52px 20px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}

.prompter-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--red);
  font-weight: 600;
  font-family: var(--font-mono);
}
.prompter-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.prompter-cam {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  position: relative;
  overflow: hidden;
}
.prompter-cam::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #2a2a4a 0%, #0f0f1f 100%);
}

.prompter-body {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.prompter-text-track {
  position: absolute;
  left: 20px;
  right: 20px;
  animation: scroll-prompter 16s linear infinite;
}

.prompter-line {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 4px;
  color: rgba(255,255,255,0.2);
  transition: color 0.3s;
  font-weight: 500;
}
.prompter-line.current {
  color: #fff;
}
.prompter-line.upcoming {
  color: rgba(255,255,255,0.5);
}
.prompter-line.next-upcoming {
  color: rgba(255,255,255,0.35);
}

@keyframes scroll-prompter {
  0% { transform: translateY(120px); }
  100% { transform: translateY(-100%); }
}

/* Mask overlay for prompter fade */
.prompter-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    #0D0D0D 0%,
    transparent 25%,
    transparent 55%,
    rgba(13,13,13,0.6) 75%,
    #0D0D0D 100%
  );
  z-index: 2;
  pointer-events: none;
}

.prompter-footer {
  padding: 12px 20px 36px;
  display: flex;
  justify-content: center;
  z-index: 3;
}

.prompter-controls {
  display: flex;
  gap: 28px;
  align-items: center;
}
.prompter-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prompter-btn-record {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.prompter-btn-record-inner {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse-record 2s ease-in-out infinite;
}

@keyframes pulse-record {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.92); opacity: 0.85; }
}

/* Voice waveform */
.prompter-wave {
  position: absolute;
  bottom: 90px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 24px;
  z-index: 3;
  opacity: 0.6;
}
.wave-bar {
  width: 2px;
  background: var(--blue);
  border-radius: 2px;
  animation: wave-pulse 0.8s ease-in-out infinite alternate;
}
.wave-bar:nth-child(1) { height: 8px; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 14px; animation-delay: 0.1s; }
.wave-bar:nth-child(3) { height: 20px; animation-delay: 0.15s; }
.wave-bar:nth-child(4) { height: 10px; animation-delay: 0.05s; }
.wave-bar:nth-child(5) { height: 18px; animation-delay: 0.2s; }
.wave-bar:nth-child(6) { height: 12px; animation-delay: 0.08s; }
.wave-bar:nth-child(7) { height: 22px; animation-delay: 0.18s; }
.wave-bar:nth-child(8) { height: 8px; animation-delay: 0.12s; }
.wave-bar:nth-child(9) { height: 16px; animation-delay: 0.22s; }
.wave-bar:nth-child(10) { height: 6px; animation-delay: 0.03s; }

@keyframes wave-pulse {
  0% { transform: scaleY(0.4); }
  100% { transform: scaleY(1); }
}

/* --- Social Proof Bar --- */
.social-proof {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.social-proof p {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: var(--text-secondary);
  font-style: italic;
  letter-spacing: 0.01em;
}

/* --- Section Shared --- */
.section {
  padding: 100px 0;
}
.section-alt {
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  margin-bottom: 16px;
}
.section-header p {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- How It Works --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

/* Connecting line */
.steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.666% + 24px);
  right: calc(16.666% + 24px);
  height: 1px;
  background: linear-gradient(to right, var(--border), var(--accent), var(--border));
  opacity: 0.4;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  background: var(--bg-surface);
  color: var(--accent);
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}

.step-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--text-secondary);
}

.step h3 {
  margin-bottom: 12px;
}

.step p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

/* --- Features --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.feature-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.feature-card-hero {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.06) 0%, rgba(59, 130, 246, 0.04) 100%);
  border-color: rgba(108, 99, 255, 0.2);
  padding: 40px;
}
.feature-card-hero:hover {
  border-color: rgba(108, 99, 255, 0.4);
  box-shadow: 0 12px 40px rgba(108, 99, 255, 0.08);
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.feature-card h3 {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.feature-card .subtitle {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-mono);
  margin-bottom: 12px;
}

.feature-card-hero .subtitle {
  color: var(--blue);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* --- Comparison Table --- */
.comparison-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.comparison-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.comparison-table thead th {
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}
.comparison-table thead th:first-child {
  border-radius: 16px 0 0 0;
}
.comparison-table thead th:last-child {
  border-radius: 0 16px 0 0;
  color: var(--gold);
}
.comparison-table thead th:nth-child(2) {
  text-align: center;
  width: 100px;
}
.comparison-table thead th:nth-child(3) {
  text-align: center;
  width: 100px;
}

.comparison-table tbody td {
  padding: 14px 24px;
  font-size: 14px;
  border-bottom: 1px solid rgba(34,34,34,0.5);
  color: var(--text-secondary);
}
.comparison-table tbody tr:nth-child(even) td {
  background: rgba(22,22,22,0.5);
}
.comparison-table tbody td:nth-child(2),
.comparison-table tbody td:nth-child(3) {
  text-align: center;
}

.check {
  color: var(--accent);
  font-size: 18px;
}
.check-gold {
  color: var(--gold);
  font-size: 18px;
}
.dash {
  color: var(--text-muted);
  font-size: 18px;
}

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}

.pricing-card-featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(255, 184, 0, 0.04) 0%, var(--bg-surface) 50%);
  box-shadow: 0 0 60px -20px rgba(255, 184, 0, 0.15);
  transform: translateY(-8px);
}
.pricing-card-featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(255, 184, 0, 0.12);
  border-color: var(--gold);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.pricing-plan {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 4px;
}
.pricing-price .period {
  font-size: 0.4em;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-detail {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 8px;
}
.pricing-detail-alt {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-sub {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 28px;
}

.pricing-card .btn {
  width: 100%;
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}
.pricing-note strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* --- FAQ --- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  color: var(--text-primary);
  cursor: pointer;
  transition: color 0.2s;
  gap: 16px;
}
.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
  color: var(--text-muted);
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-answer-inner {
  padding: 0 0 24px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
}

/* --- Final CTA --- */
.final-cta {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
  position: relative;
}
.final-cta p {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: 40px;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}
.final-cta .app-store-badge {
  position: relative;
}

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

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--text-primary);
}
.footer-sep {
  color: var(--border);
}

.footer-contact {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-contact a {
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: var(--accent);
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 40px;
  }
  .phone {
    width: 240px;
    height: 490px;
    border-radius: 38px;
  }
  .phone-screen { border-radius: 35px; }
  .phone-island { width: 85px; height: 24px; }
  .prompter-line { font-size: 13px; }
}

/* Mobile */
@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 24px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-out);
    border-left: 1px solid var(--border);
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links a {
    font-size: 18px;
  }
  .nav-toggle {
    display: flex;
  }

  /* Mobile overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 99;
  }
  .nav-overlay.active {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero h1 {
    max-width: none;
  }
  .hero-sub {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-eyebrow {
    justify-content: center;
  }

  .phone {
    width: 220px;
    height: 450px;
    border-radius: 36px;
  }
  .phone-screen { border-radius: 33px; }
  .phone-island { width: 80px; height: 22px; }
  .prompter-line { font-size: 12px; }
  .prompter-header { padding: 44px 14px 8px; }
  .prompter-cam { width: 28px; height: 28px; }
  .prompter-text-track { left: 14px; right: 14px; }

  .scroll-hint { display: none; }

  .steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .steps::before { display: none; }

  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card-hero {
    grid-column: auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
  .pricing-card-featured {
    transform: none;
    order: -1;
  }
  .pricing-card-featured:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .feature-card { padding: 24px; }
  .feature-card-hero { padding: 28px; }
  .pricing-card { padding: 28px 20px; }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .prompter-text-track,
  .prompter-dot,
  .prompter-btn-record-inner,
  .wave-bar,
  .scroll-hint {
    animation: none;
  }
  .wave-bar {
    transform: scaleY(0.7);
  }
}

