* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --landing-gold: #f1ca6e;
  --landing-navy: #020913;
}

html,
body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 50% 35%, #102c51 0, #030a14 55%, #010409 100%);
}

body {
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff4d0;
  font-family: Georgia, "Times New Roman", serif;
}

.landing-shell {
  display: grid;
  width: 100%;
  min-height: 100svh;
  place-items: center;
  padding: env(safe-area-inset-top) env(safe-area-inset-right)
    env(safe-area-inset-bottom) env(safe-area-inset-left);
}

.landing-artboard {
  position: relative;
  width: min(100vw, calc(100svh * 1.776833));
  aspect-ratio: 1672 / 941;
  overflow: hidden;
  background: var(--landing-navy);
  isolation: isolate;
}

.landing-artboard picture {
  display: block;
  width: 100%;
  height: 100%;
}

.landing-artwork {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.landing-fireworks {
  position: absolute;
  z-index: 7;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.landing-hotspot,
.landing-cannonball,
.landing-rocket,
.landing-cannon,
.landing-sound-toggle {
  position: absolute;
  display: block;
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.landing-rocket,
.landing-cannon {
  z-index: 6;
  padding: 0;
  border-radius: 22px;
  appearance: none;
  -webkit-appearance: none;
}

.landing-rocket {
  left: 21.7%;
  top: 3.5%;
  width: 8.2%;
  height: 42.5%;
  border-radius: 44% 44% 34% 34%;
}

.landing-cannon {
  left: 5.8%;
  top: 42.4%;
  width: 29.6%;
  height: 38.8%;
  transform-origin: 22% 72%;
}

.landing-rocket:hover,
.landing-cannon:hover {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.landing-rocket:disabled,
.landing-cannon:disabled {
  cursor: default;
}

.landing-rocket::before,
.landing-rocket::after,
.landing-cannon::before,
.landing-cannon::after {
  position: absolute;
  content: "";
  pointer-events: none;
  opacity: 0;
}

.landing-rocket::before,
.landing-rocket::after {
  display: none;
  content: none;
}

/* Rocket ignition is drawn as three separate white/gold canvas burners.
   No broad CSS glow or orange haze is rendered around the rocket. */

.landing-artboard.is-rocket-active .landing-artwork {
  animation: landingRocketRumble 90ms linear infinite alternate;
}

.landing-cannon::before {
  right: -4%;
  top: 1%;
  width: 22%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle,
      #ffffff 0 10%,
      #fff0a0 18%,
      #ffb52f 34%,
      rgba(255, 88, 20, 0.72) 53%,
      transparent 72%);
  filter:
    drop-shadow(0 0 8px #fff0a0)
    drop-shadow(0 0 20px #ff8b20);
  transform: scale(0.25);
}

.landing-cannon::after {
  right: 2%;
  top: 3%;
  width: 18%;
  height: 10%;
  border-radius: 50%;
  background: rgba(235, 238, 240, 0.52);
  filter: blur(6px);
  transform: translateX(0) scale(0.5);
}

.landing-cannon.is-firing {
  animation: landingCannonRecoil 560ms cubic-bezier(.18,.75,.3,1);
}

.landing-cannon.is-firing::before {
  animation: landingMuzzleFlash 430ms ease-out;
}

.landing-cannon.is-firing::after {
  animation: landingMuzzleSmoke 930ms ease-out;
}


.landing-fuse-overlay {
  position: absolute;
  z-index: 10;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.landing-fuse-overlay path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  pointer-events: none;
}

.landing-fuse-overlay.is-active path {
  opacity: 1;
}

.landing-fuse-glow-path {
  stroke: rgba(255, 116, 26, 0.82);
  stroke-width: 7;
  filter:
    drop-shadow(0 0 5px rgba(255, 190, 55, 0.98))
    drop-shadow(0 0 11px rgba(255, 78, 16, 0.8));
}

.landing-fuse-core-path {
  stroke: rgba(255, 252, 211, 0.98);
  stroke-width: 2.2;
  filter: drop-shadow(0 0 4px rgba(255, 235, 131, 1));
}

.landing-fuse-spark {
  position: absolute;
  z-index: 11;
  left: 0;
  top: 0;
  width: clamp(10px, 0.95vw, 18px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle,
      #ffffff 0 14%,
      #fff9c5 20%,
      #ffd641 39%,
      #ff8124 57%,
      rgba(255, 56, 13, 0.48) 69%,
      transparent 78%);
  box-shadow:
    0 0 6px #ffffff,
    0 0 13px #ffd243,
    0 0 23px rgba(255, 86, 18, 0.88);
  transform: translate(-50%, -50%) scale(0.65);
  will-change: left, top, transform, opacity;
}

.landing-fuse-spark::before,
.landing-fuse-spark::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  pointer-events: none;
  background: currentColor;
  transform-origin: 0 50%;
}

.landing-fuse-spark::before {
  width: 115%;
  height: 1.5px;
  color: #fff4aa;
  box-shadow:
    0 -4px 0 -0.5px #ffcf46,
    0 4px 0 -0.5px #ff7a20;
  transform: rotate(34deg);
}

.landing-fuse-spark::after {
  width: 95%;
  height: 1.5px;
  color: #ffffff;
  box-shadow:
    0 -3px 0 -0.5px #ffd74f,
    0 3px 0 -0.5px #ff5a18;
  transform: rotate(124deg);
}

.landing-fuse-spark.is-active {
  opacity: 1;
  animation: landingFuseSparkFlicker 90ms ease-in-out infinite alternate;
}

.landing-cannonball.is-fuse-burning::before {
  animation: landingCannonballFuseGlow 560ms ease-in-out infinite alternate;
}

.landing-cannonball.is-finale-impact::before {
  animation: landingCannonballFinaleImpact 820ms ease-out;
}

.landing-projectile {
  position: absolute;
  z-index: 8;
  left: 0;
  top: 0;
  width: clamp(12px, 1.25vw, 23px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 35% 28%,
      #caa76a 0 8%,
      #473a2d 20%,
      #17191d 62%,
      #050608 100%);
  box-shadow:
    0 0 4px rgba(255, 225, 151, 0.8),
    0 0 14px rgba(255, 135, 31, 0.65);
  transform: translate(-50%, -50%);
  will-change: left, top, transform, opacity;
}

.landing-projectile::after {
  position: absolute;
  right: 78%;
  top: 38%;
  width: 260%;
  height: 24%;
  content: "";
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 96, 26, 0.22),
    rgba(255, 210, 98, 0.88)
  );
  filter: blur(2px);
}

.landing-projectile.is-active {
  opacity: 1;
}

.landing-artboard.is-cannon-impact {
  animation: landingImpactShake 420ms cubic-bezier(.18,.75,.3,1);
}


@keyframes landingFuseSparkFlicker {
  from {
    transform: translate(-50%, -50%) scale(0.7) rotate(-8deg);
    filter: brightness(0.95);
  }

  to {
    transform: translate(-50%, -50%) scale(1.18) rotate(8deg);
    filter: brightness(1.3);
  }
}

@keyframes landingCannonballFuseGlow {
  from {
    opacity: 0.5;
    transform: scale(0.98);
    box-shadow:
      0 0 23px rgba(255, 209, 91, 0.22),
      0 0 46px rgba(255, 113, 25, 0.13);
  }

  to {
    opacity: 1;
    transform: scale(1.04);
    box-shadow:
      0 0 34px rgba(255, 229, 137, 0.42),
      0 0 72px rgba(255, 93, 21, 0.3);
  }
}

@keyframes landingCannonballFinaleImpact {
  0% {
    opacity: 0.4;
    transform: scale(0.94);
  }

  35% {
    opacity: 1;
    transform: scale(1.13);
  }

  100% {
    opacity: 0.55;
    transform: scale(1);
  }
}

@keyframes landingRocketBurn {
  from {
    transform: scaleX(0.93) scaleY(0.95);
    filter:
      blur(0.25px)
      drop-shadow(0 0 6px rgba(255, 247, 199, 0.98))
      drop-shadow(0 0 12px rgba(255, 153, 43, 0.62));
  }

  to {
    transform: scaleX(1.06) scaleY(1.09);
    filter:
      blur(0.65px)
      drop-shadow(0 0 12px rgba(255, 255, 227, 1))
      drop-shadow(0 0 21px rgba(255, 129, 31, 0.72));
  }
}

@keyframes landingRocketHeat {
  from {
    transform: scaleX(0.96) scaleY(0.97);
  }

  to {
    transform: scaleX(1.05) scaleY(1.08);
  }
}

@keyframes landingRocketRumble {
  from {
    transform: translate(-0.35px, 0.1px);
  }

  to {
    transform: translate(0.35px, -0.1px);
  }
}

@keyframes landingCannonRecoil {
  0%,
  100% {
    transform: translate(0, 0) rotate(0);
  }

  18% {
    transform: translate(-1.2%, 0.7%) rotate(-0.45deg);
  }

  52% {
    transform: translate(0.35%, -0.18%) rotate(0.12deg);
  }
}

@keyframes landingMuzzleFlash {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }

  18% {
    opacity: 1;
    transform: scale(1.24);
  }

  62% {
    opacity: 0.62;
    transform: scale(0.78);
  }

  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

@keyframes landingMuzzleSmoke {
  0% {
    opacity: 0;
    transform: translateX(0) scale(0.3);
  }

  22% {
    opacity: 0.8;
  }

  100% {
    opacity: 0;
    transform: translateX(65%) translateY(-22%) scale(1.45);
  }
}

@keyframes landingImpactShake {
  0%,
  100% {
    transform: translate(0, 0);
  }

  18% {
    transform: translate(-2px, 1px);
  }

  36% {
    transform: translate(2px, -1px);
  }

  54% {
    transform: translate(-1px, -1px);
  }

  72% {
    transform: translate(1px, 1px);
  }
}

.landing-sound-toggle {
  position: absolute;
  display: block;
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.landing-hotspot {
  z-index: 12;
  border-radius: 999px;
  pointer-events: auto;
}

.landing-hotspot:hover {
  border-color: rgba(255, 239, 178, 0.72);
  background: rgba(255, 211, 86, 0.08);
  box-shadow: 0 0 22px rgba(255, 190, 40, 0.4);
}

.landing-hotspot:focus-visible,
.landing-cannonball:focus-visible,
.landing-rocket:focus-visible,
.landing-cannon:focus-visible,
.landing-sound-toggle:focus-visible {
  outline: 4px solid #fff7cf;
  outline-offset: 3px;
}

/* Measured against the new 1672 × 941 desktop artwork. */
.landing-continue {
  left: 36.7%;
  top: 58.8%;
  width: 25.9%;
  height: 8.6%;
}

.landing-about {
  left: 36.4%;
  top: 68.5%;
  width: 26.4%;
  height: 6.1%;
}

.landing-cannonball {
  z-index: 5;
  left: 66.5%;
  top: 20.4%;
  width: 18.5%;
  height: 25.2%;
  padding: 0;
  border-radius: 50%;
}

.landing-cannonball::before,
.landing-cannonball::after {
  position: absolute;
  content: "";
  pointer-events: none;
  border-radius: 50%;
}

.landing-cannonball::before {
  inset: 4%;
  background:
    radial-gradient(
      circle at 48% 42%,
      rgba(255, 239, 178, 0.18) 0,
      rgba(255, 203, 83, 0.12) 34%,
      rgba(255, 172, 42, 0.04) 57%,
      transparent 72%
    );
  box-shadow:
    0 0 20px rgba(255, 205, 92, 0.16),
    0 0 42px rgba(255, 162, 40, 0.09);
  mix-blend-mode: screen;
  animation: landingCannonballPulse 2.75s ease-in-out infinite;
}

.landing-cannonball::after {
  inset: -7%;
  border: 2px solid rgba(255, 218, 127, 0.2);
  box-shadow: 0 0 30px rgba(255, 182, 57, 0.18);
  opacity: 0;
  animation: landingCannonballRing 2.75s ease-out infinite;
}

.landing-cannonball:hover::before,
.landing-cannonball:focus-visible::before {
  background:
    radial-gradient(
      circle at 48% 42%,
      rgba(255, 247, 205, 0.28) 0,
      rgba(255, 207, 92, 0.18) 38%,
      rgba(255, 170, 40, 0.08) 62%,
      transparent 76%
    );
}

.landing-cannonball.is-ignited::before {
  animation: landingCannonballIgnite 620ms ease-out;
}

.landing-sound-toggle {
  z-index: 9;
  top: 1.6%;
  left: 1.25%;
  display: grid;
  width: clamp(34px, 2.55vw, 44px);
  aspect-ratio: 1;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(247, 207, 116, 0.68);
  border-radius: 50%;
  color: #ffe7a1;
  background: rgba(2, 9, 19, 0.72);
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.55);
  font: 700 clamp(18px, 1.5vw, 24px) / 1 Georgia, serif;
  opacity: 0.72;
  transition: opacity 180ms ease, background 180ms ease, transform 180ms ease;
}

.landing-sound-toggle:hover,
.landing-sound-toggle:focus-visible,
.landing-sound-toggle[aria-pressed="true"] {
  opacity: 1;
  background: rgba(92, 34, 20, 0.9);
  transform: scale(1.06);
}

.landing-sound-toggle[aria-pressed="false"]::after {
  position: absolute;
  width: 72%;
  height: 2px;
  content: "";
  background: #ffe7a1;
  transform: rotate(-42deg);
  box-shadow: 0 0 3px #020913;
}

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

.landing-fallback {
  position: absolute;
  z-index: 12;
  inset: 5%;
  place-content: center;
  padding: clamp(24px, 5vw, 72px);
  border: 2px solid #b98935;
  border-radius: 24px;
  background:
    linear-gradient(rgba(2, 9, 19, 0.92), rgba(2, 9, 19, 0.97)),
    radial-gradient(circle at top, #174476, #020913 68%);
  text-align: center;
}

.landing-fallback:not([hidden]) {
  display: grid;
}

.landing-fallback h1 {
  margin: 0;
  color: var(--landing-gold);
  font-size: clamp(48px, 9vw, 120px);
}

.landing-fallback h2 {
  margin: 12px 0;
  font-size: clamp(24px, 3vw, 42px);
}

.landing-fallback p {
  max-width: 760px;
  margin: 12px auto;
  font: 20px/1.55 system-ui, sans-serif;
}

.landing-kicker {
  color: var(--landing-gold);
  letter-spacing: 0.18em;
}

.landing-fallback-actions,
.landing-noscript {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.landing-fallback-actions a,
.landing-noscript a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 2px solid #d7a94e;
  border-radius: 999px;
  color: #fff4d0;
  background: #8d291e;
  text-decoration: none;
  font-weight: 700;
}

.landing-fallback-actions a:last-child,
.landing-noscript a:last-child {
  background: #123a67;
}

.landing-noscript {
  position: fixed;
  z-index: 20;
  inset: auto 12px 12px;
  padding: 12px;
  border: 1px solid #b98935;
  background: #020913;
}

@keyframes landingCannonballPulse {
  0%,
  100% {
    opacity: 0.38;
    transform: scale(0.96);
  }

  50% {
    opacity: 0.95;
    transform: scale(1.045);
  }
}

@keyframes landingCannonballRing {
  0% {
    opacity: 0;
    transform: scale(0.88);
  }

  35% {
    opacity: 0.42;
  }

  100% {
    opacity: 0;
    transform: scale(1.13);
  }
}

@keyframes landingCannonballIgnite {
  0% {
    opacity: 0.25;
    transform: scale(0.92);
  }

  42% {
    opacity: 1;
    transform: scale(1.11);
  }

  100% {
    opacity: 0.45;
    transform: scale(1);
  }
}

@media (max-width: 760px) {
  body {
    overflow: auto;
  }

  .landing-artboard {
    width: min(100vw, calc(100svh * 0.562799));
    aspect-ratio: 941 / 1672;
  }

  /* Measured against the new 941 × 1672 mobile artwork. */
  .landing-continue {
    left: 21.5%;
    top: 72.7%;
    width: 54.6%;
    height: 7%;
  }

  .landing-about {
    left: 20.4%;
    top: 79.35%;
    width: 56.4%;
    height: 5.3%;
  }

  .landing-cannonball {
    left: 65.8%;
    top: 34.25%;
    width: 31.8%;
    height: 17.4%;
  }

  .landing-rocket {
    left: 2.9%;
    top: 11.7%;
    width: 13.4%;
    height: 25.9%;
  }

  .landing-cannon {
    left: 0.8%;
    top: 48.8%;
    width: 48.6%;
    height: 27.8%;
    transform-origin: 18% 76%;
  }

  .landing-cannon::before {
    right: -2%;
    top: 0;
    width: 20%;
  }

  .landing-projectile {
    width: clamp(11px, 2.9vw, 21px);
  }

  .landing-fuse-spark {
    width: clamp(12px, 4vw, 23px);
  }

  .landing-sound-toggle {
    top: 1.2%;
    left: 2%;
    width: 42px;
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-hotspot,
  .landing-rocket,
  .landing-cannon,
  .landing-sound-toggle {
    transition: none;
  }

  .landing-cannonball::before,
  .landing-cannonball::after {
    animation: none;
  }

  .landing-artboard.is-rocket-active .landing-artwork,
  .landing-cannon.is-firing,
  .landing-artboard.is-cannon-impact,
  .landing-fuse-spark.is-active,
  .landing-fuse-overlay.is-active path,
  .landing-cannonball.is-fuse-burning::before,
  .landing-cannonball.is-finale-impact::before {
    animation: none;
  }
}


/* Inviting landing buttons ---------------------------------------
   These overlays brighten the baked-in buttons without modifying the
   landing artwork. Continue pulses more frequently and prominently;
   Read More uses a gentler, slower blue-and-gold invitation. */
.landing-continue,
.landing-about {
  overflow: visible;
  isolation: isolate;
}

.landing-continue::before,
.landing-continue::after,
.landing-about::before,
.landing-about::after {
  position: absolute;
  content: "";
  pointer-events: none;
  border-radius: 999px;
}

.landing-continue::before {
  z-index: -1;
  inset: 1.5%;
  border: 2px solid rgba(255, 238, 164, 0.7);
  background:
    linear-gradient(
      180deg,
      rgba(255, 249, 209, 0.2) 0%,
      rgba(255, 195, 72, 0.11) 45%,
      rgba(255, 108, 37, 0.05) 100%
    );
  box-shadow:
    inset 0 0 15px rgba(255, 236, 164, 0.22),
    0 0 13px rgba(255, 213, 91, 0.45),
    0 0 26px rgba(255, 108, 33, 0.22);
  animation: landingContinueInvite 1.65s ease-in-out infinite;
}

.landing-continue::after {
  z-index: -2;
  inset: -4%;
  border: 2px solid rgba(255, 221, 111, 0.54);
  box-shadow:
    0 0 16px rgba(255, 235, 151, 0.46),
    0 0 34px rgba(255, 135, 37, 0.32);
  opacity: 0;
  animation: landingContinueHalo 1.65s ease-out infinite;
}

.landing-about::before {
  z-index: -1;
  inset: 1.5%;
  border: 1.5px solid rgba(255, 218, 119, 0.56);
  background:
    linear-gradient(
      180deg,
      rgba(255, 238, 174, 0.11) 0%,
      rgba(43, 117, 188, 0.12) 48%,
      rgba(10, 44, 85, 0.08) 100%
    );
  box-shadow:
    inset 0 0 12px rgba(255, 221, 134, 0.13),
    0 0 11px rgba(255, 202, 74, 0.3),
    0 0 22px rgba(45, 131, 214, 0.24);
  animation: landingAboutInvite 2.8s ease-in-out infinite;
}

.landing-about::after {
  z-index: -2;
  inset: -3.5%;
  border: 1.5px solid rgba(255, 218, 118, 0.38);
  box-shadow:
    0 0 13px rgba(255, 211, 101, 0.3),
    0 0 27px rgba(42, 125, 210, 0.24);
  opacity: 0;
  animation: landingAboutHalo 2.8s ease-out infinite 0.45s;
}

.landing-continue:hover::before,
.landing-continue:focus-visible::before {
  border-color: rgba(255, 250, 211, 0.95);
  background:
    linear-gradient(
      180deg,
      rgba(255, 253, 225, 0.27),
      rgba(255, 186, 63, 0.14) 52%,
      rgba(255, 99, 30, 0.07)
    );
  box-shadow:
    inset 0 0 17px rgba(255, 248, 209, 0.3),
    0 0 18px rgba(255, 233, 149, 0.72),
    0 0 38px rgba(255, 111, 31, 0.38);
}

.landing-about:hover::before,
.landing-about:focus-visible::before {
  border-color: rgba(255, 235, 166, 0.86);
  background:
    linear-gradient(
      180deg,
      rgba(255, 244, 195, 0.18),
      rgba(49, 139, 222, 0.17) 55%,
      rgba(13, 55, 105, 0.1)
    );
  box-shadow:
    inset 0 0 15px rgba(255, 235, 175, 0.2),
    0 0 16px rgba(255, 215, 111, 0.5),
    0 0 31px rgba(47, 143, 231, 0.36);
}

.landing-continue:active::before,
.landing-about:active::before {
  transform: scale(0.975);
}

@keyframes landingContinueInvite {
  0%,
  100% {
    opacity: 0.68;
    transform: scale(0.985);
    filter: brightness(1);
  }

  48% {
    opacity: 1;
    transform: scale(1.025);
    filter: brightness(1.32);
  }
}

@keyframes landingContinueHalo {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

  24% {
    opacity: 0.74;
  }

  78% {
    opacity: 0.08;
  }

  100% {
    opacity: 0;
    transform: scale(1.09);
  }
}

@keyframes landingAboutInvite {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.99);
    filter: brightness(1);
  }

  52% {
    opacity: 0.94;
    transform: scale(1.016);
    filter: brightness(1.19);
  }
}

@keyframes landingAboutHalo {
  0% {
    opacity: 0;
    transform: scale(0.965);
  }

  28% {
    opacity: 0.52;
  }

  82% {
    opacity: 0.06;
  }

  100% {
    opacity: 0;
    transform: scale(1.065);
  }
}

@media (max-width: 760px) {
  .landing-continue::before {
    border-width: 1.5px;
    box-shadow:
      inset 0 0 10px rgba(255, 236, 164, 0.2),
      0 0 10px rgba(255, 213, 91, 0.42),
      0 0 20px rgba(255, 108, 33, 0.2);
  }

  .landing-about::before {
    box-shadow:
      inset 0 0 9px rgba(255, 221, 134, 0.12),
      0 0 8px rgba(255, 202, 74, 0.27),
      0 0 17px rgba(45, 131, 214, 0.22);
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-continue::before,
  .landing-continue::after,
  .landing-about::before,
  .landing-about::after {
    animation: none !important;
    transform: none !important;
  }

  .landing-continue::before {
    opacity: 0.92;
  }

  .landing-about::before {
    opacity: 0.78;
  }

  .landing-continue::after,
  .landing-about::after {
    opacity: 0.2;
  }
}

