:root {
  --bg: #F7F4EF;
  --fg: #1A1714;
  --accent: #FF5938;
  --accent-warm: #FF8C5A;
  --muted: #7A7168;
  --surface: #EFEBE4;
  --border: #D9D3C8;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ── HERO ── */
.hero {
  position: relative;
  padding: 96px 48px 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,89,56,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(255,140,90,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(56px, 8vw, 100px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  padding: 0 32px 0 0;
}

.stat:first-child { padding-left: 0; }

.stat-value {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 0 32px;
}

/* ── HOW ── */
.how {
  padding: 96px 48px;
  border-bottom: 1px solid var(--border);
}

.how-header {
  margin-bottom: 64px;
}

.how-header h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.how-sub {
  color: var(--muted);
  font-size: 16px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.step {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
}

.step:last-child { border-right: none; }

.step-number {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 20px;
  line-height: 1;
}

.step-content h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── PACKAGES ── */
.packages {
  padding: 96px 48px;
  border-bottom: 1px solid var(--border);
}

.packages-header {
  margin-bottom: 48px;
}

.packages-header h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.packages-sub {
  color: var(--muted);
  font-size: 16px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.package-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 32px;
  position: relative;
}

.package-card--featured {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.package-badge {
  position: absolute;
  top: -1px;
  left: 32px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0 0 4px 4px;
}

.package-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.package-card--featured .package-label { color: rgba(247,244,239,0.6); }

.package-price {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 28px;
}

.package-card--featured .package-price { color: var(--bg); }

.package-price span {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.6;
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.package-features li {
  font-size: 15px;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}

.package-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.package-card--featured .package-features li { color: rgba(247,244,239,0.7); }
.package-card--featured .package-features li::before { background: var(--accent-warm); }

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

.manifesto-inner {
  max-width: 720px;
}

.manifesto-quote {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--fg);
  margin-bottom: 32px;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
}

.manifesto-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ── FOOTER ── */
.footer {
  padding: 40px 48px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--fg);
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
}

.footer-meta {
  font-size: 13px;
  color: var(--muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero, .how, .packages, .manifesto { padding: 64px 24px; }
  .footer { padding: 32px 24px; }

  .how-steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }

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

  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .stat { padding: 0; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}