:root {
  --bg: #0D0D0D;
  --surface: #141414;
  --surface-2: #1A1A1A;
  --surface-3: #252525;
  --fg: #F5F5F0;
  --fg-muted: #888;
  --fg-dim: #555;
  --lime: #C8F316;
  --lime-dim: rgba(200, 243, 22, 0.15);
  --lime-border: rgba(200, 243, 22, 0.25);
  --radius: 12px;
  --radius-lg: 16px;
  --font-head: 'Syne', sans-serif;
  --font-body: '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(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.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;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 300;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-left {}
.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--fg);
}
.lime { color: var(--lime); }
.hero-sub {
  font-size: 1.1rem;
  color: #999;
  font-weight: 300;
  max-width: 420px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-offer {
  border: 1px solid var(--lime-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 420px;
}
.hero-offer-tag {
  background: var(--lime-dim);
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-bottom: 1px solid var(--lime-border);
}
.hero-offer-content { padding: 20px 24px; }
.hero-offer-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.hero-offer-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}
.hero-offer-unit {
  font-size: 1rem;
  color: #999;
  font-weight: 300;
}
.hero-offer-detail {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.hero-offer-price-tag {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--lime);
}
.hero-right {}
.hero-widget {
  background: var(--surface-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.5);
}
.hero-svg { display: block; width: 100%; height: auto; }

/* ── MANIFESTO ── */
.manifesto {
  padding: 100px 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.manifesto-inner { max-width: 1200px; margin: 0 auto; }
.manifesto-statement {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  max-width: 800px;
}
.manifesto-body {
  font-size: 1.05rem;
  color: #888;
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 64px;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.manifesto-stat-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 12px;
}
.manifesto-stat-label {
  font-size: 0.9rem;
  color: #888;
  font-weight: 300;
  max-width: 180px;
}

/* ── PACKAGES ── */
.packages {
  padding: 100px 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.packages-header { max-width: 1200px; margin: 0 auto 64px; }
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.section-sub { font-size: 1rem; color: #888; font-weight: 300; max-width: 500px; }

.packages-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.package-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: border-color 0.2s;
}
.package-card:hover { border-color: var(--lime-border); }
.package-card--featured {
  border-color: var(--lime-border);
  background: linear-gradient(135deg, rgba(200,243,22,0.05) 0%, var(--surface) 60%);
}
.package-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--lime);
  color: #0D0D0D;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.package-icon { margin-bottom: 20px; }
.package-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.package-desc {
  font-size: 0.88rem;
  color: #888;
  line-height: 1.65;
  margin-bottom: 24px;
}
.package-price {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--lime);
  margin-bottom: 24px;
}
.package-price span { font-size: 0.9rem; font-weight: 400; color: #888; }
.package-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.package-features li {
  font-size: 0.85rem;
  color: #aaa;
  padding-left: 20px;
  position: relative;
}
.package-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0.6;
}
.packages-note {
  max-width: 1200px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 0.85rem;
  color: #555;
}

/* ── PROCESS ── */
.process {
  padding: 100px 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.process-header { max-width: 1200px; margin: 0 auto 64px; }
.process-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.process-step {}
.process-step-num {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--lime);
  margin-bottom: 20px;
}
.process-step-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.process-step-body { font-size: 0.88rem; color: #777; line-height: 1.7; }

/* ── CLOSER ── */
.closer {
  padding: 120px 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.closer-inner { max-width: 800px; margin: 0 auto; }
.closer-headline {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.closer-body {
  font-size: 1.15rem;
  color: #888;
  line-height: 1.8;
  font-weight: 300;
}

/* ── FOOTER ── */
.footer {
  padding: 48px 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
}
.footer-tagline { font-size: 0.8rem; color: #555; margin-top: 4px; }
.footer-meta p { font-size: 0.8rem; color: #444; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { padding: 100px 24px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .manifesto { padding: 80px 24px; }
  .manifesto-grid { grid-template-columns: 1fr 1fr; }
  .packages { padding: 80px 24px; }
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .process { padding: 80px 24px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .closer { padding: 80px 24px; }
  .footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 600px) {
  .hero-headline { font-size: 2.4rem; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .manifesto-stat-num { font-size: 2.8rem; }
  .packages-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .nav { padding: 16px 24px; }
}