/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0F0F0F;
  --surface: #1A1A1A;
  --surface-2: #242424;
  --amber: #F59E0B;
  --amber-dim: #B47706;
  --cream: #F5F0E8;
  --cream-dim: #C4BCA8;
  --text-muted: #888888;
  --border: #2A2A2A;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 2rem;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--cream);
}

.site-header nav {
  display: flex;
  gap: 2rem;
}

.site-header nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cream-dim);
  transition: color 0.2s;
}

.site-header nav a:hover { color: var(--amber); }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 2rem 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.hero-lede {
  font-size: 1.125rem;
  color: var(--cream-dim);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  font-size: 0.8125rem;
  color: var(--cream-dim);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
}

.video-card-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 380px;
}

.vcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.vc-1 { transform: translateY(0); }
.vc-2 { transform: translateY(20px); }
.vc-3 { transform: translateY(0); }
.vc-4 { transform: translateY(20px); }

.vcard-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.vcard-views {
  font-family: 'Syne', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}

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

/* === SECTIONS === */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.section-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.section-body {
  font-size: 1rem;
  color: var(--cream-dim);
  line-height: 1.7;
  max-width: 560px;
}

/* === AUDIENCE === */
.audience {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.audience .section-body {
  margin-bottom: 2.5rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.audience-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cream);
  transition: border-color 0.2s, background 0.2s;
}

.audience-item:hover {
  border-color: var(--amber-dim);
  background: var(--surface-2);
}

.audience-icon {
  color: var(--amber);
  flex-shrink: 0;
  display: flex;
}

/* === METHODOLOGY === */
.methodology {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.methodology .section-body {
  margin-bottom: 3rem;
}

.method-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  align-items: start;
}

.step:last-child { border-bottom: 1px solid var(--border); }

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  padding-top: 0.25rem;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
  font-family: 'Syne', sans-serif;
}

.step-content p {
  font-size: 0.9375rem;
  color: var(--cream-dim);
  line-height: 1.65;
  max-width: 500px;
}

/* === PRICING === */
.pricing {
  padding: 100px 0;
}

.pricing .section-headline {
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.2s;
}

.pricing-card.featured {
  border-color: var(--amber);
  background: var(--surface-2);
}

.plan-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.plan-price {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.plan-price .currency { font-size: 1.5rem; vertical-align: top; margin-top: 0.5rem; display: inline-block; }
.plan-price .per { font-size: 1rem; font-weight: 400; color: var(--text-muted); }

.plan-tag {
  font-size: 0.8125rem;
  color: var(--cream-dim);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.plan-features li {
  font-size: 0.875rem;
  color: var(--cream-dim);
  padding-left: 1.25rem;
  position: relative;
}

.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
}

.pricing-note {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
}

/* === CLOSING === */
.closing {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

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

.closing-statement p {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.closing-statement p:last-child {
  font-size: 1rem;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
  color: var(--cream-dim);
}

/* === FOOTER === */
.site-footer {
  padding: 60px 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-inner .wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
}

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

.copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-visual {
    display: none;
  }

  .hero-headline {
    font-size: 2.5rem;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .step {
    grid-template-columns: 48px 1fr;
    gap: 1rem;
  }

  .step-number {
    font-size: 1.75rem;
  }

  .site-header nav {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 80px;
  }

  .site-header {
    padding: 0 1rem;
  }

  .section-inner {
    padding: 0 1rem;
  }
}