:root {
  --baby-powder: #FFFCF7;
  --night: #090C08;
  --celtic-blue: #1E70D6;
  --slate-blue: #6A5ACD;
  --parchment: #EFECE7;

  --root-bg: var(--baby-powder);
  --root-fg: var(--night);
  --root-muted: rgba(9, 12, 8, 0.58);
  --root-hero-surface: rgba(255, 255, 255, 0.78);
  --root-hero-surface-strong: rgba(255, 255, 255, 0.92);
  --root-hero-secondary-fg: var(--root-fg);
  --root-hero-secondary-active-fg: var(--root-fg);
  --root-hero-border: rgba(9, 12, 8, 0.10);
  --root-hero-fade: rgba(255, 252, 247, 0.88);
  --root-hero-fade-soft: rgba(255, 252, 247, 0.48);
  --root-hero-readability: rgba(255, 252, 247, 0.74);
  --root-hero-divider: rgba(9, 12, 8, 0.12);
  --root-hero-poster-border: rgba(255, 252, 247, 0.46);
  --root-feature-surface: rgba(239, 236, 231, 0.72);
  --root-feature-surface-strong: rgba(255, 255, 255, 0.76);
  --root-feature-border: rgba(9, 12, 8, 0.10);
  --root-feature-shadow: 0 24px 70px rgba(9, 12, 8, 0.10);
  --root-feature-media-glow: rgba(30, 112, 214, 0.18);
  --root-account-bg: var(--baby-powder);
  --root-account-fg: var(--night);
  --root-account-muted: rgba(9, 12, 8, 0.62);
  --root-account-border: rgba(9, 12, 8, 0.10);
  --root-account-orbit: rgba(30, 112, 214, 0.38);
  --root-account-orbit-glow: rgba(30, 112, 214, 0.14);
  --root-account-hub-border: rgba(9, 12, 8, 0.10);
  --root-account-hub-icon-bg: rgba(255, 252, 247, 0.88);
  --root-account-platform-label: rgba(9, 12, 8, 0.74);
  --legal-heading-fg: var(--celtic-blue);
  --legal-body-fg: rgba(9, 12, 8, 0.68);
  --legal-list-marker: rgba(30, 112, 214, 0.72);
  --root-background: var(--root-bg);
  --root-motion-fade-duration: 0.22s;
  --root-motion-fade-easing: ease-in-out;
  --root-motion-fade-transition: opacity var(--root-motion-fade-duration) var(--root-motion-fade-easing);
}

@media (prefers-color-scheme: dark) {
  :root {
    --root-bg: var(--night);
    --root-fg: var(--baby-powder);
    --root-muted: rgba(255, 252, 247, 0.60);
    --root-hero-surface: rgba(255, 252, 247, 0.08);
    --root-hero-surface-strong: rgba(255, 252, 247, 0.16);
    --root-hero-secondary-fg: var(--root-fg);
    --root-hero-secondary-active-fg: var(--root-fg);
    --root-hero-border: rgba(255, 252, 247, 0.12);
    --root-hero-fade: rgba(9, 12, 8, 0.96);
    --root-hero-fade-soft: rgba(9, 12, 8, 0.70);
    --root-hero-readability: rgba(9, 12, 8, 0.78);
    --root-hero-divider: rgba(255, 252, 247, 0.14);
    --root-hero-poster-border: rgba(255, 252, 247, 0.16);
    --root-feature-surface: rgba(255, 252, 247, 0.07);
    --root-feature-surface-strong: rgba(255, 252, 247, 0.10);
    --root-feature-border: rgba(255, 252, 247, 0.12);
    --root-feature-shadow: 0 26px 78px rgba(0, 0, 0, 0.34);
    --root-feature-media-glow: rgba(40, 123, 224, 0.24);
    --root-account-bg: var(--night);
    --root-account-fg: var(--baby-powder);
    --root-account-muted: rgba(255, 252, 247, 0.72);
    --root-account-border: rgba(255, 252, 247, 0.12);
    --root-account-orbit: rgba(30, 112, 214, 0.52);
    --root-account-orbit-glow: rgba(30, 112, 214, 0.22);
    --root-account-hub-border: rgba(255, 252, 247, 0.18);
    --root-account-hub-icon-bg: rgba(255, 252, 247, 0.84);
    --root-account-platform-label: rgba(255, 252, 247, 0.86);
    --legal-heading-fg: #64B0FF;
    --legal-body-fg: rgba(255, 252, 247, 0.70);
    --legal-list-marker: rgba(100, 176, 255, 0.78);
    --root-background: var(--root-bg);
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--night);
  color: var(--root-fg);
  color-scheme: light dark;
  font-family: var(--font-sans);
}

body {
  min-width: 320px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.root-site-shell {
  min-height: 100vh;
  background: var(--root-background);
  position: relative;
}

.root-site-main {
  min-height: 100vh;
  padding-top: var(--root-header-total-height);
}

.root-site-hero {
  --root-fg: var(--baby-powder);
  --root-muted: rgba(255, 252, 247, 0.60);
  --root-hero-surface: rgba(255, 252, 247, 0.08);
  --root-hero-surface-strong: rgba(255, 252, 247, 0.16);
  --root-hero-secondary-fg: var(--root-fg);
  --root-hero-secondary-active-fg: var(--root-fg);
  --root-hero-border: rgba(255, 252, 247, 0.12);
  --root-hero-fade: rgba(9, 12, 8, 0.96);
  --root-hero-fade-soft: rgba(9, 12, 8, 0.70);
  --root-hero-readability: rgba(9, 12, 8, 0.78);
  --root-hero-divider: rgba(255, 252, 247, 0.14);
  --root-hero-poster-border: rgba(255, 252, 247, 0.16);
  --root-site-hero-block-height: clamp(620px, calc(100vh - var(--root-header-total-height)), 820px);

  display: grid;
  position: relative;
  align-content: end;
  justify-items: center;
  width: 100%;
  min-height: var(--root-site-hero-block-height);
  margin: 0 auto;
  padding: 104px max(20px, env(safe-area-inset-right)) 104px max(20px, env(safe-area-inset-left));
  overflow: hidden;
  border-bottom: 1px solid var(--root-hero-divider);
  background: var(--night);
  isolation: isolate;
}

.root-site-hero::before,
.root-site-hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.root-site-hero::before {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, var(--root-hero-fade) 0%, var(--root-hero-fade-soft) 9%, rgba(255, 252, 247, 0) 24%, rgba(255, 252, 247, 0) 76%, var(--root-hero-fade-soft) 91%, var(--root-hero-fade) 100%),
    linear-gradient(180deg, var(--root-hero-fade) 0%, rgba(255, 252, 247, 0) 18%, rgba(255, 252, 247, 0) 52%, var(--root-hero-fade-soft) 82%, var(--root-hero-fade) 100%),
    radial-gradient(ellipse at 50% 64%, var(--root-hero-readability) 0%, var(--root-hero-readability) 31%, rgba(255, 252, 247, 0) 68%);
}

.root-site-hero::after {
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 3;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 252, 247, 0), var(--root-hero-divider), rgba(255, 252, 247, 0));
}

.root-site-hero-collage {
  --root-site-poster-width: clamp(132px, 8.6vw, 190px);
  --root-site-poster-height: calc(var(--root-site-poster-width) * 1.5);
  --root-site-poster-column-gap: clamp(6px, 0.5vw, 10px);
  --root-site-poster-row-gap: clamp(6px, 0.5vw, 10px);
  --root-site-posters-per-column: 8;
  --root-site-column-cycle: calc((var(--root-site-poster-height) + var(--root-site-poster-row-gap)) * var(--root-site-posters-per-column));
  --root-site-collage-overscan: clamp(360px, 34vh, 560px);

  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: var(--root-site-poster-column-gap);
  width: max-content;
  min-width: 0;
  height: calc(100% + var(--root-site-collage-overscan));
  pointer-events: none;
  opacity: 0.58;
  transform: translate(-50%, -50%) rotate(12deg);
  transform-origin: center;
}

