/* =============================================
   CLIPFORGE AI — Bold & Vibrant Theme
   TikTok/social-media inspired, neon orange/purple
   ============================================= */

:root {
  --bg: #0D0D1A;
  --bg-2: #12121F;
  --bg-3: #1A1A2E;
  --bg-4: #222240;
  --fg: #ffffff;
  --fg-muted: #C4C4D4;
  --fg-subtle: #8888A0;
  --accent: #FF6B35;
  --accent-2: #8B5CF6;
  --accent-3: #EC4899;
  --accent-glow: rgba(255, 107, 53, 0.15);
  --accent-2-glow: rgba(139, 92, 246, 0.15);
  --accent-3-glow: rgba(236, 72, 153, 0.15);
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-bg-hover: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 107, 53, 0.4);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --sidebar-w: 240px;
  --gradient-main: linear-gradient(135deg, #FF6B35 0%, #8B5CF6 50%, #EC4899 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', 'Space Grotesk', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* GRADIENT TEXT */
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 50%, var(--accent-3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gradient-main);
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.25);
}
.btn-primary:hover { opacity: 0.92; transform: translateY(-2px) scale(1.02); box-shadow: 0 8px 32px rgba(255, 107, 53, 0.45), 0 0 20px rgba(255, 107, 53, 0.2); }
.btn-primary.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: 12px; }

/* GLOW BUTTON — enhanced CTA with orange glow */
.btn-glow {
  background: var(--gradient-main) !important;
  color: white !important;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.35), 0 0 40px rgba(255, 107, 53, 0.1) !important;
  border: none !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px;
}
.btn-glow:hover {
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow: 0 8px 40px rgba(255, 107, 53, 0.55), 0 0 60px rgba(255, 107, 53, 0.2) !important;
  opacity: 1 !important;
}
.btn-glow:active {
  transform: translateY(0) scale(0.98) !important;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost.btn-lg { padding: 13px 28px; font-size: 16px; }
.btn-danger {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}
.btn-danger:hover { background: rgba(239, 68, 68, 0.2); }

/* GLASS CARD */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

/* =============================================
   NAVIGATION (Landing)
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(13,13,26,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,107,53,0.25);
  box-shadow: 0 0 20px rgba(255,107,53,0.08), inset 0 -1px 0 rgba(139,92,246,0.15);
  background-image: linear-gradient(rgba(255,107,53,0.03), transparent);
}
.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.5px;
  color: white;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  color: var(--fg-muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover {
  color: var(--accent);
  text-shadow: 0 0 12px rgba(255,107,53,0.5);
}
.nav-cta { padding: 8px 18px; font-size: 13px; }

/* =============================================
   HERO (Landing)
   ============================================= */
.hero {
  padding: 140px 40px 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse 80% 60% at 60% 30%, rgba(255,107,53,0.08) 0%, rgba(139,92,246,0.05) 50%, transparent 70%);
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 100px;
  background: var(--accent-glow);
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.hero-note {
  font-size: 13px;
  color: var(--fg-subtle);
}

/* =============================================
   HERO — DEMO SECTION (NEW)
   ============================================= */
.hero-new {
  padding: 80px 40px 60px;
  min-height: auto;
  display: block;
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 20%, rgba(255,107,53,0.06) 0%, rgba(139,92,246,0.04) 50%, transparent 70%);
}
.hero-new .hero-bg { min-height: auto; }
.hero-new .hero-bg-overlay { background: rgba(13,13,26,0.65); }

/* Demo Phones */
.demo-section {
  max-width: 1100px;
  margin: 40px auto 0;
}
.demo-phones {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
}

/* Phone Wrapper */
.phone-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.phone-left .phone-glow-orange,
.phone-right .phone-glow-pink {
  position: absolute;
  inset: -20px;
  border-radius: 40px;
  pointer-events: none;
  z-index: 0;
  filter: blur(30px);
  opacity: 0.7;
  animation: glow-pulse 3s ease-in-out infinite;
}
.phone-left .phone-glow-orange {
  background: radial-gradient(ellipse, rgba(255,107,53,0.5) 0%, rgba(255,50,20,0.2) 40%, transparent 70%);
}
.phone-right .phone-glow-pink {
  background: radial-gradient(ellipse, rgba(236,72,153,0.5) 0%, rgba(139,92,246,0.2) 40%, transparent 70%);
  animation-delay: 1.5s;
}
@keyframes glow-pulse {
  0%,100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.05); }
}

/* Phone Frame */
.phone-frame {
  position: relative;
  z-index: 1;
  width: 200px;
  background: #0a0a18;
  border-radius: 32px;
  padding: 12px;
  border: 1.5px solid rgba(255,255,255,0.15);
  box-shadow:
    0 0 0 1px rgba(255,107,53,0.3),
    0 0 30px rgba(255,107,53,0.15),
    0 20px 60px rgba(0,0,0,0.7);
}
.phone-left .phone-frame {
  box-shadow:
    0 0 0 2px rgba(255,107,53,0.5),
    0 0 40px rgba(255,107,53,0.25),
    0 20px 60px rgba(0,0,0,0.7);
}
.phone-right .phone-frame {
  border-color: rgba(236,72,153,0.3);
  box-shadow:
    0 0 0 2px rgba(236,72,153,0.5),
    0 0 40px rgba(236,72,153,0.25),
    0 20px 60px rgba(0,0,0,0.7);
}

/* Notch */
.phone-notch {
  width: 80px;
  height: 22px;
  background: #050510;
  border-radius: 12px;
  margin: 0 auto 8px;
  position: relative;
}
.phone-notch::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

/* Phone Screen */
.phone-screen {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #0a0a18;
}
.phone-img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

/* UI Overlay on phone */
.phone-ui-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px;
}
.phone-ui-field {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 6px 10px;
  width: 80%;
}
.phone-ui-label {
  font-size: 7px;
  color: rgba(255,255,255,0.5);
  font-family: 'Inter', sans-serif;
}

/* Platform Icons */
.phone-platforms {
  display: flex;
  gap: 6px;
}
.phone-platform {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
}
.phone-platform.active {
  background: rgba(255,107,53,0.2);
  border-color: rgba(255,107,53,0.5);
  color: #FF6B35;
}
.phone-right .phone-platform.active {
  background: rgba(236,72,153,0.2);
  border-color: rgba(236,72,153,0.5);
  color: #EC4899;
}

/* Voice Avatars with Thumbnails */
.phone-voices {
  display: flex;
  gap: 5px;
  align-items: center;
}
.phone-voice-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.2s;
}
.phone-voice-thumb.active {
  background: rgba(255,107,53,0.15);
  border-color: rgba(255,107,53,0.5);
  box-shadow: 0 0 8px rgba(255,107,53,0.3);
}
.phone-voice-avatar {
  font-size: 10px;
  line-height: 1;
}
.phone-voice-name {
  font-size: 6px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.phone-voice-thumb.active .phone-voice-name {
  color: rgba(255,107,53,0.9);
}
.phone-right .phone-voice-thumb.active {
  background: rgba(236,72,153,0.15);
  border-color: rgba(236,72,153,0.5);
  box-shadow: 0 0 8px rgba(236,72,153,0.3);
}
.phone-right .phone-voice-thumb.active .phone-voice-name {
  color: rgba(236,72,153,0.9);
}

/* Legacy small voice dots */
.phone-voice {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.1);
}
.phone-voice.active {
  background: rgba(255,107,53,0.2);
  border-color: rgba(255,107,53,0.6);
  box-shadow: 0 0 8px rgba(255,107,53,0.4);
}
.phone-right .phone-voice.active {
  background: rgba(236,72,153,0.2);
  border-color: rgba(236,72,153,0.6);
  box-shadow: 0 0 8px rgba(236,72,153,0.4);
}

/* Generate Button on phone */
.phone-generate-btn {
  background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
  color: white;
  font-size: 8px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 0 12px rgba(139,92,246,0.4);
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.5px;
  animation: btn-glow 2s ease-in-out infinite;
}
@keyframes btn-glow {
  0%,100% { box-shadow: 0 0 12px rgba(139,92,246,0.4); }
  50% { box-shadow: 0 0 24px rgba(236,72,153,0.7); }
}

/* Phone Home Bar */
.phone-home-bar {
  width: 80px; height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
  margin: 8px auto 0;
}

