/* ============================================
   ClipVerse Landing Page — Dynamic Design
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-main: #17181a;
  --bg-card: #1e1e22;
  --bg-elevated: #28282d;
  --bg-hover: #252529;
  --text-default: #FFFFFF;
  --text-muted: #7c7c7c;
  --text-dim: #555555;
  --accent: #00FF7F;
  --accent-secondary: #00D4AA;
  --accent-glow: rgba(0,255,127,0.12);
  --accent-dim: rgba(0,255,127,0.06);
  --border-subtle: rgba(255,255,255,0.06);
  --border-accent: rgba(0,255,127,0.3);
  --shadow-glow: 0 0 40px rgba(0,255,127,0.15);
  --radius-full: 999px;
  --radius-card: 20px;
  --radius-large: 32px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-main);
  font-family: 'DM Sans', sans-serif;
  color: var(--text-default);
  line-height: 1.6;
}

/* Noise texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
  pointer-events: none;
  z-index: 9999;
}

a { text-decoration: none; color: inherit; }

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

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(23, 24, 26, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s;
}

nav.nav-hidden {
  transform: translateY(-100%);
}

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

.logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(0,255,127,0.4), 0 0 60px rgba(0,255,127,0.15);
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  background: var(--bg-card);
  padding: 6px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
}

.nav-links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  transition: all 0.2s;
}

.nav-links a:hover {
  color: var(--text-default);
  background: var(--bg-hover);
}

.nav-links a.active {
  color: var(--text-default);
  background: var(--accent-glow);
}

.nav-cta {
  display: flex;
  gap: 12px;
}

/* ===== BUTTONS ===== */
.btn {
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-primary {
  background: var(--accent);
  color: #111;
}

.btn-primary:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-default);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  background: var(--bg-card);
  border-color: var(--text-muted);
}

.btn-ghost {
  background: var(--accent-glow);
  color: var(--accent);
  border: 1px solid var(--border-accent);
}

.btn-ghost:hover {
  background: var(--accent);
  color: #111;
}

.btn-large {
  padding: 16px 36px;
  font-size: 16px;
}

/* ===== HERO ===== */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 100px 24px 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,255,127,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--accent);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 48px;
  animation: badgeGlow 2s ease-in-out infinite, heroEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

@keyframes badgeGlow {
  0%, 100% {
    box-shadow: 0 0 10px 2px rgba(0,255,127,0.3), 0 0 30px 4px rgba(0,255,127,0.15);
  }
  50% {
    box-shadow: 0 0 20px 6px rgba(0,255,127,0.5), 0 0 50px 10px rgba(0,255,127,0.25);
  }
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
  width: 100%;
  max-width: 1050px;
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: heroEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0;
  letter-spacing: -1px;
}

.hero h1 .gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin: 28px 0;
  border-radius: var(--radius-full);
}

.hero h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-default);
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
  white-space: nowrap;
}

.hero-cta {
  display: flex;
  gap: 12px;
}

.hero-cta .btn {
  padding: 12px 26px;
  font-size: 14px;
}

/* Phone Mockup */
.hero-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: phoneFloat 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.phone-device {
  width: 210px;
  height: 420px;
  background: #101012;
  border-radius: 34px;
  padding: 6px;
  position: relative;
  box-shadow:
    0 20px 50px rgba(0,0,0,0.4),
    inset 0 0 0 1px rgba(255,255,255,0.06);
  animation: deviceFloat 4s ease-in-out infinite 1.6s;
}

/* Dynamic Island */
.phone-device::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 55px;
  height: 14px;
  background: #000;
  border-radius: 8px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #00FF7F 0%, #00D4AA 40%, #008855 100%);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  padding: 38px 12px 32px;
  display: flex;
  flex-direction: column;
}

.phone-header {
  text-align: center;
  margin-bottom: 12px;
}

.phone-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: rgba(0,0,0,0.7);
  letter-spacing: 1.5px;
}

.phone-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Featured episode - 16:9 - glass morphism */
.episode-featured {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* Episode grid */
.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  flex: 1;
}

