/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0e0e0e;
  --surface:   #1a1a1a;
  --surface2:  #242424;
  --amber:     #FFB300;
  --amber-dim: #b37d00;
  --text:      #f0ece3;
  --text-muted:#8a8580;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Navbar ───────────────────────────────────────── */
.navbar {
  padding: 20px 48px;
  border-bottom: 1px solid var(--surface2);
}

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

.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--amber);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  padding: 80px 48px 96px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.7;
}

/* Video frame mockup */
.hero-right { display: flex; flex-direction: column; gap: 32px; }

.video-frame {
  background: var(--surface);
  border: 1px solid var(--surface2);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 9/16;
  max-height: 420px;
  position: relative;
}

.video-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1c1c1c 0%, #2a2a2a 50%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,179,0,0.03) 3px,
    rgba(255,179,0,0.03) 4px
  );
}

.play-indicator {
  width: 56px;
  height: 56px;
  background: rgba(255,179,0,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  border: 1px solid var(--amber);
  z-index: 1;
}

.video-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.vid-tag, .vid-views {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text);
  background: rgba(0,0,0,0.6);
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* Proof stats */
.hero-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.proof-stat {
  background: var(--surface);
  border: 1px solid var(--surface2);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.proof-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.03em;
}

.proof-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ── Manifesto ───────────────────────────────────── */
.manifesto {
  padding: 0 48px 80px;
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.manifesto-line {
  width: 60px;
  height: 2px;
  background: var(--amber);
  opacity: 0.4;
}

.manifesto-text {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
  text-align: center;
  letter-spacing: -0.01em;
}

/* ── Services ────────────────────────────────────── */
.services {
  padding: 80px 48px;
  background: var(--surface);
}

.services-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--surface2);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s ease;
}

.service-card:hover { border-color: var(--amber-dim); }

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--surface2);
  border-radius: 12px;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Process ──────────────────────────────────────── */
.process { padding: 80px 48px; }

.process-inner { max-width: 1200px; margin: 0 auto; }

.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 56px;
}

.step {
  flex: 1;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--surface2);
}

.step:first-child { border-radius: 12px 0 0 12px; }
.step:last-child  { border-radius: 0 12px 12px 0; }

.step-num {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
}

.step-content h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.step-content p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-connector {
  width: 40px;
  height: 2px;
  background: var(--surface2);
  flex-shrink: 0;
}

.pricing-callout {
  border: 1px solid var(--amber-dim);
  border-radius: 12px;
  padding: 32px 40px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  background: var(--surface);
  gap: 16px;
  flex-wrap: wrap;
}

.pricing-main {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}

.pricing-main strong { color: var(--amber); }

.pricing-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ── Closing ──────────────────────────────────────── */
.closing {
  padding: 96px 48px;
  background: var(--surface);
}

.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.closing-text {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
  letter-spacing: -0.02em;
}

/* ── Footer ───────────────────────────────────────── */
.footer {
  padding: 32px 48px;
  border-top: 1px solid var(--surface2);
}

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

.footer-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--amber);
}

.footer-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 768px) {
  .navbar, .hero, .manifesto, .services, .process, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-right { order: -1; }

  .video-frame { max-height: 280px; }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .process-steps {
    flex-direction: column;
    gap: 2px;
  }

  .step { border-radius: 0 !important; }
  .step:first-child { border-radius: 12px 12px 0 0 !important; }
  .step:last-child  { border-radius: 0 0 12px 12px !important; }

  .step-connector { width: 2px; height: 16px; }

  .pricing-callout { flex-direction: column; }

  .footer-inner { flex-direction: column; align-items: flex-start; }

  .nav-tagline { display: none; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .service-card { padding: 28px 24px; }
  .proof-num { font-size: 1.3rem; }
  .pricing-main { font-size: 1.3rem; }
}