/* Generate Button Overlay (Right Phone) */
.phone-generate-overlay {
  position: absolute;
  bottom: 38px;
  left: 8px;
  right: 8px;
  display: flex;
  justify-content: center;
}
.phone-generate-btn-large {
  width: 100%;
  padding: 8px 16px;
  background: linear-gradient(135deg, #EC4899 0%, #8B5CF6 50%, #FF6B35 100%);
  color: white;
  font-size: 10px;
  font-weight: 700;
  border-radius: 20px;
  text-align: center;
  letter-spacing: 0.5px;
  box-shadow: 0 0 16px rgba(236,72,153,0.6), 0 0 32px rgba(139,92,246,0.3);
  animation: generate-pulse 2s ease-in-out infinite;
  font-family: 'Space Grotesk', sans-serif;
}
@keyframes generate-pulse {
  0%, 100% {
    box-shadow: 0 0 16px rgba(236,72,153,0.6), 0 0 32px rgba(139,92,246,0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 24px rgba(236,72,153,0.9), 0 0 48px rgba(139,92,246,0.5);
    transform: scale(1.03);
  }
}

/* Phone Label */
.phone-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.phone-left .phone-label { color: rgba(255,107,53,0.7); }
.phone-right .phone-label { color: rgba(236,72,153,0.7); }

/* Demo Center */
.demo-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  flex-shrink: 0;
}
.demo-center .hero-badge {
  margin-bottom: 16px;
}
.demo-center .hero-headline {
  font-size: clamp(28px, 3.5vw, 46px);
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}
.demo-center .hero-sub {
  font-size: 15px;
  max-width: 320px;
  margin-bottom: 24px;
}
.demo-center .hero-note {
  font-size: 12px;
  margin-top: 8px;
}

/* Presenter Overlay */
.presenter-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(13,13,26,0.6);
  gap: 14px;
}
.presenter-silhouette {
  position: relative;
  width: 64px; height: 84px;
}
.presenter-body {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(139,92,246,0.35) 0%, rgba(236,72,153,0.25) 100%);
  border-radius: 50% 50% 40% 40%;
  border: 1px solid rgba(236,72,153,0.5);
  box-shadow: 0 0 24px rgba(236,72,153,0.4);
  animation: presenter-breathe 3s ease-in-out infinite;
  position: relative;
}
@keyframes presenter-breathe {
  0%,100% { transform: scaleY(1); }
  50% { transform: scaleY(1.04); }
}

/* Presenter Head with Face */
.presenter-head {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: linear-gradient(180deg, rgba(236,72,153,0.6) 0%, rgba(139,92,246,0.5) 100%);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 0 16px rgba(236,72,153,0.5);
}
.presenter-face {
  position: absolute;
  inset: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}
.presenter-eye {
  width: 5px;
  height: 5px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  animation: presenter-blink 4s ease-in-out infinite;
}
.presenter-eye.left { animation-delay: 0.1s; }
.presenter-eye.right { animation-delay: 0.15s; }
@keyframes presenter-blink {
  0%, 45%, 55%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.1); opacity: 0.8; }
}
.presenter-mouth {
  width: 14px;
  height: 6px;
  background: rgba(255,255,255,0.3);
  border-radius: 0 0 10px 10px;
  animation: presenter-talk 0.5s ease-in-out infinite;
}
@keyframes presenter-talk {
  0%, 100% { transform: scaleY(1) scaleX(1); border-radius: 0 0 10px 10px; }
  25% { transform: scaleY(1.4) scaleX(1.1); border-radius: 0 0 12px 12px; }
  50% { transform: scaleY(0.8) scaleX(0.9); border-radius: 0 0 8px 8px; }
  75% { transform: scaleY(1.2) scaleX(1.05); border-radius: 0 0 11px 11px; }
}
.presenter-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: all 0.2s;
}
.presenter-play-btn:hover {
  background: rgba(236,72,153,0.4);
  border-color: rgba(236,72,153,0.8);
  box-shadow: 0 0 20px rgba(236,72,153,0.5);
}

/* Lipsync Bars */
.presenter-lipsync-bar {
  width: 80%;
}
.lipsync-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 24px;
}
.lipsync-bar {
  width: 4px;
  height: var(--h, 30%);
  background: rgba(236,72,153,0.6);
  border-radius: 3px;
  animation: lipsync-dance 0.4s ease-in-out infinite;
  transition: height 0.1s ease;
}
.lipsync-bar:nth-child(1) { animation-delay: 0s; }
.lipsync-bar:nth-child(2) { animation-delay: 0.1s; }
.lipsync-bar:nth-child(3) { animation-delay: 0.2s; }
.lipsync-bar:nth-child(4) { animation-delay: 0.3s; }
.lipsync-bar:nth-child(5) { animation-delay: 0.15s; }
.lipsync-bar:nth-child(6) { animation-delay: 0.05s; }
.lipsync-bar:nth-child(7) { animation-delay: 0.25s; }
.lipsync-bar:nth-child(8) { animation-delay: 0.35s; }
.lipsync-bar:nth-child(9) { animation-delay: 0.12s; }
.lipsync-bar:nth-child(10) { animation-delay: 0.22s; }
.lipsync-bar:nth-child(11) { animation-delay: 0.08s; }
.lipsync-bar:nth-child(12) { animation-delay: 0.28s; }
@keyframes lipsync-dance {
  0%,100% { transform: scaleY(0.8); opacity: 0.6; }
  50% { transform: scaleY(1.2); opacity: 1; }
}

/* Audio Player */
.phone-audio-player {
  position: absolute;
  bottom: 8px; left: 8px; right: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.7);
  border-radius: 8px;
  padding: 6px 8px;
  backdrop-filter: blur(8px);
}
.audio-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 16px;
}
.audio-bar {
  width: 2px;
  height: 100%;
  background: #EC4899;
  border-radius: 2px;
  animation: audio-wave 0.6s ease-in-out infinite alternate;
}
.audio-bar:nth-child(1) { animation-delay: 0s; }
.audio-bar:nth-child(2) { animation-delay: 0.1s; }
.audio-bar:nth-child(3) { animation-delay: 0.2s; }
.audio-bar:nth-child(4) { animation-delay: 0.3s; }
.audio-bar:nth-child(5) { animation-delay: 0.15s; }
.audio-bar:nth-child(6) { animation-delay: 0.25s; }
@keyframes audio-wave {
  from { height: 4px; opacity: 0.5; }
  to { height: 16px; opacity: 1; }
}
.audio-label {
  font-size: 7px;
  color: rgba(236,72,153,0.9);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
  .demo-phones {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .phone-frame { width: 180px; }
  .demo-center { padding: 0; }
}

/* VIDEO WINDOW */
.hero-visual { position: relative; }
.video-window {
  background: var(--bg-2);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 60px rgba(255,107,53,0.15), 0 0 30px rgba(139,92,246,0.1);
}
.video-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--glass-border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.video-title { font-size: 11px; color: var(--fg-muted); margin-left: 8px; }
.hero-img {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.video-overlay-captions {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  pointer-events: none;
}
.caption-line {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.3;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9);
  letter-spacing: 0.5px;
}
.caption-line.accent { color: var(--accent); }
.hero-glare {
  position: absolute;
  top: -2px; left: -2px; right: -2px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3), transparent);
  border-radius: 16px 16px 0 0;
}

/* =============================================
   TRUSTED SECTION
   ============================================= */
.trusted {
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 32px 40px;
  background: var(--bg-2);
}
.trusted-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.trusted-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fg-subtle);
}
.trusted-logos {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.logo-item {
  font-size: 13px;
  font-weight: 700;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
}
.logo-sep { color: var(--fg-subtle); }

/* =============================================
   SECTIONS (shared)
   ============================================= */
.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--fg-muted);
}

/* FEATURES */
.features { padding: 120px 40px; background: var(--bg); }
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  padding: 32px 28px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 1px rgba(255,107,53,0.08), 0 4px 20px rgba(0,0,0,0.3);
}
.feature-card:hover {
  border-color: rgba(255,107,53,0.5);
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(255,107,53,0.2), 0 0 30px rgba(255,107,53,0.2), 0 20px 40px rgba(0,0,0,0.4), 0 0 40px rgba(139,92,246,0.1);
}
.feature-icon {
  width: 48px; height: 48px;
  background: var(--accent-glow);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.feature-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}
