:root {
  --ink: #15383b;
  --ink-soft: #446165;
  --paper: #eff7ed;
  --white: #fffef8;
  --court: #2b8990;
  --court-deep: #17646d;
  --court-dark: #0e5058;
  --ball: #ecf953;
  --coral: #ff7557;
  --line: rgba(21, 56, 59, 0.16);
  --shadow: 0 24px 60px rgba(20, 68, 70, 0.14);
  --display: "Arial Rounded MT Bold", "Trebuchet MS", "Avenir Next", sans-serif;
  --body: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  --utility: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(
    circle at center,
    rgba(23, 100, 109, 0.12) 1.25px,
    transparent 1.5px
  );
  background-size: 24px 24px;
  content: "";
  mask-image: linear-gradient(to bottom, #000 0%, transparent 62%);
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 4px solid var(--coral);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease;
}

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

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: var(--ink);
  text-decoration: none;
}

.brand-ball {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--ball);
  box-shadow: 2px 3px 0 var(--ink);
  transform: rotate(-8deg);
}

.brand-ball span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
}

.brand-ball span:nth-child(1) {
  top: 6px;
  left: 12px;
}

.brand-ball span:nth-child(2) {
  top: 15px;
  left: 6px;
}

.brand-ball span:nth-child(3) {
  right: 5px;
  bottom: 5px;
}

.brand-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -1.1px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a,
.site-footer nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--coral);
  content: "";
  transition:
    transform 180ms ease,
    transform-origin 0s 180ms;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.launch-chip {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 254, 248, 0.68);
  color: var(--ink-soft);
  font-family: var(--utility);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.launch-chip span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 117, 87, 0.15);
}

main {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(36px, 6vw, 88px);
  min-height: 670px;
  padding: 52px 0 92px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--court-deep);
  font-family: var(--utility);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

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

h1 {
  max-width: 650px;
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: clamp(64px, 7.4vw, 110px);
  font-weight: 900;
  letter-spacing: -0.073em;
  line-height: 0.84;
}

h1 span {
  position: relative;
  display: inline-block;
  color: var(--court-deep);
  white-space: nowrap;
}

h1 span::after {
  position: absolute;
  right: 2%;
  bottom: -12px;
  left: 2%;
  height: 12px;
  border-top: 4px solid var(--coral);
  border-radius: 50%;
  content: "";
  transform: rotate(-1.5deg);
}

.hero-lede {
  max-width: 540px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
}

.hero-actions p {
  max-width: 190px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.35;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 50px;
  padding: 13px 20px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button span {
  font-size: 19px;
  line-height: 1;
}

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

.button-primary {
  background: var(--ball);
  box-shadow: 5px 6px 0 var(--ink);
}

.button-primary:hover {
  box-shadow: 7px 8px 0 var(--ink);
}

.court-scene {
  position: relative;
  width: min(100%, 560px);
  margin: 0 auto;
  padding: 22px;
  transform: rotate(1.5deg);
  border: 2px solid var(--ink);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 12px 14px 0 var(--ink);
}

.court-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 2px 2px 16px;
  color: var(--ink-soft);
  font-family: var(--utility);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.court-caption span:first-child {
  color: var(--ink);
}

.court {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 0.78;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--court);
}

.court::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.09), transparent 34%),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 14px,
      rgba(14, 80, 88, 0.04) 15px
    );
  content: "";
  pointer-events: none;
}

.court-surface {
  position: absolute;
  inset: 6%;
  border: 2px solid rgba(255, 254, 248, 0.9);
}

.court-line,
.court-net {
  position: absolute;
  z-index: 2;
  display: block;
  background: rgba(255, 254, 248, 0.88);
}

.court-line-top,
.court-line-bottom {
  right: 0;
  left: 0;
  height: 2px;
}

.court-line-top {
  top: 26%;
}

.court-line-bottom {
  bottom: 26%;
}

.court-line-center-top,
.court-line-center-bottom {
  left: 50%;
  width: 2px;
  height: 26%;
}

