/* ============================================================
   EASYTIMELINE — GLOBAL DESIGN SYSTEM
   ============================================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES (TOKENS)
   ============================================================ */
:root {
  /* ── Background ── */
  --bg-primary: #0f0f0f;
  --bg-secondary: #141414;
  --bg-card: rgba(20, 22, 20, 0.8);
  --bg-glass: rgba(255, 255, 255, 0.035);
  --bg-surface: #1a1a1a;

  /* ── Green Accent (solid, purposeful) ── */
  --neon-green: #2dde73;
  --neon-green-dim: rgba(45, 222, 115, 0.14);
  --neon-green-glow: rgba(45, 222, 115, 0.28);
  --neon-green-soft: rgba(45, 222, 115, 0.08);
  --green-btn: #1fd668;
  /* button fill – richest shade */

  /* ── Text ── */
  --text-primary: #F5F5F5;
  --text-secondary: rgba(245, 245, 245, 0.60);
  --text-muted: rgba(245, 245, 245, 0.30);

  /* ── Borders ── */
  --border-glass: rgba(45, 222, 115, 0.15);
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-card: rgba(255, 255, 255, 0.09);

  /* ── Typography ── */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  /* ── Layout ── */
  --section-padding: 110px 0;
  --container-max: 1440px;
  /* wider desktop layout */

  /* ── Radii ── */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* ── Shadows (toned-down glow) ── */
  --shadow-glow: 0 0 28px rgba(45, 222, 115, 0.16);
  --shadow-glow-sm: 0 0 14px rgba(45, 222, 115, 0.12);
  --shadow-glow-lg: 0 0 56px rgba(45, 222, 115, 0.22);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.45);

  /* ── Transitions ── */
  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-med: 0.36s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.56s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

.section {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--neon-green-soft);
  border: 1px solid var(--border-glass);
  color: var(--neon-green);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--neon-green);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section-title .highlight {
  color: var(--neon-green);
  position: relative;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin: 0 auto;
}

/* ============================================================
   GLASSMORPHISM CARD
   ============================================================ */
.glass-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition-med),
    box-shadow var(--transition-med),
    transform var(--transition-med);
}

.glass-card:hover {
  border-color: rgba(0, 255, 102, 0.4);
  box-shadow: var(--shadow-glow), var(--shadow-card);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--neon-green);
  color: #000000;
  box-shadow: 0 0 30px rgba(0, 255, 102, 0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 50px rgba(0, 255, 102, 0.6), 0 8px 24px rgba(0, 255, 102, 0.3);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(0) scale(0.99);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
  background: var(--neon-green-soft);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.btn-ghost:hover {
  color: var(--neon-green);
}

.btn-ghost svg {
  transition: transform var(--transition-fast);
}

.btn-ghost:hover svg {
  transform: translateX(4px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-med);
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 14px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--neon-green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 0.875rem;
  font-weight: 900;
  box-shadow: var(--shadow-glow-sm);
}

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

.nav-logo .logo-text span {
  color: var(--neon-green);
}

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

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

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.price-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--neon-green-soft);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--neon-green);
}

.nav-btn {
  padding: 10px 22px;
  font-size: 0.875rem;
}

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

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 102, 0.12) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 255, 102, 0.08) 0%, transparent 70%);
  bottom: 0;
  left: -100px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 102, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 102, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--neon-green-soft);
  border: 1px solid var(--border-glass);
  color: var(--neon-green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-headline .line-green {
  color: var(--neon-green);
  display: block;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-avatars {
  display: flex;
}

.hero-avatars .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--neon-green);
  margin-left: -10px;
}

.hero-avatars .avatar:first-child {
  margin-left: 0;
}

.hero-proof-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-proof-text strong {
  color: var(--text-secondary);
}

/* Hero Visual / Plugin Mockup */
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-mockup-wrapper {
  position: relative;
  perspective: 1200px;
}

/* #et-timeline-mockup — JS-rendered, handles own perspective */
#et-timeline-mockup {
  width: 100%;
  will-change: transform;
  transform-origin: center center;
  transition: box-shadow var(--transition-med);
}

/* Ensure wrapper has perspective context for the JS tilt */
.hero-mockup-wrapper {
  perspective: 1200px;
}