.feature-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* PRICING */
.pricing { padding: 120px 40px; background: var(--bg); }
.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.plan {
  padding: 28px 24px;
  border-radius: var(--radius);
  position: relative;
  transition: all 0.3s;
}
.plan:hover { transform: translateY(-2px); }
.plan-popular {
  border-color: var(--accent) !important;
  background: linear-gradient(180deg, rgba(255,107,53,0.08) 0%, rgba(139,92,246,0.05) 50%, rgba(236,72,153,0.03) 100%) !important;
  box-shadow: 0 0 40px rgba(255,107,53,0.15), 0 0 20px rgba(139,92,246,0.1);
}
.popular-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fg-muted);
  margin-bottom: 14px;
}
.plan-popular .plan-name { color: var(--accent); }
.plan-price {
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 38px;
  font-weight: 700;
}
.period { font-size: 14px; color: var(--fg-muted); }
.plan-desc { font-size: 13px; color: var(--fg-muted); margin-bottom: 20px; line-height: 1.5; }
.plan-features { list-style: none; margin-bottom: 24px; }
.plan-feature {
  font-size: 13px;
  padding: 5px 0;
  color: var(--fg);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.plan-feature:last-child { border-bottom: none; }
.plan-feature.disabled { color: var(--fg-subtle); text-decoration: line-through; }
.plan-feature strong { color: var(--accent); }
.plan-cta {
  display: block;
  text-align: center;
  padding: 11px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  color: var(--fg);
}
.plan-cta:hover { border-color: var(--accent); color: var(--accent); }
.plan-cta-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none;
  color: white;
  box-shadow: 0 4px 16px rgba(255,107,53,0.3);
  transition: all 0.2s;
}
.plan-cta-primary:hover {
  opacity: 0.92;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,107,53,0.5), 0 0 20px rgba(139,92,246,0.3);
}

/* CLOSING / CTA */
.closing { padding: 120px 40px; background: radial-gradient(ellipse 100% 80% at 50% 100%, rgba(255,107,53,0.08) 0%, rgba(139,92,246,0.06) 50%, transparent 60%); }
.closing-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.closing-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--fg-subtle);
}


/* FOOTER */
.footer { border-top: 1px solid var(--glass-border); padding: 32px 40px; background: var(--bg); }
.footer-bottom-only {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--fg-subtle);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a { color: var(--fg-subtle); transition: color 0.2s; }
.footer-legal a:hover { color: var(--fg-muted); }

/* =============================================
   DASHBOARD SHELL
   ============================================= */
.app-shell {
  display: flex;
  min-height: 100vh;
  background: var(--bg);
}
.sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  background: var(--bg-2);
  border-right: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 50;
}
.sidebar-close { display: none; }
.sidebar-logo-img { width: 40px; height: auto; max-height: 40px; border-radius: 6px; }
.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--glass-border);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: white;
  text-decoration: none;
}
.sidebar-nav {
  flex: 1;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--fg-muted);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.15s;
  border-left: 2px solid transparent;
}
.nav-item:hover { background: var(--glass-bg); color: var(--fg); }
.nav-item.active {
  background: rgba(255,107,53,0.15);
  color: var(--accent);
  border-left-color: var(--accent);
  box-shadow: 0 0 12px rgba(255,107,53,0.2) inset;
}
.nav-item svg { flex-shrink: 0; width: 18px; height: 18px; }
.sidebar-footer {
  padding: 16px 12px;
  border-top: 1px solid var(--glass-border);
}
.user-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: var(--glass-bg);
}
.user-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: white;
  flex-shrink: 0;
}
.user-name { font-size: 13px; font-weight: 600; }
.user-plan {
  font-size: 11px;
  color: var(--accent);
  background: rgba(255,107,53,0.15);
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 600;
}

/* MAIN CONTENT */
.main-content {
  flex: 1;
  margin-left: var(--sidebar-w);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 40px 0;
  border-bottom: 1px solid var(--glass-border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 40;
}
.page-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
}
.credits-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}
.credits-num { color: var(--accent); }
.page-body {
  padding: 32px 40px;
  flex: 1;
  max-width: 100%;
}
.page-body-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* =============================================
   DASHBOARD HOME
   ============================================= */
.welcome-greeting {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 4px;
}
.welcome-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.stat-card {
  padding: 20px 24px;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}
.stat-card-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
}
.stat-card-label { font-size: 12px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.section-title-sm {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}
.recent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.video-card {
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: all 0.3s;
}
.video-card:hover { border-color: var(--glass-border-hover); transform: translateY(-2px); }
.video-card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-subtle);
}
.video-card-info { padding: 14px 16px; }
.video-card-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.video-card-meta { font-size: 12px; color: var(--fg-muted); display: flex; align-items: center; gap: 8px; }
.platform-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  text-transform: uppercase;
}
.platform-badge.tiktok { background: rgba(0,0,0,0.6); color: #fff; }
.platform-badge.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.platform-badge.youtube { background: #ff0000; color: white; }

/* QUICK ACTIONS */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.action-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all 0.2s;
  cursor: pointer;
}
.action-card:hover { border-color: var(--accent); background: var(--glass-bg-hover); }
.action-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.action-icon.blue { background: var(--accent-glow); color: var(--accent); }
.action-icon.purple { background: var(--accent-2-glow); color: var(--accent-2); }
.action-icon.green { background: rgba(34,197,94,0.15); color: #22c55e; }
.action-label { font-size: 14px; font-weight: 600; }
.action-desc { font-size: 12px; color: var(--fg-muted); }

/* =============================================
   VIDEO GENERATOR (4-Step)
   ============================================= */
.stepper-container {
  max-width: 860px;
  margin: 0 auto;
}
.stepper {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}
.stepper::before {
  content: '';
  position: absolute;
  top: 16px; left: 0; right: 0;
  height: 2px;
  background: var(--glass-border);
  z-index: 0;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
  flex: 1;
}
.step-circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  background: var(--bg-2);
  border: 2px solid var(--glass-border);
  color: var(--fg-muted);
  transition: all 0.3s;
}
.step-item.active .step-circle {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  box-shadow: 0 0 16px rgba(255,107,53,0.5), 0 0 8px rgba(255,107,53,0.3);
}
.step-item.done .step-circle {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: white;
}
.step-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--fg-subtle);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.step-item.active .step-label { color: var(--accent); }

.step-panel {
  padding: 36px;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  margin-bottom: 24px;
}
.step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}
.step-desc { font-size: 14px; color: var(--fg-muted); margin-bottom: 20px; }

/* STEP 1 — Textarea */
.idea-textarea {
  width: 100%;
  min-height: 140px;
  padding: 16px;
  background: var(--bg-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: white;
  font-size: 15px;
  font-family: inherit;
  resize: vertical;
  transition: border-color 0.2s;
}
.idea-textarea:focus { outline: none; border-color: var(--accent); }
.idea-textarea::placeholder { color: var(--fg-subtle); }
.char-counter { text-align: right; font-size: 12px; color: var(--fg-subtle); margin-top: 6px; }

/* STEP 2 — Platform selector */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.platform-option {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--bg-3);
  border: 2px solid var(--glass-border);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}
.platform-option:hover { border-color: var(--fg-subtle); }
.platform-option.selected {
  border-color: var(--accent);
  background: rgba(255,107,53,0.12);
  box-shadow: 0 0 20px rgba(255,107,53,0.3);
}
.platform-icon { font-size: 28px; margin-bottom: 8px; display: block; }
.platform-name { font-size: 14px; font-weight: 600; }

/* VOICE PLAY BUTTON */
.voice-play-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  color: white;
  font-size: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.voice-play-btn:hover { opacity: 0.8; transform: scale(1.1); }

/* VOICE AVATAR VARIANTS */
.voice-avatar--accent { background: var(--accent-glow); border-color: rgba(255,107,53,0.3); }
.voice-avatar--purple { background: var(--accent-2-glow); border-color: rgba(139,92,246,0.3); }
.voice-avatar--fire   { background: rgba(239,68,68,0.15); border-color: rgba(239,68,68,0.3); }
.voice-avatar--green  { background: rgba(34,197,94,0.15); border-color: rgba(34,197,94,0.3); }

/* STEP 3 — Voice cards */
.voice-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.voice-card {
  flex-shrink: 0;
  width: 160px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--bg-3);
  border: 2px solid var(--glass-border);
  cursor: pointer;
  transition: all 0.2s;
}
.voice-card:hover { border-color: var(--fg-subtle); }
.voice-card.selected {
  border-color: var(--accent);
  background: rgba(255,107,53,0.12);
}
.voice-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 18px;
}
.voice-name { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.voice-lang {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--accent-glow);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.voice-play {
  margin-top: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  color: white;
  transition: opacity 0.2s;
}

/* STEP 4 — Style chips */
.style-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.style-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  background: var(--bg-3);
  border: 2px solid var(--glass-border);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.style-chip:hover { border-color: var(--fg-subtle); }
.style-chip.selected {
  border-color: var(--accent);
  background: var(--accent-glow);
  color: var(--accent);
}

/* GENERATE CTA */
.generate-cta {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius);
}
.generate-cta.loading {
  pointer-events: none;
  opacity: 0.7;
}
.progress-bar-wrap {
  display: none;
  margin-top: 16px;
  background: var(--bg-3);
  border-radius: 100px;
  height: 6px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 100px;
  transition: width 0.3s;
}
.progress-text {
  text-align: center;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 8px;
}

/* =============================================
   VIDEO RESULT
   ============================================= */
