/* ============================================================
   SULLYS SPORTING GOODS — Design System
   80s Retrowave / Hot Colors Edition
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,700;0,9..40,800;1,9..40,400&display=swap');

/* --------------------------------
   Design Tokens
   -------------------------------- */
:root {
  /* ── 80s Hot Colours ── */
  --hot-pink:     #D4006A;
  --neon-cyan:    #00A8C2;
  --neon-purple:  #9B00FF;
  --neon-orange:  #FF6000;
  --electric-yel: #FFE000;
  --neon-green:   #00FF88;

  /* ── Backgrounds ── */
  --void:         #050010;   /* near-black with purple hint */
  --deep:         #0C001F;
  --dark-purple:  #150035;
  --dark-blue:    #030620;
  --dark-red:     #1A0005;

  /* ── Lights / Text ── */
  --white:        #FFFFFF;
  --off-white:    #F5EFFF;  /* slightly lavender-tinted */
  --light-grey:   #E8E0FF;
  --mid-grey:     #8A7AAA;
  --dim:          rgba(255,255,255,0.55);

  /* ── Semantic aliases kept for compat ── */
  --primary:       var(--neon-cyan);
  --secondary:     var(--hot-pink);
  --yellow:        var(--electric-yel);
  --teal:          var(--neon-cyan);
  --purple:        var(--neon-purple);
  --dark:          var(--void);
  --snow:          #F8F4FF;
  --gray-100:      #F0E8FF;
  --gray-200:      #DDD0FF;
  --gray-400:      #9980CC;
  --gray-500:      #7060AA;
  --gray-700:      #3D2D6A;
  --text:          #1A0A35;

  /* ── Gradients ── */

  /* Synthwave hero base (dark → deep purple) */
  --grad-hero:   linear-gradient(180deg, var(--void) 0%, #0D0025 45%, #1A0040 100%);

  /* Page-specific hero backgrounds */
  --grad-ski:    linear-gradient(180deg, #030618 0%, #060F2E 40%, #0C1A4A 100%);
  --grad-shoe:   linear-gradient(180deg, #030C10 0%, #061825 40%, #0A2535 100%);
  --grad-skate:  linear-gradient(180deg, #080018 0%, #0F0030 40%, #1A0050 100%);
  --grad-jr:     linear-gradient(180deg, #030A18 0%, #071228 40%, #0D1E40 100%);
  --grad-fit:    linear-gradient(180deg, #180003 0%, #280008 40%, #3A0010 100%);
  --grad-about:  linear-gradient(180deg, var(--void) 0%, #0C0022 40%, #150035 100%);
  --grad-contact:linear-gradient(180deg, #020A18 0%, #05152A 40%, #0A2040 100%);

  /* Accent gradients */
  --grad-sunset: linear-gradient(180deg, var(--neon-purple) 0%, var(--hot-pink) 40%, var(--neon-orange) 70%, var(--electric-yel) 100%);
  --grad-neon:   linear-gradient(90deg, var(--hot-pink) 0%, var(--neon-purple) 50%, var(--neon-cyan) 100%);
  --grad-pink:   linear-gradient(135deg, var(--hot-pink) 0%, var(--neon-purple) 100%);
  --grad-warm:   linear-gradient(135deg, var(--hot-pink) 0%, var(--neon-orange) 50%, var(--electric-yel) 100%);
  --grad-cool:   linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-cyan) 100%);
  --grad-cta:    linear-gradient(135deg, #1A0040 0%, #2E0060 50%, #1A0040 100%);

  /* ── Neon Glows ── */
  --glow-pink:   0 0 12px var(--hot-pink), 0 0 32px rgba(212,0,106,0.5), 0 0 60px rgba(212,0,106,0.2);
  --glow-cyan:   0 0 12px var(--neon-cyan), 0 0 32px rgba(0,168,194,0.5), 0 0 60px rgba(0,168,194,0.2);
  --glow-purple: 0 0 12px var(--neon-purple), 0 0 32px rgba(155,0,255,0.5), 0 0 60px rgba(155,0,255,0.2);
  --glow-yel:    0 0 12px var(--electric-yel), 0 0 32px rgba(255,224,0,0.5), 0 0 60px rgba(255,224,0,0.2);

  /* ── Typography ── */
  --font-display: 'Bebas Neue', 'Impact', 'Arial Black', sans-serif;
  --font-body:    'DM Sans', 'Inter', system-ui, sans-serif;

  /* ── Spacing ── */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-xxl:  6rem;

  /* ── Radii ── */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.3);
  --shadow-md:  0 4px 24px rgba(0,0,0,0.45);
  --shadow-lg:  0 8px 48px rgba(0,0,0,0.6);
  --shadow-xl:  0 16px 72px rgba(0,0,0,0.7);

  --nav-height: 76px;
  --max-w:      1200px;
  --max-w-wide: 1380px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; }

/* --------------------------------
   Layout Helpers
   -------------------------------- */
.container      { max-width: var(--max-w);      margin-inline: auto; padding-inline: 1.5rem; }
.container-wide { max-width: var(--max-w-wide); margin-inline: auto; padding-inline: 1.5rem; }

.section     { padding-block: var(--space-xxl); }
.section-sm  { padding-block: var(--space-xl); }
.section-xs  { padding-block: var(--space-lg); }
.page-body   { padding-top: var(--nav-height); }

.text-center  { text-align: center; }
.text-white   { color: var(--white) !important; }
.text-pink    { color: var(--hot-pink); }
.text-cyan    { color: var(--neon-cyan); }
.text-yellow  { color: var(--electric-yel); }
.text-purple  { color: var(--neon-purple); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-sm      { gap: var(--space-sm); }
.gap-md      { gap: var(--space-md); }

/* --------------------------------
   Typography
   -------------------------------- */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  line-height: 0.91;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--dark-purple);
}

h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--dark-purple);
}

h4 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--dark-purple);
}

p { color: var(--gray-700); line-height: 1.75; }

.lead {
  font-size: 1.15rem;
  color: var(--gray-700);
  line-height: 1.75;
}

/* Eyebrow labels */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hot-pink);
  margin-bottom: 0.75rem;
}
.eyebrow-cyan   { color: var(--neon-cyan); }
.eyebrow-yellow { color: var(--electric-yel); }
.eyebrow-purple { color: var(--neon-purple); }

