/* ============================================================
   QWINT CAPTION LANDING PAGE - CSS
   Design: Dark SaaS, Purple/Violet Gradients
   ============================================================ */

/* ---------- CSS RESET & VARIABLES ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --purple: #6A00FF;
  --violet: #A259FF;
  --purple-dark: #4A00CC;
  --bg: #0A0A0F;
  --bg-card: #111118;
  --bg-card-2: #16161F;
  --bg-glass: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --border-purple: rgba(106, 0, 255, 0.3);
  --text: #F0F0FF;
  --text-muted: #8A8AA0;
  --text-dim: #5A5A70;
  --gradient-primary: linear-gradient(135deg, #6A00FF 0%, #A259FF 100%);
  --gradient-glow: radial-gradient(ellipse at center, rgba(106, 0, 255, 0.3) 0%, transparent 70%);
  --shadow-purple: 0 0 40px rgba(106, 0, 255, 0.25);
  --shadow-card: 0 4px 40px rgba(0, 0, 0, 0.6);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---------- UTILITY ---------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.desktop-only {
  display: inline;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  font-size: 15px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 14px;
}

.btn-lg {
  padding: 15px 28px;
  font-size: 16px;
}

.btn-xl {
  padding: 18px 36px;
  font-size: 17px;
  font-weight: 700;
}

.btn-hero {
  padding: 18px 36px;
  font-size: 18px;
  font-weight: 800;
  border-radius: 12px;
  letter-spacing: -0.02em;
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 24px rgba(106, 0, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(106, 0, 255, 0.5);
  filter: brightness(1.1);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-purple);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-purple);
}

.btn-outline:hover {
  background: rgba(106, 0, 255, 0.1);
  border-color: var(--violet);
  transform: translateY(-2px);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-display);
}

.logo strong {
  color: var(--violet);
}

.logo-icon {
  display: flex;
}

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text);
  background: var(--bg-glass);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px 24px;
  background: rgba(10, 10, 15, 0.98);
  border-bottom: 1px solid var(--border);
}

.mobile-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu.open {
  display: flex;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(106, 0, 255, 0.2) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  animation: glowPulse 4s ease-in-out infinite;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(162, 89, 255, 0.15) 0%, transparent 70%);
  bottom: 0;
  right: -50px;
  animation: glowPulse 4s ease-in-out infinite 2s;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(106, 0, 255, 0.12);
  border: 1px solid rgba(106, 0, 255, 0.3);
  color: var(--violet);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeInDown 0.6s ease;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--violet);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-subheadline {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
  animation: fadeInUp 0.7s ease 0.3s both;
  scroll-margin-top: 100px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.hero-no-signup {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 44px;
  animation: fadeInUp 0.7s ease 0.45s both;
  letter-spacing: 0.01em;
}

.avatar-stack {
  display: flex;
}

.avatar-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -10px;
  background: var(--bg-card);
}

.avatar-img:first-child {
  margin-left: 0;
}

.social-proof-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.stars {
  color: #FFB800;
  font-size: 13px;
}

.social-proof-text span {
  font-size: 13px;
  color: var(--text-muted);
}

.social-proof-text strong {
  color: var(--text);
}

/* ---------- PREMIERE MOCKUP ---------- */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 900px;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.mockup-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100px;
  background: radial-gradient(ellipse, rgba(106, 0, 255, 0.4) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.hero-video-shell {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #080812;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(106, 0, 255, 0.24);
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.premiere-mockup {
  background: #1a1a24;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(106, 0, 255, 0.2);
}

.premiere-titlebar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #111118;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.titlebar-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red {
  background: #FF5F57;
}

.dot-yellow {
  background: #FEBC2E;
}

.dot-green {
  background: #28C840;
}

.titlebar-title {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 8px;
}

.premiere-body {
  display: grid;
  grid-template-columns: 1fr 240px;
  min-height: 320px;
}

.premiere-panel {
  padding: 16px;
}

.premiere-preview {
  background: #111118;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.video-preview {
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
}

.video-frame {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #0d0d1a, #1a0033);
}

.video-scene {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0.7;
}

.person-head {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #A259FF, #6A00FF);
  opacity: 0.5;
}

.person-body {
  width: 60px;
  height: 50px;
  border-radius: 30px 30px 0 0;
  background: linear-gradient(135deg, #A259FF, #6A00FF);
  opacity: 0.3;
}

.caption-overlay {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  padding: 0 16px;
}

.caption-line {
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  padding: 4px 8px;
  border-radius: 4px;
  display: none;
  border-left: 2px solid var(--violet);
}

.caption-line.active {
  display: block;
}

.video-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: #111;
}

.vc-btn {
  font-size: 10px;
  cursor: pointer;
}

.vc-timeline {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.vc-progress {
  height: 100%;
  width: 30%;
  background: var(--gradient-primary);
  border-radius: 2px;
  animation: videoProgress 8s linear infinite;
}

@keyframes videoProgress {
  0% {
    width: 5%
  }

  100% {
    width: 95%
  }
}

.vc-time {
  font-size: 10px;
  color: var(--text-muted);
}

/* Plugin Panel */
.premiere-plugin-panel {
  background: #1a1a24;
}

.plugin-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.plugin-name {
  font-size: 13px;
  font-weight: 600;
}

.plugin-badge-ai {
  font-size: 9px;
  font-weight: 700;
  background: var(--gradient-primary);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: auto;
}

.plugin-section-label {
  font-size: 10px;
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
  margin: 10px 0 4px;
}

.plugin-select {
  background: #111;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 11px;
  padding: 7px 10px;
  border-radius: 6px;
  cursor: pointer;
}

.plugin-style-row {
  display: flex;
  gap: 6px;
}

.style-chip {
  font-size: 10px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 5px;
  background: #111;
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.style-chip.active {
  background: rgba(106, 0, 255, 0.2);
  border-color: var(--border-purple);
  color: var(--violet);
}

.plugin-generate-btn {
  width: 100%;
  margin-top: 14px;
  padding: 10px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(106, 0, 255, 0.3);
}

.plugin-generate-btn:hover {
  filter: brightness(1.1);
}

.generate-spinner {
  display: none;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.plugin-status {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.status-line {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--text-muted);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.status-done {
  background: #00C896;
}

.status-active-dot {
  background: var(--violet);
  animation: blink 1s ease-in-out infinite;
}

.status-active {
  color: var(--text);
}

.plugin-credits-bar {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 10px;
}

.credits-label {
  color: var(--text-dim);
}

.credits-value {
  color: var(--violet);
  font-weight: 700;
}

.credits-bar-track {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 4px;
}

.credits-bar-fill {
  height: 100%;
  width: 65%;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* Timeline */
.premiere-timeline {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px 16px;
  background: #111118;
}

.timeline-label {
  font-size: 10px;
  color: var(--text-dim);
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
}

.timeline-tracks {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.track {
  height: 18px;
  display: flex;
  gap: 4px;
  align-items: center;
}

.clip {
  height: 14px;
  border-radius: 3px;
}

.clip-video {
  width: 200px;
  background: #334;
  border: 1px solid rgba(100, 100, 200, 0.3);
}

.clip.clip-short {
  width: 80px;
}

.clip-audio {
  width: 320px;
  background: #243;
  height: 14px;
  border-radius: 3px;
  border: 1px solid rgba(80, 160, 80, 0.3);
}

.track-captions {
  gap: 3px;
}

.caption-clip {
  height: 14px;
  border-radius: 3px;
  padding: 0 5px;
  font-size: 8px;
  display: flex;
  align-items: center;
  background: rgba(106, 0, 255, 0.3);
  border: 1px solid rgba(106, 0, 255, 0.5);
  color: var(--violet);
  font-weight: 600;
  flex-shrink: 0;
}

.caption-clip:nth-child(1) {
  width: 70px;
}

.caption-clip:nth-child(2) {
  width: 60px;
}

.caption-clip:nth-child(3) {
  width: 80px;
}

.caption-clip.generating {
  width: 90px;
  background: rgba(162, 89, 255, 0.2);
  animation: generatingPulse 1.2s ease-in-out infinite;
}

@keyframes generatingPulse {

  0%,
  100% {
    opacity: 0.5
  }

  50% {
    opacity: 1
  }
}

/* ---------- TRUST BADGES STRIP ---------- */
.trust-badges-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 52px;
  animation: fadeInUp 0.7s ease 0.5s both;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
}

.trust-badge:hover {
  border-color: var(--border-purple);
  background: rgba(106, 0, 255, 0.06);
  color: var(--text);
}

/* ---------- LOGO BAR ---------- */
.logo-bar {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.01);
}

.logo-bar-label {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.platform-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.platform-logo {
  opacity: 0.4;
  transition: var(--transition);
}

.platform-logo:hover {
  opacity: 0.8;
}

/* ---------- SECTION HEADER ---------- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: rgba(106, 0, 255, 0.12);
  border: 1px solid rgba(106, 0, 255, 0.25);
  color: var(--violet);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-header p {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 540px;
  margin: 0 auto;
}

/* ---------- HOW IT WORKS ---------- */
.how-it-works {
  background: rgba(255, 255, 255, 0.01);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.step-card:hover {
  border-color: var(--border-purple);
  transform: translateY(-4px);
  box-shadow: var(--shadow-purple);
}

.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: rgba(106, 0, 255, 0.12);
  line-height: 1;
  margin-bottom: 20px;
}

.step-icon {
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.step-connector {
  position: absolute;
  top: 50px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--border-purple), transparent);
  display: none;
}

.step-card:not(:last-child) .step-connector {
  display: block;
}

/* ---------- FEATURES ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--border-purple);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card-large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
  flex-wrap: wrap;
}

.feature-card-large {
  grid-column: 1 / span 2;
}

.feature-card-highlight {
  background: linear-gradient(135deg, rgba(106, 0, 255, 0.12), rgba(162, 89, 255, 0.06));
  border-color: var(--border-purple);
}

.feature-icon-wrap {
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.feature-tag {
  display: inline-block;
  background: rgba(106, 0, 255, 0.15);
  border: 1px solid var(--border-purple);
  color: var(--violet);
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 600;
  margin-top: 12px;
}

.feature-stat {
  font-size: 28px;
  font-weight: 900;
  font-family: var(--font-display);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 12px;
}

/* ---------- FREE TRIAL ---------- */
.free-trial {
  background: var(--bg);
}

.trial-card {
  position: relative;
  background: linear-gradient(135deg, rgba(106, 0, 255, 0.1) 0%, rgba(162, 89, 255, 0.05) 100%);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 48px;
  align-items: center;
  overflow: hidden;
}

.trial-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(106, 0, 255, 0.2) 0%, transparent 70%);
  top: -100px;
  right: 100px;
  pointer-events: none;
}

.trial-badge {
  display: inline-block;
  background: rgba(255, 184, 0, 0.1);
  border: 1px solid rgba(255, 184, 0, 0.3);
  color: #FFB800;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
}

.trial-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.trial-desc {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.7;
}

.trial-features-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trial-features-list li {
  font-size: 15px;
  color: var(--text-muted);
}

.trial-features-list li::first-letter {
  color: #00C896;
}

.trial-cta-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trial-note {
  font-size: 13px;
  color: var(--text-dim);
}

.trial-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.counter-circle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-label {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.counter-num {
  font-size: 36px;
  font-weight: 900;
  font-family: var(--font-display);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.counter-unit {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ---------- PRICING ---------- */
.pricing {
  background: rgba(255, 255, 255, 0.01);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-purple);
}

.pricing-card-popular {
  border-color: var(--border-purple);
  background: linear-gradient(180deg, rgba(106, 0, 255, 0.08) 0%, var(--bg-card) 100%);
  transform: scale(1.03);
}

.pricing-card-popular:hover {
  transform: scale(1.03) translateY(-4px);
}

.plan-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #fff;
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.plan-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}

.plan-credits {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.plan-features li {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dim);
}

/* ---------- DEMO ---------- */
.demo-section {}

.demo-video-wrap {
  display: flex;
  justify-content: center;
}

.demo-video-player {
  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16/9;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.demo-thumbnail {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-thumb-content {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0A0A1A, #1A0033);
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-screen-mockup {
  width: 80%;
  height: 70%;
  background: #111;
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.dsm-header {
  height: 28px;
  background: #1a1a24;
  border-bottom: 1px solid var(--border);
}

.dsm-body {
  padding: 16px;
  display: grid;
  grid-template-rows: 1fr 80px;
  gap: 12px;
  height: calc(100% - 28px);
}

.dsm-timeline {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: flex-end;
}

.dsm-track {
  height: 12px;
  border-radius: 3px;
  background: #334;
  width: 85%;
}

.dsm-track-caption {
  background: rgba(106, 0, 255, 0.4);
  width: 60%;
  animation: expandTrack 3s ease-in-out infinite;
}

@keyframes expandTrack {

  0%,
  100% {
    width: 20%
  }

  50% {
    width: 85%
  }
}

.dsm-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a14;
  border-radius: 6px;
}

.dsm-caption-text {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.typewriter {
  overflow: hidden;
  border-right: 2px solid var(--violet);
  white-space: nowrap;
  animation: typewriter 3s steps(40) infinite, blink-cursor 0.5s step-end infinite alternate;
}

@keyframes typewriter {
  0% {
    width: 0
  }

  50%,
  100% {
    width: 100%
  }
}

@keyframes blink-cursor {
  from {
    border-color: var(--violet)
  }

  to {
    border-color: transparent
  }
}

.demo-play-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  background: rgba(10, 10, 20, 0.5);
  backdrop-filter: blur(2px);
  transition: var(--transition);
}

.demo-play-overlay:hover {
  background: rgba(10, 10, 20, 0.4);
}

.demo-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 16px rgba(106, 0, 255, 0.15), var(--shadow-purple);
  transition: var(--transition);
}

.demo-play-overlay:hover .demo-play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 0 20px rgba(106, 0, 255, 0.15), var(--shadow-purple);
}

.demo-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  background: rgba(255, 255, 255, 0.01);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border-purple);
  transform: translateY(-4px);
}

.testimonial-card-featured {
  background: linear-gradient(135deg, rgba(106, 0, 255, 0.08), var(--bg-card));
  border-color: var(--border-purple);
}

.testimonial-stars {
  color: #FFB800;
  font-size: 14px;
  margin-bottom: 16px;
}

blockquote {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-style: italic;
}

blockquote::before {
  content: '"';
  font-size: 24px;
  color: var(--violet);
  margin-right: 4px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--border-purple);
}

.author-name {
  font-size: 14px;
  font-weight: 700;
}

.author-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* ---------- FAQ ---------- */
.faq {}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--border-purple);
}