/* Floating elements — must sit above the timeline mockup */
.hero-float-el {
  position: absolute;
  background: rgba(15, 15, 15, 0.92);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-glow-sm), 0 8px 24px rgba(0, 0, 0, 0.5);
  z-index: 20;
  /* above #et-timeline-mockup */
  pointer-events: none;
}

.float-transcript {
  left: -44px;
  top: 28%;
  animation: float-y 4s ease-in-out infinite;
}

.float-silence {
  right: -36px;
  bottom: 22%;
  animation: float-y 5s ease-in-out infinite 1s;
}

.float-time {
  left: 50%;
  transform: translateX(-50%);
  top: -28px;
  animation: float-y 3.5s ease-in-out infinite 0.5s;
}

.float-icon {
  width: 30px;
  height: 30px;
  background: var(--neon-green-soft);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-green);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.float-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.float-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.float-value.green {
  color: var(--neon-green);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  padding: 28px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(0, 255, 102, 0.02);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-item svg {
  color: var(--neon-green);
  flex-shrink: 0;
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #0a0f0a 50%, var(--bg-primary) 100%);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.problem-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-med);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.problem-card:hover {
  border-color: rgba(0, 255, 102, 0.25);
  background: rgba(0, 255, 102, 0.03);
}

.problem-card:hover .problem-icon {
  color: var(--neon-green);
  box-shadow: 0 0 20px rgba(0, 255, 102, 0.3);
  border-color: rgba(0, 255, 102, 0.4);
}

.problem-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: all var(--transition-med);
  flex-shrink: 0;
}

.problem-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.problem-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section {
  background: var(--bg-primary);
}

.features-scroll-container {
  position: relative;
  overflow: hidden;
}

.features-track {
  display: flex;
  gap: 24px;
  padding: 40px 0 60px;
  will-change: transform;
}

.feature-card {
  flex: 0 0 360px;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 255, 102, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-med);
}

.feature-card:hover {
  border-color: rgba(0, 255, 102, 0.35);
  box-shadow: var(--shadow-glow-sm);
  transform: translateY(-6px) rotateX(2deg) rotateY(-2deg);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-number {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--neon-green);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--neon-green-soft);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: all var(--transition-med);
}

.feature-card:hover .feature-icon-wrap {
  box-shadow: 0 0 24px rgba(0, 255, 102, 0.3);
  border-color: rgba(0, 255, 102, 0.4);
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neon-green);
  background: var(--neon-green-soft);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  padding: 4px 12px;
}

/* ── Shared: Feature Visual Container ── */
.feature-visual {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  margin-bottom: 18px;
  padding: 14px;
  position: relative;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

/* Badge (used in silence + slice) */
.fv-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--neon-green);
  background: var(--neon-green-soft);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  align-self: flex-start;
}

/* ════ 01 SILENCE REMOVER ════ */
.fv-waveform {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 42px;
  position: relative;
}

.fv-wave-bar {
  flex: 1;
  background: linear-gradient(180deg, rgba(45, 222, 115, 0.7), rgba(45, 222, 115, 0.35));
  border-radius: 2px;
  min-height: 4px;
}

.fv-wave-bar.fv-silence-gap {
  height: 4px !important;
  background: rgba(255, 80, 80, 0.25);
  border: 1px dashed rgba(255, 80, 80, 0.5);
  border-radius: 2px;
}

.fv-cut-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fv-cut {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 14px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fv-cut::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 80, 80, 0.6);
}

.fv-cut span {
  font-size: 10px;
  position: relative;
  z-index: 1;
  background: #1c1c1e;
}

