:root {
  --sp-bg: #071014;
  --sp-bg-deep: #03080b;
  --sp-panel: #111b20;
  --sp-panel-soft: #16262a;
  --sp-text: #ffffff;
  --sp-muted: #b8c8c7;
  --sp-line: rgba(255, 255, 255, 0.14);
  --sp-teal: #16c7b7;
  --sp-green: #3ddc97;
  --sp-esa: #e63e8d;
  --sp-max: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.spawn-site {
  margin: 0;
  overflow-x: hidden;
  color: var(--sp-text);
  background:
    radial-gradient(circle at 72% 4%, rgba(22, 199, 183, 0.18), transparent 30rem),
    linear-gradient(180deg, #051012 0, var(--sp-bg) 46rem, #05090d 100%);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.spawn-site a {
  color: inherit;
  text-decoration: none;
}

body.spawn-site img {
  display: block;
  max-width: 100%;
}

.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;
}

.sp-container {
  width: min(100% - 40px, var(--sp-max));
  margin-inline: auto;
}

.esa-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(5, 8, 13, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.esa-header__inner {
  width: min(100% - 40px, var(--sp-max));
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.esa-header__logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.esa-header__brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 16px;
  min-width: 0;
}

.esa-header__brand-divider {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.24);
}

.esa-header__logo img {
  width: 196px;
  height: auto;
}

.esa-header__logo--spawn img {
  width: 142px;
  filter: drop-shadow(0 0 18px rgba(22, 199, 183, 0.18));
}

.esa-nav {
  display: flex;
  align-items: center;
}

.esa-nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.esa-nav__item {
  position: relative;
}

.esa-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.88);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: color 160ms ease;
}

.esa-nav__link:hover,
.esa-nav__link:focus-visible,
.esa-nav__link.is-active,
.esa-mega-toggle[aria-expanded="true"] {
  color: var(--sp-esa);
}

.esa-nav__separator {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
}

.esa-nav__link--spawn {
  color: var(--sp-teal);
}

.esa-nav__link--spawn:hover,
.esa-nav__link--spawn:focus-visible {
  color: var(--sp-green);
}

.esa-nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(230, 62, 141, 0.46);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.esa-nav-toggle__line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
  border-radius: 99px;
}

