/* ============================================================
   IO Clubhouse — Stylesheet
   Colors: Deep Navy / Charcoal | White / Ice Silver | Electric Cyan
   ============================================================ */

:root {
  /* Primary — Deep Navy / Charcoal (60%) */
  --navy: #0a1628;
  --navy-mid: #0f1e35;
  --navy-card: #162035;
  --charcoal: #1c2b3a;
  --charcoal-2: #243447;

  /* Secondary — White / Ice Silver (30%) */
  --white: #ffffff;
  --ice: #e4edf5;
  --silver: #8baac4;
  --silver-2: #5a7a96;

  /* Accent — Electric Cyan (10%) */
  --cyan: #00d4ff;
  --cyan-soft: rgba(0, 212, 255, 0.1);
  --cyan-glow: rgba(0, 212, 255, 0.25);
  --cyan-border: rgba(0, 212, 255, 0.22);
  --mint: #00e5a0;

  /* Functional */
  --gold: #f5c842;
  --border: rgba(255, 255, 255, 0.07);
  --border-2: rgba(255, 255, 255, 0.12);

  /* Typography */
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Layout */
  --container: 1220px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Transitions */
  --t: 0.25s ease;
  --t-slow: 0.4s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--navy);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}
input,
button {
  font-family: var(--font-body);
}

/* ── Accessibility ──────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Utilities ──────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.text-accent {
  color: var(--cyan);
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 18px;
}

.section-subtitle {
  color: var(--silver);
  font-size: 1rem;
  line-height: 1.75;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition:
    background var(--t),
    color var(--t),
    border-color var(--t),
    transform var(--t),
    box-shadow var(--t);
  white-space: nowrap;
  line-height: 1;
}

.btn--primary {
  background: var(--cyan);
  color: var(--navy);
  padding: 12px 24px;
}
.btn--primary:hover {
  background: #33ddff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--cyan-glow);
}
.btn--primary:active {
  transform: translateY(0);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border-2);
  padding: 12px 24px;
}
.btn--ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 8px 16px;
  font-size: 0.82rem;
}
.btn--lg {
  padding: 15px 34px;
  font-size: 0.95rem;
}

/* ── Header / Nav ─────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition:
    background var(--t),
    box-shadow var(--t);
}

.header.scrolled {
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav {
  display: flex;
  align-items: center;
  height: 74px;
  gap: 36px;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  flex-shrink: 0;
}
.logo-io {
  color: var(--cyan);
  font-size: 1.8rem;
}
.logo-clubhouse {
  color: var(--white);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--silver);
  transition: color var(--t);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 0;
}
.nav__link:hover {
  color: var(--white);
}

.nav__dropdown {
  position: relative;
}

.dropdown__menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--navy-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 290px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--t),
    transform var(--t);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.nav__dropdown:hover .dropdown__menu,
.nav__dropdown:focus-within .dropdown__menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown__menu li a {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--silver);
  transition: var(--t);
  line-height: 1.4;
}
.dropdown__menu li a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  transition: var(--t);
  position: relative;
}
.nav__icon-btn:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.cart-count {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 16px;
  height: 16px;
  background: var(--cyan);
  color: var(--navy);
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 34px;
  padding: 4px;
  border-radius: 6px;
}
.nav__hamburger span {
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition:
    transform var(--t),
    opacity var(--t);
  display: block;
}
.nav__hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav open state */
@media (max-width: 768px) {
  .nav__menu {
    display: none;
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px;
    gap: 4px;
    overflow-y: auto;
    z-index: 999;
  }
  .nav__menu.is-open {
    display: flex;
  }
  .nav__link {
    font-size: 1.1rem;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
    color: var(--white);
  }
  .nav__dropdown {
    width: 100%;
  }
  .dropdown__menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: all;
    background: transparent;
    border: none;
    padding: 0 0 0 16px;
    box-shadow: none;
    min-width: unset;
  }
  .dropdown__menu li a {
    padding: 10px 0;
    font-size: 0.9rem;
  }
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 74px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 90% 70% at 65% 40%,
      rgba(0, 212, 255, 0.06) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 60% 60% at 15% 85%,
      rgba(0, 80, 160, 0.12) 0%,
      transparent 50%
    ),
    linear-gradient(160deg, var(--navy) 0%, #0c1a2e 60%, #0a1628 100%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black,
    transparent
  );
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 212, 255, 0.05);
  top: -100px;
  right: -100px;
}
.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: rgba(0, 100, 200, 0.08);
  bottom: 0;
  left: -60px;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding-top: 60px;
  padding-bottom: 140px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--cyan-soft);
  border: 1px solid var(--cyan-border);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--cyan);
  margin-bottom: 28px;
  letter-spacing: 0.03em;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: blink 2.2s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 9vw, 7rem);
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero__subheadline {
  font-size: 1.08rem;
  color: var(--silver);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 44px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat__number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat__star {
  color: var(--gold);
}
.stat__label {
  font-size: 0.72rem;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 500;
}
.stat__divider {
  width: 1px;
  height: 44px;
  background: var(--border-2);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--silver-2);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--silver-2), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  49% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ── Trust Bar ───────────────────────────────────────────── */
