:root {
  --bg: #0B0F0D;
  --bg-surface: #111711;
  --bg-card: #161D16;
  --fg: #E8E4D9;
  --fg-muted: #9B9586;
  --accent: #D4A843;
  --accent-dim: rgba(212, 168, 67, 0.12);
  --accent-border: rgba(212, 168, 67, 0.25);
  --text-muted: #7A7569;
  --border: rgba(232, 228, 217, 0.08);
  --border-light: rgba(232, 228, 217, 0.05);
  --green-deep: #1A2E1E;
}

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

/* NAV */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(11, 15, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}
.nav-inner { width: 100%; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 600; color: var(--fg); text-decoration: none; letter-spacing: -0.02em; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--fg-muted); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--fg); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(26, 46, 30, 0.5) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-eyebrow { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.hero-headline { font-family: 'Fraunces', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 600; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 28px; color: var(--fg); }
.hero-lede { font-size: 1.125rem; line-height: 1.7; color: var(--fg-muted); margin-bottom: 20px; max-width: 480px; }
.hero-stat { font-size: 0.8rem; color: var(--text-muted); border-left: 2px solid var(--accent); padding-left: 14px; max-width: 380px; }

.hero-visual { display: flex; flex-direction: column; align-items: center; gap: 24px; }

.map-orb { position: relative; width: 260px; height: 260px; display: flex; align-items: center; justify-content: center; }
.orb-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(212, 168, 67, 0.2); }
.orb-ring-1 { width: 160px; height: 160px; animation: orb-pulse 4s ease-in-out infinite; }
.orb-ring-2 { width: 220px; height: 220px; animation: orb-pulse 4s ease-in-out infinite 0.6s; }
.orb-ring-3 { width: 280px; height: 280px; animation: orb-pulse 4s ease-in-out infinite 1.2s; }
@keyframes orb-pulse { 0%, 100% { opacity: 0.3; transform: scale(1); } 50% { opacity: 0.7; transform: scale(1.03); } }
.orb-core { width: 120px; height: 120px; z-index: 1; }
.orb-core svg { width: 100%; height: 100%; }

.hero-stat-card { background: var(--bg-card); border: 1px solid var(--accent-border); border-radius: 12px; padding: 20px 24px; text-align: center; width: 240px; }
.stat-number { display: block; font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 600; color: var(--accent); }
.stat-label { display: block; font-size: 0.75rem; color: var(--fg-muted); margin-top: 6px; line-height: 1.4; }

/* PROBLEM */
.problem { background: var(--green-deep); padding: 100px 48px; }
.problem-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.problem-headline { font-family: 'Fraunces', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 56px; max-width: 560px; line-height: 1.15; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.problem-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.problem-icon { color: var(--accent); margin-bottom: 20px; }
.problem-card h3 { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 600; margin-bottom: 12px; }
.problem-card p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.65; }

/* HOW IT WORKS */
.how-it-works { background: var(--bg); padding: 100px 48px; }
.hiw-inner { max-width: 1200px; margin: 0 auto; }
.hiw-headline { font-family: 'Fraunces', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 16px; }
.hiw-sub { font-size: 1.1rem; color: var(--fg-muted); margin-bottom: 64px; max-width: 500px; }
.steps { display: flex; align-items: flex-start; gap: 0; }
.step { flex: 1; position: relative; }
.step-number { font-family: 'Fraunces', serif; font-size: 3rem; font-weight: 300; color: var(--accent); opacity: 0.4; margin-bottom: 16px; line-height: 1; }
.step-content h3 { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; }
.step-content p { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; }
.step-connector { flex: 0 0 48px; height: 2px; background: linear-gradient(to right, var(--accent-border), var(--accent-border)); margin-top: 24px; align-self: flex-start; padding-top: 24px; position: relative; }
.step-connector::after { content: ''; position: absolute; top: 24px; left: 0; width: 100%; height: 1px; background: var(--accent); }

/* PRODUCTS */
.products { background: var(--bg-surface); padding: 100px 48px; }
.products-inner { max-width: 1200px; margin: 0 auto; }
.products-headline { font-family: 'Fraunces', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 56px; }
.product-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 32px; position: relative; }
.product-badge { position: absolute; top: 20px; right: 20px; background: var(--accent-dim); border: 1px solid var(--accent-border); color: var(--accent); font-size: 0.7rem; font-weight: 600; padding: 4px 10px; border-radius: 100px; letter-spacing: 0.05em; }
.product-icon-large { margin-bottom: 24px; color: var(--accent); }
.product-card h3 { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 600; margin-bottom: 12px; }
.product-card > p { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; margin-bottom: 20px; }
.product-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.product-features li { font-size: 0.8rem; color: var(--fg-muted); padding-left: 18px; position: relative; }
.product-features li::before { content: ''; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

/* MANIFESTO */
.manifesto { background: var(--green-deep); padding: 100px 48px; }
.manifesto-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 3fr 2fr; gap: 80px; align-items: center; }
.manifesto-eyebrow { }
.manifesto-quote { font-family: 'Fraunces', serif; font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 300; font-style: italic; line-height: 1.5; color: var(--fg); margin-bottom: 28px; border-left: 3px solid var(--accent); padding-left: 24px; }
.manifesto-body { font-size: 0.95rem; color: var(--fg-muted); line-height: 1.75; margin-bottom: 16px; }
.manifesto-stats { display: flex; flex-direction: column; gap: 40px; }
.mstat { }
.mstat-number { display: block; font-family: 'Fraunces', serif; font-size: 3rem; font-weight: 600; color: var(--accent); line-height: 1; }
.mstat-desc { display: block; font-size: 0.8rem; color: var(--fg-muted); margin-top: 8px; max-width: 180px; line-height: 1.4; }

/* CLOSING */
.closing { background: var(--bg); padding: 120px 48px; text-align: center; }
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline { font-family: 'Fraunces', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 24px; }
.closing-body { font-size: 1rem; color: var(--fg-muted); line-height: 1.7; max-width: 520px; margin: 0 auto; }

/* FOOTER */
.site-footer { background: var(--bg-surface); border-top: 1px solid var(--border-light); padding: 64px 48px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-bottom: 48px; }
.footer-logo { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 600; display: block; margin-bottom: 12px; }
.footer-tagline { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; }
.footer-links { display: flex; gap: 64px; justify-content: flex-end; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.footer-col a, .footer-col span { font-size: 0.875rem; color: var(--fg-muted); text-decoration: none; }
.footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid var(--border-light); padding-top: 24px; }
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-connector { display: none; }
  .product-cards { grid-template-columns: 1fr; }
  .manifesto-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .site-nav { padding: 0 24px; }
  .hero, .problem, .how-it-works, .products, .manifesto, .closing { padding: 80px 24px; }
  .site-footer { padding: 48px 24px 24px; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero-headline { font-size: 2.2rem; }
}