/* ── Variables ── */
:root {
  --black:   #0a0a0a;
  --dark:    #111111;
  --card-bg: #181818;
  --red:     #cc2222;
  --red-hot: #e03030;
  --white:   #f0f0f0;
  --muted:   #888888;
  --radius:  10px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background:
    radial-gradient(ellipse at center top, rgba(180, 20, 20, 0.18) 0%, transparent 65%),
    var(--black);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.logo {
  width: min(320px, 80vw);
  height: auto;
  user-select: none;
}

.tagline {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.sub {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ── Products ── */
.products {
  padding: 5rem 1.5rem 6rem;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.section-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border: 1px solid #2a2a2a;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}

.product-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
}

.product-img-wrap {
  background: #0f0f0f;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  min-height: 180px;
}

.product-img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.product-info {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.product-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.product-info p {
  font-size: 0.9rem;
  color: var(--muted);
  flex: 1;
}

.product-link {
  font-size: 0.85rem;
  color: var(--red-hot);
  font-weight: 600;
  margin-top: 0.5rem;
  letter-spacing: 0.03em;
}

/* ── Footer ── */
footer {
  margin-top: auto;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid #1e1e1e;
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .products { padding: 3rem 1rem 4rem; }
}