.trust-bar {
  background: var(--navy-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--silver);
}
.trust-icon {
  width: 20px;
  height: 20px;
  color: var(--cyan);
  flex-shrink: 0;
}

/* ── Products Section ─────────────────────────────────── */
.products {
  padding: 110px 0;
}

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

.product-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform var(--t),
    border-color var(--t),
    box-shadow var(--t);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--cyan-border);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}
.product-card--large {
  grid-column: span 2;
}

.product-card__visual {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-card__visual--grips {
  background: linear-gradient(135deg, #152840 0%, #1a3a5c 60%, #0d2440 100%);
}
.product-card__visual--gloves {
  background: linear-gradient(135deg, #152035 0%, #1e3050 60%, #0d1a2e 100%);
}
.product-card__visual--towels {
  background: linear-gradient(135deg, #0e2030 0%, #163248 60%, #0a1828 100%);
}
.product-card__visual--spray {
  background: linear-gradient(135deg, #0d1e35 0%, #153050 60%, #09162a 100%);
}
.product-card__visual--kits {
  background: linear-gradient(135deg, #10202e 0%, #1a3050 60%, #0c1c2c 100%);
}

.product-card__icon {
  width: 88px;
  height: 88px;
  color: var(--cyan);
  opacity: 0.65;
}

.product-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--cyan);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.product-card__badge--new {
  background: var(--mint);
}

.product-card__body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}
.product-card__category {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.product-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}
.product-card__desc {
  font-size: 0.875rem;
  color: var(--silver);
  line-height: 1.65;
  flex: 1;
}
.product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 4px;
  transition: gap var(--t);
}
.product-card:hover .product-card__cta {
  gap: 11px;
}

/* ── Why Us ───────────────────────────────────────────── */
.why-us {
  padding: 110px 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--navy-mid) 30%,
    var(--navy-mid) 70%,
    transparent 100%
  );
}
.why-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-us__content .section-title {
  text-align: left;
}
.why-us__content .section-label {
  margin-bottom: 10px;
}
.why-us__desc {
  color: var(--silver);
  font-size: 0.975rem;
  line-height: 1.75;
  margin-bottom: 40px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature-item__icon {
  width: 46px;
  height: 46px;
  background: var(--cyan-soft);
  border: 1px solid var(--cyan-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan);
}
.feature-item__icon svg {
  width: 20px;
  height: 20px;
}
.feature-item h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}
.feature-item p {
  font-size: 0.875rem;
  color: var(--silver);
  line-height: 1.65;
}

/* Visual stats card */
.visual-card {
  background: var(--charcoal);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}
.visual-card__stat {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 22px 0;
}
.visual-stat-number {
  font-family: var(--font-display);
  font-size: 4.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.visual-stat-unit {
  color: var(--cyan);
  font-size: 2.8rem;
}
.visual-stat-label {
  font-size: 0.875rem;
  color: var(--silver);
  font-weight: 500;
}
.visual-card__divider {
  height: 1px;
  background: var(--border);
}
.visual-card__glow {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: var(--cyan-glow);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

/* ── Best Sellers ─────────────────────────────────────── */
.best-sellers {
  padding: 110px 0;
}

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

.product-tile {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform var(--t),
    border-color var(--t),
    box-shadow var(--t);
}
.product-tile:hover {
  transform: translateY(-4px);
  border-color: var(--cyan-border);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

.product-tile__img {
  height: 200px;
  position: relative;
}
.product-tile__img--grip {
  background: linear-gradient(
    135deg,
    #152840 0%,
    #1a3a5c 60%,
    rgba(0, 212, 255, 0.08) 100%
  );
}
.product-tile__img--glove {
  background: linear-gradient(
    135deg,
    #152035 0%,
    #1e3050 60%,
    rgba(0, 212, 255, 0.06) 100%
  );
}
.product-tile__img--towel {
  background: linear-gradient(
    135deg,
    #0e2030 0%,
    #163248 60%,
    rgba(0, 229, 160, 0.07) 100%
  );
}
.product-tile__img--spray {
  background: linear-gradient(
    135deg,
    #0d1e35 0%,
    #153050 60%,
    rgba(0, 212, 255, 0.08) 100%
  );
}

.product-tile__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--border-2);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-tile__info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.product-tile__cat {
  font-size: 0.7rem;
  color: var(--cyan);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.product-tile__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.product-tile__rating {
  font-size: 0.82rem;
  color: var(--gold);
}
.product-tile__rating span {
  color: var(--silver);
  font-size: 0.75rem;
}
.product-tile__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}
.product-tile__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

/* ── Reviews ──────────────────────────────────────────── */
.reviews {
  padding: 110px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color var(--t);
}
.review-card:hover {
  border-color: var(--cyan-border);
}

.review-card__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 3px;
}
.review-card__text {
  color: var(--ice);
  font-size: 0.95rem;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  quotes: "\201C" "\201D";
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 13px;
}
.review-card__avatar {
  width: 42px;
  height: 42px;
  background: var(--cyan-soft);
  border: 1px solid var(--cyan-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cyan);
  flex-shrink: 0;
}
.review-card__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}
.review-card__detail {
  font-size: 0.75rem;
  color: var(--silver);
}

/* ── Blog Teaser ──────────────────────────────────────── */
.blog-teaser {
  padding: 110px 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(22, 32, 53, 0.35) 30%,
    rgba(22, 32, 53, 0.35) 70%,
    transparent 100%
  );
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 20px;
}