.esa-mega {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: min(700px, calc(100vw - 40px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 28px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(13, 18, 26, 0.96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.44);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.esa-mega::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.esa-nav__item--mega:hover .esa-mega,
.esa-nav__item--mega:focus-within .esa-mega,
.esa-mega-toggle[aria-expanded="true"] + .esa-mega {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.esa-mega__group + .esa-mega__group {
  padding-left: 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.esa-mega__group p {
  margin: 0 0 16px;
  color: var(--sp-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.esa-mega__group a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  margin-inline: -10px;
  padding: 10px;
  border-radius: 7px;
  transition: background-color 180ms ease;
}

.esa-mega__group i {
  color: var(--sp-esa);
  font-size: 22px;
  line-height: 1;
  transition: color 180ms ease, transform 180ms ease;
}

.esa-mega__group strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 16px;
  transition: color 180ms ease;
}

.esa-mega__group small {
  display: block;
  color: var(--sp-muted);
  font-size: 14px;
  line-height: 1.35;
}

.esa-mega__group a:hover,
.esa-mega__group a:focus-visible {
  background: rgba(230, 62, 141, 0.07);
}

.esa-mega__group a:hover i,
.esa-mega__group a:focus-visible i {
  color: #ff4faa;
  transform: translateX(3px);
}

.esa-mega__group a:hover strong,
.esa-mega__group a:focus-visible strong {
  color: var(--sp-esa);
}

.sp-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(3, 8, 11, 0.88);
  border-bottom: 1px solid rgba(22, 199, 183, 0.2);
  backdrop-filter: blur(18px);
}

.sp-header__inner {
  width: min(100% - 40px, var(--sp-max));
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.sp-header__logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.sp-header__logo img {
  width: 220px;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(22, 199, 183, 0.18));
}

.sp-nav {
  display: flex;
  align-items: center;
}

.sp-nav__list {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.sp-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: color 160ms ease;
}

.sp-nav__link:hover,
.sp-nav__link:focus-visible,
.sp-nav__link.is-active {
  color: var(--sp-teal);
}

.sp-nav__link--esa {
  color: var(--sp-esa);
}

.sp-nav__link--esa:hover,
.sp-nav__link--esa:focus-visible {
  color: #ff65b5;
}

.sp-nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(22, 199, 183, 0.48);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.sp-nav-toggle__line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
  border-radius: 99px;
}

.sp-hero {
  min-height: 720px;
  position: relative;
  display: grid;
  align-items: center;
  padding-top: 76px;
  overflow: hidden;
}

.sp-hero__media,
.sp-hero__media img,
.sp-hero__overlay {
  position: absolute;
  inset: 0;
}

.sp-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) brightness(0.92) contrast(1.05);
}

.sp-hero__overlay {
  background:
    linear-gradient(90deg, rgba(3, 8, 11, 0.94) 0, rgba(3, 8, 11, 0.7) 38%, rgba(3, 8, 11, 0.22) 78%),
    linear-gradient(180deg, rgba(3, 8, 11, 0.08) 0, rgba(3, 8, 11, 0.08) 58%, var(--sp-bg) 100%);
}

.sp-hero__content {
  position: relative;
  z-index: 2;
  padding-block: 118px 90px;
}

.sp-eyebrow,
.sp-kicker {
  margin: 0 0 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sp-eyebrow::after,
.sp-kicker::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 10px;
  background: var(--sp-teal);
  box-shadow: 0 0 16px rgba(22, 199, 183, 0.65);
}

.sp-kicker--esa::after {
  background: var(--sp-esa);
  box-shadow: 0 0 16px rgba(230, 62, 141, 0.62);
}

.sp-hero h1,
.sp-section-heading h2,
.sp-about h2,
.sp-collab h2 {
  margin: 0;
  color: #fff;
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sp-hero h1 {
  max-width: 680px;
  color: var(--sp-teal);
  font-size: 116px;
  line-height: 0.9;
  text-shadow: 0 0 28px rgba(22, 199, 183, 0.28);
}

.sp-hero__content > p:last-of-type {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 21px;
  line-height: 1.55;
}

.sp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  margin-top: 36px;
  padding: 0 26px;
  border: 1px solid rgba(22, 199, 183, 0.78);
  border-radius: 7px;
  background: var(--sp-teal);
  color: #021013;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 0 24px rgba(22, 199, 183, 0.22);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.sp-button:hover,
.sp-button:focus-visible {
  background: var(--sp-green);
  border-color: rgba(61, 220, 151, 0.9);
  transform: translateY(-1px);
}

.sp-button--ghost {
  background: transparent;
  color: var(--sp-teal);
}

.sp-button--esa {
  background: var(--sp-esa);
  border-color: rgba(230, 62, 141, 0.84);
  color: #fff;
  box-shadow: 0 0 24px rgba(230, 62, 141, 0.2);
}

.sp-button--esa:hover,
.sp-button--esa:focus-visible {
  background: #ff65b5;
  border-color: rgba(255, 101, 181, 0.92);
}

.sp-section {
  position: relative;
  padding-block: 58px;
}

.sp-section-heading {
  margin-bottom: 30px;
  text-align: center;
}

.sp-section-heading .sp-kicker::after {
  margin-inline: auto;
}

.sp-section-heading h2,
.sp-about h2,
.sp-collab h2 {
  font-size: 44px;
  line-height: 1.05;
}

.sp-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sp-action-card {
  min-height: 320px;
  position: relative;
  isolation: isolate;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: var(--sp-panel);
}

.sp-action-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) brightness(1.02) contrast(1.03);
  transition: transform 220ms ease;
}

.sp-action-card__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(3, 8, 11, 0.02) 0%,
      rgba(3, 8, 11, 0.08) 46%,
      rgba(3, 8, 11, 0.56) 76%,
      rgba(3, 8, 11, 0.9) 100%
    );
}

.sp-action-card__content {
  position: absolute;
  z-index: 2;
  inset: auto 24px 24px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 26px;
  gap: 16px;
  align-items: end;
}

.sp-action-card__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--sp-teal);
  font-size: 30px;
}

.sp-action-card strong,
.sp-action-card small {
  display: block;
}

.sp-action-card strong {
  color: #fff;
  font-size: 31px;
  font-weight: 900;
  line-height: 1.05;
}

.sp-action-card small {
  max-width: 460px;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.35;
}

.sp-action-card__arrow {
  color: #fff;
  font-size: 28px;
  transition: transform 180ms ease;
}

.sp-action-card:hover,
.sp-action-card:focus-visible {
  border-color: rgba(22, 199, 183, 0.78);
}