.court-line-center-top {
  top: 0;
}

.court-line-center-bottom {
  bottom: 0;
}

.court-kitchen {
  position: absolute;
  right: 0;
  left: 0;
  height: 12%;
  background: rgba(255, 117, 87, 0.72);
}

.court-kitchen-top {
  top: 38%;
}

.court-kitchen-bottom {
  bottom: 38%;
}

.court-net {
  top: calc(50% - 2px);
  right: -4%;
  left: -4%;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--ink) 0,
    var(--ink) 5px,
    rgba(255, 254, 248, 0.95) 5px,
    rgba(255, 254, 248, 0.95) 8px
  );
  box-shadow: 0 2px 0 rgba(14, 80, 88, 0.4);
}

.rally-route {
  position: absolute;
  z-index: 3;
  inset: 4% 5%;
  width: 90%;
  height: 92%;
  overflow: visible;
}

.rally-route path {
  fill: none;
  stroke: rgba(255, 254, 248, 0.72);
  stroke-dasharray: 1.5 3;
  stroke-linecap: round;
  stroke-width: 0.85;
  vector-effect: non-scaling-stroke;
}

.moving-ball,
.resting-ball {
  fill: var(--ball);
  stroke: var(--ink);
  stroke-width: 0.8;
  vector-effect: non-scaling-stroke;
}

.resting-ball {
  display: none;
}

.court-step {
  position: absolute;
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr;
  min-width: 155px;
  padding: 10px 12px 11px;
  transform: rotate(-1.5deg);
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 4px 5px 0 rgba(14, 80, 88, 0.45);
}

.court-step span {
  grid-row: 1 / 3;
  margin-right: 10px;
  color: var(--coral);
  font-family: var(--utility);
  font-size: 10px;
  font-weight: 800;
}

.court-step strong {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.court-step small {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.2;
}

.court-step-one {
  top: 10%;
  left: 8%;
}

.court-step-two {
  top: 43%;
  right: 7%;
}

.court-step-three {
  bottom: 8%;
  left: 15%;
}

.court-sticker {
  position: absolute;
  z-index: 6;
  padding: 10px 13px;
  border: 2px solid var(--ink);
  border-radius: 9px;
  background: var(--ball);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  box-shadow: 4px 5px 0 var(--ink);
}

.court-sticker span {
  display: block;
  font-family: var(--utility);
  font-size: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.court-sticker-focus {
  top: 23%;
  right: -54px;
  transform: rotate(4deg);
}

.court-sticker-progress {
  bottom: 21%;
  left: -45px;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: rotate(-5deg);
  background: var(--white);
}

.court-sticker-progress .check {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--ball);
  font-family: var(--body);
  font-size: 13px;
}

.loop-section {
  margin: 46px 0 112px;
  padding: clamp(38px, 5vw, 66px);
  border: 2px solid var(--ink);
  border-radius: 28px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 10px 12px 0 var(--coral);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 42px;
}

.section-heading .eyebrow {
  margin-bottom: 9px;
  color: var(--ball);
  white-space: nowrap;
}

.section-heading h2 {
  max-width: 650px;
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 62px);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.loop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.loop-card {
  position: relative;
  min-height: 275px;
  padding: 28px;
  border: 1px solid rgba(255, 254, 248, 0.22);
  background: rgba(255, 254, 248, 0.035);
}

.loop-card:first-child {
  border-radius: 14px 0 0 14px;
}

.loop-card:last-child {
  border-radius: 0 14px 14px 0;
}

.loop-card::after {
  position: absolute;
  z-index: 2;
  top: 52px;
  right: -10px;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  border-top: 1px solid rgba(255, 254, 248, 0.4);
  border-right: 1px solid rgba(255, 254, 248, 0.4);
  background: var(--ink);
  content: "";
}

.loop-card:last-child::after {
  content: none;
}

.loop-number {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 35px;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--ball);
  font-family: var(--utility);
  font-size: 13px;
  font-weight: 800;
}

