:root {
  --bg: #0a0a0a;
  --bg-card: #141414;
  --bg-card-hover: #1c1c1c;
  --accent: #f5a623;
  --accent-dim: #c47d0a;
  --text: #f0ede6;
  --text-muted: #8a8580;
  --text-dim: #5a5750;
  --border: #252525;
  --border-light: #1e1e1e;
  --nav-h: 56px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  height: var(--nav-h);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
}
.nav-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--text);
  text-decoration: none;
}
.nav-tag {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
}
.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(245,166,35,0.07) 0%, transparent 65%);
}
.hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-sub {
  max-width: 540px;
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

/* MANIFESTO */
.manifesto {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: #0e0e0e;
  padding: 0;
}
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 0;
}
.manifesto-stat {
  flex: 1;
  padding: 40px 0;
  text-align: center;
}
.manifesto-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}
.stat-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-unit {
  font-size: 1.2rem;
}
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* WHAT'S INSIDE */
.whatsinside {
  padding: 100px 0;
}
.wi-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.wi-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 12px;
}
.wi-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 56px;
}
.wi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}
.wi-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.2s;
}
.wi-card:hover {
  background: var(--bg-card-hover);
}
.wi-icon {
  color: var(--accent);
  margin-bottom: 16px;
  width: 24px;
}
.wi-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.wi-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* PRICING */
.pricing {
  padding: 80px 0 100px;
  background: #0e0e0e;
  border-top: 1px solid var(--border-light);
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
}
.pricing-box {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 48px 56px;
  max-width: 420px;
  width: 100%;
  text-align: center;
}
.pricing-badge {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 20px;
}
.pricing-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.pricing-includes {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}
.pricing-includes li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-includes li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.pricing-guarantee {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.04em;
}

/* CLOSING */
.closing {
  padding: 100px 0;
  border-top: 1px solid var(--border-light);
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 20px;
}
.closing-sub {
  max-width: 500px;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border-light);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--text);
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 4px;
}
.footer-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.04em;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-headline { font-size: 3.2rem; }
  .manifesto-inner { flex-direction: column; gap: 0; }
  .manifesto-divider { width: 100%; height: 1px; }
  .manifesto-stat { padding: 32px 0; }
  .wi-grid { grid-template-columns: 1fr; }
  .pricing-box { padding: 36px 28px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-inner { padding: 48px 20px; }
  .wi-inner { padding: 0 20px; }
  .pricing-inner { padding: 0 20px; }
  .closing-inner { padding: 0 20px; }
}