.faq-item.open {
  border-color: var(--border-purple);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  font-size: 15px;
  font-weight: 600;
  gap: 16px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(106, 0, 255, 0.1);
  border: 1px solid var(--border-purple);
  color: var(--violet);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: var(--transition);
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(106, 0, 255, 0.2);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: var(--bg);
}

.final-cta-card {
  position: relative;
  background: linear-gradient(135deg, rgba(106, 0, 255, 0.12) 0%, rgba(162, 89, 255, 0.06) 50%, rgba(0, 0, 0, 0) 100%);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-lg);
  padding: 80px 64px;
  text-align: center;
  overflow: hidden;
}

.final-glow-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(106, 0, 255, 0.2) 0%, transparent 70%);
  top: -150px;
  left: -100px;
  pointer-events: none;
}

.final-glow-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(162, 89, 255, 0.15) 0%, transparent 70%);
  bottom: -100px;
  right: -50px;
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 2;
}

.final-cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.final-cta-card p {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.final-email-capture {
  display: flex;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto 20px;
}

.final-email-capture .btn {
  justify-content: center;
}

.email-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-family: var(--font-main);
  transition: var(--transition);
  outline: none;
}

.email-input:focus {
  border-color: var(--border-purple);
  background: rgba(255, 255, 255, 0.08);
}

