/* ===================================
   ClipForge — Theme CSS
   Dark studio aesthetic, amber accent
   =================================== */

:root {
  --bg: #0A0A0F;
  --bg-2: #0F0F18;
  --bg-3: #14141F;
  --amber: #FFB800;
  --amber-dim: rgba(255, 184, 0, 0.12);
  --amber-glow: rgba(255, 184, 0, 0.06);
  --offwhite: #F5F0E6;
  --muted: #8A8A9A;
  --border: rgba(255, 255, 255, 0.06);
  --border-amber: rgba(255, 184, 0, 0.2);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --section-pad: clamp(64px, 10vw, 120px);
  --container: 1100px;
  --radius: 12px;
}

/* === BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--offwhite);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { line-height: 1.2; font-family: var(--font-display); }

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(24px, 5vw, 48px);
  background: linear-gradient(to bottom, rgba(10,10,15,0.95) 0%, transparent 100%);
  backdrop-filter: blur(12px);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--offwhite);
  letter-spacing: -0.02em;
}
.nav-right { }
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px clamp(24px, 5vw, 48px) 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,184,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  color: var(--offwhite);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.hero-headline em {
  font-style: italic;
  color: var(--amber);
}
.hero-sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stat { }
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--offwhite);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.hero-stat-label em {
  font-style: normal;
  color: var(--amber);
}

/* === HERO RIGHT / CLIP STACK === */
.hero-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.clip-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.clip-card {
  width: 280px;
  background: var(--bg-3);
  border: 1px solid var(--border-amber);
  border-radius: var(--radius);
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(255, 184, 0, 0.08), inset 0 1px 0 rgba(255,184,0,0.1);
}
.clip-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.5;
}
.clip-card-1 { transform: rotate(-1.5deg); }
.clip-card-2 { transform: rotate(0.5deg); }
.clip-card-3 { transform: rotate(-0.5deg); }
.clip-play {
  width: 36px;
  height: 36px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.clip-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--offwhite);
  margin-bottom: 8px;
}
.clip-metrics {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--muted);
}
.clip-metrics span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* === SECTION EYEBROW === */
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

/* === NICHE === */
.niche {
  padding: var(--section-pad) clamp(24px, 5vw, 48px);
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.niche-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.niche-content {
  max-width: 640px;
  margin-bottom: 64px;
}
.niche-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--offwhite);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.niche-body {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.7;
}
.niche-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.niche-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.niche-card:hover {
  border-color: var(--border-amber);
  box-shadow: 0 0 32px var(--amber-dim);
}
.niche-icon {
  width: 48px;
  height: 48px;
  background: var(--amber-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.niche-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--offwhite);
  margin-bottom: 10px;
  font-family: var(--font-display);
}
.niche-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* === FEATURES === */
.features {
  padding: var(--section-pad) clamp(24px, 5vw, 48px);
}
.features-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.features-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--offwhite);
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feature-item {
  padding: 36px 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: background 0.2s;
}
.feature-item:hover { background: var(--bg-2); }
.feature-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 16px;
}
.feature-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--offwhite);
  margin-bottom: 10px;
  font-family: var(--font-display);
}
.feature-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* === PROCESS === */
.process {
  padding: var(--section-pad) clamp(24px, 5vw, 48px);
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.process-header {
  margin-bottom: 64px;
}
.process-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--offwhite);
  letter-spacing: -0.02em;
  max-width: 560px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.process-step {
  padding: 40px 32px;
  border: 1px solid var(--border);
  position: relative;
}
.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.process-step:hover::before { opacity: 1; }
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--border);
  margin-bottom: 20px;
  line-height: 1;
}
.process-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--offwhite);
  margin-bottom: 12px;
  font-family: var(--font-display);
}
.process-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* === PRICING === */
.pricing {
  padding: var(--section-pad) clamp(24px, 5vw, 48px);
}
.pricing-inner {
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.pricing-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--offwhite);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.pricing-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 56px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: left;
}
.pricing-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
}
.pricing-card-growth {
  border-color: var(--border-amber);
  box-shadow: 0 0 60px rgba(255, 184, 0, 0.06);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: #0A0A0F;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--offwhite);
  font-family: var(--font-display);
  margin-bottom: 8px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--offwhite);
  letter-spacing: -0.03em;
}
.pricing-period {
  font-size: 16px;
  color: var(--muted);
}
.pricing-tagline {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--offwhite);
  line-height: 1.5;
}
.pricing-features svg { flex-shrink: 0; margin-top: 2px; }
.pricing-note {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* === CLOSING === */
.closing {
  padding: var(--section-pad) clamp(24px, 5vw, 48px);
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.closing-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.closing-headline {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: var(--offwhite);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.2;
}
.closing-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.closing-cta {
  margin-top: 32px;
}
.closing-cta-text {
  font-size: 15px;
  color: var(--amber);
  font-weight: 600;
}

/* === CLOSING VISUAL === */
.closing-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.closing-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,184,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.closing-phone {
  width: 180px;
  background: var(--bg-3);
  border: 1px solid var(--border-amber);
  border-radius: 24px;
  padding: 10px;
  box-shadow: 0 0 60px rgba(255,184,0,0.1);
  position: relative;
}
.phone-notch {
  width: 60px;
  height: 18px;
  background: var(--bg);
  border-radius: 0 0 12px 12px;
  margin: 0 auto 8px;
}
.phone-screen {
  background: var(--bg);
  border-radius: 16px;
  overflow: hidden;
  padding: 12px;
}
.phone-app-bar {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}
.phone-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
}
.phone-video {
  background: var(--bg-3);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.phone-play {
  width: 48px;
  height: 48px;
  background: rgba(255,184,0,0.15);
  border: 1px solid var(--border-amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-caption {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.phone-caption-line {
  height: 4px;
  background: var(--bg-2);
  border-radius: 2px;
  width: 100%;
}
.phone-caption-short { width: 75%; }
.phone-caption-shortest { width: 50%; }

/* === FOOTER === */
.footer {
  padding: 64px clamp(24px, 5vw, 48px) 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--offwhite);
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 280px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--offwhite);
  text-decoration: none;
  margin-bottom: 10px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.footer-bottom p {
  font-size: 12px;
  color: var(--muted);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { justify-content: flex-start; }
  .hero-stats { gap: 24px; }
  .niche-cards { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards { grid-template-columns: 1fr; max-width: 480px; }
  .closing-inner { grid-template-columns: 1fr; }
  .closing-visual { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .niche-cards { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .clip-card { width: 240px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .footer-links { grid-template-columns: 1fr; }
}