/* ============================================
   CHASING CARDS SOLUTIONS — styles.css
   Premium Sports Card Website
   ============================================ */

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

:root {
  --red:      #D72B2B;
  --red-dark: #B01E1E;
  --red-glow: rgba(215, 43, 43, 0.35);
  --blue:     #1A3A8F;
  --blue-mid: #2050C0;
  --blue-light: #3366DD;
  --blue-glow: rgba(26, 58, 143, 0.4);
  --green:    #3A8F2B;
  --green-bright: #4CAF35;
  --green-glow: rgba(58, 143, 43, 0.3);
  --navy:     #0A0F2C;
  --navy-mid: #0F1640;
  --navy-card: #111830;
  --white:    #FFFFFF;
  --white-80: rgba(255,255,255,0.8);
  --white-50: rgba(255,255,255,0.5);
  --white-15: rgba(255,255,255,0.07);
  --white-08: rgba(255,255,255,0.04);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --radius:   12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* ---- CUSTOM CURSOR ---- */
.cursor {
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease, background 0.2s ease;
  mix-blend-mode: normal;
}
.cursor-trail {
  width: 32px; height: 32px;
  border: 1.5px solid var(--red);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
  opacity: 0.6;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 14px; height: 14px; background: var(--green-bright); }
body:has(a:hover) .cursor-trail,
body:has(button:hover) .cursor-trail { width: 46px; height: 46px; border-color: var(--green-bright); opacity: 0.4; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--blue-mid); border-radius: 3px; }

/* ---- CONTAINER ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ---- SECTION BASE ---- */
.section { padding: 100px 0; position: relative; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-bright);
  background: rgba(76, 175, 53, 0.1);
  border: 1px solid rgba(76, 175, 53, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.tag-red { color: var(--red); background: rgba(215, 43, 43, 0.1); border-color: rgba(215, 43, 43, 0.3); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.section-desc { font-size: 17px; color: var(--white-80); line-height: 1.7; }
.accent-red   { color: var(--red); }
.accent-green { color: var(--green-bright); }
.accent-blue  { color: var(--blue-light); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 24px var(--red-glow);
}
.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 6px 32px var(--red-glow);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { font-size: 19px; padding: 16px 40px; }
.btn-full { width: 100%; justify-content: center; }

/* ---- REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ================================================
   NAV
   ================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(10, 15, 44, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 8px 0;
  box-shadow: 0 2px 40px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 72px; width: auto; max-width: 320px; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-link {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white-80);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta-btn {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px var(--red-glow);
  white-space: nowrap;
}
.nav-cta-btn:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--red-glow);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================
   HERO
   ================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 24px 80px;
  max-width: 100%;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 58, 143, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 58, 143, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: gridPulse 6s ease-in-out infinite;
}
@keyframes gridPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(26, 58, 143, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(215, 43, 43, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 70% 80%, rgba(58, 143, 43, 0.1) 0%, transparent 60%),
    linear-gradient(165deg, var(--navy-mid) 0%, var(--navy) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 40px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 24px;
  grid-column: 1;
}
.dot {
  width: 8px; height: 8px;
  background: var(--green-bright);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(76, 175, 53, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(76, 175, 53, 0); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 28px;
  grid-column: 1;
}
.hero-title .line { display: block; }
.hero-sub {
  font-size: 18px;
  color: var(--white-80);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
  grid-column: 1;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  grid-column: 1;
}
.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  grid-column: 1;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--white-15);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white-80);
}
.badge-icon { font-size: 14px; }

/* ---- HERO VISUAL (Card Stack) ---- */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 2;
  grid-row: 1 / 8;
  height: 420px;
  overflow: hidden;
  padding-right: 20px;
}
.card-stack { position: relative; width: 260px; height: 380px; }
.card-item {
  position: absolute;
  width: 200px; height: 280px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  overflow: hidden;
}
.card-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
}
.card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
  pointer-events: none;
}
.card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.card-sport { font-size: 52px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4)); }
.card-label {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.card-sub {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.card-1 {
  background: linear-gradient(145deg, #1A3A8F, #0A1F5C);
  box-shadow: -16px 16px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
  transform: rotate(-8deg) translate(-30px, 20px);
  z-index: 1;
}
.card-2 {
  background: linear-gradient(145deg, #C42828, #8B1A1A);
  box-shadow: 0 20px 56px rgba(0,0,0,0.5), 0 0 40px rgba(215,43,43,0.25);
  z-index: 3;
  left: 50%; transform: translateX(-50%) rotate(2deg);
}
.card-3 {
  background: linear-gradient(145deg, #2D7A21, #1A4A11);
  box-shadow: 16px 16px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
  transform: rotate(9deg) translate(10px, 20px);
  z-index: 2;
  right: 10px;
}
.card-item:hover { transform: translateY(-16px) scale(1.04) rotate(0deg) !important; z-index: 10; }

/* ---- SCROLL INDICATOR ---- */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--white-50);
  font-size: 11px;
  font-family: var(--font-display);
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 5;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--white-50), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.6); opacity: 1; }
}

