/* BenchMentor — Design System v2 */
/* Color inspiration: sky blue + burnt orange hockey palette */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  /* Brand palette */
  --ice:      #72BDE8;   /* sky blue  — primary brand */
  --ice-lt:   #A8D8F0;   /* light ice — hover/tints   */
  --ice-dk:   #4A9FD0;   /* deeper ice */
  --flame:    #E07830;   /* burnt orange — accent/CTA */
  --flame-dk: #C4611A;   /* deeper flame              */

  /* Dark backgrounds */
  --rink:     #0A1520;   /* darkest — hero sections   */
  --rink2:    #111E2E;   /* slightly lighter           */
  --rink3:    #192840;   /* card surfaces on dark bg  */

  /* Neutral */
  --white:    #FFFFFF;
  --light:    #F0F7FF;   /* blue-tinted off-white     */
  --border:   #D4E6F4;
  --text:     #0F1923;   /* near-black body text      */
  --muted:    #6B8299;

  /* Misc */
  --radius:  10px;
  --shadow:  0 4px 24px rgba(10,21,32,0.10);
  --shadow-md: 0 8px 32px rgba(10,21,32,0.16);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--ice); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--ice-dk); }
img { max-width: 100%; display: block; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5.5vw, 3.75rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.25rem; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--flame);
  margin-bottom: 0.65rem;
}
.eyebrow--ice { color: var(--ice); }

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5.5rem 0; }
.section--light { background: var(--light); }
.section--dark  { background: var(--rink);  color: var(--white); }
.section--rink2 { background: var(--rink2); color: var(--white); }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; }

.text-center { text-align: center; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2.5rem; }
.mt-4 { margin-top: 2rem; }

/* ── For Sale Banner ─────────────────────────────────────────── */
.forsale-banner {
  background: linear-gradient(90deg, var(--flame), var(--flame-dk));
  color: var(--white);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.forsale-banner a { color: var(--white); text-decoration: underline; font-weight: 700; }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  background: rgba(10,21,32,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.9rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(114,189,232,0.15);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
}
.navbar__logo span { color: var(--ice); }
.navbar__tag {
  background: var(--flame);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.18rem 0.55rem;
  border-radius: 4px;
  margin-left: 0.5rem;
  vertical-align: middle;
}
.navbar__back { color: var(--muted); font-size: 0.9rem; }
.navbar__back:hover { color: var(--ice); }
.nav-link {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  transition: all 0.18s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-link--active { color: var(--ice) !important; background: rgba(114,189,232,0.1); }
@media (max-width: 640px) { .nav-link { display: none; } }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  text-align: center;
  letter-spacing: 0.01em;
}
.btn--flame {
  background: var(--flame);
  color: var(--white);
  border-color: var(--flame);
}
.btn--flame:hover { background: var(--flame-dk); border-color: var(--flame-dk); color: var(--white); }

.btn--ice {
  background: var(--ice);
  color: var(--rink);
  border-color: var(--ice);
}
.btn--ice:hover { background: var(--ice-dk); border-color: var(--ice-dk); color: var(--white); }

.btn--outline-ice {
  background: transparent;
  color: var(--ice);
  border-color: var(--ice);
}
.btn--outline-ice:hover { background: var(--ice); color: var(--rink); }

.btn--outline-flame {
  background: transparent;
  color: var(--flame);
  border-color: var(--flame);
}
.btn--outline-flame:hover { background: var(--flame); color: var(--white); }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn--white {
  background: var(--white);
  color: var(--rink);
  border-color: var(--white);
}
.btn--white:hover { background: var(--light); }

.btn--lg { padding: 1rem 2.4rem; font-size: 1.05rem; border-radius: 10px; }
.btn--sm { padding: 0.5rem 1.1rem; font-size: 0.825rem; }

/* ── Cards ───────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.22s, box-shadow 0.22s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__body { padding: 1.5rem; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  background: var(--rink);
  color: var(--white);
  padding: 6.5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(114,189,232,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(224,120,48,0.08) 0%, transparent 50%);
  pointer-events: none;
}
/* Ice rink line accent */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--ice), var(--flame), var(--ice), transparent);
}
.hero__inner { position: relative; z-index: 1; }
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin: 1rem 0 2.25rem;
  font-weight: 400;
  line-height: 1.7;
}

