:root {
  --navy-main: #032b3a;
  --navy-deep: #021f2c;
  --navy-card: #062f40;
  --navy-dark: #041f2b;
  --yellow-main: #f6c445;
  --yellow-soft: #ffd45b;
  --orange-main: #f47a3c;
  --orange-bright: #ff5a17;
  --blue-soft: #8ec7d9;
  --blue-circle: #7fa7b7;
  --blue-feature: #9fd4e2;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --light-gray: #e8edf2;
  --mid-gray: #aab6c2;
  --text-dark: #173042;
  --purple-accent: #c7b7f2;
  --safe-yellow: #f2c84b;

  --space-4: 4px;
  --space-8: 8px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-28: 28px;
  --space-32: 32px;
  --space-40: 40px;
  --space-48: 48px;

  --radius-large: 28px;
  --radius-medium: 22px;
  --radius-input: 12px;
  --radius-pill: 999px;
  --shadow-card: 0 18px 45px rgba(0, 0, 0, 0.22);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.16);
  --border-soft: 1px solid rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--navy-main);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

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

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(246, 196, 69, 0.55);
  outline-offset: 3px;
}

.page-shell {
  position: relative;
  isolation: isolate;
  width: min(100%, 1720px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 30px 56px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(54, 132, 157, 0.12), transparent 25%),
    radial-gradient(circle at 90% 38%, rgba(255, 255, 255, 0.03), transparent 32%),
    linear-gradient(160deg, #052e3e 0%, #032b3a 54%, #022534 100%);
}

.page-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.decor {
  position: absolute;
  display: block;
  pointer-events: none;
  user-select: none;
}

.decor--blob-yellow {
  left: -150px;
  bottom: -150px;
  width: 560px;
  opacity: 0.95;
}

.decor--blob-blue-bottom {
  right: -170px;
  bottom: -180px;
  width: 420px;
  opacity: 0.9;
}

.topbar {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-24);
  min-height: 120px;
}

.topbar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  background: rgba(1, 31, 45, 0.72);
  box-shadow: var(--shadow-soft);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.pill-button:hover {
  transform: translateY(-2px);
  background: rgba(4, 47, 64, 0.98);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.pill-button--yellow {
  border-color: var(--yellow-main);
}

.pill-button--orange {
  border-color: var(--orange-main);
}

.pill-button__icon {
  font-size: 20px;
}

.pill-button__icon svg {
  width: 21px;
  height: 21px;
}

.pill-button--yellow .pill-button__icon {
  color: var(--blue-feature);
}

.pill-button--orange .pill-button__icon {
  color: var(--blue-feature);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
}

.brand__image {
  display: block;
  width: clamp(210px, 20vw, 300px);
  height: auto;
}

.main-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.97fr) minmax(0, 1.03fr);
  align-items: start;
  gap: 64px;
  width: 100%;
}

.left-column,
.right-column {
  position: relative;
  display: flex;
  flex-direction: column;
}

.left-column {
  gap: 28px;
}

.right-column {
  align-items: center;
  padding-top: 18px;
}

.welcome-card {
  position: relative;
  min-height: 385px;
  padding: 8px 4px 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.welcome-card::after {
  content: none;
}

.welcome-card__eyebrow,
.welcome-card__tagline {
  position: relative;
  z-index: 1;
  display: block;
  font-family: "Pacifico", cursive;
  font-weight: 400;
}

.welcome-card__eyebrow {
  margin-bottom: 10px;
  color: var(--orange-main);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.2;
}

.welcome-card__title {
  position: relative;
  z-index: 1;
  margin: 0;
  line-height: 0.96;
}

.welcome-card__title span,
.welcome-card__title strong {
  display: block;
  font-size: clamp(50px, 6vw, 82px);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.welcome-card__title strong {
  color: var(--yellow-main);
}

.welcome-card__tagline {
  margin: 24px 0 0;
  color: var(--blue-soft);
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1.28;
}

.welcome-card__dots {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.welcome-card__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow-main);
}

.decor--stars-welcome {
  position: absolute;
  z-index: 3;
  right: 6px;
  top: 96px;
  width: 122px;
  transform: rotate(-6deg);
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.18));
}

