:root {
      --black: #0d0d0d;
      --white: #ffffff;
      --soft-white: #f5f6fa;
      --text: #1b1b1b;
      --muted: #5f6675;
      --gold: #f5b500;
      --blue: #0057ff;
      --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
      --radius: 24px;
      --max: 1180px;
      --header-height: 76px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }

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

    a {
      color: inherit;
    }

    section[id] {
      scroll-margin-top: 105px;
    }

    .container {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(13, 13, 13, 0.97);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(12px);
    }

    .navbar {
      width: min(var(--max), calc(100% - 32px));
      min-height: var(--header-height);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand {
      color: var(--white);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 235px;
      flex-shrink: 0;
    }

    .brand-mark {
      width: 6px;
      height: 48px;
      background: linear-gradient(180deg, var(--gold), var(--blue));
      border-radius: 999px;
      flex: 0 0 auto;
    }

    .brand-wordmark {
      display: grid;
      gap: 2px;
      line-height: 1;
      text-transform: uppercase;
      font-weight: 1000;
      letter-spacing: 0.105em;
    }

    .brand-wordmark .heartland {
      color: var(--white);
      font-size: 0.98rem;
    }

    .brand-wordmark .athletics {
      color: var(--gold);
      font-size: 0.92rem;
    }

    .brand-wordmark .group {
      color: var(--blue);
      font-size: 0.75rem;
      letter-spacing: 0.18em;
    }

    .brand-tagline {
      color: rgba(255, 255, 255, 0.52);
      font-size: 0.72rem;
      font-weight: 850;
      letter-spacing: 0.08em;
      margin-top: 8px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 14px;
      min-width: 0;
    }

    .nav-links a {
      color: rgba(255, 255, 255, 0.82);
      text-decoration: none;
      font-weight: 850;
      font-size: 0.86rem;
      white-space: nowrap;
    }

    .nav-links a:hover {
      color: var(--white);
    }

    .nav-links .nav-cta {
      background: var(--gold);
      color: var(--black);
      padding: 10px 15px;
      border-radius: 999px;
    }

    .nav-toggle {
      display: none;
      width: 44px;
      height: 40px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 12px;
      background: transparent;
      cursor: pointer;
      flex-shrink: 0;
    }

    .nav-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      margin: 5px auto;
      background: var(--white);
    }

    .section {
      padding: 92px 0;
    }

    .section-dark {
      color: var(--white);
      background:
        radial-gradient(circle at 16% 18%, rgba(0, 87, 255, 0.28), transparent 28%),
        radial-gradient(circle at 90% 4%, rgba(245, 181, 0, 0.18), transparent 24%),
        linear-gradient(135deg, #0d0d0d 0%, #171717 55%, #07102a 100%);
    }

    .section-light {
      background: var(--soft-white);
    }

    .eyebrow {
      margin: 0 0 12px;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-size: 0.78rem;
      font-weight: 950;
    }

    h1,
    h2,
    h3 {
      margin: 0;
      line-height: 1.05;
    }

    h1 {
      max-width: 920px;
      font-size: clamp(3rem, 6.2vw, 6rem);
      line-height: 0.98;
      letter-spacing: -0.06em;
      text-transform: uppercase;
    }

    h2 {
      font-size: clamp(2rem, 4.2vw, 3.65rem);
      letter-spacing: -0.045em;
    }

    h3 {
      font-size: 1.35rem;
    }

    p {
      font-size: 1.05rem;
    }

    .section-copy p,
    .section-heading p {
      color: var(--muted);
    }

    .section-dark .section-copy p,
    .section-dark .section-heading p,
    .section-dark p {
      color: rgba(255, 255, 255, 0.78);
    }

    .hero {
      min-height: 650px;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 90px 0 82px;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
      background-size: 44px 44px;
      opacity: 0.42;
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 980px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
      padding: 12px 18px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      background: rgba(255, 255, 255, 0.07);
      color: rgba(255, 255, 255, 0.84);
      font-weight: 900;
    }

    .hero-lead {
      max-width: 850px;
      font-size: 1.25rem;
      margin: 26px 0 0;
      color: rgba(255, 255, 255, 0.82);
    }

    .hero-actions,
    .button-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 20px;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 950;
      border: 0;
      cursor: pointer;
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

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

    .btn-primary {
      background: var(--gold);
      color: var(--black);
      box-shadow: 0 12px 28px rgba(245, 181, 0, 0.22);
    }

    .btn-blue {
      background: var(--blue);
      color: var(--white);
      box-shadow: 0 12px 28px rgba(0, 87, 255, 0.24);
    }

    .btn-outline {
      color: var(--white);
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.32);
    }

    .btn-dark {
      color: var(--white);
      background: var(--black);
    }

    .pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 32px;
    }

    .pill-row span {
      padding: 10px 15px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.06);
      color: rgba(255, 255, 255, 0.88);
      font-weight: 950;
    }


    .enforcers-section {
      color: var(--white);
      background:
        radial-gradient(circle at 88% 12%, rgba(245, 181, 0, 0.22), transparent 28%),
        radial-gradient(circle at 8% 88%, rgba(0, 87, 255, 0.18), transparent 30%),
        linear-gradient(135deg, #050505 0%, #111111 54%, #191300 100%);
      border-bottom: 1px solid rgba(245, 181, 0, 0.18);
    }

    .enforcers-grid {
      display: grid;
      grid-template-columns: minmax(360px, 1.08fr) minmax(0, 0.92fr);
      gap: 52px;
      align-items: center;
    }

    .enforcers-image {
      padding: 10px;
      border-radius: 28px;
      background: #050505;
      border: 1px solid rgba(245, 181, 0, 0.32);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .enforcers-image img {
      width: 100%;
      height: auto;
      border-radius: 19px;
      object-fit: contain;
    }

    .enforcers-copy h2 {
      max-width: 650px;
      margin-bottom: 18px;
    }

    .enforcers-tagline {
      margin: 0 0 22px;
      color: var(--gold) !important;
      font-size: clamp(1.2rem, 2.4vw, 1.75rem);
      font-weight: 1000;
      letter-spacing: -0.025em;
      text-transform: uppercase;
    }

    .enforcers-intro {
      max-width: 680px;
      color: rgba(255, 255, 255, 0.78) !important;
    }

    .enforcers-statements {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin: 28px 0 0;
    }

    .enforcers-statement {
      padding: 22px;
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: rgba(255, 255, 255, 0.07);
    }

    .enforcers-statement strong {
      display: block;
      margin-bottom: 8px;
      color: var(--gold);
      font-size: 0.78rem;
      font-weight: 1000;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .enforcers-statement p {
      margin: 0;
      color: rgba(255, 255, 255, 0.82) !important;
      font-size: 0.98rem;
    }

    .enforcers-values {
      margin: 24px 0 0;
      color: rgba(255, 255, 255, 0.74) !important;
      font-weight: 820;
    }

    .enforcers-values span {
      color: var(--gold);
    }

    .split {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
      gap: 54px;
      align-items: center;
    }

    .split.reverse {
      grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
    }

    .section-heading {
      max-width: 790px;
      margin-bottom: 38px;
    }

    .logo-showcase {
      min-height: 310px;
      padding: 42px;
      display: grid;
      place-items: center;
      border-radius: var(--radius);
      background: #000000;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .logo-showcase img {
      width: auto;
      height: auto;
      max-width: 440px;
      max-height: 440px;
      object-fit: contain;
      border-radius: 0;
      box-shadow: none;
      background: #000000;
    }

    .stats-grid,
    .card-grid,
    .mini-grid {
      display: grid;
      gap: 18px;
    }

    .stats-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      margin-top: 20px;
    }

    .stat-card,
    .feature-card {
      padding: 24px;
      border-radius: var(--radius);
      background: var(--white);
      border: 1px solid rgba(13, 13, 13, 0.08);
      box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
    }

    .stat-card strong {
      display: block;
      font-size: 1.18rem;
      color: var(--black);
      margin-bottom: 8px;
    }

    .stat-card span,
    .feature-card p {
      color: var(--muted);
    }

    .why-section {
      background:
        linear-gradient(90deg, rgba(0, 87, 255, 0.06), transparent),
        var(--white);
      padding-top: 116px;
    }

    .why-grid {
      display: grid;
      grid-template-columns: 440px minmax(0, 1fr);
      gap: 56px;
      align-items: center;
    }

    .family-photo {
      overflow: hidden;
      border-radius: 30px;
      background: #f2f2f2;
      box-shadow: var(--shadow);
      border: 2px solid rgba(245, 181, 0, 0.2);
    }

    .family-photo img {
      width: 100%;
      height: auto;
      aspect-ratio: auto;
      object-fit: contain;
      object-position: center;
      background: #f2f2f2;
    }

    .founder-line {
      color: var(--black) !important;
      font-weight: 900;
      margin-top: 18px;
    }

    .card-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .feature-card {
      min-height: 250px;
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 26px 64px rgba(0, 0, 0, 0.12);
    }

    .icon {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(0, 87, 255, 0.12), rgba(245, 181, 0, 0.24));
      font-size: 1.7rem;
      margin-bottom: 18px;
    }

    .highlight-panel,
    .facility-card,
    .quote-card {
      padding: 32px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .highlight-panel {
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: linear-gradient(135deg, #000000, #07102a);
    }

    .highlight-panel p {
      color: rgba(255, 255, 255, 0.72);
    }

    .panel-logo {
      width: auto;
      height: auto;
      max-width: 150px;
      max-height: 150px;
      object-fit: contain;
      border-radius: 0;
      box-shadow: none;
      background: #000000;
      margin-bottom: 18px;
    }

    .check-list {
      list-style: none;
      padding: 0;
      margin: 22px 0;
    }

    .check-list li {
      position: relative;
      padding-left: 30px;
      margin: 11px 0;
      font-weight: 760;
    }

    .check-list li::before {
      content: "\2713";
      position: absolute;
      left: 0;
      color: var(--gold);
      font-weight: 1000;
    }

    .facility-card {
      color: var(--white);
      background:
        radial-gradient(circle at top left, rgba(0, 87, 255, 0.16), transparent 36%),
        var(--black);
    }

    .mini-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      margin-top: 22px;
    }

    .mini-grid span {
      padding: 14px;
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: rgba(255, 255, 255, 0.07);
      font-weight: 850;
    }

    .quote-card {
      background: var(--black);
      color: var(--white);
    }

    .quote-card p {
      margin-top: 0;
      font-size: 1.55rem;
      line-height: 1.25;
      font-weight: 950;
      letter-spacing: -0.03em;
    }

    .quote-card span {
      color: var(--gold);
      font-weight: 950;
    }

    .connect-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.05fr);
      gap: 54px;
      align-items: start;
    }

    .interest-box {
      display: grid;
      gap: 8px;
      margin-top: 26px;
      padding: 18px;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      background: rgba(255, 255, 255, 0.07);
    }

    .interest-box strong {
      color: var(--gold);
      font-size: 1.04rem;
    }

    .interest-box span {
      color: rgba(255, 255, 255, 0.76);
    }

    .connect-form {
      padding: 28px;
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow: var(--shadow);
    }

    .connect-form label {
      display: grid;
      gap: 8px;
      margin-bottom: 16px;
      font-weight: 900;
    }

    .connect-form input,
    .connect-form select,
    .connect-form textarea {
      width: 100%;
      min-height: 48px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 14px;
      padding: 12px 14px;
      background: rgba(255, 255, 255, 0.94);
      color: var(--black);
      font: inherit;
    }

    .form-note {
      color: rgba(255, 255, 255, 0.62);
      font-size: 0.86rem;
    }

    .site-footer {
      padding: 32px 0;
      background: #070707;
      color: var(--white);
    }

    .footer-grid {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .footer-brand img {
      width: auto;
      height: auto;
      max-width: 70px;
      max-height: 70px;
      object-fit: contain;
      border-radius: 0;
      box-shadow: none;
      background: #000000;
    }

    .footer-brand p {
      margin: 6px 0 0;
      color: rgba(255, 255, 255, 0.58);
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.72);
      text-decoration: none;
      font-weight: 850;
    }

    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1120px) {
      .nav-links {
        gap: 10px;
      }

      .nav-links a {
        font-size: 0.78rem;
      }

      .brand {
        min-width: 220px;
      }
    }

    @media (max-width: 980px) {
      .nav-toggle {
        display: block;
      }

      .nav-links {
        position: absolute;
        top: var(--header-height);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border-radius: 18px;
        background: rgba(13, 13, 13, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: var(--shadow);
      }

      .nav-links.open {
        display: flex;
      }

      .hero {
        min-height: auto;
        padding: 78px 0 64px;
      }

      .split,
      .split.reverse,
      .why-grid,
      .connect-grid,
      .enforcers-grid {
        grid-template-columns: 1fr;
      }

      .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .family-photo {
        max-width: 540px;
      }

    }

    @media (max-width: 640px) {
      :root {
        --header-height: 72px;
      }

      .container {
        width: min(100% - 28px, var(--max));
      }

      .section {
        padding: 68px 0;
      }

      h1 {
        font-size: clamp(2.5rem, 11vw, 4rem);
        letter-spacing: -0.055em;
      }

      .navbar {
        min-height: var(--header-height);
      }

      .brand {
        min-width: 0;
      }

      .brand-mark {
        height: 44px;
      }

      .brand-wordmark .heartland {
        font-size: 0.88rem;
      }

      .brand-wordmark .athletics {
        font-size: 0.78rem;
      }

      .brand-wordmark .group {
        display: none;
      }

      .brand-tagline {
        display: none;
      }

      .hero-actions .btn,
      .button-row .btn {
        width: 100%;
      }

      .card-grid,
      .stats-grid,
      .mini-grid,
      .enforcers-statements {
        grid-template-columns: 1fr;
      }


      .footer-grid {
        flex-direction: column;
        align-items: flex-start;
      }
    }


/* Shared multi-page additions */
.nav-links a[aria-current="page"] {
  color: var(--white);
}

.nav-links a[aria-current="page"]:not(.nav-cta) {
  position: relative;
}

.nav-links a[aria-current="page"]:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 84px;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.4;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

.page-hero p {
  max-width: 820px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  font-weight: 850;
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 48px;
  align-items: start;
}

.content-card {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(13, 13, 13, 0.08);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
}

.content-card + .content-card {
  margin-top: 18px;
}

.content-card h2,
.content-card h3 {
  margin-bottom: 14px;
}

.content-card p:last-child {
  margin-bottom: 0;
}

.sidebar-card {
  position: sticky;
  top: 105px;
}

.page-cta {
  padding: 54px 0;
  background:
    radial-gradient(circle at 16% 30%, rgba(0, 87, 255, 0.22), transparent 26%),
    linear-gradient(135deg, #0d0d0d, #161616 58%, #07102a);
  color: var(--white);
}

.page-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.page-cta h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.page-cta p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

@media (max-width: 980px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .sidebar-card {
    position: static;
  }

  .page-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding: 72px 0 62px;
  }

  .content-card {
    padding: 24px;
  }

  .nav-links a[aria-current="page"]:not(.nav-cta)::after {
    display: none;
  }
}

/* Light-section Mission and Vision cards */
.section-light .enforcers-statement {
  background: var(--white);
  border-color: rgba(13, 13, 13, 0.08);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
}

.section-light .enforcers-statement p {
  color: var(--muted) !important;
}

.section-light .enforcers-statement strong {
  color: var(--black);
}

/* Keep the active Contact button readable */
.nav-links .nav-cta[aria-current="page"] {
  color: var(--black);
} 

/* Keep text readable inside dark highlight panels */
.highlight-panel h3 {
  color: var(--white);
}

.highlight-panel .check-list li {
  color: rgba(255, 255, 255, 0.86);
}
