:root {
  --white: #ffffff;
  --cream: #fdf9f0;
  --ink: #141414;
  --black: #000000;
  --lime: #c7ff69;
  --blue: #478bff;
  --lavender: #ccccff;
  --steel: #b9ddfd;
  --wheat: #ffeeba;
  --peach: #ffcdba;
  --coral: #ff6d38;
  --green: #00a652;
  --display: "Archivo Black", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: "Inter Tight", Aeonik, Arial, sans-serif;
  --radius: 32px;
  --pill: 999px;
  --line: 1px solid rgba(253, 249, 240, 0.2);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--cream);
  background: var(--black);
  font-family: var(--body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.24;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(253, 249, 240, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(253, 249, 240, 0.045) 1px, transparent 1px),
    var(--black);
  background-size: 54px 54px;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  content: "";
  background: linear-gradient(transparent 52%, rgba(255, 255, 255, 0.05) 54%);
  background-size: 100% 4px;
  mix-blend-mode: overlay;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--lime);
  transition: opacity 450ms ease, visibility 450ms ease;
}

.site-loader.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.loader-card {
  width: min(100% - 44px, 560px);
  padding: 1.4rem;
  color: var(--cream);
  background: var(--black);
  border-radius: 34px;
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.36);
}

.loader-card span {
  display: block;
  margin-bottom: 1.8rem;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.loader-card strong {
  display: block;
  margin-bottom: 1.2rem;
  font-family: var(--display);
  font-size: clamp(2rem, 8vw, 4.8rem);
  line-height: 0.85;
  text-transform: uppercase;
}

.loader-bar {
  height: 14px;
  overflow: hidden;
  background: rgba(253, 249, 240, 0.14);
  border-radius: var(--pill);
}

.loader-bar::before {
  display: block;
  width: 38%;
  height: 100%;
  content: "";
  background: var(--lime);
  border-radius: inherit;
  animation: loader-slide 850ms ease-in-out infinite alternate;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 0%;
  height: 4px;
  background: var(--lime);
  box-shadow: 0 0 22px rgba(199, 255, 105, 0.7);
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2;
  width: 260px;
  height: 260px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(199, 255, 105, 0.14), transparent 68%);
  border-radius: 50%;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 180ms ease;
  mix-blend-mode: screen;
}

body.has-pointer .cursor-glow {
  opacity: 1;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
summary {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

::selection {
  color: var(--black);
  background: var(--lime);
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: var(--black);
  background: var(--lime);
  border-radius: var(--pill);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

#network-canvas {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  opacity: 0.58;
}

.nav-shell {
  position: fixed;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.5rem;
  color: var(--cream);
  background: rgba(0, 0, 0, 0.78);
  border: var(--line);
  border-radius: var(--pill);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.nav-actions,
.hero-cta,
.contact-actions,
.track-wheel,
.filter-row,
.schedule-tabs {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.65rem;
  min-width: 0;
  padding: 0.35rem 0.9rem 0.35rem 0.35rem;
  font-weight: 900;
}

.brand-glyph {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--black);
  background: var(--lime);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1rem;
}

.nav-links {
  justify-content: center;
  gap: 0.15rem;
}

.nav-actions {
  justify-content: flex-end;
  gap: 0.4rem;
}

.nav-links a,
.nav-actions a,
.motion-toggle,
.launch-button,
.tier-button,
.judge-filter,
.day-tab {
  min-height: 42px;
  padding: 0.72rem 0.95rem;
  color: var(--cream);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--pill);
  font-size: 0.88rem;
  font-weight: 800;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.nav-links a:hover,
.nav-links a.is-active,
.nav-actions a:hover,
.motion-toggle:hover,
.tier-button:hover,
.tier-button.is-active,
.judge-filter:hover,
.judge-filter.is-active,
.day-tab:hover,
.day-tab.is-active {
  color: var(--black);
  background: var(--cream);
}

.launch-button {
  color: var(--black) !important;
  background: var(--lime) !important;
}

.launch-button:hover,
.launch-button.is-active {
  background: var(--wheat) !important;
}

.motion-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.1rem;
  padding: 0.25rem;
  border-color: rgba(253, 249, 240, 0.22);
}

.motion-toggle span {
  display: grid;
  place-items: center;
  min-width: 52px;
  min-height: 32px;
  border-radius: var(--pill);
}

.motion-toggle[aria-pressed="true"] span:first-child,
.motion-toggle[aria-pressed="false"] span:last-child {
  color: var(--black);
  background: var(--cream);
}

.hero,
.page-hero,
.intro-statement,
.quick-map,
.split-feature,
.chapter-strip,
.cta-panel,
.tier-grid,
.people-grid,
.rubric-board,
.host-feature,
.host-grid,
.timeline-panel,
.venue-stage,
.info-grid,
.form-layout,
.registration-layout,
.filter-row,
.schedule-tabs {
  width: min(100% - 32px, 1240px);
  margin-inline: auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.48fr);
  gap: 2rem;
  align-items: center;
  min-height: 100vh;
  padding: 140px 0 64px;
}