.blog-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--t),
    border-color var(--t);
}
.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--cyan-border);
}

.blog-card__img {
  height: 180px;
}
.blog-card--featured .blog-card__img {
  height: 240px;
}
.blog-card__img--1 {
  background: linear-gradient(145deg, #152840 0%, #1d3860 55%, #001e44 100%);
}
.blog-card__img--2 {
  background: linear-gradient(145deg, #152535 0%, #1a3850 55%, #001a30 100%);
}
.blog-card__img--3 {
  background: linear-gradient(145deg, #101e30 0%, #162e45 55%, #001525 100%);
}

.blog-card__body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}
.blog-card__tag {
  display: inline-block;
  background: var(--cyan-soft);
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 11px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: fit-content;
}
.blog-card__title {
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.45;
}
.blog-card--featured .blog-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
}
.blog-card__excerpt {
  font-size: 0.85rem;
  color: var(--silver);
  line-height: 1.65;
  flex: 1;
}
.blog-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 600;
  transition: gap var(--t);
  margin-top: 4px;
}
.blog-card:hover .blog-card__cta {
  gap: 10px;
}

/* ── CTA Banner ───────────────────────────────────────── */
.cta-banner {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 50% 50%,
      rgba(0, 212, 255, 0.055) 0%,
      transparent 65%
    ),
    var(--charcoal);
}
.cta-banner__content {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.1;
}
.cta-banner__desc {
  color: var(--silver);
  margin-bottom: 36px;
  font-size: 0.975rem;
  line-height: 1.75;
}
.cta-banner__form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 16px;
}
.cta-banner__input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid var(--border-2);
  border-radius: 8px;
  padding: 15px 20px;
  color: var(--white);
  font-size: 0.9rem;
  transition: border-color var(--t);
  outline: none;
  min-width: 0;
}
.cta-banner__input::placeholder {
  color: var(--silver-2);
}
.cta-banner__input:focus {
  border-color: var(--cyan);
}
.cta-banner__fine {
  font-size: 0.75rem;
  color: var(--silver-2);
}