.episode-box {
  border-radius: 6px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.phone-nav {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.phone-nav-item {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,0.3);
}

.phone-nav-item.active {
  background: rgba(0,0,0,0.6);
}

/* Hero Stats */
.hero-stats {
  width: 100%;
  padding-top: 32px;
  position: relative;
  animation: heroEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
}

.hero-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-subtle) 15%, var(--border-subtle) 85%, transparent 100%);
}

.hero-stats-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-item .value {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent) 0%, #00BFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-item .label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== SECTIONS ===== */
section {
  padding: 120px 24px;
}

.section-dark {
  background: var(--bg-main);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-light {
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  position: relative;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
}

/* ===== PROBLEM / SOLUTION ===== */
.problem-solution {
  border-top: 1px solid var(--border-subtle);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-card {
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 40px;
}

.comparison-card.old {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.comparison-card.new {
  border-color: var(--border-accent);
  background: linear-gradient(135deg, rgba(0,255,127,0.03), rgba(0,212,170,0.02));
  box-shadow: var(--shadow-glow);
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.comparison-grid.visible .comparison-card.old {
  opacity: 0.7;
  transform: translateY(0);
}

.comparison-grid.visible .comparison-card.new {
  opacity: 1;
  transform: translateY(0);
}

.comparison-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.comparison-card.old h3 { color: var(--text-muted); }
.comparison-card.new h3 { color: var(--accent); }

.comparison-card h3 .icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.comparison-card.old h3 .icon {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.comparison-card.new h3 .icon {
  background: var(--accent-glow);
  color: var(--accent);
}

.comparison-list {
  list-style: none;
}

.comparison-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.5;
  opacity: 0;
}

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

.comparison-list .icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.comparison-card.old .icon {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.comparison-card.new .icon {
  background: var(--accent-glow);
  color: var(--accent);
}

/* Comparison list items stagger */
.comparison-grid.visible .comparison-list li {
  animation: listItemReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.comparison-grid.visible .comparison-card.old .comparison-list li:nth-child(1) { animation-delay: 0.4s; }
.comparison-grid.visible .comparison-card.old .comparison-list li:nth-child(2) { animation-delay: 0.5s; }
.comparison-grid.visible .comparison-card.old .comparison-list li:nth-child(3) { animation-delay: 0.6s; }
.comparison-grid.visible .comparison-card.old .comparison-list li:nth-child(4) { animation-delay: 0.7s; }
.comparison-grid.visible .comparison-card.old .comparison-list li:nth-child(5) { animation-delay: 0.8s; }
.comparison-grid.visible .comparison-card.old .comparison-list li:nth-child(6) { animation-delay: 0.9s; }

.comparison-grid.visible .comparison-card.new .comparison-list li:nth-child(1) { animation-delay: 0.5s; }
.comparison-grid.visible .comparison-card.new .comparison-list li:nth-child(2) { animation-delay: 0.6s; }
.comparison-grid.visible .comparison-card.new .comparison-list li:nth-child(3) { animation-delay: 0.7s; }
.comparison-grid.visible .comparison-card.new .comparison-list li:nth-child(4) { animation-delay: 0.8s; }
.comparison-grid.visible .comparison-card.new .comparison-list li:nth-child(5) { animation-delay: 0.9s; }
.comparison-grid.visible .comparison-card.new .comparison-list li:nth-child(6) { animation-delay: 1.0s; }

@keyframes listItemReveal {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.step-number {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin: 0 auto 24px;
}

.step-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-arrow {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  font-size: 18px;
  z-index: 1;
}

.step-card:last-child .step-arrow { display: none; }

/* ===== VALUE PROPS ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 36px;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-hover);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
}

.value-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== FOR VIEWERS ===== */
.viewers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.viewers-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.viewers-content p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.genre-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.genre-tag {
  padding: 10px 18px;
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.2s;
  opacity: 0;
}

.genre-tag:hover {
  border-color: var(--border-accent);
  color: var(--accent);
}

.app-buttons {
  display: flex;
  gap: 16px;
}

.app-button {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 12px 20px;
  transition: all 0.2s;
  min-width: 180px;
}

.app-button:hover {
  border-color: var(--accent);
  background: rgba(0,255,127,0.05);
  transform: translateY(-2px);
}

.app-button-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-button-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--text-default);
}

.app-button-text {
  text-align: left;
}

.app-button-text small {
  font-size: 10px;
  color: var(--text-muted);
  display: block;
  line-height: 1.2;
}

.app-button-text span {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.phone-mockups {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.phone-mockup {
  width: 160px;
  height: 320px;
  background: var(--bg-main);
  border: 2px solid var(--border-subtle);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
}

.phone-mockup span {
  position: relative;
  z-index: 2;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 6px;
  background: var(--border-subtle);
  border-radius: var(--radius-full);
  z-index: 3;
}

.phone-mockup::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 26px;
  z-index: 1;
}

.phone-mockup:nth-child(1)::after {
  background: linear-gradient(160deg, rgba(0,255,127,0.2) 0%, rgba(0,191,255,0.1) 50%, transparent 100%);
}

.phone-mockup:nth-child(2)::after {
  background: linear-gradient(160deg, rgba(0,191,255,0.2) 0%, rgba(138,43,226,0.1) 50%, transparent 100%);
}

.phone-mockup:nth-child(3)::after {
  background: linear-gradient(160deg, rgba(255,107,107,0.15) 0%, rgba(255,165,0,0.1) 50%, transparent 100%);
}

.phone-mockup:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.phone-mockup:nth-child(2) {
  transform: translateY(-24px);
}

.phone-mockup:nth-child(2):hover {
  transform: translateY(-28px);
}

/* ===== SUCCESS STORIES ===== */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.story-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 36px;
  text-align: center;
  transition: all 0.3s ease;
}

.story-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.story-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin: 0 auto 20px;
}

.story-name {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.story-handle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.story-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.story-stat .value {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

.story-stat .label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.story-quote {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
}

/* ===== FOR BRANDS ===== */
.brands-section {
  background: linear-gradient(135deg, rgba(0,255,127,0.025), rgba(0,212,170,0.015));
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.brands-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(0,255,127,0.035) 0%, transparent 70%);
  pointer-events: none;
}

.brands-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.brands-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin: 56px 0;
}

.brands-stat .value {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent) 0%, #00BFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brands-stat .label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}

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

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.faq-question {
  width: 100%;
  padding: 28px 0;
  background: none;
  border: none;
  color: var(--text-default);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
  width: 32px;
  height: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-muted);
  transition: all 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding-bottom: 28px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* FAQ items slide in */
.faq-list.visible .faq-item:nth-child(1) { transition-delay: 0.05s; }
.faq-list.visible .faq-item:nth-child(2) { transition-delay: 0.1s; }
.faq-list.visible .faq-item:nth-child(3) { transition-delay: 0.15s; }
.faq-list.visible .faq-item:nth-child(4) { transition-delay: 0.2s; }
.faq-list.visible .faq-item:nth-child(5) { transition-delay: 0.25s; }

.faq-list.visible .faq-item {
  opacity: 1;
  transform: translateY(0);
}

/* ===== FINAL CTA ===== */
.final-cta {
  text-align: center;
  padding: 140px 24px;
}

.final-cta h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.final-cta.visible h2 {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.final-cta .container > p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.final-cta.visible > .container > p {
  opacity: 1;
  transform: translateY(0);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 48px 36px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,255,127,0.1);
}

.cta-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.cta-card p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  padding: 80px 24px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 64px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.1s, transform 0.8s ease 0.1s;
}

.footer-grid.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-column h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.footer-column a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 0;
  transition: color 0.2s;
}

.footer-column a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.2s;
}

.footer-social a:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
}

