/* ========================================
   ClipForge — Dark Amber Brand Theme
   ======================================== */

:root {
  --bg: #0C0C0E;
  --bg-alt: #111116;
  --surface: #16161C;
  --surface-hover: #1E1E26;
  --fg: #F5F0E8;
  --fg-muted: #8C8680;
  --fg-dim: #4A4744;
  --accent: #E8621A;
  --accent-light: #FF6B2C;
  --accent-glow: rgba(232,98,26,0.15);
  --border: rgba(245,240,232,0.07);
  --border-strong: rgba(245,240,232,0.12);
}

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

html {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--fg);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

/* ---- Nav ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  background: rgba(12,12,14,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-logo strong { color: var(--accent); }
.nav-badge {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(232,98,26,0.25);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px clamp(1.5rem, 5vw, 4rem) 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(232,98,26,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-lede {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 48px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
}
.proof-stat { display: flex; flex-direction: column; gap: 2px; }
.proof-number {
  font-family: 'Syne', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.proof-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border-strong);
}

/* ---- Hero Visual ---- */
.hero-visual { display: flex; justify-content: center; }
.video-device {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.device-frame {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,98,26,0.1);
}
.device-screen {
  background: var(--bg-alt);
  border-radius: 16px;
  aspect-ratio: 9/16;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.device-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12,12,14,0.6) 100%);
}
.screen-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.clip-row { display: flex; flex-direction: column; gap: 12px; }
.clip-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}
.clip-chip-thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  flex-shrink: 0;
}
.clip-orange { background: linear-gradient(135deg, #E8621A, #FF8C42); }
.clip-amber { background: linear-gradient(135deg, #D4A017, #F5C842); }
.clip-yellow { background: linear-gradient(135deg, #C8A830, #E8C840); }
.clip-light { background: linear-gradient(135deg, #4A4744, #6A6560); }
.clip-chip-info { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.clip-chip-title {
  height: 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  width: 70%;
}
.clip-chip-sub {
  height: 7px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  width: 45%;
}
.device-label {
  text-align: center;
  font-size: 0.75rem;
  color: var(--fg-dim);
  margin-top: 12px;
  letter-spacing: 0.04em;
}

/* ---- Proof Strip ---- */
.proof-strip {
  padding: 40px clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.proof-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.proof-strip-label {
  font-size: 0.8rem;
  color: var(--fg-dim);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.proof-categories { display: flex; flex-wrap: wrap; gap: 10px; }
.category-pill {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--border-strong);
  color: var(--fg-muted);
  transition: all 0.2s;
}
.category-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ---- Section Utilities ---- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header--light { margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  border: 1px solid rgba(232,98,26,0.2);
  padding: 5px 12px;
  border-radius: 100px;
}
.section-tag--light {
  color: var(--accent-light);
  border-color: rgba(232,98,26,0.3);
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--fg);
}
.section-title--light { color: var(--fg); }
.section-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-top: 16px;
}

/* ---- How ---- */
.how {
  padding: 120px clamp(1.5rem, 5vw, 4rem);
  background: var(--bg);
}
.how-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.step-card {
  padding: 40px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.step-card:hover {
  border-color: rgba(232,98,26,0.3);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}
.step-icon {
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--fg-muted);
}
.how-tools {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.tools-label {
  font-size: 0.75rem;
  color: var(--fg-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tools-row { display: flex; gap: 10px; flex-wrap: wrap; }
.tool-tag {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 12px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  color: var(--fg-muted);
}

/* ---- Pricing ---- */
.pricing {
  padding: 120px clamp(1.5rem, 5vw, 4rem);
  background: var(--bg-alt);
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  padding: 40px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
}
.price-card--featured {
  background: var(--surface-hover);
  border-color: rgba(232,98,26,0.3);
  box-shadow: 0 0 60px rgba(232,98,26,0.06);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent);
  color: white;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-tier {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 32px;
}
.price-per {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--fg-muted);
}
.price-features { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.price-feature {
  font-size: 0.9rem;
  color: var(--fg-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.price-feature::before {
  content: '✓';
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
}
.price-cta {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--fg-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
}
.price-cta--featured {
  background: var(--accent-glow);
  border-color: rgba(232,98,26,0.2);
  color: var(--accent);
}

/* ---- Niches ---- */
.niches {
  padding: 120px clamp(1.5rem, 5vw, 4rem);
  background: var(--bg);
}
.niches-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.niche-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.25s;
}
.niche-card:hover { border-color: rgba(232,98,26,0.2); }
.niche-card--primary {
  grid-column: span 1;
  background: linear-gradient(135deg, rgba(232,98,26,0.05), transparent);
  border-color: rgba(232,98,26,0.15);
}
.niche-icon { color: var(--fg-muted); margin-bottom: 16px; }
.niche-card--primary .niche-icon { color: var(--accent); }
.niche-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.niche-desc {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--fg-muted);
}
.niches-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--fg-dim);
  letter-spacing: 0.03em;
}

/* ---- Closing ---- */
.closing {
  padding: 140px clamp(1.5rem, 5vw, 4rem);
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.closing-statement {
  margin-bottom: 48px;
}
.closing-text {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--fg-muted);
  letter-spacing: -0.01em;
}
.vision-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--fg);
  margin-bottom: 24px;
}
.vision-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Footer ---- */
.footer {
  padding: 48px clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  color: var(--fg);
}
.footer-logo strong { color: var(--accent); }
.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-dim);
  margin-top: 4px;
}
.footer-note {
  font-size: 0.8rem;
  color: var(--fg-dim);
  letter-spacing: 0.03em;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { order: -1; }
  .video-device { max-width: 320px; margin: 0 auto; }
  .how-steps { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero { padding-top: 100px; }
  .hero-proof { flex-direction: column; align-items: flex-start; gap: 16px; }
  .proof-divider { width: 40px; height: 1px; }
  .niches-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .closing { padding: 80px clamp(1.5rem, 5vw, 4rem); }
}