.root-site-hero-poster-column {
  --root-site-column-start: 0%;
  --root-site-column-duration: 460s;

  display: flex;
  flex: 0 0 var(--root-site-poster-width);
  flex-direction: column;
  height: 100%;
  animation: root-site-poster-column-up var(--root-site-column-duration) linear infinite;
  transform: translate3d(0, var(--root-site-column-start), 0);
  will-change: transform;
}

.root-site-hero-poster-column--down {
  animation-name: root-site-poster-column-down;
}

.root-site-hero-poster-set {
  display: flex;
  flex-direction: column;
  gap: var(--root-site-poster-row-gap);
  padding-bottom: var(--root-site-poster-row-gap);
}

.root-site-hero-poster {
  display: block;
  width: var(--root-site-poster-width);
  height: var(--root-site-poster-height);
  aspect-ratio: 2 / 3;
  flex: 0 0 auto;
  border: 1px solid var(--root-hero-poster-border);
  border-radius: 4px;
  background: var(--night);
  box-shadow: 0 18px 38px rgba(9, 12, 8, 0.32);
  object-fit: cover;
}

@keyframes root-site-poster-column-up {
  from {
    transform: translate3d(0, var(--root-site-column-start), 0);
  }

  to {
    transform: translate3d(0, calc(var(--root-site-column-start) - var(--root-site-column-cycle)), 0);
  }
}

@keyframes root-site-poster-column-down {
  from {
    transform: translate3d(0, calc(var(--root-site-column-start) - var(--root-site-column-cycle)), 0);
  }

  to {
    transform: translate3d(0, var(--root-site-column-start), 0);
  }
}

.root-site-hero-copy {
  display: grid;
  position: relative;
  z-index: 2;
  justify-items: center;
  gap: 26px;
  width: min(100%, 920px);
  min-width: 0;
  text-align: center;
}

.root-site-hero-title {
  display: grid;
  gap: 4px;
  width: 100%;
  max-width: 920px;
  min-width: 0;
  margin: 0;
  color: var(--root-fg);
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
}

.root-site-hero-title > span {
  display: block;
}

.root-site-hero-title-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0 0.24em;
  max-width: 100%;
  min-width: 0;
}

.root-site-hero-accent {
  max-width: 100%;
  min-width: 0;
  white-space: nowrap;
}

.root-site-hero-accent {
  --root-site-accent-gradient: linear-gradient(
    110deg,
    var(--celtic-blue) 0%,
    #4DB6F7 18%,
    #BDEEFF 34%,
    #D6C7FF 50%,
    #9DBBFF 66%,
    #5B9DE8 82%,
    var(--celtic-blue) 100%
  );

  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0 0.24em;
  width: fit-content;
  background: var(--root-site-accent-gradient);
  background-size: 260% 100%;
  background-position: 0% 50%;
  color: var(--celtic-blue);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: root-site-hero-accent-shimmer 12s ease-in-out infinite;
  will-change: background-position;
}

.root-site-hero-word {
  display: inline-block;
  opacity: 1;
}

.root-site-hero-accent .root-site-hero-word {
  background: var(--root-site-accent-gradient);
  background-size: 260% 100%;
  background-position: 0% 50%;
  color: var(--celtic-blue);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.12;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
  animation: root-site-hero-accent-shimmer 12s ease-in-out infinite;
  will-change: background-position;
}

@keyframes root-site-hero-accent-shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 64% 50%;
  }
}

.root-site-hero-subtitle {
  max-width: 800px;
  margin: 0;
  color: var(--root-muted);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
}

.root-site-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 10px;
}

.root-site-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  outline: none;
  transition: background-color 0.25s ease-in-out, border-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out, color 0.25s ease-in-out, transform 0.25s ease-in-out;
}

.root-site-hero-cta:hover {
  transform: translateY(-1px);
}

.root-site-hero-cta:focus-visible {
  outline: 3px solid var(--root-focus);
  outline-offset: 3px;
}

.root-site-hero-cta--primary {
  border-color: rgba(255, 252, 247, 0.72);
  background: var(--baby-powder);
  color: var(--night);
  box-shadow: 0 16px 34px rgba(255, 252, 247, 0.16);
}

.root-site-hero-cta--primary:hover {
  background: #FFFFFF;
  box-shadow: 0 20px 42px rgba(255, 252, 247, 0.20);
}

.root-site-hero-cta--secondary {
  border-color: var(--celtic-blue);
  background: var(--celtic-blue);
  color: #FFFFFF;
  box-shadow: 0 16px 34px rgba(30, 112, 214, 0.24);
}

.root-site-hero-cta--secondary:hover {
  border-color: #195FB6;
  background: #195FB6;
  color: #FFFFFF;
  box-shadow: 0 20px 42px rgba(30, 112, 214, 0.30);
}

.root-site-hero-cta--secondary:focus {
  border-color: #195FB6;
  background: #195FB6;
  color: #FFFFFF;
  box-shadow: 0 20px 42px rgba(30, 112, 214, 0.30);
}

.root-site-hero-cta--secondary:focus-visible {
  border-color: #195FB6;
  background: #195FB6;
  color: #FFFFFF;
  box-shadow: 0 20px 42px rgba(30, 112, 214, 0.30);
}

.root-site-hero-cta-icon {
  width: 17px;
  height: 21px;
  fill: currentColor;
}

.root-site-features {
  scroll-margin-top: calc(var(--root-header-total-height) + 24px);
  padding: 108px max(20px, env(safe-area-inset-right)) 116px max(20px, env(safe-area-inset-left));
  background: var(--root-bg);
}

.root-site-features-inner {
  display: grid;
  gap: 46px;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.root-site-features-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.root-site-features-heading h2 {
  margin: 0;
  color: var(--root-fg);
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
}

.root-site-features-heading > p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--root-muted);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.45;
}

.root-site-feature-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.root-site-feature-card {
  --root-site-feature-device-width: 100%;
  --root-site-feature-device-right: auto;
  --root-site-feature-device-left: auto;
  --root-site-feature-device-top: 230px;
  --root-site-feature-device-rotate: 0deg;

  display: grid;
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--root-feature-border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, var(--root-feature-surface-strong), var(--root-feature-surface)),
    var(--root-bg);
  box-shadow: var(--root-feature-shadow);
  isolation: isolate;
}

.root-site-feature-card::before {
  position: absolute;
  inset: auto -20% -34% 20%;
  z-index: 0;
  height: 48%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--root-feature-media-glow), rgba(30, 112, 214, 0) 68%);
  content: "";
  pointer-events: none;
}

.root-site-feature-card--phone {
  --root-site-feature-device-width: min(88%, 400px);
  --root-site-feature-device-right: -10%;
  --root-site-feature-device-top: 260px;

  grid-column: span 5;
}

.root-site-feature-card--wide {
  --root-site-feature-device-width: min(940px, 124%);
  --root-site-feature-device-right: -30%;
  --root-site-feature-device-top: 222px;

  grid-column: span 7;
}

.root-site-feature-card--featured {
  min-height: 560px;
}

.root-site-feature-card-copy {
  display: grid;
  position: relative;
  z-index: 2;
  align-self: start;
  gap: 10px;
  padding: 26px 26px 0;
}

.root-site-feature-eyebrow {
  margin: 0;
  color: var(--celtic-blue);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.root-site-feature-card h3 {
  max-width: 420px;
  margin: 0;
  color: var(--root-fg);
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.04;
}

.root-site-feature-card p:last-child {
  max-width: 470px;
  margin: 0;
  color: var(--root-muted);
  font-size: 17px;
  line-height: 1.42;
}

.root-site-feature-media {
  position: absolute;
  top: var(--root-site-feature-device-top);
  right: var(--root-site-feature-device-right);
  left: var(--root-site-feature-device-left);
  z-index: 1;
  width: var(--root-site-feature-device-width);
  pointer-events: none;
  transform: rotate(var(--root-site-feature-device-rotate));
  transform-origin: center bottom;
}

.root-site-feature-media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  filter: drop-shadow(0 20px 36px rgba(9, 12, 8, 0.18));
}