.result-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.result-player {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--glass-border);
}
.result-player video, .result-player img {
  width: 100%;
  display: block;
  aspect-ratio: 9/16;
  object-fit: cover;
}
.result-sidebar {}
.result-ready-header {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.virality-score {
  text-align: center;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  margin-bottom: 16px;
}
.virality-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 64px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  line-height: 1;
}
.virality-label {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 6px;
}
.result-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
.result-stat {
  padding: 12px;
  text-align: center;
  border-radius: var(--radius-sm);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}
.result-stat-val { font-size: 15px; font-weight: 700; }
.result-stat-lbl { font-size: 10px; color: var(--fg-muted); text-transform: uppercase; margin-top: 2px; }
.result-actions { display: flex; flex-direction: column; gap: 10px; }

/* =============================================
   VIDEO EDITOR
   ============================================= */
.editor-shell {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}
.editor-toolbar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 20px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--glass-border);
}
.tool-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  color: var(--fg-muted);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.15s;
  border: none;
  background: none;
  cursor: pointer;
}
.tool-btn:hover { background: var(--glass-bg); color: var(--fg); }
.tool-btn.active { background: var(--accent-glow); color: var(--accent); }
.tool-divider { width: 1px; height: 24px; background: var(--glass-border); margin: 0 6px; }

.editor-body {
  display: grid;
  grid-template-columns: 1fr 280px;
  flex: 1;
  overflow: hidden;
}
.editor-preview {
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.editor-preview video {
  max-width: 100%;
  max-height: 100%;
}
.editor-sidebar {
  background: var(--bg-2);
  border-left: 1px solid var(--glass-border);
  overflow-y: auto;
  padding: 20px;
}
.editor-panel-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.editor-panel-section { margin-bottom: 24px; }
.font-select, .color-input, .speed-slider {
  width: 100%;
  padding: 8px 12px;
  background: var(--bg-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xs);
  color: white;
  font-size: 13px;
  margin-bottom: 10px;
}
.color-input { padding: 4px; height: 36px; }
.animation-options { display: flex; flex-wrap: wrap; gap: 8px; }
.anim-chip {
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: all 0.2s;
}
.anim-chip.selected { border-color: var(--accent); background: var(--accent-glow); color: var(--accent); }
.effects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.effect-btn {
  padding: 10px;
  border-radius: var(--radius-xs);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--fg-muted);
}
.effect-btn:hover { border-color: var(--accent); color: var(--accent); }
.effect-btn.active { border-color: var(--accent); background: var(--accent-glow); color: var(--accent); }

.editor-timeline {
  background: var(--bg-2);
  border-top: 1px solid var(--glass-border);
  padding: 12px 20px;
}
.timeline-track {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.track-label { font-size: 11px; color: var(--fg-muted); width: 60px; flex-shrink: 0; }
.track-bar {
  flex: 1;
  height: 24px;
  background: var(--bg-3);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.track-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.6;
  border-radius: 4px;
}
.playhead {
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: white;
  box-shadow: 0 0 4px white;
}

/* =============================================
   VOICES PAGE
   ============================================= */
.filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--fg-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn.active { border-color: var(--accent); background: var(--accent-glow); color: var(--accent); }
.voices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.voice-grid-card {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  text-align: center;
  transition: all 0.2s;
}
.voice-grid-card:hover { border-color: var(--glass-border-hover); transform: translateY(-2px); }
.voice-grid-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 24px;
}
.voice-grid-name { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.voice-grid-lang { font-size: 11px; color: var(--fg-muted); margin-bottom: 12px; }
.voice-preview-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: none;
  color: white;
  cursor: pointer;
  transition: opacity 0.2s;
}
.voice-preview-btn:hover { opacity: 0.8; }
.voice-grid-desc { font-size: 11px; color: var(--fg-muted); margin-bottom: 10px; }
.voice-meta-row { display: flex; align-items: center; gap: 8px; justify-content: center; }
.voice-duration { font-size: 11px; color: var(--fg-muted); font-family: 'Inter', sans-serif; }
.voice-soon-badge {
  font-size: 9px; font-family: 'Inter', sans-serif;
  background: rgba(255,255,255,0.08); color: var(--fg-muted);
  padding: 1px 6px; border-radius: 8px; letter-spacing: 0.3px;
}
.voices-section-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.8px; color: var(--fg-muted);
  margin-bottom: 12px; margin-top: 24px;
}

/* =============================================
   TEMPLATES PAGE
   ============================================= */
.templates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.template-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all 0.3s;
}
.template-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(255,107,53,0.2); }
.template-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-subtle);
  font-size: 32px;
}
.template-info { padding: 16px; }
.template-name { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.template-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.template-tag.brainrot { background: rgba(139,92,246,0.2); color: var(--accent-2); }
.template-tag.motivation { background: rgba(239,68,68,0.15); color: #f87171; }
.template-tag.business { background: rgba(34,197,94,0.15); color: #22c55e; }

/* =============================================
   ANALYTICS
   ============================================= */
.analytics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.chart-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}
.chart-title {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.chart-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
}
.chart-change { font-size: 12px; color: #22c55e; margin-top: 4px; }
.chart-change.negative { color: #ef4444; }

.line-chart {
  height: 200px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 20px 0 0;
}
.chart-bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.chart-bar {
  width: 100%;
  background: linear-gradient(180deg, var(--accent), rgba(255,107,53,0.2));
  border-radius: 4px 4px 0 0;
  min-height: 4px;
}
.chart-bar-label { font-size: 10px; color: var(--fg-subtle); }

.activity-table {
  width: 100%;
  border-collapse: collapse;
}
.activity-table th {
  text-align: left;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--glass-border);
}
.activity-table td {
  padding: 12px 16px;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.status-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 100px;
}
.status-pill.done { background: rgba(34,197,94,0.15); color: #22c55e; }
.status-pill.processing { background: rgba(234,179,8,0.15); color: #eab308; }

/* =============================================
   BILLING
   ============================================= */
.current-plan-card {
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(139,92,246,0.06), rgba(236,72,153,0.04));
  border: 1px solid rgba(255,107,53,0.2);
  margin-bottom: 32px;
}
.current-plan-name { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.current-plan-price { font-size: 14px; color: var(--fg-muted); margin-bottom: 8px; }
.current-plan-renew { font-size: 12px; color: var(--fg-subtle); }
.usage-bar { margin-top: 16px; }
.usage-label { font-size: 12px; color: var(--fg-muted); margin-bottom: 6px; }
.usage-track {
  height: 8px;
  background: var(--bg-3);
  border-radius: 100px;
  overflow: hidden;
}
.usage-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 100px;
}
.upgrade-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
.payment-card {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.card-icon { font-size: 24px; }
.card-info { flex: 1; }
.card-label { font-size: 12px; color: var(--fg-muted); }
.card-number { font-size: 14px; font-weight: 600; }

/* =============================================
   SETTINGS
   ============================================= */
.settings-section {
  margin-bottom: 40px;
}
.settings-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--glass-border);
}
.form-group {
  margin-bottom: 16px;
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: white;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-input:focus { outline: none; border-color: var(--accent); }
.form-input:read-only { opacity: 0.5; cursor: not-allowed; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-error {
  padding: 10px 14px;
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.4);
  border-radius: 8px;
  color: #ff6b6b;
  font-size: 13px;
}
.form-success {
  padding: 10px 14px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.4);
  border-radius: 8px;
  color: #22c55e;
  font-size: 13px;
}
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.toggle-label { font-size: 14px; font-weight: 500; }
.toggle-sub { font-size: 12px; color: var(--fg-muted); margin-top: 2px; }
.toggle-switch {
  width: 44px; height: 24px;
  border-radius: 100px;
  background: var(--bg-3);
  border: 1px solid var(--glass-border);
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
}
.toggle-switch.on { background: var(--accent); border-color: var(--accent); }
.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: white;
  transition: transform 0.2s;
}
.toggle-switch.on::after { transform: translateX(20px); }

.danger-zone {
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(239,68,68,0.05);
}
.danger-title { font-size: 14px; font-weight: 700; color: #ef4444; margin-bottom: 6px; }
.danger-desc { font-size: 13px; color: var(--fg-muted); margin-bottom: 16px; }

/* =============================================
   HERO — FUTURISTISCH WITH BACKGROUND IMAGE
   ============================================= */
.hero {
  position: relative;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.4;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.85) 0%,
    rgba(10,10,10,0.6) 50%,
    rgba(10,10,10,0.85) 100%
  );
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 500px; height: 500px;
  background: rgba(255,107,53,0.15);
  top: -100px; right: -100px;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: rgba(139,92,246,0.12);
  bottom: -80px; left: -80px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 160px 40px 100px;
  text-align: center;
}
.hero-logo-wrap {
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}
.hero-logo-img {
  width: auto;
  height: 48px;
  max-height: 48px;
  margin: 0 auto;
  display: block;
  opacity: 0.85;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(255,107,53,0.25);
  border-radius: 100px;
  background: rgba(255,107,53,0.08);
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 36px;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.hero-note {
  font-size: 13px;
  color: var(--fg-subtle);
}

/* =============================================
   MOBILE MENU (Landing)
   ============================================= */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--fg);
  padding: 8px;
  border-radius: var(--radius-xs);
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-hamburger:hover { background: var(--glass-bg); }

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 280px;
  height: 100vh;
  background: var(--bg-2);
  border-left: 1px solid var(--glass-border);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--glass-border);
}
.mobile-menu-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--fg-muted);
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-xs);
  transition: color 0.2s;
}
.mobile-menu-close:hover { color: var(--fg); }
.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all 0.15s;
}
.mobile-menu-link:hover { color: var(--fg); background: var(--glass-bg); }
.mobile-menu-link svg { flex-shrink: 0; color: var(--accent); }
.mobile-menu-link--sm { font-size: 13px; color: var(--fg-subtle); }
.mobile-menu-link--sm:hover { color: var(--fg-muted); }
.mobile-menu-divider {
  height: 1px;
  background: var(--glass-border);
  margin: 8px 0;
}
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 190;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu-overlay.open { opacity: 1; pointer-events: all; }

