:root {
  --bg: #0e0b07;
  --bg-card: #161109;
  --fg: #f0ead8;
  --fg-muted: #8a7f6a;
  --accent: #c9952a;
  --accent-dim: rgba(201, 149, 42, 0.12);
  --accent-glow: rgba(201, 149, 42, 0.06);
  --border: rgba(240, 234, 216, 0.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-w: 1140px;
  --gap: 48px;
  --section-pad: 120px;
}

*, *::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);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 11, 7, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
}
.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--section-pad) 32px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.geo-line {
  position: absolute;
  background: var(--accent);
  opacity: 0.06;
}
.geo-line-1 {
  width: 1px; height: 60%;
  top: 10%; left: 15%;
}
.geo-line-2 {
  width: 40%; height: 1px;
  top: 35%; left: 55%;
}
.geo-line-3 {
  width: 1px; height: 45%;
  top: 40%; right: 20%;
}
.geo-block {
  position: absolute;
  border: 1px solid var(--accent);
  opacity: 0.07;
}
.geo-block-1 {
  width: 280px; height: 280px;
  top: 8%; right: 10%;
  transform: rotate(15deg);
}
.geo-block-2 {
  width: 140px; height: 140px;
  bottom: 20%; left: 8%;
  transform: rotate(-8deg);
}
.geo-dot {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.3;
}
.geo-dot-1 { top: 22%; left: 25%; }
.geo-dot-2 { top: 60%; right: 25%; }
.geo-dot-3 { bottom: 30%; left: 55%; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
  max-width: 800px;
}
.hero-lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 64px;
  font-weight: 300;
}
.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
}
.hero-stat {
  padding: 0 40px;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* MANIFESTO */
.manifesto {
  padding: var(--section-pad) 32px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 780px;
  margin: 0 auto;
}
.manifesto-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}
.manifesto-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 300;
}
.manifesto-body em { color: var(--fg); font-style: normal; font-weight: 500; }

/* FEATURES */
.features {
  padding: var(--section-pad) 32px;
}
.features-header {
  max-width: var(--max-w);
  margin: 0 auto 64px;
}
.features-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.features-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  color: var(--fg);
  max-width: 540px;
}
.features-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feature-card {
  padding: 40px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: background 0.2s;
}
.feature-card:hover { background: #1c1709; }
.feature-icon {
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
}
.feature-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* PRICING */
.pricing {
  padding: var(--section-pad) 32px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.pricing-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.pricing-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--fg);
  margin-bottom: 48px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 48px;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 48px 44px;
}
.pricing-card-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.pricing-big {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--fg);
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-big-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 32px;
}
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 32px;
}
.pricing-breakdown { display: flex; flex-direction: column; gap: 14px; }
.pb-row { display: flex; justify-content: space-between; align-items: baseline; }
.pb-key { font-size: 0.85rem; color: var(--fg-muted); }
.pb-val { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--fg); }
.pb-val.accent { font-size: 0.85rem; color: var(--accent); font-family: var(--font-body); font-weight: 500; }
.pricing-note { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.65; font-weight: 300; }
.pricing-cta {
  font-size: 1rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* OUTCOMES */
.outcomes {
  padding: var(--section-pad) 32px;
}
.outcomes-header {
  max-width: var(--max-w);
  margin: 0 auto 56px;
}
.outcomes-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.outcomes-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--fg);
}
.outcomes-list {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.outcome-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.outcome-item:last-child { border-bottom: none; }
.outcome-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent);
  padding-top: 4px;
}
.outcome-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.outcome-desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
  max-width: 600px;
}

/* CLOSING */
.closing {
  padding: 120px 32px 140px;
  background: linear-gradient(180deg, var(--bg) 0%, #1a1408 100%);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.closing-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.65;
  font-weight: 300;
}

/* FOOTER */
.footer {
  padding: 48px 32px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--fg);
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  :root { --section-pad: 80px; }
  .hero { min-height: auto; padding: 80px 24px 100px; }
  .hero-stat-row { flex-direction: column; align-items: start; gap: 24px; }
  .hero-stat { padding: 0; }
  .hero-stat-divider { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .outcome-item { grid-template-columns: 40px 1fr; gap: 20px; }
  .footer-inner { flex-direction: column; align-items: start; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 0.82rem; }
  .hero-headline { font-size: 2.4rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .nav-inner { padding: 16px 20px; }
  .nav-links { gap: 16px; }
  .manifesto, .features, .pricing, .outcomes, .closing { padding-left: 20px; padding-right: 20px; }
  .feature-card { padding: 28px 24px; }
  .pricing-card { padding: 32px 24px; }
}