.sp-action-card:hover img,
.sp-action-card:focus-visible img {
  transform: scale(1.025);
}

.sp-action-card:hover .sp-action-card__arrow,
.sp-action-card:focus-visible .sp-action-card__arrow {
  transform: translateX(4px);
}

.sp-about {
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 20% 55%, rgba(22, 199, 183, 0.1), transparent 26rem),
    linear-gradient(90deg, rgba(12, 24, 27, 0.98), rgba(5, 11, 15, 0.82));
}

.sp-about__layout {
  display: grid;
  grid-template-columns: minmax(420px, 1.06fr) minmax(0, 0.94fr);
  gap: 58px;
  align-items: center;
}

.sp-about__image {
  min-height: 430px;
  margin: -58px 0;
  overflow: hidden;
  border-radius: 0 8px 8px 0;
}

.sp-about__image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  filter: saturate(1.08) brightness(1.02) contrast(1.04);
}

.sp-about__content p:not(.sp-kicker),
.sp-collab p {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--sp-muted);
  font-size: 19px;
  line-height: 1.6;
}

.sp-collab {
  background:
    radial-gradient(circle at 80% 35%, rgba(230, 62, 141, 0.11), transparent 26rem),
    linear-gradient(90deg, rgba(5, 12, 15, 0.96), rgba(13, 12, 20, 0.96));
}

.sp-collab__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 42px;
  align-items: center;
  padding: 30px 0;
}

.sp-collab__brand {
  min-height: 190px;
  display: grid;
  place-items: center;
  gap: 22px;
  padding: 28px;
  border: 1px solid rgba(230, 62, 141, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(230, 62, 141, 0.14), transparent 62%),
    rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 0 34px rgba(230, 62, 141, 0.05);
}

.sp-collab__brand img {
  width: min(78%, 250px);
  height: auto;
  filter: drop-shadow(0 0 18px rgba(230, 62, 141, 0.22));
}

.sp-collab__brand .sp-button {
  margin-top: 0;
}

.sp-page-hero {
  min-height: 540px;
  position: relative;
  display: grid;
  align-items: end;
  padding-top: 76px;
  overflow: hidden;
}

.sp-page-hero__media,
.sp-page-hero__media img,
.sp-page-hero__overlay {
  position: absolute;
  inset: 0;
}

.sp-page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) brightness(0.86) contrast(1.06);
}

.sp-page-hero__overlay {
  background:
    linear-gradient(90deg, rgba(3, 8, 11, 0.93) 0, rgba(3, 8, 11, 0.72) 42%, rgba(3, 8, 11, 0.2) 100%),
    linear-gradient(180deg, rgba(3, 8, 11, 0.06) 0, rgba(3, 8, 11, 0.18) 52%, var(--sp-bg) 100%);
}

.sp-page-hero__content {
  position: relative;
  z-index: 2;
  padding-block: 122px 78px;
}

.sp-page-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 86px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
  text-shadow: 0 0 26px rgba(22, 199, 183, 0.22);
}

.sp-page-hero__content > p:last-of-type {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.55;
}

.sp-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.2rem 0 1.7rem;
}

.sp-hero-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(22, 199, 183, 0.32);
  border-radius: 999px;
  background: rgba(22, 199, 183, 0.1);
  color: var(--sp-text);
  font-size: 0.92rem;
  font-weight: 800;
}

.sp-after-school-page .sp-hero-facts {
  margin-bottom: 0;
}

.sp-page-hero--competition .sp-page-hero__media img {
  object-position: center 44%;
  filter: saturate(1.08) brightness(0.78) contrast(1.08);
}

.sp-teams-page .sp-section-heading > p:not(.sp-kicker) {
  max-width: 820px;
  margin: 16px auto 0;
  color: var(--sp-muted);
  font-size: 18px;
  line-height: 1.62;
}

.sp-teams-page .sp-about__content p:not(.sp-kicker),
.sp-teams-page .sp-help-panel p:not(.sp-kicker),
.sp-teams-page .sp-safety-grid p,
.sp-teams-page .sp-team-path p {
  font-size: 18px;
  line-height: 1.65;
}

.sp-groups-page .sp-section-heading > p:not(.sp-kicker) {
  max-width: 780px;
  margin: 16px auto 0;
  color: var(--sp-muted);
  font-size: 18px;
  line-height: 1.55;
}