/* ===== SCROLL ANIMATIONS ===== */

/* Base reveal classes */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-flip {
  opacity: 0;
  transform: perspective(800px) rotateY(25deg) translateX(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-flip.visible {
  opacity: 1;
  transform: perspective(800px) rotateY(0deg) translateX(0);
}

/* Stagger delays for children */
.stagger-children > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children > *:nth-child(2) { transition-delay: 100ms; }
.stagger-children > *:nth-child(3) { transition-delay: 200ms; }
.stagger-children > *:nth-child(4) { transition-delay: 300ms; }
.stagger-children > *:nth-child(5) { transition-delay: 400ms; }
.stagger-children > *:nth-child(6) { transition-delay: 500ms; }

/* Hero entrance animations */
@keyframes heroEntrance {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes phoneFloat {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Phone continuous float */
@keyframes deviceFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* Glow pulse on section labels */
.reveal.visible .section-label,
.reveal-left.visible .section-label {
  animation: labelGlow 0.6s ease-out 0.3s both;
}

@keyframes labelGlow {
  0% { text-shadow: none; }
  50% { text-shadow: 0 0 20px rgba(0,255,127,0.6), 0 0 40px rgba(0,255,127,0.3); }
  100% { text-shadow: 0 0 8px rgba(0,255,127,0.2); }
}

/* Counter animation shimmer */
.counting {
  background: linear-gradient(90deg, var(--accent) 0%, #00BFFF 50%, var(--accent) 100%) !important;
  background-size: 200% 100% !important;
  -webkit-background-clip: text !important;
  animation: counterShimmer 1.5s ease-out !important;
}

@keyframes counterShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: 0% 0; }
}

/* Genre tag wave animation */
.genre-tags.visible .genre-tag {
  animation: tagBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.genre-tags.visible .genre-tag:nth-child(1) { animation-delay: 0.1s; }
.genre-tags.visible .genre-tag:nth-child(2) { animation-delay: 0.18s; }
.genre-tags.visible .genre-tag:nth-child(3) { animation-delay: 0.26s; }
.genre-tags.visible .genre-tag:nth-child(4) { animation-delay: 0.34s; }
.genre-tags.visible .genre-tag:nth-child(5) { animation-delay: 0.42s; }
.genre-tags.visible .genre-tag:nth-child(6) { animation-delay: 0.5s; }

@keyframes tagBounce {
  from { opacity: 0; transform: scale(0.5) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Phone mockup stagger in Viewers section */
.phone-mockups.visible .phone-mockup {
  animation: mockupRise 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.phone-mockups.visible .phone-mockup:nth-child(1) { animation-delay: 0.1s; }
.phone-mockups.visible .phone-mockup:nth-child(2) { animation-delay: 0.25s; }
.phone-mockups.visible .phone-mockup:nth-child(3) { animation-delay: 0.4s; }

@keyframes mockupRise {
  from { opacity: 0; transform: translateY(80px) scale(0.8); }
  70% { transform: translateY(-8px) scale(1.02); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Phone mockup 2 offset preserved after animation */
.phone-mockups.visible .phone-mockup:nth-child(2) {
  animation: mockupRiseOffset 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.25s both;
}

@keyframes mockupRiseOffset {
  from { opacity: 0; transform: translateY(80px) scale(0.8); }
  70% { transform: translateY(-32px) scale(1.02); }
  to { opacity: 1; transform: translateY(-24px) scale(1); }
}

/* Smooth scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  z-index: 9998;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s linear;
  box-shadow: 0 0 10px rgba(0,255,127,0.5);
}

/* ===== LAUNCH HERO ===== */
.launch-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.launch-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse at center, rgba(0,255,127,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--accent);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 48px;
  animation: badgeGlow 2s ease-in-out infinite, heroEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.launch-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: dotPulse 1.5s ease-in-out infinite;
}
.launch-title {
  font-family: 'Outfit', sans-serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 24px;
  animation: heroEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}
.launch-title .gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.launch-subtitle {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 56px;
  line-height: 1.6;
  animation: heroEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}
.countdown-wrapper {
  animation: heroEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
  margin-bottom: 48px;
}
.countdown-label {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.countdown {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.countdown-unit {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 20px 8px 16px;
  min-width: 96px;
  text-align: center;
  transition: border-color 0.3s;
}
.countdown-unit:hover {
  border-color: var(--border-accent);
}
.countdown-number {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent) 0%, #00BFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.countdown-text {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
}
.launch-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  animation: heroEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 0.85s both;
}
.launch-note {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 20px;
  animation: heroEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 0.95s both;
}
.hero-section-2 {
  padding: 120px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
}
.hero-section-2::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,255,127,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.hero-section-2 .hero-badge { animation: badgeGlow 2s ease-in-out infinite; }
.hero-section-2 .hero-content,
.hero-section-2 .hero-phone { animation: none; }
.early-features {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}
.early-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.early-feature .check {
  width: 22px;
  height: 22px;
  background: var(--accent-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .hero h1 { font-size: 46px; }
  .hero-subtitle { white-space: normal; }
  .section-title { white-space: normal; }
}

@media (max-width: 1024px) {
  .launch-title { font-size: 44px; letter-spacing: -1px; }
  .countdown-unit { min-width: 80px; padding: 16px 6px 12px; }
  .countdown-number { font-size: 38px; }
  .hero-main {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    max-width: 500px;
  }
  .hero-content { order: 1; }
  .hero-phone { order: 2; }
  .hero h1 { font-size: 38px; }
  .hero h2 { font-size: 20px; }
  .hero-divider { margin: 24px auto; }
  .hero-subtitle { margin: 0 auto 28px; }
  .hero-cta { justify-content: center; }
  .hero-stats { margin-top: 32px; }
  .hero-stats-container { gap: 32px; }
  .hero-stat-item .value { font-size: 24px; }
  .phone-device { width: 180px; height: 360px; }
  .comparison-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-arrow { display: none; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .viewers-grid { grid-template-columns: 1fr; text-align: center; }
  .phone-mockups { order: -1; margin-bottom: 48px; }
  .stories-grid { grid-template-columns: 1fr; max-width: 400px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-stats { gap: 48px; }
}

@media (max-width: 768px) {
  .launch-hero { padding: 100px 24px 60px; }
  .launch-title { font-size: 32px; letter-spacing: -0.5px; }
  .launch-subtitle { font-size: 16px; }
  .countdown { gap: 10px; }
  .countdown-unit { min-width: 68px; padding: 14px 4px 10px; }
  .countdown-number { font-size: 30px; }
  .countdown-text { font-size: 9px; }
  .launch-cta { flex-direction: column; align-items: center; }
  .early-features { flex-direction: column; align-items: center; gap: 16px; }
  .nav-links { display: none; }
  .hero { padding: 80px 24px 32px; min-height: 600px; }
  .hero-badge { margin-bottom: 24px; padding: 10px 20px; font-size: 12px; }
  .hero h1 { font-size: 30px; }
  .hero h2 { font-size: 17px; }
  .hero-subtitle { font-size: 14px; }
  .hero-cta { flex-direction: column; align-items: center; gap: 10px; }
  .hero-cta .btn { width: 100%; max-width: 200px; }
  .hero-stats { padding-top: 24px; }
  .hero-stats-container { flex-wrap: wrap; justify-content: center; gap: 16px; max-width: 100%; }
  .hero-stat-item { width: 45%; }
  .hero-stat-item .value { font-size: 20px; }
  .hero-stat-item .label { font-size: 10px; }
  .phone-device { width: 160px; height: 320px; border-radius: 28px; }
  .phone-screen { border-radius: 22px; padding: 30px 10px 26px; }
  .phone-device::before { width: 45px; height: 12px; border-radius: 6px; top: 10px; }
  .phone-logo { font-size: 9px; }
  .phone-content { gap: 5px; }
  .episode-featured { border-radius: 5px; }
  .episode-grid { gap: 4px; }
  .episode-box { border-radius: 4px; }
  .phone-nav { bottom: 10px; gap: 5px; }
  .phone-nav-item { width: 5px; height: 5px; }
  .steps-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .brands-stats { flex-direction: column; gap: 32px; }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 24px; }
  .app-buttons { flex-direction: column; align-items: center; }
  .genre-tags { justify-content: center; }
}
