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

:root {
  --paper: #f2f4ec;
  --paper-bright: #fbfcf7;
  --ink: #0b1724;
  --navy: #0f3a50;
  --navy-deep: #082c40;
  --azure: #1689c7;
  --sky: #9ecbe2;
  --powder: #dcecf2;
  --mist: #b9d2df;
  --slate: #5f7b8d;
  --muted: #416274;
  --rule: 2px solid var(--ink);
  --rule-light: 2px solid rgba(255, 255, 255, .34);
  --frame: 72.5rem;
  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2.5rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --space-8: 9rem;
  --display: 'Poppins', sans-serif;
  --body: 'Poppins', sans-serif;
  --utility: 'Poppins', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  background: var(--paper);
}

body {
  min-width: 18rem;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

figure,
p,
h1,
h2,
h3,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration-thickness: .1em;
  text-underline-offset: .18em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-frame {
  width: min(calc(100% - 2rem), var(--frame));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: var(--navy);
  color: var(--paper-bright);
  border-bottom: 2px solid rgba(255, 255, 255, .24);
  transition: background-color .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 44, 64, .98);
  box-shadow: 0 10px 24px rgba(8, 44, 64, .16);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
  gap: var(--space-4);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: .7rem;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-wordmark {
  display: grid;
  gap: .08rem;
  font-family: var(--utility);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-wordmark small {
  color: var(--sky);
  font-size: .54rem;
  letter-spacing: .14em;
}

.site-nav {
  display: block;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(.9rem, 2vw, 2rem);
}

.nav-link,
.nav-register,
.nav-toggle {
  font-family: var(--utility);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.nav-link {
  position: relative;
  display: inline-flex;
  padding: .35rem 0;
  color: var(--mist);
  text-decoration: none;
  transition: color .2s ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--sky);
  content: '';
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.nav-link:hover,
.nav-link[aria-current='page'] {
  color: var(--paper-bright);
}

.nav-link:hover::after,
.nav-link[aria-current='page']::after {
  transform: scaleX(1);
}

.nav-register,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  min-height: 3rem;
  padding: .8rem 1.15rem;
  border: 2px solid transparent;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.2;
  max-width: 100%;
  overflow-wrap: anywhere;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.nav-register {
  border-color: var(--mist);
  color: var(--paper-bright);
}

.nav-register:hover {
  background: var(--paper-bright);
  border-color: var(--paper-bright);
  color: var(--navy);
}

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

.button-primary {
  background: var(--navy);
  color: var(--paper-bright);
}

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

.button-light {
  background: var(--paper-bright);
  color: var(--navy);
}

.button-light:hover {
  background: var(--sky);
}

.button-outline {
  border-color: currentColor;
  color: var(--navy);
}

.button-outline:hover {
  background: var(--navy);
  color: var(--paper-bright);
}

.button-outline-light {
  border-color: var(--sky);
  color: var(--paper-bright);
}

.button-outline-light:hover {
  background: var(--sky);
  color: var(--navy);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: .65rem;
  padding: .55rem 0;
  border: 0;
  background: transparent;
  color: var(--paper-bright);
  cursor: pointer;
}

.nav-toggle-icon {
  position: relative;
  display: inline-block;
  width: 1.2rem;
  height: .8rem;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.nav-toggle-icon::after {
  position: absolute;
  top: .25rem;
  right: 0;
  left: 0;
  height: 2px;
  background: currentColor;
  content: '';
}

.nav-toggle[aria-expanded='true'] .nav-toggle-icon {
  border-bottom-color: transparent;
  transform: rotate(45deg) translate(.1rem, .1rem);
}

.nav-toggle[aria-expanded='true'] .nav-toggle-icon::after {
  top: .25rem;
  transform: rotate(-90deg);
}

.section,
.page-section {
  padding-block: clamp(4rem, 9vw, var(--space-8));
}

.section--tight {
  padding-block: clamp(3rem, 6vw, var(--space-7));
}

.section--paper {
  background: var(--paper-bright);
}

.section--powder {
  background: var(--powder);
}

.section--navy {
  background: var(--navy);
  color: var(--paper-bright);
}

.section--deep {
  background: var(--navy-deep);
  color: var(--paper-bright);
}

.section-head {
  display: grid;
  gap: var(--space-3);
  max-width: 46rem;
}

.section-index,
.eyebrow,
.hero-meta,
.fact-label,
.caption,
.table-label,
.footer-label {
  font-family: var(--utility);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .17em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-index,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  color: var(--azure);
}

.section-index::after,
.eyebrow::after {
  display: inline-block;
  width: 2.8rem;
  height: 2px;
  background: currentColor;
  content: '';
}

.section-index-light,
.eyebrow-light {
  color: var(--sky);
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: .97;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 7.3rem);
}

h2 {
  font-size: clamp(2.5rem, 5vw, 5.3rem);
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  letter-spacing: -.04em;
  line-height: 1.04;
}

.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--deep h1,
.section--deep h2,
.section--deep h3,
.event-hero h1,
.event-hero h2,
.event-hero h3 {
  color: var(--paper-bright);
}

.section-sub,
.lead,
.hero-lede,
.page-lede {
  max-width: 42rem;
  color: var(--slate);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.section--navy .section-sub,
.section--navy .lead,
.section--deep .section-sub,
.section--deep .lead,
.event-hero .page-lede {
  color: var(--mist);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  width: fit-content;
  border-bottom: 2px solid currentColor;
  color: var(--navy);
  font-family: var(--utility);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.3;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease, border-color .2s ease;
}

.text-link:hover {
  border-color: var(--azure);
  color: var(--azure);
}

.section--navy .text-link,
.section--deep .text-link,
.event-hero .text-link {
  color: var(--paper-bright);
}

.hero-home {
  padding-block: clamp(1rem, 3vw, 3rem) 0;
  background: var(--paper);
}

.hero-home-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  min-height: min(43rem, calc(100vh - 6rem));
  border: var(--rule);
  background: var(--paper-bright);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  padding: clamp(1.75rem, 3.5vw, 3.5rem);
}

.hero-copy .eyebrow {
  margin-bottom: var(--space-4);
}

.hero-copy h1 {
  max-width: 35rem;
  font-size: clamp(3rem, 5vw, 5rem);
}

.hero-copy h1 .accent {
  color: var(--azure);
}

.word-cycle {
  display: inline-block;
  min-width: 8ch;
  color: var(--azure);
  white-space: nowrap;
}

.word-cycle.is-changing {
  animation: word-change .35s ease both;
}

@keyframes word-change {
  0% { opacity: .2; transform: translateY(.3em); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-meta {
  margin-top: var(--space-5);
  color: var(--navy);
}

.hero-lede {
  margin-top: var(--space-4);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .8rem 1.2rem;
  margin-top: var(--space-5);
}

.hero-media {
  position: relative;
  min-height: 28rem;
  overflow: hidden;
  border-left: var(--rule);
  background: var(--navy);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
  object-position: 52% 54%;
}

.hero-caption,
.media-caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: min(20rem, calc(100% - 2rem));
  padding: .65rem .8rem;
  background: var(--paper-bright);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.35;
}

.fact-strip {
  border-bottom: var(--rule);
  background: var(--paper-bright);
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-right: var(--rule);
  border-left: var(--rule);
}

.fact {
  min-width: 0;
  padding: clamp(1.4rem, 3vw, 2.25rem) clamp(1rem, 2.4vw, 2rem);
  border-right: var(--rule);
}

.fact:last-child {
  border-right: 0;
}

.fact strong {
  display: block;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: 1;
}

.fact span {
  display: block;
  margin-top: .45rem;
  color: var(--slate);
  font-size: .85rem;
  line-height: 1.35;
}

.intro-grid,
.split-grid,
.chapter-grid,
.impact-layout,
.partner-layout,
.team-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.intro-grid > *,
.split-grid > *,
.chapter-grid > *,
.impact-layout > *,
.partner-layout > *,
.team-layout > * {
  min-width: 0;
}

.intro-copy {
  display: grid;
  gap: var(--space-4);
}

.intro-copy h2 {
  max-width: 30rem;
}

.copy-stack {
  display: grid;
  gap: var(--space-4);
  max-width: 44rem;
  color: var(--slate);
}

.copy-stack strong {
  color: var(--navy);
}

.editorial-image {
  position: relative;
  overflow: hidden;
  border: var(--rule);
  background: var(--navy);
}

.editorial-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.editorial-image .media-caption {
  right: 1rem;
  bottom: 1rem;
}

.numbered-list {
  border-top: var(--rule);
}

.numbered-list li {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(.8rem, 2vw, 2rem);
  align-items: start;
  padding-block: 1.35rem;
  border-bottom: var(--rule);
}

.numbered-list .list-number {
  color: var(--azure);
  font-family: var(--utility);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.numbered-list h3 {
  font-size: clamp(1.25rem, 2.1vw, 1.8rem);
}

.numbered-list p {
  max-width: 34rem;
  color: var(--slate);
  line-height: 1.55;
}

.chapter-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: stretch;
}

.chapter-grid--reverse .chapter-copy {
  order: 2;
}

.chapter-grid--reverse .editorial-image {
  order: 1;
}

.chapter-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--space-4);
  min-height: 100%;
  padding: clamp(1.8rem, 4vw, 4rem);
  border: var(--rule);
  background: var(--powder);
}

.chapter-copy h2 {
  max-width: 35rem;
}

.chapter-copy p {
  max-width: 35rem;
  color: var(--slate);
}

.event-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(78vh, 48rem);
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--paper-bright);
}