/* ── Footer ───────────────────────────────────────────── */
.footer {
  background: var(--navy-card);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 60px;
}
.footer__logo {
  display: inline-flex;
  margin-bottom: 18px;
}
.footer__tagline {
  font-size: 0.875rem;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 280px;
}
.footer__social {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  transition: var(--t);
}
.social-link svg {
  width: 16px;
  height: 16px;
}
.social-link:hover {
  background: var(--cyan-soft);
  border-color: var(--cyan-border);
  color: var(--cyan);
}

.footer__col-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white);
  margin-bottom: 22px;
}
.footer__links li {
  margin-bottom: 12px;
}
.footer__links a {
  font-size: 0.875rem;
  color: var(--silver);
  transition: color var(--t);
  line-height: 1.4;
}
.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.footer__seo-copy {
  font-size: 0.75rem;
  color: var(--silver-2);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 860px;
}
.footer__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__legal p {
  font-size: 0.82rem;
  color: var(--silver);
}
.footer__legal-links {
  display: flex;
  gap: 22px;
}
.footer__legal-links a {
  font-size: 0.82rem;
  color: var(--silver);
  transition: color var(--t);
}
.footer__legal-links a:hover {
  color: var(--white);
}

/* ── Scroll-reveal animation hook ──────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive: 1024px ──────────────────────────────── */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-card--large {
    grid-column: span 2;
  }

  .why-us__grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .why-us__content .section-title {
    text-align: left;
  }

  .product-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-card--featured {
    grid-column: span 2;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* ── Responsive: 768px ──────────────────────────────── */
@media (max-width: 768px) {
  .nav__hamburger {
    display: flex;
  }
  .nav__menu:not(.is-open) {
    display: none;
  }

  .trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-card--large {
    grid-column: span 1;
  }

  .product-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-card--featured {
    grid-column: span 1;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-banner__form {
    flex-direction: column;
  }

  .hero__stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .stat__divider {
    display: none;
  }

  .footer__legal {
    flex-direction: column;
    align-items: flex-start;
  }

  .why-us__grid {
    gap: 40px;
  }
}

/* ── Responsive: 480px ──────────────────────────────── */
@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero__ctas {
    flex-direction: column;
  }
  .hero__ctas .btn {
    width: 100%;
  }

  .trust-bar__grid {
    grid-template-columns: 1fr;
  }

  .product-row {
    grid-template-columns: 1fr;
  }

  .visual-card {
    padding: 36px 28px;
  }
  .visual-stat-number {
    font-size: 3.5rem;
  }

  .cta-banner__form .btn {
    width: 100%;
  }
}

/* ============================================================
   SHARED — Active nav link
   ============================================================ */
.nav__link--active {
  color: var(--cyan) !important;
}

/* ============================================================
   SHOP PAGE
   ============================================================ */

/* ── Shop Hero ── */
.shop-hero {
  padding: 140px 0 60px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.shop-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.shop-hero__sub {
  color: var(--silver);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 560px;
}

/* ── Bundle Section ── */
.bundle-section {
  padding: 60px 0 80px;
  background: var(--navy-mid);
}

.bundle-card {
  background: var(--charcoal);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(0, 212, 255, 0.06);
}

.bundle-card__label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.bundle-card__badge {
  background: var(--cyan);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bundle-card__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.bundle-card__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.bundle-card__desc {
  color: var(--silver);
  font-size: 0.975rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.bundle-includes {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.bundle-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.bundle-item:last-child {
  border-bottom: none;
}

.bundle-item__dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
}
.bundle-item__name {
  flex: 1;
  color: var(--white);
  font-weight: 500;
}
.bundle-item__price {
  color: var(--silver);
  font-size: 0.85rem;
  text-decoration: line-through;
}

.bundle-card__pricing {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.bundle-price-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bundle-price-was {
  font-size: 0.85rem;
  color: var(--silver);
  text-decoration: line-through;
}
.bundle-price-now {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.bundle-price-save {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mint);
}

/* Bundle visual */
.bundle-card__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
}
.bundle-visual-item {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  aspect-ratio: 1;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: border-color var(--t);
}
.bundle-visual-item:hover {
  border-color: var(--cyan-border);
}
.bundle-visual-item--grip {
  background: linear-gradient(135deg, #152840 0%, #1a3a5c 100%);
}
.bundle-visual-item--glove {
  background: linear-gradient(135deg, #152035 0%, #1e3050 100%);
}
.bundle-visual-item--towel {
  background: linear-gradient(135deg, #0e2030 0%, #163248 100%);
}
.bundle-visual-item--spray {
  background: linear-gradient(135deg, #0d1e35 0%, #153050 100%);
}

.bundle-visual__glow {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: var(--cyan-glow);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

/* ── Filter Bar ── */
.shop-main {
  padding: 80px 0 100px;
}

.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--silver);
  background: transparent;
  border: 1.5px solid var(--border);
  transition: var(--t);
  cursor: pointer;
}
.filter-btn:hover {
  border-color: var(--cyan-border);
  color: var(--white);
}
.filter-btn.is-active {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--navy);
}

/* ── Shop Category ── */
.shop-category {
  margin-bottom: 80px;
}
.shop-category__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.shop-category__desc {
  color: var(--silver);
  font-size: 0.9rem;
  margin-bottom: 28px;
  max-width: 560px;
}

/* ── Shop Grid / Cards ── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.shop-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--t),
    border-color var(--t),
    box-shadow var(--t);
}
.shop-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.shop-card--wide {
  grid-column: span 2;
}

.shop-card__img {
  height: 180px;
  position: relative;
}
/* Product image placeholders */
.shop-card__img--grip1 {
  background: linear-gradient(
    135deg,
    #152840 0%,
    #1a3a5c 60%,
    rgba(0, 212, 255, 0.1) 100%
  );
}
.shop-card__img--grip2 {
  background: linear-gradient(
    135deg,
    #122038 0%,
    #173258 60%,
    rgba(0, 180, 220, 0.08) 100%
  );
}
.shop-card__img--glove1 {
  background: linear-gradient(
    135deg,
    #152035 0%,
    #1e3050 60%,
    rgba(0, 212, 255, 0.08) 100%
  );
}
.shop-card__img--glove2 {
  background: linear-gradient(
    135deg,
    #121a2e 0%,
    #1a2a44 60%,
    rgba(0, 160, 200, 0.07) 100%
  );
}
.shop-card__img--towel1 {
  background: linear-gradient(
    135deg,
    #0e2030 0%,
    #163248 60%,
    rgba(0, 229, 160, 0.08) 100%
  );
}
.shop-card__img--spray1 {
  background: linear-gradient(
    135deg,
    #0d1e35 0%,
    #153050 60%,
    rgba(0, 212, 255, 0.1) 100%
  );
}
.shop-card__img--spray2 {
  background: linear-gradient(
    135deg,
    #0c1c30 0%,
    #132844 60%,
    rgba(0, 180, 240, 0.08) 100%
  );
}
.shop-card__img--kit1 {
  background: linear-gradient(
    135deg,
    #10202e 0%,
    #1a3050 60%,
    rgba(0, 200, 220, 0.07) 100%
  );
}

.shop-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--cyan);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.shop-card__tag--new {
  background: var(--mint);
}

.shop-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.shop-card__cat {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.shop-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}
.shop-card__blurb {
  font-size: 0.85rem;
  color: var(--silver);
  line-height: 1.6;
  margin-bottom: 6px;
}

/* Spec list */
.spec-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}
.spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
}
.spec-item:last-child {
  border-bottom: none;
}
.spec-item--include {
  gap: 10px;
}

.spec-label {
  color: var(--silver-2);
  font-weight: 500;
  min-width: 90px;
  flex-shrink: 0;
}
.spec-value {
  color: var(--white);
  font-weight: 500;
  font-size: 0.82rem;
}
.spec-value--firm {
  color: #ff8c6b;
}
.spec-value--medium {
  color: #f5c842;
}
.spec-value--weather {
  color: var(--mint);
  font-size: 0.78rem;
}

.spec-check {
  width: 16px;
  height: 16px;
  color: var(--cyan);
  flex-shrink: 0;
}

.shop-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.shop-card__price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

/* ── Article Pitch (shop page bottom) ── */
.article-pitch {
  padding: 80px 0 100px;
  background: var(--navy-mid);
}
.article-pitch__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  background: var(--charcoal);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 48px;
}
.article-pitch__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.article-pitch__desc {
  color: var(--silver);
  font-size: 0.975rem;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 460px;
}
.ap-stat-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  display: block;
}
.ap-stat-label {
  font-size: 0.85rem;
  color: var(--silver);
  font-weight: 500;
  white-space: nowrap;
}

/* ============================================================
   PERFORMANCE HUB PAGE
   ============================================================ */

/* ── Hub Hero ── */
.hub-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hub-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hub-hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 60% 40%,
      rgba(0, 212, 255, 0.05) 0%,
      transparent 55%
    ),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.hub-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(
    ellipse 80% 70% at 50% 50%,
    black,
    transparent
  );
}
.hub-hero__content {
  position: relative;
  z-index: 1;
}
.hub-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hub-hero__sub {
  color: var(--silver);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 28px;
}
.hub-hero__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hub-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--silver);
  font-weight: 500;
}
.hub-meta-sep {
  color: var(--silver-2);
}

