/* ============================================
   BITCUT LANDING PAGE — v2
   Visual rhythm, SVG icons, section contrast
   ============================================ */

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

:root {
  --bg: #0A0A0F;
  --bg-alt: #0E0E18;
  --surface: #141420;
  --surface-alt: #1A1A2E;
  --accent: #6C5CE7;
  --accent-end: #A855F7;
  --blue: #00D2FF;
  --blue-end: #0EA5E9;
  --hot: #F43F5E;
  --hot-start: #FF6B6B;
  --green: #22C55E;
  --text: #FFFFFF;
  --text-dim: #94A3B8;
  --text-muted: #64748B;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 6px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
svg { flex-shrink: 0; }

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

/* ---------- TYPOGRAPHY ---------- */
h1 { font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 900; line-height: 1.02; letter-spacing: -0.04em; }
h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 20px; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; line-height: 1.3; margin-bottom: 8px; }
h4 { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 14px; }
.section-sub { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--text-dim); max-width: 600px; line-height: 1.7; }

/* ---------- BADGES & TAGS ---------- */
.badge {
  display: inline-block; padding: 8px 18px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600;
  background: linear-gradient(135deg, rgba(108,92,231,0.15), rgba(168,85,247,0.15));
  border: 1px solid rgba(108,92,231,0.25);
  color: var(--accent-end); margin-bottom: 24px;
}
.badge-subtle { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); color: var(--text-dim); }

.tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 16px;
  padding: 4px 12px; border-radius: 4px;
  background: rgba(0,210,255,0.08); border: 1px solid rgba(0,210,255,0.15);
}
.tag-green { color: var(--green); background: rgba(34,197,94,0.08); border-color: rgba(34,197,94,0.15); }
.tag-hot { color: var(--hot); background: rgba(244,63,94,0.08); border-color: rgba(244,63,94,0.15); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: 12px;
  font-size: 1rem; font-weight: 600; cursor: pointer;
  transition: all 0.25s ease; border: none; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--hot-start), var(--hot));
  color: #fff; box-shadow: 0 4px 24px rgba(244,63,94,0.25), 0 0 0 1px rgba(244,63,94,0.1);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(244,63,94,0.35); }
.btn-ghost {
  background: rgba(255,255,255,0.05); color: var(--text);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid rgba(255,255,255,0.15); }
.btn-outline:hover { border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.04); }
.btn-large { padding: 18px 48px; font-size: 1.15rem; border-radius: 14px; }

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal { opacity: 0; transform: translateY(48px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.12s; }
.reveal:nth-child(3) { transition-delay: 0.24s; }

/* ---------- SECTIONS ---------- */
.section { padding: 140px 0; position: relative; }
.section-alt { background: var(--bg-alt); }
@media (max-width: 768px) { .section { padding: 80px 0; } }

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 24px;
  backdrop-filter: blur(24px) saturate(180%); -webkit-backdrop-filter: blur(24px) saturate(180%);
  background: rgba(10,10,15,0.75); border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.2rem; }
.logo-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-end));
  font-weight: 900; font-size: 0.95rem; color: #fff;
}
.logo-icon-img {
  height: 36px; width: auto;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link { font-size: 0.9rem; font-weight: 500; color: var(--text-dim); transition: color 0.2s; }
.nav-link:hover { color: var(--text); }
.nav-cta {
  font-size: 0.9rem; font-weight: 600; padding: 8px 20px; border-radius: 8px;
  background: linear-gradient(135deg, var(--hot-start), var(--hot)); color: #fff; transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.9; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; align-items: center; padding: 32px 0; gap: 24px;
    background: rgba(10,10,15,0.98);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.2rem; }
}

/* =============================================
   HERO
   ============================================= */
.hero { position: relative; padding: 160px 0 120px; overflow: hidden; min-height: 100vh; display: flex; align-items: center; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-text { z-index: 2; }
.hero-headline {
  background: linear-gradient(135deg, #fff 40%, var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 28px;
}
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--text-dim); line-height: 1.7; margin-bottom: 40px; max-width: 520px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-glow {
  position: absolute; top: -300px; right: -200px; width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(108,92,231,0.18) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.hero-glow-2 {
  position: absolute; bottom: -200px; left: -300px; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,210,255,0.08) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}

.hero-mockup { display: flex; justify-content: center; z-index: 2; }

/* iPhone Frame */
.iphone-frame {
  position: relative; width: 280px; height: 580px;
  background: linear-gradient(145deg, #2A2A2E, #1C1C1E);
  border-radius: 44px; padding: 12px;
  box-shadow: 0 0 0 1.5px rgba(255,255,255,0.08), 0 40px 100px rgba(0,0,0,0.6), 0 0 150px rgba(108,92,231,0.12);
}
.iphone-notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 120px; height: 28px; background: linear-gradient(145deg, #2A2A2E, #1C1C1E); border-radius: 0 0 18px 18px; z-index: 5; }
.iphone-screen { width: 100%; height: 100%; border-radius: 34px; overflow: hidden; background: var(--bg); }

.mock-editor { height: 100%; display: flex; flex-direction: column; }
.mock-preview { flex: 1; background: linear-gradient(180deg, #16162a 0%, #0d0d18 100%); display: flex; align-items: flex-end; justify-content: center; padding-bottom: 20px; position: relative; }
.mock-preview-video {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(108,92,231,0.08) 0%, rgba(0,210,255,0.04) 100%);
}
.mock-vid-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,20,45,0.3), transparent 40%, rgba(10,10,20,0.6));
}
.mock-face-box {
  position: absolute; top: 30%; left: 45%;
  width: 32px; height: 36px; border: 1.5px solid var(--blue); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  animation: mockFaceDrift 5s ease-in-out infinite;
}
@keyframes mockFaceDrift {
  0%, 100% { left: 42%; top: 28%; }
  50% { left: 48%; top: 32%; }
}
.mock-9-16-label {
  position: absolute; top: 8px; right: 8px;
  font-size: 7px; font-weight: 700; color: rgba(0,210,255,0.6);
  padding: 1px 4px; border: 1px solid rgba(0,210,255,0.2); border-radius: 2px;
}
.mock-subtitle { position: relative; z-index: 2; font-size: 13px; font-weight: 700; padding: 5px 12px; background: rgba(0,0,0,0.5); border-radius: 6px; backdrop-filter: blur(8px); }
.mock-highlight { color: var(--blue); }

.mock-toolbar { display: flex; gap: 6px; padding: 6px 12px; justify-content: center; background: var(--surface); border-top: 1px solid rgba(255,255,255,0.04); }
.mock-tool-btn {
  width: 26px; height: 26px; border-radius: 6px; background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center; color: var(--text-dim);
}
.mock-tool-btn.active { background: linear-gradient(135deg, var(--accent), var(--accent-end)); color: #fff; }

.mock-timeline { height: 130px; padding: 6px 10px; background: var(--surface); position: relative; }
.mock-playhead {
  position: absolute; top: 4px; bottom: 4px; left: 35%; width: 1.5px;
  background: rgba(255,255,255,0.8); z-index: 5; border-radius: 1px;
}
.mock-playhead::before {
  content: ''; position: absolute; top: -3px; left: -3px;
  width: 8px; height: 8px; border-radius: 2px;
  background: #fff; clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.mock-clips { display: flex; gap: 2px; height: 34px; margin-bottom: 4px; }
.mock-clip { flex: 1; border-radius: 3px; position: relative; overflow: hidden; }
.mc-label { position: absolute; top: 2px; left: 4px; font-size: 5px; font-weight: 600; color: rgba(255,255,255,0.5); }
.mc-thumb { position: absolute; inset: 0; }
.mock-clip.c1 { flex: 1.2; background: linear-gradient(135deg, #1a3040, #0d1a25); border: 1px solid rgba(0,210,255,0.2); }
.mock-clip.c2 { flex: 0.8; background: linear-gradient(135deg, #201030, #140a20); border: 1px solid rgba(108,92,231,0.2); }
.mock-clip.c3 { flex: 1.1; background: linear-gradient(135deg, #0d2520, #081a15); border: 1px solid rgba(0,210,255,0.2); }
.mock-clip.c4 { flex: 0.9; background: linear-gradient(135deg, #252015, #1a1508); border: 1px solid rgba(168,85,247,0.2); }
.mock-audio-row { height: 16px; margin-bottom: 4px; }
.mock-waveform {
  height: 100%; border-radius: 3px;
  background: repeating-linear-gradient(90deg, rgba(244,63,94,0.15) 0px, rgba(244,63,94,0.3) 1.5px, transparent 1.5px, transparent 5px);
}
.mock-beats { display: flex; justify-content: space-between; padding-top: 2px; }
.mock-beat { width: 1.5px; height: 8px; background: var(--hot); border-radius: 1px; opacity: 0.35; }
.mock-beat.big { height: 14px; opacity: 0.7; width: 2px; }

@media (max-width: 768px) {
  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .iphone-frame { width: 220px; height: 460px; border-radius: 36px; padding: 10px; }
  .iphone-frame.hero-phone { width: 260px; height: 540px; }
  .iphone-screen { border-radius: 28px; }
}

/* =============================================
   QUICK MONTAGE — Steps
   ============================================= */
/* ── Pipeline (5-step horizontal flow) ── */
.pipeline {
  display: flex; align-items: flex-start; justify-content: center; gap: 0;
  margin: 56px 0 0; position: relative; padding: 0 8px;
}
.pipeline-track {
  display: none; /* track visual handled by arrows */
}
.pipe-step {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  flex: 1; max-width: 160px; text-align: center; position: relative;
}
.pipe-icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(108,92,231,0.12), rgba(168,85,247,0.06));
  border: 1px solid rgba(108,92,231,0.2); color: var(--accent-end);
  transition: transform 0.3s, box-shadow 0.3s;
}
.pipe-step:hover .pipe-icon { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(108,92,231,0.2); }
.pipe-icon.blue { background: linear-gradient(135deg, rgba(0,210,255,0.12), rgba(14,165,233,0.06)); border-color: rgba(0,210,255,0.2); color: var(--blue); }
.pipe-icon.pink { background: linear-gradient(135deg, rgba(244,63,94,0.12), rgba(244,63,94,0.06)); border-color: rgba(244,63,94,0.2); color: var(--hot); }
.pipe-icon.accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-end)); border-color: transparent; color: #fff;
  box-shadow: 0 4px 20px rgba(108,92,231,0.35);
}
.pipe-icon.green { background: linear-gradient(135deg, rgba(34,197,94,0.12), rgba(34,197,94,0.06)); border-color: rgba(34,197,94,0.2); color: var(--green); }

.pipe-label { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.pipe-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.3; }

.pipe-step.highlight .pipe-label {
  background: linear-gradient(135deg, var(--accent-end), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.pipe-arrow {
  display: flex; align-items: center; justify-content: center;
  padding-top: 16px; color: rgba(255,255,255,0.12); flex-shrink: 0;
}

@media (max-width: 768px) {
  .pipeline { flex-wrap: wrap; gap: 8px 0; }
  .pipe-step { max-width: 120px; }
  .pipe-arrow { padding-top: 14px; }
  .pipe-icon { width: 44px; height: 44px; border-radius: 12px; }
  .pipe-icon svg { width: 18px; height: 18px; }
}
@media (max-width: 480px) {
  .pipeline { flex-direction: column; align-items: center; gap: 4px; }
  .pipe-step { flex-direction: row; max-width: 100%; width: 100%; text-align: left; gap: 12px;
    padding: 10px 16px; background: var(--surface); border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.04); }
  .pipe-step.highlight { border-color: rgba(108,92,231,0.2); background: linear-gradient(135deg, rgba(108,92,231,0.06), var(--surface)); }
  .pipe-icon { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; }
  .pipe-arrow { transform: rotate(90deg); padding: 0; }
  .pipe-desc { display: none; }
}

/* ── Montage feature cards (richer callouts) ── */
.montage-features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin: 56px 0 40px;
}
.mf-card {
  padding: 0; border-radius: 16px; position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s, transform 0.3s;
}
.mf-card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-2px); }
.mf-card.featured {
  border-color: rgba(108,92,231,0.25);
  background: linear-gradient(180deg, rgba(108,92,231,0.06), var(--surface));
}
.mf-card.featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-end), var(--blue));
}

.mf-visual {
  padding: 24px 20px 16px; min-height: 110px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}

.mf-card h3 { padding: 0 20px; margin-bottom: 6px; font-size: 1.05rem; }
.mf-card p { padding: 0 20px 24px; color: var(--text-dim); font-size: 0.88rem; line-height: 1.5; }

/* Card 1: Date pills */
.mf-date-pills { display: flex; gap: 6px; margin-bottom: 12px; }
.mf-pill {
  font-size: 11px; font-weight: 600; padding: 5px 14px; border-radius: 20px;
  background: rgba(255,255,255,0.04); color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.06);
}
.mf-pill.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-end)); color: #fff;
  border-color: transparent; box-shadow: 0 2px 12px rgba(108,92,231,0.3);
}
.mf-pill.dim { opacity: 0.4; }
.mf-clip-count { display: flex; align-items: baseline; gap: 6px; }
.mf-count-num {
  font-size: 28px; font-weight: 800;
  background: linear-gradient(135deg, var(--accent-end), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.mf-count-label { font-size: 12px; color: var(--text-muted); font-weight: 500; }

/* Card 2: Beat waveform */
.mf-beat-visual { width: 100%; }
.mf-waveform {
  display: flex; align-items: flex-end; justify-content: center; gap: 3px;
  height: 56px; margin-bottom: 10px;
}
.mf-wave-bar {
  width: 8px; border-radius: 3px;
  background: linear-gradient(180deg, rgba(108,92,231,0.4), rgba(108,92,231,0.1));
  transition: height 0.3s;
}
.mf-wave-bar.hi {
  background: linear-gradient(180deg, var(--accent-end), var(--accent));
  box-shadow: 0 0 12px rgba(168,85,247,0.3);
}
.mf-card.featured:hover .mf-wave-bar { animation: mfWavePulse 0.6s ease-in-out infinite alternate; }
.mf-card.featured:hover .mf-wave-bar:nth-child(2) { animation-delay: 0.05s; }
.mf-card.featured:hover .mf-wave-bar:nth-child(3) { animation-delay: 0.1s; }
.mf-card.featured:hover .mf-wave-bar:nth-child(4) { animation-delay: 0.15s; }
.mf-card.featured:hover .mf-wave-bar:nth-child(5) { animation-delay: 0.2s; }
.mf-card.featured:hover .mf-wave-bar:nth-child(6) { animation-delay: 0.25s; }
.mf-card.featured:hover .mf-wave-bar:nth-child(7) { animation-delay: 0.3s; }
.mf-card.featured:hover .mf-wave-bar:nth-child(8) { animation-delay: 0.35s; }
.mf-card.featured:hover .mf-wave-bar:nth-child(9) { animation-delay: 0.4s; }
.mf-card.featured:hover .mf-wave-bar:nth-child(10) { animation-delay: 0.45s; }
.mf-card.featured:hover .mf-wave-bar:nth-child(11) { animation-delay: 0.5s; }
.mf-card.featured:hover .mf-wave-bar:nth-child(12) { animation-delay: 0.55s; }
@keyframes mfWavePulse {
  0% { transform: scaleY(1); }
  100% { transform: scaleY(1.25); }
}

.mf-beat-dots { display: flex; justify-content: center; gap: 18px; }
.mf-beat-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--hot); box-shadow: 0 0 8px rgba(244,63,94,0.4);
  animation: beatPulse 1.5s ease-in-out infinite;
}
.mf-beat-dots span:nth-child(2) { animation-delay: 0.2s; }
.mf-beat-dots span:nth-child(3) { animation-delay: 0.4s; }
.mf-beat-dots span:nth-child(4) { animation-delay: 0.6s; }

