/* ============================================================
   kids-hockey.com — Main Stylesheet
   UI Kit 3 (Portal Light) + Kit 1 + Kit 2 elements
   Version: 1.0.0
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;900&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ── DESIGN TOKENS (UI Kit 3) ── */
:root {
  /* Brand Colors */
  --navy:   #0B2D6E;
  --blue:   #2563EB;
  --orange: #F97316;
  --green:  #16A34A;
  --red:    #DC2626;
  --amber:  #D97706;
  --purple: #7C3AED;
  --teal:   #0891B2;

  /* UI Colors */
  --bg:     #F1F5F9;
  --white:  #FFFFFF;
  --text:   #0F172A;
  --text2:  #475569;
  --text3:  #94A3B8;
  --border: #E2E8F0;
  --surf:   #F8FAFC;

  /* Tier Badge Colors */
  --tier-aaa-bg:  #FEF3C7;
  --tier-aaa-txt: #92400E;
  --tier-aa-bg:   #F1F5F9;
  --tier-aa-txt:  #475569;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* Border Radius */
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-card: 12px;
  --radius-lg:  16px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-card: 0 1px 4px rgba(15,23,42,.06);
  --shadow-hover: 0 4px 16px rgba(15,23,42,.10);
  --shadow-nav: 0 2px 12px rgba(11,45,110,.15);

  /* Typography */
  --font-display: 'Archivo', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Container */
  --container: 1280px;
  --nav-height: 64px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; }
input, select, textarea { font-family: inherit; }

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: var(--navy);
}
h1 { font-size: clamp(28px, 4vw, 48px); }
h2 { font-size: clamp(22px, 3vw, 34px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }
h4 { font-size: 18px; }
h5 { font-size: 16px; font-weight: 700; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.section-title { margin-bottom: 12px; }
.section-desc { color: var(--text2); max-width: 640px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  transition: all 0.18s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
}
.btn-primary:hover {
  background: #1D4ED8;
  border-color: #1D4ED8;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
}
.btn-orange:hover {
  background: #EA580C;
  border-color: #EA580C;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
}
.btn-ghost {
  background: transparent;
  color: var(--text2);
  border: 2px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  text-decoration: none;
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--white);
}
.btn-white:hover {
  background: var(--bg);
  text-decoration: none;
}
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-full { width: 100%; }

/* ── BADGES ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.badge-aaa { background: var(--tier-aaa-bg); color: var(--tier-aaa-txt); }
.badge-aa  { background: var(--tier-aa-bg);  color: var(--tier-aa-txt); border: 1px solid var(--border); }
.badge-a   { background: var(--white); color: var(--text3); border: 1px solid var(--border); }
.badge-pro { background: #FEF3C7; color: #92400E; }
.badge-new { background: #DCFCE7; color: var(--green); }
.badge-open   { background: #DCFCE7; color: var(--green); }
.badge-closing { background: #FEF3C7; color: var(--amber); }
.badge-closed  { background: var(--surf); color: var(--text3); border: 1px solid var(--border); }

/* Kit 2 Club Badges */
.club-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.club-badge-ranked   { background: #EFF6FF; color: #1D4ED8; border: 1px solid #BFDBFE; }
.club-badge-ncaa     { background: #F0FDF4; color: #15803D; border: 1px solid #BBF7D0; }
.club-badge-value    { background: #FFF7ED; color: #C2410C; border: 1px solid #FED7AA; }
.club-badge-reviewed { background: #FDF4FF; color: #7E22CE; border: 1px solid #E9D5FF; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

/* ── FORMS ── */
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s;
  outline: none;
}
.form-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.form-input::placeholder { color: var(--text3); }
.form-input.error { border-color: var(--red); }
.form-error { font-size: 12px; color: var(--red); margin-top: 4px; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* ── NAVIGATION ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  height: var(--nav-height);
  box-shadow: var(--shadow-nav);
}
.nav-inner {
  min-height: var(--nav-height);

  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img { height: 36px; width: auto; }
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--white);
  line-height: 1;
}
.nav-logo-text span { color: #60A5FA; }
.nav-logo:hover { text-decoration: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  padding: 8px 14px;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.15s;
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.1);
  text-decoration: none;
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--orange);
  border-radius: var(--radius-pill);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-search-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 16px;
  transition: all 0.15s;
}
.nav-search-btn:hover { background: rgba(255,255,255,.2); color: var(--white); }

.nav-signin {
  color: rgba(255,255,255,.8);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
}
.nav-signin:hover { color: var(--white); text-decoration: none; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 1010;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-link {
  display: block;
  padding: 14px 16px;
  color: rgba(255,255,255,.8);
  font-size: 18px;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: all 0.15s;
}
.mobile-menu-link:hover { background: rgba(255,255,255,.1); color: var(--white); text-decoration: none; }
.mobile-menu-footer { margin-top: auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); }

/* ── SEARCH BAR ── */
.search-bar {
  position: relative;
  width: 100%;
}
.search-bar-input {
  width: 100%;
  height: 54px;
  padding: 0 140px 0 52px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.search-bar-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37,99,235,.1);
}
.search-bar-input::placeholder { color: var(--text3); }
.search-bar-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text3);
  font-size: 18px;
  pointer-events: none;
}
.search-bar-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
}