.sp-booking-section {
  padding-top: 48px;
}

.sp-quick-facts-section {
  padding-top: 3.5rem;
  padding-bottom: 2rem;
}

.sp-quick-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.sp-quick-facts article,
.sp-mini-card-grid article,
.sp-support-panel {
  border: 1px solid rgba(22, 199, 183, 0.2);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(22, 199, 183, 0.12), rgba(61, 220, 151, 0.04)),
    var(--sp-panel);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

.sp-quick-facts article {
  min-height: 9rem;
  padding: 1.35rem;
}

.sp-quick-facts span {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--sp-teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sp-quick-facts strong {
  display: block;
  color: var(--sp-text);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  line-height: 1.25;
}

.sp-booking-embed {
  overflow-x: auto;
  padding: 18px;
  border: 1px solid rgba(22, 199, 183, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0%, rgba(22, 199, 183, 0.08), transparent 26rem),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.22);
}

.sp-booking-embed :is(.cwArea, .cwEventList, .cwShopBlock, .cwList, table) {
  max-width: 100%;
}

.sp-booking-embed :is(a, input[type="submit"], button) {
  word-break: normal;
}

.sp-help-panel,
.sp-trial-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  margin-top: 24px;
  padding: 30px;
  border: 1px solid rgba(22, 199, 183, 0.22);
  border-radius: 8px;
  background: rgba(16, 28, 31, 0.8);
}

.sp-help-panel--stacked {
  grid-template-columns: minmax(0, 1fr);
}

.sp-help-panel h2,
.sp-trial-section h2 {
  margin: 0;
  color: #fff;
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  text-transform: uppercase;
}

.sp-help-panel p:not(.sp-kicker),
.sp-trial-section p:not(.sp-kicker) {
  max-width: 740px;
  margin: 16px 0 0;
  color: var(--sp-muted);
  font-size: 18px;
  line-height: 1.55;
}

.sp-mini-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.sp-mini-card-grid article {
  padding: 1.25rem;
}

.sp-mini-card-grid h3 {
  margin: 0 0 0.55rem;
  color: var(--sp-text);
  font-size: 1rem;
  font-weight: 900;
}

.sp-mini-card-grid p {
  margin: 0;
  color: var(--sp-muted);
  line-height: 1.55;
}

.sp-team-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sp-team-path,
.sp-application-info {
  border: 1px solid rgba(22, 199, 183, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(22, 199, 183, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    var(--sp-panel);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.sp-team-path {
  padding: 32px;
}

.sp-team-path h3,
.sp-application-info h3 {
  margin: 0;
  color: #fff;
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.sp-team-path p {
  margin: 16px 0 0;
  color: var(--sp-muted);
  font-size: 17px;
  line-height: 1.6;
}

.sp-team-path ul,
.sp-application-info ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.sp-team-path li,
.sp-application-info li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.45;
}

.sp-teams-page .sp-team-path li,
.sp-teams-page .sp-application-info li {
  font-size: 16px;
  line-height: 1.55;
}

.sp-team-path li::before,
.sp-application-info li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 9px;
  height: 9px;
  border: 2px solid var(--sp-teal);
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(22, 199, 183, 0.45);
}

.sp-application-info {
  margin-top: 12px;
  padding: 28px;
}

.sp-teams-page .sp-contact-strip .sp-help-panel {
  margin-bottom: 0;
  border-bottom-color: rgba(22, 199, 183, 0.12);
  border-radius: 8px 8px 0 0;
}

.sp-teams-page .sp-contact-strip .sp-application-info {
  border-top-color: rgba(255, 255, 255, 0.08);
  border-radius: 0 0 8px 8px;
}

.sp-cs-section__future {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(22, 199, 183, 0.22);
}

.sp-cs-section__future p:not(.sp-kicker) {
  margin-top: 12px;
  color: var(--sp-muted);
}

.sp-overview-card {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 28px;
  gap: 18px;
  align-items: start;
  min-height: 170px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(22, 199, 183, 0.11), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    var(--sp-panel);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.sp-overview-card:hover,
.sp-overview-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(22, 199, 183, 0.54);
  box-shadow: 0 18px 60px rgba(22, 199, 183, 0.14);
}

.sp-overview-card i:first-child {
  display: inline-flex;
  color: var(--sp-teal);
  font-size: 32px;
  text-shadow: 0 0 18px rgba(22, 199, 183, 0.4);
}

.sp-overview-card strong {
  display: block;
  color: #fff;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.sp-overview-card small {
  display: block;
  margin-top: 10px;
  color: var(--sp-muted);
  font-size: 16px;
  line-height: 1.55;
}

.sp-overview-card__arrow {
  justify-self: end;
  color: var(--sp-teal);
}

.sp-brand-pair {
  display: grid;
  gap: 16px;
}

.sp-brand-pair figure {
  min-height: 132px;
  display: grid;
  place-items: center;
  padding: 24px;
  margin: 0;
  border: 1px solid rgba(22, 199, 183, 0.2);
  border-radius: 8px;
  background: rgba(3, 8, 11, 0.62);
}

.sp-brand-pair img {
  width: min(100%, 260px);
  max-height: 86px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(22, 199, 183, 0.16));
}

.sp-brand-pair .sp-button {
  margin-top: 4px;
}

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

.sp-contact-details {
  margin-top: 12px;
  border-radius: 0 0 8px 8px;
}

.sp-contact-details ul {
  margin-top: 0;
}

.sp-trial-section {
  background:
    radial-gradient(circle at 84% 42%, rgba(61, 220, 151, 0.14), transparent 27rem),
    linear-gradient(90deg, rgba(5, 18, 18, 0.98), rgba(8, 27, 24, 0.82));
}

.sp-trial-section__inner {
  display: block;
  max-width: 980px;
  margin-inline: auto;
  border-color: rgba(61, 220, 151, 0.34);
  background: rgba(5, 18, 18, 0.72);
}

.sp-level-grid,
.sp-step-grid,
.sp-safety-grid,
.sp-info-list {
  display: grid;
  gap: 18px;
}

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

.sp-step-grid,
.sp-safety-grid,
.sp-info-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sp-level-grid article,
.sp-step-grid article,
.sp-safety-grid article,
.sp-info-list article,
.sp-faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    var(--sp-panel);
}

