@font-face {
  font-family: "Adumu";
  src: local("Adumu Regular"), local("Adumu"), url("../fonts/Adumu.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --navy: #09243a;
  --navy-soft: #123b57;
  --cream: #f7f0dd;
  --cream-deep: #e9dfc7;
  --white: #fffdf7;
  --sky: #4ba8e8;
  --sky-light: #b7e0f7;
  --orange: #f58208;
  --red: #ce211c;
  --green: #337333;
  --green-light: #7fb83d;
  --ink: #14283a;
  --muted: #526272;
  --line: rgba(9, 36, 58, .18);
  --font-display: "Adumu", "Arial Black", sans-serif;
  --font-body: "Adumu", Arial, sans-serif;
  --content-width: 1160px;
  --block-shadow: 7px 7px 0 var(--navy);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(var(--content-width), calc(100% - 48px));
  margin-inline: auto;
}

.section-anchor { scroll-margin-top: 90px; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border: 3px solid var(--cream);
  background: var(--navy);
  color: var(--white);
}

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

/* Header */
.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 5px solid var(--cream);
  background: var(--navy);
  color: var(--white);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  text-decoration: none;
}

.brand-logo { display: none; width: 154px; max-height: 45px; object-fit: contain; object-position: left center; }
.brand.has-logo .brand-logo { display: block; }
.brand.has-logo .brand-ball, .brand.has-logo .brand-name { display: none; }

.brand-ball {
  position: relative;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border: 3px solid var(--navy);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px var(--cream);
}

.brand-ball::before,
.brand-ball::after {
  position: absolute;
  content: "";
  background: var(--navy);
}

.brand-ball::before {
  top: 0;
  bottom: 0;
  left: 14px;
  width: 2px;
}

.brand-ball::after {
  top: 15px;
  right: 0;
  left: 0;
  height: 2px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  letter-spacing: .025em;
}

.brand-name b { color: var(--orange); font-weight: 400; }

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
}

.main-nav a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
  text-decoration: none;
  transition: color .18s ease;
}

.main-nav a:hover { color: #ffd16a; }
.main-nav .nav-register { color: #ffd16a; }
.nav-register span { display: inline-block; margin-left: 5px; }

.menu-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 2px solid var(--cream);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
}

.menu-toggle__icon { position: relative; }
.menu-toggle__icon::before,
.menu-toggle__icon::after { position: absolute; left: 0; content: ""; }
.menu-toggle__icon::before { top: -6px; }
.menu-toggle__icon::after { top: 6px; }

/* Hero and poster */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent 0 76%, rgba(31, 89, 43, .10) 76%),
    var(--sky);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .2;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.25) 2px, transparent 2px),
    linear-gradient(rgba(255,255,255,.25) 2px, transparent 2px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 85%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(290px, .72fr);
  align-items: center;
  gap: clamp(36px, 7vw, 100px);
  padding-block: 56px 74px;
}

.hero-copy { max-width: 680px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .06em;
}

.eyebrow-dot {
  width: 11px;
  height: 11px;
  display: inline-block;
  flex: 0 0 auto;
  border: 2px solid var(--navy);
  background: var(--orange);
}

.hero h1 {
  margin: 22px 0 18px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(54px, 7.6vw, 94px);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: .98;
}

.hero h1 span {
  display: inline-block;
  color: var(--red);
  text-shadow: 4px 4px 0 var(--cream);
}

