:root {
  --bg: #0a0a0f;
  --bg-2: #11111a;
  --fg: #e8e8f0;
  --fg-dim: #8a8aa0;
  --accent: #00ff9d;
  --accent-2: #ff007a;
  --line: #1a1a26;
  --warn: #ffb800;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'IBM Plex Mono', 'JetBrains Mono', 'Courier New', monospace;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

#bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  opacity: 0.3;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.2em;
  color: var(--fg);
}

.logo.small { font-size: 14px; }

nav { display: flex; gap: 32px; }

nav a {
  color: var(--fg-dim);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

nav a:hover { color: var(--accent); }

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero {
  padding: 120px 0 100px;
  text-align: center;
}

h1 {
  font-size: clamp(40px, 7vw, 84px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.glitch {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.lede {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--fg);
  margin-bottom: 16px;
  font-weight: 500;
}

.sub {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--fg-dim);
  max-width: 640px;
  margin: 0 auto 40px;
}

.cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid var(--line);
  border-radius: 4px;
  text-decoration: none;
  color: var(--fg);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  background: var(--bg-2);
}

.btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.btn.primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.btn.primary:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: var(--bg);
}

.btn.ghost {
  background: transparent;
}

.btn.small { padding: 10px 18px; font-size: 13px; }

.btn.large { padding: 18px 36px; font-size: 17px; }

.micro {
  font-size: 13px;
  color: var(--fg-dim);
}

.thesis {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote {
  font-size: clamp(24px, 3vw, 36px);
  font-style: italic;
  text-align: center;
  color: var(--fg);
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.4;
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.proof-item {
  text-align: center;
}

.num {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.lbl {
  font-size: 14px;
  color: var(--fg-dim);
  max-width: 200px;
  margin: 0 auto;
}

.why, .pricing, .manifesto-preview, .cta-foot {
  padding: 100px 0;
}

h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.why-grid > div {
  padding: 32px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 0.2s;
}

.why-grid > div:hover { border-color: var(--accent); }

h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--accent);
}

.why-grid p { color: var(--fg-dim); font-size: 15px; }

.pricing-sub {
  text-align: center;
  color: var(--fg-dim);
  margin-bottom: 60px;
}

.tier-heading {
  text-align: center;
  font-size: 22px;
  margin: 60px 0 32px;
  color: var(--fg);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.tier-heading:first-of-type { margin-top: 0; }

.tiers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.tiers-narrow { grid-template-columns: repeat(2, 1fr); max-width: 700px; margin-left: auto; margin-right: auto; }

.tier {
  padding: 28px 20px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
}

.tier:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.tier.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(0,255,157,0.05), var(--bg-2));
}

.tier-name {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-dim);
  margin-bottom: 12px;
}

.tier-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--fg);
}

.tier-period {
  font-size: 13px;
  color: var(--fg-dim);
  margin-bottom: 20px;
}

.tier ul {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}

.tier li {
  font-size: 13px;
  color: var(--fg-dim);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.tier li:before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.tier .btn { width: 100%; text-align: center; }

.manifesto-preview ol {
  max-width: 760px;
  margin: 0 auto;
  padding-left: 20px;
}

.manifesto-preview li {
  margin-bottom: 24px;
  color: var(--fg-dim);
  padding-left: 12px;
}

.manifesto-preview li strong { color: var(--fg); }

.manifesto-preview .btn {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
}

.cta-foot {
  text-align: center;
  padding: 120px 0;
}

.cta-foot h2 { margin-bottom: 32px; }

.cta-foot .micro { margin-top: 16px; }

footer {
  border-top: 1px solid var(--line);
  padding: 60px 40px 40px;
  background: var(--bg-2);
}

.foot-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

footer h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg);
  margin-bottom: 16px;
}

footer a {
  display: block;
  color: var(--fg-dim);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}

footer a:hover { color: var(--accent); }

.copyright {
  text-align: center;
  font-size: 12px;
  color: var(--fg-dim);
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

@media (max-width: 900px) {
  header { padding: 16px 20px; }
  nav { gap: 16px; }
  nav a { font-size: 13px; }
  main { padding: 0 20px; }
  .hero { padding: 60px 0; }
  .proof, .why-grid, .tiers { grid-template-columns: 1fr; }
  .tiers-narrow { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