.email-input::placeholder {
  color: var(--text-dim);
}

.final-trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-dim);
}

/* ---------- FOOTER ---------- */
.footer {
  background: #060608;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 12px;
}

.footer-company {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 4px;
}

.footer-company strong {
  color: var(--text-muted);
}

.footer-links-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-links-col a:hover {
  color: var(--violet);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--violet);
}

/* ---------- MODAL ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  max-width: 380px;
  width: 90%;
  box-shadow: var(--shadow-purple), var(--shadow-card);
}

.modal-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.modal-box h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.modal-box p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card-large {
    grid-column: span 1;
  }

  .premiere-body {
    grid-template-columns: 1fr;
  }

  .premiere-plugin-panel {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .nav-links,
  #nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .desktop-only {
    display: none;
  }

  .hero {
    padding: 120px 0 64px;
    min-height: auto;
  }

  .hero-headline {
    font-size: clamp(30px, 8vw, 48px);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-connector {
    display: none !important;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card-large {
    grid-column: span 1;
  }

  .trial-card {
    grid-template-columns: 1fr;
    padding: 40px 28px;
  }

  .trial-visual {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card-popular {
    transform: none;
  }

  .pricing-card-popular:hover {
    transform: translateY(-4px);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-card {
    padding: 48px 24px;
  }

  .final-email-capture {
    flex-direction: column;
  }

  .final-email-capture .btn {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .premiere-mockup {
    display: none;
  }

  .hero-visual {
    display: block;
    margin-top: 12px;
  }

  .hero-social-proof {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-group .btn {
    text-align: center;
    justify-content: center;
  }

  .trial-cta-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .final-trust-badges {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .step-card {
    padding: 24px;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .trust-badges-strip {
    gap: 8px;
  }

  .trust-badge {
    font-size: 11px;
    padding: 6px 10px;
  }
}

/* ============================================================
   INSTANT DOWNLOAD SECTION
   ============================================================ */