.root-site-account-sync {
  scroll-margin-top: calc(var(--root-header-total-height) + 24px);
  overflow: hidden;
  padding: 116px max(20px, env(safe-area-inset-right)) 124px max(20px, env(safe-area-inset-left));
  border-top: 1px solid var(--root-account-border);
  background: var(--root-account-bg);
  color: var(--root-account-fg);
}

.root-site-account-sync-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: center;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.root-site-account-sync-copy {
  display: grid;
  gap: 20px;
  max-width: 560px;
}

.root-site-account-sync-copy h2 {
  margin: 0;
  color: var(--root-account-fg);
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
}

.root-site-account-sync-copy > p {
  max-width: 560px;
  margin: 0;
  color: var(--root-account-muted);
  font-size: 20px;
  line-height: 1.45;
}

.root-site-account-sync-visual {
  display: grid;
  min-width: 0;
  min-height: 560px;
  place-items: center;
}

.root-site-account-sync-map {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1;
  min-width: 0;
}

.root-site-account-sync-rotor {
  position: absolute;
  inset: 8%;
  animation: root-site-account-sync-orbit 46s linear infinite;
  transform-origin: center;
  will-change: transform;
}

.root-site-account-sync-orbit {
  position: absolute;
  inset: 0;
  border: 1.4px solid var(--root-account-orbit);
  border-radius: 50%;
  box-shadow:
    0 0 24px var(--root-account-orbit-glow),
    inset 0 0 28px rgba(106, 90, 205, 0.10);
  pointer-events: none;
}

@keyframes root-site-account-sync-orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes root-site-account-sync-counter-orbit {
  to {
    transform: rotate(-360deg);
  }
}

