/* ═══════════════════════════════════════════════════════════════
   ClipLab Pro — Style Sheet
   Dark theme, gaming accent (red/orange gradient), Inter font
   ═══════════════════════════════════════════════════════════════ */

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #09090b;
  color: #e4e4e7;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --accent: #e03e3e;
  --accent-light: #ff6b6b;
  --accent-glow: rgba(224, 62, 62, 0.25);
  --green: #22c55e;
  --yellow: #eab308;
  --border: rgba(255,255,255,0.08);
  --surface: rgba(255,255,255,0.04);
  --surface2: rgba(255,255,255,0.07);
  --text-muted: #71717a;
  --text-secondary: #a1a1aa;
  --radius: 12px;
  --radius-sm: 8px;
}

/* ── Layout ────────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  border: none;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--accent-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}
.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: var(--radius);
}

/* ── Nav ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s;
  background: transparent;
}
.nav.scrolled {
  background: rgba(9,9,11,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.logo-icon {
  color: var(--accent);
  font-size: 20px;
}
.logo-icon-img {
  height: 42px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}
.logo-text .logo-pro {
  color: var(--accent-light);
  font-weight: 600;
  font-size: 0.8em;
}
.logo-text.sm {
  font-size: 18px;
}
.footer-icon-img {
  height: 34px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.15s;
}
.nav-links a:hover { color: #fff; }
.btn-nav { margin-left: 16px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #e4e4e7;
  font-size: 24px;
  cursor: pointer;
  margin-left: auto;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(224,62,62,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(255,107,107,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-light);
  margin-bottom: 24px;
  padding: 6px 14px 6px 8px;
  background: rgba(224,62,62,0.08);
  border: 1px solid rgba(224,62,62,0.2);
  border-radius: 100px;
}
.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { box-shadow: 0 0 0 8px transparent; }
}
.hero-h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.gradient-text {
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-btn {
  padding: 14px 28px;
  font-size: 15px;
}

/* Trust pills */
.trust-pills {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
}

/* ── Section blocks ────────────────────────────────────────── */
.section-block {
  padding: 100px 0;
}
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 16px;
}
.section-h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* ── How It Works — Steps ──────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.step-card:hover {
  border-color: rgba(224,62,62,0.3);
  transform: translateY(-2px);
}
.step-number {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.step-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.step-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Flow bar */
.flow-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.flow-node {
  padding: 8px 16px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.flow-node.accent {
  background: rgba(224,62,62,0.15);
  border-color: rgba(224,62,62,0.4);
  color: var(--accent-light);
}
.flow-arrow {
  color: var(--text-muted);
  font-size: 14px;
}

/* ── Features — Tiles ──────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.feature-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-tile:hover {
  border-color: rgba(224,62,62,0.3);
  transform: translateY(-2px);
}
.feature-tile-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
}
.feature-tile h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-tile p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}
.feature-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-light);
  background: rgba(224,62,62,0.1);
  border: 1px solid rgba(224,62,62,0.2);
  border-radius: 100px;
  padding: 3px 10px;
  letter-spacing: 0.02em;
}

/* ── Proof / Screenshot mockup ─────────────────────────────── */
.proof-container {
  text-align: center;
}
.proof-screenshot {
  max-width: 800px;
  margin: 0 auto 32px;
}
.screenshot-placeholder {
  background: #111114;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
}
.screenshot-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.screenshot-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.screenshot-dot.red { background: #ef4444; }
.screenshot-dot.yellow { background: #eab308; }
.screenshot-dot.green { background: #22c55e; }
.screenshot-title {
  margin-left: 8px;
  font-size: 12px;
  color: var(--text-muted);
}
.screenshot-body {
  display: flex;
  min-height: 260px;
}
.screenshot-sidebar {
  width: 160px;
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 12px 0;
  flex-shrink: 0;
}
.sidebar-item {
  padding: 8px 14px;
  font-size: 12px;
  color: var(--text-muted);
  cursor: default;
}
.sidebar-item.active {
  color: #fff;
  background: rgba(224,62,62,0.12);
  border-left: 2px solid var(--accent);
}
.screenshot-main {
  flex: 1;
  padding: 16px;
}
.pipeline-status {
  margin-bottom: 16px;
}
.pipeline-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}
.pipeline-fill {
  width: 67%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 3px;
  animation: progress-pulse 2s ease-in-out infinite;
}
@keyframes progress-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.pipeline-text {
  font-size: 11px;
  color: var(--accent-light);
  font-weight: 500;
}
.clip-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.clip-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-secondary);
  padding: 6px 8px;
  background: rgba(255,255,255,0.02);
  border-radius: 6px;
}
.clip-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 22px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.clip-score.high {
  background: rgba(34,197,94,0.15);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.3);
}
.clip-score.mid {
  background: rgba(234,179,8,0.15);
  color: #facc15;
  border: 1px solid rgba(234,179,8,0.3);
}
.clip-score.low {
  background: rgba(239,68,68,0.1);
  color: #f87171;
  border: 1px solid rgba(239,68,68,0.2);
}
.clip-dropped {
  color: var(--text-muted);
  text-decoration: line-through;
  font-style: italic;
}
.proof-tagline {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-secondary);
}