/* Gradient headline (the 80s chrome/neon look) */
.headline-gradient {
  background: linear-gradient(90deg, var(--hot-pink) 0%, var(--electric-yel) 60%, var(--neon-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --------------------------------
   Navigation
   -------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(5, 0, 16, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 0, 128, 0.25);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  border-bottom-color: rgba(255, 0, 128, 0.5);
  box-shadow: 0 4px 40px rgba(255, 0, 128, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w-wide);
  margin-inline: auto;
  padding-inline: 1.5rem;
  gap: 1rem;
}

/* Logo */
.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
}

/* ── Nav logo ── */
.nav-logo { height: 50px; width: auto; display: block; }

.nav-logo-fallback {
  font-family: var(--font-display);
  font-size: 2.1rem;
  background: var(--grad-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
  display: none;
}

/* Neon flicker on hover */
.nav-logo-wrap:hover .nav-logo-fallback {
  animation: logo-flicker 1.1s linear infinite;
}

@keyframes logo-flicker {
  0%, 18%, 22%, 24%, 26%, 53%, 57%, 100% { opacity: 1; }
  19%, 23%, 25%, 54%, 56%                 { opacity: 0.1; }
}


/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav-links a {
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--hot-pink);
  text-shadow: var(--glow-pink);
}

.nav-links .nav-cta {
  background: var(--hot-pink);
  color: var(--white);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.1rem;
  margin-left: 0.4rem;
  box-shadow: 0 0 14px rgba(212,0,106,0.5);
}

.nav-links .nav-cta:hover {
  background: #e5006e;
  text-shadow: none;
  box-shadow: var(--glow-pink);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--hot-pink);
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 0 6px var(--hot-pink);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(5, 0, 16, 0.97);
  backdrop-filter: blur(20px);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 999;
  flex-direction: column;
  gap: 0.2rem;
  border-top: 2px solid var(--hot-pink);
  box-shadow: 0 8px 40px rgba(212,0,106,0.2);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
  color: rgba(255,255,255,0.75);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--hot-pink);
  background: rgba(255, 0, 128, 0.1);
  text-shadow: var(--glow-pink);
}

/* --------------------------------
   HERO SECTIONS
   -------------------------------- */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--grad-hero);
}

