/* CLIP CRAFT — DARK TECHNO EDIT */
:root {
  --bg: #0A0A0F;
  --bg-2: #0F0F1A;
  --surface: #13131F;
  --surface-2: #1A1A2E;
  --teal: #00D9B5;
  --teal-dim: rgba(0, 217, 181, 0.12);
  --amber: #FFAB40;
  --amber-dim: rgba(255, 171, 64, 0.15);
  --red: #FF6B6B;
  --text: #EAEAF2;
  --text-2: #8888A8;
  --text-3: #4A4A6A;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  backdrop-filter: blur(20px);
  background: rgba(10, 10, 15, 0.85);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 18px;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex; gap: 32px;
}
.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* SECTION COMMON */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 16px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 64px;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 48px 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,217,181,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,217,181,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,217,181,0.08) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 700px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500;
  color: var(--text-2); letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px var(--teal);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.hl-accent {
  color: var(--teal);
  position: relative;
}
.hl-accent::after {
  content: '';
  position: absolute;
  left: 0; bottom: 4px;
  width: 100%; height: 3px;
  background: var(--teal);
  opacity: 0.4;
  border-radius: 2px;
}
.hero-sub {
  font-size: 20px; line-height: 1.7;
  color: var(--text-2);
  max-width: 520px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex; align-items: center; gap: 32px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 36px; font-weight: 800;
  color: var(--text);
}
.stat-label { font-size: 12px; color: var(--text-3); margin-top: 2px; }
.stat-divider {
  width: 1px; height: 40px;
  background: var(--text-3);
  opacity: 0.4;
}
.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-3); font-size: 11px; letter-spacing: 0.1em;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* PHONE MOCKUP */
.hero-phone-mockup {
  position: absolute;
  right: 80px; top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.phone-bezel {
  width: 180px; height: 360px;
  background: #0F0F1A;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 36px;
  padding: 16px 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 40px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(0,217,181,0.1);
  position: relative;
}
.phone-bezel::before {
  content: '';
  position: absolute;
  top: 16px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 6px;
  background: #0A0A0F;
  border-radius: 3px;
}
.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1A1A2E, #0F0F1A);
  border-radius: 24px;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 12px;
}
.video-play-icon {
  width: 48px; height: 48px;
  background: rgba(0,217,181,0.2);
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.video-captions {
  width: 120px;
  display: flex; flex-direction: column; gap: 6px;
  align-items: center;
}
.cap-line {
  height: 5px; border-radius: 3px;
  background: rgba(255,255,255,0.15);
}
.cap-1 { width: 100%; }
.cap-2 { width: 80%; }
.cap-3 { width: 60%; }
.video-meta {
  display: flex; gap: 16px; align-items: center;
}
.vm-1, .vm-2 {
  height: 8px; border-radius: 4px;
  background: rgba(255,255,255,0.08);
}
.vm-1 { width: 40px; }
.vm-2 { width: 24px; }

/* PROBLEM */
.problem {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.problem-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 48px;
}
.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 64px;
}
.problem-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px;
}
.problem-card p { font-size: 15px; color: var(--text-2); line-height: 1.6; }
.pc-icon { margin-bottom: 16px; }
.problem-solution-statement {
  font-family: 'Syne', sans-serif;
  font-size: 20px; font-weight: 600;
  color: var(--teal);
  padding: 24px 32px;
  background: var(--teal-dim);
  border: 1px solid rgba(0,217,181,0.2);
  border-radius: 12px;
  display: inline-block;
}

