:root {
  --space-navy: #0A0E27;
  --space-navy-deep: #050816;
  --space-navy-mid: #131838;
  --signal-cyan: #22E8E0;
  --signal-cyan-soft: rgba(34, 232, 224, 0.15);
  --magenta: #FF3DA5;
  --magenta-soft: rgba(255, 61, 165, 0.15);
  --aurora-violet: #8B5CF6;
  --bone: #F4F1EA;
  --bone-dim: rgba(244, 241, 234, 0.7);
  --bone-dimmer: rgba(244, 241, 234, 0.5);
  --code-yellow: #FFD93D;
  --gutter: 1.5rem;
  --gutter-lg: 3rem;
  --section-pad: 5rem;
  --content-max: 1200px;
  --font-display: 'Archivo Black', 'Space Grotesk', system-ui, sans-serif;
  --font-grotesk: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--space-navy);
  color: var(--bone);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

strong { color: var(--code-yellow); font-weight: 700; }

.code-tag {
  display: inline-block;
  background: var(--code-yellow);
  color: var(--space-navy-deep);
  padding: 0.1em 0.45em;
  border-radius: 4px;
  font-family: var(--font-grotesk);
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 0.95em;
}

/* === AFFILIATE BAR === */
.affiliate-bar {
  background: linear-gradient(90deg, var(--magenta) 0%, var(--aurora-violet) 50%, var(--signal-cyan) 100%);
  color: var(--space-navy-deep);
  text-align: center;
  padding: 0.5rem var(--gutter);
  font-family: var(--font-grotesk);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* === NAVIGATION === */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 39, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(34, 232, 224, 0.2);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--signal-cyan);
  letter-spacing: 0.02em;
  text-shadow: 0 0 12px rgba(34, 232, 224, 0.5);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-family: var(--font-grotesk);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.nav-links a {
  color: var(--bone-dim);
  transition: color 0.2s, text-shadow 0.2s;
}

.nav-links a:hover {
  color: var(--magenta);
  text-shadow: 0 0 8px rgba(255, 61, 165, 0.6);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 4rem var(--gutter);
  background:
    radial-gradient(ellipse at top left, rgba(34, 232, 224, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(255, 61, 165, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, var(--space-navy-deep) 0%, var(--space-navy) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 80% 20%, rgba(255,255,255,0.5), transparent),
    radial-gradient(2px 2px at 30% 80%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(255,255,255,0.4), transparent);
  background-size: 200px 200px;
  pointer-events: none;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--content-max);
  text-align: center;
}

.hero-callsign {
  display: inline-block;
  font-family: var(--font-grotesk);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--signal-cyan);
  border: 1px solid rgba(34, 232, 224, 0.4);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 8px rgba(34, 232, 224, 0.5);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 11vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--signal-cyan) 0%, var(--bone) 50%, var(--magenta) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 40px rgba(34, 232, 224, 0.3));
}

.hero-tagline {
  font-family: var(--font-grotesk);
  font-weight: 600;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  letter-spacing: 0.2em;
  color: var(--magenta);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 12px rgba(255, 61, 165, 0.4);
}

.hero-blurb {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--bone-dim);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--signal-cyan);
  text-shadow: 0 0 12px rgba(34, 232, 224, 0.5);
}

.stat-label {
  font-family: var(--font-grotesk);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--bone-dimmer);
  text-transform: uppercase;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--magenta) 0%, var(--aurora-violet) 100%);
  color: var(--bone);
  font-family: var(--font-grotesk);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 1rem 2rem;
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(255, 61, 165, 0.3);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 61, 165, 0.5);
}

