:root {
  --bg: #05070d;
  --bg-elevated: #0a101c;
  --bg-card: #0b1220;
  --line: rgba(30, 144, 255, 0.45);
  --line-strong: #1e90ff;
  --blue: #1e90ff;
  --blue-bright: #3aa0ff;
  --blue-glow: rgba(30, 144, 255, 0.35);
  --gold: #d4a017;
  --gold-bg: rgba(212, 160, 23, 0.15);
  --text: #f5f8ff;
  --muted: #9aa6bd;
  --white: #ffffff;
  --radius: 6px;
  --shadow-glow: 0 0 18px rgba(30, 144, 255, 0.25);
  --font-display: "Orbitron", sans-serif;
  --font-body: "Rajdhani", sans-serif;
  --header-h: 78px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(30, 144, 255, 0.12), transparent 60%),
    radial-gradient(900px 400px at 90% 0%, rgba(30, 144, 255, 0.08), transparent 55%),
    linear-gradient(180deg, #070b14 0%, var(--bg) 40%, #04060a 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(5, 7, 13, 0.88);
  border-bottom: 1px solid rgba(30, 144, 255, 0.25);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.brand-logo-footer {
  height: 44px;
  max-width: 190px;
}

.brand-mark {
  color: var(--blue-bright);
  filter: drop-shadow(0 0 8px var(--blue-glow));
  display: grid;
  place-items: center;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--blue-bright);
}

.brand-text small {
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  color: var(--white);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  flex: 1;
}

.main-nav > a,
.nav-dropdown > a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.55rem 0.7rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.main-nav > a:hover,
.nav-dropdown > a:hover,
.main-nav > a.is-active,
.nav-dropdown.is-active > a {
  color: var(--white);
}

.nav-dropdown {
  position: relative;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.25rem;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  vertical-align: middle;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  min-width: 180px;
  padding: 0.4rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-glow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.18s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.55rem 0.75rem;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0.02em;
  border-radius: 4px;
}

.dropdown-menu a:hover {
  background: rgba(30, 144, 255, 0.12);
  color: var(--white);
}

.header-aside {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.made-in-usa {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.flag {
  display: inline-flex;
  width: 23px;
  height: 12px;
  border-radius: 1px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.flag svg {
  display: block;
  width: 100%;
  height: 100%;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: var(--radius);
  padding: 0;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--blue-bright);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.78rem;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 14px var(--blue-glow);
}

.btn-primary:hover {
  background: var(--blue-bright);
  box-shadow: 0 0 20px rgba(30, 144, 255, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--blue-bright);
  border-color: var(--line-strong);
}

.btn-outline:hover {
  background: rgba(30, 144, 255, 0.12);
  box-shadow: var(--shadow-glow);
}

/* Champions hero */
.champions-hero {
  position: relative;
  height: min(72vh, 620px);
  min-height: 420px;
  overflow: hidden;
  border-bottom: 1px solid rgba(30, 144, 255, 0.3);
}

.champions-slider {
  position: absolute;
  inset: 0;
}

.champion-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.champion-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.champion-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.04);
  animation: none;
}

.champion-slide.is-active img {
  animation: kenburns 5s ease-out forwards;
}

.champion-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 13, 0.92) 0%, rgba(5, 7, 13, 0.55) 48%, rgba(5, 7, 13, 0.25) 100%),
    linear-gradient(0deg, rgba(5, 7, 13, 0.75), transparent 45%);
  display: flex;
  align-items: flex-end;
  padding: 3rem 0 2.5rem;
  z-index: 2;
}

.champion-copy {
  max-width: 640px;
}

.champion-kicker {
  margin: 0 0 0.55rem;
  color: var(--blue-bright);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.champion-copy h1 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.55);
}

.champion-copy p {
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 36ch;
}

.champion-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.45rem;
}

.champion-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.35);
}

.champion-dots button.is-active {
  background: var(--blue-bright);
  box-shadow: 0 0 10px var(--blue-glow);
}

@keyframes kenburns {
  from { transform: scale(1.04); }
  to { transform: scale(1.1); }
}

/* Hero */
.hero {
  position: relative;
  padding: 2.5rem 0 2rem;
  overflow: hidden;
}

.hero-compact {
  padding-top: 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
  align-items: stretch;
}

.hero-side-single {
  display: block;
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-copy h1 .accent {
  color: var(--blue-bright);
  text-shadow: 0 0 18px var(--blue-glow);
}

.hero-copy p {
  color: var(--muted);
  max-width: 36ch;
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
}

.hero-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-badge .icon {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue-bright);
  flex-shrink: 0;
  box-shadow: inset 0 0 10px rgba(30, 144, 255, 0.15);
}

