:root {
  --navy: #0B1F3A;
  --orange: #FF6B00;
  --ink: #0F172A;
  --muted: #5B6472;
  --muted-dark: #BAC4D2;
  --white: #FFFFFF;
  --surface: #F4F6F9;
  --border: #D7DEE8;
  --shadow: 0 10px 28px rgba(11, 31, 58, 0.08);
  --radius: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }

.skip {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  z-index: 100;
  padding: 0.5rem 0.9rem;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  border-radius: 8px;
}
.skip:focus { left: 0.75rem; outline: 2px solid var(--orange); }

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

/* Header — dark navy only */
.site-header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  flex-shrink: 0;
}
.brand img {
  width: 36px;
  height: 36px;
}
.brand-name {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.brand-name span {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.nav a {
  text-decoration: none;
  color: var(--muted-dark);
  font-size: 0.92rem;
  font-weight: 600;
}
.nav a:hover,
.nav a[aria-current="page"] { color: var(--white); }
.nav a.shop-live { color: var(--orange); }
.nav a.quote {
  background: var(--orange);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
}
.nav a.quote:hover { filter: brightness(1.05); color: var(--white); }

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 10px;
  padding: 8px 10px;
}

.hero {
  background: var(--navy);
  color: var(--white);
  padding: 48px 0 56px;
}
.hero-kicker {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.hero p {
  margin: 0;
  max-width: 46rem;
  color: var(--muted-dark);
  font-size: 1.05rem;
}
.hero-meta {
  margin-top: 18px;
  color: var(--muted-dark);
  font-size: 0.9rem;
}

.section { padding: 40px 0 56px; }
.section h2 {
  margin: 0 0 8px;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section .lead {
  margin: 0 0 24px;
  color: var(--muted);
  max-width: 46rem;
}
.section p,
.section .note,
.section .note a {
  color: var(--muted);
}
.section .note a:hover { color: var(--navy); }

.hub-grid,
.product-grid {
  display: grid;
  gap: 18px;
}
.hub-grid { grid-template-columns: repeat(4, 1fr); }
.product-grid { grid-template-columns: repeat(3, 1fr); }

.hub-card,
.product-card,
.empty-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hub-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  padding: 22px 22px 20px;
  min-height: 210px;
  color: var(--ink);
}
.hub-card:hover { border-color: var(--navy); }
.hub-count {
  color: var(--orange);
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}
.hub-card h2 {
  margin: 8px 0 8px;
  font-size: 1.25rem;
}
.hub-card p {
  margin: 0 0 16px;
  color: var(--muted);
  flex: 1;
  font-size: 0.95rem;
}
.hub-card .go {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.92rem;
}

.product-card { overflow: hidden; display: flex; flex-direction: column; }
.product-media {
  background: #E8EDF3;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.coming-soon {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  padding: 12px;
}
.product-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-body h2 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.sku, .specs { color: var(--muted); font-size: 0.86rem; }
.price {
  color: var(--navy);
  font-weight: 800;
  font-size: 1.15rem;
}
.variants {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.variants li {
  font-size: 0.82rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 6px;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 999px;
  padding: 9px 14px;
  border: 1px solid transparent;
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
}
.btn-orange:hover { filter: brightness(1.05); }
.btn-ghost {
  background: var(--white);
  color: var(--navy);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--navy); }

.empty-card { padding: 32px; }
.empty-card h2 { margin-top: 0; }
.empty-card p { color: var(--muted); }

.note {
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  background: var(--navy);
  color: var(--muted-dark);
  padding: 28px 0;
  font-size: 0.88rem;
}
.site-footer a { color: var(--white); text-decoration: none; }
.site-footer a:hover { color: var(--orange); }
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

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

@media (max-width: 760px) {
  .menu-toggle { display: inline-flex; }
  .nav {
    display: none;
    width: 100%;
    padding: 0 0 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav.is-open { display: flex; }
  .header-inner { flex-wrap: wrap; padding: 10px 0; }
  .hub-grid,
  .product-grid { grid-template-columns: 1fr; }
  .hero { padding: 36px 0 40px; }
}

.browse-hub-grid { margin-bottom: 8px; }

.nav-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.nav-logo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 12px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  min-height: 128px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .15s, transform .15s;
}
.nav-logo-card:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}
.nav-logo-card img {
  max-height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.nav-logo-label {
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.25;
}
.product-media-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.product-media-link:hover img { transform: scale(1.02); }
.product-media-link img { transition: transform .15s ease; }