/* =============================================
   MOBILE RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr; }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .voices-grid { grid-template-columns: repeat(3, 1fr); }
  .editor-body { grid-template-columns: 1fr; }
  .editor-sidebar { display: none; }
  .sidebar-logo-img { width: 32px; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-brand-img { width: 40px; height: auto; max-height: 40px; border-radius: 6px; }

  /* Hero — stacked, text only */
  .hero { padding: 0; min-height: 100svh; }
  .hero-content { padding: 120px 24px 80px; }
  .hero-logo-img { width: 80px; }
  .hero-headline { letter-spacing: -1px; }
  .hero-sub { font-size: 15px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions a { width: 100%; justify-content: center; }

  /* Sections */
  .features, .pricing, .closing { padding: 80px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .section-title { letter-spacing: -0.5px; }

  /* Dashboard — collapsible sidebar */
  .sidebar {
    width: 280px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 150;
  }
  .sidebar.open { transform: translateX(0); }
  .sidebar-close {
    display: flex;
    position: absolute;
    top: 16px; right: 16px;
    background: none;
    border: none;
    color: var(--fg-muted);
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-xs);
    width: 36px; height: 36px;
    align-items: center;
    justify-content: center;
  }
  .sidebar-close:hover { color: var(--fg); background: var(--glass-bg); }
  .sidebar-logo-img { width: 36px; }
  .sidebar-logo span, .nav-item span, .user-name, .user-plan { display: inline; }
  .main-content {
    margin-left: 0;
    width: 100%;
  }

  /* Dashboard header — mobile topbar */
  .page-header {
    padding: 16px 20px 0;
    position: sticky;
    top: 0;
    background: var(--bg);
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .page-title { font-size: 18px; }
  .menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--fg-muted);
  }
  .menu-btn:hover { border-color: var(--accent); color: var(--accent); }

  /* Page body */
  .page-body { padding: 20px; }

  /* Stats grid */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-card { padding: 16px; }
  .stat-card-value { font-size: 22px; }

  /* Recent grid */
  .recent-grid { grid-template-columns: 1fr; }
  .quick-actions { grid-template-columns: 1fr; }

  /* Stepper / generator */
  .stepper-container { padding: 0; }
  .stepper { margin-bottom: 24px; }
  .step-label { font-size: 10px; }
  .step-panel { padding: 24px 20px; }
  .platform-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .platform-option { padding: 14px 8px; }
  .platform-icon { font-size: 22px; }
  .platform-name { font-size: 12px; }
  .style-grid { gap: 8px; }
  .style-chip { padding: 8px 14px; font-size: 13px; }
  .voice-scroll { flex-direction: column; overflow-x: visible; }
  .voice-card { width: 100%; }

  /* Footer */
  .footer-bottom-only { flex-direction: column; gap: 12px; text-align: center; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  .upgrade-grid { grid-template-columns: 1fr; }
  .result-layout { grid-template-columns: 1fr; }
  .analytics-grid { grid-template-columns: repeat(2, 1fr); }
  .templates-grid { grid-template-columns: 1fr; }
  .voices-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 32px; letter-spacing: -1px; }
  .hero-content { padding: 100px 20px 60px; }
  .btn-primary.btn-lg { padding: 14px 24px; font-size: 15px; }
  .btn-ghost.btn-lg { padding: 13px 24px; font-size: 15px; }
  .page-title { font-size: 16px; }
  .page-body { padding: 16px; }
  .step-panel { padding: 20px 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   DESKTOP — 1024px+ (laptop/desktop)
   ============================================= */
@media (min-width: 1024px) {
  /* Landing — constrain sections to max-width */
  .features { padding: 120px 40px; }
  .features-inner,
  .pricing-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .closing-inner { max-width: 700px; margin: 0 auto; text-align: center; }

  /* Features grid — 3 columns on desktop */
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  /* Pricing — 3 columns (only 3 plans) */
  .plans {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  /* Dashboard layout — sidebar + main side by side */
  .app-shell {
    display: flex;
    min-height: 100vh;
  }
  .sidebar {
    width: var(--sidebar-w);
    position: fixed;
    top: 0; left: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 50;
    flex-shrink: 0;
  }
  .main-content {
    margin-left: var(--sidebar-w);
    flex: 1;
    min-height: 100vh;
    overflow-x: hidden;
  }

  /* Generator form — contained width */
  .stepper-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0;
  }

  /* Stepper — horizontal row */
  .stepper {
    display: flex;
    align-items: center;
  }
  .step-item {
    flex-direction: row;
    gap: 10px;
    flex: unset;
  }

  /* Platform buttons — horizontal row */
  .platform-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .platform-option { padding: 24px 20px; }

  /* Voice cards — horizontal grid (not flex scroll) */
  .voice-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    overflow-x: unset;
    padding-bottom: 0;
  }
  .voice-card {
    width: auto;
    flex-shrink: unset;
  }

  /* Style chips — horizontal row */
  .style-grid {
    flex-wrap: nowrap;
    gap: 12px;
  }

  /* Generate button — auto width, not full-width */
  .generate-cta {
    width: auto;
    padding: 14px 28px;
    font-size: 15px;
  }

  /* Stats — 4 column */
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  /* Recent videos — 3 column */
  .recent-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Quick actions — 3 column */
  .quick-actions {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Result page — side by side */
  .result-layout {
    grid-template-columns: 1fr 360px;
  }

  /* Analytics — 4 columns */
  .analytics-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Upgrade plans — 3 columns */
  .upgrade-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Voices grid — 4 columns */
  .voices-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Templates — 3 columns */
  .templates-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Page body — constrained with max-width */
  .page-body {
    padding: 32px 40px;
    max-width: calc(100vw - var(--sidebar-w));
  }
  .page-body-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  /* Footer — horizontal layout */
  .footer { padding: 28px 40px; }
  .footer-bottom-only {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  /* Form rows */
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

/* =============================================
   LOADING SKELETON
   ============================================= */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.skeleton {
  background: linear-gradient(90deg, var(--bg-3) 25%, var(--bg-4) 50%, var(--bg-3) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

/* =============================================
   API STATUS PANEL (debug log display)
   ============================================= */
.api-status-panel {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}
.api-status-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.api-status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--fg-muted);
  padding: 3px 0;
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--fg-subtle);
  flex-shrink: 0;
}

/* =============================================
   GENERATION ERROR BOX (user-friendly)
   ============================================= */
.gen-error-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.25);
  font-size: 13px;
  color: #f87171;
  line-height: 1.5;
}
.gen-error-box svg { flex-shrink: 0; margin-top: 1px; color: #ef4444; }
/* =============================================
   ONBOARDING WELCOME SCREEN
   ============================================= */
.onboarding-page { background: var(--bg); }
.onboarding-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}
.onboarding-card {
  width: 100%;
  max-width: 540px;
  padding: 40px;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}
.onboarding-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.onboarding-logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}
.onboarding-logo span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.onboarding-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
}
.onboarding-sub {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 32px;
}
.steps-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-3);
  border: 1px solid var(--glass-border);
}
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-body { flex: 1; }
.step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.step-desc { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }
.onboarding-cta-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-primary.btn-large { padding: 16px 32px; font-size: 17px; border-radius: var(--radius); }
.btn-primary.btn-large svg { width: 18px; height: 18px; }
.onboarding-skip {
  font-size: 13px;
  color: var(--fg-subtle);
  text-decoration: none;
  transition: color 0.2s;
}
.onboarding-skip:hover { color: var(--fg-muted); }

/* =============================================
   PRICING PAGE
   ============================================= */