/* PROCESS */
.process { padding: 120px 0; }
.process-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 48px; margin-bottom: 48px;
  position: relative;
}
.step { position: relative; }
.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 64px; font-weight: 800;
  color: var(--surface-2);
  line-height: 1;
  margin-bottom: 20px;
}
.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px; font-weight: 700;
  margin-bottom: 12px;
}
.step p { font-size: 15px; color: var(--text-2); line-height: 1.7; }
.step-connector {
  position: absolute;
  right: -24px; top: 30px;
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
}
.process-tools {
  display: flex; align-items: center; gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.tools-label {
  font-size: 12px; color: var(--text-3);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.tool-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.tool-tag {
  font-size: 12px; font-weight: 500;
  color: var(--text-2);
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 4px 12px;
}

/* FORMATS */
.formats {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.format-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.format-card {
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.fc-tiktok { background: linear-gradient(135deg, #1A1A2E, #0F0F1A); border: 1px solid rgba(105,201,234,0.15); }
.fc-reels { background: linear-gradient(135deg, #1E1A2E, #1A0F1A); border: 1px solid rgba(255,0,102,0.12); }
.fc-shorts { background: linear-gradient(135deg, #1A2E1A, #0F1A0F); border: 1px solid rgba(255,0,0,0.1); }
.fc-icon { margin-bottom: 20px; }
.format-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 24px; font-weight: 700;
  margin-bottom: 12px;
}
.format-card p { font-size: 14px; color: var(--text-2); line-height: 1.6; margin-bottom: 20px; }
.fc-stat {
  font-size: 11px; font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(0,217,181,0.2);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(0,217,181,0.06);
}

/* PRICING */
.pricing { padding: 120px 0; }
.pricing-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 56px;
  max-width: 600px;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  background: linear-gradient(135deg, var(--teal), var(--amber));
  border-radius: 24px;
  opacity: 0.06;
  z-index: 0;
}
.pc-header { margin-bottom: 40px; }
.pc-tier {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 16px;
}
.pc-price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 12px;
}
.price-dollar { font-family: 'Syne', sans-serif; font-size: 32px; color: var(--text-2); }
.price-num { font-family: 'Syne', sans-serif; font-size: 72px; font-weight: 800; }
.price-period { font-size: 20px; color: var(--text-2); }
.pc-tagline { font-size: 16px; color: var(--text-2); }
.pc-features { margin-bottom: 40px; }
.pf-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 15px;
}
.pf-item:last-child { border-bottom: none; }
.pc-math {
  background: var(--surface-2);
  border-radius: 12px;
  padding: 20px 24px;
}
.math-inner {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Syne', sans-serif;
  flex-wrap: wrap;
}
.math-num, .math-price { font-size: 18px; font-weight: 700; color: var(--text-2); }
.math-at { font-size: 16px; color: var(--text-3); }
.math-eq { font-size: 16px; color: var(--text-3); }
.math-result { font-size: 24px; font-weight: 800; color: var(--teal); }
.pricing-compare {
  display: flex; align-items: flex-start; gap: 48px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.compare-vs {
  font-family: 'Syne', sans-serif;
  font-size: 20px; font-weight: 700;
  color: var(--text-3);
  padding-top: 4px;
}
.compare-alt { display: flex; flex-direction: column; gap: 16px; }
.ca-item { display: flex; align-items: center; gap: 16px; }
.ca-name { font-size: 14px; color: var(--text-2); min-width: 120px; }
.ca-price { font-size: 14px; font-weight: 600; color: var(--text); }
.ca-note { font-size: 13px; color: var(--text-3); }

/* TESTIMONIALS / VERTICALS */
.testimonials { padding: 120px 0; }
.testimonial-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.t-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px;
}
.tc-avatar { margin-bottom: 16px; }
.tc-vertical {
  font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--amber);
  margin-bottom: 10px;
}
.t-card p { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* VISION */
.vision {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.vision-inner { max-width: 860px; }
.vision-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 24px;
}
.vision-statement {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
  color: var(--text);
}
.vision-pillars {
  display: flex; flex-direction: column; gap: 24px;
}
.vp {
  display: flex; align-items: flex-start; gap: 24px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}
.vp-num {
  font-family: 'Syne', sans-serif;
  font-size: 12px; font-weight: 800;
  color: var(--teal);
  min-width: 28px;
  padding-top: 2px;
}
.vp p { font-size: 15px; color: var(--text-2); line-height: 1.6; }

/* FOOTER */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0;
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.footer-brand {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 16px;
  margin-bottom: 12px;
}
.footer-tagline { font-size: 14px; color: var(--text-3); margin-bottom: 8px; }
.footer-meta { font-size: 12px; color: var(--text-3); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 100px 24px 80px; }
  .section-inner { padding: 0 24px; }
  .hero-phone-mockup { display: none; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 28px; }
  .problem-grid { grid-template-columns: 1fr; gap: 16px; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .step-connector { display: none; }
  .format-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hero-headline { font-size: 40px; }
  .hero-sub { font-size: 16px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-divider { display: none; }
  .nav-links { display: none; }
  .pricing-card { padding: 32px 24px; }
  .price-num { font-size: 52px; }
  .pricing-compare { flex-direction: column; gap: 24px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 28px; }
}