.root-site-account-sync-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(118px, 12.4vw, 142px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.root-site-account-sync-hub-icon {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  contain: paint;
  overflow: hidden;
  border: 1px solid var(--root-account-hub-border);
  border-radius: 50%;
  background:
    linear-gradient(145deg, #62C7FF 0%, var(--celtic-blue) 56%, var(--slate-blue) 100%);
  box-shadow:
    0 26px 70px rgba(30, 112, 214, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  clip-path: circle(50% at 50% 50%);
}

.root-site-account-sync-hub-icon img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  transform: translate(-1%, 3%) scale(1.06);
  transform-origin: center;
}

.root-site-account-sync-hub-title {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  color: var(--root-account-platform-label);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 12px 32px rgba(9, 12, 8, 0.42);
  transform: translateX(-50%);
  white-space: nowrap;
}

.root-site-account-sync-platforms {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.root-site-account-sync-platform {
  --root-site-sync-x: 50%;
  --root-site-sync-y: 50%;
  --root-site-sync-color: var(--celtic-blue);
  --root-site-sync-glow: rgba(30, 112, 214, 0.28);

  position: absolute;
  top: var(--root-site-sync-y);
  left: var(--root-site-sync-x);
  width: clamp(78px, 7.6vw, 94px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.root-site-account-sync-platform--nintendo {
  --root-site-sync-x: 14.65%;
  --root-site-sync-y: 14.65%;
  --root-site-sync-color: #E60012;
  --root-site-sync-glow: rgba(230, 0, 18, 0.42);
}

.root-site-account-sync-platform--playstation {
  --root-site-sync-x: 85.35%;
  --root-site-sync-y: 14.65%;
  --root-site-sync-color: #0070CC;
  --root-site-sync-glow: rgba(0, 112, 204, 0.46);
}

.root-site-account-sync-platform--steam {
  --root-site-sync-x: 14.65%;
  --root-site-sync-y: 85.35%;
  --root-site-sync-color: #171A21;
  --root-site-sync-glow: rgba(102, 192, 244, 0.30);
}

.root-site-account-sync-platform--xbox {
  --root-site-sync-x: 85.35%;
  --root-site-sync-y: 85.35%;
  --root-site-sync-color: #107C10;
  --root-site-sync-glow: rgba(16, 124, 16, 0.42);
}

.root-site-account-sync-platform-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  animation: root-site-account-sync-counter-orbit 46s linear infinite;
  transform-origin: center;
  will-change: transform;
}

.root-site-account-sync-sphere {
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 252, 247, 0.20);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.30), rgba(255, 255, 255, 0) 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(9, 12, 8, 0.18)),
    var(--root-site-sync-color);
  box-shadow:
    0 22px 54px var(--root-site-sync-glow),
    inset -12px -16px 32px rgba(9, 12, 8, 0.18),
    inset 8px 10px 24px rgba(255, 255, 255, 0.14);
}

.root-site-account-sync-sphere img {
  display: block;
  width: 52%;
  height: 52%;
  object-fit: contain;
}

.root-site-account-sync-platform--nintendo .root-site-account-sync-sphere img {
  width: 64%;
}

.root-site-account-sync-platform-name {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  color: var(--root-account-platform-label);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 12px 32px rgba(9, 12, 8, 0.42);
  transform: translateX(-50%);
  white-space: nowrap;
}

.root-site-final-cta {
  scroll-margin-top: calc(var(--root-header-total-height) + 24px);
  padding: 112px max(20px, env(safe-area-inset-right)) 116px max(20px, env(safe-area-inset-left));
  border-top: 1px solid var(--root-feature-border);
  background: var(--root-bg);
  color: var(--root-fg);
}

.root-site-final-cta-inner {
  display: grid;
  justify-items: center;
  gap: 24px;
  width: min(100%, 1040px);
  margin: 0 auto;
  text-align: center;
}

.root-site-final-cta h2 {
  box-sizing: border-box;
  width: min(100%, 1000px);
  max-width: 1000px;
  margin: 0;
  padding-inline: 0.04em;
  color: var(--root-fg);
  font-family: var(--font-display);
  font-size: clamp(46px, 6vw, 84px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
  text-wrap: balance;
}

.root-site-final-cta p {
  max-width: 700px;
  margin: 0;
  color: var(--root-muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.42;
}

.root-site-final-cta-button {
  min-width: min(100%, 320px);
  margin-top: 8px;
  border-color: var(--root-store-border);
  background: var(--root-store-bg);
  color: var(--root-store-fg);
  box-shadow: 0 18px 44px rgba(9, 12, 8, 0.10);
}

.root-site-final-cta-button:hover,
.root-site-final-cta-button:focus-visible {
  border-color: var(--root-store-border);
  background: var(--root-store-bg);
  color: var(--root-store-fg);
  box-shadow: 0 22px 54px rgba(30, 112, 214, 0.16);
}

.root-site-contribute {
  scroll-margin-top: calc(var(--root-header-total-height) + 24px);
  padding: 106px max(20px, env(safe-area-inset-right)) 108px max(20px, env(safe-area-inset-left));
  border-top: 1px solid var(--root-feature-border);
  background: transparent;
  color: var(--root-fg);
}

.root-site-contribute-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.root-site-contribute-copy {
  display: grid;
  justify-items: center;
  gap: 16px;
  min-width: 0;
}

.root-site-contribute h2 {
  max-width: 860px;
  margin: 0;
  color: var(--root-fg);
  font-family: var(--font-display);
  font-size: clamp(42px, 6.4vw, 76px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
}

.root-site-contribute p {
  max-width: 760px;
  margin: 0;
  color: var(--root-muted);
  font-size: 18px;
  line-height: 1.5;
}

.root-site-contribute-note {
  font-size: 14px !important;
  font-weight: 600;
}

.root-site-contribute-cta {
  display: grid;
  justify-items: center;
  gap: 16px;
  width: 100%;
}

.root-site-contribute-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  min-width: 0;
  width: min(100%, 620px);
}

.root-site-contribute-button,
.contribute-button,
.contribute-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid var(--root-store-border);
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  outline: none;
  transition: border-color 0.25s ease-in-out, background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out, color 0.25s ease-in-out, transform 0.25s ease-in-out;
}

.root-site-contribute-button--primary,
.contribute-button--primary,
.contribute-card-action {
  background: var(--root-store-bg);
  color: var(--root-store-fg);
  box-shadow: 0 14px 34px rgba(9, 12, 8, 0.10);
}

.root-site-contribute-button--secondary,
.contribute-button--secondary {
  border-color: rgba(30, 112, 214, 0.34);
  background: var(--root-nav-hover);
  color: var(--root-fg);
}

.root-site-contribute-button:hover,
.root-site-contribute-button:focus-visible,
.contribute-button:hover,
.contribute-button:focus-visible,
.contribute-card-action:hover,
.contribute-card-action:focus-visible {
  border-color: var(--celtic-blue);
  box-shadow: 0 18px 44px rgba(30, 112, 214, 0.18);
}

.root-site-contribute-button:focus-visible,
.contribute-button:focus-visible,
.contribute-card-action:focus-visible {
  box-shadow: 0 0 0 4px var(--root-focus), 0 18px 44px rgba(30, 112, 214, 0.18);
}

.root-site-contribute-button-icon,
.contribute-button-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.root-site-contribute .root-site-contribute-button {
  width: min(100%, 272px);
  min-height: 58px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 16px;
}

.root-site-contribute .root-site-contribute-button--primary {
  border-color: #f15f2c;
  background: #f15f2c;
  box-shadow: 0 18px 42px rgba(241, 95, 44, 0.24);
}

.root-site-contribute .root-site-contribute-button--secondary {
  border-color: #66b1ff;
  background: #3396ff;
  box-shadow: 0 18px 42px rgba(51, 150, 255, 0.24);
}

.root-site-contribute .root-site-contribute-button:hover {
  border-color: rgba(255, 255, 255, 0.42);
  color: #ffffff;
  transform: scale(1.035);
}

.root-site-contribute .root-site-contribute-button:active {
  transform: scale(0.985);
}

.root-site-contribute-boosty-mark {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex: 0 0 auto;
}

.root-site-contribute-request-payment-mark {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex: 0 0 auto;
}

.contribute-brand-mark {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex: 0 0 auto;
}

.legal-site-shell {
  background: var(--root-bg);
  color: var(--root-fg);
}

.legal-page {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 48px max(20px, env(safe-area-inset-right)) 72px max(20px, env(safe-area-inset-left));
}

.legal-hero {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.legal-eyebrow,
.legal-meta {
  margin: 0;
  color: var(--root-muted);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.legal-hero h1 {
  margin: 0;
  color: var(--root-fg);
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.legal-summary {
  max-width: 720px;
  margin: 0;
  color: var(--root-muted);
  font-size: 17px;
  line-height: 1.65;
}

.legal-document,
.legal-license-list {
  display: grid;
  gap: 16px;
}

.legal-card {
  border: 1px solid var(--root-feature-border);
  border-radius: 8px;
  background: var(--root-feature-surface);
  padding: clamp(20px, 4vw, 30px);
}

.legal-card h2 {
  margin: 0 0 12px;
  color: var(--legal-heading-fg);
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0;
}

.legal-card p {
  margin: 0;
  color: var(--legal-body-fg);
  font-size: 16px;
  line-height: 1.7;
}

.legal-card p + p,
.legal-card p + ul,
.legal-card ul + p {
  margin-top: 12px;
}

.legal-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
  color: var(--legal-body-fg);
}

.legal-card li {
  font-size: 16px;
  line-height: 1.65;
}

.legal-card li::marker {
  color: var(--legal-list-marker);
}

.legal-card--intro {
  margin-bottom: 16px;
}

.legal-license-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.legal-source-link,
.legal-contact-line a {
  color: var(--celtic-blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  outline: none;
}

.legal-source-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(30, 112, 214, 0.28);
  border-radius: 8px;
  text-decoration: none;
}

.legal-source-link:hover,
.legal-source-link:focus-visible,
.legal-contact-line a:hover,
.legal-contact-line a:focus-visible {
  color: var(--root-fg);
}

.legal-source-link:focus-visible,
.legal-contact-line a:focus-visible {
  box-shadow: 0 0 0 4px var(--root-focus);
}

.legal-contact-card {
  margin-top: 16px;
}

.legal-contact-line {
  margin-top: 8px;
}

.support-site-shell {
  background: var(--root-bg);
  color: var(--root-fg);
}

.support-page {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 54px max(20px, env(safe-area-inset-right)) 78px max(20px, env(safe-area-inset-left));
}

.support-hero {
  display: grid;
  gap: 0;
  margin-bottom: 34px;
}

.support-hero h1 {
  margin: 0;
  color: var(--root-fg);
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

.support-title-accent {
  line-height: 1.08;
  padding-bottom: 0.06em;
  margin-bottom: -0.06em;
}

.support-section-list {
  display: grid;
  gap: 38px;
}

.support-section {
  display: grid;
  gap: 14px;
}

.support-section-heading h2 {
  margin: 0;
  color: var(--root-fg);
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

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

.support-link-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 86px;
  padding: 18px;
  border: 1px solid var(--root-feature-border);
  border-radius: 8px;
  background: var(--root-feature-surface);
  color: var(--root-fg);
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: border-color 0.25s ease-in-out, background-color 0.25s ease-in-out, color 0.25s ease-in-out;
}

.support-link-card:hover,
.support-link-card:focus-visible {
  border-color: var(--celtic-blue);
  background: var(--root-nav-hover);
}

.support-link-card:focus-visible {
  box-shadow: 0 0 0 4px var(--root-focus);
}

.support-card-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.support-card-title {
  color: var(--root-fg);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.18;
}

.support-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(30, 112, 214, 0.24);
  border-radius: 8px;
  color: var(--celtic-blue);
  flex: 0 0 auto;
}

.support-card-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-section--contribute {
  margin-top: 2px;
}

.support-contribute-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 86px;
  padding: 18px;
  border: 1px solid var(--root-feature-border);
  border-radius: 8px;
  background-color: var(--root-feature-surface);
  color: var(--root-fg);
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: border-color 0.25s ease-in-out, background-color 0.25s ease-in-out, color 0.25s ease-in-out;
}

.support-contribute-card:hover,
.support-contribute-card:focus-visible {
  border-color: var(--celtic-blue);
  background-color: var(--root-nav-hover);
}

.support-contribute-card:focus-visible {
  box-shadow: 0 0 0 4px var(--root-focus);
}

.support-contribute-description {
  max-width: none;
  color: var(--root-muted);
  font-size: 15px;
  line-height: 1.5;
}

.contribute-site-shell {
  background: var(--root-bg);
  color: var(--root-fg);
}

.contribute-page {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 54px max(20px, env(safe-area-inset-right)) 82px max(20px, env(safe-area-inset-left));
}

.contribute-hero {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto 42px;
  text-align: center;
}

.contribute-eyebrow,
.contribute-card-kicker,
.contribute-card-note {
  margin: 0;
  color: var(--root-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.contribute-hero h1 {
  margin: 0;
  color: var(--root-fg);
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 78px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

.contribute-title-accent {
  line-height: 1.08;
  padding-bottom: 0.06em;
  margin-bottom: -0.06em;
}

.contribute-hero-copy {
  max-width: 820px;
  margin: 0;
  color: var(--root-muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.contribute-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
  width: min(100%, 620px);
}

.contribute-request-payment-status {
  width: 100%;
  margin: 0;
  color: var(--root-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.contribute-thank-you-page {
  display: grid;
  place-items: center;
  min-height: clamp(520px, calc(100vh - var(--root-header-total-height) - 180px), 760px);
  min-height: clamp(520px, calc(100svh - var(--root-header-total-height) - 180px), 760px);
  padding-top: clamp(72px, 9vh, 118px);
  padding-bottom: clamp(88px, 10vh, 132px);
}

.contribute-thank-you-hero {
  gap: 18px;
  max-width: 960px;
  margin-bottom: 0;
}

.contribute-thank-you-hero h1 {
  max-width: 1020px;
  font-size: clamp(40px, 6vw, 68px);
}

.contribute-thank-you-hero .root-site-hero-accent {
  display: inline;
  width: auto;
  white-space: normal;
  overflow-wrap: anywhere;
}

.contribute-thank-you-copy {
  max-width: 720px;
}

.contribute-section {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.contribute-section-heading h2,
.contribute-principles h2 {
  margin: 0;
  color: var(--root-fg);
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

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

.contribute-way-card,
.contribute-impact-card,
.contribute-principles {
  border: 1px solid var(--root-feature-border);
  border-radius: 8px;
  background: var(--root-feature-surface);
  color: var(--root-fg);
}

.contribute-way-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 320px;
  padding: clamp(22px, 4vw, 30px);
}

.contribute-way-card--featured {
  background: linear-gradient(180deg, var(--root-feature-surface-strong), var(--root-feature-surface));
}

.contribute-way-card-copy {
  display: grid;
  gap: 10px;
}

.contribute-way-card h3,
.contribute-impact-card h3,
.contribute-principle-item h3 {
  margin: 0;
  color: var(--root-fg);
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.contribute-way-card p,
.contribute-impact-card p,
.contribute-principles p {
  margin: 0;
  color: var(--root-muted);
  font-size: 16px;
  line-height: 1.55;
}

.contribute-card-action {
  width: fit-content;
  min-width: 190px;
}

.contribute-hero-actions .contribute-button,
.contribute-card-action {
  border-radius: 999px;
  font-size: 16px;
}

.contribute-hero-actions .contribute-button {
  min-width: 260px;
  min-height: 58px;
}

.contribute-button--boosty,
.contribute-card-action--boosty {
  border-color: #f15f2c;
  background: #f15f2c;
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(241, 95, 44, 0.24);
}

.contribute-button--request-payment {
  border-color: #66b1ff;
  background: #3396ff;
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(51, 150, 255, 0.24);
}

.contribute-hero-actions .contribute-button:not(.contribute-button--disabled):hover {
  border-color: rgba(255, 255, 255, 0.42);
  color: #ffffff;
}

.contribute-button:hover,
.contribute-card-action:not(.contribute-card-action--disabled):hover {
  transform: scale(1.035);
}

.contribute-button:active,
.contribute-card-action:not(.contribute-card-action--disabled):active {
  transform: scale(0.985);
}

.contribute-button.contribute-button--disabled,
.contribute-button.contribute-button--disabled:hover,
.contribute-button.contribute-button--disabled:focus-visible,
.contribute-button.contribute-button--disabled:active {
  border-color: var(--root-feature-border);
  background: var(--root-feature-surface);
  color: var(--root-muted);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.contribute-card-action--disabled,
.contribute-card-action--disabled:hover,
.contribute-card-action--disabled:focus-visible {
  border-color: var(--root-feature-border);
  background: var(--root-feature-surface);
  color: var(--root-muted);
  box-shadow: none;
  cursor: not-allowed;
}

.contribute-amount-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contribute-amount-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--root-feature-border);
  border-radius: 8px;
  background: var(--root-feature-surface-strong);
  color: var(--root-fg);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.contribute-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.contribute-impact-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
}

.contribute-impact-card h3,
.contribute-principle-item h3 {
  font-size: 20px;
}

.contribute-principles {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  margin-top: 42px;
  padding: clamp(22px, 4vw, 32px);
}

.contribute-principles-copy,
.contribute-principle-list,
.contribute-principle-item {
  display: grid;
  gap: 12px;
}

.contribute-principle-list {
  gap: 14px;
}

.contribute-principle-item {
  padding: 16px;
  border: 1px solid var(--root-feature-border);
  border-radius: 8px;
  background: var(--root-feature-surface-strong);
}

@media (max-width: 900px) {
  .root-site-hero {
    min-height: 640px;
    padding-top: 88px;
    padding-bottom: 76px;
  }

  .root-site-hero-collage {
    --root-site-poster-width: clamp(112px, 16vw, 150px);
    --root-site-poster-column-gap: 8px;
    --root-site-poster-row-gap: 8px;
  }

  .root-site-hero-copy {
    gap: 22px;
  }

  .root-site-hero-title {
    max-width: 700px;
    font-size: 56px;
    line-height: 1.05;
  }

  .root-site-hero-title > span:first-child {
    white-space: normal;
  }

  .root-site-hero-subtitle {
    max-width: 680px;
    font-size: 19px;
    line-height: 1.5;
  }

  .root-site-features {
    padding-top: 88px;
    padding-bottom: 92px;
  }

  .root-site-feature-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .root-site-feature-card--phone,
  .root-site-feature-card--wide {
    grid-column: span 3;
  }

  .root-site-feature-card--featured {
    grid-column: 1 / -1;
  }

  .root-site-feature-card {
    min-height: 560px;
  }

  .root-site-feature-card--wide {
    --root-site-feature-device-width: min(820px, 122%);
    --root-site-feature-device-right: -28%;
    --root-site-feature-device-top: 220px;
  }

  .root-site-feature-card--phone {
    --root-site-feature-device-width: min(98%, 380px);
    --root-site-feature-device-right: -16%;
    --root-site-feature-device-top: 214px;
  }

  .root-site-account-sync {
    padding-top: 92px;
    padding-bottom: 96px;
  }

  .root-site-account-sync-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .root-site-account-sync-copy {
    justify-items: center;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .root-site-account-sync-copy > p {
    max-width: 720px;
  }

  .root-site-account-sync-visual {
    min-height: 520px;
  }

  .root-site-account-sync-map {
    width: min(100%, 600px);
  }

  .root-site-final-cta {
    padding-top: 88px;
    padding-bottom: 92px;
  }

  .root-site-contribute {
    padding-top: 82px;
    padding-bottom: 86px;
  }

  .root-site-contribute-inner,
  .contribute-principles {
    grid-template-columns: 1fr;
  }

  .root-site-contribute-actions {
    width: 100%;
  }

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

}

@media (max-width: 760px) {
  .root-site-hero {
    --root-site-hero-block-height: clamp(540px, calc(100vh - var(--root-header-total-height) - 128px), 600px);
    --root-site-hero-block-height: clamp(540px, calc(100svh - var(--root-header-total-height) - 128px), 600px);

    align-content: center;
    min-height: var(--root-site-hero-block-height);
    padding-top: 228px;
    padding-bottom: 0;
  }

  .root-site-hero-collage {
    --root-site-poster-width: clamp(84px, 24vw, 112px);
    --root-site-poster-column-gap: 7px;
    --root-site-poster-row-gap: 7px;
    opacity: 0.50;
  }

  .root-site-hero-copy {
    gap: 18px;
  }

  .root-site-hero-title {
    max-width: 560px;
    font-size: clamp(36px, 8.8vw, 42px);
    line-height: 1.05;
  }

  .root-site-hero-subtitle {
    max-width: 560px;
    font-size: 16px;
    line-height: 1.48;
  }

  .root-site-hero-actions {
    width: 100%;
  }

  .root-site-hero-cta {
    flex: 1 1 100%;
    min-height: 54px;
  }

  .root-site-features {
    padding-top: 74px;
    padding-bottom: 78px;
  }

  .root-site-features-inner {
    gap: 34px;
  }

  .root-site-features-heading {
    justify-items: start;
    text-align: left;
  }

  .root-site-features-heading h2 {
    font-size: clamp(34px, 9vw, 46px);
    line-height: 1.02;
  }

  .root-site-features-heading > p:last-child {
    font-size: 18px;
  }

  .root-site-feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .root-site-feature-card,
  .root-site-feature-card--phone,
  .root-site-feature-card--wide,
  .root-site-feature-card--featured {
    grid-column: 1 / -1;
    min-height: 560px;
  }

  .root-site-feature-card-copy {
    padding: 22px 22px 0;
  }

  .root-site-feature-card h3 {
    font-size: clamp(26px, 7vw, 34px);
  }

  .root-site-feature-card p:last-child {
    font-size: 16px;
  }

  .root-site-feature-card--phone {
    --root-site-feature-device-width: min(92%, 360px);
    --root-site-feature-device-right: -14%;
    --root-site-feature-device-top: 226px;
  }

  .root-site-feature-card--wide {
    --root-site-feature-device-width: min(760px, 128%);
    --root-site-feature-device-right: -38%;
    --root-site-feature-device-top: 240px;
  }

  .root-site-account-sync {
    padding-top: 76px;
    padding-bottom: 84px;
  }

  .root-site-account-sync-copy {
    justify-items: start;
    text-align: left;
  }

  .root-site-account-sync-copy h2 {
    font-size: clamp(34px, 9vw, 46px);
    line-height: 1.02;
  }

  .root-site-account-sync-copy > p {
    font-size: 18px;
  }

  .root-site-account-sync-visual {
    min-height: 440px;
  }

  .root-site-account-sync-map {
    width: min(100%, 500px);
  }

  .root-site-account-sync-rotor {
    inset: 9%;
  }

  .root-site-account-sync-hub {
    width: 118px;
  }

  .root-site-account-sync-hub-title {
    font-size: 20px;
  }

  .root-site-account-sync-platform {
    width: 74px;
  }

  .root-site-account-sync-platform--nintendo {
    --root-site-sync-x: 14.65%;
    --root-site-sync-y: 14.65%;
  }

  .root-site-account-sync-platform--playstation {
    --root-site-sync-x: 85.35%;
    --root-site-sync-y: 14.65%;
  }

  .root-site-account-sync-platform--steam {
    --root-site-sync-x: 14.65%;
    --root-site-sync-y: 85.35%;
  }

  .root-site-account-sync-platform--xbox {
    --root-site-sync-x: 85.35%;
    --root-site-sync-y: 85.35%;
  }

  .root-site-account-sync-platform-name {
    font-size: 15px;
  }

  .root-site-final-cta {
    padding-top: 76px;
    padding-bottom: 80px;
  }

  .root-site-final-cta-inner {
    gap: 18px;
    text-align: left;
    justify-items: start;
  }

  .root-site-final-cta h2 {
    font-size: clamp(34px, 9vw, 48px);
    line-height: 1.08;
  }

  .root-site-final-cta p {
    font-size: 18px;
  }

  .root-site-final-cta-button {
    width: 100%;
  }

  .root-site-contribute {
    padding-top: 72px;
    padding-bottom: 76px;
  }

  .root-site-contribute-inner {
    padding: 0;
  }

  .root-site-contribute h2 {
    font-size: clamp(30px, 8vw, 40px);
  }

  .root-site-contribute p,
  .contribute-hero-copy {
    font-size: 17px;
  }

  .root-site-contribute-button,
  .contribute-button,
  .contribute-card-action {
    width: 100%;
    min-height: 52px;
  }

  .root-site-contribute .root-site-contribute-button {
    width: 100%;
  }

  .legal-license-card {
    grid-template-columns: 1fr;
  }

  .legal-page {
    padding-top: 36px;
    padding-bottom: 54px;
  }

  .legal-hero h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .legal-summary,
  .legal-card p,
  .legal-card li {
    font-size: 15px;
  }

  .support-page {
    padding-top: 40px;
    padding-bottom: 58px;
  }

  .support-hero h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .support-card-grid {
    grid-template-columns: 1fr;
  }

  .support-link-card {
    min-height: 76px;
  }

  .support-contribute-card {
    min-height: 108px;
    padding: 18px;
  }

  .contribute-page {
    padding-top: 40px;
    padding-bottom: 58px;
  }

  .contribute-hero {
    margin-bottom: 34px;
  }

  .contribute-hero h1 {
    font-size: clamp(38px, 10vw, 52px);
  }

  .contribute-way-grid,
  .contribute-impact-grid {
    grid-template-columns: 1fr;
  }

  .contribute-way-card {
    min-height: auto;
  }
}

@media (min-width: 421px) and (max-width: 760px) {
  .root-site-hero {
    padding-bottom: 32px;
  }
}

@media (max-width: 420px) {
  .root-site-hero {
    --root-site-hero-block-height: clamp(520px, calc(100vh - var(--root-header-total-height) - 112px), 560px);
    --root-site-hero-block-height: clamp(520px, calc(100svh - var(--root-header-total-height) - 112px), 560px);

    padding-right: max(16px, env(safe-area-inset-right));
    padding-top: 154px;
    padding-left: max(16px, env(safe-area-inset-left));
    padding-bottom: 0;
  }

  .root-site-hero-copy {
    gap: 16px;
  }

  .root-site-hero-title {
    font-size: clamp(30px, 8.6vw, 34px);
    line-height: 1.04;
  }

  .root-site-hero-title-line {
    gap: 0 0.18em;
  }

  .root-site-hero-subtitle {
    font-size: 15px;
    line-height: 1.42;
  }

  .root-site-hero-actions {
    gap: 10px;
    padding-top: 2px;
  }

  .root-site-hero-cta {
    min-height: 50px;
  }

  .root-site-hero-accent {
    flex: 0 1 auto;
    flex-wrap: wrap;
    max-width: 100%;
    white-space: normal;
    width: auto;
  }

  .root-site-features {
    padding-top: 62px;
    padding-bottom: 66px;
  }

  .root-site-features-heading h2 {
    font-size: clamp(30px, 9.2vw, 38px);
  }

  .root-site-feature-card-copy {
    padding: 20px 18px 0;
  }

  .root-site-feature-card,
  .root-site-feature-card--phone,
  .root-site-feature-card--wide,
  .root-site-feature-card--featured {
    min-height: 520px;
  }

  .root-site-feature-card h3 {
    font-size: clamp(26px, 7.5vw, 34px);
  }

  .root-site-feature-card p:last-child {
    font-size: 16px;
  }

  .root-site-feature-card--phone {
    --root-site-feature-device-width: min(96%, 330px);
    --root-site-feature-device-right: -18%;
    --root-site-feature-device-top: 228px;
  }

  .root-site-feature-card--wide {
    --root-site-feature-device-width: 150%;
    --root-site-feature-device-right: -50%;
    --root-site-feature-device-top: 250px;
  }

  .root-site-account-sync {
    padding-right: max(16px, env(safe-area-inset-right));
    padding-top: 62px;
    padding-bottom: 72px;
    padding-left: max(16px, env(safe-area-inset-left));
  }

  .root-site-account-sync-inner {
    gap: 30px;
  }

  .root-site-account-sync-copy {
    gap: 14px;
  }

  .root-site-account-sync-copy h2 {
    font-size: clamp(30px, 9.2vw, 38px);
  }

  .root-site-account-sync-copy > p {
    font-size: 16px;
    line-height: 1.45;
  }

  .root-site-account-sync-visual {
    min-height: 360px;
  }

  .root-site-account-sync-map {
    width: min(100%, 340px);
  }

  .root-site-account-sync-rotor {
    inset: 10%;
  }

  .root-site-account-sync-hub {
    width: 92px;
  }

  .root-site-account-sync-hub-title {
    font-size: 17px;
  }

  .root-site-account-sync-platform {
    width: 58px;
  }

  .root-site-account-sync-platform--nintendo {
    --root-site-sync-x: 14.65%;
    --root-site-sync-y: 14.65%;
  }

  .root-site-account-sync-platform--playstation {
    --root-site-sync-x: 85.35%;
    --root-site-sync-y: 14.65%;
  }

  .root-site-account-sync-platform--steam {
    --root-site-sync-x: 14.65%;
    --root-site-sync-y: 85.35%;
  }

  .root-site-account-sync-platform--xbox {
    --root-site-sync-x: 85.35%;
    --root-site-sync-y: 85.35%;
  }

  .root-site-account-sync-platform-name {
    font-size: 12px;
  }

  .root-site-final-cta {
    padding-right: max(16px, env(safe-area-inset-right));
    padding-top: 62px;
    padding-bottom: 66px;
    padding-left: max(16px, env(safe-area-inset-left));
  }

  .root-site-final-cta-inner {
    gap: 16px;
  }

  .root-site-final-cta h2 {
    font-size: clamp(30px, 9.2vw, 38px);
  }

  .root-site-final-cta p {
    font-size: 16px;
    line-height: 1.45;
  }
}

@media (max-width: 360px) {
  .root-site-hero {
    --root-site-hero-block-height: clamp(500px, calc(100vh - var(--root-header-total-height) - 96px), 540px);
    --root-site-hero-block-height: clamp(500px, calc(100svh - var(--root-header-total-height) - 96px), 540px);

    align-content: center;
    min-height: var(--root-site-hero-block-height);
    padding-top: 154px;
    padding-bottom: 0;
  }

  .root-site-hero-copy {
    gap: 14px;
  }

  .root-site-hero-title {
    font-size: 30px;
    line-height: 1.06;
  }

  .root-site-hero-subtitle {
    font-size: 15px;
    line-height: 1.42;
  }

  .root-site-hero-actions {
    gap: 10px;
    padding-top: 0;
  }

  .root-site-hero-cta {
    min-height: 50px;
  }

  .root-site-hero-collage {
    --root-site-poster-width: clamp(78px, 25vw, 102px);
    --root-site-poster-column-gap: 6px;
    --root-site-poster-row-gap: 6px;

    opacity: 0.46;
  }

  .root-site-account-sync-visual {
    min-height: 330px;
  }

  .root-site-account-sync-hub {
    width: 86px;
  }

  .root-site-account-sync-platform {
    width: 52px;
  }
}

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

  .root-site-hero-poster-column {
    animation: none !important;
    will-change: auto;
  }

  .root-site-hero-accent,
  .root-site-hero-accent .root-site-hero-word {
    background-position: 50% 50%;
    animation: none !important;
    will-change: auto;
  }

  .root-site-account-sync-rotor,
  .root-site-account-sync-platform-inner {
    animation: none !important;
    will-change: auto;
  }
}

.contribute-request-payment-panel {
  display: grid;
  gap: 18px;
  width: min(100%, 620px);
  margin: 4px auto 0;
  padding: 22px;
  border: 1px solid var(--root-feature-border);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(51, 150, 255, 0.18), transparent 58%),
    var(--root-feature-surface);
  box-shadow: 0 24px 78px rgba(30, 112, 214, 0.12);
  text-align: left;
}

.contribute-request-payment-panel[hidden] {
  display: none;
}

.contribute-request-payment-copy {
  display: grid;
  gap: 8px;
  text-align: center;
}

.contribute-request-payment-copy h2 {
  margin: 0;
  color: var(--root-fg);
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.contribute-request-payment-copy p,
.contribute-request-payment-live-status,
.contribute-request-payment-safety {
  margin: 0;
  color: var(--root-muted);
  font-size: 15px;
  line-height: 1.45;
}

.contribute-request-payment-amounts {
  display: grid;
  gap: 12px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.contribute-request-payment-presets {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.contribute-request-payment-custom {
  display: grid;
  grid-column: 1 / -1;
  gap: 0;
  color: var(--root-muted);
  font-size: 13px;
  font-weight: 600;
}

.contribute-request-payment-custom input {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--root-feature-border);
  border-radius: 18px;
  background: var(--root-hero-surface);
  color: var(--root-fg);
  font: inherit;
  font-size: 17px;
  font-weight: 600;
  outline: none;
  transition: border-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out, background 0.25s ease-in-out;
}

.contribute-request-payment-custom input::placeholder {
  color: var(--root-muted);
  font-weight: 600;
}

.contribute-request-payment-custom input:focus-visible {
  border-color: rgba(51, 150, 255, 0.72);
  box-shadow: 0 0 0 4px var(--root-focus);
}

.contribute-amount-pill {
  min-height: 52px;
  border: 1px solid var(--root-feature-border);
  border-radius: 18px;
  background: var(--root-hero-surface);
  color: var(--root-fg);
  cursor: pointer;
  font: inherit;
  font-size: 17px;
  font-weight: 800;
  transition:
    border-color 0.25s ease-in-out,
    background 0.25s ease-in-out,
    box-shadow 0.25s ease-in-out,
    transform 0.25s ease-in-out;
}

.contribute-amount-pill:hover,
.contribute-amount-pill:focus-visible {
  border-color: rgba(51, 150, 255, 0.72);
  box-shadow: 0 18px 42px rgba(30, 112, 214, 0.16);
  transform: scale(1.015);
}

.contribute-amount-pill:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--root-focus), 0 18px 42px rgba(30, 112, 214, 0.16);
}

.contribute-amount-pill[aria-pressed="true"] {
  border-color: rgba(51, 150, 255, 0.82);
  background: #3396ff;
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(51, 150, 255, 0.22);
}

.contribute-request-payment-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.contribute-request-payment-summary div {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--root-feature-border);
  border-radius: 18px;
  background: var(--root-feature-surface-strong);
}

.contribute-request-payment-summary dt {
  color: var(--root-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contribute-request-payment-summary dd {
  overflow: hidden;
  margin: 0;
  color: var(--root-fg);
  font-size: 15px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contribute-request-payment-submit,
.contribute-request-payment-explorer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: min(100%, 390px);
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #3396ff;
  box-shadow: 0 20px 48px rgba(30, 112, 214, 0.18);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-align: center;
  transition:
    border-color 0.25s ease-in-out,
    background 0.25s ease-in-out,
    box-shadow 0.25s ease-in-out,
    transform 0.25s ease-in-out;
}

.contribute-request-payment-submit:hover,
.contribute-request-payment-submit:focus-visible,
.contribute-request-payment-explorer:hover,
.contribute-request-payment-explorer:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 24px 56px rgba(30, 112, 214, 0.24);
  color: #ffffff;
  transform: scale(1.015);
}

.contribute-request-payment-submit:focus-visible,
.contribute-request-payment-explorer:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--root-focus), 0 24px 56px rgba(30, 112, 214, 0.24);
}

.contribute-request-payment-submit:disabled {
  cursor: wait;
  opacity: 0.74;
  transform: none;
}

.contribute-request-payment-explorer[hidden] {
  display: none;
}

.contribute-request-payment-live-status,
.contribute-request-payment-safety {
  text-align: center;
}

.contribute-request-payment-visible-status {
  max-width: 430px;
  margin: -4px auto 0;
  color: #ffb4ab;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.contribute-request-payment-visible-status[hidden] {
  display: none;
}

@media (max-width: 700px) {
  .contribute-request-payment-panel {
    padding: 18px;
    border-radius: 24px;
  }

  .contribute-request-payment-presets,
  .contribute-request-payment-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contribute-request-payment-custom {
    grid-column: 1 / -1;
  }

  .contribute-request-payment-summary div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 430px) {
  .contribute-request-payment-presets,
  .contribute-request-payment-summary {
    grid-template-columns: 1fr;
  }
}

.contribute-site-shell--request-payment-transitioning .contribute-hero > h1,
.contribute-site-shell--request-payment-transitioning .contribute-hero-copy,
.contribute-site-shell--request-payment-transitioning .contribute-hero-actions,
.contribute-site-shell--request-payment-transitioning .contribute-section {
  opacity: 0;
  transition: var(--root-motion-fade-transition);
}

.contribute-site-shell--request-payment-open .contribute-page {
  display: grid;
  min-height: calc(100vh - var(--root-header-total-height));
  padding-top: calc(var(--root-header-total-height) + 58px);
  padding-bottom: 84px;
  place-items: start center;
}

.contribute-site-shell--request-payment-open .contribute-hero {
  display: grid;
  width: min(100%, 980px);
  min-height: auto;
  padding: 0 max(20px, env(safe-area-inset-right)) 0 max(20px, env(safe-area-inset-left));
  place-items: center;
}

.contribute-site-shell--request-payment-open .contribute-hero > h1,
.contribute-site-shell--request-payment-open .contribute-hero-copy,
.contribute-site-shell--request-payment-open .contribute-hero-actions,
.contribute-site-shell--request-payment-open .contribute-section {
  display: none;
}

.contribute-site-shell--request-payment-open .contribute-request-payment-panel {
  width: min(100%, 820px);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 46px);
  border-color: var(--root-feature-border);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% -8%, rgba(51, 150, 255, 0.16), transparent 54%),
    linear-gradient(180deg, var(--root-feature-surface-strong), var(--root-feature-surface));
  box-shadow:
    0 30px 90px rgba(30, 112, 214, 0.18),
    0 12px 36px rgba(0, 0, 0, 0.18);
  animation: contribute-request-payment-stage-in 0.38s ease-in-out both;
}

.contribute-request-payment-back {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  width: 44px;
  height: 44px;
  box-sizing: border-box;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid var(--root-feature-border);
  border-radius: 999px;
  background: var(--root-hero-surface);
  color: var(--root-muted);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  transition:
    border-color 0.25s ease-in-out,
    color 0.25s ease-in-out,
    box-shadow 0.25s ease-in-out,
  transform 0.25s ease-in-out;
}

.contribute-request-payment-back svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
  transform: translateX(-1px);
}

.contribute-request-payment-back:hover,
.contribute-request-payment-back:focus-visible {
  border-color: rgba(51, 150, 255, 0.62);
  color: var(--root-fg);
  transform: scale(1.015);
}

.contribute-request-payment-back:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--root-focus);
}

.contribute-site-shell--request-payment-open .contribute-request-payment-copy {
  max-width: 620px;
  margin: 0 auto;
}

.contribute-site-shell--request-payment-open .contribute-request-payment-copy h2 {
  font-size: clamp(36px, 5.2vw, 58px);
  letter-spacing: -0.055em;
}

.contribute-site-shell--request-payment-open .contribute-request-payment-copy p {
  font-size: clamp(17px, 2.1vw, 20px);
}

.contribute-site-shell--request-payment-open .contribute-request-payment-amounts {
  width: min(100%, 680px);
  margin: 12px auto 0;
  gap: 18px;
}

.contribute-site-shell--request-payment-open .contribute-request-payment-presets {
  gap: 12px;
}

.contribute-site-shell--request-payment-open .contribute-amount-pill {
  min-height: 64px;
  font-size: 19px;
}

.contribute-site-shell--request-payment-open .contribute-request-payment-custom input {
  min-height: 62px;
  font-size: 16px;
}

.contribute-site-shell--request-payment-open .contribute-request-payment-summary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 680px);
  margin: 0 auto;
  gap: 12px;
}