.hero-wordmark {
  position: absolute;
  top: 104px;
  right: -24px;
  z-index: -1;
  color: rgba(253, 249, 240, 0.035);
  font-family: var(--display);
  font-size: 8rem;
  line-height: 0.8;
  text-transform: uppercase;
  pointer-events: none;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  gap: 2rem;
  align-items: end;
  padding: 150px 0 72px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 900px;
  margin-bottom: 1rem;
  font-size: 7rem;
}

h2 {
  font-size: 4.7rem;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.hero-copy > p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 1.5rem;
  color: rgba(253, 249, 240, 0.84);
  font-size: 1.5rem;
  font-weight: 700;
}

.hero-cta {
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.2rem;
  border: 0;
  border-radius: var(--pill);
  font-weight: 900;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease;
}

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

.button.primary {
  color: var(--black);
  background: var(--lime);
}

.button.primary:hover {
  background: var(--wheat);
}

.button.secondary {
  color: var(--cream);
  background: rgba(253, 249, 240, 0.09);
  border: 1px solid rgba(253, 249, 240, 0.23);
}

.button.secondary:hover {
  background: rgba(253, 249, 240, 0.17);
}

.launch-panel,
.page-stat-card,
.interactive-card,
.cta-panel,
.stacked-list,
.rubric-board,
.venue-stage,
.contact-form,
.registration-form,
.prep-card,
.contact-cards {
  background: rgba(6, 8, 7, 0.82);
  border: var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.launch-panel,
.page-stat-card {
  padding: 1.25rem;
}

.panel-top,
.page-stat-card span {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--lime);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.page-stat-card strong {
  display: block;
  margin-bottom: 1.25rem;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.countdown-grid div {
  min-height: 120px;
  padding: 0.8rem;
  color: var(--black);
  background: var(--cream);
  border-radius: 24px;
}

.countdown-grid strong {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.countdown-grid span,
.event-facts dt {
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-facts {
  display: grid;
  gap: 0.65rem;
  margin: 0;
}

.event-facts div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 0.75rem;
  padding: 0.85rem;
  border: 1px solid rgba(253, 249, 240, 0.18);
  border-radius: 20px;
}

.event-facts dt {
  color: rgba(253, 249, 240, 0.55);
}

.event-facts dd {
  margin: 0;
  font-weight: 900;
}

.intro-statement {
  padding: 86px 0;
}

.intro-statement > div {
  max-width: 980px;
}

.lead-word {
  margin-bottom: 0.4rem;
  color: var(--cream);
  font-family: var(--display);
  font-size: 4.2rem;
  line-height: 0.9;
  text-transform: uppercase;
}

.intro-statement p:not(.lead-word) {
  color: rgba(253, 249, 240, 0.86);
  font-size: 1.95rem;
  font-weight: 700;
}

.quick-map,
.tier-grid,
.people-grid,
.host-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 34px 0 86px;
}

.map-card,
.tier-card,
.person-card,
.host-grid article,
.info-grid article,
.photo-card,
.timeline-panel article {
  color: var(--black);
  border-radius: var(--radius);
  transition: transform 200ms ease, background 200ms ease;
}

.map-card:hover,
.tier-card:hover,
.person-card:hover,
.host-grid article:hover,
.info-grid article:hover,
.photo-card:hover,
.timeline-panel article:hover {
  transform: translateY(-4px);
}

.map-card {
  display: grid;
  align-content: space-between;
  min-height: 300px;
  padding: 1.3rem;
}

.lime {
  background: var(--lime);
}

.cream {
  background: var(--cream);
}

.blue {
  background: var(--steel);
}

.peach {
  background: var(--peach);
}

.map-card span,
.tier-card span,
.person-card span,
.host-grid span,
.info-grid span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 2rem;
  color: var(--black);
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  font-family: var(--display);
}

.map-card h2,
.tier-card h2,
.person-card h2,
.host-grid h2,
.info-grid h2 {
  margin-bottom: 1rem;
  color: var(--black);
  font-size: 2.1rem;
  line-height: 0.95;
}

.map-card p,
.tier-card p,
.person-card p,
.host-grid p,
.info-grid p,
.timeline-panel p {
  margin-bottom: 0;
  font-weight: 700;
}

.split-feature {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 2rem;
  align-items: start;
  padding: 86px 0;
}

.section-kicker {
  position: sticky;
  top: 112px;
}

.interactive-card {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.track-wheel {
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  min-height: 260px;
  padding: 1.25rem;
  background: var(--black);
  border-radius: 26px;
}

.track {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  color: var(--black);
  background: var(--cream);
  border: 0;
  border-radius: 24px;
  font-weight: 900;
  transition: background 200ms ease, transform 200ms ease;
}

.track:hover,
.track.is-active {
  background: var(--lime);
  transform: translateY(-4px);
}

.track-copy {
  padding: 1.25rem;
  color: var(--black);
  background: var(--cream);
  border-radius: 26px;
}

.track-copy h3 {
  color: var(--black);
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.track-copy p:last-child {
  font-weight: 700;
}

.chapter-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 60px 0 86px;
}

.chapter-strip article {
  min-height: 360px;
  padding: 1.4rem;
  color: var(--black);
  background: var(--cream);
  border-radius: var(--radius);
}

.chapter-strip article:nth-child(2) {
  background: var(--lime);
}

.chapter-strip article:nth-child(3) {
  background: var(--lavender);
}

.chapter-strip span {
  display: block;
  margin-bottom: 3rem;
  font-family: var(--display);
  font-size: 4rem;
  line-height: 1;
}

.chapter-strip h2 {
  color: var(--black);
  font-size: 2.55rem;
}

.chapter-strip p {
  font-weight: 700;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 28px;
  padding: 1.5rem;
}

.cta-panel h2 {
  margin-bottom: 1rem;
}

.cta-panel p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(253, 249, 240, 0.8);
  font-size: 1.25rem;
}

.reward-card {
  display: grid;
  align-content: space-between;
  min-height: 290px;
  padding: 1.25rem;
  color: var(--black);
  background: var(--lime);
  border-radius: 28px;
  transition: transform 200ms ease, background 200ms ease;
}

.reward-card:hover {
  background: var(--wheat);
  transform: translateY(-4px);
}

.reward-card span {
  font-family: var(--display);
  font-size: 4.8rem;
  line-height: 0.82;
}

.reward-card p {
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
}

.reward-card strong {
  display: inline-flex;
  justify-content: center;
  padding: 0.9rem;
  color: var(--cream);
  background: var(--black);
  border-radius: var(--pill);
}

.filter-row,
.schedule-tabs {
  flex-wrap: wrap;
  gap: 0.7rem;
  padding-bottom: 1.25rem;
}

.tier-grid,
.people-grid,
.host-grid,
.info-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 0;
}