.event-hero-media,
.event-hero-scrim {
  position: absolute;
  inset: 0;
}

.event-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.event-hero-scrim {
  background: linear-gradient(90deg, rgba(8, 44, 64, .95) 0%, rgba(8, 44, 64, .8) 42%, rgba(8, 44, 64, .28) 100%);
}

.event-hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--frame));
  margin: 0 auto;
  padding-block: clamp(4.5rem, 12vw, 10rem) clamp(3rem, 7vw, 6rem);
}

.event-hero h1 {
  max-width: 52rem;
  margin-top: var(--space-4);
  font-size: clamp(4.4rem, 13vw, 12rem);
  letter-spacing: -.09em;
  line-height: .8;
  text-transform: uppercase;
}

.event-hero h1 span {
  display: block;
  color: var(--sky);
  font-size: .44em;
  letter-spacing: .02em;
  line-height: 1.15;
}

.event-hero .page-lede {
  max-width: 39rem;
  margin-top: var(--space-5);
}

.event-hero .hero-actions {
  margin-top: var(--space-5);
}

.page-intro {
  padding-block: clamp(4.5rem, 10vw, 9rem) clamp(3.5rem, 7vw, 6rem);
  background: var(--powder);
  border-bottom: var(--rule);
}

.page-intro .page-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
}

