/* =========================================
   VIVID JUMPCUT — Editor Dark Design System
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&family=Bebas+Neue&family=Space+Grotesk:wght@400;500;700&display=swap');

/* ── CSS Custom Properties ────────────────── */
:root {
  --bg-void:       #060509;
  --bg-deep:       #0a0912;
  --bg-surface:    #0f0e1a;
  --bg-elevated:   #14121f;
  --bg-card:       #131022;

  --edit-violet:   #8b5cf6;
  --edit-cyan:     #22d3ee;
  --edit-magenta:  #f43f9d;
  --edit-amber:    #f59e0b;
  --edit-green:    #34d399;
  --edit-pink:     #ec4899;
  --edit-blue:     #3b82f6;

  --glow-violet:   0 0 20px rgba(139,92,246,0.5), 0 0 60px rgba(139,92,246,0.2);
  --glow-cyan:     0 0 20px rgba(34,211,238,0.5), 0 0 60px rgba(34,211,238,0.2);
  --glow-magenta:  0 0 20px rgba(244,63,157,0.5), 0 0 60px rgba(244,63,157,0.2);
  --glow-green:    0 0 20px rgba(52,211,153,0.5), 0 0 60px rgba(52,211,153,0.2);

  --text-primary:  #f0eeff;
  --text-secondary: #9089ad;
  --text-muted:    #4a4660;

  --border-subtle: rgba(255,255,255,0.06);
  --border-neon:   rgba(139,92,246,0.3);

  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     40px;

  --transition-fast:   150ms cubic-bezier(0.4,0,0.2,1);
  --transition-smooth: 400ms cubic-bezier(0.4,0,0.2,1);
  --transition-spring: 600ms cubic-bezier(0.34,1.56,0.64,1);

  --font-display: 'Space Grotesk', sans-serif;
  --font-korean:  'Noto Sans KR', sans-serif;
  --font-impact:  'Bebas Neue', cursive;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

::selection {
  background: rgba(139,92,246,0.25);
  color: var(--edit-violet);
}

/* ── Scrollbar ─────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-void); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--edit-violet), var(--edit-cyan));
  border-radius: 2px;
}

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

.gradient-text {
  background: linear-gradient(135deg, var(--edit-violet) 0%, var(--edit-magenta) 50%, var(--edit-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-warm {
  background: linear-gradient(135deg, var(--edit-magenta) 0%, var(--edit-amber) 60%, var(--edit-violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Navigation ────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.nav.scrolled {
  background: rgba(6,5,9,0.88);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  position: relative;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

.nav-logo-text span {
  color: var(--edit-violet);
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--edit-violet);
  transition: var(--transition-smooth);
  box-shadow: var(--glow-violet);
}

.nav-links a:hover { color: var(--edit-violet); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--edit-violet);
  color: var(--edit-violet) !important;
  border-radius: var(--radius-xl);
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.1em;
  transition: var(--transition-smooth) !important;
}

.nav-cta:hover {
  background: var(--edit-violet) !important;
  color: var(--bg-void) !important;
  box-shadow: var(--glow-violet) !important;
}

.nav-cta::after { display: none !important; }

.mobile-menu { display: none; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-smooth);
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero Section ──────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Editing timeline grid background */
.hero-led-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139,92,246,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,211,238,0.035) 1px, transparent 1px);
  background-size: 100% 40px, 40px 100%;
  background-position: 0 0;
  animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Radial glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--edit-violet), transparent 70%);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--edit-cyan), transparent 70%);
  bottom: -80px;
  left: -80px;
  animation-delay: 3s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--edit-magenta), transparent 70%);
  top: 40%;
  left: 30%;
  animation-delay: 5s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(20px,-30px) scale(1.05); }
  66%       { transform: translate(-15px,20px) scale(0.95); }
}

/* Particle canvas */
#particle-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 120px 0 80px;
  width: 100%;
}

.hero-content { max-width: 600px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--edit-violet);
  letter-spacing: 0.15em;
  margin-bottom: 28px;
  background: rgba(139,92,246,0.05);
  animation: badgePulse 3s ease-in-out infinite;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--edit-violet);
  box-shadow: 0 0 8px var(--edit-violet);
  animation: dotBlink 1.5s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 rgba(139,92,246,0); }
  50%       { box-shadow: 0 0 20px rgba(139,92,246,0.15); }
}

