:root {
  --navy: #0e2240;
  --blue: #1d428a;
  --gold: #fec524;
  --red: #8b2131;
  --ice: #f6f8fc;
  --white: #ffffff;
  --ink: #111827;
  --muted: #64748b;
  --line: rgba(14,34,64,.14);
  --shadow: 0 24px 70px rgba(14,34,64,.18);
  --radius: 24px;
  --max: 1180px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Oswald", sans-serif;
  color: var(--ink);
  background: var(--ice);
  line-height: 1.55;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.container { width: min(var(--max), calc(100% - 32px))!important; margin-inline: auto; }

.topbar {
  background: var(--navy);
  color: #fff;
  font-size: .92rem;
  margin-top: .5px;
}
.topbar__inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar__actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.topbar a { text-decoration: none; opacity: .94; }
.topbar a:hover { color: var(--gold); opacity: 1; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  color: var(--navy);
  /*letter-spacing: -.03em;*/
}
.brand__mark {
  background-image: url("https://cdn.nba.com/teams/uploads/sites/1610612743/2022/03/DNuggets_Primary_300.png");
  width: 44px;
  height: 44px;
  background-size: cover;
  /*border-radius: 14px;
  box-shadow: 0 10px 30px rgba(29,66,138,.2);
  border: 2px solid #fff;*/
}
.nav__links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  color: var(--navy);
}
.nav__links a {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration: none;
}
.nav__links a:hover { background: rgba(29,66,138,.08); }
.nav__toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--gold); color: var(--navy); box-shadow: 0 18px 34px rgba(254,197,36,.3); }
.btn--secondary { background: #fff; color: var(--navy); box-shadow: inset 0 0 0 1px var(--line); }
.btn--dark { background: var(--navy); color: #fff; }
.btn--ghost { background: rgba(255,255,255,.14); color: #fff !important; box-shadow: inset 0 0 0 1px rgba(255,255,255,.28); }

.hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(254,197,36,.38), transparent 28%),
    radial-gradient(circle at 12% 86%, rgba(139,33,49,.38), transparent 34%),
    linear-gradient(135deg, #06142b 0%, var(--navy) 45%, var(--blue) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -32% 45%;
  height: 460px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 2px, transparent 2px 44px);
  transform: rotate(-12deg);
  z-index: -1;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  align-items: center;
  padding: clamp(54px, 8vw, 112px) 0;
}
.eyebrow {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  text-transform: uppercase;
  /*letter-spacing: .14em;*/
  font-size: .78rem;
  font-weight: 950;
}
.hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  line-height: .92;
  /*letter-spacing: -.08em;*/
  max-width: 12ch;
  font-weight: 700;
}
.hero p {
  max-width: 660px;
  margin: 22px 0 0;
  font-size: clamp(1rem, 2vw, 1.22rem);
  color: rgba(255,255,255,.86);
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero-card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(12px);
}
.hero-card h2 { margin: 0 0 12px; font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; line-height: 1; }
.quick-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.quick-list li { display: flex; gap: 12px; align-items: flex-start; }
.check {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 950;
}

section { padding: clamp(46px, 7vw, 90px) 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: end;
  margin-bottom: 28px;
}
.section-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.2;
  font-weight: 700;
  /*letter-spacing: -.055em;*/
}
.section-head p { margin: 0; color: var(--muted); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 16px 44px rgba(14,34,64,.08);
}
.card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 16px;
  background: rgba(254,197,36,.22);
  color: var(--navy);
  font-weight: 950;
}
.card h3 { margin: 0 0 8px; color: var(--navy); font-size: 1.08rem; font-weight: 700;}
.card p { margin: 0; color: var(--muted); }

.tabs {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.tablist {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px;
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
  scrollbar-width: thin;
}
.tab-button {
  white-space: nowrap;
  border: 0;
  border-radius: 999px;
  padding: 8px 16px;
  color: var(--navy);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
  /*font-weight: 400;*/
}
.tab-button[aria-selected="true"] { background: var(--navy); color: #fff; }
.tabpanel { display: none; padding: clamp(18px, 4vw, 34px); }
.tabpanel.is-active { display: block; }
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.experience-card {
  min-height: 205px;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 22px;
  background: linear-gradient(145deg, #fff, #f8fafc);
  border: 1px solid var(--line);
}
.experience-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 110px;
  height: 110px;
  border-radius: 0 0 0 100%;
  background: rgba(254,197,36,.18);
}
.experience-card h3 { position: relative; margin: 0 0 8px; color: var(--navy); }
.experience-card p { position: relative; margin: 0; color: var(--muted); }

.programs {
  background: var(--navy);
  color: #fff;
}
.programs .section-head h2 { color: #fff; }
.programs .section-head p { color: rgba(255,255,255,.74); }
.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.program-tile {
  display: flex;
  min-height: 112px;
  align-items: flex-end;
  padding: 18px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 950;
  background: linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.16);
}
.program-tile:hover { background: linear-gradient(135deg, rgba(254,197,36,.36), rgba(255,255,255,.08)); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.person-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 12px 34px rgba(14,34,64,.06);
}
.avatar {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold), var(--blue));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 950;
}
.person-card h3 { margin: 0; color: var(--navy); font-size: 1rem; }
.person-card p { margin: 2px 0 10px; color: var(--muted); font-size: .92rem; }
.person-card a { color: var(--blue); font-weight: 900; text-decoration: none; }