.hero-sm {
  min-height: 62vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* ── Synthwave Perspective Grid ── */
.hero-grid {
  position: absolute;
  bottom: 0;
  left: -20%;
  right: -20%;
  height: 55%;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(212,0,106,0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,0,106,0.18) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(350px) rotateX(72deg);
  transform-origin: 50% 0%;
  opacity: 0.9;
}

/* Fade the grid toward the horizon */
.hero-grid::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to bottom, var(--grad-base, #050010), transparent);
}

/* ── Synthwave Sunset Circle ── */
.hero-sun {
  position: absolute;
  right: 8%;
  top: 48%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: linear-gradient(180deg,
    var(--electric-yel) 0%,
    var(--neon-orange)  30%,
    var(--hot-pink)     60%,
    var(--neon-purple)  100%);
  opacity: 0.9;
  pointer-events: none;
  box-shadow: 0 0 80px rgba(212,0,106,0.5), 0 0 140px rgba(255,96,0,0.3);
}

/* Horizontal scan lines across the sun */
.hero-sun::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-linear-gradient(
    180deg,
    transparent 0px,
    transparent 14px,
    rgba(5,0,16,0.55) 14px,
    rgba(5,0,16,0.55) 16px
  );
}

/* Glow ring around sun */
.hero-sun::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 0 60px rgba(212,0,106,0.3), 0 0 120px rgba(255,96,0,0.2);
}

/* ── Hero Character Illustrations ── */
.hero-characters {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  height: 400px;
  pointer-events: none;
  filter: drop-shadow(0 0 24px rgba(155,0,255,0.25)) drop-shadow(0 0 60px rgba(212,0,106,0.15));
}

.hero-characters svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

@media (max-width: 1100px) {
  .hero-characters { width: 280px; height: 330px; }
}

@media (max-width: 900px) {
  .hero-characters { width: 220px; height: 260px; right: 1%; }
}

@media (max-width: 768px) {
  .hero-characters { opacity: 0.28; width: 180px; height: 212px; right: 0; }
}

@media (max-width: 480px) {
  .hero-characters { display: none; }
}

/* ── Diagonal stripe texture (subtle) ── */
.hero-stripes {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 60px,
    rgba(155,0,255,0.025) 60px,
    rgba(155,0,255,0.025) 120px
  );
  pointer-events: none;
}

/* ── Neon rainbow stripe at bottom ── */
.hero-stripe-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-neon);
  box-shadow: 0 0 10px rgba(212,0,106,0.7);
}

/* ── Hero content ── */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  line-height: 0.91;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
  /* Neon text glow */
  text-shadow:
    0 0 20px rgba(212,0,106,0.8),
    0 0 50px rgba(212,0,106,0.4),
    0 0 100px rgba(212,0,106,0.15);
}

/* Gradient headline variant */
.hero-content h1.is-gradient {
  background: linear-gradient(90deg,
    var(--hot-pink) 0%,
    var(--electric-yel) 50%,
    var(--neon-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 20px rgba(212,0,106,0.6));
}

.hero-content .lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin-bottom: 2rem;
}

/* Hero badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: rgba(212,0,106,0.1);
  border: 1px solid rgba(212,0,106,0.4);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  box-shadow: 0 0 8px rgba(212,0,106,0.2);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* --------------------------------
   Buttons
   -------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-lg  { padding: 1.1rem 2.5rem; font-size: 0.95rem; }
.btn-sm  { padding: 0.6rem 1.4rem; font-size: 0.8rem; }

/* Hot pink — primary CTA */
.btn-primary {
  background: var(--hot-pink);
  color: var(--white);
  border-color: var(--hot-pink);
  box-shadow: 0 0 18px rgba(212,0,106,0.5);
}
.btn-primary:hover {
  background: #e5006e;
  border-color: #e5006e;
  transform: translateY(-2px);
  box-shadow: var(--glow-pink);
}

/* Cyan */
.btn-cyan {
  background: var(--neon-cyan);
  color: var(--void);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 18px rgba(0,168,194,0.4);
}
.btn-cyan:hover {
  background: #00ccee;
  transform: translateY(-2px);
  box-shadow: var(--glow-cyan);
}