.tier-card,
.person-card,
.host-grid article,
.info-grid article {
  min-height: 300px;
  padding: 1.3rem;
}

.tier-card ul,
.prep-card ul {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.tier-card li,
.prep-card li {
  padding: 0.65rem 0.75rem;
  color: var(--black);
  background: rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  font-weight: 800;
}

.tier-card.is-hidden,
.person-card.is-hidden {
  display: none;
}

.stacked-list {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.stacked-list article {
  display: grid;
  grid-template-columns: 58px 180px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  color: var(--black);
  background: var(--cream);
  border-radius: 22px;
}

.stacked-list span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: var(--lime);
  border-radius: 50%;
  font-family: var(--display);
}

.stacked-list p {
  margin: 0;
  font-weight: 700;
}

.rubric-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 28px;
  padding: 1rem;
}

.rubric-board div {
  min-height: 230px;
  padding: 1rem;
  color: var(--black);
  background: var(--cream);
  border-radius: 24px;
}

.rubric-board div:nth-child(even) {
  background: var(--lime);
}

.rubric-board span {
  display: block;
  margin-bottom: 2rem;
  font-family: var(--display);
  font-size: 2.6rem;
  line-height: 1;
}

.rubric-board strong {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.host-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding-bottom: 1rem;
}

.photo-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 520px;
  overflow: hidden;
  padding: 1.5rem;
  color: var(--cream);
  background: var(--ink);
}

