:root {
  --bg: #000;
  --panel: #080808;
  --text: #e8e8e8;
  --muted: #a1a1aa;
  --accent: #02fe01;
  --ember: #ff6a1a;
  --ice: #9bdcf5;
  --border: rgb(255 255 255 / 0.1);
  --radius: 12px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}
.hero, main, footer { max-width: 1100px; margin: 0 auto; padding: 2rem 1.25rem; }
.eyebrow { letter-spacing: 0.14em; font-size: 0.75rem; color: var(--ice); margin: 0 0 0.75rem; }
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); line-height: 1.15; margin: 0 0 0.75rem; }
.lede { color: var(--muted); max-width: 40rem; }
.cta-row { display: flex; gap: 0.75rem; flex-wrap: wrap; margin: 1.5rem 0; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.7rem 1.2rem; border-radius: 999px; text-decoration: none; font-weight: 600;
  border: 1px solid var(--border);
}
.btn.primary { background: var(--accent); color: #000; box-shadow: 0 0 14px rgb(2 254 1 / 0.25); }
.btn.secondary { background: transparent; color: var(--text); }
.kit-strip { display: flex; align-items: center; gap: 0.5rem; margin-top: 1.25rem; }
.swatch { width: 1rem; height: 1rem; border-radius: 999px; border: 1px solid var(--border); }
.swatch.accent { background: var(--accent); }
.swatch.ember { background: var(--ember); }
.swatch.ice { background: var(--ice); }
.kit-label { font-size: 0.75rem; color: var(--muted); margin-left: 0.35rem; }
section { margin: 2.5rem 0; }
h2 { font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ice); }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.card {
  display: block; background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem; text-decoration: none; color: inherit;
  box-shadow: 0 8px 32px rgb(0 0 0 / 0.45);
}
.card:hover { border-color: rgb(2 254 1 / 0.35); }
.shot {
  aspect-ratio: 16/9; border-radius: 8px; margin-bottom: 0.75rem;
  background: linear-gradient(145deg, #0b0f17, #05060a 60%, #080808);
  border: 1px solid var(--border);
}
h3 { margin: 0 0 0.35rem; font-size: 1.05rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.92rem; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.85em; color: var(--ice); }
.note { color: var(--muted); font-size: 0.85rem; }
footer { border-top: 1px solid var(--border); color: var(--muted); font-size: 0.85rem; }
@media (prefers-reduced-motion: reduce) {
  .btn.primary { box-shadow: none; }
}
