:root {
  --bg: #0d0f12;
  --bg-alt: #111318;
  --fg: #f0ede6;
  --fg-muted: #9a9589;
  --accent: #f59e0b;
  --accent-dim: rgba(245,158,11,0.12);
  --card: #13161b;
  --card-border: rgba(240,237,230,0.07);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1200px;
  --section-pad: clamp(60px, 8vw, 100px);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 clamp(20px, 4vw, 60px);
  border-bottom: 1px solid var(--card-border);
  background: rgba(13,15,18,0.9);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* ─── HERO ─── */
.hero {
  padding: var(--section-pad) clamp(20px, 4vw, 60px);
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.25);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--fg);
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}
.hero-image-wrap {
  position: relative;
}
.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--card-border);
}
.hero-img-caption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-weight: 400;
}

/* ─── STATS ─── */
.stats {
  background: var(--bg-alt);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: clamp(40px, 5vw, 64px) clamp(20px, 4vw, 60px);
}
.stats-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--card-border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* ─── HOW ─── */
.how {
  padding: var(--section-pad) clamp(20px, 4vw, 60px);
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-header {
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-header.centered { text-align: center; }
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.25);
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--fg);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.how-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 36px;
  transition: border-color 0.3s;
}
.how-card:hover { border-color: rgba(245,158,11,0.3); }
.how-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.how-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}
.how-card p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ─── PROCESS ─── */
.process {
  background: var(--bg-alt);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: var(--section-pad) clamp(20px, 4vw, 60px);
}
.process-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.process-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--card-border);
}
.process-text-side .section-title {
  font-size: clamp(28px, 3.5vw, 44px);
}
.process-steps {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.2);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.process-step strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.process-step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ─── PRICING ─── */
.pricing {
  padding: var(--section-pad) clamp(20px, 4vw, 60px);
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-sub {
  font-size: 17px;
  color: var(--fg-muted);
  margin-top: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
}
.pricing-card.featured {
  border-color: rgba(245,158,11,0.4);
  background: linear-gradient(180deg, rgba(245,158,11,0.06) 0%, var(--card) 100%);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0d0f12;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.plan-price {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 52px);
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 16px;
}
.price-unit { font-size: 20px; font-weight: 400; letter-spacing: 0; }
.per-month { font-size: 15px; font-weight: 400; letter-spacing: 0; color: var(--fg-muted); }
.plan-desc {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 28px;
  line-height: 1.55;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan-features li {
  font-size: 15px;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}
.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* ─── MANIFESTO ─── */
.manifesto {
  background: var(--bg-alt);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: var(--section-pad) clamp(20px, 4vw, 60px);
}
.manifesto-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  line-height: 1.45;
  color: var(--fg);
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.quote-sub {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}
.manifesto-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--card-border);
}
.manifesto-img-label {
  margin-top: 12px;
  font-size: 13px;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-weight: 400;
  text-align: center;
}

/* ─── CLOSING ─── */
.closing {
  padding: clamp(80px, 12vw, 140px) clamp(20px, 4vw, 60px);
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--card-border);
  padding: 48px clamp(20px, 4vw, 60px);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.footer-legal {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 13px;
  color: var(--fg-muted);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-content, .process-inner, .manifesto-inner {
    grid-template-columns: 1fr;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--card-border); padding-bottom: 20px; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--card-border); }
  .stat-item:last-child, .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .how-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero-img { height: 280px; }
  .process-img { height: 280px; }
  .manifesto-img { height: 260px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card { padding: 32px 24px; }
}