/* ── FILTER CHIPS ── */
.filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-chip {
  padding: 6px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  background: var(--white);
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.filter-chip:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.filter-chip.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* ── CLUB SCORE RING ── */
.score-ring-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.score-ring { transform: rotate(-130deg); }
.score-ring-track { fill: none; stroke: var(--border); }
.score-ring-fill  { fill: none; stroke-linecap: round; transition: stroke-dashoffset 0.8s ease; }
.score-ring-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
}
.score-ring-num {
  font-family: var(--font-mono);
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
}
.score-ring-lbl {
  font-size: 9px;
  color: var(--text3);
  letter-spacing: 0.5px;
  margin-top: 2px;
}
.score-ring-container {
  position: relative;
  display: inline-block;
}

/* Score colors */
.score-high  { stroke: var(--green); }
.score-mid   { stroke: var(--amber); }
.score-low   { stroke: var(--red);   }
.score-high-txt { color: var(--green); }
.score-mid-txt  { color: var(--amber); }
.score-low-txt  { color: var(--red);   }

/* ── CLUB CARD ── */
.club-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 20px;
  position: relative;
  transition: all 0.18s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.club-card:hover {
  border-left: 3px solid var(--navy);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.club-card-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.club-logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  overflow: hidden;
}
.club-logo img { width: 100%; height: 100%; object-fit: cover; }
.club-info { flex: 1; min-width: 0; }
.club-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.club-location {
  font-size: 12px;
  color: var(--text3);
  margin-top: 2px;
}
.club-tier-wrap {
  position: absolute;
  top: 14px;
  right: 14px;
}

.club-card-mid {
  display: flex;
  align-items: center;
  gap: 14px;
}
.club-stats-row {
  display: flex;
  gap: 10px;
  flex: 1;
  flex-wrap: wrap;
}
.club-stat-pill {
  flex: 1;
  min-width: 70px;
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px 10px;
  text-align: center;
}
.club-stat-val {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  display: block;
  line-height: 1;
}
.club-stat-lbl {
  font-size: 10px;
  color: var(--text3);
  margin-top: 3px;
  letter-spacing: 0.3px;
}

.club-badges-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.club-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text2);
}
.stars { color: #F59E0B; letter-spacing: -1px; }
.club-card-actions {
  display: flex;
  gap: 8px;
}

/* Mini trend bars (Kit 2 style) */
.trend-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 28px;
  margin-left: auto;
}
.trend-bar {
  width: 6px;
  border-radius: 2px;
  background: var(--blue);
  opacity: 0.4;
}
.trend-bar:last-child { opacity: 1; }

/* ── TOAST NOTIFICATIONS ── */
.toast-container {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-hover);
  min-width: 280px;
  max-width: 380px;
  font-size: 13.5px;
  animation: slideIn 0.3s ease;
}
.toast-success { border-left: 4px solid var(--green); }
.toast-info    { border-left: 4px solid var(--blue);  }
.toast-warning { border-left: 4px solid var(--amber); }
.toast-error   { border-left: 4px solid var(--red);   }
@keyframes slideIn {
  from { transform: translateX(110%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

/* ── HERO SECTION ── */
.hero {
  background: var(--navy);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.015) 0, rgba(255,255,255,.015) 1px, transparent 1px, transparent 72px);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,.2) 0%, transparent 65%);
  top: -200px; right: -80px;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(249,115,22,.1) 0%, transparent 65%);
  bottom: -100px; left: 5%;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.3);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}