/* ── Articles ── */
.hub-articles {
  padding: 80px 0 100px;
}

/* Featured Article */
.hub-article--featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 24px;
  transition: border-color var(--t);
}
.hub-article--featured:hover {
  border-color: var(--cyan-border);
}

.hub-article__img {
  position: relative;
  min-height: 400px;
}
.hub-article__img--1 {
  background: linear-gradient(145deg, #152840 0%, #1d3860 50%, #001e44 100%);
}

.hub-article__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--navy-card) 100%);
}

.hub-article__body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.hub-article__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hub-article__read-time {
  font-size: 0.75rem;
  color: var(--silver);
  font-weight: 500;
}
.hub-article__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}
.hub-article__excerpt {
  color: var(--silver);
  font-size: 0.9rem;
  line-height: 1.75;
}
.hub-article__bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 0;
}
.hub-article__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--ice);
  line-height: 1.5;
}
.hub-article__bullets li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.hub-article__cta {
  margin-top: 8px;
  width: fit-content;
}

/* Hub articles grid */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.hub-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--t),
    border-color var(--t);
}
.hub-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan-border);
}
.hub-card__img {
  height: 200px;
}
.hub-card__img--2 {
  background: linear-gradient(145deg, #152535 0%, #1a3850 50%, #001a30 100%);
}
.hub-card__img--3 {
  background: linear-gradient(145deg, #101e30 0%, #162e45 50%, #001525 100%);
}

.hub-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.hub-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hub-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.hub-card__excerpt {
  font-size: 0.875rem;
  color: var(--silver);
  line-height: 1.7;
  flex: 1;
}

/* Coming soon articles */
.hub-coming {
  margin-bottom: 20px;
}
.hub-coming__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.hub-coming__card {
  background: var(--navy-card);
  border: 1px dashed var(--border-2);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0.7;
}
.hub-coming__tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  color: var(--silver);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: fit-content;
}
.hub-coming__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--silver);
  line-height: 1.45;
}