/* Yellow */
.btn-yellow {
  background: var(--electric-yel);
  color: var(--void);
  border-color: var(--electric-yel);
  box-shadow: 0 0 18px rgba(255,224,0,0.4);
}
.btn-yellow:hover {
  background: #f0d200;
  transform: translateY(-2px);
  box-shadow: var(--glow-yel);
}

/* Dark / navy */
.btn-navy {
  background: var(--void);
  color: var(--white);
  border-color: rgba(212,0,106,0.4);
}
.btn-navy:hover {
  border-color: var(--hot-pink);
  box-shadow: 0 0 14px rgba(212,0,106,0.35);
  transform: translateY(-2px);
}

/* White */
.btn-white {
  background: var(--white);
  color: var(--dark-purple);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Outline white */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

/* Outline pink */
.btn-outline-pink {
  background: transparent;
  color: var(--hot-pink);
  border-color: var(--hot-pink);
  box-shadow: 0 0 8px rgba(212,0,106,0.2);
}
.btn-outline-pink:hover {
  background: rgba(212,0,106,0.1);
  box-shadow: var(--glow-pink);
  transform: translateY(-2px);
}

/* --------------------------------
   Grid Systems
   -------------------------------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }

.grid-auto-200 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

/* --------------------------------
   Cards
   -------------------------------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-200);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 40px rgba(155,0,255,0.15), var(--shadow-lg);
  border-color: rgba(155,0,255,0.3);
}

.card-img-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-img-wrap img { transform: scale(1.04); }

.card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--void), var(--dark-purple));
}

.card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hot-pink);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  text-transform: uppercase;
  color: var(--dark-purple);
  line-height: 1.05;
}

.card-text {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.65;
  flex: 1;
}

/* Category cards (dark gradient with image background) */
.cat-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  border: 1px solid rgba(212,0,106,0.15);
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 60px rgba(212,0,106,0.3), var(--shadow-xl);
  border-color: rgba(212,0,106,0.4);
}

.cat-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

.cat-card:hover .cat-card-bg { transform: scale(1.06); }

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(5,0,16,0.95) 0%,
    rgba(5,0,16,0.5) 50%,
    rgba(5,0,16,0.1) 100%);
}

.cat-card-content {
  position: relative;
  z-index: 2;
  padding: 1.75rem;
  color: var(--white);
  width: 100%;
}

.cat-card-content .eyebrow {
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  margin-bottom: 0.4rem;
}

.cat-card-content h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.4rem;
  text-shadow: 0 0 20px rgba(212,0,106,0.6);
}

.cat-card-content p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  margin-bottom: 1.1rem;
}

.cat-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--electric-yel);
  text-shadow: var(--glow-yel);
  transition: gap 0.2s ease;
}

.cat-card:hover .cat-arrow { gap: 0.7rem; }

/* --------------------------------
   Section Themes
   -------------------------------- */

/* White sections (clean, readable, contrast with dark heroes) */
.section-light  { background: var(--white); }
.section-off    { background: var(--snow); }
.section-gray   { background: var(--gray-100); }
.section-warm   { background: #FFF0F8; } /* blush pink */

/* Dark sections (immersive 80s feel) */
.section-dark {
  background: var(--void);
}
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }
.section-dark p   { color: rgba(255,255,255,0.68); }
.section-dark .lead { color: rgba(255,255,255,0.8); }

.section-navy   { background: var(--deep); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p  { color: rgba(255,255,255,0.68); }

/* Dark sections card overrides */
.section-dark .feature-item,
.section-navy .feature-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,0,106,0.15);
}
.section-dark .feature-item h4 { color: var(--white); }
.section-dark .feature-item p  { color: rgba(255,255,255,0.6); }

/* --------------------------------
   Feature / Advantage Items
   -------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2.25rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 32px rgba(155,0,255,0.15);
  border-color: rgba(155,0,255,0.3);
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 2rem;
}

.feature-item h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--dark-purple);
  margin-bottom: 0.6rem;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* --------------------------------
   Neon accent dividers
   -------------------------------- */
.neon-stripe {
  height: 3px;
  background: var(--grad-neon);
  box-shadow: 0 0 10px rgba(212,0,106,0.6), 0 0 20px rgba(212,0,106,0.3);
}

.section-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.section-eyebrow-row::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(212,0,106,0.4), transparent);
}

