*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0f0f1a;
  --bg-alt: #16162a;
  --fg: #fafafa;
  --fg-muted: #9ca3af;
  --accent: #f59e0b;
  --accent-dim: rgba(245,158,11,0.1);
  --accent-glow: rgba(245,158,11,0.3);
  --green: #10b981;
  --border: rgba(255,255,255,0.07);
  --radius: 14px;
  --font-head: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--fg); font-family: var(--font-body); font-size: 17px; line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
h1, h2, h3 { font-family: var(--font-head); font-weight: 800; line-height: 1.1; }
.section-label { display: inline-block; font-family: var(--font-head); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
em { font-style: normal; color: var(--accent); }
/* MANIFESTO */
.manifesto { padding: 8rem 2rem 7rem; position: relative; overflow: hidden; }
.manifesto::before { content: ''; position: absolute; top: -20%; right: -5%; width: 700px; height: 700px; background: radial-gradient(circle, rgba(245,158,11,0.05) 0%, transparent 65%); pointer-events: none; }
.manifesto-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.manifesto-tag { display: inline-block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); background: var(--accent-dim); border: 1px solid rgba(245,158,11,0.2); padding: 0.35rem 0.9rem; border-radius: 100px; margin-bottom: 1.75rem; }
.manifesto-headline { font-size: clamp(2.5rem, 4.5vw, 4rem); font-weight: 800; line-height: 1.07; margin-bottom: 1.5rem; letter-spacing: -0.025em; }
.manifesto-body { font-size: 1rem; color: var(--fg-muted); max-width: 480px; margin-bottom: 2.5rem; line-height: 1.75; }
.manifesto-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-value { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--accent); }
.stat-label { font-size: 0.7rem; color: var(--fg-muted); margin-top: 0.25rem; max-width: 100px; line-height: 1.4; }
/* CSS Art */
.manifesto-visual { display: flex; align-items: center; justify-content: center; position: relative; }
.stack-art { position: relative; width: 320px; height: 320px; }
.cube { position: absolute; border: 2px solid var(--accent); background: var(--accent-dim); border-radius: 10px; animation: float 4s ease-in-out infinite; }
.cube::after { content: ''; position: absolute; inset: 0; border-radius: 10px; background: linear-gradient(135deg, rgba(245,158,11,0.25), transparent 60%); }
.cube-1 { width: 90px; height: 90px; top: 8px; left: 28px; animation-delay: 0s; }
.cube-2 { width: 75px; height: 75px; top: 68px; left: 140px; animation-delay: 0.5s; }
.cube-3 { width: 110px; height: 80px; top: 158px; left: 38px; animation-delay: 1s; }
.cube-4 { width: 65px; height: 65px; top: 118px; left: 195px; animation-delay: 1.5s; }
.coin-group { position: absolute; bottom: 15px; right: 15px; display: flex; flex-direction: column; gap: 0; }
.coin { width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--accent); background: var(--accent-dim); }
.coin::before { content: ''; display: block; width: 20px; height: 20px; border: 1px solid rgba(245,158,11,0.35); border-radius: 50%; margin: 7px; }
.coin-1 { animation: coinDrop 3s ease-in-out 0s infinite; }
.coin-2 { animation: coinDrop 3s ease-in-out 0.6s infinite; }
.coin-3 { animation: coinDrop 3s ease-in-out 1.2s infinite; }
.orbit-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(245,158,11,0.12); top: 50%; left: 50%; transform: translate(-50%, -50%); }
.orbit-1 { width: 240px; height: 240px; animation: spin 20s linear infinite; }
.orbit-2 { width: 315px; height: 315px; animation: spin 30s linear infinite reverse; }
.glow-orb { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 18px; height: 18px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 40px 8px var(--accent-glow); }
@keyframes float { 0%,100% { transform: translateY(0px); } 50% { transform: translateY(-9px); } }
@keyframes coinDrop { 0% { transform: translateY(-30px); opacity: 0; } 30% { opacity: 1; } 70% { opacity: 1; } 100% { transform: translateY(12px); opacity: 0; } }
@keyframes spin { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
/* PROOF */
.proof { padding: 5rem 2rem; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.proof-header { max-width: 1100px; margin: 0 auto 3rem; }
.proof-title { font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 800; max-width: 560px; line-height: 1.2; }
.proof-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.proof-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem 1.5rem; transition: border-color 0.2s; }
.proof-card:hover { border-color: rgba(245,158,11,0.3); }
.proof-number { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--fg); margin: 0.75rem 0 0.4rem; }
.proof-desc { font-size: 0.78rem; color: var(--fg-muted); line-height: 1.5; }
/* OUTCOMES */
.outcomes { padding: 6rem 2rem; }
.outcomes-header { max-width: 1100px; margin: 0 auto 3rem; }
.outcomes-title { font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 800; max-width: 460px; }
.outcomes-list { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.outcome-item { display: flex; gap: 1.25rem; padding: 1.5rem 2rem; background: var(--bg); align-items: flex-start; transition: background 0.2s; }
.outcome-item:hover { background: var(--bg-alt); }
.outcome-icon { flex-shrink: 0; width: 44px; height: 44px; background: var(--accent-dim); border: 1px solid rgba(245,158,11,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.outcome-text { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.55; }
.outcome-text strong { color: var(--fg); font-weight: 600; }
/* PHILOSOPHY */
.philosophy { padding: 6rem 2rem; background: var(--bg-alt); border-top: 1px solid var(--border); }
.philosophy-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.philosophy-title { font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 1.25rem; line-height: 1.2; }
.philosophy-body { font-size: 0.875rem; color: var(--fg-muted); margin-bottom: 1rem; line-height: 1.75; }
.philosophy-stats { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 1.75rem; padding-top: 1.75rem; border-top: 1px solid var(--border); }
.p-stat { display: flex; gap: 1rem; align-items: baseline; }
.p-stat-num { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; color: var(--accent); white-space: nowrap; }
.p-stat-text { font-size: 0.78rem; color: var(--fg-muted); }
/* Funnel Art */
.funnel-art { display: flex; flex-direction: column; gap: 0; }
.funnel-stage { padding: 1rem 1.5rem; border-radius: 10px; font-size: 0.78rem; font-weight: 600; background: var(--bg); border: 1px solid var(--border); text-align: center; color: var(--fg-muted); transition: all 0.25s; }
.funnel-stage:hover { border-color: rgba(245,158,11,0.3); color: var(--fg); }
.stage-money { background: var(--accent-dim); border-color: rgba(245,158,11,0.35); color: var(--accent); font-size: 0.82rem; }
.funnel-arrow { width: 2px; height: 14px; background: linear-gradient(to bottom, rgba(245,158,11,0.5), transparent); margin: 0 auto; border-radius: 2px; }
/* CLOSING */
.closing { padding: 8rem 2rem; text-align: center; position: relative; }
.closing::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 700px; height: 400px; background: radial-gradient(ellipse at top, rgba(245,158,11,0.07) 0%, transparent 70%); pointer-events: none; }
.closing-inner { max-width: 680px; margin: 0 auto; position: relative; }
.closing-title { font-size: clamp(1.6rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.15; margin-bottom: 1.5rem; }
.closing-body { font-size: 0.925rem; color: var(--fg-muted); line-height: 1.8; margin-bottom: 3rem; }
.cta-tagline { display: inline-block; font-family: var(--font-head); font-size: 0.82rem; font-weight: 600; color: var(--accent); letter-spacing: 0.05em; }
/* FOOTER */
.footer { padding: 3rem 2rem; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-name { display: block; font-family: var(--font-head); font-size: 1.15rem; font-weight: 800; color: var(--accent); margin-bottom: 0.25rem; }
.footer-tagline { font-size: 0.72rem; color: var(--fg-muted); }
.footer-meta { font-size: 0.72rem; color: var(--fg-muted); }
/* Responsive */
@media (max-width: 900px) {
  .manifesto-grid, .philosophy-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .manifesto-visual { order: -1; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .outcomes-list { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .manifesto { padding: 5rem 1.5rem 4rem; }
  .proof { padding: 3rem 1.5rem; }
  .outcomes { padding: 3rem 1.5rem; }
  .philosophy { padding: 3rem 1.5rem; }
  .closing { padding: 5rem 1.5rem; }
  .manifesto-stats { flex-direction: column; gap: 1rem; }
  .proof-grid { grid-template-columns: 1fr; }
}