.account-card {
  position: relative;
  z-index: 3;
  padding: 28px;
  border-radius: var(--radius-large);
  background: linear-gradient(180deg, #fff 0%, #fbfcfd 100%);
  color: var(--text-dark);
  box-shadow: var(--shadow-card);
}

.account-card__header {
  display: flex;
  align-items: center;
  gap: 18px;
}

.account-card__header > div {
  min-width: 0;
}

.account-card__icon {
  display: grid;
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(145deg, var(--orange-bright), #f24711);
  box-shadow: 0 12px 24px rgba(244, 87, 27, 0.28);
}

.account-card__icon svg {
  width: 34px;
  height: 34px;
}

.account-card__header h2 {
  margin: 0 0 5px;
  color: #ed5a24;
  font-size: 22px;
  line-height: 1.2;
}

.account-card__header p {
  margin: 0;
  color: #4f6271;
  font-size: 13px;
}

.account-card__divider {
  height: 2px;
  margin: 20px 0 18px;
  background: linear-gradient(90deg, var(--orange-main), rgba(244, 122, 60, 0.35));
}

.registration-form {
  display: grid;
  gap: 14px;
}

.form-group {
  display: grid;
  gap: 7px;
}

.form-group label {
  color: #183244;
  font-size: 12px;
  font-weight: 700;
}

.form-group label span {
  color: #f04d24;
}

.input-wrap,
.phone-control {
  display: flex;
  align-items: center;
}

.input-wrap {
  position: relative;
  width: 100%;
}

.input-wrap input,
.phone-control select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfd9e2;
  border-radius: var(--radius-input);
  background: #fff;
  color: var(--text-dark);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.input-wrap input {
  padding: 0 44px 0 14px;
}

.input-wrap input::placeholder {
  color: #7f91a0;
}

.input-wrap input:focus,
.phone-control select:focus {
  outline: none;
  border-color: var(--blue-soft);
  box-shadow: 0 0 0 4px rgba(142, 199, 217, 0.22);
}

.input-icon {
  position: absolute;
  right: 14px;
  color: #71869a;
  pointer-events: none;
}

.input-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.input-lock {
  position: absolute;
  right: 44px;
  display: grid;
  place-items: center;
  color: #8697a6;
  pointer-events: none;
}

.input-lock svg {
  width: 17px;
  height: 17px;
  display: block;
}

.input-wrap--password input {
  padding-right: 76px;
}

.phone-control {
  gap: 10px;
}

.phone-control select {
  flex: 0 0 106px;
  padding: 0 12px;
  cursor: pointer;
}

.input-wrap--phone {
  flex: 1;
}

.password-toggle {
  position: absolute;
  right: 8px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #71869a;
  cursor: pointer;
}

.password-toggle:hover {
  background: #eef4f7;
}

.password-toggle svg {
  width: 20px;
  height: 20px;
  display: block;
}

.password-toggle.is-visible {
  color: var(--orange-main);
}

.primary-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  min-height: 54px;
  margin-top: 4px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(100deg, #fa4f12 0%, #ff6d16 100%);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(244, 88, 21, 0.26);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(244, 88, 21, 0.34);
}

.primary-button span:last-child {
  margin-left: auto;
  font-size: 27px;
  font-weight: 400;
}

.form-message {
  display: none;
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.45;
}

.form-message.is-visible {
  display: block;
}

.form-message.is-error {
  background: #fff0ed;
  color: #9a2f17;
}

.form-message.is-success {
  background: #eaf7ef;
  color: #236c42;
}

.existing-account {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 76px;
  padding: 15px 24px;
  border-radius: var(--radius-medium);
  background: var(--white);
  color: var(--text-dark);
  box-shadow: var(--shadow-soft);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.existing-account strong {
  color: var(--orange-main);
}

.existing-account__icon {
  width: 45px;
  height: 45px;
  object-fit: contain;
  margin-left: 2px;
  flex: 0 0 auto;
}

.existing-account:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.kids-hero {
  position: relative;
  width: 100%;
  min-height: 1240px;
}

.kids-hero__blob {
  position: absolute;
  z-index: 1;
  top: 110px;
  left: 50%;
  width: min(102%, 700px);
  transform: translateX(-50%);
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.18));
}

.kids-hero__image {
  position: absolute;
  z-index: 2;
  top: 150px;
  left: 50%;
  width: auto;
  height: 1080px;
  max-width: 150%;
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.2));
}

.kids-hero__image[src="assets/kids.png"] {
  /* Replace assets/kids.png with the transparent full-body children PNG. */
}

.doodle-path {
  position: absolute;
  overflow: visible;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
  stroke-dasharray: 8 10;
  pointer-events: none;
}

.doodle-path--orange {
  left: -54px;
  top: 360px;
  width: 250px;
  stroke: var(--orange-main);
}

.decor--stars-hero {
  position: absolute;
  z-index: 3;
  left: 1%;
  bottom: 18px;
  width: 118px;
  transform: rotate(-8deg);
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.18));
}