.page-intro h1 {
  max-width: 54rem;
  margin-top: var(--space-4);
  font-size: clamp(3.8rem, 9vw, 9rem);
  line-height: .86;
}

.page-intro .page-lede {
  margin-left: auto;
  padding-bottom: .25rem;
}

.page-intro--dark {
  background: var(--navy);
  color: var(--paper-bright);
}

.page-intro--dark h1 {
  color: var(--paper-bright);
}

.page-intro--dark .page-lede {
  color: var(--mist);
}

.schedule-list {
  border-top: var(--rule);
}

.schedule-item {
  display: grid;
  grid-template-columns: minmax(7.5rem, .28fr) minmax(0, 1fr) minmax(0, .85fr);
  gap: clamp(1rem, 4vw, 4rem);
  align-items: start;
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: var(--rule);
}

.schedule-time {
  color: var(--azure);
  font-family: var(--utility);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.45;
}

.schedule-item h3 {
  margin-bottom: .5rem;
}

.schedule-item p {
  color: var(--slate);
}

.schedule-detail {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
}

.stage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: var(--space-6);
  border-top: var(--rule-light);
  border-left: var(--rule-light);
}

.stage-card {
  min-width: 0;
  min-height: 14rem;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  border-right: var(--rule-light);
  border-bottom: var(--rule-light);
}

.stage-card .list-number {
  display: block;
  margin-bottom: 2.8rem;
  color: var(--sky);
  font-family: var(--utility);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
}

.stage-card h3 {
  margin-bottom: .7rem;
  color: var(--paper-bright);
}

.stage-card p {
  color: var(--mist);
  font-size: .9rem;
  line-height: 1.55;
}

.dark-callout {
  padding: clamp(2rem, 5vw, 4rem);
  border: 2px solid var(--sky);
  background: var(--navy-deep);
}

.dark-callout h2 {
  max-width: 40rem;
  margin-top: var(--space-3);
  color: var(--paper-bright);
}