.photo-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
}

.photo-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(transparent 38%, rgba(0, 0, 0, 0.9));
}

.photo-card div {
  position: relative;
  z-index: 2;
}

.photo-card span {
  color: var(--lime);
  font-weight: 900;
  text-transform: uppercase;
}

.photo-card h2 {
  margin: 0;
  font-size: 3rem;
}

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

.host-grid article {
  background: var(--cream);
}

.host-grid article:nth-child(3n + 2) {
  background: var(--steel);
}

.host-grid article:nth-child(3n) {
  background: var(--peach);
}

.timeline-panel {
  display: none;
  gap: 1rem;
  grid-template-columns: 1fr;
  padding-bottom: 28px;
}

.timeline-panel.is-active {
  display: grid;
}

.timeline-panel article {
  display: grid;
  grid-template-columns: 150px 0.8fr 1fr;
  gap: 1.2rem;
  align-items: center;
  min-height: 150px;
  padding: 1.2rem;
  background: var(--cream);
}

.timeline-panel article:nth-child(even) {
  background: var(--lime);
}

.timeline-panel time {
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.timeline-panel h2 {
  color: var(--black);
  font-size: 2.4rem;
}

.venue-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
}

.venue-map {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    radial-gradient(circle at 20% 25%, var(--lime), transparent 18%),
    radial-gradient(circle at 75% 25%, var(--steel), transparent 20%),
    radial-gradient(circle at 42% 72%, var(--peach), transparent 22%),
    var(--cream);
  border-radius: 26px;
}

.venue-map::before {
  position: absolute;
  inset: 28px;
  content: "";
  border: 2px solid rgba(0, 0, 0, 0.55);
  border-radius: 32px;
}

.hotspot {
  position: absolute;
  min-height: 46px;
  padding: 0.75rem 1rem;
  color: var(--black);
  background: var(--lime);
  border: 2px solid var(--black);
  border-radius: var(--pill);
  font-weight: 900;
  transition: transform 200ms ease, background 200ms ease;
}

.hotspot:hover,
.hotspot.is-active {
  background: var(--wheat);
  transform: translateY(-3px);
}

.hot-a {
  top: 14%;
  left: 10%;
}

.hot-b {
  top: 42%;
  left: 42%;
}

.hot-c {
  right: 12%;
  bottom: 17%;
}

.hot-d {
  left: 14%;
  bottom: 16%;
}

.hotspot-panel {
  display: grid;
  align-content: center;
  padding: 1.3rem;
  color: var(--black);
  background: var(--cream);
  border-radius: 26px;
}

.hotspot-panel h2 {
  color: var(--black);
  font-size: 3rem;
}

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

.info-grid article {
  background: var(--cream);
}

.info-grid article:nth-child(2) {
  background: var(--lime);
}

.info-grid article:nth-child(3) {
  background: var(--steel);
}

.form-layout,
.registration-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 1rem;
  padding-bottom: 28px;
}

.contact-form,
.registration-form,
.prep-card,
.contact-cards {
  padding: 1.2rem;
}

.contact-form,
.registration-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.55rem;
}

label span {
  color: var(--lime);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 54px;
  padding: 0.95rem 1rem;
  color: var(--cream);
  background: rgba(253, 249, 240, 0.08);
  border: 1px solid rgba(253, 249, 240, 0.24);
  border-radius: 18px;
}

textarea {
  resize: vertical;
}

.full-field {
  grid-column: 1 / -1;
}

.team-size {
  accent-color: var(--lime);
}

.team-size-value {
  color: var(--cream);
  font-size: 0.95rem;
}

.prep-card {
  color: var(--black);
  background: var(--lime);
}

.prep-card .eyebrow {
  color: var(--black);
}

.prep-card h2 {
  color: var(--black);
  font-size: 3rem;
}

.contact-cards {
  display: grid;
  gap: 0.75rem;
}