/* ════ 02 ANIMATED CAPTIONS ════ */
.fv-caption-preview {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fv-caption-line {
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #fff;
  text-shadow: 0 0 12px rgba(45, 222, 115, 0.6);
  text-align: center;
  padding: 4px 0;
  animation: fv-caption-glow 2s ease-in-out infinite;
}

@keyframes fv-caption-glow {

  0%,
  100% {
    text-shadow: 0 0 8px rgba(45, 222, 115, 0.5);
  }

  50% {
    text-shadow: 0 0 20px rgba(45, 222, 115, 0.9), 0 0 40px rgba(45, 222, 115, 0.3);
  }
}

.fv-caption-effects {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.fv-fx {
  font-size: 0.6rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
}

.fv-fx.active {
  border-color: var(--border-glass);
  color: var(--neon-green);
  background: var(--neon-green-soft);
}

.fv-cap-timeline {
  display: flex;
  height: 10px;
  margin-top: 4px;
}

.fv-cap-block {
  height: 100%;
  border-radius: 3px;
  opacity: 0.85;
}

/* ════ 03 AUTO EDITING ════ */
.fv-folder-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fv-folder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 1.4rem;
}

.fv-folder span {
  font-size: 0.6rem;
  color: var(--text-muted);
  font-weight: 600;
}

.fv-arrow-line {
  font-size: 1.1rem;
  color: var(--neon-green);
  flex-shrink: 0;
}

.fv-timeline-mini {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 6px;
}

.fv-tm-track {
  display: flex;
  gap: 3px;
}

.fv-tm-clip {
  flex: 1;
  height: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.fv-tm-blue {
  background: rgba(52, 102, 204, 0.7);
}

.fv-tm-green {
  background: rgba(26, 153, 68, 0.7);
}

.fv-transcript-pill {
  font-size: 0.65rem;
  color: var(--neon-green);
  background: var(--neon-green-soft);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  align-self: flex-start;
}

/* ════ 04 AUTO SLICE ════ */
.fv-clip-before {
  margin-bottom: 4px;
}

.fv-clip-full {
  background: rgba(52, 102, 204, 0.7);
  border-radius: 5px;
  padding: 6px 10px;
  width: 100%;
  display: flex;
  align-items: center;
}

.fv-clip-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.fv-slice-arrow {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--neon-green);
  text-align: center;
  margin: 3px 0;
}

.fv-clips-after {
  display: flex;
  gap: 2px;
}

.fv-slice-seg {
  flex: 1;
  border-radius: 4px;
  padding: 5px 2px;
  font-size: 0.55rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.fv-slice-dim {
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--text-muted) !important;
}

/* ════ 05 CLIPS SHUFFLE ════ */
.fv-shuffle-before,
.fv-shuffle-after {
  display: flex;
  gap: 2px;
  height: 22px;
}

.fv-sh-clip {
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
}

.fv-shuffle-icon {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--neon-green);
  text-align: center;
  padding: 2px 0;
}

/* ════ 06 AUTO GAPS ════ */
.fv-gap-track {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 10px;
}

.fv-gp-clip {
  flex: 2;
  height: 26px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.fv-gap-spacer {
  flex: 1;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px dashed rgba(45, 222, 115, 0.4);
  border-right: 1px dashed rgba(45, 222, 115, 0.4);
  margin: 0 2px;
}

.fv-gap-label {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--neon-green);
  text-align: center;
}

.fv-gap-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fv-gap-ctrl-lbl {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 600;
  flex-shrink: 0;
}

.fv-gap-slider {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.fv-gap-track-bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  position: relative;
}

.fv-gap-thumb {
  position: absolute;
  left: 35%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 8px rgba(45, 222, 115, 0.5);
}

.fv-gap-val {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--neon-green);
  flex-shrink: 0;
}

.features-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.features-nav button {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-glass);
  background: var(--bg-glass);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  font-size: 1.2rem;
}

.features-nav button:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
  background: var(--neon-green-soft);
}

/* ============================================================
   TIME SAVING SECTION
   ============================================================ */
.timesave-section {
  background: linear-gradient(180deg, var(--bg-primary), #080d08 50%, var(--bg-primary));
}

.timesave-content {
  max-width: 760px;
  margin: 0 auto;
}

.timesave-item {
  margin-bottom: 40px;
}

.timesave-item:last-child {
  margin-bottom: 0;
}

.timesave-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}

.timesave-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.timesave-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
}

.timesave-value.green {
  color: var(--neon-green);
}

.bar-track {
  height: 14px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  width: 0%;
  transition: width 1.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.bar-fill.red {
  background: linear-gradient(90deg, #ff4444, #ff6b6b);
  box-shadow: 0 0 12px rgba(255, 68, 68, 0.3);
}

.bar-fill.green {
  background: linear-gradient(90deg, #00FF66, #00cc55);
  box-shadow: 0 0 12px rgba(0, 255, 102, 0.4);
}

.bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 2s ease-in-out infinite;
}

.timesave-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.timesave-stat {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-med);
}

.timesave-stat:hover {
  border-color: var(--border-glass);
  box-shadow: var(--shadow-glow-sm);
}

.timesave-stat .stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--neon-green);
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 8px;
}

