:root {
  --bg: #050505;
  --bg-alt: #0b0b0b;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.06);
  --text: #f7f4f1;
  --muted: #b4aaa7;
  --line: rgba(255, 255, 255, 0.09);
  --red: #b50a0a;
  --red-2: #d61a1a;
  --red-soft: rgba(214, 26, 26, 0.14);
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  --radius: 28px;
  --radius-sm: 20px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(181, 10, 10, 0.22), transparent 34%),
    linear-gradient(180deg, #090909 0%, #040404 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.section { padding: 5.5rem 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.compact-top { padding-top: 3rem; }
.narrow { max-width: 760px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.72);
  border-bottom: 1px solid rgba(181, 10, 10, 0.22);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0; }
.brand { display: flex; align-items: center; gap: 0.9rem; }
.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  border: 1px solid rgba(181, 10, 10, 0.35);
  background: #000;
  object-fit: cover;
}
.brand-name { color: #e14a4a; text-transform: uppercase; letter-spacing: 0.35em; font-size: 0.82rem; }
.brand-sub { color: #a79a95; font-size: 0.78rem; }
.nav { display: flex; gap: 1.35rem; color: #d1c9c6; font-size: 0.96rem; }
.nav a:hover { color: #fff; }
.nav-cta { white-space: nowrap; }

.hero { padding: 5.2rem 0 4rem; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: center; }
.hero h1, .subpage-title { font-size: clamp(2.45rem, 6vw, 4.6rem); line-height: 1.03; margin: 0.25rem 0 1rem; }
.lead, .section-note, .card p, .large-card p, .cta-card p, .buy-highlight p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.03rem;
}
.eyebrow {
  color: #e14a4a;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.78rem;
}
.eyebrow.small { font-size: 0.7rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-actions.center { justify-content: center; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  padding: 0.95rem 1.3rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
}
.button-solid {
  background: linear-gradient(180deg, var(--red-2), var(--red));
  color: white;
  box-shadow: 0 14px 30px rgba(181, 10, 10, 0.24);
}
.button-solid:hover { filter: brightness(1.06); transform: translateY(-1px); }
.button-outline { border-color: rgba(255,255,255,0.18); color: #f2ece8; background: rgba(255,255,255,0.02); }
.button-outline:hover { border-color: rgba(225, 74, 74, 0.55); }
.full-width { width: 100%; }

.panel, .card, .cta-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.stack-panel { padding: 1.25rem; }
.glow-panel {
  padding: 1.35rem;
  background: linear-gradient(180deg, rgba(181, 10, 10, 0.16), rgba(255,255,255,0.02));
}
.panel-label { color: #f0d8d8; text-transform: uppercase; letter-spacing: 0.28em; font-size: 0.75rem; margin-bottom: 1rem; }
.chip-list { display: grid; gap: 0.75rem; }
.chip {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  color: #e6dfdc;
}
.stats-grid, .feature-grid, .product-grid { display: grid; gap: 1rem; }
.stats-grid { grid-template-columns: repeat(2, 1fr); margin-top: 1rem; }
.stat-card {
  padding: 1.25rem;
  border-radius: 22px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--line);
}
.stat-card strong { display: block; font-size: 1.15rem; margin-bottom: 0.35rem; }
.stat-card span { color: var(--muted); font-size: 0.92rem; }

.two-col { display: grid; grid-template-columns: 0.84fr 1.16fr; gap: 1.5rem; align-items: start; }
.feature-grid { grid-template-columns: repeat(3, 1fr); }
.card { padding: 1.5rem; }
.card h3, .card h2, .buy-highlight h2, .cta-card h2, .large-card h2 { margin-top: 0.35rem; margin-bottom: 0.7rem; }
.section-head { display: flex; justify-content: space-between; gap: 1.5rem; align-items: end; margin-bottom: 1.5rem; }
.section-head > * { flex: 1; }
.product-grid { grid-template-columns: repeat(3, 1fr); }
.product-card { display: flex; flex-direction: column; min-height: 100%; }
.tall-card { min-height: 420px; }
.price-tag {
  margin-top: auto;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(181, 10, 10, 0.18);
  border: 1px solid rgba(181, 10, 10, 0.28);
  color: #ffd8d8;
}
.buy-highlight { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 1.5rem; align-items: start; }
.ordered-list, .bullet-list { color: var(--muted); line-height: 1.8; padding-left: 1.25rem; }
.purchase-support { margin-top: 1.5rem; }
.large-card { padding: 2rem; }
.stack-list { display: grid; gap: 1rem; }
.small-card { font-size: 1.03rem; }
.cta-card {
  padding: 2.25rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(181,10,10,0.18), rgba(255,255,255,0.02));
}
.redeem-card { text-align: left; }
.redeem-form { display: grid; gap: 1rem; margin-top: 1.5rem; }
.redeem-form label { display: grid; gap: 0.45rem; }
.redeem-form span { color: #f0d8d8; font-size: 0.94rem; }
.redeem-form input {
  background: rgba(255,255,255,0.04);
  color: white;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 0.95rem 1rem;
}
.microcopy { color: #978b87; font-size: 0.88rem; line-height: 1.65; margin-top: 0.9rem; text-align: center; }
.microcopy.left { text-align: left; }
.site-footer { padding: 1.4rem 0 2.4rem; border-top: 1px solid var(--line); }
.footer-wrap { display: flex; justify-content: space-between; gap: 1rem; color: #968984; font-size: 0.92rem; }

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .buy-highlight,
  .section-head,
  .product-grid,
  .feature-grid { grid-template-columns: 1fr; }
  .section-head { align-items: start; }
}

@media (max-width: 760px) {
  .nav { display: none; }
  .nav-wrap { flex-wrap: wrap; }
  .brand-logo { width: 48px; height: 48px; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-wrap { flex-direction: column; }
  .hero { padding-top: 4rem; }
  .section { padding: 4rem 0; }
}