.sp-level-grid article,
.sp-step-grid article,
.sp-safety-grid article,
.sp-info-list article {
  padding: 26px;
}

.sp-level-grid span,
.sp-step-grid span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--sp-teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.sp-level-grid h3,
.sp-step-grid h3,
.sp-safety-grid h3,
.sp-info-list h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.sp-level-grid p,
.sp-step-grid p,
.sp-safety-grid p,
.sp-info-list p,
.sp-faq-list p {
  margin: 14px 0 0;
  color: var(--sp-muted);
  font-size: 16px;
  line-height: 1.55;
}

.sp-process-section,
.sp-faq-section {
  background: rgba(3, 8, 11, 0.28);
}

.sp-safety-section {
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 14% 30%, rgba(22, 199, 183, 0.12), transparent 26rem),
    linear-gradient(90deg, rgba(5, 12, 15, 0.96), rgba(12, 24, 27, 0.9));
}

.sp-safety-section__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 38px;
  align-items: start;
}

.sp-safety-section h2 {
  margin: 0;
  color: #fff;
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  text-transform: uppercase;
}

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

.sp-safety-grid i {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--sp-teal);
  font-size: 30px;
  text-shadow: 0 0 18px rgba(22, 199, 183, 0.4);
}

.sp-after-school-page .sp-safety-section__inner > div:first-child p:not(.sp-kicker) {
  color: var(--sp-muted);
  line-height: 1.65;
}

.sp-activity-grid article {
  min-height: 14rem;
}

.sp-place-section {
  background: linear-gradient(180deg, transparent, rgba(22, 199, 183, 0.05), transparent);
}

.sp-support-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.sp-support-panel {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  text-align: center;
}

.sp-support-panel .sp-kicker {
  justify-content: center;
}

.sp-support-panel h2 {
  margin: 0 0 0.75rem;
  color: var(--sp-text);
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  text-transform: uppercase;
}