.cta-secondary {
  display: inline-block;
  background: transparent;
  color: var(--signal-cyan);
  border: 2px solid var(--signal-cyan);
  font-family: var(--font-grotesk);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: calc(1rem - 2px) calc(2rem - 2px);
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.cta-secondary:hover {
  background: var(--signal-cyan);
  color: var(--space-navy-deep);
}

/* === SECTIONS GENERAL === */
section.bluebrio-reveal,
section.shop-section,
section.radio-section,
section.gear-section,
section.sound-section,
section.emergency-section,
section.other-section,
section.brands-section {
  padding: var(--section-pad) var(--gutter);
}

.section-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-grotesk);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--signal-cyan);
  margin-bottom: 0.75rem;
  text-shadow: 0 0 8px rgba(34, 232, 224, 0.4);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: var(--bone);
}

.section-blurb {
  font-size: 1.05rem;
  color: var(--bone-dim);
  max-width: 720px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.subsection-title {
  font-family: var(--font-grotesk);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: var(--magenta);
  text-shadow: 0 0 8px rgba(255, 61, 165, 0.3);
}

.subsection-title:first-of-type {
  margin-top: 0;
}

/* === BLUE BRIO REVEAL === */
.bluebrio-reveal {
  background: linear-gradient(135deg, #1a0a2e 0%, #0d0620 50%, #1a0a2e 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 61, 165, 0.2);
  border-bottom: 1px solid rgba(255, 61, 165, 0.2);
}

.bluebrio-reveal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.bluebrio-reveal .section-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.reveal-label {
  font-family: var(--font-grotesk);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--magenta);
  margin-bottom: 1rem;
  text-shadow: 0 0 12px rgba(255, 61, 165, 0.5);
}

.reveal-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--bone);
}

.reveal-title em {
  font-style: italic;
  color: var(--magenta);
  text-shadow: 0 0 16px rgba(255, 61, 165, 0.4);
}

.reveal-blurb {
  font-size: 1.05rem;
  color: var(--bone-dim);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.reveal-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-magenta {
  display: inline-block;
  background: var(--magenta);
  color: var(--bone);
  font-family: var(--font-grotesk);
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(255, 61, 165, 0.4);
  transition: transform 0.2s;
}

.cta-magenta:hover { transform: translateY(-2px); }

.cta-outline {
  display: inline-block;
  background: transparent;
  color: var(--bone);
  border: 1px solid rgba(244, 241, 234, 0.3);
  font-family: var(--font-grotesk);
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  transition: border-color 0.2s, color 0.2s;
}

.cta-outline:hover {
  border-color: var(--signal-cyan);
  color: var(--signal-cyan);
}

/* === SHOP SECTION (limited edition Italian) === */
.shop-section {
  background:
    radial-gradient(ellipse at top right, rgba(255, 61, 165, 0.08) 0%, transparent 50%),
    var(--space-navy);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.product-card {
  background: linear-gradient(135deg, rgba(255, 61, 165, 0.08) 0%, rgba(139, 92, 246, 0.06) 100%);
  border: 1px solid rgba(255, 61, 165, 0.3);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 61, 165, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--magenta);
  box-shadow: 0 16px 40px rgba(255, 61, 165, 0.25);
}

.product-card:hover::before { opacity: 1; }

.product-tag {
  display: inline-block;
  background: var(--magenta);
  color: var(--bone);
  font-family: var(--font-grotesk);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--bone);
  position: relative;
  z-index: 1;
}

.product-card p {
  color: var(--bone-dim);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.product-cta {
  display: inline-block;
  font-family: var(--font-grotesk);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--signal-cyan);
  position: relative;
  z-index: 1;
}

.merch-cta-row {
  text-align: center;
  margin-top: 2rem;
}

.cta-merch {
  display: inline-block;
  background: linear-gradient(135deg, var(--signal-cyan) 0%, var(--aurora-violet) 100%);
  color: var(--space-navy-deep);
  font-family: var(--font-grotesk);
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 1rem 2rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(34, 232, 224, 0.3);
  transition: transform 0.2s;
}

.cta-merch:hover { transform: translateY(-2px); }

