:root {
  --bg: #0f0f0f;
  --bg-alt: #171717;
  --fg: #f0ede6;
  --fg-muted: #8a857d;
  --accent: #e8f032;
  --accent-dim: rgba(232, 240, 50, 0.12);
  --border: rgba(240, 237, 230, 0.1);
  --radius: 12px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1100px; margin: 0 auto; }
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 40px 80px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 600;
}
.hero-text h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.7;
}

/* CLIP PREVIEW */
.hero-visual { position: relative; }
.clip-preview {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,240,50,0.06);
}
.clip-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: #1c1c1c;
  border-bottom: 1px solid var(--border);
}
.clip-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.clip-dot:first-child { background: #ff5f57; }
.clip-dot:nth-child(2) { background: #febc2e; }
.clip-dot:nth-child(3) { background: #28c840; }
.clip-title {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-left: 6px;
}
.clip-body { padding: 20px; }
.clip-timeline {
  position: relative;
  height: 48px;
  background: #222;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
}
.timeline-bar {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg,
    rgba(232,240,50,0.15) 0% 11%,
    transparent 11% 30%,
    rgba(232,240,50,0.15) 30% 33%,
    transparent 33% 57%,
    rgba(232,240,50,0.15) 57% 60%,
    transparent 60% 73%,
    rgba(232,240,50,0.15) 73% 77%,
    transparent 77% 88%,
    rgba(232,240,50,0.15) 88% 91%,
    transparent 91%);
}
.timeline-markers {
  position: absolute;
  bottom: 6px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
}
.marker {
  font-size: 0.65rem;
  color: var(--fg-muted);
  font-variant-numeric: tabular-nums;
}
.clip-outputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.clip-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1e1e1e;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.clip-card.posted { border-color: rgba(232,240,50,0.25); color: var(--fg); }
.clip-icon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  flex-shrink: 0;
}
.yt { background: #ff0000; }
.ig { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.tt { background: #010101; border: 1px solid #333; }
.tw { background: #000; }
.clip-badge {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 2px 8px;
  border-radius: 20px;
}
.clip-badge.posted { color: var(--fg); background: rgba(240,237,230,0.1); }

/* SHARED SECTION STYLES */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

/* HOW IT WORKS */
.howitworks { padding: 100px 0; border-top: 1px solid var(--border); }
.howitworks h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 60px;
  max-width: 480px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.step {
  padding: 32px 28px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 0;
}
.step:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.step:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.35;
  display: block;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--fg);
}
.step p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.65; }

/* FEATURES */
.features { padding: 100px 0; background: var(--bg-alt); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 50px;
}
.feature-card {
  padding: 40px 36px;
  background: var(--bg);
  border: 1px solid var(--border);
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border: 1px solid rgba(232,240,50,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}
.feature-card p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.7; }

/* PLATFORMS */
.platforms { padding: 100px 0; border-top: 1px solid var(--border); }
.platforms h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 50px;
  max-width: 500px;
}
.platform-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.platform-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 24px;
  font-size: 0.9rem;
  color: var(--fg-muted);
  min-width: 160px;
}
.platform-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.yt-logo { background: #ff0000; color: #fff; }
.ig-logo { background: #e1306c; color: #fff; }
.tt-logo { background: #010101; border: 1px solid #333; color: #fff; }
.x-logo { background: #000; color: #fff; }

/* CLOSING */
.closing {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 28px;
}
.closing p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* 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: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}
.footer-copy { font-size: 0.85rem; color: var(--fg-muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .steps { grid-template-columns: 1fr; }
  .step:first-child { border-radius: var(--radius) var(--radius) 0 0; }
  .step:last-child { border-radius: 0 0 var(--radius) var(--radius); }
  .features-grid { grid-template-columns: 1fr; }
  .nav-logo { font-size: 1rem; }
  nav, .section-inner, .hero, footer { padding-left: 24px; padding-right: 24px; }
}