.hero-lead {
  max-width: 570px;
  margin: 0;
  color: #17394f;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  border: 3px solid var(--navy);
  box-shadow: 4px 4px 0 var(--navy);
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.button:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--navy); }
.button:focus-visible, .text-link:focus-visible, .main-nav a:focus-visible { outline: 3px solid #ffcf62; outline-offset: 4px; }

.button--primary { background: var(--orange); color: var(--navy); }
.button--primary:hover { background: #ff9b25; }
.button--light { background: var(--cream); color: var(--navy); }
.button--light:hover { background: white; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 14px;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.hero-facts {
  max-width: 580px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  min-height: 65px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 13px;
  border-left: 4px solid var(--navy);
  background: rgba(255, 253, 247, .58);
}

.hero-facts strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
}

.hero-facts span { color: #28475a; font-size: 12px; line-height: 1.35; }

.poster-card {
  width: min(100%, 390px);
  justify-self: end;
  margin: 0;
  padding: 10px;
  border: 5px solid var(--cream);
  outline: 3px solid var(--navy);
  background: var(--navy);
  box-shadow: 11px 11px 0 var(--navy);
  transform: rotate(1.4deg);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: #0a2239;
}

.poster-image {
  width: 100%;
  height: auto;
}

.poster-open {
  position: absolute;
  right: 11px;
  bottom: 11px;
  padding: 8px 11px;
  border: 2px solid var(--navy);
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 12px;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .18s ease, transform .18s ease;
}

.poster-link:hover .poster-open,
.poster-link:focus-visible .poster-open { opacity: 1; transform: translateY(0); }

.poster-card figcaption {
  padding-top: 8px;
  color: var(--cream);
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
}

.hero-ground {
  height: 19px;
  border-top: 7px solid var(--green-light);
  background: var(--green);
  box-shadow: inset 0 5px 0 rgba(0,0,0,.08);
}

/* Section headings and repeatable cards: add future visuals as .feature-card modules. */
.section { padding-block: 92px; }
.section--about { background: var(--cream); }

.section-heading {
  max-width: 730px;
  margin-bottom: 34px;
}

.eyebrow--dark { color: var(--red); }
.eyebrow--dark .eyebrow-dot { border-color: var(--navy); background: var(--red); }

.section-heading h2,
.registration-intro h2 {
  margin: 13px 0 12px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 400;
  line-height: 1.05;
}

.section-heading > p:last-child {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 208px;
  padding: 22px;
  border: 3px solid var(--navy);
  box-shadow: 5px 5px 0 var(--navy);
  animation: rise-in .55s both;
}

.feature-card:nth-child(2) { animation-delay: .05s; }
.feature-card:nth-child(3) { animation-delay: .1s; }
.feature-card:nth-child(4) { animation-delay: .15s; }
.feature-card:nth-child(5) { animation-delay: .2s; }
.feature-card:nth-child(6) { animation-delay: .25s; }

.feature-card--blue { background: #b9e3f7; }
.feature-card--cream { background: var(--white); }
.feature-card--orange { background: #ffbd68; }
.feature-card--red { background: #f0a39a; }
.feature-card--green { background: #c6dfa9; }
.feature-card--navy { background: var(--navy); color: var(--white); }

.feature-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 3px solid var(--navy);
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1;
}

.feature-card h3 {
  margin: 20px 0 7px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
}

.feature-card p { margin: 0; color: #314a5d; font-size: 14px; line-height: 1.6; }
.feature-card--navy .feature-card h3 { color: var(--white); }
.feature-card--navy p { color: #dbe8ed; }
.feature-card--navy .feature-icon { border-color: var(--cream); }

.join-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 29px;
  padding: 22px 25px;
  border: 3px solid var(--navy);
  background: var(--sky-light);
}

.join-note__title {
  margin: 0 0 3px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 19px;
}

.join-note p:last-child { margin: 0; color: #37576a; font-size: 14px; }

/* Announcements and sponsor contact */
.section--updates {
  background: var(--navy);
  color: var(--white);
}

.section-heading--light h2 { color: var(--white); }
.section-heading--light > p:last-child { color: #d5e1e8; }
.section-heading--light .eyebrow { color: #ffca69; }
.section-heading--light .eyebrow-dot { border-color: var(--cream); background: var(--orange); }

.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.update-card {
  min-height: 185px;
  padding: 21px;
  border: 3px solid var(--cream);
  background: #123b57;
}

.update-status {
  display: inline-flex;
  padding: 5px 9px;
  border: 2px solid var(--navy);
  background: #ffcf69;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 11px;
}

.update-card h3 {
  margin: 17px 0 7px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
}

.update-card p { margin: 0; color: #d4e0e7; font-size: 14px; line-height: 1.65; }

.sponsor-panel {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 32px;
  margin-top: 25px;
  padding: clamp(22px, 4vw, 36px);
  border: 4px solid var(--navy);
  background: var(--orange);
  color: var(--navy);
  box-shadow: 7px 7px 0 #041624;
}

.sponsor-panel .eyebrow { color: var(--navy); }
.sponsor-panel .eyebrow-dot { border-color: var(--navy); background: var(--red); }

.sponsor-panel h3 {
  margin: 11px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.12;
}

.sponsor-panel__copy > p:last-child { max-width: 520px; margin: 0; color: #284255; font-size: 14px; }
.sponsor-links { display: grid; gap: 10px; }

.sponsor-links a {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 13px;
  border: 3px solid var(--navy);
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 14px;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: transform .18s ease, background-color .18s ease;
}

.sponsor-links a:hover { transform: translateX(3px); background: var(--white); }
.sponsor-links a span { width: 20px; color: var(--red); font-size: 18px; text-align: center; }

/* Registration */
.section--registration {
  background:
    linear-gradient(180deg, rgba(75,168,232,.12), transparent 260px),
    #eaf0df;
}

.registration-layout {
  display: grid;
  grid-template-columns: minmax(230px, .7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(28px, 5vw, 64px);
}

.registration-intro { position: sticky; top: 110px; }
.registration-intro h2 { font-size: clamp(38px, 4.3vw, 54px); }
.registration-intro > p:not(.eyebrow) { max-width: 400px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }

.registration-date {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 25px;
  padding: 14px;
  border: 3px solid var(--navy);
  background: var(--white);
  box-shadow: 4px 4px 0 var(--navy);
}

.registration-date__icon {
  width: 43px;
  height: 43px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--navy);
  background: var(--red);
  color: var(--white);
  font-size: 23px;
}

.registration-date strong,
.registration-date small { display: block; }
.registration-date strong { color: var(--navy); font-family: var(--font-display); font-size: 15px; font-weight: 400; }
.registration-date small { margin-top: 3px; color: var(--muted); font-size: 11px; line-height: 1.4; }

.registration-form {
  min-width: 0;
  padding: clamp(20px, 3.5vw, 34px);
  border: 4px solid var(--navy);
  background: var(--white);
  box-shadow: 8px 8px 0 var(--navy);
}

.form-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--line);
}

.form-step { color: var(--red); font-family: var(--font-display); font-size: 12px; }
.form-heading h3 { margin: 5px 0 4px; color: var(--navy); font-family: var(--font-display); font-size: 25px; font-weight: 400; line-height: 1.15; }
.form-heading p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }

.roster-count {
  min-width: 64px;
  padding: 9px 8px;
  border: 3px solid var(--navy);
  background: #ffcf69;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 17px;
  text-align: center;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
  padding-top: 21px;
}

.field { min-width: 0; margin: 0; padding: 0; border: 0; }
.field--full { grid-column: 1 / -1; }
.field label, .field legend { display: block; margin-bottom: 7px; color: var(--navy); font-family: var(--font-display); font-size: 13px; }
.field label span, .field legend span { color: var(--red); }

.field input,
.roster-player input {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 2px solid #8796a0;
  border-radius: 0;
  outline: none;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
}

.field input:focus,
.roster-player input:focus { border-color: var(--sky); box-shadow: 0 0 0 3px rgba(75,168,232,.22); }

.field input::placeholder,
.roster-player input::placeholder { color: #77838b; opacity: 1; }
.field-help { display: block; margin-top: 5px; color: var(--muted); font-size: 11px; }

.category-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.category-option { position: relative; margin: 0 !important; cursor: pointer; }
.category-option input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.category-option span {
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 2px solid #8796a0;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 13px;
  text-align: center;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.category-option input:checked + span { border-color: var(--navy); background: #c7e4f4; color: var(--navy); }
.category-option input:focus-visible + span { outline: 3px solid var(--sky); outline-offset: 2px; }

.roster-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 2px solid var(--line);
}

.roster-heading h4 { margin: 0; color: var(--navy); font-family: var(--font-display); font-size: 19px; font-weight: 400; }
.roster-heading p, .roster-heading > span { margin: 3px 0 0; color: var(--muted); font-size: 11px; }
.roster-heading > span { text-align: right; }

.roster-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; margin-top: 13px; }
.roster-player { min-width: 0; display: grid; gap: 10px; padding: 12px; border: 2px solid #b4bebd; background: #f5f6ef; }
.roster-player--reserve { border-style: dashed; background: #fff9e9; }
.roster-player__head { display: flex; align-items: center; justify-content: space-between; gap: 8px; color: var(--navy); font-family: var(--font-display); font-size: 13px; }
.roster-player__head b { color: var(--red); font-size: 10px; font-weight: 400; text-align: right; }
.roster-player__field { display: grid; gap: 5px; }
.roster-player__field label { display: flex; align-items: center; gap: 5px; margin: 0; color: var(--navy); font-family: var(--font-display); font-size: 11px; }
.roster-player__field label b { color: var(--red); font-size: 11px; font-weight: 700; }
.roster-player input { min-height: 44px; }

.form-bottom { display: grid; gap: 13px; margin-top: 18px; }
.consent { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 12px; line-height: 1.55; cursor: pointer; }
.consent input { width: 17px; height: 17px; flex: 0 0 auto; margin: 1px 0 0; accent-color: var(--red); }
.consent b { color: var(--red); }

.submit-button { justify-self: start; min-width: 220px; }
.submit-button:disabled { cursor: wait; opacity: .7; transform: none; }
.form-footnote { margin: -6px 0 0; color: var(--muted); font-size: 11px; }

.form-status {
  margin: 0;
  padding: 12px 14px;
  border: 2px solid currentColor;
  font-size: 13px;
  line-height: 1.5;
}

.form-status[hidden] { display: none; }
.form-status--success { color: #236531; background: #e7f3df; }
.form-status--error { color: #9f211b; background: #fff0e8; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* Footer */
.site-footer {
  padding-block: 25px;
  border-top: 6px solid var(--orange);
  background: var(--navy);
  color: var(--white);
}

.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand--footer .brand-name { font-size: 18px; }
.brand--footer .brand-logo { width: 138px; max-height: 38px; }
.footer-inner > p { margin: 0; color: #cad8df; font-size: 11px; text-align: center; }
.footer-links { display: flex; gap: 15px; }
.footer-links a { color: #ffcf69; font-family: var(--font-display); font-size: 12px; text-decoration-thickness: 1px; text-underline-offset: 3px; }

@keyframes rise-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(250px, .68fr); gap: 36px; }
  .hero h1 { font-size: clamp(50px, 7vw, 72px); }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .registration-layout { grid-template-columns: minmax(210px, .65fr) minmax(0, 1.35fr); gap: 28px; }
  .footer-inner { flex-wrap: wrap; }
}

@media (max-width: 680px) {
  html { scroll-padding-top: 76px; }
  .container { width: min(var(--content-width), calc(100% - 32px)); }
  .header-inner { min-height: 68px; flex-wrap: wrap; gap: 0; }
  .brand-name { font-size: 20px; }
  .brand-logo { width: min(138px, 39vw); max-height: 38px; }
  .menu-toggle { display: inline-flex; }
  .main-nav { display: none; width: 100%; align-items: stretch; flex-direction: column; gap: 0; padding: 5px 0 12px; }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 3px; border-top: 1px solid rgba(255,255,255,.16); }
  .hero-grid { min-height: 0; grid-template-columns: 1fr; gap: 32px; padding-block: 46px 52px; }
  .hero h1 { margin-top: 17px; font-size: clamp(48px, 12.5vw, 70px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { gap: 17px; margin-top: 22px; }
  .button { min-height: 49px; padding-inline: 15px; font-size: 14px; }
  .hero-facts { margin-top: 28px; }
  .hero-facts li { min-height: 59px; padding: 8px; }
  .hero-facts strong { font-size: 14px; }
  .hero-facts span { font-size: 10px; }
  .poster-card { width: min(78%, 340px); justify-self: center; }
  .poster-open { opacity: 1; transform: none; }
  .section { padding-block: 64px; }
  .section-heading { margin-bottom: 25px; }
  .section-heading h2, .registration-intro h2 { font-size: clamp(34px, 9vw, 46px); }
  .section-heading > p:last-child { font-size: 14px; }
  .feature-grid, .updates-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature-card { min-height: 0; padding: 18px; }
  .feature-card h3 { margin-top: 14px; font-size: 18px; }
  .feature-card p, .update-card p { font-size: 13px; }
  .join-note { align-items: flex-start; flex-direction: column; padding: 19px; }
  .join-note .button { width: 100%; }
  .update-card { min-height: 0; padding: 18px; }
  .update-card h3 { margin-top: 13px; font-size: 18px; }
  .sponsor-panel { grid-template-columns: 1fr; gap: 18px; padding: 20px; }
  .sponsor-panel h3 { font-size: 28px; }
  .registration-layout { grid-template-columns: 1fr; gap: 28px; }
  .registration-intro { position: static; }
  .registration-intro > p:not(.eyebrow) { font-size: 14px; }
  .registration-date { margin-top: 18px; }
  .registration-form { padding: 19px 15px; box-shadow: 5px 5px 0 var(--navy); }
  .form-heading h3 { font-size: 21px; }
  .form-heading p { max-width: 255px; font-size: 12px; }
  .form-grid { grid-template-columns: 1fr; gap: 13px; }
  .field--full { grid-column: auto; }
  .roster-heading { align-items: flex-start; flex-direction: column; }
  .roster-heading > span { text-align: left; }
  .roster-grid { grid-template-columns: 1fr; }
  .submit-button { width: 100%; justify-self: stretch; }
  .footer-inner { align-items: flex-start; flex-direction: column; gap: 13px; }
  .footer-inner > p { text-align: left; }
}

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