@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-korean);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-title-line2 {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 8px 0;
}

.hero-title-line3 {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text-primary);
}

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

/* ── Store Badges ───────────────────────────── */
.store-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition-smooth);
  min-width: 160px;
}

.store-badge:hover {
  background: rgba(139,92,246,0.06);
  border-color: rgba(139,92,246,0.3);
  transform: translateY(-2px);
  box-shadow: var(--glow-violet);
}

.store-badge-icon { font-size: 1.8rem; line-height: 1; }
.store-badge-text { display: flex; flex-direction: column; }
.store-badge-label { font-size: 0.65rem; color: var(--text-secondary); letter-spacing: 0.08em; text-transform: uppercase; }
.store-badge-name { font-size: 0.95rem; font-weight: 700; letter-spacing: 0.02em; }

/* ── Editor Hero Visual ─────────────────────── */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.editor-stage {
  position: relative;
  width: 340px;
  height: 480px;
}

/* Outer ring */
.editor-ring {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 1px solid rgba(139,92,246,0.1);
  animation: ringRotate 12s linear infinite;
}

.editor-ring::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--edit-violet);
  box-shadow: var(--glow-violet);
  transform: translateX(-50%);
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Editor Phone Mockup */
.editor-phone {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  border: 2px solid rgba(139,92,246,0.3);
  background: rgba(10,9,18,0.96);
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 40px rgba(139,92,246,0.15), 0 0 80px rgba(34,211,238,0.08);
}

.editor-phone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: var(--bg-void);
  border-radius: 0 0 16px 16px;
  z-index: 10;
}

.editor-screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 44px 18px 22px;
  gap: 16px;
}

/* Preview area with playhead */
.editor-preview {
  flex: 1;
  border-radius: var(--radius-md);
  background:
    radial-gradient(ellipse at 50% 40%, rgba(139,92,246,0.18), transparent 65%),
    linear-gradient(160deg, #1a1730, #0c0b16);
  border: 1px solid rgba(139,92,246,0.18);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.editor-play-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(139,92,246,0.18);
  border: 1px solid rgba(139,92,246,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--edit-violet);
  font-size: 1.2rem;
  box-shadow: var(--glow-violet);
  animation: playPulse 2.4s ease-in-out infinite;
}

@keyframes playPulse {
  0%, 100% { box-shadow: 0 0 12px rgba(139,92,246,0.4); }
  50%      { box-shadow: 0 0 26px rgba(139,92,246,0.7); }
}

.editor-rec {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--edit-magenta);
}

.editor-rec::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--edit-magenta);
  box-shadow: 0 0 8px var(--edit-magenta);
  animation: dotBlink 1.2s ease-in-out infinite;
}

.editor-timecode {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

/* Timeline / waveform */
.editor-timeline {
  height: 96px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  padding: 12px 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.timeline-track {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 2px;
  position: relative;
}

.wave-bar {
  flex: 1;
  min-width: 2px;
  border-radius: 2px;
  background: var(--edit-cyan);
  box-shadow: 0 0 4px rgba(34,211,238,0.4);
  transition: background 0.3s ease, opacity 0.4s ease, box-shadow 0.3s ease;
}

.wave-bar.silence {
  background: rgba(244,63,157,0.35);
  box-shadow: none;
}

.wave-bar.cut {
  opacity: 0.12;
  background: rgba(255,255,255,0.15);
  box-shadow: none;
}

.timeline-playhead {
  position: absolute;
  top: -4px;
  bottom: -4px;
  width: 2px;
  background: var(--text-primary);
  box-shadow: 0 0 8px rgba(255,255,255,0.8);
  border-radius: 2px;
  left: 0;
}

.timeline-playhead::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-primary);
}

