:root {
  --bg: #050507;
  --surface: #111216;
  --text: #f5f5f5;
  --muted: #a0a0a0;
  --accent: #f97316;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #18181b 0, #050507 55%);
  color: var(--text);
}

/* ── Page wrapper ── */
.page {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

/* ── Hero ── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3.5rem 0 3rem;
}

.hero h1 {
  font-family: 'Metal Mania', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.hero p {
  font-size: 1.05rem;
  max-width: 38rem;
  color: var(--muted);
  margin: 0 0 1.75rem;
}

/* ── Product lineup ── */
.lineup {
  padding: 3rem 0;
  border-top: 1px solid rgba(250, 250, 250, 0.06);
}

.lineup h2 {
  font-family: 'Metal Mania', serif;
  font-size: 1.6rem;
  margin: 0 0 2rem;
  text-align: center;
  letter-spacing: 0.05em;
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.875rem;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem 0.75rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(17, 18, 22, 0.7);
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--card-accent);
  box-shadow: 0 0 28px color-mix(in srgb, var(--card-accent) 30%, transparent);
}

.product-sticker {
  width: 100%;
  max-width: 30px;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  cursor: zoom-in;
  transition: filter 150ms ease, transform 150ms ease;
}

.product-card:hover .product-sticker {
  filter: drop-shadow(0 0 14px var(--card-accent));
  transform: scale(1.08);
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  animation: lb-in 150ms ease;
}

.lightbox[hidden] {
  display: none;
}

@keyframes lb-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox img {
  max-width: min(480px, 90vw);
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 120ms ease;
}

.lightbox-close:hover {
  color: var(--text);
}

.product-card h3 {
  font-family: 'Metal Mania', serif;
  font-size: 1rem;
  margin: 0.75rem 0 0.3rem;
  letter-spacing: 0.04em;
  color: var(--text);
}

.product-tag {
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0 0 0.25rem;
  line-height: 1.4;
}

.product-stat {
  font-size: 0.68rem;
  color: rgba(160, 160, 160, 0.6);
  margin: 0;
  line-height: 1.4;
}

/* ── Content sections ── */
.section {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(250, 250, 250, 0.06);
}

.section h2 {
  font-family: 'Metal Mania', serif;
  font-size: 1.4rem;
  margin: 0 0 0.75rem;
  letter-spacing: 0.04em;
}

.section p {
  color: var(--muted);
  max-width: 40rem;
  margin: 0;
}

.section p + p {
  margin-top: 0.85rem;
}

/* ── Signup ── */
.signup-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.email-input {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(15, 15, 20, 0.9);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  min-width: min(100%, 260px);
  outline: none;
  transition: border-color 120ms ease;
}

.email-input:focus {
  border-color: rgba(249, 115, 22, 0.6);
}

.email-input::placeholder {
  color: rgba(209, 213, 219, 0.5);
}

/* ── Buttons ── */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #000;
  font-family: inherit;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
  background: #fb923c;
}

.cta.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(249, 115, 22, 0.7);
  box-shadow: none;
}

.cta.secondary:hover {
  background: rgba(249, 115, 22, 0.12);
  transform: none;
  box-shadow: none;
}

/* ── Footer ── */
.footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 250, 250, 0.06);
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}