/* ── Download ──────────────────────────────────────────────── */
.download-container {
  text-align: center;
  padding: 60px 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
}
.download-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.download-sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 12px 0 28px;
}
.download-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ── Pricing ───────────────────────────────────────────────── */
.pricing-two-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-grid {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
}
.pricing-card.featured {
  border-color: rgba(224,62,62,0.4);
  background: linear-gradient(180deg, rgba(224,62,62,0.06) 0%, var(--surface) 40%);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-badge.secondary {
  background: rgba(255,255,255,0.1);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.pricing-name {
  font-size: 20px;
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 20px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 12px;
}
.price-dollar {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-secondary);
  align-self: flex-start;
  margin-top: 8px;
}
.price-amount {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}
.price-decimal {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-secondary);
  align-self: flex-start;
  margin-top: 8px;
}
.price-period {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 4px;
}
.pricing-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}
.pricing-features li {
  font-size: 14px;
  color: #d4d4d8;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing-features li:last-child {
  border-bottom: none;
}
.pricing-cta {
  width: 100%;
  justify-content: center;
  font-size: 16px;
}
.pricing-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}
.pricing-bottom {
  text-align: center;
  margin-top: 48px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-sub {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Waitlist form */
.waitlist-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
}
.waitlist-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: #f1f5f9;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border 0.2s;
}
.waitlist-form input[type="email"]:focus {
  border-color: var(--accent);
}
.waitlist-form button {
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}
.waitlist-form button:hover { background: var(--accent-light); }
#wl-success {
  display: none;
  margin-top: 16px;
  color: #4ade80;
  font-size: 14px;
}
.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-list {
  max-width: 680px;
  margin-top: 40px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-question {
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #e4e4e7;
  transition: color 0.15s;
}
.faq-question:hover { color: #fff; }
.faq-question::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.2s;
}
details[open] .faq-question::after {
  content: '−';
}
.faq-question::-webkit-details-marker { display: none; }
.faq-answer {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 12px;
  padding-right: 40px;
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  margin-top: 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .hero { padding: 120px 0 60px; }
  .hero-h1 { font-size: 2rem; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(9,9,11,0.97);
    padding: 16px 24px;
    gap: 12px;
    border-bottom: 1px solid var(--border);
  }
  .nav-toggle { display: block; }
  .btn-nav { display: none; }

  .steps-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .flow-bar { gap: 4px; }
  .flow-node { font-size: 11px; padding: 6px 10px; }

  .screenshot-sidebar { display: none; }

  .trust-pills { gap: 8px; }
  .trust-pill { font-size: 12px; padding: 6px 10px; }

  .pricing-two-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .section-block { padding: 60px 0; }
}