.contact-cards a {
  display: grid;
  min-height: 120px;
  padding: 1rem;
  color: var(--black);
  background: var(--cream);
  border-radius: 24px;
  transition: transform 200ms ease, background 200ms ease;
}

.contact-cards a:nth-child(2) {
  background: var(--steel);
}

.contact-cards a:nth-child(3) {
  background: var(--lime);
}

.contact-cards a:hover {
  transform: translateY(-4px);
}

.contact-cards span {
  font-weight: 900;
  text-transform: uppercase;
}

.contact-cards strong {
  align-self: end;
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100% - 32px, 1240px);
  margin: 0 auto 18px;
  padding: 1.5rem;
  border: var(--line);
  border-radius: 28px;
  background: rgba(253, 249, 240, 0.08);
}

.site-footer div,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.site-footer a {
  color: rgba(253, 249, 240, 0.7);
  font-weight: 800;
}

.site-footer a:hover {
  color: var(--lime);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.motion-off *,
body.motion-off *::before,
body.motion-off *::after {
  animation-play-state: paused !important;
  transition-duration: 1ms !important;
}

body.motion-off #network-canvas {
  display: none;
}

@media (max-width: 1120px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .page-hero,
  .split-feature,
  .cta-panel,
  .venue-stage,
  .form-layout,
  .registration-layout {
    grid-template-columns: 1fr;
  }

  .quick-map,
  .tier-grid,
  .people-grid,
  .host-grid,
  .chapter-strip,
  .rubric-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  h1 {
    font-size: 5.5rem;
  }

  h2 {
    font-size: 3.8rem;
  }

  .section-kicker {
    position: static;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .nav-shell {
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .brand span:last-child,
  .motion-toggle {
    display: none;
  }

  .launch-button {
    min-height: 40px;
    padding: 0.65rem 0.9rem;
  }

  .hero,
  .page-hero,
  .intro-statement,
  .quick-map,
  .split-feature,
  .chapter-strip,
  .cta-panel,
  .tier-grid,
  .people-grid,
  .rubric-board,
  .host-feature,
  .host-grid,
  .timeline-panel,
  .venue-stage,
  .info-grid,
  .form-layout,
  .registration-layout,
  .filter-row,
  .schedule-tabs,
  .site-footer {
    width: min(100% - 22px, 1240px);
  }

  .hero {
    min-height: auto;
    padding: 116px 0 48px;
  }

  .page-hero {
    padding: 118px 0 48px;
  }

  .hero-wordmark {
    top: 86px;
    right: 0;
    font-size: 3.4rem;
  }

  h1 {
    font-size: clamp(2.65rem, 10.8vw, 3.2rem);
  }

  h2,
  .prep-card h2,
  .hotspot-panel h2 {
    font-size: clamp(2.2rem, 9.2vw, 2.65rem);
  }

  .hero-copy > p:not(.eyebrow),
  .page-hero p:not(.eyebrow),
  .intro-statement p:not(.lead-word) {
    font-size: 1.1rem;
  }

  .lead-word {
    font-size: 2.6rem;
  }

  .hero-cta,
  .button {
    width: 100%;
  }

  .quick-map,
  .tier-grid,
  .people-grid,
  .host-feature,
  .host-grid,
  .chapter-strip,
  .rubric-board,
  .info-grid,
  .contact-form,
  .registration-form {
    grid-template-columns: 1fr;
  }

  .countdown-grid {
    grid-template-columns: 1fr;
  }

  .intro-statement,
  .split-feature,
  .chapter-strip {
    padding: 54px 0;
  }

  .quick-map,
  .tier-grid,
  .people-grid,
  .host-grid,
  .info-grid {
    padding-bottom: 54px;
  }

  .map-card,
  .tier-card,
  .person-card,
  .host-grid article,
  .info-grid article {
    min-height: 240px;
  }

  .stacked-list article,
  .timeline-panel article {
    grid-template-columns: 1fr;
  }

  .rubric-board {
    margin-bottom: 10px;
  }

  .photo-card {
    min-height: 360px;
  }

  .venue-map {
    min-height: 430px;
  }

  .hotspot {
    font-size: 0.82rem;
  }

  .full-field {
    grid-column: auto;
  }

  .site-footer {
    flex-direction: column;
    margin-bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  #network-canvas {
    display: none;
  }
}