.contribute-site-shell--request-payment-open .contribute-request-payment-summary div {
  min-height: 70px;
  padding: 13px 18px;
}

.contribute-site-shell--request-payment-open .contribute-request-payment-summary div:last-child {
  grid-column: 1 / -1;
}

.contribute-request-payment-recipient {
  overflow: visible;
  font-size: 14px;
  overflow-wrap: anywhere;
  white-space: normal;
}

.contribute-request-payment-live-status--sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.contribute-site-shell--request-payment-open .contribute-request-payment-submit,
.contribute-site-shell--request-payment-open .contribute-request-payment-explorer {
  width: min(100%, 430px);
  min-height: 64px;
  font-size: 17px;
}

@keyframes contribute-request-payment-stage-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 700px) {
  .contribute-site-shell--request-payment-open .contribute-page {
    padding-top: calc(var(--root-header-total-height) + 34px);
    padding-bottom: 54px;
  }

  .contribute-site-shell--request-payment-open .contribute-hero {
    padding-right: max(16px, env(safe-area-inset-right));
    padding-left: max(16px, env(safe-area-inset-left));
  }

  .contribute-site-shell--request-payment-open .contribute-request-payment-panel {
    padding: 22px;
    border-radius: 28px;
  }

  .contribute-site-shell--request-payment-open .contribute-request-payment-copy h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .contribute-site-shell--request-payment-open .contribute-amount-pill,
  .contribute-site-shell--request-payment-open .contribute-request-payment-custom input,
  .contribute-site-shell--request-payment-open .contribute-request-payment-submit,
  .contribute-site-shell--request-payment-open .contribute-request-payment-explorer {
    min-height: 58px;
  }
}

