@font-face {
  font-family: Manrope;
  src: url('/assets/fonts/manrope-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('/assets/fonts/dm-sans-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --ink: #151827;
  --paper: #f6f4ee;
  --yellow: #f4d64e;
  --yellow-soft: #fff1a8;
  --coral: #ff785f;
  --blue: #606bff;
  --mint: #d7f4e2;
  --line: rgba(21, 24, 39, .16);
  --display: Manrope, 'DM Sans', sans-serif;
  --body: 'DM Sans', Arial, sans-serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --mx: 50%;
  --my: 50%;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font-family: var(--body); font-size: 16px; line-height: 1.5; }
body::before { position: fixed; z-index: 10; inset: 0; pointer-events: none; content: ''; background: radial-gradient(circle at var(--mx) var(--my), rgba(244, 214, 78, .15), transparent 20rem); mix-blend-mode: multiply; }
.pointer-glow { position: fixed; z-index: 9; top: var(--my); left: var(--mx); width: 14rem; height: 14rem; border: 1px solid rgba(244, 214, 78, .26); border-radius: 50%; pointer-events: none; transform: translate(-50%, -50%); opacity: .4; transition: top .2s ease-out, left .2s ease-out; }
a { color: inherit; text-decoration: none; }
.skip-link { position: fixed; z-index: 100; top: 1rem; left: 1rem; padding: .7rem 1rem; border-radius: 999px; background: var(--yellow); transform: translateY(-160%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.site-header { position: fixed; z-index: 20; top: 0; right: 0; left: 0; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1.05rem clamp(1.25rem, 5vw, 5rem); transition: padding .35s, background .35s, box-shadow .35s; }
.site-header.is-scrolled { padding-top: .7rem; padding-bottom: .7rem; background: rgba(246, 244, 238, .88); box-shadow: 0 1px 0 var(--line); backdrop-filter: blur(16px); }
.brand { display: flex; align-items: center; gap: .7rem; min-width: max-content; }
.brand-mark { padding: .22rem .45rem; border-radius: .4rem; background: var(--ink); color: var(--yellow); font: 800 .87rem var(--display); letter-spacing: -.07em; }
.brand-name { font-size: .66rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.primary-nav { display: flex; gap: clamp(1rem, 2.6vw, 2.7rem); font-size: .82rem; font-weight: 700; }
.primary-nav a { position: relative; padding: .35rem 0; }
.primary-nav a::after { position: absolute; right: 0; bottom: 0; left: 0; height: 2px; content: ''; background: var(--yellow); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-cta, .button { display: inline-flex; align-items: center; justify-content: space-between; gap: 1.1rem; padding: .88rem 1.15rem; border-radius: .6rem; font-size: .77rem; font-weight: 800; transition: transform .3s var(--ease), box-shadow .3s, background .3s; }
.header-cta { min-width: 10rem; background: var(--ink); color: var(--yellow); }
.header-cta span, .button span { font-size: 1rem; }
.header-cta:hover, .button:hover { box-shadow: 0 .75rem 1.6rem rgba(21, 24, 39, .14); }
.menu-toggle { display: none; border: 0; background: none; padding: .5rem; }
.menu-toggle i { display: block; width: 1.55rem; height: 2px; margin: .34rem 0; background: var(--ink); transition: transform .25s; }

.hub-hero { position: relative; padding: 9rem clamp(1.25rem, 5vw, 5rem) 0; overflow: hidden; background: var(--paper); }
.hub-hero::before { position: absolute; inset: 0; pointer-events: none; content: ''; background: linear-gradient(90deg, transparent 0, transparent calc(50% - 1px), rgba(21, 24, 39, .06) calc(50% - 1px), rgba(21, 24, 39, .06) 50%, transparent 50%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(2.5rem, 7vw, 8rem); max-width: 125rem; margin: 0 auto; min-height: 43rem; }
.hero-copy { max-width: 39rem; }
.hub-breadcrumb, .overline, .program-tag, .hero-locations, .day-label, .day-items, .hero-status, .gaming-chip { font-size: .63rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hub-breadcrumb { display: flex; align-items: center; gap: .55rem; margin-bottom: 1.35rem; }
.status-dot { display: inline-block; width: .46rem; height: .46rem; border-radius: 50%; background: #2fb76e; box-shadow: 0 0 0 4px rgba(47, 183, 110, .14); }
.status-dot--yellow { background: var(--yellow); box-shadow: 0 0 0 4px rgba(244, 214, 78, .18); }
h1, h2, h3 { font-family: var(--display); font-weight: 800; letter-spacing: -.075em; line-height: .92; }
.hero-copy h1 { max-width: 10ch; margin: 0; font-size: clamp(4rem, 7.2vw, 8rem); }
.hero-copy h1 em, h2 em { color: var(--coral); font-style: normal; }
.hero-lede { max-width: 28rem; margin: 1.9rem 0; font-size: clamp(1rem, 1.4vw, 1.15rem); }
.hero-actions { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.button--ink { background: var(--ink); color: var(--yellow); }
.quiet-link, .arrow-link { border-bottom: 1px solid currentColor; padding-bottom: .16rem; font-size: .82rem; font-weight: 800; }
.quiet-link span, .arrow-link span { display: inline-block; margin-left: .4rem; transition: transform .3s; }
.quiet-link:hover span, .arrow-link:hover span { transform: translate(3px, -3px); }
.hero-locations { display: flex; gap: 1.15rem; margin-top: 3.5rem; color: rgba(21, 24, 39, .6); }
.hero-locations span::before { margin-right: .45rem; color: var(--coral); content: '✦'; }
.hero-media { position: relative; min-height: 33rem; perspective: 1000px; }
.media-window { position: relative; width: min(39rem, 100%); height: 28rem; margin: 1.2rem 0 0 auto; overflow: hidden; border-radius: 1rem; background: #d6d1c6; box-shadow: 1.2rem 1.2rem 0 var(--yellow); transform: rotate(2deg); transition: transform .7s var(--ease); will-change: transform; }
.media-window img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(1.04); }
.media-gradient { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(21, 24, 39, .55)); }
.media-caption { position: absolute; right: 1.5rem; bottom: 1.25rem; left: 1.5rem; display: grid; gap: .35rem; color: white; }
.media-caption span { font-size: .6rem; font-weight: 800; letter-spacing: .15em; }
.media-caption strong { max-width: 14ch; font: 800 clamp(1.8rem, 3.2vw, 3.2rem) / .92 var(--display); letter-spacing: -.07em; }
.hero-status { position: absolute; bottom: 1.5rem; left: 0; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .7rem; width: 12.5rem; padding: 1rem; border: 1px solid var(--line); border-radius: .65rem; background: rgba(246, 244, 238, .9); box-shadow: .5rem .5rem 0 rgba(21, 24, 39, .12); backdrop-filter: blur(10px); }
.hero-status div { display: grid; gap: .15rem; text-transform: none; letter-spacing: 0; }
.hero-status b { font-size: .78rem; }
.hero-status div span { color: rgba(21, 24, 39, .6); font-size: .68rem; font-weight: 500; }
.status-arrow { font-size: 1rem; }
.day-strip { position: relative; z-index: 1; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 2rem; max-width: 125rem; margin: 4rem auto 0; border-top: 1px solid var(--line); padding: 1.15rem 0 1.25rem; }
.day-label { color: var(--coral); }
.day-items { display: flex; gap: clamp(1rem, 3vw, 3rem); overflow-x: auto; white-space: nowrap; }
.day-items b { margin-right: .4rem; color: var(--blue); }
.day-strip > a { font-size: .74rem; font-weight: 800; white-space: nowrap; }
.day-strip > a span { margin-left: .5rem; color: var(--coral); }

.section-pad { padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 5vw, 5rem); }
.campus, .community { background: var(--paper); }
.section-heading { display: grid; grid-template-columns: 1fr .45fr; align-items: end; gap: 4rem; max-width: 125rem; margin: 0 auto 3.8rem; }
.section-heading h2, .gaming-intro h2, .community-copy h2, .apply-card h2 { max-width: 10ch; margin: .75rem 0 0; font-size: clamp(3.6rem, 6.6vw, 7.2rem); }
.section-heading > p { max-width: 21rem; margin: 0 0 .4rem; font-size: 1rem; }
.overline { margin: 0; letter-spacing: .16em; }
.track-tabs { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 125rem; margin: 0 auto; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.track-tab { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.25rem; border: 0; border-right: 1px solid var(--line); padding: 1.3rem 1rem 1.25rem 0; background: transparent; color: var(--ink); text-align: left; cursor: pointer; }
.track-tab:last-child { border-right: 0; }
.track-tab:hover, .track-tab.is-active { background: rgba(244, 214, 78, .14); }
.track-number { color: var(--coral); font-size: .7rem; font-weight: 800; }
.track-tab b, .track-tab small { display: block; }
.track-tab b { font-size: .95rem; }
.track-tab small { margin-top: .2rem; color: rgba(21, 24, 39, .56); font-size: .75rem; }
.tab-arrow { font-size: 1.25rem; transition: transform .3s; }
.track-tab:hover .tab-arrow, .track-tab.is-active .tab-arrow { transform: translate(3px, -3px); }
.track-panels { max-width: 125rem; margin: 0 auto; }
.track-panel { display: grid; grid-template-columns: 1fr .32fr; align-items: center; gap: 2rem; min-height: 18rem; padding: 3rem 0; }
.track-panel h3 { max-width: 10ch; margin: .7rem 0 1rem; font-size: clamp(2.5rem, 4.6vw, 5rem); }
.track-panel p:not(.overline) { max-width: 30rem; margin: 0 0 1.35rem; }
.track-panel-side { display: grid; align-content: center; justify-items: end; min-height: 12rem; padding: 1.25rem; background: var(--yellow-soft); color: var(--ink); text-align: right; }
.track-panel-side--coral { background: var(--coral); }
.track-panel-side--mint { background: var(--mint); }
.big-number { font: 800 clamp(4rem, 8vw, 8rem) / .75 var(--display); letter-spacing: -.1em; }
.track-panel-side > span:last-child { margin-top: 1.5rem; font-size: .65rem; font-weight: 800; letter-spacing: .16em; }

.programs { background: var(--ink); color: var(--paper); }
.section-heading--light > p { color: rgba(246, 244, 238, .7); }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 125rem; margin: 0 auto; }
.program-card { display: flex; flex-direction: column; min-height: 21rem; padding: 1.35rem; border: 1px solid rgba(246, 244, 238, .18); border-radius: .8rem; background: rgba(246, 244, 238, .04); transition: transform .45s var(--ease), background .3s, border-color .3s; }
.program-card:hover { border-color: var(--yellow); background: rgba(246, 244, 238, .09); transform: translateY(-.5rem); }
.program-card--featured { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.program-card-top, .program-card-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.program-card-top > span:last-child { font: 700 1.8rem var(--display); letter-spacing: -.1em; opacity: .55; }
.program-tag { color: var(--coral); }
.program-card--featured .program-tag { color: var(--ink); }
.program-card h3 { margin: auto 0 .9rem; font-size: clamp(2.4rem, 4vw, 4.3rem); }
.program-card p { max-width: 19rem; margin: 0 0 1.7rem; color: rgba(246, 244, 238, .68); font-size: .92rem; }
.program-card--featured p { color: rgba(21, 24, 39, .72); }
.program-card-bottom { margin-top: auto; }
.program-card-bottom strong { font-size: .82rem; text-transform: uppercase; }
.program-card-bottom a { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--coral); color: var(--ink); font-size: 1.2rem; transition: transform .3s; }
.program-card-bottom a:hover { transform: translate(3px, -3px); }
.price-note { max-width: 125rem; margin: 1.25rem auto 0; color: rgba(246, 244, 238, .45); font-size: .72rem; }

.gaming { background: var(--blue); color: white; }
.gaming-intro { display: grid; grid-template-columns: 1fr .45fr; align-items: end; gap: 4rem; max-width: 125rem; margin: 0 auto 3.5rem; }
.overline--yellow { color: var(--yellow); }
.gaming-intro h2 { max-width: 6ch; line-height: .8; }
.gaming-intro h2 em { color: var(--yellow); }
.gaming-intro > div:last-child { max-width: 22rem; }
.gaming-intro > div:last-child p { margin: 0 0 1.5rem; color: rgba(255, 255, 255, .8); }
.button--yellow { background: var(--yellow); color: var(--ink); }
.gaming-gallery { position: relative; max-width: 125rem; min-height: 34rem; margin: 0 auto; }
.gaming-photo { position: absolute; margin: 0; overflow: hidden; border-radius: .75rem; background: #202344; box-shadow: .8rem .8rem 0 rgba(21, 24, 39, .42); transition: transform .6s var(--ease); will-change: transform; }
.gaming-photo img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(1.1); }
.gaming-photo::after { position: absolute; inset: 0; content: ''; background: linear-gradient(180deg, transparent 58%, rgba(21, 24, 39, .7)); }
.gaming-photo figcaption { position: absolute; z-index: 1; bottom: 1rem; left: 1rem; font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.gaming-photo--main { top: 0; left: 0; width: 59%; height: 27rem; transform: rotate(-2deg); }
.gaming-photo--secondary { right: 0; bottom: 0; width: 48%; height: 22rem; transform: rotate(2deg); }
.gaming-photo--main:hover { transform: rotate(0) scale(1.02); }
.gaming-photo--secondary:hover { transform: rotate(0) scale(1.035); }
.gaming-chip { position: absolute; z-index: 2; right: 39%; top: 1.8rem; display: grid; grid-template-columns: auto 1fr; gap: .3rem .55rem; padding: .9rem 1rem; border: 1px solid rgba(255, 255, 255, .45); border-radius: .6rem; background: rgba(21, 24, 39, .35); backdrop-filter: blur(12px); }
.gaming-chip b { grid-column: 2; font-size: .69rem; letter-spacing: .08em; }

.community-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(3rem, 8vw, 9rem); max-width: 125rem; margin: 0 auto; }
.community-image { position: relative; min-height: 28rem; overflow: hidden; border-radius: 1rem; background: #d8d4ca; box-shadow: 1rem 1rem 0 var(--yellow); }
.community-image img { display: block; width: 100%; height: 100%; min-height: 28rem; object-fit: cover; filter: saturate(1.05); }
.image-label { position: absolute; right: 1.2rem; bottom: 1.1rem; left: 1.2rem; color: white; font-size: .65rem; font-weight: 800; letter-spacing: .15em; }
.community-copy { max-width: 32rem; }
.community-copy h2 { max-width: 9ch; }
.community-copy > p:not(.overline) { max-width: 28rem; margin: 1.8rem 0 2.3rem; font-size: 1.08rem; }
.community-stats { display: flex; gap: clamp(1.2rem, 3vw, 3rem); border-top: 1px solid var(--line); padding-top: 1rem; }
.community-stats div { display: grid; gap: .2rem; }
.community-stats strong { font: 800 2.5rem / 1 var(--display); letter-spacing: -.08em; }
.community-stats span { font-size: .61rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.apply { background: var(--yellow); }
.apply-card { display: grid; grid-template-columns: 1fr .45fr; align-items: end; gap: 4rem; max-width: 125rem; margin: 0 auto; }
.apply-card h2 { max-width: 8ch; }
.apply-side { max-width: 22rem; }
.apply-side p { margin: 0 0 1.8rem; font-size: 1.05rem; }
.apply-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.apply-actions > a:last-child { border-bottom: 1px solid currentColor; padding-bottom: .15rem; font-size: .8rem; font-weight: 800; }
.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1.7rem clamp(1.25rem, 5vw, 5rem); background: var(--ink); color: var(--paper); font-size: .7rem; }
.site-footer > div, .site-footer nav { display: flex; align-items: center; gap: .75rem; }
.footer-mark { color: var(--yellow); font: 800 1rem var(--display); letter-spacing: -.08em; }
.site-footer nav { gap: 1.2rem; font-weight: 700; }
.site-footer nav a:hover { color: var(--yellow); }
.site-footer p { margin: 0; opacity: .5; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }

@media (max-width: 900px) {
  .primary-nav { gap: 1rem; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding-bottom: 3rem; }
  .hero-copy { max-width: 45rem; }
  .hero-media { min-height: 31rem; }
  .media-window { margin-right: 4rem; }
  .section-heading, .gaming-intro, .apply-card { grid-template-columns: 1fr .65fr; gap: 2rem; }
  .program-grid { grid-template-columns: repeat(3, 1fr); }
  .program-card { min-height: 24rem; }
  .gaming-gallery { min-height: 29rem; }
  .gaming-photo--main { height: 23rem; }
  .gaming-photo--secondary { height: 18rem; }
  .community-grid { gap: 3rem; }
}

@media (max-width: 680px) {
  body { font-size: 15px; }
  .pointer-glow { display: none; }
  .site-header { padding: .9rem 1.1rem; }
  .site-header.is-scrolled { padding: .7rem 1.1rem; }
  .brand-name { max-width: 8rem; font-size: .58rem; }
  .primary-nav { position: absolute; top: calc(100% + .5rem); right: 1rem; left: 1rem; display: flex; flex-direction: column; gap: .1rem; padding: .7rem; border: 1px solid var(--line); border-radius: .7rem; background: rgba(246, 244, 238, .97); box-shadow: 0 1rem 3rem rgba(21, 24, 39, .15); opacity: 0; pointer-events: none; transform: translateY(-1rem); transition: opacity .25s, transform .25s; }
  .site-header.menu-open .primary-nav { opacity: 1; pointer-events: auto; transform: none; }
  .primary-nav a { padding: .75rem 1rem; }
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .site-header.menu-open .menu-toggle i:first-of-type { transform: translateY(4px) rotate(45deg); }
  .site-header.menu-open .menu-toggle i:last-of-type { transform: translateY(-4px) rotate(-45deg); }
  .hub-hero { padding: 7.2rem 1.1rem 0; }
  .hero-grid { gap: 2rem; }
  .hero-copy h1 { max-width: 9ch; font-size: clamp(3.8rem, 16.5vw, 6rem); }
  .hero-lede { margin: 1.5rem 0; }
  .hero-locations { margin-top: 2.4rem; }
  .hero-media { min-height: 23rem; }
  .media-window { height: 19rem; margin: .5rem .7rem 0 1rem; box-shadow: .75rem .75rem 0 var(--yellow); }
  .media-caption { right: .85rem; bottom: .8rem; left: .85rem; }
  .media-caption strong { font-size: 2rem; }
  .hero-status { bottom: 0; left: 0; width: 11.5rem; padding: .75rem; }
  .day-strip { grid-template-columns: 1fr auto; gap: .8rem; margin-top: 2rem; }
  .day-label { grid-column: 1 / -1; }
  .day-items { grid-column: 1; gap: 1rem; font-size: .58rem; }
  .day-strip > a { grid-column: 2; grid-row: 2; font-size: .62rem; }
  .section-pad { padding: 5rem 1.1rem; }
  .section-heading, .gaming-intro, .apply-card { display: block; margin-bottom: 2.7rem; }
  .section-heading h2, .gaming-intro h2, .community-copy h2, .apply-card h2 { margin-bottom: 1.2rem; font-size: clamp(3.4rem, 15vw, 5.2rem); }
  .section-heading > p { max-width: 22rem; }
  .track-tabs { display: block; }
  .track-tab { width: 100%; border-right: 0; border-bottom: 1px solid var(--line); padding: 1rem 0; }
  .track-tab:last-child { border-bottom: 0; }
  .track-panel { display: block; min-height: 0; padding: 2.4rem 0 2.8rem; }
  .track-panel h3 { font-size: 3.2rem; }
  .track-panel-side { min-height: 9rem; margin-top: 2rem; }
  .program-grid { grid-template-columns: 1fr; }
  .program-card { min-height: 19rem; }
  .program-card h3 { font-size: 3.2rem; }
  .gaming-intro > div:last-child { max-width: 22rem; }
  .gaming-gallery { min-height: 23rem; }
  .gaming-photo--main { width: 73%; height: 18rem; }
  .gaming-photo--secondary { width: 57%; height: 14rem; }
  .gaming-chip { right: .2rem; top: .7rem; font-size: .55rem; }
  .community-grid { display: block; }
  .community-image { min-height: 19rem; margin-bottom: 3rem; box-shadow: .7rem .7rem 0 var(--yellow); }
  .community-image img { min-height: 19rem; }
  .community-stats { gap: 1rem; }
  .community-stats strong { font-size: 2rem; }
  .community-stats span { font-size: .55rem; }
  .apply-side { max-width: 22rem; }
  .site-footer { align-items: flex-start; flex-direction: column; gap: 1.1rem; }
  .site-footer nav { flex-wrap: wrap; }
  .site-footer p { font-size: .63rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .pointer-glow { display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .media-window, .gaming-photo { transition: none; }
  body::before { display: none; }
}