/* --------------------------------
   Brand Logo Grid
   -------------------------------- */
.brand-logo-section {
  background: var(--void);
  border-radius: var(--radius-xl);
  padding: 3rem;
  border: 1px solid rgba(212,0,106,0.2);
  box-shadow: 0 0 40px rgba(155,0,255,0.1), inset 0 0 60px rgba(155,0,255,0.04);
}

.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1.25rem;
  align-items: center;
}

.brand-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(212,0,106,0.18);
  transition: all 0.25s ease;
  min-height: 80px;
}

.brand-logo-item:hover {
  border-color: var(--hot-pink);
  background: rgba(212,0,106,0.08);
  box-shadow: 0 0 20px rgba(212,0,106,0.25);
  transform: translateY(-3px);
}

.brand-logo-item img {
  max-height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(20%) brightness(1.1);
  transition: filter 0.25s ease;
}

.brand-logo-item:hover img {
  filter: grayscale(0%) brightness(1.2);
}

.brand-logo-text {
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-align: center;
  line-height: 1.3;
}

/* --------------------------------
   CTA Banner
   -------------------------------- */
.cta-banner {
  padding: var(--space-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--grad-cta);
}

/* Neon grid overlay on CTA */
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,0,106,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,0,106,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  text-shadow: 0 0 30px rgba(212,0,106,0.5);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-banner .cta-inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin-inline: auto;
}

/* --------------------------------
   Pricing Cards
   -------------------------------- */
.price-card {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212,0,106,0.2);
  transition: all 0.3s ease;
  position: relative;
}

.price-card:hover,
.price-card.featured {
  border-color: var(--hot-pink);
  box-shadow: 0 0 40px rgba(212,0,106,0.25), var(--shadow-xl);
  transform: translateY(-4px);
}

.price-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--hot-pink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  box-shadow: var(--glow-pink);
}

.price-label {
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--electric-yel);
  line-height: 1;
  margin-block: 1rem;
  text-shadow: var(--glow-yel);
}

.price-period {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

.price-features {
  text-align: left;
  margin-bottom: 1.75rem;
}

.price-features li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.price-features li::before {
  content: '✓';
  color: var(--neon-cyan);
  font-weight: 800;
  text-shadow: var(--glow-cyan);
  flex-shrink: 0;
}

/* --------------------------------
   Steps / Process List
   -------------------------------- */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--electric-yel);
  flex-shrink: 0;
  background: rgba(255,224,0,0.12);
  border: 1px solid rgba(255,224,0,0.3);
  text-shadow: var(--glow-yel);
}

.step-content h4 { color: var(--white); font-size: 1rem; margin-bottom: 0.3rem; }
.step-content p  { font-size: 0.88rem; color: rgba(255,255,255,0.55); }

/* --------------------------------
   Location Section
   -------------------------------- */
.location-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(155,0,255,0.15);
}

.location-info {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.location-map {
  background: var(--gray-100);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  inset: 0;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.location-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.location-detail-text strong {
  display: block;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
  color: var(--dark-purple);
}

.location-detail-text span {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.55;
}

/* --------------------------------
   Quote / Blockquote
   -------------------------------- */
.quote-block {
  border-left: 3px solid var(--hot-pink);
  padding: 1.5rem 2rem;
  background: rgba(212,0,106,0.05);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: -4px 0 20px rgba(212,0,106,0.1);
}

.quote-block blockquote {
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.quote-block cite {
  font-size: 0.82rem;
  font-weight: 800;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* --------------------------------
   Stat Pill
   -------------------------------- */
.stat-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 2rem;
  background: rgba(212,0,106,0.1);
  border: 1px solid rgba(212,0,106,0.3);
  border-radius: var(--radius-lg);
  min-width: 130px;
  box-shadow: 0 0 20px rgba(212,0,106,0.1);
}

.stat-pill .stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--electric-yel);
  line-height: 1;
  margin-bottom: 0.25rem;
  text-shadow: var(--glow-yel);
}

.stat-pill .stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-align: center;
}

/* --------------------------------
   Level Badges
   -------------------------------- */