/* ================================================
   BUY & SELL
   ================================================ */
.buy-sell {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-mid), var(--blue-light));
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,0.16); }
.service-card:hover::before { opacity: 1; }
.service-card-featured {
  background: linear-gradient(145deg, #0F1B5C, #0A1240);
  border-color: rgba(32, 80, 192, 0.4);
  box-shadow: 0 0 40px rgba(26, 58, 143, 0.2);
}
.service-card-featured::before { opacity: 1; background: linear-gradient(90deg, var(--red), var(--blue-mid)); }
.featured-tag {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 4px 12px;
  border-radius: 100px;
}
.service-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.buying  { background: rgba(26, 58, 143, 0.2); color: var(--blue-light); border: 1px solid rgba(26, 58, 143, 0.3); }
.breaks-icon { background: rgba(215, 43, 43, 0.15); color: var(--red); border: 1px solid rgba(215, 43, 43, 0.3); }
.selling { background: rgba(58, 143, 43, 0.15); color: var(--green-bright); border: 1px solid rgba(58, 143, 43, 0.3); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.service-card p { font-size: 15px; color: var(--white-80); line-height: 1.7; margin-bottom: 20px; }
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.service-list li {
  font-size: 14px;
  color: var(--white-80);
  padding-left: 18px;
  position: relative;
}
.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green-bright);
  font-size: 12px;
}
.service-link {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 2px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.service-link:hover { border-color: var(--red); color: var(--red); }

/* ================================================
   WHATNOT BREAKS
   ================================================ */
.breaks-section {
  position: relative;
  overflow: hidden;
  background: var(--navy-mid);
}
.breaks-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(215,43,43,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 100% 50%, rgba(26,58,143,0.15) 0%, transparent 60%);
}
.breaks-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.breaks-left .section-title { text-align: left; margin-bottom: 20px; }
.breaks-desc { font-size: 17px; color: var(--white-80); line-height: 1.7; margin-bottom: 36px; }
.break-formats { display: flex; flex-direction: column; gap: 18px; margin-bottom: 40px; }
.format-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--white-08);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
}
.format-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.dot-red   { background: var(--red);          box-shadow: 0 0 10px var(--red-glow); }
.dot-blue  { background: var(--blue-light);   box-shadow: 0 0 10px var(--blue-glow); }
.dot-green { background: var(--green-bright); box-shadow: 0 0 10px var(--green-glow); }
.format-item strong { display: block; font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.format-item span { font-size: 14px; color: var(--white-80); }

/* ---- Live Card ---- */
.live-card {
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}
.live-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: linear-gradient(90deg, rgba(215,43,43,0.15), rgba(26,58,143,0.15));
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
}
.live-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(215,43,43,0.7); }
  50% { box-shadow: 0 0 0 6px rgba(215,43,43,0); }
}
.live-platform {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--white-50);
  letter-spacing: 1px;
}
.live-visual {
  padding: 40px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.live-icon { font-size: 56px; margin-bottom: 16px; }
.live-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.live-sub { font-size: 14px; color: var(--white-50); line-height: 1.6; }
.live-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.live-stat {
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.live-stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.stat-label { font-size: 11px; color: var(--white-50); text-transform: uppercase; letter-spacing: 1px; }
.live-follow-btn {
  display: block;
  padding: 18px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  background: linear-gradient(90deg, var(--red), var(--blue-mid));
  transition: opacity 0.2s, filter 0.2s;
}
.live-follow-btn:hover { opacity: 0.9; filter: brightness(1.1); }

/* ================================================
   INVENTORY / SPORTS
   ================================================ */
.inventory-section { background: var(--navy); }
.sport-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sport-card {
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.sport-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.sport-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}
.sport-card:hover::after { opacity: 1; }
.sport-card-wide { grid-column: span 4; }
.sport-emoji { font-size: 44px; margin-bottom: 16px; }
.sport-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.sport-card p { font-size: 14px; color: var(--white-80); line-height: 1.7; margin-bottom: 18px; }
.sport-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sport-tags span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white-80);
}
.sport-card-wide .sport-tags span { padding: 6px 14px; font-size: 12px; }

