/* ClipForge — Synth-Media Operator Theme */
:root {
  --bg: #080b0e;
  --bg-alt: #0d1117;
  --bg-surface: #111820;
  --fg: #e8f0e8;
  --fg-dim: #6b7c72;
  --accent: #00ff88;
  --accent-dim: rgba(0, 255, 136, 0.08);
  --amber: #ffb800;
  --amber-dim: rgba(255, 184, 0, 0.12);
  --border: rgba(0, 255, 136, 0.12);
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
  --font-sans: 'IBM Plex Sans', system-ui, sans-serif;
}

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

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

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 60px 100px;
  overflow: hidden;
}

.hero-grid-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(0,255,136,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,136,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Terminal window */
.terminal-window {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0,255,136,0.07), 0 24px 80px rgba(0,0,0,0.6);
  position: relative;
}

.terminal-window::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(0,255,136,0.018) 2px, rgba(0,255,136,0.018) 4px
  );
  pointer-events: none;
  z-index: 2;
  border-radius: 8px;
}

.terminal-bar {
  background: var(--bg-surface);
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}

.dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.dot-red { background: #ff5f57; }
.dot-amber { background: #ffbd2e; }
.dot-green { background: #28ca41; }

.terminal-title {
  margin-left: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 0.08em;
}

.terminal-body {
  padding: 22px 24px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 2.1;
  position: relative;
  min-height: 280px;
}

.t-line { white-space: nowrap; overflow: hidden; }
.t-prompt { color: var(--accent); margin-right: 10px; font-weight: 600; }
.t-cmd { color: var(--fg); }
.t-dim { color: var(--fg-dim); opacity: 0.7; }
.t-success { color: var(--accent); }
.t-accent { color: var(--amber); font-weight: 500; }

.t-cursor {
  display: inline-block;
  width: 8px;
  height: 15px;
  background: var(--accent);
  animation: blink 1.1s step-end infinite;
  vertical-align: middle;
  margin-left: 6px;
}

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

/* Hero text */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.headline {
  font-family: var(--font-mono);
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--fg);
}

.hl-green { color: var(--accent); }

.subhead {
  font-size: 15px;
  color: var(--fg-dim);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 420px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}

.stat-num {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 10.5px;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-top: 5px;
}

.stat-sep {
  width: 1px;
  height: 38px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── SHARED SECTION STYLES ── */
.section-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-mono);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 56px;
}

/* ── PIPELINE ── */
.pipeline {
  padding: 100px 60px;
  position: relative;
  z-index: 1;
}

.pipeline-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stage {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 26px 22px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.stage:hover {
  border-color: rgba(0,255,136,0.35);
  box-shadow: 0 0 24px rgba(0,255,136,0.05);
}

.stage-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-dim);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.stage-icon { margin-bottom: 16px; }

.stage h3 {
  font-family: var(--font-mono);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.stage p {
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}

.stage-tags { display: flex; flex-wrap: wrap; gap: 5px; }

.tag {
  font-family: var(--font-mono);
  font-size: 9.5px;
  padding: 3px 8px;
  border-radius: 3px;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(0,255,136,0.18);
  letter-spacing: 0.05em;
}

/* ── OUTPUT ── */
.output {
  padding: 100px 60px;
  background: var(--bg-alt);
  position: relative;
  z-index: 1;
}

.output::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,255,136,0.4), transparent);
}

.output-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.output-desc {
  font-size: 14.5px;
  color: var(--fg-dim);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 440px;
}

/* Hook sample */
.hook-sample {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
}