.hero h1 em { font-style: normal; color: #60A5FA; }
.hero-sub {
  color: rgba(255,255,255,.65);
  font-size: 17px;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-search { max-width: 600px; margin-bottom: 20px; }
.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.hero-stat {}
.hero-stat-num {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
}
.hero-stat-lbl {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  margin-top: 3px;
}

/* ── SECTION STYLES ── */
.section { padding: 72px 0; }
.section-light { background: var(--white); }
.section-bg    { background: var(--bg); }
.section-navy  { background: var(--navy); }

/* Section header */
.section-hdr { margin-bottom: 40px; }
.section-hdr-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* ── GRID LAYOUTS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* ── HOW IT WORKS ── */
.how-step {
  text-align: center;
  padding: 32px 24px;
}
.how-step-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
}
.how-step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.how-step h4 { margin-bottom: 8px; }
.how-step p { font-size: 14px; color: var(--text2); }

/* ── RANKING TABLE ── */
.ranking-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.ranking-table thead th {
  padding: 12px 16px;
  text-align: left;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text3);
  border-bottom: 2px solid var(--border);
  background: var(--surf);
}
.ranking-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.ranking-table tbody tr:hover td { background: var(--surf); }
.ranking-table tbody tr:last-child td { border-bottom: none; }
.rank-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  color: var(--text3);
}
.rank-move { font-size: 11px; }
.rank-up   { color: var(--green); }
.rank-down { color: var(--red); }
.rank-same { color: var(--text3); }

.pro-locked {
  position: relative;
  filter: blur(3px);
  user-select: none;
}
.pro-lock-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* ── COST CALCULATOR ── */
.calc-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--navy);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.calc-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 20px;
}
.calc-steps { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.calc-result {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  margin-top: 16px;
}
.calc-result-label { font-size: 12px; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.calc-result-num {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.calc-breakdown { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.calc-breakdown-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.calc-breakdown-label { flex: 1; color: var(--text2); }
.calc-breakdown-bar {
  width: 100px;
  height: 6px;
  background: var(--border);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.calc-breakdown-fill { height: 100%; border-radius: var(--radius-pill); background: var(--blue); }
.calc-breakdown-val {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  min-width: 60px;
  text-align: right;
}

/* ── PRO CARD ── */
.pro-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.pro-col { padding: 28px; }
.pro-col-free { background: var(--white); }
.pro-col-pro  { background: var(--navy); }
.pro-col-label {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 6px;
}
.pro-col-free .pro-col-label { color: var(--navy); }
.pro-col-pro  .pro-col-label { color: var(--white); }
.pro-popular {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-left: 8px;
}
.pro-price {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  margin: 12px 0;
}
.pro-col-free .pro-price { color: var(--navy); }
.pro-col-pro  .pro-price { color: var(--white); }
.pro-features { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.pro-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
}
.pro-col-free .pro-feature { color: var(--text2); }
.pro-col-pro  .pro-feature { color: rgba(255,255,255,.85); }
.pro-check { font-size: 14px; }
.pro-col-free .pro-check { color: var(--green); }
.pro-col-pro  .pro-check { color: #4ADE80; }
.pro-lock-icon { color: var(--text3); font-size: 12px; }
.pro-trust {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  margin-top: 10px;
  text-align: center;
}

/* ── TOURNAMENT CARD ── */
.tournament-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-card);
  padding: 18px 20px;
  box-shadow: var(--shadow-card);
  transition: all 0.15s;
}
.tournament-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.tournament-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 4px;
}
.tournament-org { font-size: 12px; color: var(--text3); margin-bottom: 12px; }
.tournament-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text2);
  margin-bottom: 12px;
}
.tournament-meta-item { display: flex; align-items: center; gap: 4px; }
.tournament-age-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }

