/* Base */
:root {
  --bg: #0d0d0f;
  --fg: #f0f0f5;
  --accent: #00E5FF;
  --accent-dim: rgba(0, 229, 255, 0.08);
  --violet: #7C3AED;
  --muted: rgba(240, 240, 245, 0.45);
  --surface: rgba(255,255,255,0.03);
  --border: rgba(255,255,255,0.07);
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(13,13,15,0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: var(--fg);
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  padding-left: 16px;
  border-left: 1px solid var(--border);
}
/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
/* Player mockup */
.player-mockup {
  background: #111114;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,229,255,0.08) inset;
}
.player-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.player-dots { display: flex; gap: 6px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #FF5F57; }
.dot-yellow { background: #FEBC2E; }
.dot-green { background: #28C840; }
.player-title { font-size: 12px; color: var(--muted); margin-left: 8px; font-family: var(--font-body); }
.player-video {
  position: relative;
  background: #1a1a1f;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.player-play-icon { opacity: 0.3; }
.player-timeline { width: 90%; }
.timeline-progress {
  height: 2px;
  background: rgba(0,229,255,0.2);
  border-radius: 2px;
  position: relative;
}
.timeline-progress::after {
  content: '';
  position: absolute;
  left: 35%;
  top: -3px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.timeline-clips {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.clip-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 11px;
}
.clip-time { color: var(--accent); font-family: var(--font-body); }
.clip-score {
  background: var(--accent);
  color: #0d0d0f;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-head);
  padding: 1px 6px;
  border-radius: 10px;
}
.player-bottombar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  background: rgba(0,0,0,0.3);
}
.p-label { font-size: 11px; color: var(--muted); font-family: var(--font-body); }
.p-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
}
.p-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.clips-generated {
  padding: 16px;
  border-top: 1px solid var(--border);
}
.clips-label { font-size: 11px; color: var(--muted); font-family: var(--font-body); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.clips-list { display: flex; flex-direction: column; gap: 6px; }
.clip-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.cr-label { font-size: 12px; color: var(--fg); font-family: var(--font-body); }
.cr-badge {
  font-size: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 2px 8px;
  border-radius: 10px;
}
/* Hero right */
.hero-headline {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 28px;
}
.hl-accent { color: var(--accent); }
.hero-sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.hero-sub-2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--accent);
  margin-top: 8px;
}
/* Manifesto */
.manifesto {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.manifesto-text {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: var(--fg);
}
.manifesto-text strong { color: var(--accent); }
/* Workflow */
.workflow { padding: 100px 40px; }
.workflow-header { max-width: 1100px; margin: 0 auto 60px; }
.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 8px;
}
.section-sub { font-size: 16px; color: var(--muted); font-family: var(--font-body); }
.workflow-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step { flex: 1; }
.step-connector { display: flex; align-items: center; padding-top: 20px; }
.step-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 48px;
  color: var(--accent);
  opacity: 0.5;
  letter-spacing: -2px;
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.step-desc {
  font-size: 14px;
  color: var(--muted);
  font-family: var(--font-body);
  line-height: 1.7;
}
/* Features */
.features {
  padding: 80px 40px 100px;
  background: rgba(255,255,255,0.015);
  border-top: 1px solid var(--border);
}
.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.feat {
  padding: 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.feat:hover { border-color: rgba(0,229,255,0.2); }
.feat-primary { border-left: 3px solid var(--accent); }
.feat-icon { margin-bottom: 20px; }
.feat-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.feat-desc {
  font-size: 14px;
  color: var(--muted);
  font-family: var(--font-body);
  line-height: 1.7;
}
/* Closing */
.closing {
  padding: 120px 40px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, #0a0a0d 100%);
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: var(--muted);
  font-family: var(--font-body);
  line-height: 1.7;
}
/* Footer */
.footer {
  padding: 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  color: var(--fg);
}
.footer-copy { font-size: 13px; color: var(--muted); font-family: var(--font-body); }
/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav-tagline { display: none; }
  .hero { padding: 100px 20px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-headline { font-size: 38px; }
  .manifesto { padding: 60px 20px; }
  .manifesto-text { font-size: 20px; }
  .workflow { padding: 60px 20px; }
  .workflow-steps { flex-direction: column; gap: 40px; }
  .step-connector { display: none; }
  .features { padding: 60px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 20px; }
  .closing-headline { font-size: 32px; }
  .footer-inner { flex-direction: column; gap: 8px; }
}