.level-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.level-beginner     { background: rgba(0,255,136,0.15); color: var(--neon-green); border: 1px solid rgba(0,255,136,0.3); }
.level-intermediate { background: rgba(0,168,194,0.15); color: var(--neon-cyan);  border: 1px solid rgba(0,168,194,0.3); }
.level-advanced     { background: rgba(255,96,0,0.15);  color: var(--neon-orange);border: 1px solid rgba(255,96,0,0.3); }
.level-all          { background: rgba(212,0,106,0.15); color: var(--hot-pink);   border: 1px solid rgba(212,0,106,0.3); }

/* --------------------------------
   Footer
   -------------------------------- */
.footer {
  background: var(--void);
  color: var(--white);
  padding: var(--space-xl) 0 var(--space-md);
  border-top: 1px solid rgba(212,0,106,0.2);
  position: relative;
  overflow: hidden;
}

/* Subtle grid texture in footer */
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(155,0,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155,0,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(212,0,106,0.12);
  margin-bottom: var(--space-md);
}

.footer-brand-logo {
  height: 46px;
  width: auto;
  margin-bottom: 1.25rem;
  mix-blend-mode: screen;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: #fff;
  -webkit-text-fill-color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  position: relative;
  display: none;
}

.footer-brand-name::before {
  content: 'SULLYS';
  position: absolute;
  top: 0; left: 0;
  -webkit-text-fill-color: var(--hot-pink);
  color: var(--hot-pink);
  background: none;
  transform: translate(-2px, 1px);
  clip-path: polygon(0 22%, 100% 22%, 100% 48%, 0 48%);
  opacity: 0.8;
  pointer-events: none;
}

.footer-brand-name::after {
  content: 'SULLYS';
  position: absolute;
  top: 0; left: 0;
  -webkit-text-fill-color: var(--neon-cyan);
  color: var(--neon-cyan);
  background: none;
  transform: translate(2px, -1px);
  clip-path: polygon(0 58%, 100% 58%, 100% 80%, 0 80%);
  opacity: 0.8;
  pointer-events: none;
}

.footer-brand-name:hover {
  animation: logo-flicker 1.1s linear infinite;
}
.footer-brand-name:hover::before {
  animation: logo-glitch-r 0.14s steps(1) infinite;
}
.footer-brand-name:hover::after {
  animation: logo-glitch-b 0.12s steps(1) infinite;
}

.footer-tagline {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hot-pink);
  text-shadow: 0 0 8px rgba(212,0,106,0.4);
  margin-bottom: 1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.4rem; }

.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--electric-yel);
  text-shadow: var(--glow-yel);
}

.footer-address {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
}

.footer-address strong {
  color: var(--white);
  display: block;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.footer-address em {
  font-style: normal;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-top: 0.5rem;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.28);
}

.footer-local-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212,0,106,0.1);
  border: 1px solid rgba(212,0,106,0.25);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}

/* --------------------------------
   Animations
   -------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes neonPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.7; }
}

.animate-up { animation: fadeUp 0.65s ease forwards; }
.delay-1 { animation-delay: 0.1s;  opacity: 0; }
.delay-2 { animation-delay: 0.22s; opacity: 0; }
.delay-3 { animation-delay: 0.34s; opacity: 0; }
.delay-4 { animation-delay: 0.46s; opacity: 0; }

/* --------------------------------
   Responsive
   -------------------------------- */
@media (max-width: 1100px) {
  .grid-4  { grid-template-columns: repeat(2, 1fr); }
  .grid-5  { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .location-card { grid-template-columns: 1fr; }
  .location-map  { min-height: 280px; }
}

@media (max-width: 768px) {
  .nav-links     { display: none; }
  .nav-hamburger { display: flex; }

  .hero          { min-height: 80vh; }
  .hero-sun      { width: 200px; height: 200px; right: -20px; opacity: 0.5; }

  .grid-2  { grid-template-columns: 1fr; }
  .grid-3  { grid-template-columns: 1fr; }
  .grid-4  { grid-template-columns: 1fr; }
  .grid-5  { grid-template-columns: repeat(2, 1fr); }

  .section     { padding-block: var(--space-xl); }
  .section-sm  { padding-block: var(--space-lg); }

  .footer-grid   { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .location-card { grid-template-columns: 1fr; }
  .location-info { padding: 2rem; }

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

@media (max-width: 480px) {
  .grid-5 { grid-template-columns: 1fr; }
  .brand-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-sun { display: none; }
}
