@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Mono:wght@400;700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #0a0a0a;
  --surface: #111;
  --surface-2: #161616;
  --border: #1f1f1f;
  --border-bright: #2a2a2a;
  --acid: #c6f135;
  --acid-dim: #8aaa20;
  --orange: #ff8c3b;
  --orange-dim: #a85a20;
  --red: #ff3b3b;
  --blue: #3b8fff;
  --teal: #2dd4bf;
  --purple: #a855f7;
  --text: #e8e8e8;
  --muted: #666;
  --dim: #444;
  --spacing-md: 16px;
  --spacing-lg: 32px;
  --spacing-xl: 56px;
  --fd: 'Bebas Neue', sans-serif;
  --fm: 'Space Mono', monospace;
  --fb: 'DM Sans', sans-serif;
  --glass: blur(12px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--fb);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
}

body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: .4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

.wrap { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* HEADER */
header {
  position: sticky; top: 0; z-index: 100; padding: 20px 0;
  background: rgba(10, 10, 10, 0.7); backdrop-filter: var(--glass); -webkit-backdrop-filter: var(--glass);
  border-bottom: 1px solid var(--border-bright);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; transition: all 0.3s ease;
}

.logo { font-family: var(--fd); font-size: 32px; line-height: 1; letter-spacing: 3px; color: var(--acid); text-decoration: none; font-weight: 700; }
.logo span { color: var(--text); opacity: .3; }

.nav { display: flex; gap: 32px; align-items: center; }
.nav a { font-family: var(--fm); font-size: 10px; font-weight: 700; color: var(--muted); text-decoration: none; text-transform: uppercase; letter-spacing: 3px; transition: all .2s; opacity: 0.8; }
.nav a:hover { color: var(--acid); opacity: 1; transform: translateY(-1px); }

/* Mobile Nav Toggle */
.nav-toggle { display: none; background: none; border: none; color: var(--acid); font-size: 24px; cursor: pointer; }

@media (max-width: 768px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--surface); flex-direction: column; padding: 20px; border-bottom: 1px solid var(--border-bright); }
  .nav.active { display: flex; }
  .nav-toggle { display: block; }
}