.hero-visual {
  position: relative;
  min-height: 320px;
  border: 1px solid rgba(30, 144, 255, 0.2);
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 40%, rgba(30, 144, 255, 0.18), transparent 55%),
    linear-gradient(160deg, #0c1526, #070b14 70%);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 144, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 144, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
}

.hero-stage {
  position: relative;
  z-index: 1;
  width: min(92%, 420px);
  animation: floatY 5.5s ease-in-out infinite;
}

.hero-stage img {
  width: 100%;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.55));
}

.hero-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 2;
}

.hero-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.hero-dots span.is-active {
  background: var(--white);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.panel {
  background: rgba(10, 16, 28, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem;
  box-shadow: var(--shadow-glow);
}

.panel h2 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--blue-bright);
  text-transform: uppercase;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.feature-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0.65rem;
  align-items: start;
}

.feature-item .icon {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue-bright);
  font-size: 0.75rem;
  font-weight: 700;
}

.feature-item strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.feature-item span {
  color: var(--muted);
  font-size: 0.88rem;
}

/* Products section */
.section {
  padding: 2.25rem 0 3rem;
}

.section-head {
  text-align: center;
  margin-bottom: 1.75rem;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-head .underline {
  width: 120px;
  height: 2px;
  margin: 0.75rem auto 0;
  background: linear-gradient(90deg, transparent, var(--blue-bright), transparent);
  box-shadow: 0 0 12px var(--blue-glow);
}

.layout-with-side {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 1.25rem;
  align-items: start;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
  border-color: var(--blue-bright);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}

.product-card .product-index {
  color: var(--blue-bright);
}

.product-card .product-card-btn {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 14px var(--blue-glow);
}

.product-card .product-card-btn:hover {
  background: var(--blue-bright);
  border-color: var(--blue-bright);
}

.product-card-body {
  padding: 1rem 1rem 0.5rem;
  flex: 1;
}

.product-card-title {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--white);
}

.product-index {
  color: var(--blue-bright);
}

