:root {
  --bg: #070b14;
  --panel: #0f172a;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --primary: #4f46e5;
  --primary-2: #7c3aed;
  --line: #1f2937;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: radial-gradient(circle at 20% 0%, #1f2a44 0%, var(--bg) 38%), var(--bg);
  color: var(--text);
  line-height: 1.6;
}

body.age-gate-open {
  overflow: hidden;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(7, 11, 20, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.age-gate.is-hidden {
  display: none;
}

.age-gate-card {
  width: min(560px, 100%);
  background: var(--panel);
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 16px;
  padding: 1.5rem;
}

.age-gate-kicker {
  margin: 0;
  color: #c4b5fd;
  font-weight: 600;
  font-size: 0.9rem;
}

.age-gate-card h2 {
  margin: 0.3rem 0 0.6rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.age-gate-card p {
  color: var(--muted);
  margin: 0;
}

.age-gate-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(7, 11, 20, 0.75);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.brand {
  text-decoration: none;
  color: white;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover,
.text-link:hover {
  color: white;
}

.hero {
  padding: 5rem 0 3rem;
}

.hero-grid {
  display: grid;
  gap: 2.2rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.pill {
  display: inline-flex;
  border: 1px solid rgba(79, 70, 229, 0.45);
  background: rgba(79, 70, 229, 0.16);
  color: #c4b5fd;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
}

.hero p {
  color: var(--muted);
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  text-decoration: none;
  color: white;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 600;
  padding: 0.72rem 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-sm {
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}

.hero-card {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 16px;
  overflow: hidden;
  background: var(--panel);
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.products {
  padding: 2rem 0 4rem;
}

.products h2,
.cta h2 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  margin-bottom: 0.5rem;
}

.section-copy {
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 1rem;
}

.product-card {
  background: var(--panel);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 14px;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.product-content {
  padding: 1rem;
}

.product-content h3 {
  margin: 0 0 0.4rem;
}

.product-content p {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-meta span {
  font-weight: 700;
}

.text-link {
  color: #c7d2fe;
  text-decoration: none;
  font-weight: 600;
}

.cta {
  padding: 0 0 4rem;
}

.cta-wrap {
  background: linear-gradient(130deg, #1d4ed8, #6d28d9);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cta .btn {
  background: white;
  color: #111827;
}

@media (max-width: 980px) {
  .hero-grid,
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-card {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
  }

  .age-gate-actions {
    flex-direction: column;
  }

  .hero-grid,
  .product-grid,
  .cta-wrap {
    grid-template-columns: 1fr;
  }

  .hero-card {
    grid-column: span 1;
  }

  .cta-wrap {
    display: grid;
    text-align: left;
  }
}