.timesave-stat .stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section {
  background: var(--bg-primary);
}

.pricing-wrapper {
  max-width: 500px;
  margin: 60px auto 0;
  position: relative;
}

.pricing-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse, rgba(0, 255, 102, 0.12) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  border-radius: 50%;
  animation: glow-pulse 4s ease-in-out infinite;
}

.pricing-card {
  background: rgba(0, 255, 102, 0.04);
  border: 1px solid rgba(0, 255, 102, 0.25);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

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

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--neon-green);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.pricing-plan-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.pricing-amount .currency {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--neon-green);
  line-height: 1;
}

.pricing-amount .price {
  font-size: 5rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.pricing-note strike {
  margin-right: 8px;
  opacity: 0.5;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  padding: 28px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pricing-feature-item .check {
  width: 22px;
  height: 22px;
  background: var(--neon-green-soft);
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-green);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.pricing-cta {
  width: 100%;
  justify-content: center;
  padding: 18px 32px;
  font-size: 1.05rem;
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  background: linear-gradient(180deg, var(--bg-primary), #080d08 50%, var(--bg-primary));
}

.testimonials-carousel {
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  flex: 0 0 380px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-med);
}

.testimonial-card.active {
  border-color: var(--border-glass);
  box-shadow: var(--shadow-glow-sm);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--neon-green);
  font-size: 1rem;
  margin-bottom: 16px;
}

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

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-green-dim), rgba(0, 0, 0, 0.5));
  border: 2px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--neon-green);
  flex-shrink: 0;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

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

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  background: var(--bg-glass);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.carousel-btn:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
  background: var(--neon-green-soft);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-subtle);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.carousel-dot.active {
  background: var(--neon-green);
  box-shadow: 0 0 10px rgba(0, 255, 102, 0.5);
  width: 24px;
  border-radius: var(--radius-full);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background: var(--bg-primary);
}

.faq-list {
  max-width: 760px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-glass);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover,
.faq-item.open {
  border-color: var(--border-glass);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  background: transparent;
  cursor: pointer;
  transition: color var(--transition-fast);
  gap: 16px;
}

.faq-item.open .faq-question {
  color: var(--neon-green);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  flex-shrink: 0;
  transition: all var(--transition-med);
}

.faq-item.open .faq-icon {
  background: var(--neon-green-soft);
  border-color: var(--border-glass);
  color: var(--neon-green);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.final-cta {
  padding: 140px 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0, 255, 102, 0.08) 0%, transparent 70%),
    var(--bg-primary);
}

.cta-glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border: 1px solid rgba(0, 255, 102, 0.08);
  border-radius: 50%;
  animation: ring-pulse 4s ease-in-out infinite;
}

.cta-glow-ring-2 {
  width: 400px;
  height: 400px;
  border-color: rgba(0, 255, 102, 0.12);
  animation-delay: 1s;
}

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

.cta-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.cta-headline .cta-green {
  color: var(--neon-green);
}

.cta-sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-mega-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 22px 48px;
  background: var(--neon-green);
  color: #000;
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  letter-spacing: -0.01em;
  box-shadow: 0 0 60px rgba(0, 255, 102, 0.4), 0 0 120px rgba(0, 255, 102, 0.15);
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
  font-family: inherit;
  text-decoration: none;
}

.cta-mega-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.cta-mega-btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 0 80px rgba(0, 255, 102, 0.6), 0 0 160px rgba(0, 255, 102, 0.2), 0 16px 40px rgba(0, 255, 102, 0.3);
}

.cta-mega-btn:hover::before {
  opacity: 1;
}

.cta-disclaimer {
  margin-top: 24px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--neon-green);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--neon-green);
}

/* ============================================================
   PARTICLES CANVAS
   ============================================================ */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes float-y {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}

