:root {
  --bg: #0e0d0b;
  --bg-2: #16140f;
  --panel: #1c1a15;
  --panel-2: #232019;
  --line: #34302690;
  --text: #ece7dd;
  --muted: #9c9484;
  --accent: #ce422b;        /* Rust red-orange */
  --accent-2: #e08a3c;      /* amber */
  --radius: 12px;
  --wrap: 1080px;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: radial-gradient(1200px 600px at 50% -200px, #241f18 0%, var(--bg) 60%);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.accent { color: var(--accent); }
.muted { color: var(--muted); }
.small { font-size: .85rem; }
code {
  background: #00000050; border: 1px solid var(--line);
  padding: .1em .4em; border-radius: 6px; font-size: .9em;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: #0e0d0bcc; backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 62px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: .5px; }
.brand-mark { color: var(--accent-2); font-size: 1.3rem; }
.brand-text { font-size: 1.1rem; }
.nav { display: flex; gap: 22px; margin-left: 8px; }
.nav a { color: var(--muted); font-weight: 600; transition: color .15s; }
.nav a:hover { color: var(--text); }
.connect-pill {
  margin-left: auto; display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff; font-weight: 700;
  padding: 8px 16px; border-radius: 999px; font-size: .9rem;
}
.connect-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #7CFC00; box-shadow: 0 0 8px #7CFC00; }

/* Hero */
.hero { padding: 84px 0 40px; border-bottom: 1px solid var(--line); }
.eyebrow { text-transform: uppercase; letter-spacing: 2px; font-size: .78rem; color: var(--accent-2); font-weight: 700; margin: 0 0 10px; }
.hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); line-height: 1.02; margin: 0 0 14px; font-weight: 800; }
.lede { font-size: 1.15rem; color: var(--muted); max-width: 620px; }
.cta-row { display: flex; gap: 14px; margin: 26px 0 14px; flex-wrap: wrap; }
.connect-hint { color: var(--muted); font-size: .95rem; }

/* Buttons */
.btn { display: inline-block; padding: 12px 22px; border-radius: 10px; font-weight: 700; cursor: pointer; transition: transform .08s, background .15s; border: 1px solid transparent; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #e04a30; }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent-2); }
.btn-block { display: block; text-align: center; width: 100%; margin-top: 14px; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 36px 20px; }
.stat { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; text-align: center; }
.stat-num { display: block; font-size: 1.8rem; font-weight: 800; color: var(--accent-2); }
.stat-label { color: var(--muted); font-size: .85rem; text-transform: uppercase; letter-spacing: 1px; }

/* Featured */
.featured { padding: 20px 20px 60px; }
.featured-card {
  display: flex; align-items: center; gap: 30px; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); border-radius: 16px; padding: 34px;
}
.featured-body { flex: 1 1 320px; }
.featured-body h2 { margin: 6px 0 6px; font-size: 1.8rem; }
.featured-price { text-align: center; }
.price { font-size: 2rem; font-weight: 800; color: var(--text); }

/* Generic page */
.page { padding: 56px 20px 80px; }
.page.narrow, .narrow { max-width: 680px; }
.page h1 { font-size: clamp(2rem, 5vw, 3rem); margin: 6px 0 10px; }
.back { color: var(--muted); display: inline-block; margin-bottom: 14px; }

/* Lists */
.tick-list { list-style: none; padding: 0; margin: 16px 0; display: grid; gap: 8px; }
.tick-list li { padding-left: 26px; position: relative; color: var(--text); }
.tick-list li::before { content: "▸"; color: var(--accent); position: absolute; left: 4px; }
.rules-list { padding-left: 20px; display: grid; gap: 14px; margin: 22px 0; }
.rules-list li { padding-left: 6px; }

/* Kits */
.kit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; margin: 30px 0; }
.kit-card { position: relative; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; }
.kit-featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 14px 40px -20px var(--accent); }
.kit-card h2 { margin: 0 0 4px; font-size: 1.4rem; }
.kit-price { margin: 12px 0; }
.kit-meta { font-size: .85rem; margin-top: auto; padding-top: 12px; }
.ribbon { position: absolute; top: 14px; right: -1px; background: var(--accent); color: #fff; font-size: .72rem; font-weight: 700; padding: 4px 12px; border-radius: 6px 0 0 6px; text-transform: uppercase; letter-spacing: 1px; }

/* Callout */
.callout { background: var(--panel-2); border: 1px solid var(--line); border-left: 3px solid var(--accent-2); border-radius: 10px; padding: 22px; margin: 30px 0; }
.callout h3 { margin: 0 0 6px; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: 28px 0; margin-top: 40px; color: var(--muted); font-size: .9rem; }
.site-footer p { margin: 4px 0; }

@media (max-width: 640px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .nav { gap: 14px; }
}