.contribute-site-shell--request-payment-open .contribute-page {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1120px);
  min-height: calc(100svh - var(--root-header-total-height));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 78px) max(20px, env(safe-area-inset-right)) 72px max(20px, env(safe-area-inset-left));
  background: var(--root-bg);
  place-items: start center;
}

.contribute-site-shell--request-payment-open .contribute-hero {
  display: grid;
  width: min(100%, 900px);
  max-width: none;
  min-height: 0;
  margin: 0 auto;
  padding: 0;
  gap: 0;
  place-items: center;
}

.contribute-site-shell--request-payment-open .contribute-request-payment-panel:not([hidden]) {
  position: relative;
  z-index: 2;
  display: grid;
  visibility: visible;
  opacity: 1;
}

@media (max-width: 700px) {
  .contribute-site-shell--request-payment-open .contribute-page {
    min-height: calc(100svh - var(--root-header-total-height));
    padding-top: 28px;
    padding-bottom: 42px;
  }
}

body > .contribute-request-payment-panel--stage {
  position: fixed;
  z-index: 1000;
  top: calc(var(--root-header-total-height, 74px) + clamp(24px, 5vh, 58px));
  left: 50%;
  display: grid;
  width: min(calc(100vw - 40px), 820px);
  max-height: calc(100svh - var(--root-header-total-height, 74px) - 48px);
  margin: 0;
  overflow-y: auto;
  opacity: 1;
  transform: translateX(-50%);
  animation: contribute-request-payment-stage-rise var(--root-motion-fade-duration) var(--root-motion-fade-easing) both;
}