.hook-label {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--fg-dim);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.raw-label { color: var(--fg-dim); margin-right: 6px; }
.raw-before { color: #3a4a44; line-height: 1.6; margin-bottom: 10px; }

.arrow-down {
  text-align: center;
  color: var(--accent);
  font-size: 14px;
  margin: 4px 0 10px;
  letter-spacing: 0.1em;
}

.trans-label { color: var(--accent); margin-right: 6px; }
.trans-text { color: var(--fg); font-weight: 600; line-height: 1.5; }
.hook-after { margin-bottom: 12px; }

.score-tag {
  font-size: 10px;
  color: var(--amber);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Cue sheet */
.cue-sheet {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 12px;
}

.cue-header {
  background: var(--bg-alt);
  padding: 11px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 0.05em;
}

.cue-dur { color: var(--amber); }

.cue-item {
  padding: 12px 16px;
  display: flex;
  gap: 12px;
  border-bottom: 1px solid rgba(0,255,136,0.05);
  align-items: baseline;
}

.cue-ts {
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  width: 46px;
}

.cue-desc { color: var(--fg-dim); line-height: 1.4; font-size: 11.5px; }

.cue-footer {
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: var(--fg-dim);
  background: rgba(0,255,136,0.03);
  letter-spacing: 0.05em;
}

.cue-ready { color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase; }

/* ── CTA ── */
.cta-block {
  text-align: center;
  margin-bottom: 52px;
}

.cta-btn-wrap { display: flex; justify-content: center; }

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 14px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.cta-btn:hover {
  box-shadow: 0 0 28px rgba(0,255,136,0.35), 0 4px 16px rgba(0,0,0,0.4);
  transform: translateY(-1px);
}

.cta-note {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--fg-dim);
  letter-spacing: 0.08em;
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 640px;
  margin: 0 auto 60px;
}

.pricing-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 26px 24px;
}

.pricing-card--solo {
  border-color: rgba(0,255,136,0.3);
  box-shadow: 0 0 24px rgba(0,255,136,0.04);
}

.pc-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 22px; }

.pc-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(0,255,136,0.2);
}

.pc-badge--vs {
  background: rgba(255,184,0,0.08);
  color: var(--amber);
  border-color: rgba(255,184,0,0.2);
}

.pc-price { text-align: right; }

.pc-dollar {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg-dim);
  vertical-align: top;
  line-height: 1.4;
}

.pc-amount {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

.pc-period {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-dim);
  margin-left: 2px;
}

.pc-features { list-style: none; margin-bottom: 24px; }

.pc-feat {
  font-size: 12.5px;
  color: var(--fg-dim);
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,255,136,0.04);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pc-feat--on { color: var(--fg); }
.pc-feat--off { opacity: 0.5; }

.feat-check { color: var(--accent); font-size: 11px; }
.feat-dash { color: var(--fg-dim); font-size: 11px; }
.feat-x { color: #ff5f57; font-size: 11px; }

.pc-cta {
  display: block;
  width: 100%;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 11px;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  transition: box-shadow 0.2s ease;
}

.pc-cta:hover {
  box-shadow: 0 0 18px rgba(0,255,136,0.3);
}

.pc-vs-note {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--amber);
  text-align: center;
  font-style: italic;
  margin-top: 16px;
}

/* ── CONTACT FORM ── */
.contact-wrap {
  margin-bottom: 64px;
}

.contact-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px 32px;
}

.contact-header { text-align: center; margin-bottom: 28px; }

.contact-title {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}

.contact-sub {
  font-size: 13.5px;
  color: var(--fg-dim);
  line-height: 1.65;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.form-input {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 13.5px;
  padding: 10px 12px;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}

.form-input::placeholder { color: var(--fg-dim); opacity: 0.6; }

.form-input:focus { border-color: rgba(0,255,136,0.4); }

.form-select {
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7c72' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
}

.form-select option { background: var(--bg-alt); }

.form-error {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: #ff5f57;
  padding: 8px 12px;
  background: rgba(255,95,87,0.08);
  border: 1px solid rgba(255,95,87,0.2);
  border-radius: 4px;
}

.form-success {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  padding: 10px 14px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,255,136,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-submit {
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  padding: 13px;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
  width: 100%;
}

.form-submit:hover {
  box-shadow: 0 0 20px rgba(0,255,136,0.3);
  transform: translateY(-1px);
}

.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ── CLOSING ── */
.closing {
  padding: 110px 60px 90px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, rgba(0,255,136,0.4));
}

.closing-inner { max-width: 720px; margin: 0 auto; }

.closing-tagline {
  font-family: var(--font-mono);
  font-size: clamp(26px, 3.8vw, 46px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 28px;
  color: var(--fg);
}

.closing-body {
  font-size: 15px;
  color: var(--fg-dim);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto 52px;
}

.close-rule {
  width: 56px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 28px;
  opacity: 0.4;
}

.close-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-dim);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.1em;
}

.c-dot { color: var(--accent); opacity: 0.4; }

/* ── FOOTER ── */
.site-footer {
  padding: 22px 60px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-mono);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-name { color: var(--accent); font-weight: 700; }
.footer-sep { color: var(--border); }
.footer-tag { color: var(--fg-dim); font-size: 10px; letter-spacing: 0.12em; }