.pricing-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

/* Hero */
.pricing-hero {
  text-align: center;
  padding: 56px 0 48px;
}
.pricing-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin: 0 0 12px;
}
.pricing-sub {
  font-size: 16px;
  color: var(--fg-muted);
  margin: 0 0 36px;
}

/* Billing Toggle */
.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.toggle-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-subtle);
  transition: color 0.2s;
  cursor: pointer;
}
.toggle-label.active { color: var(--fg); }
.toggle-switch {
  width: 48px;
  height: 26px;
  border-radius: 100px;
  background: var(--bg-3);
  border: 1px solid var(--glass-border);
  position: relative;
  cursor: pointer;
  transition: all 0.25s;
  padding: 0;
}
.toggle-switch.on { background: var(--accent-2); border-color: var(--accent-2); }
.toggle-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: white;
  transition: transform 0.25s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.toggle-switch.on .toggle-thumb { transform: translateX(22px); }
.save-badge {
  font-size: 11px;
  font-weight: 700;
  background: rgba(34,197,94,0.15);
  color: #22c55e;
  border: 1px solid rgba(34,197,94,0.3);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}

/* Plan Cards Grid */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}
.plan-card {
  padding: 32px 28px;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.plan-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); }

/* Pro highlight card */
.plan-card--highlight {
  border-color: var(--accent) !important;
  background: linear-gradient(160deg, rgba(255,107,53,0.08) 0%, rgba(139,92,246,0.05) 50%, rgba(236,72,153,0.03) 100%) !important;
  box-shadow:
    0 0 0 1px rgba(255,107,53,0.3),
    0 0 50px rgba(255,107,53,0.12),
    0 0 25px rgba(139,92,246,0.08);
  transform: scale(1.03);
}
.plan-card--highlight:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(255,107,53,0.5),
    0 0 70px rgba(255,107,53,0.2),
    0 0 35px rgba(139,92,246,0.12);
}

/* Neon glow pulse on Pro card */
.plan-card--highlight::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,107,53,0.4), rgba(139,92,246,0.4), rgba(236,72,153,0.4));
  z-index: -1;
  animation: neon-pulse 3s ease-in-out infinite;
  filter: blur(12px);
  opacity: 0.6;
}
@keyframes neon-pulse {
  0%,100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* Badge */
.plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(255,107,53,0.4);
}

/* Plan header */
.plan-header { margin-bottom: 20px; }
.plan-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.plan-card--highlight .plan-name { color: var(--accent); }
.plan-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.plan-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
}
.plan-period { font-size: 14px; color: var(--fg-muted); }
.plan-annual-note {
  font-size: 12px;
  color: #22c55e;
  margin-bottom: 4px;
  display: none;
}
.plan-description { font-size: 13px; color: var(--fg-muted); line-height: 1.5; margin-top: 8px; }

/* CTA Button */
.plan-cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  margin-bottom: 24px;
}
.plan-cta:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.plan-cta-pro {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none;
  color: white;
  box-shadow: 0 4px 20px rgba(255,107,53,0.35);
}
.plan-cta-pro:hover {
  opacity: 0.92;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,107,53,0.5), 0 0 20px rgba(139,92,246,0.3);
}

/* Feature list */
.plan-features { list-style: none; flex: 1; }
.plan-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--fg);
}
.plan-feature-item:last-child { border-bottom: none; }
.plan-feature-item--disabled { color: var(--fg-subtle); }
.plan-feature-item svg { flex-shrink: 0; }

/* Comparison Table */
.comparison-section { margin-bottom: 56px; }
.comparison-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
  letter-spacing: -0.5px;
}
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.comparison-table th {
  padding: 16px 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
  background: var(--bg-2);
  color: var(--fg);
}
.comparison-table th.comparison-feature-col { text-align: left; }
.comparison-highlight-col {
  background: rgba(255,107,53,0.06) !important;
  border-left: 1px solid rgba(255,107,53,0.2) !important;
  border-right: 1px solid rgba(255,107,53,0.2) !important;
}
.comparison-plan-price {
  font-size: 12px;
  font-weight: 400;
  color: var(--fg-muted);
  display: block;
  margin-top: 2px;
}
.comparison-plan-price span { font-size: 11px; }
.comparison-table td { padding: 14px 20px; font-size: 13px; text-align: center; }
.comparison-row--alt { background: rgba(255,255,255,0.02); }
.comparison-feature-name { text-align: left; color: var(--fg-muted); font-weight: 500; }
.comparison-cell { }
.comparison-text { color: var(--fg); font-weight: 600; }
.check-icon { display: block; margin: 0 auto; }
.cross-icon { display: block; margin: 0 auto; }

/* FAQ */
.pricing-faq {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.faq-item {
  padding: 20px;
  border-radius: var(--radius-sm);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}
.faq-q {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--fg);
}
.faq-a { font-size: 12px; color: var(--fg-muted); line-height: 1.6; }

/* =============================================
   AUTH PAGES
   ============================================= */
.auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,107,53,0.08) 0%, rgba(139,92,246,0.05) 40%, transparent 70%);
}
.auth-brand {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
}
.auth-card {
  width: 100%;
  max-width: 420px;
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
}
.auth-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--fg);
}
.auth-sub {
  color: var(--fg-muted);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.5;
}
.auth-link {
  color: var(--accent);
  font-weight: 500;
}
.auth-link:hover { text-decoration: underline; }
.auth-form { display: flex; flex-direction: column; gap: 16px; margin-bottom: 16px; }
.auth-submit { width: 100%; justify-content: center; margin-top: 8px; }
.auth-terms { font-size: 12px; color: var(--fg-subtle); text-align: center; line-height: 1.5; }
.auth-error {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #ef4444;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 16px;
}
.auth-success {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #22c55e;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 16px;
}
.field-error {
  color: #ef4444;
  font-size: 13px;
  margin-top: 4px;
  padding-left: 2px;
}
.form-input.input-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 2px rgba(239,68,68,0.15);
}