.timeline-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* Floating cut toast */
.cut-toast {
  position: absolute;
  right: 14px;
  bottom: 116px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  background: rgba(244,63,157,0.14);
  border: 1px solid rgba(244,63,157,0.4);
  color: var(--edit-magenta);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.cut-toast.show { opacity: 1; transform: translateY(0); }

/* Color orbs */
.color-orb {
  position: absolute;
  border-radius: 50%;
  animation: colorOrbFloat 4s ease-in-out infinite;
}

.color-orb-1 {
  width: 50px; height: 50px;
  background: radial-gradient(circle, var(--edit-violet), transparent);
  top: 10%; right: -10px;
  animation-delay: 0s;
  opacity: 0.6;
}

.color-orb-2 {
  width: 35px; height: 35px;
  background: radial-gradient(circle, var(--edit-cyan), transparent);
  bottom: 15%; left: -15px;
  animation-delay: 1.5s;
  opacity: 0.6;
}

.color-orb-3 {
  width: 25px; height: 25px;
  background: radial-gradient(circle, var(--edit-magenta), transparent);
  top: 50%; right: -20px;
  animation-delay: 2.5s;
  opacity: 0.7;
}

@keyframes colorOrbFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-15px) scale(1.1); }
}

/* ── Section Scaffold ───────────────────────── */
section { padding: 100px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--edit-violet);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--edit-violet);
  box-shadow: 0 0 8px var(--edit-violet);
}

.section-title {
  font-family: var(--font-korean);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 560px;
}

/* ── Features Section ───────────────────────── */
.features {
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--edit-violet), var(--edit-magenta), transparent);
}

.features::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--edit-cyan), var(--edit-violet), transparent);
}

.features-header { text-align: center; margin-bottom: 70px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  position: relative;
  padding: 36px 30px;
  background: rgba(20,18,31,0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  transition: var(--transition-smooth);
  cursor: default;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: var(--transition-smooth);
}

.feature-card:nth-child(1)::before { background: linear-gradient(90deg, var(--edit-violet), var(--edit-magenta)); }
.feature-card:nth-child(2)::before { background: linear-gradient(90deg, var(--edit-cyan), var(--edit-green)); }
.feature-card:nth-child(3)::before { background: linear-gradient(90deg, var(--edit-amber), var(--edit-violet)); }

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: var(--transition-smooth);
}

.feature-card:nth-child(1)::after { background: radial-gradient(ellipse at top left, rgba(139,92,246,0.05), transparent 60%); }
.feature-card:nth-child(2)::after { background: radial-gradient(ellipse at top, rgba(34,211,238,0.05), transparent 60%); }
.feature-card:nth-child(3)::after { background: radial-gradient(ellipse at top right, rgba(245,158,11,0.05), transparent 60%); }

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139,92,246,0.2);
}

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

.feature-card:nth-child(1):hover { box-shadow: 0 20px 60px rgba(139,92,246,0.1); }
.feature-card:nth-child(2):hover { box-shadow: 0 20px 60px rgba(34,211,238,0.1); }
.feature-card:nth-child(3):hover { box-shadow: 0 20px 60px rgba(245,158,11,0.1); }

.feature-icon-wrap {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.feature-card:nth-child(1) .feature-icon-wrap {
  background: rgba(139,92,246,0.1);
  color: var(--edit-violet);
  box-shadow: inset 0 0 20px rgba(139,92,246,0.08);
}

.feature-card:nth-child(2) .feature-icon-wrap {
  background: rgba(34,211,238,0.1);
  color: var(--edit-cyan);
  box-shadow: inset 0 0 20px rgba(34,211,238,0.08);
}

.feature-card:nth-child(3) .feature-icon-wrap {
  background: rgba(245,158,11,0.1);
  color: var(--edit-amber);
  box-shadow: inset 0 0 20px rgba(245,158,11,0.08);
}

.feature-number {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  letter-spacing: -0.02em;
  z-index: 0;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* ── Palette strip (waveform mini) ──────────── */
.palette-strip {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin-bottom: 16px;
  height: 14px;
}

.palette-strip-bar {
  flex: 1;
  border-radius: 1px;
  animation: paletteFlow 1.6s ease-in-out infinite;
}

.palette-strip-bar:nth-child(1) { height: 40%; background: var(--edit-violet);  animation-delay: 0s; }
.palette-strip-bar:nth-child(2) { height: 90%; background: var(--edit-cyan);    animation-delay: 0.15s; }
.palette-strip-bar:nth-child(3) { height: 55%; background: var(--edit-magenta); animation-delay: 0.3s; }
.palette-strip-bar:nth-child(4) { height: 100%; background: var(--edit-green);  animation-delay: 0.45s; }
.palette-strip-bar:nth-child(5) { height: 30%; background: var(--edit-amber);   animation-delay: 0.6s; }

@keyframes paletteFlow {
  0%,100% { transform: scaleY(0.7); opacity: 0.6; }
  50%      { transform: scaleY(1); opacity: 1; }
}

/* ── How It Works ───────────────────────────── */
.how-it-works {
  background: var(--bg-void);
  position: relative;
}

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

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  position: relative;
  transition: var(--transition-smooth);
}

.step + .step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 27px;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, var(--edit-violet), var(--edit-cyan));
  opacity: 0.2;
  transform: translateX(-50%);
}