.sp-support-panel p:last-child {
  max-width: 720px;
  margin: 0 auto;
  color: var(--sp-muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.sp-support-panel--compact {
  max-width: 980px;
  margin-inline: auto;
  text-align: left;
  background:
    linear-gradient(135deg, rgba(22, 199, 183, 0.12), rgba(61, 220, 151, 0.04)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018)),
    var(--sp-panel);
}

.sp-support-panel--compact .sp-kicker {
  justify-content: flex-start;
}

.sp-support-panel--compact p:last-of-type {
  max-width: 780px;
  margin: 0;
}

.sp-support-panel--compact .sp-button {
  margin-top: 26px;
}

.sp-contact-strip {
  padding-top: 2rem;
}

.sp-about-page .sp-section--last {
  padding-bottom: 76px;
}

.sp-membership-intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.sp-membership-intro h2 {
  margin: 0;
  color: #fff;
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}

.sp-membership-intro__text p {
  margin: 0;
  color: var(--sp-muted);
  font-size: 1.12rem;
  line-height: 1.68;
}

.sp-membership-intro__text p + p {
  margin-top: 18px;
}

.sp-membership-value-grid article {
  min-height: 13.5rem;
}

.sp-membership-activity-panel {
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
}

.sp-membership-activity-panel p:not(.sp-kicker) {
  margin-top: 0;
}

.sp-membership-fees-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(22, 199, 183, 0.08), transparent 24rem),
    rgba(3, 8, 11, 0.28);
}