.faq-wrap {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 26px;
  align-items: start;
}
.faq-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(14,34,64,.08);
}
details { border-bottom: 1px solid var(--line); }
details:last-child { border-bottom: 0; }
summary {
  padding: 18px 22px;
  cursor: pointer;
  color: var(--navy);
  font-weight: 950;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--gold); font-size: 1.25rem; line-height: 1; }
details[open] summary::after { content: "–"; }
details p { margin: 0; padding: 0 22px 20px; color: var(--muted); }

.final-cta {
  text-align: center;
  color: #fff;
  background:
    /*radial-gradient(circle at 20% 40%, rgba(254,197,36,.35), transparent 26%),*/
    var(--navy);
}
.final-cta h2 { margin: 0 auto 14px; max-width: 820px; font-size: clamp(1rem, 5vw, 2rem); line-height: 1.1; /*letter-spacing: -.06em;*/ }
.final-cta p { margin: 0 auto 26px; max-width: 720px; color: rgba(255,255,255,.82); }

.footer { padding: 24px 0; background: #06142b; color: rgba(255,255,255,.7); font-size: .92rem; }
.footer__inner { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }

.govx-promo {
    padding: 4rem 0 0;
    background: var(--navy);
}

.govx-card {
    background: var(--navy);
    padding: 4rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.govx-logo img {
    width: 100%;
    max-width: 650px;
    display: block;
}

.govx-content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.govx-content p {
    color: rgba(255,255,255,.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.govx-content .btn {
    background: #ffc72c;
    color: #08254a;
    font-weight: 700;
    border: none;
}

.govx-content .btn:hover {
    background: #ffd75a;
}
.z-30 {
    z-index: 60 !important;
}

@media (max-width: 900px) {
    .govx-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
    }

    .govx-logo img {
        margin: 0 auto;
    }
}

@media (max-width: 980px) {
  .nav__toggle {
    display: inline-flex;
    border: 0;
    background: var(--navy);
    color: #fff;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 900;
  }
  .nav__links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { justify-content: center; }
  .hero__inner, .section-head, .faq-wrap { grid-template-columns: 1fr; }
  .hero-card { max-width: 680px; }
  .benefits-grid, .experience-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .program-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { width: min(100% - 22px, var(--max))!important; }
  .topbar__inner { justify-content: center; text-align: center; padding: 10px 0; }
  .hero__ctas .btn, .final-cta .btn { width: 100%; }
  .benefits-grid, .experience-grid, .team-grid, .program-grid { grid-template-columns: 1fr; }
  .person-card { grid-template-columns: 48px 1fr; }
  .avatar { width: 48px; height: 48px; border-radius: 15px; }
  section { padding: 42px 0; }
}


/* Self-contained image updates */
.hero {
  background:
    linear-gradient(135deg, rgba(6,20,43,.84) 0%, rgba(14,34,64,.78) 90%, rgba(29,66,138,.72) 100%),
    url("https://cdn.nba.com/teams/uploads/sites/1610612743/2026/08/Groups-BG-26.jpg") center / cover no-repeat;
}

.experience-grid--visual {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.experience-card--image {
  min-height: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(14,34,64,.10);
  transition: transform .26s var(--ease), box-shadow .26s var(--ease);
}
.experience-card--image::before { display: none; }
.experience-card--image:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 62px rgba(14,34,64,.15);
}
.experience-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(14,34,64,.08);
}
.experience-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .48s var(--ease);
}
.experience-card--image:hover .experience-media img { transform: scale(1.045); }
.experience-body {
  padding: 20px;
  flex: 1;
}
.experience-body h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.15;
  font-weight: 700;
}
.experience-body p { margin: 0; color: var(--muted); }

/* Updated 3-column team image layout */
.team-section {
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(14,34,64,.10);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(14,34,64,.16);
}
.team-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(14,34,64,.10), rgba(254,197,36,.16));
}
.team-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(14,34,64,0) 0%, rgba(14,34,64,.58) 100%);
  pointer-events: none;
}
.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .5s var(--ease);
}
.team-card:hover .team-image img { transform: scale(1.045); }
.team-content {
  padding: 22px 22px 24px;
  text-align: center;
}
.team-content h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.15;
  font-weight: 700;
  /*letter-spacing: -.02em;*/
}
.team-content span {
  display: block;
  min-height: 44px;
  margin: 8px 0 18px;
  color: var(--muted);
  font-weight: 750;
  font-size: .94rem;
}
.team-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-weight: 950;
  transition: background .22s var(--ease), color .22s var(--ease), transform .22s var(--ease);
}
.team-btn:hover {
  background: var(--navy);
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .experience-grid--visual,
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .experience-grid--visual,
  .team-grid { grid-template-columns: 1fr; }
  .team-content span { min-height: 0; }
}