.contribute-site-shell--request-payment-open .contribute-page {
  display: none;
}

.contribute-site-shell > .contribute-request-payment-panel--stage {
  position: relative;
  z-index: 1;
  top: auto;
  left: auto;
  display: grid;
  width: min(calc(100% - 40px), 900px);
  max-height: none;
  margin: clamp(42px, 6vw, 76px) auto clamp(50px, 7vw, 90px);
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  transform: none;
  animation: contribute-request-payment-stage-flow-in var(--root-motion-fade-duration) var(--root-motion-fade-easing) both;
}

.contribute-request-payment-panel--closing {
  pointer-events: none;
  animation: contribute-request-payment-fade-out var(--root-motion-fade-duration) var(--root-motion-fade-easing) both !important;
}

.contribute-site-shell > .contribute-request-payment-panel--stage:not([hidden]) {
  display: grid;
  visibility: visible;
}

body > .contribute-request-payment-panel--stage:not([hidden]) {
  display: grid;
  visibility: visible;
}

@keyframes contribute-request-payment-stage-rise {
  from {
    opacity: 0;
    transform: translateX(-50%);
  }

  to {
    opacity: 1;
    transform: translateX(-50%);
  }
}

@keyframes contribute-request-payment-stage-flow-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes contribute-request-payment-fade-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@media (max-width: 700px) {
  body > .contribute-request-payment-panel--stage {
    top: calc(var(--root-header-total-height, 74px) + 20px);
    width: min(calc(100vw - 28px), 820px);
    max-height: calc(100svh - var(--root-header-total-height, 74px) - 28px);
  }

  .contribute-site-shell > .contribute-request-payment-panel--stage {
    width: min(calc(100% - 28px), 900px);
    margin-top: 28px;
    margin-bottom: 42px;
  }
}
