/* =====================
   CLIP CRAFT — THEME
   ===================== */

:root {
  --bg: #0A0A0A;
  --bg-card: #111111;
  --bg-elevated: #1A1A1A;
  --accent: #F7E000;
  --accent-dim: #C8B800;
  --text: #FFFFFF;
  --text-muted: #8A8A8A;
  --text-dim: #5A5A5A;
  --border: rgba(255,255,255,0.07);
  --radius: 16px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}
.nav-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 3px 8px;
  border-radius: 4px;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(247,224,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-text { position: relative; z-index: 1; }
.hero-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--text);
}
.highlight {
  color: var(--accent);
  display: inline;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 460px;
  font-weight: 400;
}

/* Dashboard Mock */
.hero-visual { position: relative; z-index: 1; }
.dashboard-mock {
  background: #0D0D0D;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
}
.mock-bar {
  display: flex;
  gap: 8px;
  padding: 16px 20px;
  background: #141414;
  border-bottom: 1px solid var(--border);
}
.mock-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.mock-dot.red { background: #FF5F57; }
.mock-dot.yellow { background: #FFBD2E; }
.mock-dot.green { background: #28CA41; }
.mock-content {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 320px;
}
.mock-sidebar {
  background: #0F0F0F;
  border-right: 1px solid var(--border);
  padding: 16px 0;
}
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
}
.sidebar-item.active {
  color: var(--text);
  background: rgba(247,224,0,0.08);
  border-left: 2px solid var(--accent);
}
.sidebar-icon {
  width: 16px; height: 16px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
}
.sidebar-item.active .sidebar-icon {
  background: var(--accent);
}
.mock-main { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.mock-video-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1C1C1C 0%, #252525 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.play-icon {
  width: 36px; height: 36px;
  background: rgba(247,224,0,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 12px;
  padding-left: 2px;
}
.mock-clips-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.clip-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.clip-preview {
  width: 100%;
  aspect-ratio: 9/16;
  background: linear-gradient(180deg, #1E1E1E, #181818);
}
.clip-label {
  font-size: 10px;
  color: var(--text-dim);
  padding: 6px 8px 0;
  font-weight: 600;
}
.clip-score {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px 8px;
}
.score-bar {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.score-bar::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: var(--s, 90%);
  background: var(--accent);
  border-radius: 2px;
}
.clip-card[data-score="94"] .score-bar::after { width: 94%; }
.clip-card[data-score="89"] .score-bar::after { width: 89%; }
.clip-card[data-score="81"] .score-bar::after { width: 81%; }
.clip-score span {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  min-width: 20px;
  text-align: right;
}
.mock-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #28CA41;
  box-shadow: 0 0 6px rgba(40,202,65,0.5);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ── How It Works ── */
.howitworks {
  padding: 100px 40px;
  background: #080808;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.howitworks-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 64px;
  line-height: 1.1;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.step { padding: 0 20px; }
.step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.step-icon { margin-bottom: 16px; display: inline-block; }
.step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.step-connector {
  width: 40px;
  height: 2px;
  background: var(--border);
  margin-top: 52px;
  position: relative;
}
.step-connector::after {
  content: '>';
  position: absolute;
  right: -12px;
  top: -10px;
  color: var(--text-dim);
  font-size: 14px;
}

/* ── Features ── */
.features { padding: 100px 40px; background: var(--bg); }
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-inner .section-headline { margin-bottom: 56px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 36px 32px;
  position: relative;
  transition: background 0.2s ease;
}
.feature-card:hover { background: #141414; }
.feature-card.feature-accent { border-top: 2px solid var(--accent); }
.feature-card.feature-accent-2 { border-top: 2px solid rgba(247,224,0,0.4); }
.feature-icon-wrap {
  width: 48px; height: 48px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.feature-card.feature-accent .feature-icon-wrap {
  background: rgba(247,224,0,0.1);
  border-color: rgba(247,224,0,0.2);
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Manifesto ── */
.manifesto {
  padding: 120px 40px;
  background: #080808;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner { max-width: 900px; margin: 0 auto; }
.manifesto-quote {
  margin-bottom: 48px;
  position: relative;
}
.quote-mark {
  font-size: 120px;
  font-family: var(--font-display);
  color: var(--accent);
  line-height: 0.5;
  margin-bottom: 20px;
  opacity: 0.4;
}
.manifesto-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--text);
}
.manifesto-body {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 64px;
  max-width: 680px;
}
.manifesto-stats {
  display: flex;
  gap: 0;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
}
.stat {
  flex: 1;
  padding: 32px 28px;
  text-align: center;
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.stat-sep {
  width: 1px;
  height: 80px;
  background: var(--border);
}

/* ── Footer ── */
.footer {
  padding: 60px 40px;
  background: var(--bg);
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand { margin-bottom: 32px; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
}
.footer-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-dim);
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-divider { color: var(--text-dim); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual { order: -1; }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .step-connector { display: none; }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .manifesto-stats {
    flex-direction: column;
  }
  .stat-sep {
    width: 100%;
    height: 1px;
  }
  .hero { padding: 100px 24px 60px; }
  .howitworks, .features, .manifesto { padding: 80px 24px; }
  .footer { padding: 40px 24px; }
  .nav { padding: 16px 24px; }
}

@media (max-width: 600px) {
  .hero-headline { letter-spacing: -1px; }
  .mock-clips-row { grid-template-columns: repeat(3, 1fr); }
}