/* === LINK GRID (used in radio/gear/sound/emergency/other) === */
.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.link-card {
  background: rgba(19, 24, 56, 0.6);
  border: 1px solid rgba(34, 232, 224, 0.15);
  border-radius: 12px;
  padding: 1.25rem;
  transition: transform 0.15s, border-color 0.2s, background 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.link-card:hover {
  transform: translateY(-2px);
  border-color: var(--signal-cyan);
  background: rgba(19, 24, 56, 0.9);
}

.link-card.featured {
  background: linear-gradient(135deg, rgba(34, 232, 224, 0.12) 0%, rgba(139, 92, 246, 0.08) 100%);
  border-color: var(--signal-cyan);
  box-shadow: 0 0 24px rgba(34, 232, 224, 0.15);
}

.link-card.featured:hover {
  box-shadow: 0 0 32px rgba(34, 232, 224, 0.3);
}

.link-emoji {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.link-card h3 {
  font-family: var(--font-grotesk);
  font-weight: 700;
  font-size: 1rem;
  color: var(--bone);
  line-height: 1.3;
}

.link-card p {
  font-size: 0.9rem;
  color: var(--bone-dim);
  line-height: 1.5;
  flex: 1;
}

.link-cta {
  font-family: var(--font-grotesk);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--signal-cyan);
  margin-top: 0.5rem;
}

/* === RADIO SECTION === */
.radio-section {
  background: var(--space-navy-mid);
  border-top: 1px solid rgba(34, 232, 224, 0.1);
  border-bottom: 1px solid rgba(34, 232, 224, 0.1);
}

/* === GEAR SECTION === */
.gear-section {
  background:
    radial-gradient(ellipse at bottom left, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
    var(--space-navy);
}

/* === SOUND SECTION === */
.sound-section {
  background:
    radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, transparent 60%),
    linear-gradient(180deg, var(--space-navy-mid) 0%, var(--space-navy) 100%);
}

/* === EMERGENCY SECTION === */
.emergency-section {
  background:
    radial-gradient(ellipse at top, rgba(255, 61, 165, 0.06) 0%, transparent 50%),
    var(--space-navy-deep);
}

/* === OTHER FAVES === */
.other-section {
  background: var(--space-navy);
}

/* === BRANDS / CONTACT === */
.brands-section {
  background: linear-gradient(135deg, var(--space-navy-deep) 0%, #1a0a2e 100%);
  border-top: 1px solid rgba(255, 61, 165, 0.2);
}

.brands-section .section-inner {
  text-align: center;
}

.brands-section .section-blurb {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.contact-block {
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.5rem;
  background: rgba(255, 61, 165, 0.05);
  border: 1px solid rgba(255, 61, 165, 0.2);
  border-radius: 12px;
}

.contact-label {
  font-family: var(--font-grotesk);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--magenta);
  text-shadow: 0 0 8px rgba(255, 61, 165, 0.4);
}

.contact-email {
  font-family: var(--font-grotesk);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--bone);
  transition: color 0.2s;
  word-break: break-all;
}

.contact-email:hover { color: var(--signal-cyan); }

/* === FOOTER === */
.site-footer {
  background: var(--space-navy-deep);
  padding: 3rem var(--gutter) 2rem;
  border-top: 1px solid rgba(34, 232, 224, 0.15);
}

.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--signal-cyan);
  text-shadow: 0 0 12px rgba(34, 232, 224, 0.4);
  margin-bottom: 0.3rem;
}

.footer-callsign {
  font-family: var(--font-grotesk);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--magenta);
  margin-bottom: 0.3rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--bone-dimmer);
  font-style: italic;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-grotesk);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
}

.footer-social a {
  color: var(--bone-dim);
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--magenta);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--bone-dimmer);
  line-height: 1.6;
  max-width: 540px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  :root {
    --section-pad: 3rem;
    --gutter: 1.25rem;
  }

  .nav-links {
    display: none;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .cta-primary, .cta-secondary {
    width: 100%;
  }

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

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

@media (max-width: 480px) {
  .nav-logo {
    font-size: 0.9rem;
  }

  .hero-title {
    font-size: 3.2rem;
  }
}
