:root {
  --bg: #0a0a0b;
  --panel: #121216;
  --border: #2a2a32;
  --text: #e8e8ec;
  --muted: #8b8b96;
  --amber: #f5a623;
  --cyan: #3ecfff;
  --font: "IBM Plex Sans", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.5;
}
.landing { max-width: 920px; margin: 0 auto; padding: 1.25rem 1.25rem 3rem; }
.l-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2.5rem;
}
.brand { display: flex; gap: 0.75rem; align-items: center; }
.brand-mark {
  width: 2rem; height: 2rem; border-radius: 6px;
  background: linear-gradient(135deg, var(--amber), #ff6b5a);
}
.brand-name { margin: 0; font-weight: 700; letter-spacing: 0.02em; }
.brand-tag { margin: 0; font-size: 0.75rem; color: var(--muted); }
.pill {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.06em;
  border: 1px solid var(--amber); color: var(--amber);
  padding: 0.3rem 0.65rem; border-radius: 999px;
}
.hero { margin-bottom: 2.5rem; }
.eyebrow {
  font-family: var(--mono); font-size: 0.75rem; color: var(--cyan);
  text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 0.75rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem); line-height: 1.1;
  margin: 0 0 1rem; font-weight: 700;
}
.lede { color: #b0b0ba; max-width: 38rem; margin: 0 0 1.5rem; font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.25rem; border-radius: 8px; font-weight: 600;
  text-decoration: none; font-size: 0.95rem; border: 1px solid transparent;
}
.btn.primary { background: var(--amber); color: #111; }
.btn.primary:hover { filter: brightness(1.05); }
.btn.ghost { border-color: #3a3a44; color: var(--text); }
.btn.ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.btn.lg { padding: 0.9rem 1.6rem; font-size: 1.05rem; }
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem;
  margin-bottom: 2.75rem;
}
.stat {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: 10px; padding: 1rem;
}
.stat-n {
  display: block; font-family: var(--mono); font-size: 1.35rem;
  font-weight: 600; color: var(--cyan);
}
.stat-l { font-size: 0.75rem; color: var(--muted); }
.how, .packs, .cta-band { margin-bottom: 2.5rem; }
h2 { font-size: 1.25rem; margin: 0 0 1rem; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.85rem; }
.steps li {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--panel); border: 1px solid var(--border);
  border-radius: 10px; padding: 1rem 1.1rem;
}
.steps .n {
  flex: 0 0 1.75rem; height: 1.75rem; border-radius: 6px;
  background: #1a1a22; color: var(--amber); font-family: var(--mono);
  font-weight: 600; display: grid; place-items: center; font-size: 0.85rem;
}
.steps h3 { margin: 0 0 0.25rem; font-size: 1rem; }
.steps p { margin: 0; color: #b0b0ba; font-size: 0.9rem; }
code {
  font-family: var(--mono); font-size: 0.85em;
  background: #1a1a22; padding: 0.1em 0.35em; border-radius: 4px;
}
.pack-chips {
  list-style: none; margin: 0 0 0.75rem; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.pack-chips li {
  font-family: var(--mono); font-size: 0.75rem;
  border: 1px solid var(--border); border-radius: 999px;
  padding: 0.35rem 0.7rem; color: #c8c8d0;
}
.fine { color: var(--muted); font-size: 0.85rem; margin: 0; }
.cta-band {
  text-align: center; padding: 2rem 1.25rem;
  border: 1px dashed #3a3a44; border-radius: 12px;
  background: #0e0e12;
}
.cta-band h2 { margin-bottom: 1rem; }
.cta-band .btn { margin-bottom: 0.75rem; }
.l-foot {
  border-top: 1px solid var(--border); padding-top: 1.25rem;
  color: var(--muted); font-size: 0.75rem;
}
.l-foot p { margin: 0 0 0.35rem; }
@media (max-width: 700px) {
  .stats { grid-template-columns: 1fr 1fr; }
}

.ad-slot {
  border: 1px dashed #3a3a44; border-radius: 10px; padding: 0.85rem 1rem;
  margin: 0 0 1.5rem; background: #0e0e12; text-align: center;
}
.ad-label {
  font-family: var(--mono); font-size: 0.65rem; color: #8b8b96;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.ad-placeholder { margin: 0.35rem 0 0; color: #6a6a74; font-size: 0.85rem; }