/* ── RINK CARD ── */
.rink-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 18px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  gap: 14px;
  transition: all 0.15s;
}
.rink-card:hover { box-shadow: var(--shadow-hover); }
.rink-thumb {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
  color: rgba(255,255,255,.7);
}
.rink-info { flex: 1; }
.rink-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 3px;
}
.rink-address { font-size: 12px; color: var(--text3); margin-bottom: 8px; }
.rink-meta { display: flex; flex-wrap: wrap; gap: 10px; font-size: 12px; color: var(--text2); }
.sheets-badge {
  background: #EDE9FE;
  color: var(--purple);
  border: 1px solid #DDD6FE;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

/* ── NCAA FUNNEL (Kit 1 style) ── */
.ncaa-funnel {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 20px 0;
  overflow-x: auto;
}
.funnel-step {
  flex: 1;
  min-width: 120px;
  text-align: center;
  position: relative;
}
.funnel-step-box {
  background: var(--navy);
  color: var(--white);
  padding: 12px 10px;
  border-radius: var(--radius-md);
  margin: 0 6px;
  transition: all 0.15s;
}
.funnel-step-box:hover { background: var(--blue); }
.funnel-step-box.active { background: var(--orange); }
.funnel-step-box.active .funnel-step-pct { color: #0B2D6E !important; }
.funnel-step-title { font-weight: 700; font-size: 12px; margin-bottom: 3px; }
.funnel-step-age  { font-size: 10px; color: rgba(255,255,255,.65); margin-bottom: 4px; }
.funnel-step-pct  { font-family: var(--font-mono); font-size: 14px; font-weight: 700; color: #60A5FA; }
.funnel-arrow { color: var(--text3); font-size: 18px; flex-shrink: 0; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1E3A8A 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.15) 0%, transparent 65%);
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,.65); font-size: 16px; max-width: 500px; margin: 0 auto 28px; }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--white);
}
.footer-logo-text span { color: #60A5FA; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; max-width: 240px; }
.footer-col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: rgba(255,255,255,.9);
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1.5px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-link {
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  transition: color 0.15s;
}
.footer-link:hover { color: var(--white); text-decoration: none; }
.footer-newsletter-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: 14px;
  margin-bottom: 8px;
  outline: none;
  transition: border-color 0.15s;
}
.footer-newsletter-input:focus { border-color: rgba(255,255,255,.5); }
.footer-newsletter-input::placeholder { color: rgba(255,255,255,.35); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12.5px; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12.5px; color: rgba(255,255,255,.35); }
.footer-legal a:hover { color: rgba(255,255,255,.7); text-decoration: none; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text3);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text3); }
.breadcrumb a:hover { color: var(--blue); text-decoration: none; }
.breadcrumb-sep { color: var(--border); }
.breadcrumb-current { color: var(--text2); font-weight: 500; }

/* ── PAGE META STRIP ── */
.page-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--text3);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.page-meta a { color: var(--blue); }

/* ── FAQ SECTION ── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question:hover { color: var(--blue); }
.faq-arrow { font-size: 14px; color: var(--text3); transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 0 18px; font-size: 14px; color: var(--text2); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 58px; }
  .nav-links { display: none; }
  .nav-signin { display: none; }
  .nav-hamburger { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 52px; }
  .hero-stats { gap: 20px; }
  .section { padding: 48px 0; }
  .pro-comparison { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .calc-widget { padding: 20px; }
  .cta-banner { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .grid-4 { grid-template-columns: 1fr; }
  h1 { font-size: 28px; }
  .hero-sub { font-size: 15px; }
  .filter-chips { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
  .filter-chips::-webkit-scrollbar { display: none; }
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-muted  { color: var(--text3); }
.text-navy   { color: var(--navy); }
.text-blue   { color: var(--blue); }
.text-orange { color: var(--orange); }
.text-green  { color: var(--green); }
.font-mono   { font-family: var(--font-mono); }
.font-display{ font-family: var(--font-display); font-weight: 900; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.flex  { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Nav fix — vertical center */
.nav .container {
  height: var(--nav-height);
  display: flex;
  align-items: center;
}

/* Nav layout fix */
.nav .container {
  justify-content: space-between;
  padding: 0 24px;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

/* Nav final fix */
.nav { display: flex; align-items: center; }
.nav > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-height);
}
.nav > .container > .nav-inner { display: contents; }
