* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #0c1013; --card: rgba(255,255,255,0.04); --border: rgba(255,255,255,0.08);
  --green: #22c55e; --green2: #16a34a; --teal: #14b8a6;
  --text: #ffffff; --muted: #94a3b8; --dim: #475569;
}
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: var(--bg); color: var(--text); min-height: 100vh; overflow-x: hidden; }
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; background: rgba(12,16,19,0.85); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav-logo { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.04em; display: flex; align-items: center; gap: 8px; text-decoration: none; color: inherit; }
.nav-logo .good { color: #fff; } .nav-logo .bones { color: var(--green); } .nav-logo .dot { color: var(--muted); font-weight: 400; }
.nav-logo svg { display: block; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-cta { background: var(--green) !important; color: #fff !important; padding: 8px 18px !important; border-radius: 8px; font-weight: 600 !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; top: 61px; left: 0; right: 0; background: rgba(12,16,19,0.98); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 16px 24px 24px; z-index: 99; flex-direction: column; gap: 4px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--muted); text-decoration: none; font-size: 16px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .nav-cta { margin-top: 8px; text-align: center; padding: 13px; border-radius: 10px; }
@media (max-width: 640px) { .nav-links { display: none; } .hamburger { display: flex; } }
.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 120px 24px 80px; position: relative; overflow: hidden; }
.glow-green { position: absolute; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(34,197,94,0.1) 0%, transparent 70%); top: 10%; left: 50%; transform: translateX(-50%); pointer-events: none; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25); color: #86efac; font-size: 13px; font-weight: 500; padding: 6px 16px; border-radius: 100px; margin-bottom: 28px; }
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 24px; max-width: 880px; }
h1 .green { background: linear-gradient(135deg, #22c55e, #14b8a6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 1.15rem; color: var(--muted); line-height: 1.65; max-width: 620px; margin: 0 auto 40px; }
.thesis { font-size: 1.15rem; color: #e2e8f0; max-width: 560px; margin: 0 auto 40px; }
section { max-width: 1100px; margin: 0 auto; padding: 80px 24px; }
.page { padding: 120px 24px 40px; max-width: 860px; margin: 0 auto; }
.page.wide { max-width: 1100px; }
.section-badge { display: inline-block; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2); color: #86efac; font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 100px; margin-bottom: 16px; letter-spacing: 0.05em; text-transform: uppercase; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 16px; }
h3 { font-size: 1.05rem; font-weight: 700; margin: 28px 0 10px; color: #e2e8f0; }
.section-sub, .prose { font-size: 1.05rem; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.prose p { margin-bottom: 16px; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; }
.step { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 22px; text-align: left; }
.step-num { width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, #22c55e, #14b8a6); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; margin-bottom: 12px; }
.step h3 { margin: 0 0 6px; font-size: 1rem; }
.step p { font-size: 13px; color: var(--dim); line-height: 1.55; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 28px; }
.chips span { font-size: 13px; border: 1px solid var(--border); background: var(--card); padding: 8px 12px; border-radius: 100px; color: #e2e8f0; }
.note { background: var(--card); border: 1px solid var(--border); border-left: 3px solid var(--green); border-radius: 0 12px 12px 0; padding: 16px 18px; color: var(--muted); font-size: 14px; line-height: 1.6; margin: 24px 0; }
.note strong { color: #86efac; }
.weights { width: 100%; border-collapse: collapse; font-size: 14px; margin: 16px 0 28px; }
.weights th, .weights td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); }
.weights th { color: var(--dim); font-weight: 600; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }
.weights td:last-child, .weights th:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.bands { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; margin: 16px 0 32px; }
.band { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 16px; }
.band b { display: block; font-size: 13px; margin-bottom: 6px; }
.band span { font-size: 13px; }
.band-lime { background: rgba(163,230,53,0.10); border-color: rgba(163,230,53,0.35); }
.band-lime b { color: #bef264; } .band-lime span { color: #d9f99d; }
.band-yellow { background: rgba(234,179,8,0.10); border-color: rgba(234,179,8,0.40); }
.band-yellow b { color: #facc15; } .band-yellow span { color: #fde68a; }
.band-orange { background: rgba(249,115,22,0.12); border-color: rgba(249,115,22,0.40); }
.band-orange b { color: #fb923c; } .band-orange span { color: #fdba74; }
.band-red { background: rgba(239,68,68,0.12); border-color: rgba(239,68,68,0.40); }
.band-red b { color: #f87171; } .band-red span { color: #fca5a5; }
.map-shell { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 20px; margin: 20px 0 32px; }
.map-shell svg { width: 100%; height: auto; max-height: 420px; display: block; }
.map-caption { text-align: center; color: var(--dim); font-size: 13px; margin-top: 10px; letter-spacing: .04em; text-transform: uppercase; }
form { display: grid; gap: 14px; max-width: 560px; }
label { font-size: 13px; color: var(--muted); display: grid; gap: 6px; }
input, select, textarea { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; color: #fff; font-size: 15px; padding: 12px 14px; outline: none; font-family: inherit; }
input:focus, select:focus, textarea:focus { border-color: var(--green); }
textarea { min-height: 120px; resize: vertical; }
.btn-primary { display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #22c55e, #16a34a); color: #fff; font-size: 15px; font-weight: 600; padding: 13px 28px; border-radius: 10px; border: none; cursor: pointer; text-decoration: none; }
.btn-primary:hover { opacity: 0.9; }
.legal { font-size: 15px; color: var(--muted); line-height: 1.75; }
.legal h2 { font-size: 1.4rem; margin: 32px 0 10px; }
.draft { display: inline-block; margin-top: 28px; font-size: 12px; color: var(--dim); }
footer { border-top: 1px solid var(--border); padding: 40px 24px; text-align: center; }
.footer-logo { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.04em; margin-bottom: 12px; }
.footer-logo span { color: var(--green); }
.footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.footer-links a { color: var(--dim); text-decoration: none; font-size: 13px; }
.footer-links a:hover { color: var(--muted); }
.footer-copy { font-size: 12px; color: var(--dim); }