.dark-callout p {
  max-width: 42rem;
  margin-top: var(--space-4);
  color: var(--mist);
}

.impact-layout {
  align-items: stretch;
}

.impact-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--space-4);
}

.impact-intro h2 {
  max-width: 35rem;
}

.impact-intro p {
  max-width: 36rem;
  color: var(--mist);
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: var(--rule-light);
  border-left: var(--rule-light);
}

.impact-stats--light {
  border-color: var(--ink);
}

.impact-stat {
  min-height: 9rem;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  border-right: var(--rule-light);
  border-bottom: var(--rule-light);
}

.impact-stat strong {
  display: block;
  color: var(--paper-bright);
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: -.08em;
  line-height: .95;
}

.impact-stat span {
  display: block;
  max-width: 13rem;
  margin-top: .7rem;
  color: var(--sky);
  font-size: .85rem;
  line-height: 1.35;
}

.impact-stat--light {
  border-color: rgba(11, 23, 36, .28);
}

.impact-stat--light strong {
  color: var(--navy);
}

.impact-stat--light span {
  color: var(--slate);
}

.label-note {
  display: inline-block;
  margin-top: var(--space-4);
  color: var(--sky);
  font-family: var(--utility);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.track-record {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-6);
  align-items: start;
}

.track-record h2 {
  max-width: 34rem;
}

.track-record-copy {
  display: grid;
  gap: var(--space-4);
  max-width: 38rem;
  color: var(--slate);
}

.metric-list {
  display: grid;
  border-top: var(--rule);
}

.metric-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
  border-bottom: var(--rule);
}

.metric-list strong {
  color: var(--azure);
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: -.07em;
  line-height: 1;
}

.metric-list span {
  max-width: 13rem;
  color: var(--slate);
  font-size: .85rem;
  line-height: 1.4;
  text-align: right;
}

.outcome-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.outcome-grid h2 {
  max-width: 35rem;
}

.outcome-copy {
  display: grid;
  gap: var(--space-4);
  max-width: 42rem;
  color: var(--mist);
}

.outcome-copy strong {
  color: var(--paper-bright);
}

.partner-layout {
  align-items: stretch;
}

.partner-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
}

.partner-intro h2 {
  max-width: 34rem;
}

.partner-intro .section-sub {
  max-width: 31rem;
}

.partner-logos {
  display: grid;
  gap: 1rem;
}

.partner-logo-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-top: var(--rule);
  color: var(--navy);
  text-decoration: none;
  transition: background-color .2s ease;
}

.partner-logo-link:last-of-type {
  border-bottom: var(--rule);
}

.partner-logo-link:hover {
  background: var(--powder);
}

.partner-logo-link > span {
  display: block;
  margin-bottom: .7rem;
  color: var(--azure);
  font-family: var(--utility);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.partner-logo-link img {
  grid-column: 1;
  width: auto;
  max-width: min(15rem, 100%);
  height: 3rem;
  object-fit: contain;
  object-position: left center;
}

.partner-logo-service {
  width: 12rem !important;
  height: auto !important;
}

.partner-logo-ocean {
  width: 12rem !important;
  height: 4.5rem !important;
  object-position: left center !important;
}

.partner-arrow {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--azure);
  font-size: 1.5rem;
}

.partner-note {
  max-width: 34rem;
  padding-top: var(--space-3);
  color: var(--slate);
}

.sponsor-table-wrap {
  overflow-x: auto;
  border-top: var(--rule);
  border-bottom: var(--rule);
  -webkit-overflow-scrolling: touch;
}

.section-list,
.sponsor-table-wrap,
.values-row {
  margin-top: var(--space-6);
}

.sponsor-table {
  width: 100%;
  min-width: 46rem;
  border-collapse: collapse;
  table-layout: fixed;
}

.sponsor-table th,
.sponsor-table td {
  padding: 1rem .75rem;
  border-bottom: 1px solid rgba(11, 23, 36, .28);
  text-align: left;
  vertical-align: middle;
}