@keyframes glow-pulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes ring-pulse {

  0%,
  100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(200%);
  }
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 102, 0.3);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 255, 102, 0.5);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-visual {
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-mockup-main {
    transform: none;
  }

  .float-transcript {
    left: -20px;
  }

  .float-silence {
    right: -20px;
  }

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

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }

  .nav-links {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .price-badge {
    display: none;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .timesave-summary {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-card {
    padding: 32px 24px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .float-transcript,
  .float-silence,
  .float-time {
    display: none;
  }
}

/* ============================================================
   HOW IT WORKS — ALTERNATING STEP LAYOUT
   ============================================================ */
.hiw-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #0c0f0c 50%, var(--bg-primary) 100%);
}

/* Each step row */
.hiw-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 40px;
}

/* Reversed step (visual on left, text on right) */
.hiw-step-reverse {
  direction: rtl;
}

.hiw-step-reverse>* {
  direction: ltr;
}

/* Step text column */
.hiw-step-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--neon-green-soft);
  border: 1px solid var(--border-glass);
  color: var(--neon-green);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.hiw-step-title {
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.hiw-step-desc {
  font-size: 0.975rem;
  color: var(--text-secondary);
  line-height: 1.78;
  margin-bottom: 24px;
}

.hiw-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hiw-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.hiw-check {
  display: inline-flex;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--neon-green-soft);
  border: 1px solid var(--border-glass);
  align-items: center;
  justify-content: center;
  color: var(--neon-green);
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* Dashed connector between steps */
.hiw-connector {
  width: 60%;
  margin: 16px auto 40px;
  opacity: 0.8;
}

.hiw-connector svg {
  width: 100%;
  height: auto;
  display: block;
}

.hiw-connector.right svg {
  transform: scaleX(-1);
}

/* ── UI Card (visual column) ── */
.hiw-visual {
  position: relative;
}

.hiw-ui-card {
  background: #161618;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.hiw-ui-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.6), 0 0 30px rgba(45, 222, 115, 0.08);
}

.hiw-ui-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #1c1c1e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hiw-dots {
  display: flex;
  gap: 5px;
}

.hiw-dots span {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.hiw-dots span:nth-child(1) {
  background: #ff5f57;
}

.hiw-dots span:nth-child(2) {
  background: #ffbd2e;
}

.hiw-dots span:nth-child(3) {
  background: #28c840;
}

.hiw-ui-title {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  flex: 1;
  text-align: center;
  letter-spacing: 0.03em;
}

.hiw-complete-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--neon-green);
  background: var(--neon-green-soft);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  letter-spacing: 0.05em;
}

.hiw-ui-body {
  padding: 20px;
}

/* ── Transcript Preview (Step 1) ── */
.hiw-transcript-preview {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}

.hiw-transcript-line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 7px;
  transition: background 0.2s;
  position: relative;
}

.hiw-transcript-line.active {
  background: rgba(45, 222, 115, 0.06);
}

.hiw-transcript-line.highlighted {
  background: rgba(45, 222, 115, 0.1);
  border: 1px solid rgba(45, 222, 115, 0.18);
}

.hiw-ts {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  min-width: 52px;
}

.hiw-txt {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
  flex: 1;
}

.hiw-transcript-line.highlighted .hiw-txt {
  color: var(--text-primary);
}

.hiw-sync-tag {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--neon-green);
  background: var(--neon-green-soft);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  padding: 2px 8px;
  flex-shrink: 0;
}

.hiw-ui-action {
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
}

.hiw-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--neon-green);
  color: #000;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  cursor: default;
}

/* ── Toggle List (Step 2) ── */
.hiw-toggle-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 16px;
}

.hiw-toggle-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: all 0.2s;
}

.hiw-toggle-item.active {
  background: rgba(45, 222, 115, 0.05);
  border-color: rgba(45, 222, 115, 0.1);
}

.hiw-toggle-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hiw-toggle-dot.on {
  background: var(--neon-green);
  box-shadow: 0 0 8px rgba(45, 222, 115, 0.5);
}

.hiw-toggle-dot.off {
  background: rgba(255, 255, 255, 0.15);
}

.hiw-toggle-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.hiw-toggle-meta {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.hiw-run-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--neon-green);
  color: #000;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  cursor: default;
  margin-bottom: 12px;
}

.hiw-progress-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 4px 12px 4px 4px;
  overflow: hidden;
}