.instant-download {
  padding: 0 0 24px;
  background: var(--bg);
}

.dl-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: linear-gradient(135deg, rgba(106, 0, 255, 0.18) 0%, rgba(162, 89, 255, 0.08) 50%, rgba(0, 0, 0, 0.3) 100%);
  border: 2px solid var(--border-purple);
  border-radius: 24px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}

.dl-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(106, 0, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.dl-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--violet);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.dl-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  line-height: 1.15;
}

.dl-subtitle {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.dl-subtitle strong {
  color: var(--text);
}

.dl-main-btn {
  font-size: 18px !important;
  font-weight: 800 !important;
  padding: 18px 40px !important;
  border-radius: 12px !important;
  box-shadow: 0 6px 32px rgba(106, 0, 255, 0.45) !important;
  animation: cta-pulse 2.5s ease-in-out infinite;
}

@keyframes cta-pulse {

  0%,
  100% {
    box-shadow: 0 6px 32px rgba(106, 0, 255, 0.45);
  }

  50% {
    box-shadow: 0 6px 48px rgba(106, 0, 255, 0.7), 0 0 0 8px rgba(106, 0, 255, 0.1);
  }
}

.dl-meta {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 14px;
}

.dl-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1;
}

.dl-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  transition: var(--transition);
}

.dl-step:hover {
  border-color: var(--border-purple);
  background: rgba(106, 0, 255, 0.06);
}

.dl-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  color: #fff;
}

.dl-step-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dl-step-info strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.dl-step-info span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.dl-step-arrow {
  text-align: center;
  font-size: 16px;
  color: rgba(106, 0, 255, 0.5);
  padding: 4px 0;
  margin-left: 32px;
}

@media (max-width: 768px) {
  .dl-box {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    gap: 32px;
  }

  .dl-main-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   STICKY MOBILE DOWNLOAD CTA
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: rgba(10, 10, 15, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-purple);
  padding: 12px 20px 20px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-btn {
  font-size: 16px !important;
  font-weight: 800 !important;
  padding: 15px 24px !important;
  border-radius: 12px !important;
  margin-bottom: 2px;
}

.sticky-cta-note {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 7px;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: block;
  }

  body {
    padding-bottom: 92px;
  }
}

/* ---------- TOAST NOTIFICATIONS ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 24px;
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  text-align: center;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

.toast.error {
  border-color: rgba(239, 68, 68, 0.45);
  background: rgba(239, 68, 68, 0.1);
}