.login-heading-card,
.login-card {
  position: relative;
  z-index: 4;
  width: min(92%, 520px);
  border-radius: var(--radius-medium);
  background: var(--white);
  color: var(--text-dark);
  box-shadow: var(--shadow-card);
}

.login-heading-card {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 118px;
  margin-top: 46px;
  padding: 20px 30px;
}

.login-heading-card > div {
  min-width: 0;
}

.login-heading-card h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
}

.login-heading-card p {
  margin: 5px 0 0;
  color: #385064;
  font-size: 15px;
}

.people-icon {
  position: relative;
  flex: 0 0 82px;
  width: 82px;
  height: 62px;
}

.people-icon__person {
  position: absolute;
  bottom: 0;
  width: 34px;
  height: 34px;
  border-radius: 48% 48% 18% 18%;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.9);
}

.people-icon__person::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -19px;
  width: 24px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: inherit;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.9);
}

.people-icon__person--blue {
  left: 2px;
  background: #73a8b4;
}

.people-icon__person--orange {
  right: 2px;
  background: var(--orange-main);
}

.people-icon__person--yellow {
  z-index: 2;
  left: 24px;
  width: 40px;
  height: 38px;
  background: #f4b43e;
}

.login-card {
  margin-top: 22px;
  padding: 18px;
}

.login-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 0;
  border-radius: 11px;
  background: linear-gradient(90deg, #041a3c 0%, #031f43 100%);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(2, 24, 51, .23);
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease;
}

.login-card__button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.login-card__button span:last-child {
  margin-left: auto;
  font-size: 26px;
}

.welcome-message {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  margin-top: 18px;
  padding: 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #d8eff9, #edf8fc);
}

.welcome-message__icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #1959a4, #06499a);
  color: var(--white);
  font-size: 28px;
  box-shadow: 0 8px 18px rgba(15, 78, 157, .28);
}

.welcome-message__icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.welcome-message h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.welcome-message p {
  margin: 0;
  color: #263b4b;
  font-size: 13px;
  line-height: 1.55;
}

.doodle-path--yellow {
  position: relative;
  align-self: flex-end;
  width: min(100%, 640px);
  height: 300px;
  margin-top: 52px;
  overflow: visible;
  stroke: var(--yellow-main);
  transform: rotate(16deg);
  transform-origin: center;
  z-index: 3;
}

.doodle-path__arrow {
  stroke-dasharray: none;
  stroke-width: 5;
}

.slogan {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: fit-content;
  max-width: calc(100% - 30px);
  margin: 26px auto 30px;
  padding: 12px 24px;
  border: 1px solid rgba(142, 199, 217, 0.34);
  border-radius: 13px;
  background: rgba(3, 37, 51, 0.85);
  box-shadow: 0 10px 30px rgba(0,0,0,.14);
  font-size: clamp(24px, 3.3vw, 42px);
  line-height: 1;
  white-space: nowrap;
}

.slogan__heart {
  font-size: 1.15em;
  font-weight: 300;
}

.decor--star-sticker {
  position: relative;
  align-self: flex-start;
  width: 100px;
  height: auto;
  margin-top: 6px;
  margin-left: 360px;
  transform: rotate(-12deg);
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.22));
  z-index: 3;
}

.slogan__heart--blue,
.slogan__grow {
  color: var(--blue-soft);
}

.slogan__heart--orange,
.slogan__dream {
  color: var(--orange-main);
}

.slogan__shine {
  color: var(--white);
}

.features-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 -56px;
  padding: 26px 34px 28px;
  border-top: 1px solid rgba(142, 199, 217, 0.22);
  background: rgba(2, 31, 44, 0.96);
  box-shadow: 0 -12px 30px rgba(0, 0, 0, .12);
}

.feature-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 86px;
  padding: 0 20px;
}

.feature-item + .feature-item {
  border-left: 1px solid rgba(255,255,255,.18);
}

.feature-item__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-deep);
  font-size: 26px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.38), 0 9px 20px rgba(0,0,0,.14);
}

.feature-item__icon--orange {
  border-radius: 18px;
  background: var(--orange-main);
  color: var(--white);
}

.feature-item__icon svg {
  width: 27px;
  height: 27px;
  display: block;
}

.feature-item__icon--blue,
.feature-item__icon--purple,
.feature-item__icon--yellow {
  border-radius: 18px;
  color: var(--navy-deep);
}

.feature-item__icon--blue {
  background: var(--blue-feature);
}

.feature-item__icon--purple {
  background: var(--purple-accent);
}

.feature-item__icon--yellow {
  background: var(--safe-yellow);
}