/* Card 3: Trim visual */
.mf-trim-visual { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.mf-trim-clip {
  display: flex; align-items: stretch; width: 80%; height: 36px;
  border-radius: 6px; overflow: hidden;
  background: linear-gradient(90deg, rgba(0,210,255,0.08), rgba(108,92,231,0.08));
  border: 1px solid rgba(0,210,255,0.15);
}
.mf-trim-handle {
  width: 10px; flex-shrink: 0; cursor: ew-resize;
  background: rgba(0,210,255,0.3); position: relative;
}
.mf-trim-handle::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 2px; height: 12px; border-radius: 1px;
  background: rgba(255,255,255,0.5);
}
.mf-trim-handle.right { background: rgba(0,210,255,0.3); }
.mf-trim-content { flex: 1; position: relative;
  background: repeating-linear-gradient(90deg,
    rgba(0,210,255,0.04) 0px, rgba(0,210,255,0.08) 1px, transparent 1px, transparent 5px);
}
.mf-snap-indicator {
  display: flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600; color: var(--green);
}

@media (max-width: 768px) { .montage-features { grid-template-columns: 1fr; } }

/* =============================================
   INTERSTITIALS — dramatic full-width breaks
   ============================================= */
.interstitial {
  padding: 160px 0; text-align: center; position: relative; overflow: hidden;
}
.interstitial-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 30%, var(--bg-alt) 70%, var(--bg) 100%);
}
.interstitial-beat .interstitial-bg {
  background: linear-gradient(180deg, var(--bg) 0%, #120E25 30%, #120E25 70%, var(--bg) 100%);
}
.interstitial-face .interstitial-bg {
  background: linear-gradient(180deg, var(--bg-alt) 0%, #0D1520 30%, #0D1520 70%, var(--bg) 100%);
}
.interstitial-subs .interstitial-bg {
  background: linear-gradient(180deg, var(--bg) 0%, #1A0E20 30%, #1A0E20 70%, var(--bg-alt) 100%);
}

.interstitial .container { position: relative; z-index: 1; }
.interstitial-headline {
  font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1.05;
}
.interstitial-beat .interstitial-headline {
  background: linear-gradient(135deg, #fff 30%, var(--hot));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.interstitial-face .interstitial-headline {
  background: linear-gradient(135deg, #fff 30%, var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.interstitial-subs .interstitial-headline {
  background: linear-gradient(135deg, #fff 30%, var(--accent-end));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.interstitial-visual { margin-bottom: 48px; }

@media (max-width: 768px) { .interstitial { padding: 100px 0; } }

/* ============= BEAT SYNC ANIMATED DEMO ============= */
.beat-sub {
  font-size: 1.1rem; color: var(--text-dim); margin-bottom: 48px;
  text-align: center;
}
.beat-demo {
  position: relative; max-width: 700px; margin: 0 auto;
  padding: 60px 0 20px;
}

/* Narration (karaoke text) */
.beat-narration {
  display: flex; gap: 0; justify-content: center; flex-wrap: wrap;
  margin-bottom: 24px; min-height: 32px;
}
.bn {
  font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.15);
  padding: 2px 8px; border-radius: 4px;
  transition: all 0.3s ease;
}
.bn.active { color: var(--text); }
.bn.bn-flash.active {
  color: var(--hot); text-shadow: 0 0 20px rgba(244,63,94,0.5);
  transform: scale(1.15);
}

/* Track labels */
.beat-track-label {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 6px;
  padding-left: 2px;
}

/* Video clips track */
.beat-clips-track {
  display: flex; gap: 0; height: 52px; margin-bottom: 16px;
  border-radius: var(--radius-sm); overflow: hidden;
}
.bclip {
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  transition: filter 0.15s;
}
.bclip span {
  font-size: 0.7rem; font-weight: 600; color: rgba(255,255,255,0.7);
  position: relative; z-index: 1;
}
.bc1 { flex: 28; background: linear-gradient(135deg, #1a3040, #0d1a25); border-right: 2px solid var(--hot); }
.bc2 { flex: 24; background: linear-gradient(135deg, #201030, #140a20); border-right: 2px solid var(--hot); }
.bc3 { flex: 24; background: linear-gradient(135deg, #0d2520, #081a15); border-right: 2px solid var(--hot); }
.bc4 { flex: 24; background: linear-gradient(135deg, #252015, #1a1508); }
.bclip.playing { filter: brightness(1.3); }

/* Audio waveform track */
.beat-audio-track {
  position: relative; height: 36px; margin-bottom: 12px;
  background: rgba(255,255,255,0.02); border-radius: 6px; overflow: hidden;
}
.beat-waveform {
  position: absolute; inset: 0;
}
.beat-waveform svg {
  width: 100%; height: 100%;
}

/* Beat markers */
.beat-marker {
  position: absolute; top: 0; bottom: 0; z-index: 3;
  transform: translateX(-50%);
  pointer-events: none;
}
.bm-line {
  position: absolute; top: -68px; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 1px; background: rgba(244,63,94,0.15);
}
.bm-dot {
  position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--hot); opacity: 0.5;
  transition: all 0.15s;
}
.beat-marker.flash .bm-dot {
  opacity: 1; transform: translateX(-50%) scale(1.8);
  box-shadow: 0 0 16px var(--hot);
}
.beat-marker.flash .bm-line {
  background: rgba(244,63,94,0.6); width: 2px;
}
.bm-label {
  position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%);
  font-size: 0.55rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--hot); opacity: 0;
  transition: opacity 0.2s;
}
.beat-marker.flash .bm-label { opacity: 1; }

/* Cut flash */
.beat-cut-flash {
  position: absolute; top: 60px; width: 3px; height: 52px;
  transform: translateX(-50%);
  background: var(--hot); opacity: 0; border-radius: 2px;
  pointer-events: none; z-index: 5;
  box-shadow: 0 0 20px var(--hot), 0 0 40px rgba(244,63,94,0.3);
}
.beat-cut-flash.flash {
  animation: cutFlash 0.5s ease-out;
}
@keyframes cutFlash {
  0% { opacity: 1; transform: translateX(-50%) scaleY(1.2); }
  100% { opacity: 0; transform: translateX(-50%) scaleY(1); }
}

/* Playhead */
.beat-playhead {
  position: absolute; top: 44px; bottom: 10px; left: 0;
  z-index: 10; pointer-events: none;
  width: 2px;
}
.bp-head {
  width: 12px; height: 12px; border-radius: 3px;
  background: #fff; margin-left: -5px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.bp-line {
  width: 2px; background: rgba(255,255,255,0.8);
  position: absolute; top: 12px; bottom: 0;
}
.beat-playhead.running {
  animation: playheadMove 6s linear infinite;
}
@keyframes playheadMove {
  0% { left: 0%; }
  100% { left: 100%; }
}

@media (max-width: 600px) {
  .beat-demo { padding: 40px 0 16px; }
  .beat-clips-track { height: 40px; }
  .bclip span { font-size: 0.6rem; }
}

/* ============= FACE TRACKING INTERSTITIAL (animated) ============= */
.face-demo { display: flex; align-items: center; justify-content: center; gap: 40px; }
.face-wide {
  width: 260px; height: 146px;
  background: linear-gradient(135deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.08);
  position: relative; overflow: hidden;
}
.face-vertical {
  width: 110px; height: 195px;
  background: linear-gradient(135deg, rgba(0,210,255,0.04), rgba(108,92,231,0.04));
  border-radius: var(--radius-sm); border: 1px solid rgba(0,210,255,0.2);
  position: relative; overflow: hidden;
  box-shadow: 0 0 50px rgba(0,210,255,0.06);
}
.face-ratio-label { position: absolute; top: 8px; left: 10px; font-size: 0.6rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.05em; z-index: 3; }
.face-arrow-wrap { color: var(--accent-end); opacity: 0.6; flex-shrink: 0; }

.face-scene-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,20,40,0.6), rgba(10,10,20,0.8));
}
.face-scene-bg.vert {
  background: linear-gradient(180deg, rgba(10,20,30,0.6), rgba(5,10,18,0.8));
}

.face-person-moving {
  position: absolute; top: 50%; transform: translateY(-50%);
  animation: faceDrift 4s ease-in-out infinite;
  z-index: 1;
}
@keyframes faceDrift {
  0%, 100% { left: 30%; }
  50% { left: 55%; }
}

.face-track-rect {
  position: absolute; width: 50px; height: 55px;
  border: 2px solid var(--blue); border-radius: 4px;
  top: 50%; transform: translateY(-50%);
  animation: trackFollow 4s ease-in-out infinite;
  z-index: 2;
}
@keyframes trackFollow {
  0%, 100% { left: calc(30% - 10px); }
  50% { left: calc(55% - 10px); }
}

.face-crop-overlay {
  position: absolute; top: 0; bottom: 0;
  width: 46%; border-left: 2px dashed rgba(108,92,231,0.4); border-right: 2px dashed rgba(108,92,231,0.4);
  animation: cropFollow 4s ease-in-out infinite;
  z-index: 2; background: rgba(108,92,231,0.03);
}
@keyframes cropFollow {
  0%, 100% { left: 18%; }
  50% { left: 36%; }
}

.face-person-result {
  position: absolute; top: 45%; left: 50%; transform: translate(-50%, -50%);
  z-index: 1;
}

@media (max-width: 480px) {
  .face-demo { gap: 16px; }
  .face-wide { width: 170px; height: 96px; }
  .face-vertical { width: 76px; height: 135px; }
}

/* Subtitle Styles interstitial */
.subs-demo-row { display: flex; justify-content: center; gap: 16px; align-items: flex-end; }
.subs-phone {
  width: 90px; height: 170px;
  background: linear-gradient(145deg, #2A2A2E, #1C1C1E); border-radius: 18px; padding: 5px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.subs-phone-center { transform: scale(1.12); }
.subs-screen {
  width: 100%; height: 100%; border-radius: 14px; overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 18px;
}
.s-purple { background: linear-gradient(180deg, #1a1030, #0d0a18); }
.s-blue   { background: linear-gradient(180deg, #0d1a28, #080e18); }
.s-pink   { background: linear-gradient(180deg, #1a0d18, #100a12); }

.subs-text { font-size: 0.6rem; font-weight: 700; padding: 3px 8px; border-radius: 4px; }
.fade-style { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.pop-style { background: var(--hot); color: #fff; transform: scale(1.05); }
.karaoke-style { background: rgba(0,0,0,0.5); color: rgba(255,255,255,0.5); }
.k-lit { color: var(--blue); }

/* =============================================
   AI SHORTS
   ============================================= */
.mode-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 56px 0; }

.mode-card {
  padding: 0; border-radius: var(--radius); position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s, transform 0.3s;
}
.mode-card:hover { transform: translateY(-4px); }

.mode-trailer { background: linear-gradient(180deg, rgba(0,210,255,0.06) 0%, var(--surface) 60%); border-color: rgba(0,210,255,0.1); }
.mode-trailer:hover { border-color: rgba(0,210,255,0.25); }
.mode-split   { background: linear-gradient(180deg, rgba(34,197,94,0.06) 0%, var(--surface) 60%); border-color: rgba(34,197,94,0.1); }
.mode-split:hover   { border-color: rgba(34,197,94,0.25); }
.mode-ai      { background: linear-gradient(180deg, rgba(108,92,231,0.1) 0%, var(--surface) 60%); border-color: rgba(108,92,231,0.2); }
.mode-ai:hover      { border-color: rgba(108,92,231,0.4); }

/* Mode card visual area */
.mode-visual {
  padding: 24px 20px 16px; min-height: 100px;
  display: flex; align-items: center; justify-content: center;
}

/* Trailer: film strip → condensed reel */
.mv-trailer { display: flex; flex-direction: column; align-items: center; gap: 6px; width: 100%; }
.mv-strip { display: flex; gap: 3px; }
.mv-frame {
  width: 28px; height: 20px; border-radius: 3px;
  background: rgba(0,210,255,0.08); border: 1px solid rgba(0,210,255,0.12);
}
.mv-frame.lit { background: rgba(0,210,255,0.2); border-color: rgba(0,210,255,0.35); box-shadow: 0 0 8px rgba(0,210,255,0.15); }
.mv-arrow-down { color: rgba(0,210,255,0.3); }
.mv-reel { display: flex; gap: 3px; }
.mv-reel-frame {
  width: 48px; height: 20px; border-radius: 3px;
  background: linear-gradient(135deg, rgba(0,210,255,0.15), rgba(0,210,255,0.06));
  border: 1px solid rgba(0,210,255,0.3);
}
.mv-reel-frame.lit { box-shadow: 0 0 10px rgba(0,210,255,0.2); }

/* Split: long bar → equal parts */
.mv-split { display: flex; flex-direction: column; align-items: center; gap: 6px; width: 100%; }
.mv-long-bar { display: flex; width: 100%; height: 16px; border-radius: 4px; overflow: hidden; gap: 0; }
.mv-seg { background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(34,197,94,0.04)); }
.mv-seg:first-child { border-radius: 4px 0 0 4px; }
.mv-seg:last-child { border-radius: 0 4px 4px 0; }
.mv-cut-line { width: 2px; background: rgba(34,197,94,0.5); flex-shrink: 0; }
.mv-split-arrows { display: flex; gap: 26px; color: rgba(34,197,94,0.3); }
.mv-parts { display: flex; gap: 6px; }
.mv-part {
  width: 32px; height: 22px; border-radius: 4px; display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; color: var(--green);
  background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2);
}

/* Smart Cuts: speech wave + AI badges */
.mv-smart { display: flex; flex-direction: column; align-items: center; gap: 10px; width: 100%; }
.mv-speech-wave { display: flex; align-items: flex-end; gap: 3px; height: 36px; }
.mv-sw {
  width: 7px; border-radius: 2px;
  background: rgba(108,92,231,0.15);
}
.mv-sw.hi {
  background: linear-gradient(180deg, var(--accent-end), var(--accent));
  box-shadow: 0 0 8px rgba(168,85,247,0.25);
}
.mv-ai-badges { display: flex; gap: 5px; }
.mv-ai-tag {
  font-size: 8px; font-weight: 700; padding: 3px 8px; border-radius: 6px;
  background: rgba(108,92,231,0.1); color: var(--accent-end);
  border: 1px solid rgba(108,92,231,0.2);
}
.mv-ai-tag.score {
  background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,165,0,0.05));
  color: #FFD700; border-color: rgba(255,215,0,0.2);
}
.mv-ai-tag.lang {
  background: rgba(0,210,255,0.08); color: var(--blue); border-color: rgba(0,210,255,0.15);
}

.mode-icon-wrap {
  width: 44px; height: 44px; border-radius: 12px; margin: 0 20px 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04); color: var(--text);
}
.mode-trailer .mode-icon-wrap { color: var(--blue); background: rgba(0,210,255,0.08); }
.mode-split .mode-icon-wrap   { color: var(--green); background: rgba(34,197,94,0.08); }
.mode-ai .mode-icon-wrap      { color: var(--accent-end); background: rgba(108,92,231,0.1); }

.mode-card h3 { font-size: 1.15rem; padding: 0 20px; }
.mode-card p { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 16px; padding: 0 20px; }
.mode-meta {
  display: inline-block; font-size: 0.75rem; font-weight: 500; color: var(--text-muted);
  padding: 4px 10px; background: rgba(255,255,255,0.04); border-radius: 100px;
  margin: 0 20px 24px;
}

@media (max-width: 768px) { .mode-cards { grid-template-columns: 1fr; } }

/* Scoring */
.scoring-block { margin-top: 64px; }
.scoring-intro { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; margin-bottom: 36px; text-align: center; color: var(--text-dim); }
.scoring-mockup { max-width: 580px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.score-item {
  display: flex; align-items: flex-start; gap: 16px; padding: 18px 20px;
  border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.04);
  background: var(--surface);
}
.score-item.gold {
  border-color: rgba(255,215,0,0.15);
  background: linear-gradient(135deg, rgba(255,215,0,0.04), var(--surface));
}
.score-item.dim { opacity: 0.45; }
.score-rank {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: var(--text-muted);
  background: rgba(255,255,255,0.04);
}
.score-item.gold .score-rank { background: rgba(255,215,0,0.1); color: #FFD700; }
.score-value {
  font-size: 1.5rem; font-weight: 800; flex-shrink: 0; width: 44px;
  background: linear-gradient(135deg, var(--text), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.score-details { flex: 1; min-width: 0; }
.score-title { font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; }
.score-duration { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 6px; }
.score-bars { display: flex; flex-direction: column; gap: 5px; margin-bottom: 6px; }
.score-bar { display: flex; align-items: center; gap: 8px; }
.bar-label { font-size: 0.65rem; font-weight: 500; color: var(--text-muted); width: 72px; flex-shrink: 0; }
.bar-track { flex: 1; height: 5px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--accent), var(--blue)); }
.score-reason { font-size: 0.75rem; font-style: italic; color: var(--text-muted); }
.score-note { font-size: 0.75rem; color: var(--text-muted); }
.score-params { text-align: center; font-size: 0.75rem; color: var(--text-muted); margin-top: 20px; letter-spacing: 0.02em; }

/* =============================================
   CLOUD PUBLISH — visual feature cards
   ============================================= */
.cp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px;
}
.cp-card {
  border-radius: var(--radius); background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06); overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.cp-card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-4px); }

/* Visual area (top of card) */
.cp-visual {
  padding: 24px 20px 20px; min-height: 180px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.015);
}

/* Info area (bottom of card) */
.cp-info { padding: 20px 24px 24px; display: flex; flex-wrap: wrap; gap: 8px 12px; align-items: center; }
.cp-icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.cp-icon.blue   { background: rgba(0,210,255,0.1); color: #00D2FF; }
.cp-icon.purple { background: rgba(168,85,247,0.1); color: #A855F7; }
.cp-icon.green  { background: rgba(34,197,94,0.1);  color: #22C55E; }
.cp-info strong { font-size: 0.95rem; }
.cp-info p { width: 100%; margin: 0; font-size: 0.82rem; color: var(--text-dim); }

/* ---- Card 1: Browser mockup ---- */
.cp-browser {
  width: 100%; border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08); background: rgba(0,0,0,0.3);
}
.cp-browser-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px; background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cp-dot {
  width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.15);
}
.cp-url {
  flex: 1; margin-left: 8px; padding: 3px 10px; border-radius: 5px;
  background: rgba(255,255,255,0.05); font-size: 0.68rem; color: var(--text-dim);
  display: flex; align-items: center; gap: 5px;
}
.cp-url svg { color: #22C55E; flex-shrink: 0; }
.cp-page { display: flex; gap: 12px; padding: 14px; }
.cp-thumb {
  width: 64px; height: 80px; border-radius: 6px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(108,92,231,0.3), rgba(0,210,255,0.2));
  display: flex; align-items: center; justify-content: center;
}
.cp-page-meta { flex: 1; display: flex; flex-direction: column; gap: 6px; padding-top: 4px; }
.cp-page-title { height: 10px; width: 80%; border-radius: 3px; background: rgba(255,255,255,0.15); }
.cp-page-desc  { height: 7px; width: 100%; border-radius: 2px; background: rgba(255,255,255,0.06); }
.cp-page-desc.short { width: 60%; }

/* ---- Card 2: AI Description ---- */
.cp-ai-gen { width: 100%; }
.cp-ai-badge {
  display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px;
  border-radius: 6px; background: rgba(168,85,247,0.12); color: #A855F7;
  font-size: 0.68rem; font-weight: 600; margin-bottom: 12px;
}
.cp-ai-hook {
  font-size: 0.85rem; font-weight: 600; line-height: 1.4; color: rgba(255,255,255,0.9);
  margin-bottom: 10px; font-style: italic;
}
.cp-ai-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.cp-ai-tags span {
  padding: 3px 8px; border-radius: 4px; font-size: 0.68rem; font-weight: 500;
  background: rgba(0,210,255,0.08); color: #00D2FF;
}
.cp-platforms { display: flex; gap: 6px; }
.cp-plat {
  padding: 4px 10px; border-radius: 6px; font-size: 0.68rem; font-weight: 600;
  background: rgba(255,255,255,0.04); color: var(--text-dim);
  border: 1px solid rgba(255,255,255,0.06);
}
.cp-plat.active {
  background: rgba(244,63,94,0.1); color: #F43F5E;
  border-color: rgba(244,63,94,0.2);
}

/* ---- Card 3: Storage ring + files ---- */
.cp-storage-demo { display: flex; align-items: center; gap: 20px; width: 100%; }
.cp-storage-ring { position: relative; flex-shrink: 0; width: 100px; height: 100px; }
.cp-storage-label {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.cp-storage-used { font-size: 1.4rem; font-weight: 800; line-height: 1; }
.cp-storage-unit { font-size: 0.6rem; color: var(--text-dim); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.05em; }
.cp-storage-files { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.cp-sf {
  position: relative; padding: 6px 10px; border-radius: 6px;
  background: rgba(255,255,255,0.03); font-size: 0.72rem;
  display: flex; justify-content: space-between; overflow: hidden;
}
.cp-sf-bar {
  position: absolute; left: 0; top: 0; bottom: 0; border-radius: 6px;
  background: linear-gradient(90deg, rgba(0,210,255,0.1), rgba(108,92,231,0.08));
}
.cp-sf span { position: relative; z-index: 1; }
.cp-sf span:last-child { color: var(--text-dim); }

@media (max-width: 768px) {
  .cp-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .cp-grid { grid-template-columns: repeat(2, 1fr); }
  .cp-storage { grid-column: 1 / -1; }
  .cp-storage .cp-visual { min-height: 140px; }
}

/* =============================================
   FEATURES BENTO — varied card styles
   ============================================= */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; margin-top: 56px; }

.bento-card {
  padding: 32px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.3s, transform 0.3s; background: var(--surface);
}
.bento-card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-2px); }
.bento-card p { color: var(--text-dim); font-size: 0.9rem; }

.bento-large { grid-column: span 3; }
.bento-full  { grid-column: span 6; }
.bento-small { grid-column: span 2; }

/* Gradient card tops */
.bento-gradient-purple { background: linear-gradient(180deg, rgba(108,92,231,0.08) 0%, var(--surface) 40%); border-color: rgba(108,92,231,0.12); }
.bento-gradient-blue   { background: linear-gradient(180deg, rgba(0,210,255,0.06) 0%, var(--surface) 40%); border-color: rgba(0,210,255,0.1); }
.bento-gradient-dark   { background: linear-gradient(135deg, var(--surface) 0%, var(--bg-alt) 100%); }

.bento-visual {
  height: 180px; margin-bottom: 20px; border-radius: var(--radius-sm); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.015);
}

/* Full-width card split layout */
.bento-inner-split { display: flex; gap: 40px; align-items: center; }
.bento-text-side { flex: 1; }
.bento-visual-side { flex: 1.5; }

.bento-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04); color: var(--text-dim);
  border: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 768px) {
  .bento { grid-template-columns: 1fr; }
  .bento-large, .bento-full, .bento-small { grid-column: span 1; }
  .bento-inner-split { flex-direction: column; gap: 20px; }
}

/* Face tracking visual in bento */
.ft-split { display: flex; gap: 16px; align-items: center; justify-content: center; }
.ft-wide {
  width: 170px; height: 96px; background: rgba(255,255,255,0.02); border-radius: 8px;
  position: relative; border: 1px solid rgba(255,255,255,0.06); overflow: hidden;
}
.ft-narrow {
  width: 64px; height: 114px; background: rgba(108,92,231,0.04); border-radius: 8px;
  position: relative; border: 1px solid rgba(108,92,231,0.2); overflow: hidden;
}
.ft-label { position: absolute; top: 5px; left: 6px; font-size: 0.5rem; font-weight: 700; color: var(--text-muted); z-index: 2; }
.ft-scene-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,20,40,0.4), rgba(10,10,20,0.6));
}
/* Person shapes (CSS silhouettes) */
.ft-person-head {
  width: 16px; height: 16px; border-radius: 50%; margin: 0 auto;
  background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.1);
}
.ft-person-head.sm { width: 12px; height: 12px; }
.ft-person-head.lg { width: 22px; height: 22px; }
.ft-person-body {
  width: 24px; height: 16px; margin: -3px auto 0; border-radius: 12px 12px 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
}
.ft-person-body.sm { width: 18px; height: 12px; }
.ft-person-body.lg { width: 32px; height: 20px; }
.ft-person {
  position: absolute; top: 50%; transform: translate(-50%, -50%); z-index: 1;
}
.ft-person-secondary {
  position: absolute; top: 55%; transform: translate(-50%, -50%); z-index: 1; opacity: 0.5;
}
.ft-person.centered { top: 38%; left: 50%; }
.ft-crop-window {
  position: absolute; top: 0; bottom: 0; left: 25%; width: 38%;
  border-left: 1.5px dashed rgba(108,92,231,0.4);
  border-right: 1.5px dashed rgba(108,92,231,0.4);
  background: rgba(108,92,231,0.04); z-index: 2;
}
.ft-crop-label {
  position: absolute; top: 4px; left: 50%; transform: translateX(-50%);
  font-size: 0.45rem; font-weight: 700; color: rgba(108,92,231,0.7);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.ft-crop-corners span {
  position: absolute; width: 6px; height: 6px;
  border: 1.5px solid rgba(108,92,231,0.5);
}
.ftc.tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.ftc.tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.ftc.bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.ftc.br { bottom: 0; right: 0; border-left: none; border-top: none; }
.ft-scan-line {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(108,92,231,0.4), transparent);
  animation: ftScan 3s ease-in-out infinite;
}
@keyframes ftScan { 0%, 100% { top: 10%; } 50% { top: 85%; } }
.ft-track-box {
  position: absolute; top: 35%; left: 50%; transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  z-index: 2; color: var(--blue);
}
.ft-arrow { color: var(--accent-end); opacity: 0.6; display: flex; align-items: center; flex-shrink: 0; }

/* Subtitle visual in bento — mini phone frames */
.sub-demos { display: flex; gap: 12px; align-items: flex-end; justify-content: center; }
.sub-demo { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.sub-phone-frame {
  width: 56px; height: 96px; border-radius: 10px; overflow: hidden; position: relative;
  border: 1.5px solid rgba(255,255,255,0.08);
}
.sub-video-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #1a1a30 0%, #0d0d18 100%);
}
.sub-video-bg.v2 { background: linear-gradient(180deg, #1a2030 0%, #0d1218 100%); }
.sub-video-bg.v3 { background: linear-gradient(180deg, #201a1a 0%, #180d0d 100%); }
.sub-text-area {
  position: absolute; bottom: 12px; left: 4px; right: 4px;
  display: flex; gap: 2px; justify-content: center; flex-wrap: wrap;
}
.sub-word { font-size: 6px; font-weight: 700; color: rgba(255,255,255,0.3); padding: 1px 2px; border-radius: 2px; }
.sub-word.lit { color: #fff; background: rgba(0,210,255,0.3); }
.sub-word.dim { color: rgba(255,255,255,0.15); }
.sub-text-area.minimal-style { background: rgba(0,0,0,0.4); padding: 2px 4px; border-radius: 3px; bottom: 14px; left: 6px; right: 6px; }
.sub-word-block { font-size: 6px; font-weight: 600; color: rgba(255,255,255,0.85); }
.sub-text-area.bounce-style { bottom: 14px; }
.sub-word.pop {
  font-size: 7px; font-weight: 800; color: #fff;
  background: var(--hot); padding: 2px 5px; border-radius: 3px;
  animation: subtitleBounce 2s ease-in-out infinite;
}
.sub-style-label { font-size: 9px; color: var(--text-muted); font-weight: 600; }
@keyframes subtitleBounce { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-3px) scale(1.05); } }

/* Bento small card mini-visuals */
.bsm-visual { padding: 16px 20px 8px; min-height: 56px; }
.bsm-eq { display: flex; align-items: flex-end; gap: 4px; height: 32px; justify-content: center; margin-bottom: 8px; }
.bsm-eq-bar {
  width: 8px; border-radius: 3px;
  background: rgba(0,210,255,0.15);
}
.bsm-eq-bar.hi { background: linear-gradient(180deg, var(--blue), rgba(0,210,255,0.3)); }
.bsm-presets { display: flex; gap: 4px; justify-content: center; }
.bsm-preset {
  font-size: 7px; font-weight: 600; padding: 2px 8px; border-radius: 8px;
  background: rgba(255,255,255,0.04); color: var(--text-muted);
}
.bsm-preset.active { background: rgba(0,210,255,0.12); color: var(--blue); }

.bsm-story { display: flex; align-items: center; gap: 4px; justify-content: center; }
.bsm-story-clip {
  padding: 4px 8px; border-radius: 4px; font-size: 7px; font-weight: 600;
}
.bsm-story-clip.c1 { background: rgba(0,210,255,0.1); color: var(--blue); border: 1px solid rgba(0,210,255,0.15); }
.bsm-story-clip.c2 { background: rgba(108,92,231,0.1); color: var(--accent-end); border: 1px solid rgba(108,92,231,0.15); }
.bsm-story-clip.c3 { background: rgba(34,197,94,0.1); color: var(--green); border: 1px solid rgba(34,197,94,0.15); }
.bsm-story-arrow { color: rgba(255,255,255,0.15); display: flex; }

.bsm-langs { display: flex; gap: 5px; flex-wrap: wrap; justify-content: center; }
.bsm-lang {
  width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 7px; font-weight: 700; color: var(--text-muted);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
}
.bsm-lang.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-end)); color: #fff;
  border-color: transparent; box-shadow: 0 2px 8px rgba(108,92,231,0.3);
}

/* Timeline visual in bento */
.tl-mock { width: 100%; padding: 16px 20px; }
.tl-track { display: flex; gap: 4px; margin-bottom: 6px; height: 28px; }
.tl-clip { flex: 1; border-radius: 4px; }
.tl-a { background: linear-gradient(90deg, rgba(0,210,255,0.25), rgba(0,210,255,0.1)); border: 1px solid rgba(0,210,255,0.18); }
.tl-b { background: linear-gradient(90deg, rgba(108,92,231,0.25), rgba(108,92,231,0.1)); border: 1px solid rgba(108,92,231,0.18); flex: 1.3; }
.tl-c { background: linear-gradient(90deg, rgba(168,85,247,0.25), rgba(168,85,247,0.1)); border: 1px solid rgba(168,85,247,0.18); flex: 0.8; }
.tl-d { background: linear-gradient(90deg, rgba(0,210,255,0.25), rgba(0,210,255,0.1)); border: 1px solid rgba(0,210,255,0.18); flex: 1.1; }
.tl-track.audio { height: 16px; }
.tl-audio-wave { flex: 1; border-radius: 4px; background: repeating-linear-gradient(90deg, rgba(244,63,94,0.15) 0px, rgba(244,63,94,0.3) 2px, transparent 2px, transparent 8px); }
.tl-beat-markers { position: relative; height: 14px; margin-top: 4px; }
.tl-beat-markers span {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: var(--hot); top: 4px; transform: translateX(-50%);
  animation: beatPulse 1.5s ease-in-out infinite;
}
.tl-beat-markers span:nth-child(2) { animation-delay: 0.15s; }
.tl-beat-markers span:nth-child(3) { animation-delay: 0.3s; }
.tl-beat-markers span:nth-child(4) { animation-delay: 0.45s; }
.tl-beat-markers span:nth-child(5) { animation-delay: 0.6s; }

/* =============================================
   WHY BITCUT
   ============================================= */
.advantage-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 56px 0; }
.advantage-block {
  padding: 32px; border-radius: 16px; position: relative;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s, transform 0.3s;
}
.advantage-block:hover { border-color: rgba(255,255,255,0.1); transform: translateY(-2px); }
.advantage-block h3 { margin-bottom: 8px; font-size: 1.2rem; }
.advantage-block p { color: var(--text-dim); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }

/* Glowing icon circle */
.adv-icon-glow {
  width: 56px; height: 56px; border-radius: 16px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
}
.adv-icon-glow.blue {
  background: linear-gradient(135deg, rgba(0,210,255,0.12), rgba(14,165,233,0.06));
  border: 1px solid rgba(0,210,255,0.2); color: var(--blue);
  box-shadow: 0 4px 20px rgba(0,210,255,0.1);
}
.adv-icon-glow.purple {
  background: linear-gradient(135deg, rgba(108,92,231,0.12), rgba(168,85,247,0.06));
  border: 1px solid rgba(108,92,231,0.2); color: var(--accent-end);
  box-shadow: 0 4px 20px rgba(108,92,231,0.1);
}
.adv-icon-glow.green {
  background: linear-gradient(135deg, rgba(34,197,94,0.12), rgba(34,197,94,0.06));
  border: 1px solid rgba(34,197,94,0.2); color: var(--green);
  box-shadow: 0 4px 20px rgba(34,197,94,0.1);
}
.adv-icon-glow.pink {
  background: linear-gradient(135deg, rgba(244,63,94,0.12), rgba(244,63,94,0.06));
  border: 1px solid rgba(244,63,94,0.2); color: var(--hot);
  box-shadow: 0 4px 20px rgba(244,63,94,0.1);
}

/* Card accent backgrounds */
.adv-privacy {
  background: linear-gradient(160deg, rgba(0,210,255,0.06) 0%, var(--surface) 40%);
  border-color: rgba(0,210,255,0.1);
}
.adv-editor {
  background: linear-gradient(160deg, rgba(108,92,231,0.06) 0%, var(--surface) 40%);
  border-color: rgba(108,92,231,0.1);
}
.adv-pricing {
  background: linear-gradient(160deg, rgba(34,197,94,0.06) 0%, var(--surface) 40%);
  border-color: rgba(34,197,94,0.1);
}
.adv-native {
  background: linear-gradient(160deg, rgba(244,63,94,0.06) 0%, var(--surface) 40%);
  border-color: rgba(244,63,94,0.08);
}

/* Tag pills */
.adv-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.adv-tag {
  font-size: 0.75rem; font-weight: 600; padding: 4px 12px; border-radius: 100px;
}
.adv-tag.blue { background: rgba(0,210,255,0.08); color: var(--blue); border: 1px solid rgba(0,210,255,0.12); }
.adv-tag.pink { background: rgba(244,63,94,0.08); color: var(--hot); border: 1px solid rgba(244,63,94,0.12); }

/* Checklist */
.adv-checklist { display: flex; flex-direction: column; gap: 8px; }
.adv-chk {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--text-dim);
}