.product-sci {
  margin: 0 0 0.65rem;
  color: var(--muted);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.dosage-badge {
  display: inline-block;
  padding: 0.18rem 0.5rem;
  border: 1px solid rgba(212, 160, 23, 0.55);
  background: var(--gold-bg);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 3px;
}

.volume-text {
  color: var(--muted);
  font-size: 0.85rem;
}

.product-thumb {
  height: 130px;
  display: grid;
  place-items: center;
  margin-bottom: 0.5rem;
}

.product-thumb img {
  max-height: 120px;
  width: auto;
}

.product-thumb-pack {
  height: 180px;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(30, 144, 255, 0.2);
}

.product-thumb-pack img {
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: radial-gradient(circle at 50% 40%, rgba(30, 144, 255, 0.12), #000 70%);
}

.product-card-btn {
  width: 100%;
  border-radius: 0;
  padding: 0.75rem;
  font-size: 0.82rem;
}

/* Page banners */
.page-banner {
  padding: 2.5rem 0 1.5rem;
  border-bottom: 1px solid rgba(30, 144, 255, 0.2);
  background: linear-gradient(180deg, rgba(30, 144, 255, 0.08), transparent);
}

.page-banner h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-banner p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  max-width: 60ch;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.filter-chip {
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.filter-chip.is-active,
.filter-chip:hover {
  color: var(--white);
  border-color: var(--blue-bright);
  background: rgba(30, 144, 255, 0.12);
}

/* ========== Product detail — framed classic (BioGen) ========== */
.pd-classic {
  padding-top: 1.5rem;
}

.pd-top {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

.pd-photo-frame {
  border: 1px solid rgba(0, 163, 255, 0.55);
  border-radius: 10px;
  background: #000;
  padding: 0.75rem;
  box-shadow: 0 0 18px rgba(0, 163, 255, 0.28);
  min-height: 360px;
  display: grid;
  place-items: center;
}

.pd-photo-frame img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: contain;
  border-radius: 6px;
}

.pd-summary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pd-sci-line {
  margin: 0;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1.05rem;
}

.pd-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
}

.pd-snap {
  border: 1px solid rgba(0, 163, 255, 0.45);
  border-radius: 6px;
  background: rgba(8, 14, 24, 0.85);
  padding: 0.75rem 0.55rem;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 163, 255, 0.12);
  min-height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.pd-snap strong {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00a3ff;
  font-weight: 700;
}

.pd-snap span {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.25;
}

.pd-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pd-tag {
  border: 1px solid rgba(0, 163, 255, 0.55);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  color: #7ec8ff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(0, 163, 255, 0.06);
}

.pd-warn-box {
  border: 1px solid rgba(0, 163, 255, 0.5);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  text-align: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  background: rgba(0, 163, 255, 0.05);
  box-shadow: 0 0 12px rgba(0, 163, 255, 0.15);
}

.pd-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.pd-frame {
  border: 1px solid rgba(0, 163, 255, 0.5);
  border-radius: 8px;
  background: rgba(6, 10, 18, 0.92);
  padding: 1.25rem 1.35rem 1.4rem;
  box-shadow: 0 0 16px rgba(0, 163, 255, 0.18);
}

.pd-frame-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00a3ff;
}

.pd-frame-title-sm {
  font-size: 0.85rem;
  margin-bottom: 0.65rem;
}

.pd-spec-table {
  display: flex;
  flex-direction: column;
}

.pd-spec-line {
  display: grid;
  grid-template-columns: minmax(140px, 190px) 1fr;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(0, 163, 255, 0.18);
  align-items: baseline;
}

.pd-spec-line:last-child {
  border-bottom: 0;
}

.pd-spec-k {
  color: #c5d0e0;
  font-weight: 700;
  font-size: 0.98rem;
}

.pd-spec-v {
  color: #fff;
  font-weight: 500;
  font-size: 0.98rem;
  line-height: 1.4;
}

.pd-desc-lead {
  margin: 0 0 0.85rem;
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
}

.pd-desc-text {
  color: #aab6ca;
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.pd-desc-list {
  margin: 0;
  padding-left: 1.15rem;
  color: #aab6ca;
  font-size: 1rem;
  line-height: 1.7;
}

.pd-desc-list li {
  margin-bottom: 0.4rem;
}

.pd-desc-list strong {
  color: #fff;
}

.pd-storage-block {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 163, 255, 0.22);
}

.pd-storage-block p {
  margin: 0;
  color: #aab6ca;
  font-size: 0.96rem;
  line-height: 1.6;
}

.pd-back-row {
  margin-top: 1.5rem;
}

@media (max-width: 1100px) {
  .pd-snapshot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .pd-top,
  .pd-two-col {
    grid-template-columns: 1fr;
  }

  .pd-snapshot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .pd-snapshot-grid {
    grid-template-columns: 1fr;
  }

  .pd-spec-line {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}

.detail-content h1 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: 0.06em;
}

.detail-sci {
  margin: 0 0 1rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.detail-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.spec-pill {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.45rem 0.8rem;
  background: rgba(10, 16, 28, 0.8);
}

.spec-pill strong {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-bright);
}

.spec-pill span {
  font-weight: 600;
}

.detail-body {
  color: var(--muted);
  font-size: 1.08rem;
}

.detail-body p {
  margin-top: 0;
}

.related {
  margin-top: 3rem;
}

.empty-state {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: var(--muted);
}

.content-card {
  max-width: 820px;
  margin: 0 auto;
}

.content-card h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--blue-bright);
  text-transform: uppercase;
}

.content-card p,
.content-card li {
  color: var(--muted);
  font-size: 1.08rem;
}

.content-card ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0.75rem 0 1.25rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #070b14;
  color: var(--white);
  border-radius: var(--radius);
  padding: 0.75rem 0.85rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.15);
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.alert {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(30, 144, 255, 0.1);
  color: var(--white);
  margin-bottom: 1rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(30, 144, 255, 0.25);
  padding: 1.75rem 0 2rem;
  margin-top: 1rem;
  background: rgba(0, 0, 0, 0.35);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
}

.footer-center {
  text-align: center;
}

.footer-tagline {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--blue-bright);
  text-transform: uppercase;
}

.footer-copy {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-right {
  justify-self: end;
  text-align: right;
}

.socials {
  display: flex;
  gap: 0.4rem;
  justify-content: flex-end;
  margin-bottom: 0.45rem;
}

.social {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue-bright);
  transition: 0.2s ease;
}

.social svg {
  display: block;
}

.social:hover {
  background: rgba(30, 144, 255, 0.15);
  border-color: var(--blue-bright);
  box-shadow: 0 0 12px var(--blue-glow);
  color: #fff;
}

.footer-email {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-email:hover {
  color: var(--blue-bright);
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .champions-hero {
    height: min(58vh, 520px);
  }

  .layout-with-side {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(5, 7, 13, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem;
    gap: 0.2rem;
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding-left: 0.75rem;
  }

  .header-aside {
    display: none;
  }

  .hero-grid,
  .hero-side,
  .product-detail,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-right,
  .footer-center {
    text-align: left;
    justify-self: start;
  }

  .socials {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-badges {
    grid-template-columns: 1fr;
  }
}