.step-num {
  width: 54px; height: 54px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(139,92,246,0.25);
  background: rgba(139,92,246,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--edit-violet);
  position: relative;
  z-index: 1;
  transition: var(--transition-smooth);
}

.step:hover .step-num {
  background: rgba(139,92,246,0.15);
  border-color: var(--edit-violet);
  box-shadow: var(--glow-violet);
}

.step-content { flex: 1; }

.step-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Phone mockup ─────────────────────────── */
.phone-mockup-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.phone-mockup {
  position: relative;
  width: 240px;
  filter: drop-shadow(0 30px 80px rgba(139,92,246,0.15));
}

.phone-frame {
  width: 240px;
  height: 480px;
  border-radius: 36px;
  border: 2px solid rgba(139,92,246,0.2);
  background: rgba(10,9,16,0.9);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: var(--bg-void);
  border-radius: 0 0 16px 16px;
  z-index: 10;
}

.phone-screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 20px;
  background: radial-gradient(ellipse at 50% 30%, rgba(139,92,246,0.08), transparent 60%);
}

.phone-screen--edit {
  padding: 0;
  overflow: hidden;
  border-radius: inherit;
}

.phone-edit-display {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--bg-void);
  position: relative;
}

.phone-edit-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  background: linear-gradient(135deg, var(--edit-violet), var(--edit-magenta), var(--edit-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: editTextGlow 3s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(139,92,246,0.5));
}

.phone-edit-sub {
  font-size: 0.85rem;
  display: block;
  margin-top: 4px;
}

.phone-edit-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 40px;
}

.phone-edit-wave span {
  width: 4px;
  border-radius: 2px;
  background: var(--edit-cyan);
  box-shadow: 0 0 6px rgba(34,211,238,0.5);
  animation: waveBeat 1.1s ease-in-out infinite;
}

.phone-edit-wave span:nth-child(1) { height: 30%; animation-delay: 0s; }
.phone-edit-wave span:nth-child(2) { height: 70%; animation-delay: 0.1s; }
.phone-edit-wave span:nth-child(3) { height: 100%; animation-delay: 0.2s; }
.phone-edit-wave span:nth-child(4) { height: 50%; animation-delay: 0.3s; background: var(--edit-magenta); }
.phone-edit-wave span:nth-child(5) { height: 85%; animation-delay: 0.4s; }
.phone-edit-wave span:nth-child(6) { height: 35%; animation-delay: 0.5s; }
.phone-edit-wave span:nth-child(7) { height: 65%; animation-delay: 0.6s; background: var(--edit-violet); }

@keyframes waveBeat {
  0%,100% { transform: scaleY(0.6); }
  50%     { transform: scaleY(1); }
}

@keyframes editTextGlow {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(139,92,246,0.5)); }
  50%      { filter: drop-shadow(0 0 20px rgba(34,211,238,0.7)); }
}

.phone-scan-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(139,92,246,0.015) 2px,
    rgba(139,92,246,0.015) 4px
  );
  pointer-events: none;
}

/* Floating tags */
.phone-tag {
  position: absolute;
  padding: 8px 16px;
  background: rgba(10,9,16,0.9);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  animation: tagFloat 4s ease-in-out infinite;
}

.phone-tag-violet {
  color: var(--edit-violet);
  border-color: rgba(139,92,246,0.25);
}