.sp-membership-fees {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sp-membership-fees article {
  min-height: 12rem;
  padding: 28px;
  border: 1px solid rgba(22, 199, 183, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(16, 28, 31, 0.8);
}

.sp-membership-fees span {
  display: block;
  margin-bottom: 18px;
  color: var(--sp-teal);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sp-membership-fees strong {
  display: block;
  color: #fff;
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 0.95;
}

.sp-membership-fees p {
  margin: 16px 0 0;
  color: var(--sp-muted);
  font-size: 1.02rem;
  line-height: 1.5;
}

.sp-membership-join-section {
  padding-bottom: 76px;
}

.sp-membership-join {
  max-width: 920px;
  margin-inline: auto;
}

.sp-membership-join .sp-button {
  margin-top: 28px;
}

.sp-membership-join small {
  display: block;
  margin-top: 14px;
  color: rgba(225, 255, 250, 0.58);
  font-size: 0.92rem;
}

.sp-faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin-inline: auto;
}

.sp-faq-list details {
  padding: 0;
  overflow: hidden;
}

.sp-faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  list-style: none;
}

.sp-faq-list summary::-webkit-details-marker {
  display: none;
}

.sp-faq-list summary::after {
  content: "+";
  float: right;
  color: var(--sp-teal);
  font-size: 24px;
  line-height: 1;
}

.sp-faq-list details[open] summary::after {
  content: "-";
}

.sp-faq-list details p {
  margin: 0;
  padding: 0 24px 22px;
}

.sp-game-page .sp-page-hero__content {
  max-width: 780px;
}

.sp-game-page .sp-page-hero__content .sp-button {
  margin-top: 28px;
}

.sp-game-article {
  padding-top: clamp(44px, 6vw, 72px);
}

.sp-game-article__inner {
  max-width: 900px;
}

.sp-game-chapter {
  padding-block: clamp(30px, 5vw, 52px);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.sp-game-chapter:first-child {
  padding-top: 0;
  border-top: 0;
}

.sp-game-chapter h2,
.sp-game-links h2 {
  margin: 0 0 18px;
  color: var(--sp-white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.sp-game-chapter p {
  max-width: 840px;
  color: var(--sp-muted);
  font-size: 18px;
  line-height: 1.68;
}

.sp-game-list {
  display: grid;
  gap: 10px;
  max-width: 820px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.sp-game-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(225, 255, 250, 0.86);
  font-size: 17px;
  line-height: 1.55;
}

.sp-game-list li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--sp-teal);
  box-shadow: 0 0 12px rgba(22, 199, 183, 0.65);
  content: "";
}

.sp-game-cta .sp-support-panel {
  text-align: left;
}

.sp-game-cta .sp-kicker,
.sp-game-links .sp-kicker {
  justify-content: flex-start;
}

.sp-game-cta .sp-kicker::after,
.sp-game-links .sp-kicker::after {
  margin-inline: 0;
}

.sp-game-links-section {
  padding-top: 0;
}

.sp-game-links {
  max-width: 980px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sp-game-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.sp-game-links a {
  color: var(--sp-teal);
  font-weight: 800;
  text-decoration: none;
}

.sp-game-links a:hover,
.sp-game-links a:focus {
  color: var(--sp-white);
}

.sp-footer {
  border-top: 1px solid rgba(22, 199, 183, 0.18);
  background: #05090d;
}

.sp-footer__inner {
  width: min(100% - 40px, var(--sp-max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.95fr) minmax(0, 0.9fr);
  gap: 58px;
  padding-block: 52px;
}

.sp-footer__brand img {
  width: 220px;
  height: auto;
  margin-bottom: 18px;
}

.sp-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sp-footer__brand h2 {
  margin-bottom: 10px;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
}

.sp-footer p,
.sp-footer a {
  color: var(--sp-muted);
  font-size: 16px;
  line-height: 1.5;
}

.sp-footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
  gap: 28px;
}

.sp-footer__nav-group {
  display: grid;
  align-content: start;
  gap: 10px;
}

.sp-footer__links a:hover,
.sp-footer__links a:focus-visible {
  color: var(--sp-teal);
}

.sp-footer__esa-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--sp-esa) !important;
  font-weight: 900;
}

.sp-footer__bottom {
  width: min(100% - 40px, var(--sp-max));
  margin-inline: auto;
  padding: 16px 0 26px;
  border-top: 1px solid rgba(22, 199, 183, 0.14);
}

.sp-footer__legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sp-footer__legal a {
  font-size: 14px;
}

:focus-visible {
  outline: 3px solid rgba(22, 199, 183, 0.74);
  outline-offset: 4px;
}

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

@media (min-width: 1320px) {
  .sp-hero h1 {
    font-size: 126px;
  }
}

@media (max-width: 1180px) {
  .esa-header__logo img {
    width: 150px;
  }

  .esa-header__logo--spawn img {
    width: 110px;
  }

  .esa-nav__list {
    gap: 18px;
  }

  .sp-header__logo img {
    width: 184px;
  }

  .sp-nav__list {
    gap: 16px;
  }

  .sp-hero h1 {
    font-size: 92px;
  }

  .sp-about__layout {
    grid-template-columns: minmax(360px, 1fr) minmax(0, 1fr);
    gap: 36px;
  }

  .sp-page-hero h1 {
    font-size: 76px;
  }

  .sp-step-grid,
  .sp-info-list,
  .sp-association-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1020px) {
  .esa-nav-toggle {
    display: grid;
  }

  .esa-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    box-sizing: border-box;
    max-height: calc(100vh - 76px);
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 12px 20px calc(34px + env(safe-area-inset-bottom));
    background: rgba(5, 8, 13, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .esa-header.is-open .esa-nav {
    display: block;
  }

  .esa-nav__list {
    display: grid;
    gap: 0;
    width: min(100%, var(--sp-max));
    margin-inline: auto;
  }

  .esa-nav__link {
    width: 100%;
    justify-content: space-between;
    min-height: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .esa-nav__separator {
    width: 100%;
    height: 1px;
    margin: 8px 0;
  }

  .esa-mega {
    position: static;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px 0 18px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .esa-mega-toggle[aria-expanded="true"] + .esa-mega {
    display: grid;
    transform: none;
  }

  .esa-nav__item--mega:hover .esa-mega,
  .esa-nav__item--mega:focus-within .esa-mega {
    transform: none;
  }

  .esa-mega__group + .esa-mega__group {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 14px;
  }

  .sp-nav-toggle {
    display: grid;
  }

  .sp-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 20px 22px;
    background: rgba(3, 8, 11, 0.98);
    border-bottom: 1px solid rgba(22, 199, 183, 0.18);
  }

  .sp-header.is-open .sp-nav {
    display: block;
  }

  .sp-nav__list {
    display: grid;
    gap: 0;
    width: min(100%, var(--sp-max));
    margin-inline: auto;
  }

  .sp-nav__link {
    width: 100%;
    justify-content: space-between;
    min-height: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .sp-about__layout,
  .sp-collab__inner,
  .sp-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .sp-level-grid,
  .sp-association-info,
  .sp-membership-intro,
  .sp-membership-activity-panel,
  .sp-membership-fees,
  .sp-safety-section__inner {
    grid-template-columns: 1fr;
  }

  .sp-about__image {
    margin: 0;
  }

  .sp-collab__brand {
    min-height: auto;
    place-items: start;
    justify-items: start;
  }

  .sp-collab__brand img {
    width: min(70%, 220px);
  }

  .sp-footer__contact {
    grid-column: 1 / -1;
  }

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

@media (max-width: 1100px) {
  .sp-quick-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .sp-container,
  .esa-header__inner,
  .sp-header__inner,
  .sp-footer__inner {
    width: min(100% - 28px, var(--sp-max));
  }

  .esa-header__inner,
  .sp-header__inner {
    min-height: 68px;
  }

  .esa-header__logo img {
    width: 142px;
  }

  .esa-header__brand {
    gap: 10px;
  }

  .esa-header__brand-divider {
    height: 28px;
  }

  .esa-header__logo--spawn img {
    width: 88px;
  }

  .sp-header__logo img {
    width: 164px;
  }

  .sp-hero {
    min-height: 620px;
    padding-top: 68px;
  }

  .esa-nav {
    max-height: calc(100vh - 68px);
    max-height: calc(100dvh - 68px);
  }

  .sp-hero__overlay {
    background:
      linear-gradient(180deg, rgba(3, 8, 11, 0.76) 0, rgba(3, 8, 11, 0.72) 45%, var(--sp-bg) 100%),
      linear-gradient(90deg, rgba(3, 8, 11, 0.46), rgba(3, 8, 11, 0.18));
  }

  .sp-hero__content {
    padding-block: 78px 58px;
  }

  .sp-page-hero {
    min-height: 520px;
    padding-top: 68px;
  }

  .sp-page-hero__content {
    padding-block: 92px 54px;
  }

  .sp-page-hero__overlay {
    background:
      linear-gradient(180deg, rgba(3, 8, 11, 0.76) 0, rgba(3, 8, 11, 0.72) 48%, var(--sp-bg) 100%),
      linear-gradient(90deg, rgba(3, 8, 11, 0.48), rgba(3, 8, 11, 0.2));
  }

  .sp-hero h1 {
    font-size: 58px;
  }

  .sp-page-hero h1 {
    font-size: 48px;
  }

  .sp-hero__content > p:last-of-type {
    font-size: 17px;
  }

  .sp-page-hero__content > p:last-of-type,
  .sp-groups-page .sp-section-heading > p:not(.sp-kicker),
  .sp-help-panel p:not(.sp-kicker),
  .sp-trial-section p:not(.sp-kicker) {
    font-size: 16px;
  }

  .sp-section {
    padding-block: 38px;
  }

  .sp-section-heading h2,
  .sp-about h2,
  .sp-collab h2,
  .sp-help-panel h2,
  .sp-trial-section h2,
  .sp-safety-section h2 {
    font-size: 34px;
  }

  .sp-card-grid,
  .sp-about__layout,
  .sp-collab__inner,
  .sp-footer__inner,
  .sp-help-panel,
  .sp-quick-facts,
  .sp-mini-card-grid,
  .sp-about-activity-grid,
  .sp-team-path-grid,
  .sp-step-grid,
  .sp-safety-grid,
  .sp-info-list {
    grid-template-columns: 1fr;
  }

  .sp-membership-intro__text p {
    font-size: 1rem;
  }

  .sp-footer__links {
    grid-template-columns: 1fr;
  }

  .sp-membership-activity-panel p:not(.sp-kicker) {
    margin-top: 0;
  }

  .sp-booking-embed {
    margin-inline: -14px;
    padding: 12px;
  }

  .sp-help-panel,
  .sp-trial-section__inner,
  .sp-quick-facts article,
  .sp-mini-card-grid article,
  .sp-support-panel,
  .sp-overview-card,
  .sp-team-path,
  .sp-application-info,
  .sp-level-grid article,
  .sp-step-grid article,
  .sp-safety-grid article,
  .sp-info-list article,
  .sp-membership-fees article {
    padding: 22px;
  }

  .sp-team-path ul,
  .sp-application-info ul {
    grid-template-columns: 1fr;
  }

  .sp-help-panel .sp-button {
    justify-self: start;
  }

  .sp-action-card {
    min-height: 255px;
  }

  .sp-action-card__content {
    grid-template-columns: 32px 1fr 24px;
    inset: auto 16px 16px;
    gap: 12px;
  }

  .sp-overview-card {
    grid-template-columns: 36px minmax(0, 1fr) 24px;
    min-height: 0;
  }

  .sp-action-card strong {
    font-size: 25px;
  }

  .sp-action-card small,
  .sp-about__content p:not(.sp-kicker),
  .sp-collab p {
    font-size: 16px;
  }

  .sp-about__image img {
    min-height: 260px;
  }
}

@media (max-width: 420px) {
  .sp-hero h1 {
    font-size: 48px;
  }

  .sp-page-hero h1 {
    font-size: 42px;
  }

  .sp-faq-list summary {
    padding: 20px;
    font-size: 17px;
  }

  .sp-faq-list details p {
    padding-inline: 20px;
  }
}