/* Mobile */
@media (max-width: 768px) {
  .pricing-page { padding: 0 20px 60px; }
  .pricing-hero { padding: 40px 0 32px; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card--highlight { transform: scale(1); }
  .plan-card--highlight:hover { transform: translateY(-4px); }
  .pricing-faq { grid-template-columns: 1fr; }
  .auth-card { padding: 28px 20px; }
}

/* =============================================
   HERO NEW — FLOATING BADGES & TRUST
   ============================================= */
.hero-float-badges {
  max-width: 1100px;
  margin: 0 auto 24px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.float-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  backdrop-filter: blur(8px);
  animation: float-in 0.8s ease-out both;
}
.float-badge-1 { animation-delay: 0.1s; }
.float-badge-2 { animation-delay: 0.25s; }
@keyframes float-in {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.float-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.6);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.float-badge-star { color: #fbbf24; font-size: 13px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
  margin-bottom: 8px;
}
.hero-trust-item {
  font-size: 12px;
  color: var(--fg-muted);
}
.hero-trust-sep { color: var(--fg-subtle); }

/* Hero demo phones adjustments */
.demo-phones { padding-top: 0; }

/* Phone badge overlay */
.phone-badge-overlay {
  position: absolute;
  top: 8px; left: 8px;
}
.phone-badge-text {
  font-size: 7px;
  font-weight: 700;
  color: #22c55e;
  background: rgba(0,0,0,0.7);
  border-radius: 100px;
  padding: 3px 8px;
  letter-spacing: 0.3px;
  backdrop-filter: blur(4px);
  font-family: 'Space Grotesk', sans-serif;
}

/* Presenter play button (large on right phone) */
.presenter-play-btn-lg {
  width: 60px; height: 60px;
  background: rgba(236,72,153,0.4);
  border: 2px solid rgba(236,72,153,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 30px rgba(236,72,153,0.4);
  cursor: pointer;
  transition: all 0.3s;
}
.presenter-play-btn-lg:hover {
  background: rgba(236,72,153,0.7);
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(236,72,153,0.6);
}

/* =============================================
   STATS SECTION
   ============================================= */
.stats {
  padding: 64px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 6px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-star { color: #fbbf24; -webkit-text-fill-color: #fbbf24; font-size: 22px; }
.stat-label { font-size: 13px; color: var(--fg-muted); }
.stat-div {
  width: 1px;
  height: 48px;
  background: var(--glass-border);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { padding: 120px 40px; background: var(--bg); }
.testimonials-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  padding: 28px;
  transition: all 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,107,53,0.4);
  box-shadow: 0 0 30px rgba(255,107,53,0.1), 0 20px 40px rgba(0,0,0,0.4);
}
.testimonial-stars {
  font-size: 16px;
  color: #fbbf24;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-quote {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 600; }
.testimonial-role { font-size: 12px; color: var(--fg-subtle); }

/* =============================================
   COMPARISON TABLE
   ============================================= */
.comparison { padding: 120px 40px; background: var(--bg-2); }
.comparison-table-wrap {
  max-width: 800px;
  margin: 0 auto;
  overflow-x: auto;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.comparison-table th {
  padding: 16px 24px;
  text-align: left;
}
.comparison-header-traditional {
  background: var(--bg-3);
  border-bottom: 1px solid var(--glass-border);
}
.comparison-header-clipforge {
  background: linear-gradient(135deg, rgba(255,107,53,0.08), rgba(139,92,246,0.06));
  border-bottom: 2px solid var(--accent);
}
.comparison-method-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}
.comparison-header-clipforge .comparison-method-label { color: var(--accent); }
.comparison-method-sub { font-size: 11px; color: var(--fg-subtle); font-weight: 400; }
.comparison-row td {
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 14px;
}
.comparison-row-last td { border-bottom: none; }
.comparison-label { color: var(--fg-muted); }
.comparison-val-bad { color: rgba(239,68,68,0.8); }
.comparison-val-good { color: #22c55e; font-weight: 600; }
.comparison-cta {
  max-width: 800px;
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.comparison-result {
  font-size: 16px;
  color: var(--fg-muted);
}
.comparison-result strong { color: var(--accent); }

/* =============================================
   DEMO SECTION
   ============================================= */
.demo-section-page { padding: 120px 40px; background: var(--bg); }
.demo-video-wrap { max-width: 800px; margin: 0 auto; }
.demo-video-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bg-2);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(255,107,53,0.15), 0 40px 80px rgba(0,0,0,0.5);
}
.demo-video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
.demo-play-btn-large {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(255,107,53,0.5), 0 0 80px rgba(139,92,246,0.3);
  transition: all 0.3s;
}
.demo-video-frame:hover .demo-play-btn-large {
  transform: scale(1.1);
  box-shadow: 0 0 60px rgba(255,107,53,0.7), 0 0 100px rgba(139,92,246,0.4);
}
.demo-video-text {
  font-size: 14px;
  color: var(--fg-muted);
}
.demo-video-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.demo-platform-badges {
  position: absolute;
  bottom: 20px; right: 20px;
  display: flex;
  gap: 8px;
}
.demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.demo-badge-tiktok { background: rgba(0,0,0,0.7); color: white; }
.demo-badge-reels { background: rgba(225,48,108,0.3); color: white; border: 1px solid rgba(225,48,108,0.5); }
.demo-badge-shorts { background: rgba(255,0,0,0.3); color: white; border: 1px solid rgba(255,0,0,0.5); }

/* =============================================
   FEATURE ICON COLOR VARIANTS
   ============================================= */
.feature-icon-orange {
  background: var(--accent-glow);
  border: 1px solid rgba(255,107,53,0.2);
  color: var(--accent);
}
.feature-icon-purple {
  background: var(--accent-2-glow);
  border: 1px solid rgba(139,92,246,0.2);
  color: var(--accent-2);
}
.feature-icon-pink {
  background: var(--accent-3-glow);
  border: 1px solid rgba(236,72,153,0.2);
  color: var(--accent-3);
}

/* =============================================
   FEATURES GRID VARIANT (3-col)
   ============================================= */
.features-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* =============================================
   TRUSTED SECTION — UPGRADED
   ============================================= */
.trusted { padding: 48px 40px; background: var(--bg-2); }
.trusted-inner { gap: 24px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .tst2-grid,
  .fv2-grid { grid-template-columns: 1fr 1fr; }
  .wf2-steps { flex-direction: column; }
  .wf2-connector { display: none; }
  .pv2-plans { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .tst2-grid,
  .fv2-grid { grid-template-columns: 1fr; }
  .hero-v2 { padding: 120px 20px 60px; }
  .hero-v2-phones { flex-direction: column; gap: 24px; }
  .hvp-center { order: -1; }
  .hvp { display: none; }
  .hvp-center { display: flex; }
  .features-v2, .testimonials-v2, .pricing-v2, .workflow-v2 { padding: 80px 20px; }
  .cta-v2 { padding: 80px 20px; }
  .pv2-plans { grid-template-columns: 1fr; }
  .wf2-steps { gap: 0; }
}

/* =============================================
   HERO V2 — BOLD NEW LANDING HERO
   ============================================= */
.hero-v2 {
  padding: 140px 40px 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero-v2-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  top: -200px; left: -100px;
  background: radial-gradient(ellipse, rgba(255,107,53,0.3) 0%, transparent 70%);
  animation: orb-float 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  top: 0; right: -100px;
  background: radial-gradient(ellipse, rgba(139,92,246,0.3) 0%, transparent 70%);
  animation: orb-float 10s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 400px; height: 400px;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(236,72,153,0.2) 0%, transparent 70%);
  animation: orb-float 12s ease-in-out infinite;
}
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 10px) scale(0.97); }
}
.hero-v2-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.hero-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(255,107,53,0.25);
  background: var(--accent-glow);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-v2-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin-bottom: 20px;
}
.hero-v2-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero-v2-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.hero-v2-cta { font-size: 15px; padding: 14px 28px; }
.hero-v2-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  color: var(--fg-muted);
  flex-wrap: wrap;
}
.hero-v2-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-v2-trust-sep { color: var(--fg-subtle); }

/* Hero v2 phones */
.hero-v2-phones {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 60px;
}
.hvp {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hvp-glow {
  position: absolute;
  inset: -20px;
  border-radius: 40px;
  filter: blur(30px);
  opacity: 0.6;
  z-index: 0;
  animation: glow-pulse 3s ease-in-out infinite;
}
.hvp-glow-orange {
  background: radial-gradient(ellipse, rgba(255,107,53,0.5) 0%, rgba(255,50,20,0.2) 40%, transparent 70%);
}
.hvp-glow-pink {
  background: radial-gradient(ellipse, rgba(236,72,153,0.5) 0%, rgba(139,92,246,0.2) 40%, transparent 70%);
  animation-delay: 1.5s;
}
.hvp-frame {
  position: relative;
  z-index: 1;
  width: 210px;
  background: #0a0a18;
  border-radius: 32px;
  padding: 12px;
  border: 1.5px solid rgba(255,255,255,0.15);
}
.hvp-left .hvp-frame { border-color: rgba(255,107,53,0.35); box-shadow: 0 0 0 1px rgba(255,107,53,0.3), 0 0 30px rgba(255,107,53,0.2), 0 20px 60px rgba(0,0,0,0.6); }
.hvp-right .hvp-frame { border-color: rgba(236,72,153,0.35); box-shadow: 0 0 0 1px rgba(236,72,153,0.3), 0 0 30px rgba(236,72,153,0.2), 0 20px 60px rgba(0,0,0,0.6); }
.hvp-notch {
  width: 80px; height: 22px;
  background: #050510;
  border-radius: 12px;
  margin: 0 auto 8px;
}
.hvp-screen {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #0a0a18;
}
.hvp-img { width: 100%; display: block; border-radius: 20px; }
.hvp-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(13,13,26,0.85));
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hvp-overlay-result { top: 0; bottom: 0; background: rgba(13,13,26,0.45); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.hvp-step-label { font-size: 7px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px; }
.hvp-idea { font-size: 8px; font-weight: 600; color: white; font-family: 'Space Grotesk', sans-serif; }
.hvp-platforms { display: flex; gap: 4px; }
.hvp-platform { font-size: 7px; padding: 3px 7px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 3px; }
.hvp-platform-active { background: rgba(255,107,53,0.2); border-color: rgba(255,107,53,0.5); color: #FF6B35; }
.hvp-gen-btn {
  background: linear-gradient(135deg, #8B5CF6, #EC4899);
  color: white;
  font-size: 8px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  animation: btn-glow 2s ease-in-out infinite;
}
.hvp-play-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.hvp-video-badge { position: absolute; bottom: 10px; left: 10px; right: 10px; display: flex; justify-content: space-between; align-items: center; font-size: 8px; font-weight: 600; color: white; }
.hvp-video-stats { background: rgba(255,107,53,0.8); padding: 2px 8px; border-radius: 20px; font-size: 7px; }
.hvp-home-bar { width: 80px; height: 4px; background: rgba(255,255,255,0.2); border-radius: 4px; margin: 8px auto 0; }

/* Center logo area */
.hvp-center { display: none; flex-direction: column; align-items: center; gap: 12px; }
.hvp-logo { width: 80px; height: auto; border-radius: 12px; }
.hvp-result-tag { font-size: 11px; color: var(--fg-muted); display: flex; align-items: center; gap: 6px; }

/* =============================================
   HOT STREAK BAR
   ============================================= */
.hot-streak {
  border-top: 1px solid rgba(255,107,53,0.15);
  border-bottom: 1px solid rgba(255,107,53,0.15);
  padding: 28px 40px;
  background: linear-gradient(180deg, rgba(255,107,53,0.03) 0%, transparent 100%);
}
.hot-streak-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.hsi-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}
.hsi-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hsi-label { font-size: 12px; color: var(--fg-muted); margin-top: 2px; }
.hsi-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.08); }