.phone-tag-cyan {
  color: var(--edit-cyan);
  border-color: rgba(34,211,238,0.25);
  animation-delay: 1.5s;
}

.phone-tag-magenta {
  color: var(--edit-magenta);
  border-color: rgba(244,63,157,0.25);
  animation-delay: 3s;
}

.phone-tag-1 { top: 20%; left: -140px; }
.phone-tag-2 { top: 50%; right: -130px; }
.phone-tag-3 { bottom: 20%; left: -110px; }

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

/* ── CTA / Download Section ─────────────────── */
.cta {
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(ellipse, rgba(139,92,246,0.05) 0%, rgba(34,211,238,0.04) 40%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-eyebrow {
  display: inline-block;
  padding: 6px 18px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(34,211,238,0.1));
  border: 1px solid rgba(139,92,246,0.2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--edit-violet);
  margin-bottom: 32px;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 48px;
}

.cta-stores {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--transition-smooth);
  min-width: 200px;
  position: relative;
  overflow: hidden;
}

.cta-store-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
  transition: var(--transition-smooth);
  opacity: 0;
}

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

.cta-store-appstore {
  background: var(--text-primary);
  color: var(--bg-void);
}

.cta-store-appstore:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(240,238,255,0.2);
}

.cta-store-google {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.15);
}

.cta-store-google:hover {
  transform: translateY(-3px);
  border-color: rgba(139,92,246,0.4);
  box-shadow: 0 12px 40px rgba(139,92,246,0.1);
  color: var(--edit-violet);
}

.cta-store-icon { font-size: 2rem; line-height: 1; }
.cta-store-text { display: flex; flex-direction: column; text-align: left; }
.cta-store-label { font-size: 0.65rem; opacity: 0.7; letter-spacing: 0.06em; font-weight: 400; }
.cta-store-name { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; }

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

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

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand { max-width: 280px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.08em;
}

.footer-logo-text span { color: var(--edit-violet); }

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer-links-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links-list a:hover { color: var(--edit-violet); }

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

.footer-social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-social-link:hover {
  border-color: var(--edit-violet);
  color: var(--edit-violet);
  box-shadow: var(--glow-violet);
}

/* ── Scroll-reveal animations ───────────────── */
.reveal {
  opacity: 0;
  transform: translateY(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.visible { opacity: 1; transform: translateY(0); }

.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-left.visible { opacity: 1; transform: translateX(0); }

.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-right.visible { opacity: 1; transform: translateX(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; }

/* ── Glitch effect ────────────────────────── */
@keyframes glitch {
  0%   { clip-path: inset(40% 0 61% 0); transform: translate(-2px, 0); }
  20%  { clip-path: inset(92% 0 1%  0); transform: translate(1px,  0); }
  40%  { clip-path: inset(43% 0 1%  0); transform: translate(-1px, 0); }
  60%  { clip-path: inset(25% 0 58% 0); transform: translate(0px,  0); }
  80%  { clip-path: inset(54% 0 7%  0); transform: translate(2px,  0); }
  100% { clip-path: inset(58% 0 43% 0); transform: translate(0px,  0); }
}

.glitch-wrap {
  position: relative;
  display: inline-block;
}

.glitch-wrap::before,
.glitch-wrap::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--bg-void);
}

.glitch-wrap::before {
  color: var(--edit-magenta);
  animation: glitch 4s infinite;
  opacity: 0.5;
}

.glitch-wrap::after {
  color: var(--edit-cyan);
  animation: glitch 4s infinite reverse;
  animation-delay: 0.1s;
  opacity: 0.4;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content { max-width: 100%; }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .store-badges { justify-content: center; }

  .how-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .phone-mockup-wrap { order: -1; }
  .phone-tag { display: none; }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}

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

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(6,5,9,0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  }

  .mobile-menu.open { transform: translateX(0); }

  .mobile-menu a {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
  }

  .mobile-menu a:hover { color: var(--edit-violet); }

  .hero-title-line2 { font-size: clamp(2.5rem, 10vw, 4rem); }

  .editor-stage {
    width: 260px;
    height: 380px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

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

  .cta-stores {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-inner { padding-top: 100px; }
  .hero-badge { font-size: 0.7rem; }
}