/* ================================================
   PROCESS SECTION
   ================================================ */
.process-section {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.process-step {
  flex: 1;
  padding: 0 24px;
  position: relative;
}
.process-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-mid), var(--red));
  margin-top: 24px;
  flex-shrink: 0;
  opacity: 0.5;
  align-self: flex-start;
}
.step-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.12);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.step-content p { font-size: 15px; color: var(--white-80); line-height: 1.7; }

/* ================================================
   CONTACT
   ================================================ */
.contact-section {
  background: var(--navy);
  overflow: hidden;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-left .section-title { text-align: left; margin-bottom: 16px; }
.contact-desc { font-size: 17px; color: var(--white-80); line-height: 1.7; margin-bottom: 40px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white-08);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,58,143,0.2);
  border: 1px solid rgba(26,58,143,0.3);
  color: var(--blue-light);
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.contact-item span { font-size: 13px; color: var(--white-50); }

/* ---- Contact Form ---- */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--white-80);
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
  -webkit-appearance: none;
}
.form-group select option { background: var(--navy-card); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--white-50); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(32, 80, 192, 0.15);
}
.form-success {
  display: none;
  padding: 14px 18px;
  background: rgba(58, 143, 43, 0.15);
  border: 1px solid rgba(76, 175, 53, 0.3);
  border-radius: var(--radius);
  color: var(--green-bright);
  font-weight: 600;
  font-size: 15px;
  text-align: center;
}
.form-success.show { display: block; }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: #060A1E;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 72px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 58, 143, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 58, 143, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
  position: relative;
}
.footer-brand .footer-logo { height: 52px; width: auto; max-width: 300px; object-fit: contain; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; color: var(--white-50); line-height: 1.7; max-width: 260px; }
.footer-links-group h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-80);
  margin-bottom: 20px;
}
.footer-links-group ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links-group a {
  font-size: 14px;
  color: var(--white-50);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links-group a:hover { color: var(--white); }
.footer-follow h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-80);
  margin-bottom: 20px;
}
.whatnot-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(90deg, var(--red), var(--blue-mid));
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 24px;
  transition: opacity 0.2s, transform 0.2s;
  width: fit-content;
}
.whatnot-btn:hover { opacity: 0.85; transform: translateY(-2px); }
.footer-tagline { font-size: 13px; color: var(--white-50); line-height: 1.7; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.footer-bottom span { font-size: 13px; color: var(--white-50); }
.footer-credit a { color: var(--white-50); text-decoration: none; transition: color 0.2s; }
.footer-credit a:hover { color: var(--white); }

/* ================================================
   RESPONSIVE — TABLET
   ================================================ */
@media (max-width: 1024px) {
  .nav-inner { padding: 0 32px; }
  .logo-img { height: 60px; }
  .nav-links { gap: 20px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: span 2; }
  .sport-grid { grid-template-columns: 1fr 1fr; }
  .sport-card-wide { grid-column: span 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .process-steps { flex-direction: column; gap: 40px; }
  .process-connector { display: none; }
  .process-step { padding: 0; }
  .hero-content { grid-template-columns: 55% 45%; gap: 24px; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-eyebrow, .hero-title, .hero-sub, .hero-actions, .hero-badges { grid-column: 1; }
  .breaks-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}

/* ================================================
   RESPONSIVE — MOBILE
   ================================================ */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 20px; justify-content: space-between; gap: 16px; }
  .logo-img { height: 52px; }
  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 100%;
    max-width: 300px;
    background: rgba(10, 15, 44, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 20px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 1px solid rgba(255,255,255,0.08);
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 24px; }
  .nav-cta-btn { font-size: 18px; padding: 14px 28px; width: 100%; text-align: center; }
  .hero { padding: 110px 20px 80px; }
  .hero-title { font-size: clamp(44px, 12vw, 64px); }
  .hero-sub { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: span 1; }
  .sport-grid { grid-template-columns: 1fr 1fr; }
  .sport-card-wide { grid-column: span 2; }
  .form-row { grid-template-columns: 1fr; }
  .stat-num { font-size: 16px; }
  .stat-label { font-size: 10px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  body { cursor: auto; }
  .cursor, .cursor-trail { display: none; }
}

/* ================================================
   RESPONSIVE — SMALL MOBILE
   ================================================ */
@media (max-width: 480px) {
  .nav-inner { padding: 0 16px; }
  .logo-img { height: 44px; }
  .hero { padding: 100px 16px 72px; }
  .hero-title { font-size: 42px; }
  .hero-sub { font-size: 15px; }
  .hero-badges { gap: 6px; }
  .badge { font-size: 11px; padding: 5px 10px; }
  .section { padding: 56px 0; }
  .section-title { font-size: 32px; }
  .container { padding: 0 16px; }
  .sport-grid { grid-template-columns: 1fr; }
  .sport-card-wide { grid-column: span 1; }
  .service-card { padding: 28px 20px; }
  .live-stats { grid-template-columns: repeat(3, 1fr); }
  .stat-num { font-size: 14px; }
  .breaks-layout { gap: 32px; }
  .contact-layout { gap: 32px; }
  .footer { padding: 48px 0 24px; }
  .footer-inner { gap: 24px; }
  .btn { font-size: 15px; padding: 13px 24px; }
  .btn-lg { font-size: 16px; padding: 14px 28px; }
}
.forsale-section { background: var(--navy-mid); border-top: 1px solid rgba(255,255,255,0.06); }
.forsale-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.forsale-card {
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.forsale-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,0.16); }
.forsale-img-wrap { position: relative; width: 100%; aspect-ratio: 3/4; overflow: hidden; background: var(--navy); }
.forsale-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.forsale-card:hover .forsale-img { transform: scale(1.04); }
.forsale-sport-tag {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(10,15,44,0.85);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.forsale-info { padding: 24px; }
.forsale-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--white);
}
.forsale-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--green-bright);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.forsale-btn { width: 100%; justify-content: center; font-size: 14px; padding: 12px 20px; }
.forsale-empty { text-align: center; padding: 60px 0; color: var(--white-50); font-size: 16px; }
.forsale-empty a { color: var(--green-bright); }
@media (max-width: 1024px) { .forsale-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .forsale-grid { grid-template-columns: 1fr; } }
