:root {
  --bg: #0F0F0F;
  --surface: #1A1A1A;
  --surface-2: #242424;
  --accent: #BFFF00;
  --accent-dim: #8FBF00;
  --text: #F5F5F5;
  --text-muted: #888888;
  --text-dim: #555555;
  --border: #2A2A2A;
  --font: 'DM Sans', sans-serif;
}

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

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

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

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
}

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

.nav-logo {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.nav-tagline {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* HERO */
.hero {
  padding: 80px 32px 64px;
  border-bottom: 1px solid var(--border);
}

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

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-overline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 400px;
}

/* Content grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.content-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}

.content-card:hover {
  border-color: var(--accent-dim);
}

.card-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.card-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--surface-2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-icon {
  font-size: 1.25rem;
  color: var(--text-dim);
}

.card-tiktok .card-placeholder { background: linear-gradient(135deg, #1a0a0a 0%, #2a0a0a 100%); }
.card-reel .card-placeholder { background: linear-gradient(135deg, #0a0a1a 0%, #0a1a0a 100%); }
.card-post .card-placeholder { background: linear-gradient(135deg, #1a1a0a 0%, #2a2a0a 100%); }
.card-ugc .card-placeholder { background: linear-gradient(135deg, #0a1a1a 0%, #0a2a2a 100%); }

.card-caption {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* FORMATS */
.formats {
  padding: 80px 32px;
  border-bottom: 1px solid var(--border);
}

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

.section-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.formats-headline {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.25;
}

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

.format-item {
  display: flex;
  gap: 20px;
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  margin: -1px;
  transition: background 0.2s;
}

.format-item:hover {
  background: var(--surface-2);
}

.format-icon {
  font-size: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.format-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.format-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* PRICING */
.pricing {
  padding: 80px 32px;
  border-bottom: 1px solid var(--border);
}

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

.pricing-block {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.price-number {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
}

.price-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-period {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
}

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

.pricing-features {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.divider {
  color: var(--text-dim);
}

.pricing-context {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.65;
}

/* MANIFESTO */
.manifesto {
  padding: 96px 32px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

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

.manifesto blockquote {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 28px;
  font-style: normal;
}

.manifesto-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* CLOSING */
.closing {
  padding: 96px 32px;
  border-bottom: 1px solid var(--border);
}

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

.closing-headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 720px;
}

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

/* FOOTER */
.footer {
  padding: 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.01em;
}

.footer-slash {
  color: var(--text-dim);
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    padding: 56px 24px 48px;
  }

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

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

  .formats {
    padding: 56px 24px;
  }

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

  .pricing {
    padding: 56px 24px;
  }

  .pricing-block {
    gap: 16px;
  }

  .manifesto {
    padding: 64px 24px;
  }

  .closing {
    padding: 64px 24px;
  }

  .navbar {
    padding: 0 24px;
  }
}

@media (max-width: 480px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-headline br {
    display: none;
  }

  .pricing-features {
    gap: 6px;
  }

  .divider {
    display: none;
  }
}