.hiw-progress-bar {
  height: 8px;
  width: 74%;
  background: linear-gradient(90deg, var(--neon-green), #00cc88);
  border-radius: var(--radius-full);
  box-shadow: 0 0 10px rgba(45, 222, 115, 0.3);
}

.hiw-progress-label {
  font-size: 0.7rem;
  color: var(--neon-green);
  font-weight: 600;
  white-space: nowrap;
}

/* ── Mini Timeline (Step 3) ── */
.hiw-mini-timeline {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}

.hiw-mini-track {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hiw-track-lbl {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text-muted);
  min-width: 44px;
  text-align: right;
  flex-shrink: 0;
}

.hiw-mini-clips {
  flex: 1;
  display: flex;
  align-items: center;
  height: 26px;
  position: relative;
}

.hiw-clip {
  height: 22px;
  border-radius: 4px;
  font-size: 0.62rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: 0 6px;
  color: rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hiw-clip+.hiw-clip {
  margin-left: 3px;
}

.hiw-clip.blue {
  background: #3466cc;
}

.hiw-clip.green {
  background: #1a9944;
}

.hiw-clip.orange {
  background: #bb5511;
}

.hiw-clip.yellow {
  background: #886600;
}

.hiw-saved-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(45, 222, 115, 0.07);
  border: 1px solid rgba(45, 222, 115, 0.15);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}

.hiw-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--neon-green);
  letter-spacing: -0.03em;
  line-height: 1;
}

.hiw-stat-lbl {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ── Responsive ── */
@media (max-width: 900px) {

  .hiw-step,
  .hiw-step-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }

  .hiw-connector {
    width: 80%;
  }
}


@media (max-width: 480px) {
  .pricing-amount .price {
    font-size: 3.5rem;
  }

  .cta-mega-btn {
    padding: 18px 32px;
    font-size: 1rem;
  }
}

/* ============================================================
   INDIVIDUAL FEATURE SECTIONS (feat-section)
   ============================================================ */
.feat-section {
  background: var(--bg-primary);
  padding: 100px 0;
}

.feat-section-alt {
  background: var(--bg-glass);
}

/* ── Row layout ── */
.fs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.fs-row-reverse {
  direction: rtl;
}

.fs-row-reverse>* {
  direction: ltr;
}

/* ── Text column ── */
.fs-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon-green);
  margin-bottom: 14px;
  opacity: 0.8;
}

.fs-title {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.fs-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.fs-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.fs-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.fs-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-green);
  flex-shrink: 0;
  margin-top: 8px;
  box-shadow: 0 0 6px rgba(45, 222, 115, 0.5);
}

/* Stats row */
.fs-stat-row {
  display: flex;
  gap: 32px;
  padding: 20px 0 0;
  border-top: 1px solid var(--border-subtle);
}

.fs-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fs-stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--neon-green);
  letter-spacing: -0.03em;
  line-height: 1;
}

.fs-stat-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Animation chips (captions section) */
.fs-fx-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.fs-chip {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
}

.fs-chip.active {
  border-color: var(--border-glass);
  color: var(--neon-green);
  background: var(--neon-green-soft);
}

/* ── Visual / Card column ── */
.fs-visual {
  position: relative;
}

.fs-card {
  background: #161618;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.fs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.6), 0 0 28px rgba(45, 222, 115, 0.07);
}

.fs-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #1c1c1e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fs-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.fs-dots span {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.fs-dots span:nth-child(1) {
  background: #ff5f57;
}

.fs-dots span:nth-child(2) {
  background: #ffbd2e;
}

.fs-dots span:nth-child(3) {
  background: #28c840;
}

.fs-card-title {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  flex: 1;
  text-align: center;
  letter-spacing: 0.02em;
}

.fs-status-badge {
  font-size: 0.62rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  padding: 3px 10px;
  flex-shrink: 0;
}

.fs-status-badge.processing {
  color: #ffbd2e;
  background: rgba(255, 189, 46, 0.1);
  border: 1px solid rgba(255, 189, 46, 0.25);
}

.fs-status-badge.done {
  color: var(--neon-green);
  background: var(--neon-green-soft);
  border: 1px solid var(--border-glass);
}

.fs-card-body {
  padding: 20px;
}

/* ── SILENCE REMOVER visuals ── */
.fs-wf-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.fs-waveform-row {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 50px;
}

.fs-wfbar {
  flex: 1;
  background: linear-gradient(180deg, rgba(45, 222, 115, 0.65), rgba(45, 222, 115, 0.3));
  border-radius: 2px;
  min-height: 3px;
}

.fs-wf-silence {
  height: 4px !important;
  background: rgba(255, 70, 70, 0.2) !important;
  border: 1px dashed rgba(255, 70, 70, 0.45);
  border-radius: 2px;
}