.sponsor-table thead th {
  color: var(--navy);
  font-family: var(--utility);
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.sponsor-table thead th:not(:first-child),
.sponsor-table td:not(:first-child) {
  width: 12%;
  text-align: center;
}

.sponsor-table tbody th {
  width: 64%;
  color: var(--navy);
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.4;
}

.sponsor-table td {
  color: var(--azure);
  font-size: 1.1rem;
  font-weight: 700;
}

.sponsor-table tr:last-child th,
.sponsor-table tr:last-child td {
  border-bottom: 0;
}

.sponsor-tier-note {
  margin-top: 1rem;
  color: var(--slate);
  font-size: .9rem;
}

.team-layout {
  align-items: stretch;
}

.team-story {
  display: grid;
  gap: var(--space-4);
  max-width: 40rem;
}

.team-story p {
  color: var(--slate);
}

.responsibilities {
  border-top: var(--rule);
}

.responsibilities li {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 1rem;
  padding-block: 1rem;
  border-bottom: var(--rule);
}

.responsibilities .list-number {
  color: var(--azure);
  font-family: var(--utility);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.responsibilities h3 {
  margin-bottom: .35rem;
  font-size: 1.35rem;
}

.responsibilities p {
  color: var(--slate);
  font-size: .92rem;
  line-height: 1.5;
}

.values-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: var(--rule);
  border-left: var(--rule);
}

.value-card {
  min-width: 0;
  padding: clamp(1.1rem, 2.4vw, 1.8rem);
  border-right: var(--rule);
  border-bottom: var(--rule);
}

.value-card .list-number {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--azure);
  font-family: var(--utility);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.value-card h3 {
  margin-bottom: .65rem;
  font-size: 1.35rem;
}

.value-card p {
  color: var(--slate);
  font-size: .88rem;
  line-height: 1.5;
}

.register-band,
.closing-cta {
  background: var(--azure);
  color: var(--paper-bright);
}

.register-inner,
.closing-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: clamp(3rem, 6vw, 5.5rem);
}

.register-inner h2,
.closing-cta-inner h2 {
  max-width: 47rem;
  color: var(--paper-bright);
  font-size: clamp(2.6rem, 5.5vw, 5.4rem);
}

.register-inner p,
.closing-cta-inner p {
  margin-bottom: .7rem;
  color: var(--paper-bright);
  font-family: var(--utility);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.site-footer {
  background: var(--navy-deep);
  color: var(--paper-bright);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 6rem);
  padding-block: clamp(3rem, 7vw, 6.5rem);
}

.footer-brand h2 {
  margin-top: 1rem;
  color: var(--paper-bright);
  font-size: clamp(2rem, 3vw, 3rem);
}

.footer-brand p,
.footer-column p {
  max-width: 19rem;
  margin-top: 1rem;
  color: var(--mist);
  font-size: .9rem;
  line-height: 1.55;
}

.footer-label {
  display: block;
  color: var(--sky);
}

.footer-links {
  display: grid;
  gap: .6rem;
  margin-top: 1rem;
}

.footer-links a {
  width: fit-content;
  color: var(--paper-bright);
  font-size: .9rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--sky);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.25rem;
  border-top: var(--rule-light);
  color: var(--mist);
  font-size: .72rem;
  line-height: 1.5;
}

.footer-bottom p:last-child {
  max-width: 43rem;
  text-align: right;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity .65s ease, transform .65s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 60em) {
  .nav-list .nav-link {
    white-space: nowrap;
  }
}

@media (max-width: 60em) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 2px);
    right: 0;
    left: 0;
    padding: 1rem;
    background: var(--navy-deep);
    border-bottom: 2px solid var(--sky);
    box-shadow: 0 18px 28px rgba(8, 44, 64, .18);
  }

  .site-nav.is-open {
    display: block;
  }

  .nav-list {
    display: grid;
    gap: 0;
  }

  .nav-list li {
    border-bottom: var(--rule-light);
  }

  .nav-list li:last-child {
    padding-top: .9rem;
    border-bottom: 0;
  }

  .nav-link,
  .nav-register {
    width: 100%;
    min-height: 3rem;
    justify-content: space-between;
    padding: .75rem 0;
  }

  .nav-link::after {
    right: auto;
    width: 3rem;
  }

  .nav-register {
    justify-content: center;
  }

  .hero-home-grid {
    min-height: 0;
  }

  .intro-grid,
  .split-grid,
  .impact-layout,
  .partner-layout,
  .team-layout,
  .track-record,
  .outcome-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-intro .page-intro-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-5);
  }

  .page-intro .page-lede {
    margin-left: 0;
  }

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

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

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