/* ── Stat blocks ─────────────────────────────────────────────── */
.stat { text-align: center; padding: 1.5rem 1rem; }
.stat__number { font-size: 2.6rem; font-weight: 900; color: var(--ice); letter-spacing: -0.03em; }
.stat__label  { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-top: 0.3rem; }

/* Dark stat */
.stat--dark .stat__number { color: var(--flame); }
.stat--dark .stat__label  { color: var(--muted); }

/* ── Badges ──────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 0.28rem 0.8rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.badge--ice    { background: rgba(114,189,232,0.15); color: var(--ice-dk); }
.badge--flame  { background: rgba(224,120,48,0.15);  color: var(--flame);  }
.badge--green  { background: rgba(72,199,142,0.15);  color: #1e8a5e;       }
.badge--purple { background: rgba(139,92,246,0.15);  color: #6d28d9;       }
.badge--muted  { background: var(--light); color: var(--muted); border: 1px solid var(--border); }

/* ── Stars ───────────────────────────────────────────────────── */
.stars { color: var(--flame); font-size: 0.85rem; letter-spacing: 0.06em; }

/* ── Feature list ────────────────────────────────────────────── */
.feature-list { list-style: none; }
.feature-list li {
  padding: 0.45rem 0;
  padding-left: 1.6rem;
  position: relative;
  font-size: 0.9rem;
  color: #374151;
}
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--flame);
  font-weight: 800;
}

/* ── Tag pills ───────────────────────────────────────────────── */
.tag {
  display: inline-block;
  background: var(--light);
  color: var(--muted);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 0.28rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s;
}
.tag:hover, .tag.active {
  background: var(--ice);
  color: var(--rink);
  border-color: var(--ice);
}

/* ── Search bar ──────────────────────────────────────────────── */
.search-bar {
  display: flex;
  gap: 0.5rem;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 0.55rem 1rem;
  align-items: center;
  transition: border-color 0.2s;
}
.search-bar:focus-within { border-color: var(--ice); }
.search-bar input { border: none; outline: none; flex: 1; font-size: 0.95rem; font-family: 'Outfit', sans-serif; }

/* ── Avatar ──────────────────────────────────────────────────── */
.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
  border: 2px solid rgba(114,189,232,0.3);
}

/* ── Progress bar ────────────────────────────────────────────── */
.progress-wrap { margin-bottom: 0.85rem; }
.progress-label { display: flex; justify-content: space-between; font-size: 0.82rem; margin-bottom: 0.35rem; font-weight: 500; }
.progress-track { height: 7px; background: var(--light); border-radius: 6px; overflow: hidden; }
.progress-fill  {
  height: 100%;
  background: linear-gradient(90deg, var(--ice), var(--flame));
  border-radius: 6px;
}

/* ── Dashboard panel ─────────────────────────────────────────── */
.dash-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.4rem;
}
.dash-panel__title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 1rem;
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--rink);
  color: var(--muted);
  text-align: center;
  padding: 2.5rem 0;
  font-size: 0.85rem;
  border-top: 1px solid rgba(114,189,232,0.12);
}
.footer a { color: var(--ice); }
.footer a:hover { color: var(--ice-lt); }

/* ── Divider ─────────────────────────────────────────────────── */
.divider {
  height: 3px;
  background: linear-gradient(90deg, var(--rink), var(--ice), var(--flame), var(--ice), var(--rink));
  border: none;
  margin: 0;
}

/* ── Glassmorphism card ──────────────────────────────────────── */
.glass {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(114,189,232,0.18);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

/* ── Gradient text ───────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--ice), var(--flame));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Glow effect ─────────────────────────────────────────────── */
.glow-ice   { box-shadow: 0 0 30px rgba(114,189,232,0.25); }
.glow-flame { box-shadow: 0 0 30px rgba(224,120,48,0.25);  }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  .hero    { padding: 4.5rem 0 3.5rem; }
  .hide-sm { display: none; }
}