.fs-wf-clean {
  background: linear-gradient(180deg, rgba(45, 222, 115, 0.9), rgba(45, 222, 115, 0.5)) !important;
}

.fs-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
}

.fs-removed-badge {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--neon-green);
  background: var(--neon-green-soft);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  padding: 3px 10px;
}

.fs-time-saved {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
}

/* ── ANIMATED CAPTIONS visuals ── */
.fs-video-frame {
  background: #0a0a0a;
  border-radius: 8px;
  height: 120px;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 18px;
}

.fs-video-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d1a0d 0%, #0a0a12 100%);
  opacity: 0.6;
}

.fs-caption-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 6px;
}

.fs-cap-word {
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 12px rgba(45, 222, 115, 0.6), 2px 2px 4px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.02em;
}

.fs-cap-animated {
  animation: fs-cap-slide 0.5s ease-out both;
}

.fs-cap-delay {
  animation-delay: 0.3s;
}

.fs-cap-delay2 {
  animation-delay: 0.6s;
}

@keyframes fs-cap-slide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fs-caption-track {
  display: flex;
  height: 12px;
  margin-bottom: 10px;
  border-radius: 3px;
  overflow: hidden;
}

.fs-cap-seg {
  height: 100%;
  border-radius: 3px;
  font-size: 0.55rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  padding: 0 4px;
  overflow: hidden;
}

.fs-cap-style-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fs-cap-style-btn {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 3px 10px;
}

.fs-cap-style-btn.active {
  color: var(--neon-green);
  border-color: var(--border-glass);
  background: var(--neon-green-soft);
}

.fs-cap-style-swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* ── AUTO EDITING visuals ── */
.fs-ae-layout {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.fs-ae-folder-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
  min-width: 160px;
}

.fs-ae-folder-title {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.fs-ae-file {
  font-size: 0.68rem;
  color: var(--text-muted);
  padding: 4px 8px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fs-ae-file.active {
  background: rgba(45, 222, 115, 0.06);
  border-color: rgba(45, 222, 115, 0.15);
  color: var(--text-primary);
}

.fs-ae-arrow {
  font-size: 1.4rem;
  color: var(--neon-green);
  flex-shrink: 0;
}

.fs-ae-timeline-col {
  flex: 1;
}

.fs-ae-tl-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.fs-ae-tl-track {
  display: flex;
  gap: 3px;
}

.fs-ae-clip {
  flex: 1;
  height: 22px;
  border-radius: 4px;
  font-size: 0.58rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.fs-ae-clip.blue {
  background: rgba(52, 102, 204, 0.75);
}

.fs-ae-clip.green {
  background: rgba(26, 153, 68, 0.75);
}

.fs-ae-clip.orange {
  background: rgba(187, 85, 17, 0.75);
}

.fs-ae-clip.purple {
  background: rgba(170, 68, 255, 0.75);
}

.fs-ae-transcript-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(45, 222, 115, 0.05);
  border: 1px solid rgba(45, 222, 115, 0.12);
  border-radius: 7px;
  font-size: 0.68rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.fs-ae-ts-icon {
  flex-shrink: 0;
}

.fs-ae-ts-text strong {
  color: var(--neon-green);
}

/* ── AUTO SLICE visuals ── */
.fs-slice-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 7px;
}

.fs-slice-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  flex: 1;
}

.fs-slice-val {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--neon-green);
  background: var(--neon-green-soft);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  padding: 2px 10px;
}

.fs-slice-btn {
  font-size: 0.68rem;
  font-weight: 700;
  color: #000;
  background: var(--neon-green);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  cursor: default;
}

.fs-slice-track-lbl {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}

.fs-slice-full-clip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(52, 102, 204, 0.6);
  border-radius: 5px;
  padding: 7px 10px;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

.fs-slice-duration {
  font-weight: 800;
  color: #fff;
}

.fs-slice-down-arrow {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--neon-green);
  text-align: center;
  padding: 4px 0;
}

.fs-slice-clips {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.fs-slice-chip {
  flex: 1;
  min-width: 34px;
  border-radius: 4px;
  padding: 6px 3px;
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.fs-slice-dim {
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--text-muted) !important;
}

/* ── CLIPS SHUFFLE visuals ── */
.fs-shuf-label {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}

.fs-shuf-row {
  display: flex;
  gap: 3px;
  height: 30px;
}

.fs-shuf-clip {
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  white-space: nowrap;
}

.fs-shuf-btn-row {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

.fs-shuf-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--neon-green);
  color: #000;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  cursor: default;
}

