:root {
  --bg: #141414;
  --surface: #1E1E1E;
  --surface-2: #262626;
  --gold: #D4A843;
  --gold-dim: #B8923A;
  --text: #F5EFE6;
  --text-muted: #8A8A8A;
  --text-dim: #5A5A5A;
  --border: #2A2A2A;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Syne', system-ui, sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* HERO */
.hero {
  padding: 100px 48px 80px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text);
}
.gold { color: var(--gold); }
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
}
.hero-card-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 280px;
  transition: transform 0.2s;
}
.hero-card:hover { transform: translateX(4px); }
.card-google .card-icon { background: #4285F4; color: white; }
.card-tiktok .card-icon { background: #EE1D52; color: white; }
.card-instagram .card-icon { background: linear-gradient(135deg, #833AB4, #E1306C, #F77737); color: white; }
.card-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 15px; font-weight: 800;
  flex-shrink: 0;
}
.card-lines { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.card-line {
  height: 8px; background: var(--surface-2);
  border-radius: 4px;
}
.card-line.wide { width: 100%; }
.card-line.narrow { width: 60%; }
.card-line.medium { width: 75%; }
.card-stars, .card-play, .card-heart {
  font-size: 14px; color: var(--gold); flex-shrink: 0;
}
.card-heart { color: #E1306C; }

/* PROOF */
.proof {
  padding: 56px 48px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.proof-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}
.proof-stat {
  flex: 1;
  text-align: center;
}
.proof-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.proof-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}
.proof-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* FEATURES */
.features {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
}
.features-inner { max-width: 1160px; margin: 0 auto; }
.section-header { margin-bottom: 64px; }
.section-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  max-width: 600px;
  color: var(--text);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--surface); }
.feature-icon {
  width: 44px; height: 44px;
  background: var(--surface-2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 20px;
  font-family: 'Syne', sans-serif;
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 48px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner { max-width: 800px; margin: 0 auto; }
.manifesto-kicker {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 36px;
  font-style: normal;
}
.manifesto-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.manifesto-body:last-child { margin-bottom: 0; }

/* CLOSING */
.closing {
  padding: 100px 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 24px;
  line-height: 1.15;
}
.closing-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 48px;
  background: var(--bg);
}
.footer-inner { max-width: 1160px; margin: 0 auto; text-align: center; }
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero, .features, .manifesto, .closing { padding: 64px 28px; }
  .proof { padding: 40px 28px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .proof-inner { flex-direction: column; gap: 32px; }
  .proof-divider { width: 60px; height: 1px; }
  .proof-stat { text-align: left; }
  .features-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero, .features, .manifesto, .closing { padding: 48px 20px; }
  .proof { padding: 32px 20px; }
  .proof-number { font-size: 38px; }
}