/* ── Hub Bottom Pitch ── */
.hub-pitch {
  padding: 80px 0 100px;
  background: var(--navy-mid);
}
.hub-pitch__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--charcoal);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-xl);
  padding: 52px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(0, 212, 255, 0.05);
}
.hub-pitch__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.hub-pitch__desc {
  color: var(--silver);
  font-size: 0.975rem;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 460px;
}
.hub-pitch__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Pitch card */
.hub-pitch__card {
  background: var(--navy-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.hub-pitch__card-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.hub-pitch__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.hub-pitch__items li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--ice);
  font-weight: 500;
}
.hub-pitch__items li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
}
.hub-pitch__price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
.hub-pitch__was {
  font-size: 0.85rem;
  color: var(--silver);
  text-decoration: line-through;
}
.hub-pitch__now {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hub-pitch__save {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mint);
}
.hub-pitch__glow {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  background: var(--cyan-glow);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

/* ============================================================
   COMING SOON PAGE
   ============================================================ */

.cs-body {
  overflow: hidden;
}

.cs-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 28px;
}

.cs-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
}
.cs-bg__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 50%,
      rgba(0, 212, 255, 0.07) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 60% 80% at 20% 80%,
      rgba(0, 80, 160, 0.1) 0%,
      transparent 50%
    ),
    linear-gradient(160deg, var(--navy) 0%, #0c1a2e 100%);
}
.cs-bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black,
    transparent
  );
}
.cs-bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.cs-bg__orb--1 {
  width: 600px;
  height: 600px;
  background: rgba(0, 212, 255, 0.05);
  top: -150px;
  right: -100px;
}
.cs-bg__orb--2 {
  width: 500px;
  height: 500px;
  background: rgba(0, 100, 200, 0.07);
  bottom: -100px;
  left: -80px;
}