.loop-card-ball .loop-number {
  border-color: var(--ball);
  background: var(--ball);
  color: var(--ink);
  box-shadow: 0 0 0 7px rgba(236, 249, 83, 0.09);
}

.loop-place {
  margin: 0 0 7px;
  color: rgba(255, 254, 248, 0.58);
  font-family: var(--utility);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.loop-card h3 {
  margin-bottom: 11px;
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.loop-card > p:last-child {
  max-width: 260px;
  margin: 0;
  color: rgba(255, 254, 248, 0.7);
  font-size: 14px;
}

.role-section {
  display: grid;
  gap: 72px;
  margin: 0 0 112px;
}

.role-card {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1.12fr);
  align-items: center;
  gap: clamp(46px, 8vw, 110px);
  min-height: 570px;
  padding: clamp(42px, 7vw, 90px);
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 30px;
}

.role-card-coach {
  position: relative;
  background: var(--white);
}

.role-card-coach::before {
  position: absolute;
  top: -140px;
  right: -130px;
  width: 380px;
  height: 380px;
  border: 50px solid var(--ball);
  border-radius: 50%;
  content: "";
  opacity: 0.52;
}

.role-card-player {
  grid-template-columns: minmax(380px, 1.12fr) minmax(0, 0.88fr);
  background: var(--court-deep);
  color: var(--white);
}

.role-card-player .role-copy {
  grid-column: 2;
  grid-row: 1;
}

.role-card-player .practice-card {
  grid-column: 1;
  grid-row: 1;
}

.role-copy {
  position: relative;
  z-index: 2;
}

.role-copy .eyebrow {
  margin-bottom: 20px;
}

.role-card-player .eyebrow {
  color: var(--ball);
}

.role-copy h2 {
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: clamp(40px, 5.3vw, 68px);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.role-copy > p:last-child {
  max-width: 460px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.role-card-player .role-copy > p:last-child {
  color: rgba(255, 254, 248, 0.9);
}

.lesson-note,
.practice-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 470px;
  justify-self: center;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 12px 14px 0 var(--ink);
}

.lesson-note {
  padding: 28px;
  transform: rotate(1.8deg);
}

.note-topline,
.practice-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
  font-family: var(--utility);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.note-status {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--ball);
}

.note-label {
  margin: 28px 0 7px;
  color: var(--court-deep);
  font-family: var(--utility);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lesson-note > strong {
  display: block;
  max-width: 360px;
  font-family: var(--display);
  font-size: clamp(23px, 3vw, 31px);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.assignment-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.assignment-row small {
  display: block;
  margin-bottom: 2px;
  color: var(--ink-soft);
  font-family: var(--utility);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.assignment-check {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-size: 20px;
}

.practice-card {
  padding: 28px;
  transform: rotate(-1.8deg);
  background: var(--white);
  box-shadow: 12px 14px 0 var(--ball);
}

.practice-progress {
  height: 8px;
  margin: 22px 0 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}

.practice-progress span {
  display: block;
  width: 66%;
  height: 100%;
  border-radius: inherit;
  background: var(--coral);
}

.practice-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  min-height: 58px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 750;
}

.practice-item:last-child {
  border-bottom: 0;
}

.practice-item small {
  color: var(--ink-soft);
  font-family: var(--utility);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.practice-check {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 7px;
  background: var(--white);
  font-size: 13px;
}

.practice-item-done {
  color: var(--ink-soft);
  text-decoration: line-through;
  text-decoration-color: rgba(21, 56, 59, 0.35);
}

.practice-item-done .practice-check {
  background: var(--ball);
  color: var(--ink);
}

.final-cta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 70px;
  padding: clamp(42px, 7vw, 82px);
  border: 2px solid var(--ink);
  border-radius: 30px;
  background: var(--ball);
  box-shadow: 11px 13px 0 var(--ink);
}

.final-cta .eyebrow {
  color: var(--ink);
}

.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 6.5vw, 78px);
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.cta-action p {
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 16px;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 5px 6px 0 var(--coral);
}

.button-dark:hover {
  box-shadow: 7px 8px 0 var(--coral);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px 40px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 42px 0 48px;
  border-top: 1px solid var(--line);
}

.site-footer > p {
  grid-column: 1;
  margin: -10px 0 0 40px;
  color: var(--ink-soft);
  font-size: 12px;
}

.site-footer nav {
  display: flex;
  grid-column: 2;
  grid-row: 1 / 3;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 13px 23px;
  max-width: 540px;
}

.site-footer nav a:hover {
  color: var(--court-deep);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 76px;
  }

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

  .court-scene {
    width: min(88%, 560px);
    margin-top: 30px;
  }

  .role-card,
  .role-card-player {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .role-card-player .role-copy,
  .role-card-player .practice-card {
    grid-column: 1;
  }

  .role-card-player .role-copy {
    grid-row: 1;
  }

  .role-card-player .practice-card {
    grid-row: 2;
  }

  .role-copy {
    max-width: 720px;
  }

  .lesson-note,
  .practice-card {
    width: min(100%, 560px);
  }
}

@media (max-width: 760px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding-top: 20px;
  }

  .launch-chip {
    padding: 7px 10px;
    font-size: 9px;
  }

  .hero {
    gap: 36px;
    min-height: auto;
    padding: 64px 0 88px;
  }

  h1 {
    font-size: clamp(58px, 19vw, 82px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions p {
    max-width: none;
  }

  .court-scene {
    width: calc(100% - 22px);
    padding: 14px;
    border-radius: 22px;
    box-shadow: 8px 9px 0 var(--ink);
  }

  .court-caption span:last-child {
    display: none;
  }

  .court-sticker-focus {
    right: -24px;
  }

  .court-sticker-progress {
    left: -20px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .loop-section {
    margin-bottom: 88px;
    padding: 30px 20px;
    box-shadow: 7px 8px 0 var(--coral);
  }

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

  .loop-card {
    min-height: auto;
    padding: 24px;
    border-radius: 0;
  }

  .loop-card:first-child {
    border-radius: 13px 13px 0 0;
  }

  .loop-card:last-child {
    border-radius: 0 0 13px 13px;
  }

  .loop-card::after {
    top: auto;
    right: 36px;
    bottom: -9px;
    transform: rotate(135deg);
  }

  .loop-number {
    margin-bottom: 22px;
  }

  .role-section {
    gap: 48px;
    margin-bottom: 88px;
  }

  .role-card {
    min-height: auto;
    padding: 42px 22px 52px;
    border-radius: 24px;
  }

  .role-copy h2 {
    font-size: clamp(39px, 13vw, 56px);
  }

  .role-copy > p:last-child {
    font-size: 16px;
  }

  .lesson-note,
  .practice-card {
    padding: 20px;
    box-shadow: 7px 8px 0 var(--ink);
  }

  .practice-card {
    box-shadow: 7px 8px 0 var(--ball);
  }

  .final-cta {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 42px 25px 48px;
    box-shadow: 7px 8px 0 var(--ink);
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 32px;
  }

  .site-footer > p {
    margin-left: 0;
  }

  .site-footer nav {
    grid-column: 1;
    grid-row: auto;
    justify-content: flex-start;
    margin-top: 12px;
  }
}

@media (max-width: 460px) {
  .brand-name {
    font-size: 20px;
  }

  .brand-ball {
    width: 27px;
    height: 27px;
  }

  .brand-ball span:nth-child(1) {
    top: 5px;
    left: 11px;
  }

  .court-step {
    min-width: 133px;
    padding: 8px 9px;
  }

  .court-step strong {
    font-size: 12px;
  }

  .court-step small {
    font-size: 8px;
  }

  .court-step-one {
    left: 5%;
  }

  .court-step-two {
    right: 4%;
  }

  .court-sticker-focus {
    top: 25%;
    right: -20px;
  }

  .court-sticker-progress {
    bottom: 19%;
    left: -15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .moving-ball {
    display: none;
  }

  .resting-ball {
    display: block;
  }
}