/* =============================================
   FEATURES V2
   ============================================= */
.features-v2 { padding: 100px 40px; background: var(--bg); }
.features-v2 .section-head { margin-bottom: 48px; }
.features-v2-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.fv2-card {
  padding: 28px 24px;
  transition: all 0.3s ease;
  text-align: left;
}
.fv2-card:hover { border-color: rgba(255,107,53,0.4); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(255,107,53,0.1); }
.fv2-card-big { grid-column: 1 / -1; }
.fv2-card-header { display: flex; gap: 20px; align-items: flex-start; }
.fv2-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fv2-icon-orange { background: var(--accent-glow); border: 1px solid rgba(255,107,53,0.2); color: var(--accent); }
.fv2-icon-purple { background: var(--accent-2-glow); border: 1px solid rgba(139,92,246,0.2); color: var(--accent-2); }
.fv2-icon-pink { background: var(--accent-3-glow); border: 1px solid rgba(236,72,153,0.2); color: var(--accent-3); }
.fv2-card-meta { flex: 1; }
.fv2-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.fv2-tag-orange { background: rgba(255,107,53,0.15); color: var(--accent); border: 1px solid rgba(255,107,53,0.2); }
.fv2-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
}
.fv2-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
.fv2-comparison { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.fvc { display: flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 8px; }
.fvc-bad { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); }
.fvc-good { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2); }
.fvc-time { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; }
.fvc-bad .fvc-time { color: #ef4444; }
.fvc-good .fvc-time { color: #22c55e; }
.fvc-label { font-size: 11px; color: var(--fg-muted); }
.fvc-arrow { color: var(--fg-subtle); font-size: 18px; }
.fv2-stat {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}
.fv2-stat-orange { background: rgba(255,107,53,0.15); color: var(--accent); }
.fv2-stat-purple { background: rgba(139,92,246,0.15); color: var(--accent-2); }
.fv2-stat-pink { background: rgba(236,72,153,0.15); color: var(--accent-3); }

/* =============================================
   WORKFLOW V2
   ============================================= */
.workflow-v2 { padding: 100px 40px; background: var(--bg-2); }
.workflow-v2 .section-head { margin-bottom: 60px; }
.wf2-steps {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.wf2-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  gap: 12px;
  position: relative;
}
.wf2-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(255,107,53,0.3);
  position: relative;
  z-index: 2;
}
.wf2-step-body {}
.wf2-step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.wf2-step-desc { font-size: 13px; color: var(--fg-muted); line-height: 1.6; }
.wf2-step-example {
  font-size: 12px;
  color: var(--accent);
  font-style: italic;
  margin-top: 8px;
  padding: 6px 12px;
  background: var(--accent-glow);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
}
.wf2-step-tags { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.wf2-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--fg-muted);
}
.wf2-step-icon {
  width: 40px; height: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
}
.wf2-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40px;
  flex-shrink: 0;
  padding-top: 28px;
  position: relative;
}
.wf2-connector-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2), var(--accent-3));
  min-height: 40px;
}
.wf2-connector-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 8px rgba(139,92,246,0.5);
}

/* =============================================
   TESTIMONIALS V2
   ============================================= */
.testimonials-v2 { padding: 100px 40px; background: var(--bg); }
.testimonials-v2 .section-head { margin-bottom: 48px; }
.tst2-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tst2-card {
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.tst2-card:hover { border-color: rgba(139,92,246,0.4); transform: translateY(-3px); }
.tst2-card-featured { border-color: rgba(255,107,53,0.3) !important; background: linear-gradient(180deg, rgba(255,107,53,0.06) 0%, rgba(139,92,246,0.04) 100%) !important; }
.tst2-featured-badge {
  position: absolute;
  top: 0; right: 0;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  border-radius: 0 12px 0 12px;
}
.tst2-metric { margin-bottom: 12px; }
.tst2-metric-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tst2-metric-label { font-size: 12px; color: var(--fg-muted); display: block; }
.testimonial-stars { font-size: 14px; letter-spacing: 2px; color: #f59e0b; margin-bottom: 10px; }
.tst2-quote { font-size: 14px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.tst2-author { display: flex; align-items: center; gap: 10px; }
.tst2-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  color: white;
  flex-shrink: 0;
}
.tst2-avatar-orange { background: linear-gradient(135deg, #FF6B35, #ff9068); }
.tst2-avatar-purple { background: linear-gradient(135deg, #8B5CF6, #a78bfa); }
.tst2-avatar-pink { background: linear-gradient(135deg, #EC4899, #f472b6); }
.tst2-avatar-green { background: linear-gradient(135deg, #10b981, #34d399); }
.tst2-avatar-blue { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.tst2-avatar-yellow { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.tst2-info { flex: 1; min-width: 0; }
.tst2-name { font-size: 14px; font-weight: 600; }
.tst2-role { font-size: 12px; color: var(--fg-subtle); }
.tst2-result {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  background: rgba(34,197,94,0.15);
  color: #22c55e;
  white-space: nowrap;
  flex-shrink: 0;
}

/* =============================================
   PRICING V2
   ============================================= */
.pricing-v2 { padding: 100px 40px; background: var(--bg); }
.pricing-v2 .section-head { margin-bottom: 48px; }
.pv2-plans {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
.pv2-plan { padding: 28px 24px; position: relative; }
.pv2-plan:hover { transform: translateY(-2px); }
.pv2-plan-featured { border-color: var(--accent) !important; background: linear-gradient(180deg, rgba(255,107,53,0.08) 0%, rgba(139,92,246,0.05) 50%, rgba(236,72,153,0.03) 100%) !important; box-shadow: 0 0 40px rgba(255,107,53,0.15), 0 0 20px rgba(139,92,246,0.1); }
.pv2-popular-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.pv2-plan-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--fg-muted);
  margin-bottom: 10px;
}
.pv2-plan-featured .pv2-plan-name { color: var(--accent); }
.pv2-plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.pv2-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1.5px;
}
.pv2-period { font-size: 14px; color: var(--fg-muted); }
.pv2-plan-desc { font-size: 13px; color: var(--fg-muted); margin-bottom: 20px; line-height: 1.5; }
.pv2-plan-features { list-style: none; margin-bottom: 20px; }
.pv2-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--fg);
}
.pv2-feature:last-child { border-bottom: none; }
.pv2-feature pv2-feature-off { color: var(--fg-subtle); }
.pv2-feature pv2-feature-bold strong { color: var(--accent); }
.pv2-feature svg { flex-shrink: 0; color: #22c55e; }
.pv2-feature-off svg { color: var(--fg-subtle) !important; }
.pv2-feature-off { color: var(--fg-subtle); text-decoration: line-through; }
.pv2-feature-bold strong { color: var(--accent); }
.pv2-plan-cta {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  color: var(--fg);
}
.pv2-plan-cta:hover { border-color: var(--accent); color: var(--accent); }
.pv2-plan-cta-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none;
  color: white;
  box-shadow: 0 4px 16px rgba(255,107,53,0.3);
}
.pv2-plan-cta-primary:hover { opacity: 0.9; color: white; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,107,53,0.5); }
.pv2-plan-note { font-size: 11px; color: var(--fg-subtle); text-align: center; margin-top: 10px; }
.pv2-comparison-bar {
  max-width: 700px;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}
.pv2-comp-item { display: flex; flex-direction: column; align-items: center; }
.pv2-comp-num { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 800; color: white; }
.pv2-comp-label { font-size: 11px; color: var(--fg-muted); }
.pv2-comp-sep { color: var(--fg-subtle); font-size: 18px; }

/* =============================================
   CTA V2
   ============================================= */
.cta-v2 {
  padding: 120px 40px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-v2-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-v2-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}
.cta-v2-orb-1 {
  width: 500px; height: 500px;
  bottom: -150px; left: -100px;
  background: radial-gradient(ellipse, rgba(255,107,53,0.4) 0%, transparent 70%);
}
.cta-v2-orb-2 {
  width: 400px; height: 400px;
  top: -100px; right: -50px;
  background: radial-gradient(ellipse, rgba(139,92,246,0.4) 0%, transparent 70%);
}
.cta-v2-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(255,107,53,0.25);
  background: var(--accent-glow);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.cta-v2-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-v2-sub { font-size: 16px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 32px; }
.cta-v2-btn { font-size: 15px; padding: 14px 32px; }
.cta-v2-note { margin-top: 16px; font-size: 13px; color: var(--fg-subtle); }