.cs-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.cs-logo {
  font-size: 1.8rem;
  margin-bottom: 0;
}
.cs-badge {
  margin-bottom: 0;
}

.cs-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.cs-sub {
  color: var(--silver);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 500px;
}

.cs-form-wrap {
  width: 100%;
  background: var(--navy-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cs-offer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--ice);
  font-weight: 500;
}
.cs-offer svg {
  color: var(--cyan);
  flex-shrink: 0;
}
.cs-offer strong {
  color: var(--cyan);
}

.cs-form {
  display: flex;
  gap: 10px;
  width: 100%;
}
.cs-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid var(--border-2);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--t);
  min-width: 0;
}
.cs-input::placeholder {
  color: var(--silver-2);
}
.cs-input:focus {
  border-color: var(--cyan);
}

.cs-fine {
  font-size: 0.74rem;
  color: var(--silver-2);
  text-align: center;
}

/* Countdown */
.cs-countdown {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cs-count-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 24px;
  min-width: 80px;
}
.cs-count-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.cs-count-label {
  font-size: 0.65rem;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.cs-count-sep {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--silver-2);
  margin-top: -12px;
}

.cs-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.cs-social__label {
  font-size: 0.8rem;
  color: var(--silver);
  font-weight: 500;
}
.cs-social__links {
  display: flex;
  gap: 10px;
}

.cs-copyright {
  font-size: 0.75rem;
  color: var(--silver-2);
}
.cs-copyright a {
  color: var(--silver);
  transition: color var(--t);
}
.cs-copyright a:hover {
  color: var(--white);
}

/* ============================================================
   NEW PAGE RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .bundle-card__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bundle-card__visual {
    grid-template-columns: repeat(4, 1fr);
    aspect-ratio: unset;
  }
  .bundle-visual-item {
    aspect-ratio: 1;
  }

  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .shop-card--wide {
    grid-column: span 2;
  }

  .article-pitch__inner {
    flex-direction: column;
    gap: 32px;
  }
  .article-pitch__stat {
    display: flex;
    align-items: baseline;
    gap: 12px;
  }

  .hub-article--featured {
    grid-template-columns: 1fr;
  }
  .hub-article__img {
    min-height: 260px;
  }
  .hub-article__img-overlay {
    background: linear-gradient(
      to bottom,
      transparent 60%,
      var(--navy-card) 100%
    );
  }

  .hub-pitch__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hub-coming__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .bundle-card {
    padding: 32px 24px;
  }
  .bundle-card__visual {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-grid {
    grid-template-columns: 1fr;
  }
  .shop-card--wide {
    grid-column: span 1;
  }

  .hub-grid {
    grid-template-columns: 1fr;
  }
  .hub-coming__grid {
    grid-template-columns: 1fr;
  }

  .hub-pitch__inner {
    padding: 36px 28px;
  }
  .hub-pitch__ctas {
    flex-direction: column;
  }
  .hub-pitch__ctas .btn {
    width: 100%;
  }

  .cs-form {
    flex-direction: column;
  }
  .cs-countdown {
    gap: 10px;
  }
  .cs-count-item {
    padding: 14px 16px;
    min-width: 64px;
  }
  .cs-count-num {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .bundle-card__pricing {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .bundle-card__pricing .btn {
    width: 100%;
  }

  .cs-count-sep {
    display: none;
  }
  .cs-countdown {
    gap: 8px;
  }

  .shop-hero {
    padding: 120px 0 48px;
  }
  .hub-hero {
    padding: 120px 0 60px;
  }
}