/* Price comparison stack */
.adv-price-stack { display: flex; flex-direction: column; gap: 4px; margin-top: 4px; }
.adv-price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 14px; border-radius: 8px; font-size: 0.88rem;
}
.adv-price-row.comp {
  background: rgba(255,255,255,0.02); color: var(--text-muted);
}
.adv-pr-name { font-weight: 500; }
.adv-pr-price { font-weight: 600; font-variant-numeric: tabular-nums; }
.adv-price-row.comp .adv-pr-price {
  text-decoration: line-through; text-decoration-color: rgba(239,68,68,0.4);
  color: rgba(255,255,255,0.35);
}
.adv-price-row.comp .adv-pr-price small { text-decoration: none; }
.adv-price-row.ours {
  background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(34,197,94,0.04));
  border: 1px solid rgba(34,197,94,0.2); color: var(--green);
}
.adv-price-row.ours .adv-pr-name { font-weight: 700; }
.adv-price-row.ours .adv-pr-price { font-weight: 800; font-size: 1rem; }

@media (max-width: 768px) { .advantage-grid { grid-template-columns: 1fr; } }

/* Comparison Table */
.comparison-wrapper { margin-top: 48px; }
.comparison-table-scroll {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.06);
}
.comparison-table { width: 100%; border-collapse: collapse; min-width: 600px; font-size: 0.85rem; }
.comparison-table th, .comparison-table td { padding: 13px 20px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.04); white-space: nowrap; }
.comparison-table thead th { background: var(--surface); font-weight: 700; font-size: 0.9rem; position: sticky; top: 0; }
.comparison-table tbody tr:hover { background: rgba(255,255,255,0.015); }
.comparison-table td:first-child { font-weight: 600; color: var(--text-dim); position: sticky; left: 0; background: var(--bg-alt); z-index: 1; }
.comparison-table .highlight { background: rgba(108,92,231,0.06); }
.comparison-table thead th.highlight { background: linear-gradient(180deg, rgba(108,92,231,0.15), rgba(108,92,231,0.06)); color: var(--accent-end); }