/* BUTTONS */
.btn {
  display: inline-block; padding: 18px 32px; font-family: var(--fd); font-size: 18px; letter-spacing: 2px; text-decoration: none; cursor: pointer; border: none; transition: all .15s; text-align: center; border-radius: 2px;
}
.btn-primary { background: var(--acid); color: #000; }
.btn-primary:hover { background: #d4ff3d; transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--orange); }
.btn-secondary { background: transparent; color: var(--orange); border: 2px solid var(--orange); }
.btn-secondary:hover { background: var(--orange); color: #000; transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--acid); }

.bto { background:transparent; border:1px solid var(--acid); color:var(--acid); padding:8px 14px; font-family:var(--fm); font-size:11px; letter-spacing:1px; cursor:pointer; transition:all .2s; border-radius:2px; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }
.bto:hover { background:var(--acid); color:#000; }
.bto.red { border-color:var(--red); color:var(--red); } .bto.red:hover { background:var(--red); color:#fff; }
.bto.blue { border-color:var(--blue); color:var(--blue); } .bto.blue:hover { background:var(--blue); color:#fff; }
.bto.org { border-color:var(--orange); color:var(--orange); } .bto.org:hover { background:var(--orange); color:#000; }
.bto.teal { border-color:var(--teal); color:var(--teal); } .bto.teal:hover { background:var(--teal); color:#000; }
.bto.pur { border-color:var(--purple); color:var(--purple); } .bto.pur:hover { background:var(--purple); color:#fff; }

.cta { background: var(--acid); color: #000; padding: 12px 24px; font-family: var(--fd); font-size: 14px; font-weight: 700; letter-spacing: 2px; border: none; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.cta:hover { background: #d4ff3d; transform: translateY(-1px); box-shadow: 0 4px 15px rgba(198, 241, 53, 0.3); }

/* PANELS & CARDS */
.panel { background: var(--surface); backdrop-filter: var(--glass); -webkit-backdrop-filter: var(--glass); border: 1px solid var(--border-bright); padding: 24px; border-radius: 4px; box-shadow: 0 8px 32px 0 rgba(0,0,0,0.37); transition: all 0.3s ease; }
.card { background: var(--surface); border: 1px solid var(--border-bright); padding: 32px; position: relative; overflow: hidden; transition: all .25s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.card:hover { border-color: var(--acid-dim); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.4); }

/* UTILS */
.acid { color: var(--acid); }
.orange { color: var(--orange); }
.strike { position: relative; display: inline-block; color: var(--muted); }
.strike::after { content: ''; position: absolute; left: -4px; right: -4px; top: 52%; height: 8px; background: var(--red); transform: rotate(-2deg); }

/* FOOTER */
footer { padding: 50px 0 40px; border-top: 1px solid var(--border); }
.foot-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; }
.foot-logo { font-family: var(--fd); font-size: 24px; letter-spacing: 2px; color: var(--acid); margin-bottom: 8px; }
.foot-tag { font-family: var(--fm); font-size: 10px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; }
.foot-links { display: flex; gap: 24px; flex-wrap: wrap; }
.foot-links a { font-family: var(--fm); font-size: 11px; color: var(--muted); text-decoration: none; letter-spacing: 1px; text-transform: uppercase; }
.foot-links a:hover { color: var(--acid); }
.copyright { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--border); font-family: var(--fm); font-size: 10px; color: var(--dim); letter-spacing: 1px; text-align: center; }

@media (max-width: 560px) {
  header { padding: 15px 0; }
  .logo { font-size: 24px; }
  .hero-h { font-size: 48px !important; }
  .hero-sub { font-size: 18px !important; }
}

/* HERO */
.hero { padding: var(--spacing-xl) 0; border-bottom:1px solid var(--border); position:relative; }
.hero-eyebrow { font-family:var(--fm); font-size:11px; color:var(--orange); text-transform:uppercase; letter-spacing:4px; margin-bottom: var(--spacing-md); display:flex; align-items:center; gap:10px; }
.hero-eyebrow .pulse { width:8px; height:8px; background:var(--orange); border-radius:50%; animation:pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.4;transform:scale(.8);} }
h1.hero-h { font-family:var(--fd); font-size:clamp(48px, 8vw, 110px); line-height:.85; letter-spacing:-2px; margin-bottom: var(--spacing-md); color:var(--text); }
h1.hero-h .acid { color:var(--acid); }
h1.hero-h .strike { position:relative; display:inline-block; color:var(--muted); }
h1.hero-h .strike::after { content:''; position:absolute; left:-4px; right:-4px; top:52%; height:8px; background:var(--red); transform:rotate(-2deg); }
.hero-sub { font-size:22px; line-height:1.7; color:#bbb; max-width:800px; margin-bottom: var(--spacing-lg); opacity: 0.9; }
.hero-sub strong { color:var(--text); font-weight:600; }
.hero-sub .acid { color:var(--acid); font-weight:600; }
.hero-cta { display:flex; gap:16px; flex-wrap:wrap; align-items:center; }
.hero-meta { font-family:var(--fm); font-size:11px; color:var(--muted); margin-top:24px; letter-spacing:1px; }
.hero-meta .dot { color:var(--dim); margin:0 10px; }

/* THESIS BLOCK */
.thesis { padding:80px 0; border-bottom:1px solid var(--border); }
.thesis-grid { display:grid; grid-template-columns:1fr 2fr; gap:60px; align-items:start; }
.thesis-label { font-family:var(--fm); font-size:11px; color:var(--orange); text-transform:uppercase; letter-spacing:3px; }
.thesis-label::before { content:'▸ '; color:var(--orange); }
.thesis-h { font-family:var(--fd); font-size:clamp(36px, 5vw, 64px); line-height:1; letter-spacing:1px; margin-top:14px; }
.thesis-h .acid { color:var(--acid); }
.thesis-body p { font-size:17px; line-height:1.7; color:#ccc; margin-bottom:20px; }
.thesis-body p strong { color:var(--text); }
.thesis-body p .acid { color:var(--acid); font-weight:600; }
.thesis-body p .orange { color:var(--orange); font-weight:600; }
.thesis-quote { margin-top:32px; padding:24px 28px; background:var(--surface); border-left:4px solid var(--acid); font-family:var(--fd); font-size:24px; letter-spacing:1px; line-height:1.2; }
.thesis-quote .by { display:block; margin-top:10px; font-family:var(--fm); font-size:10px; color:var(--muted); letter-spacing:2px; text-transform:uppercase; }

/* STEPS */
.steps { padding: var(--spacing-xl) 0; }
.section-eyebrow { font-family:var(--fm); font-size:11px; color:var(--muted); text-transform:uppercase; letter-spacing:4px; text-align:center; margin-bottom: var(--spacing-md); }
.section-h { font-family:var(--fd); font-size:clamp(44px, 7.5vw, 96px); line-height:.92; letter-spacing:-1px; text-align:center; margin-bottom: var(--spacing-xl); }
.section-h .acid { color:var(--acid); }
.section-h .orange { color:var(--orange); }
.step { display:grid; grid-template-columns:auto 1fr; gap:64px; padding: var(--spacing-lg) 0; border-bottom:1px solid var(--border); align-items:start; }
.step:last-child { border-bottom:none; }
.step-num { font-family:var(--fd); font-size:128px; line-height:0.8; color:var(--dim); min-width:160px; transition: color 0.3s ease; }
.step-1 .step-num { color:var(--acid); }
.step-2 .step-num { color:var(--orange); }
.step-3 .step-num { color:var(--purple); }
.step-tag { display:inline-block; font-family:var(--fm); font-size:10px; text-transform:uppercase; letter-spacing:2px; padding:5px 12px; border:1px solid var(--border-bright); color:var(--muted); margin-bottom:14px; }
.step-1 .step-tag { border-color:var(--acid-dim); color:var(--acid); }
.step-2 .step-tag { border-color:var(--orange-dim); color:var(--orange); }
.step-3 .step-tag { border-color:#7c3aed; color:var(--purple); }
.step-h { font-family:var(--fd); font-size:clamp(32px, 4.5vw, 56px); line-height:1; letter-spacing:1px; margin-bottom:18px; }
.step-h .accent { color:var(--acid); }
.step-2 .step-h .accent { color:var(--orange); }
.step-3 .step-h .accent { color:var(--purple); }
.step-meta { font-family:var(--fm); font-size:12px; color:var(--muted); margin-bottom:20px; letter-spacing:1px; }
.step-meta .price { color:var(--text); }
.step-meta .free { color:var(--acid); }
.step-body { font-size:17px; line-height:1.7; color:#bbb; margin-bottom:24px; }
.step-body strong { color:var(--text); }
.step-features { display:grid; grid-template-columns:repeat(3, 1fr); gap:14px; margin-bottom:28px; }
.step-features div { font-family:var(--fm); font-size:11px; color:var(--muted); padding:12px 14px; background:var(--surface); border:1px solid var(--border); }
.step-features div::before { content:'✓ '; color:var(--acid); font-weight:700; }
.step-2 .step-features div::before { color:var(--orange); }
.step-3 .step-features div::before { color:var(--purple); }
.step-cta { display:flex; gap:12px; flex-wrap:wrap; align-items:center; }
.step-btn { display:inline-block; padding:14px 24px; font-family:var(--fd); font-size:15px; letter-spacing:2px; text-decoration:none; border:none; cursor:pointer; transition:all .15s; }
.step-1 .step-btn { background:var(--acid); color:#000; }
.step-2 .step-btn { background:var(--orange); color:#000; }
.step-3 .step-btn { background:var(--purple); color:#fff; }
.step-link { font-family:var(--fm); font-size:11px; color:var(--muted); text-transform:uppercase; letter-spacing:2px; text-decoration:none; }
.step-link:hover { color:var(--text); }

/* VERTICALS */
.verticals { padding: var(--spacing-xl) 0; background:var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border); margin-top: var(--spacing-lg); }
.vert-intro { text-align:center; max-width:720px; margin:0 auto var(--spacing-lg); }
.vert-intro p { font-size:20px; color:#bbb; line-height:1.6; }
.vert-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:24px; }
.vert-card { background:var(--bg); border:1px solid var(--border-bright); padding:32px; position:relative; transition:all .3s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column; height: 100%; }
.vert-card::before { content:''; position:absolute; top:0; left:0; width:3px; height:100%; background:var(--border-bright); transition:background .2s; }
.vert-card:hover { border-color:var(--acid-dim); transform:translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.4); }
.vert-card:hover::before { background:var(--acid); }
.vert-icon { font-size:32px; margin-bottom:20px; }
.vert-name { font-family:var(--fd); font-size:26px; letter-spacing:1px; margin-bottom:12px; line-height: 1.1; }
.vert-name .new { display:inline-block; font-family:var(--fm); font-size:10px; background:var(--acid); color:#000; padding:3px 8px; letter-spacing:1px; margin-left:10px; vertical-align:middle; }
.vert-tag { font-family:var(--fm); font-size:10px; color:var(--orange); text-transform:uppercase; letter-spacing:2px; margin-bottom:16px; font-weight: 700; }
.vert-desc { font-size:15px; color:#aaa; line-height:1.6; margin-bottom:20px; flex-grow: 1; }
.vert-pitch { font-family:var(--fm); font-size:11px; color:var(--muted); padding-top:20px; border-top:1px solid var(--border); line-height:1.7; }
.vert-pitch strong { color:var(--acid); font-weight: 700; }

/* CLOSER */
.closer { padding:120px 0; text-align:center; }
.closer-h { font-family:var(--fd); font-size:clamp(56px, 9vw, 120px); line-height:.92; letter-spacing:-1px; margin-bottom:30px; }
.closer-h .acid { color:var(--acid); }
.closer-h .orange { color:var(--orange); }
.closer-sub { font-size:19px; color:#bbb; max-width:680px; margin:0 auto 50px; line-height:1.7; }
.closer-sub strong { color:var(--text); }
.closer-cta { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* MANIFESTO BAR */
.manifesto { padding:60px 0; background:var(--surface-2); border-top:1px solid var(--border-bright); border-bottom:1px solid var(--border-bright); text-align:center; }
.manifesto-text { font-family:var(--fd); font-size:clamp(28px, 4vw, 48px); line-height:1.1; letter-spacing:1px; color:var(--text); }
.manifesto-text .acid { color:var(--acid); }