.footer-links {
  font-family: var(--font-mono);
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link {
  color: var(--fg-dim);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
}

.footer-link:hover { color: var(--accent); }

.footer-status {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}

.f-dot { color: var(--border); }

.live-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero { padding: 60px 24px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .pipeline { padding: 60px 24px; }
  .pipeline-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .output { padding: 60px 24px; }
  .output-inner { grid-template-columns: 1fr; gap: 44px; }
  .closing { padding: 60px 24px; }
  .site-footer { padding: 22px 24px; }
  .footer-inner { flex-direction: column; gap: 10px; text-align: center; }
  .hero-stats { gap: 20px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-card { padding: 28px 20px; }
}

@media (max-width: 600px) {
  .pipeline-grid { grid-template-columns: 1fr; }
  .terminal-body { font-size: 11px; line-height: 1.9; min-height: 220px; }
  .stat-num { font-size: 22px; }
  .hero-stats { flex-wrap: wrap; }
  .cta-btn { font-size: 14px; padding: 13px 28px; }
  .pc-amount { font-size: 30px; }
}

/* ── SITE NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 11, 14, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo {
  font-size: 16px;
  color: var(--accent);
  line-height: 1;
}

.nav-name {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-dim);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
}

.nav-link:hover { color: var(--accent); }

.nav-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--accent);
  color: var(--bg);
  padding: 8px 18px;
  border-radius: 4px;
  transition: box-shadow 0.2s ease;
}

.nav-cta:hover { box-shadow: 0 0 16px rgba(0,255,136,0.3); }

/* ── DEMO PAGE ── */
.demo-hero {
  padding: 80px 60px 60px;
  text-align: center;
}

.demo-hero-inner { max-width: 700px; margin: 0 auto; }

.demo-hero .headline { margin-bottom: 16px; }

.demo-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px 120px;
}

.demo-section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 14px;
  margin-top: 52px;
}

.demo-transcript {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 22px 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.9;
  max-width: 860px;
}

.demo-terminal { max-width: 860px; margin: 0; }

/* Clip tabs */
.demo-clip-tabs {
  display: flex;
  gap: 0;
  max-width: 860px;
  margin-bottom: 0;
}

.demo-tab {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  padding: 10px 22px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--fg-dim);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.demo-tab:last-child { border-right: 1px solid var(--border); }

.demo-tab.active {
  background: var(--bg-surface);
  color: var(--accent);
  border-bottom-color: var(--bg-surface);
}

.demo-clip-panel {
  display: none;
  max-width: 860px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 6px 6px;
  padding: 24px;
}

.demo-clip-panel.active { display: block; }

.demo-clip-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.demo-ts {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--fg-dim);
}

.demo-clip-hook { margin-bottom: 20px; }

.demo-clip-reason {
  font-size: 12.5px;
  color: var(--fg-dim);
  line-height: 1.7;
  margin-bottom: 24px;
  padding: 14px 16px;
  background: rgba(0,255,136,0.03);
  border-radius: 4px;
}

.demo-broll .hook-label { margin-bottom: 12px; }

/* SEO cards */
.demo-seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 860px;
}

.demo-seo-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px;
}

.seo-platform {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.seo-caption {
  font-size: 12.5px;
  color: var(--fg);
  line-height: 1.7;
  margin-bottom: 14px;
}

.seo-hashtags {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--fg-dim);
  line-height: 1.7;
  word-break: break-word;
}

/* Demo CTA */
.demo-cta-block { margin-top: 64px; }

/* Mobile */
@media (max-width: 900px) {
  .nav-inner { padding: 0 24px; }
  .nav-links { gap: 16px; }
  .nav-link { font-size: 11px; }
  .demo-hero { padding: 60px 24px 40px; }
  .demo-content { padding: 0 24px 80px; }
  .demo-clip-tabs { flex-wrap: wrap; }
  .demo-tab { flex: 1; text-align: center; padding: 9px 12px; font-size: 10.5px; }
  .demo-seo-grid { grid-template-columns: 1fr; }
  .demo-clip-meta { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 600px) {
  .site-nav { position: relative; }
  .nav-inner { padding: 0 16px; }
  .nav-links { gap: 10px; }
  .nav-cta { font-size: 10px; padding: 6px 12px; }
  .demo-clip-tabs { flex-direction: column; }
  .demo-tab { border-right: 1px solid var(--border); }
  .demo-tab:last-child { border-bottom: none; }
}