/* ── AUTO GAPS visuals ── */
.fs-gap-slider-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.fs-gap-slider-lbl {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  flex-shrink: 0;
}

.fs-gap-slider-track {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  position: relative;
}

.fs-gap-slider-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 38%;
  background: linear-gradient(90deg, var(--neon-green), #00cc88);
  border-radius: var(--radius-full);
}

.fs-gap-slider-thumb {
  position: absolute;
  left: 38%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 8px rgba(45, 222, 115, 0.5);
}

.fs-gap-slider-val {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--neon-green);
  flex-shrink: 0;
}

.fs-gap-timeline {
  display: flex;
  align-items: center;
  height: 32px;
  margin-bottom: 12px;
}

.fs-gap-clip {
  height: 100%;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  white-space: nowrap;
  padding: 0 4px;
}

.fs-gap-gap {
  width: 20px;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px dashed rgba(45, 222, 115, 0.35);
  border-right: 1px dashed rgba(45, 222, 115, 0.35);
}

.fs-gap-gap span {
  font-size: 0.5rem;
  color: var(--neon-green);
  font-weight: 700;
  white-space: nowrap;
}

.fs-gap-summary {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--text-muted);
  padding-top: 10px;
  border-top: 1px solid var(--border-subtle);
}

.fs-gap-sum-green {
  color: var(--neon-green);
  font-weight: 700;
}

/* ── Responsive ── */
@media (max-width: 900px) {

  .fs-row,
  .fs-row-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }

  .fs-title {
    font-size: 1.8rem;
  }
}

/* ============================================================
   IMPROVED ANIMATED CAPTIONS VISUAL
   ============================================================ */

/* Video scene overlay (subtle bars suggesting footage) */
.fs-vid-scene {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  padding: 16px;
}

.fs-vid-bars {
  width: 100%;
}

.fs-vid-bar {
  height: 6px;
  border-radius: 3px;
  backdrop-filter: blur(2px);
}

/* Timecode HUD */
.fs-vid-timecode {
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 3;
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
  font-family: 'Courier New', monospace;
}

/* Settings panel below the video frame */
.fs-cap-settings {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}

.fs-cap-setting-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fs-cap-setting-lbl {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  flex-shrink: 0;
  width: 50px;
}

/* Animation chips */
.fs-cap-anim-chips {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.fs-cap-chip {
  font-size: 0.58rem;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
}

.fs-cap-chip.active {
  border-color: var(--border-glass);
  color: var(--neon-green);
  background: var(--neon-green-soft);
}

/* Font chips */
.fs-cap-font-row {
  display: flex;
  gap: 4px;
}

.fs-cap-font-chip {
  font-size: 0.58rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
}

.fs-cap-font-chip.active {
  border-color: var(--border-glass);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.07);
}

/* Color swatches */
.fs-cap-color-row {
  display: flex;
  gap: 5px;
  align-items: center;
}

.fs-cap-swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  cursor: default;
}

.fs-cap-swatch.active {
  border: 2px solid var(--neon-green);
  box-shadow: 0 0 6px rgba(45, 222, 115, 0.4);
}

.fs-cap-swatch-plus {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px dashed var(--border-glass);
  background: none;
  font-size: 0.6rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

/* Word-level timeline */
.fs-cap-wl-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.fs-cap-word-timeline {
  display: flex;
  height: 18px;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
}

.fs-cwt-seg {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.52rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  white-space: nowrap;
}

/* ============================================================
   MORE FEATURES HINT SECTION
   ============================================================ */
.feat-more-hint {
  background: linear-gradient(180deg, transparent, rgba(45, 222, 115, 0.03) 50%, transparent);
  padding: 80px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.feat-more-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.feat-more-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon-green);
  background: var(--neon-green-soft);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  padding: 5px 16px;
  margin-bottom: 20px;
}

.feat-more-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.15;
}

.feat-more-desc {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
}

.feat-more-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.feat-more-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.feat-more-tag-dim {
  border-style: dashed !important;
  color: var(--neon-green) !important;
  background: var(--neon-green-soft) !important;
}