@media (max-width: 48em) {
  html {
    scroll-padding-top: 4.8rem;
  }

  .header-inner {
    min-height: 4.5rem;
  }

  .brand-wordmark {
    font-size: .7rem;
  }

  .brand-wordmark small {
    font-size: .5rem;
  }

  .hero-home-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    padding: clamp(1.5rem, 7vw, 3rem);
  }

  .hero-copy h1 {
    font-size: clamp(2.65rem, 11vw, 4.8rem);
  }

  .hero-meta {
    margin-top: var(--space-4);
    font-size: .62rem;
  }

  .hero-media {
    min-height: 18rem;
    border-top: var(--rule);
    border-left: 0;
  }

  .hero-media img {
    min-height: 18rem;
  }

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

  .fact:nth-child(2) {
    border-right: 0;
  }

  .fact:nth-child(-n + 2) {
    border-bottom: var(--rule);
  }

  .fact:nth-child(3) {
    border-right: var(--rule);
  }

  .numbered-list li {
    grid-template-columns: 2.25rem minmax(0, 1fr);
  }

  .numbered-list li p {
    grid-column: 2;
  }

  .chapter-grid,
  .chapter-grid--reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .chapter-grid--reverse .chapter-copy,
  .chapter-grid--reverse .editorial-image {
    order: initial;
  }

  .chapter-copy {
    min-height: 0;
  }

  .event-hero {
    min-height: 38rem;
  }

  .event-hero-scrim {
    background: linear-gradient(0deg, rgba(8, 44, 64, .95) 0%, rgba(8, 44, 64, .55) 70%, rgba(8, 44, 64, .2) 100%);
  }

  .event-hero-content {
    padding-bottom: 3rem;
  }

  .event-hero h1 {
    font-size: clamp(4rem, 20vw, 7rem);
  }

  .schedule-item {
    grid-template-columns: minmax(0, 1fr);
    gap: .65rem;
  }

  .schedule-detail {
    padding-left: 0;
  }

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

  .register-inner,
  .closing-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    gap: .7rem;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }
}

@media (max-width: 34em) {
  .site-frame {
    width: min(calc(100% - 1.25rem), var(--frame));
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .hero-actions,
  .event-hero .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
    padding-block: .75rem;
  }

  .outcome-copy .button {
    font-size: .68rem;
    letter-spacing: .08em;
  }

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

  .fact,
  .fact:nth-child(3) {
    border-right: 0;
    border-bottom: var(--rule);
  }

  .fact:last-child {
    border-bottom: 0;
  }

  .numbered-list li {
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: .6rem;
  }

  .stage-grid,
  .values-row,
  .impact-stats,
  .footer-main {
    grid-template-columns: minmax(0, 1fr);
  }

  .stage-card {
    min-height: 0;
  }

  .stage-card .list-number,
  .value-card .list-number {
    margin-bottom: 1rem;
  }

  .partner-logo-link {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .partner-logo-link img {
    max-width: 12rem;
  }

  .page-intro h1 {
    font-size: clamp(3.4rem, 17vw, 5.4rem);
  }

  .event-hero h1 {
    font-size: clamp(3.8rem, 20vw, 6rem);
  }

  .sponsor-table {
    min-width: 0;
    table-layout: auto;
  }

  .sponsor-table-wrap {
    overflow-x: visible;
  }

  .sponsor-table thead,
  .sponsor-table tbody,
  .sponsor-table tr {
    display: block;
  }

  .sponsor-table thead tr,
  .sponsor-table tbody tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) repeat(3, 3.5rem);
  }

  .sponsor-table thead th,
  .sponsor-table tbody th,
  .sponsor-table td {
    width: auto !important;
    min-width: 0;
    padding: .8rem .35rem;
    overflow-wrap: anywhere;
  }

  .sponsor-table thead th {
    font-size: .58rem;
    letter-spacing: .08em;
    line-height: 1.2;
  }

  .sponsor-table thead th:not(:first-child),
  .sponsor-table td:not(:first-child) {
    text-align: center;
  }

  .sponsor-table tbody th {
    grid-column: 1;
    font-size: .72rem;
    line-height: 1.35;
  }

  .sponsor-table td {
    font-size: 1rem;
    text-align: center;
  }

  .sponsor-table tbody tr:last-child th,
  .sponsor-table tbody tr:last-child td {
    border-bottom: 0;
  }
}

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