.feature-item h3 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 14px;
  line-height: 1.2;
}

.feature-item p {
  margin: 0;
  color: #d0dce2;
  font-size: 11px;
  line-height: 1.45;
}

@media (max-width: 768px) {
  .page-shell {
    padding: 22px 18px 0;
  }

  .topbar {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    margin-bottom: 30px;
  }

  .topbar__actions {
    justify-content: center;
  }

  .brand {
    align-self: center;
    margin-top: 16px;
    padding-right: 0;
  }

  .brand__image {
    width: 210px;
  }

  /* The outlined star had margin-left:360px, which on a phone threw it to the far
     right on its own row. Pulled up beside the logo instead. */
  .decor--star-sticker {
    position: absolute;
    top: -86px;
    right: 4%;
    width: 66px;
    margin: 0;
  }

  .main-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .right-column {
    display: contents;
  }

  .left-column {
    display: contents;
  }

  .welcome-card {
    order: 1;
    min-height: 260px;
  }

  .kids-hero {
    order: 2;
    min-height: 470px;
  }

  .account-card {
    order: 3;
  }

  .existing-account {
    order: 4;
  }

  .login-heading-card {
    order: 5;
    justify-self: center;
    margin-top: 0;
  }

  .login-card {
    order: 6;
    justify-self: center;
  }

  .kids-hero {
    justify-self: stretch;
  }

  /* The yellow doodle is a 300px-tall decorative SVG that becomes its own stacked
     block on mobile, leaving a large empty gap between the login card and the slogan.
     It adds nothing on a phone. */
  .doodle-path--yellow {
    display: none;
  }

  /* Three separate login entry points stacked in a row (this link, the "Parent Log in"
     heading card and the LOG IN card) read as repetition on a narrow screen. The two
     cards below already carry the action, so the standalone link is dropped here. */
  .existing-account {
    display: none;
  }

  .kids-hero__blob {
    top: 20px;
    width: min(98%, 420px);
  }

  .kids-hero__image {
    top: 40px;
    width: auto;
    height: 430px;
  }

  .doodle-path--orange {
    left: -10px;
    top: 210px;
  }

  .slogan {
    gap: 9px;
    margin: 14px auto 16px;
    padding-inline: 16px;
    font-size: clamp(20px, 6vw, 34px);
  }

  .features-strip {
    margin-inline: -18px;
    padding-inline: 18px;
  }
}

@media (max-width: 576px) {
  .pill-button {
    flex: 1 1 140px;
    min-height: 50px;
    padding-inline: 15px;
    font-size: 13px;
  }

  .brand {
    padding-right: 0;
  }

  .brand__image {
    width: 180px;
  }

  .welcome-card {
    min-height: 310px;
    padding: 26px 22px;
  }

  .welcome-card__eyebrow {
    font-size: 34px;
  }

  .welcome-card__title span,
  .welcome-card__title strong {
    font-size: 52px;
  }

  .welcome-card__tagline {
    font-size: 25px;
  }

  /* Was top:78px, sitting on top of the word "Talent". Moved below the title. */
  .decor--stars-welcome {
    right: 10px;
    top: 138px;
    width: 92px;
  }

  .kids-hero {
    min-height: 560px;
  }

  .kids-hero__image {
    width: auto;
    height: 540px;
  }

  .kids-hero__blob {
    width: 100%;
  }

  .decor--stars-hero {
    bottom: 0;
    width: 92px;
  }

  .account-card {
    padding: 22px 18px;
  }

  .account-card__header {
    align-items: flex-start;
  }

  .account-card__icon {
    flex-basis: 54px;
    width: 54px;
    height: 54px;
  }

  .account-card__header h2 {
    font-size: 18px;
  }

  .phone-control {
    align-items: stretch;
  }

  .phone-control select {
    flex-basis: 92px;
  }

  .existing-account {
    flex-direction: column;
    gap: 4px;
    min-height: 88px;
    text-align: center;
  }

  .login-heading-card {
    gap: 14px;
    padding-inline: 20px;
  }

  .people-icon {
    transform: scale(.86);
    transform-origin: center;
  }

  .welcome-message {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 16px;
  }

  .welcome-message__icon {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .doodle-path--yellow {
    width: min(100%, 300px);
  }

  .slogan {
    white-space: normal;
    flex-wrap: wrap;
    gap: 6px;
    row-gap: 4px;
    font-size: clamp(16px, 5vw, 28px);
  }

  .features-strip {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 0;
    padding-block: 14px 22px;
  }

  .feature-item {
    padding: 18px 8px;
  }

  .feature-item + .feature-item {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.16);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