.check { color: var(--green); font-weight: 700; }
.cross { color: #EF4444; }
.warn { color: #F59E0B; font-weight: 700; font-style: normal; }

/* =============================================
   iPAD
   ============================================= */
.ipad-section { text-align: center; position: relative; overflow: hidden; }
.ipad-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(108,92,231,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.ipad-showcase { margin-top: 56px; }
.ipad-frame {
  max-width: 720px; margin: 0 auto 56px; aspect-ratio: 4/3;
  background: linear-gradient(145deg, #2A2A2E, #1C1C1E);
  border-radius: 24px; padding: 14px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 40px 100px rgba(0,0,0,0.5), 0 0 100px rgba(108,92,231,0.06);
}
.ipad-screen { width: 100%; height: 100%; border-radius: 12px; overflow: hidden; background: var(--bg); }
.ipad-mock-editor { height: 100%; display: flex; flex-direction: column; }
.ipad-preview-area {
  flex: 1; background: linear-gradient(180deg, #16162a, #0d0d18);
  position: relative; overflow: hidden;
}
.ipad-vid-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,20,45,0.2), transparent 30%, rgba(10,10,20,0.5));
}
.ipad-face-box {
  position: absolute; top: 22%; left: 52%;
  width: 48px; height: 52px; border: 1.5px solid var(--blue); border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  animation: ipadFace 6s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(0,210,255,0.15);
}
@keyframes ipadFace {
  0%, 100% { left: 52%; top: 22%; }
  33% { left: 58%; top: 28%; }
  66% { left: 48%; top: 24%; }
}
.ipad-sub-overlay {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  font-size: 10px; font-weight: 700; padding: 4px 10px;
  background: rgba(0,0,0,0.5); border-radius: 4px;
  backdrop-filter: blur(6px); white-space: nowrap;
}
.ipad-sub-hl { color: var(--blue); }
.ipad-toolbar-row {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 4px;
}
.ipad-tb {
  width: 22px; height: 22px; border-radius: 5px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
}
.ipad-tb.active { background: linear-gradient(135deg, var(--accent), var(--accent-end)); }

.ipad-timeline-area {
  height: 104px; background: var(--surface); display: flex; flex-direction: column;
  padding: 6px 12px; gap: 2px;
}
.ipad-tl-row { display: flex; gap: 3px; flex: 1; }
.ipad-tl-clip {
  flex: 1; border-radius: 3px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.ipad-tl-clip span {
  font-size: 5.5px; font-weight: 600; color: rgba(255,255,255,0.5);
}
.ipad-tl-clip.a { background: linear-gradient(90deg, #1a3040, #0d1a25); border: 1px solid rgba(0,210,255,0.15); }
.ipad-tl-clip.b { background: linear-gradient(90deg, #201030, #140a20); border: 1px solid rgba(108,92,231,0.15); flex: 1.4; }
.ipad-tl-clip.c { background: linear-gradient(90deg, #0d2520, #081a15); border: 1px solid rgba(168,85,247,0.15); flex: 0.7; }
.ipad-tl-clip.d { background: linear-gradient(90deg, #1a3040, #0d1a25); border: 1px solid rgba(0,210,255,0.15); flex: 1.2; }
.ipad-tl-clip.e { background: linear-gradient(90deg, #251510, #1a0d08); border: 1px solid rgba(244,63,94,0.1); flex: 0.9; }
.ipad-tl-audio {
  height: 12px; border-radius: 3px; overflow: hidden;
}
.ipad-wave {
  height: 100%;
  background: repeating-linear-gradient(90deg, rgba(244,63,94,0.12) 0px, rgba(244,63,94,0.25) 1.5px, transparent 1.5px, transparent 6px);
}

.ipad-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 620px; margin: 0 auto; text-align: left; }
.ipad-feat { display: flex; gap: 14px; align-items: flex-start; }
.ipad-feat-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04); color: var(--text-dim);
  border: 1px solid rgba(255,255,255,0.06);
}
.ipad-feat strong { display: block; margin-bottom: 2px; font-size: 0.9rem; }
.ipad-feat p { font-size: 0.8rem; color: var(--text-dim); }

@media (max-width: 768px) {
  .ipad-features { grid-template-columns: 1fr; }
  .ipad-frame { border-radius: 16px; padding: 10px; }
}

/* =============================================
   USE CASES — flow cards with big numbers
   ============================================= */
.cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 56px; }

.case-card {
  padding: 32px 28px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 24px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
  text-decoration: none; color: inherit;
}
.case-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 0; transition: opacity 0.3s;
}
.case-card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-4px); }
.case-card:hover::before { opacity: 1; }

/* Top row: icon + title */
.cc-top { display: flex; align-items: center; gap: 14px; }
.cc-icon {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.cc-icon.blue   { background: rgba(0,210,255,0.1);  color: #00D2FF; border: 1px solid rgba(0,210,255,0.15); }
.cc-icon.purple { background: rgba(108,92,231,0.1);  color: #A855F7; border: 1px solid rgba(108,92,231,0.15); }
.cc-icon.pink   { background: rgba(244,63,94,0.1);   color: #F43F5E; border: 1px solid rgba(244,63,94,0.15); }
.cc-icon.green  { background: rgba(34,197,94,0.1);   color: #22C55E; border: 1px solid rgba(34,197,94,0.15); }
.cc-top h3 { font-size: 1.15rem; font-weight: 700; }

/* Flow: before → arrow → after */
.cc-flow {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 20px 0; border-radius: 12px;
  background: rgba(255,255,255,0.02);
}
.cc-before, .cc-after { text-align: center; }
.cc-big {
  display: block; font-size: 2.4rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, #fff 30%, rgba(255,255,255,0.5));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.cc-unit { display: block; font-size: 0.78rem; color: var(--text-dim); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 500; }
.cc-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Per-card color accents */
.cc-yt::before   { background: linear-gradient(90deg, #00D2FF, transparent); }
.cc-yt .cc-arrow  { background: rgba(0,210,255,0.12); color: #00D2FF; }
.cc-yt .cc-after .cc-big { background: linear-gradient(135deg, #00D2FF, #0EA5E9); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.cc-smm::before    { background: linear-gradient(90deg, #A855F7, transparent); }
.cc-smm .cc-arrow  { background: rgba(168,85,247,0.12); color: #A855F7; }
.cc-smm .cc-after .cc-big { background: linear-gradient(135deg, #A855F7, #6C5CE7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.cc-music::before    { background: linear-gradient(90deg, #F43F5E, transparent); }
.cc-music .cc-arrow  { background: rgba(244,63,94,0.12); color: #F43F5E; }
.cc-music .cc-after .cc-big { background: linear-gradient(135deg, #F43F5E, #FF6B6B); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.cc-edu::before    { background: linear-gradient(90deg, #22C55E, transparent); }
.cc-edu .cc-arrow  { background: rgba(34,197,94,0.12); color: #22C55E; }
.cc-edu .cc-after .cc-big { background: linear-gradient(135deg, #22C55E, #4ADE80); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Result text */
.cc-result { color: var(--text-dim); font-size: 0.88rem; line-height: 1.5; margin: 0; }

@media (max-width: 600px) {
  .cases-grid { grid-template-columns: 1fr; }
  .cc-big { font-size: 2rem; }
  .cc-flow { gap: 12px; padding: 16px 0; }
}

/* =============================================
   PRICING
   ============================================= */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; align-items: start; }

.pricing-card {
  padding: 36px 28px; background: var(--surface); border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05); text-align: center;
}
.pricing-featured {
  position: relative; border-color: rgba(108,92,231,0.4);
  background: linear-gradient(180deg, rgba(108,92,231,0.08) 0%, var(--surface) 40%);
  box-shadow: 0 0 80px rgba(108,92,231,0.1); transform: scale(1.04);
}
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 4px 16px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--accent), var(--accent-end)); color: #fff; border-radius: 100px; white-space: nowrap;
}
.pricing-header { margin-bottom: 24px; }
.pricing-header h3 { font-size: 1.4rem; margin-bottom: 8px; }
.pricing-price { font-size: 2.4rem; font-weight: 900; }
.pricing-period { font-size: 0.95rem; font-weight: 500; color: var(--text-dim); }
.pricing-annual { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
.pricing-save { color: var(--green); font-weight: 600; }
.pricing-includes { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 16px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 28px; }
.pricing-features li { padding: 8px 0; font-size: 0.88rem; border-bottom: 1px solid rgba(255,255,255,0.03); display: flex; align-items: center; gap: 10px; }
.pf-check { color: var(--green); font-weight: 700; flex-shrink: 0; }
.pf-ai { flex-shrink: 0; display: flex; align-items: center; }
.pricing-card .btn { width: 100%; }
.pricing-trust { text-align: center; font-size: 0.85rem; color: var(--text-muted); margin-top: 32px; }

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .pricing-featured { transform: none; }
}

/* =============================================
   FINAL CTA — gradient band
   ============================================= */
.final-cta { padding: 160px 0; position: relative; overflow: hidden; }
.final-cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, #1A0D22 30%, #1A0D22 70%, var(--bg) 100%);
}
.final-cta .container { position: relative; z-index: 1; }
.final-headline {
  background: linear-gradient(135deg, #fff 40%, var(--hot));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.final-cta .btn { margin-top: 36px; }
.final-meta { margin-top: 20px; font-size: 0.85rem; color: var(--text-muted); }

/* =============================================
   FOOTER
   ============================================= */
.footer { padding: 80px 0 40px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-tagline { color: var(--text-muted); font-size: 0.85rem; margin-top: 8px; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 0.8rem; color: var(--text-dim); transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05); text-align: center; }
.footer-bottom p { font-size: 0.75rem; color: var(--text-muted); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .iphone-frame.hero-phone { width: 240px; height: 500px; }
  .hw-stage-label { padding-top: 36px; font-size: 11px; }
  .hw-generate-btn { font-size: 11px; padding: 8px 16px; }
  .hw-proc-ring { width: 64px; height: 64px; }
  .hw-proc-ring svg { width: 64px; height: 64px; }
  .hw-proc-pct { font-size: 14px; }
  .hw-step { padding: 7px 10px; }
  .hw-step-name { font-size: 10px; }
}

/* =============================================
   GLOBAL: Beat pulse animation
   ============================================= */
@keyframes beatPulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.5); box-shadow: 0 0 8px var(--hot); }
}

/* =============================================
   HERO PHONE: 4-Stage Workflow
   ============================================= */
.hero-phone { width: 310px; height: 640px; }

#heroPhone { position: relative; height: 100%; overflow: hidden; }

.hero-scene {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.hero-scene.active {
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
}

/* Scene nav dots */
.hero-scene-nav {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 20;
}
.hs-dot {
  width: 6px; height: 6px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.2); transition: all 0.3s; padding: 0;
}
.hs-dot.active { background: var(--accent-end); width: 18px; border-radius: 3px; }

/* Stage label (top bar) */
.hw-stage-label {
  display: flex; align-items: center; gap: 8px;
  padding: 44px 14px 8px; /* space under notch */
  font-size: 13px; font-weight: 700; color: var(--text);
}
.hw-num {
  width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-end));
}

/* ── STAGE 1: Import ── */
.hw-import { flex: 1; display: flex; flex-direction: column; padding: 0 12px; gap: 8px; }

.hw-preview-area {
  flex: 1; min-height: 0; position: relative; border-radius: 12px; overflow: hidden;
  background: linear-gradient(180deg, #16162a, #0d0d18);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.hw-vid-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(108,92,231,0.1), rgba(0,210,255,0.05));
}
/* Speaker silhouette */
.hw-vid-speaker {
  position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center;
  margin-bottom: 8px;
}
.hw-speaker-head {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.08);
}
.hw-speaker-body {
  width: 40px; height: 24px; margin-top: -4px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}
/* Mini waveform under speaker */
.hw-vid-waveform {
  display: flex; align-items: flex-end; gap: 2px; height: 28px;
  position: relative; z-index: 1; margin-bottom: 6px;
}
.hw-vw-bar {
  width: 5px; border-radius: 2px;
  background: linear-gradient(180deg, rgba(0,210,255,0.4), rgba(108,92,231,0.2));
  animation: hwWave 2s ease-in-out infinite alternate;
}
.hw-vw-bar:nth-child(2) { animation-delay: 0.15s; }
.hw-vw-bar:nth-child(3) { animation-delay: 0.3s; }
.hw-vw-bar:nth-child(4) { animation-delay: 0.45s; }
.hw-vw-bar:nth-child(5) { animation-delay: 0.6s; }
.hw-vw-bar:nth-child(6) { animation-delay: 0.75s; }
.hw-vw-bar:nth-child(7) { animation-delay: 0.9s; }
.hw-vw-bar:nth-child(8) { animation-delay: 1.05s; }
.hw-vw-bar:nth-child(9) { animation-delay: 1.2s; }
.hw-vw-bar:nth-child(10) { animation-delay: 1.35s; }
@keyframes hwWave {
  0% { transform: scaleY(1); }
  100% { transform: scaleY(0.5); }
}
/* HUD overlay */
.hw-vid-hud {
  position: absolute; top: 8px; left: 0; right: 0;
  display: flex; justify-content: space-between; padding: 0 10px;
  z-index: 2;
}
.hw-hud-name { font-size: 8px; font-weight: 600; color: rgba(255,255,255,0.35); }
.hw-hud-dur {
  font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.5);
  padding: 1px 5px; background: rgba(0,0,0,0.4); border-radius: 3px;
  font-variant-numeric: tabular-nums;
}
/* Play button */
.hw-vid-play {
  position: absolute; z-index: 2;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(108,92,231,0.3); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(255,255,255,0.15);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
/* Progress bar */
.hw-vid-progress {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: rgba(255,255,255,0.06); z-index: 2;
}
.hw-vid-progress-fill {
  width: 15%; height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  border-radius: 0 2px 2px 0;
}

.hw-timeline-mini { padding: 0; }
.hw-tl-header-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 4px;
}
.hw-tl-label {
  font-size: 9px; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.hw-tl-time {
  font-size: 8px; font-weight: 600; color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}
.hw-tl-audio-row {
  height: 14px; border-radius: 4px; margin-top: 3px; overflow: hidden;
  background: var(--surface); border: 1px solid rgba(255,255,255,0.03);
}
.hw-tl-audio-wave {
  height: 100%;
  background: repeating-linear-gradient(90deg,
    rgba(244,63,94,0.08) 0px, rgba(244,63,94,0.18) 1px, transparent 1px, transparent 4px);
}
.hw-tl-track {
  height: 36px; border-radius: 6px; overflow: hidden;
  background: var(--surface); border: 1px solid rgba(255,255,255,0.04);
}
.hw-long-clip {
  height: 100%; position: relative; display: flex; align-items: center; padding: 0 10px;
  background: linear-gradient(90deg, rgba(0,210,255,0.08), rgba(108,92,231,0.08));
  border-left: 3px solid var(--blue);
}
.hw-clip-wave {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg,
    rgba(0,210,255,0.06) 0px, rgba(0,210,255,0.12) 1px, transparent 1px, transparent 4px);
}
.hw-clip-name { font-size: 10px; font-weight: 600; color: var(--text-dim); position: relative; z-index: 1; }
.hw-clip-len {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-size: 9px; font-weight: 700; color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.hw-cta-area { text-align: center; padding: 6px 0 28px; }
.hw-generate-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; border: none; border-radius: 10px; cursor: pointer;
  font-size: 12px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-end));
  box-shadow: 0 4px 20px rgba(108,92,231,0.4);
}
.hw-hint { font-size: 9px; color: var(--text-muted); margin-top: 6px; }

/* ── STAGE 2: AI Processing ── */
.hw-processing { flex: 1; display: flex; flex-direction: column; padding: 0 14px; gap: 16px; }

.hw-proc-visual {
  text-align: center; padding: 16px 0 8px;
  display: flex; flex-direction: column; align-items: center;
}
.hw-proc-ring {
  position: relative; width: 80px; height: 80px; margin-bottom: 12px;
}
.hw-proc-ring svg { display: block; }
.hw-ring-progress {
  transform-origin: center; transform: rotate(-90deg);
  animation: hwRingSpin 3s linear infinite;
}
@keyframes hwRingSpin {
  from { transform: rotate(-90deg); }
  to { transform: rotate(270deg); }
}
.hw-proc-pct {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: var(--text);
}
.hw-proc-title { font-size: 14px; font-weight: 700; color: var(--text); }
.hw-proc-sub { font-size: 10px; color: var(--text-muted); margin-top: 2px; }

.hw-steps { display: flex; flex-direction: column; gap: 10px; padding: 0 4px 28px; flex: 1; }
.hw-step {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 10px;
  background: var(--surface); border: 1px solid rgba(255,255,255,0.04);
}
.hw-step.active { border-color: rgba(108,92,231,0.3); background: linear-gradient(135deg, rgba(108,92,231,0.08), var(--surface)); }
.hw-step.done { opacity: 0.65; }
.hw-step.pending { opacity: 0.35; }

.hw-step-icon {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; color: var(--text-muted);
}
.hw-step-icon.done { background: rgba(34,197,94,0.15); color: var(--green); }
.hw-step-icon.active { background: rgba(108,92,231,0.15); }
.hw-step-icon.pending { background: rgba(255,255,255,0.05); }

.hw-spinner {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid rgba(108,92,231,0.2); border-top-color: var(--accent-end);
  animation: hwSpin 0.8s linear infinite;
}
@keyframes hwSpin { to { transform: rotate(360deg); } }

.hw-step-name { font-size: 11px; font-weight: 600; color: var(--text); }
.hw-step-detail { font-size: 9px; color: var(--text-muted); margin-top: 1px; }

/* ── STAGE 3: Shorts Results ── */
.hw-results { flex: 1; display: flex; flex-direction: column; padding: 0 10px; overflow: hidden; }

.hw-results-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 2px 4px 8px;
}
.hw-rb-count { font-size: 12px; font-weight: 700; color: var(--text); }
.hw-rb-badge {
  font-size: 8px; font-weight: 600; color: var(--blue);
  padding: 3px 8px; background: rgba(0,210,255,0.1); border-radius: 8px;
  border: 1px solid rgba(0,210,255,0.15);
}

.hw-shorts-list { display: flex; flex-direction: column; gap: 6px; flex: 1; padding-bottom: 28px; overflow: hidden; }

.hw-short {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 8px 10px; border-radius: 10px;
  background: var(--surface); border: 1px solid rgba(255,255,255,0.04);
}
.hw-short.gold {
  border-color: rgba(255,215,0,0.2);
  background: linear-gradient(135deg, rgba(255,215,0,0.06), var(--surface));
}
.hw-short.dim { opacity: 0.35; }

.hw-sh-rank {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800; color: var(--text-muted);
  background: rgba(255,255,255,0.05);
}
.hw-short.gold .hw-sh-rank { background: rgba(255,215,0,0.15); color: #FFD700; }

.hw-sh-score {
  font-size: 16px; font-weight: 800; flex-shrink: 0; line-height: 1;
  background: linear-gradient(135deg, #fff, var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hw-sh-body { flex: 1; min-width: 0; }
.hw-sh-title { font-size: 10.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hw-sh-meta { font-size: 8px; color: var(--text-muted); margin-top: 2px; }

.hw-sh-bars { display: flex; flex-direction: column; gap: 3px; margin-top: 5px; }
.hw-bar-row { display: flex; align-items: center; gap: 4px; }
.hw-bar-label { font-size: 7px; font-weight: 600; color: var(--text-muted); width: 26px; }
.hw-bar-track { flex: 1; height: 3px; background: rgba(255,255,255,0.06); border-radius: 2px; }
.hw-bar-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--accent), var(--blue)); }

/* ── STAGE 4: Publish ── */
.hw-publish { flex: 1; display: flex; flex-direction: column; padding: 0 12px; gap: 10px; }

.hw-pub-card {
  border-radius: 12px; overflow: hidden;
  background: var(--surface); border: 1px solid rgba(255,255,255,0.04);
}
.hw-pub-thumb {
  height: 100px; position: relative;
  background: linear-gradient(135deg, #1a1030, #0d0a18);
  display: flex; align-items: center; justify-content: center;
}
.hw-pub-dur {
  position: absolute; bottom: 6px; right: 8px;
  font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.7);
  padding: 2px 6px; background: rgba(0,0,0,0.6); border-radius: 3px;
}
.hw-pub-badge {
  position: absolute; top: 6px; left: 8px;
  font-size: 14px; font-weight: 800;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hw-pub-link-row {
  display: flex; align-items: center; gap: 6px; padding: 8px 10px;
  font-size: 10px; color: var(--blue); font-weight: 500;
}
.hw-copy-btn {
  margin-left: auto; font-size: 8px; font-weight: 700; color: var(--accent-end);
  padding: 2px 8px; border-radius: 4px; background: rgba(168,85,247,0.1);
}

.hw-pub-desc-card {
  padding: 10px 12px; border-radius: 10px;
  background: var(--surface); border: 1px solid rgba(255,255,255,0.04);
}
.hw-pub-label {
  font-size: 8px; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 5px;
}
.hw-pub-text { font-size: 10px; color: var(--text-dim); line-height: 1.5; }
.hw-pub-tags { font-size: 9px; color: var(--blue); margin-top: 5px; }

.hw-pub-platforms { display: flex; gap: 6px; }
.hw-plat {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 4px;
  font-size: 9px; font-weight: 600; padding: 7px 0; border-radius: 8px;
  background: rgba(255,255,255,0.04); color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.04);
}
.hw-plat.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-end)); color: #fff;
  border-color: transparent;
}

.hw-pub-status {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px; border-radius: 10px;
  background: rgba(34,197,94,0.06); border: 1px solid rgba(34,197,94,0.15);
  margin-bottom: 28px;
}
.hw-pub-check {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(34,197,94,0.15); color: var(--green);
}
.hw-pub-st-main { font-size: 11px; font-weight: 700; color: var(--green); display: block; }
.hw-pub-st-sub { font-size: 9px; color: var(--text-muted); display: block; }

/* =============================================
   BEAT SYNC: Confirmation Dots (circle → check)
   ============================================= */
.beat-sync-dots {
  position: relative; height: 30px; margin-top: 10px;
}
.sync-dot {
  position: absolute; top: 4px; transform: translateX(-50%);
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(244,63,94,0.35);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.sync-dot .sd-circle { display: block; }
.sync-dot .sd-check { display: none; }
.sync-dot.synced {
  color: var(--green);
  transform: translateX(-50%) scale(1.35);
  filter: drop-shadow(0 0 8px rgba(34,197,94,0.5));
}
.sync-dot.synced .sd-circle { display: none; }
.sync-dot.synced .sd-check { display: block; }

/* =============================================
   iPAD: Enriched Mockup
   ============================================= */
.ipad-scene-content {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.ipad-speaker { position: relative; z-index: 1; }

.ipad-crop-lines {
  position: absolute; top: 0; bottom: 0; left: 0; right: 0; z-index: 2;
  pointer-events: none;
}
.ipad-cl {
  position: absolute; top: 0; bottom: 0; width: 1.5px;
  background: repeating-linear-gradient(180deg, rgba(108,92,231,0.4) 0px, rgba(108,92,231,0.4) 4px, transparent 4px, transparent 8px);
}
.ipad-cl.left { left: 35%; }
.ipad-cl.right { right: 35%; }
.ipad-cl-label {
  position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  font-size: 6px; font-weight: 700; color: rgba(108,92,231,0.5);
  white-space: nowrap; letter-spacing: 0.05em;
}

.ipad-tl-header {
  display: flex; align-items: baseline; gap: 3px; padding: 3px 0;
}
.ipad-time-current { font-size: 8px; font-weight: 700; color: var(--text); font-variant-numeric: tabular-nums; }
.ipad-time-total { font-size: 6.5px; color: var(--text-muted); }

.ipad-tl-body { position: relative; }

.ipad-tl-playhead {
  position: absolute; top: 0; bottom: 0; left: 22%; width: 1.5px;
  background: rgba(255,255,255,0.8); z-index: 5;
}
.ipad-tl-playhead::before {
  content: ''; position: absolute; top: -2px; left: -3px;
  width: 7px; height: 7px; background: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.ipad-tl-beats {
  position: relative; height: 10px;
}
.ipad-tl-beats span {
  position: absolute; width: 5px; height: 5px; border-radius: 50%;
  background: var(--hot); top: 2px; transform: translateX(-50%);
  animation: beatPulse 1.5s ease-in-out infinite;
}
.ipad-tl-beats span:nth-child(2) { animation-delay: 0.15s; }
.ipad-tl-beats span:nth-child(3) { animation-delay: 0.3s; }
.ipad-tl-beats span:nth-child(4) { animation-delay: 0.45s; }
.ipad-tl-beats span:nth-child(5) { animation-delay: 0.6s; }
.ipad-tl-beats span:nth-child(6) { animation-delay: 0.75s; }

/* iPad scene depth layers */
.ipad-scene-sky {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(8,16,32,0.9) 0%,
    rgba(12,20,40,0.7) 30%,
    rgba(18,28,52,0.5) 50%,
    rgba(15,22,40,0.6) 70%,
    rgba(10,14,28,0.8) 100%
  );
  z-index: 0;
}
.ipad-scene-fg {
  position: absolute; bottom: 30px; left: 0; right: 0; height: 30%;
  background: linear-gradient(180deg, transparent 0%, rgba(10,10,20,0.4) 100%);
  z-index: 0;
}

/* iPad play button */
.ipad-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -70%);
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
}

/* iPad timecode HUD */
.ipad-timecode {
  position: absolute; top: 6px; left: 10px;
  font-size: 6.5px; font-weight: 600; color: rgba(255,255,255,0.4);
  font-variant-numeric: tabular-nums; letter-spacing: 0.05em;
  z-index: 3;
}

/* iPad subtitle track */
.ipad-tl-subs {
  display: flex; gap: 0; height: 12px; margin-bottom: 2px;
}
.ipad-sub-block {
  font-size: 4.5px; font-weight: 600; color: rgba(255,255,255,0.5);
  background: rgba(168,85,247,0.12); border: 1px solid rgba(168,85,247,0.15);
  border-radius: 2px; display: flex; align-items: center; padding: 0 3px;
  white-space: nowrap; overflow: hidden;
}
.ipad-sub-gap { }

/* ============================================
   LEGAL PAGES (Terms, Privacy, EULA)
   ============================================ */
.legal-page {
  padding: 160px 0 100px;
  min-height: 100vh;
}

.legal-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.legal-header h1 {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.legal-updated {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

.legal-content {
  max-width: 780px;
}

.legal-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 56px;
  margin-bottom: 20px;
  color: var(--text);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text);
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 12px 0 20px 0;
  padding-left: 24px;
  list-style: none;
}

.legal-content ul li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-dim);
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.legal-content strong {
  color: var(--text);
  font-weight: 600;
}

.legal-content a {
  color: var(--accent-end);
  text-decoration: underline;
  text-decoration-color: rgba(168,85,247,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}

.legal-content a:hover {
  text-decoration-color: var(--accent-end);
}

@media (max-width: 768px) {
  .legal-page {
    padding: 120px 0 60px;
  }
  .legal-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
  }
  .legal-content h2 {
    margin-top: 40px;
  }
}

/* =============================================
   FAQ PAGE
   ============================================= */
.faq-page {
  padding-top: 120px; padding-bottom: 100px; min-height: 100vh;
}
.faq-header {
  text-align: center; margin-bottom: 72px;
}
.faq-header h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800;
  line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 16px;
}
.faq-header p {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--text-dim);
  max-width: 500px; margin: 0 auto; line-height: 1.7;
}
.faq-categories {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 48px;
}
.faq-cat-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.15rem; font-weight: 700; color: var(--text);
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.faq-cat-title svg { color: var(--blue); opacity: 0.8; }
.faq-list { display: flex; flex-direction: column; gap: 2px; }

.faq-item {
  background: var(--surface); border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}
.faq-item:hover { border-color: rgba(255,255,255,0.08); }
.faq-item[open] { border-color: rgba(108,92,231,0.2); background: rgba(108,92,231,0.04); }

.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; font-size: 1rem; font-weight: 600; color: var(--text);
  cursor: pointer; list-style: none; user-select: none; -webkit-user-select: none;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ""; }
.faq-item summary::after {
  content: ""; display: inline-block; width: 10px; height: 10px;
  border-right: 2px solid var(--text-dim); border-bottom: 2px solid var(--text-dim);
  transform: rotate(45deg); transition: transform 0.3s, border-color 0.3s;
  flex-shrink: 0; margin-left: 16px;
}
.faq-item[open] summary::after { transform: rotate(-135deg); border-color: var(--accent-end); }
.faq-item[open] summary { color: var(--accent-end); }

.faq-answer {
  overflow: hidden; max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.3s;
  padding: 0 24px;
}
.faq-item[open] .faq-answer { max-height: 500px; padding: 0 24px 20px; }
.faq-answer p { font-size: 0.95rem; line-height: 1.75; color: var(--text-dim); }
.faq-answer p + p { margin-top: 12px; }
.faq-answer strong { color: var(--text); font-weight: 600; }
.faq-answer ul {
  margin: 10px 0 6px; padding-left: 20px;
  color: var(--text-dim); font-size: 0.95rem; line-height: 1.75;
}
.faq-answer ul li { margin-bottom: 4px; }

.faq-contact {
  text-align: center; margin-top: 80px; padding: 48px 32px;
  background: var(--surface); border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius); max-width: 600px;
  margin-left: auto; margin-right: auto;
}
.faq-contact h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.faq-contact p { color: var(--text-dim); font-size: 0.95rem; margin-bottom: 24px; line-height: 1.6; }
.faq-contact .btn { display: inline-flex; }

@media (max-width: 768px) {
  .faq-page { padding-top: 96px; padding-bottom: 60px; }
  .faq-header { margin-bottom: 48px; }
  .faq-categories { gap: 36px; }
  .faq-item summary { padding: 16px 18px; font-size: 0.95rem; }
  .faq-answer { padding: 0 18px; }
  .faq-item[open] .faq-answer { padding: 0 18px 16px; }
  .faq-contact { margin-top: 56px; padding: 36px 24px; }
}
