:root {
  --bg: #b794ff;
  --bg2: #a985ff;
  --frame: #7d58d6;
  --frame2: #6c4fcb;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.74);
  --soft: rgba(255, 255, 255, 0.12);
  --soft2: rgba(255, 255, 255, 0.18);
  --shadow: 0 26px 80px rgba(34, 16, 72, 0.42);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);

  --r-xl: 40px;
  --r-lg: 28px;
  --r-md: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Scrollbar (Firefox + WebKit). */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.34) rgba(255, 255, 255, 0.08);
}

*::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

*::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
}

*::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  border: 3px solid rgba(0, 0, 0, 0);
  background-clip: content-box;
}

*::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.38);
  background-clip: content-box;
}

html {
  min-height: 100dvh;
  background:
    radial-gradient(1200px 860px at 18% 18%, rgba(255, 255, 255, 0.22), transparent 60%),
    radial-gradient(900px 700px at 86% 26%, rgba(255, 255, 255, 0.15), transparent 58%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

body {
  min-height: 100dvh;
  margin: 0;
  font-family:
    "Space Grotesk",
    "Segoe UI Variable",
    "Segoe UI",
    system-ui,
    sans-serif;
  color: var(--text);
  background: transparent;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  line-height: 1.35;
}

.page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 42px);
}

.frame {
  width: min(1120px, 100%);
  min-height: min(680px, 78vh);
  display: grid;
  border-radius: var(--r-xl);
  background:
    radial-gradient(820px 520px at 30% 10%, rgba(255, 255, 255, 0.11), transparent 62%),
    radial-gradient(740px 520px at 82% 28%, rgba(255, 255, 255, 0.09), transparent 62%),
    linear-gradient(180deg, var(--frame), var(--frame2));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transform: translateY(10px);
  opacity: 0;
  animation: lift-in 620ms var(--ease) 80ms forwards;
}

.frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  opacity: 0.25;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.cornerlogo {
  position: absolute;
  top: 18px;
  left: 20px;
  z-index: 6;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 14px;
  transition:
    transform 180ms var(--ease),
    background-color 180ms var(--ease),
    border-color 180ms var(--ease);
}

.cornerlogo:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.26);
}

.langswitch {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 6;
  display: inline-flex;
  gap: 2px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.langswitch__btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition:
    transform 160ms var(--ease),
    background-color 160ms var(--ease),
    color 160ms var(--ease);
}

.langswitch__btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.96);
}

.langswitch__btn[aria-pressed="true"] {
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.98);
}

.langswitch__btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
}

.topbar {
  position: relative;
  z-index: 4;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  user-select: none;
}

.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}

.brand__text {
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 18px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2.6vw, 28px);
}

.nav__link {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  padding: 10px 10px;
  border-radius: 14px;
  transition:
    transform 160ms var(--ease),
    background-color 160ms var(--ease),
    color 160ms var(--ease);
}

.nav__link:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
  color: rgba(255, 255, 255, 0.96);
}

.topbar__right {
  display: inline-flex;
  gap: 10px;
}

.iconbtn {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  position: relative;
  transition:
    transform 160ms var(--ease),
    background-color 160ms var(--ease),
    border-color 160ms var(--ease);
}

.iconbtn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.24);
}

.iconbtn__badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #ff3b3b;
  border: 2px solid rgba(125, 88, 214, 0.9);
  color: #fff;
  font-size: 11px;
  display: grid;
  place-items: center;
  font-weight: 700;
  line-height: 1;
}

.hero {
  position: relative;
  z-index: 2;
  /* Let the hero grow with content (page scroll), while keeping watermark positioning stable. */
  display: grid;
  place-items: center;
  padding: clamp(18px, 3.4vw, 44px);
}

.hero__watermark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: -0.06em;
  font-size: clamp(120px, 22vw, 280px);
  color: rgba(255, 255, 255, 0.22);
  transform: translateY(10px);
  user-select: none;
  pointer-events: none;
  text-transform: uppercase;
  --wm-step: 140ms;
  --wm-start: 120ms;
  --wm-dur: 980ms;
  --wm-pause: 5000ms;
}

.wm {
  display: inline-flex;
  align-items: baseline;
  perspective: 900px;
}

.wmwrap {
  display: inline-grid;
  justify-items: end; /* align label to the right edge of MODS */
  gap: 0.02em;
}

.wm__label {
  font-size: 0.18em;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  transform: translateY(1.20em);
}

.wm__ch {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.08em) rotateY(0deg);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  filter: blur(1px);
  will-change: transform, opacity, filter;
}

.wm--play .wm__ch {
  animation: wm-type-in var(--wm-dur) cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--i, 0) * var(--wm-step) + var(--wm-start));
}

.wm__ch--label {
  text-transform: uppercase;
}

@keyframes wm-type-in {
  0% {
    opacity: 0;
    transform: translateY(0.1em) rotateY(0deg);
    filter: blur(2px);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotateY(360deg);
    filter: blur(0);
  }
}

.hero__content {
  position: relative;
  z-index: 3;
  width: min(980px, 100%);
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: clamp(10px, 1.8vw, 22px);
}

.hero__content strong {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.96);
}

.hero__headline {
  margin: 0;
  text-align: center;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: clamp(20px, 2.55vw, 40px);
  line-height: 1.06;
  white-space: nowrap;
  text-shadow: 0 18px 60px rgba(20, 8, 46, 0.22);
}

.hero__lead {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 650;
  font-size: clamp(15px, 1.8vw, 20px);
  line-height: 1.25;
  text-wrap: balance;
}

.hero__desc {
  margin: 0;
  max-width: 74ch;
  text-align: center;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 500;
  font-size: clamp(13px, 1.5vw, 16.5px);
  line-height: 1.6;
  text-wrap: pretty;
}

.hero__desc a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.36);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  padding: 0 0.2em;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  transition:
    background-color 160ms var(--ease),
    color 160ms var(--ease),
    text-decoration-color 160ms var(--ease);
}

.hero__desc a:visited {
  color: rgba(255, 255, 255, 0.92);
}

.hero__desc a:hover {
  background: rgba(255, 255, 255, 0.1);
  text-decoration-color: rgba(255, 255, 255, 0.7);
}

.hero__desc a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
}

.hero__bullets {
  width: min(900px, 100%);
  list-style: none;
  padding: 0;
  margin: 4px 0 2px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.hero__bullets li {
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13.5px;
  line-height: 1.35;
  box-shadow: 0 18px 60px rgba(20, 8, 46, 0.14);
}

.hero__grid {
  width: min(900px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 6px;
}

.hero__panel {
  padding: 16px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 60px rgba(20, 8, 46, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero__panel--emph {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 22px 70px rgba(20, 8, 46, 0.18);
}

.hero__section-title {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.94);
}

.hero__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13.5px;
  line-height: 1.45;
}

.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}

.stat {
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.stat__value {
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 22px;
  line-height: 1.05;
  color: rgba(255, 255, 255, 0.95);
}

.stat__label {
  margin-top: 3px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.hero__small {
  margin: 10px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

.modchips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.modchip {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 650;
  font-size: 12.5px;
  letter-spacing: -0.01em;
}

.hero__cta {
  width: min(900px, 100%);
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(420px 220px at 20% 20%, rgba(255, 255, 255, 0.12), transparent 58%),
    rgba(255, 255, 255, 0.06);
}

.hero__cta--primary {
  border-color: rgba(255, 255, 255, 0.22);
  background:
    radial-gradient(520px 260px at 18% 22%, rgba(255, 255, 255, 0.14), transparent 58%),
    radial-gradient(520px 260px at 82% 60%, rgba(255, 255, 255, 0.1), transparent 60%),
    rgba(255, 255, 255, 0.07);
  box-shadow:
    0 26px 80px rgba(34, 16, 72, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.hero__cta-title {
  margin: 0;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.94);
}

.hero__cta-text {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13.5px;
  line-height: 1.5;
}

.hero__price-note {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.45;
}

.cta-meta {
  width: min(900px, 100%);
  display: grid;
  gap: 10px;
  justify-items: center;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.cta-meta__line {
  text-align: center;
}

.cta-meta__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.chip {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 650;
  font-size: 12.5px;
}

.chip--online {
  border-color: rgba(110, 255, 210, 0.24);
  background: rgba(110, 255, 210, 0.06);
}

.chip--busy {
  border-color: rgba(255, 220, 130, 0.24);
  background: rgba(255, 220, 130, 0.06);
}

.compare {
  display: grid;
  gap: 8px;
}

.compare__head,
.compare__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.compare__th {
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  font-size: 13px;
}

.compare__td {
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.4;
}

.hero__center {
  width: 100%;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero__character {
  width: min(50vw, 560px);
  max-width: 100%;
  max-height: 50vh;
  height: auto;
  display: block;
  object-fit: contain;
  transform: none;
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.25));
}

.hero__title {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  font-size: clamp(20px, 3.1vw, 44px);
  line-height: 1.05;
  text-align: center;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.hero__subtitle {
  margin: 0;
  max-width: 70ch;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(16px, 2vw, 20px);
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
}

.hero__pitch {
  margin: 0;
  max-width: 70ch;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  font-size: clamp(13.5px, 1.5vw, 17px);
  line-height: 1.6;
  text-wrap: pretty;
}

/* Keep emphasis minimal if strong appears in copy. */
.hero__pitch strong {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.actions {
  width: min(780px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 6px;
}

.btn {
  --btn-grad-1: var(--frame);
  --btn-grad-2: var(--frame2);
  --btn-stroke: rgba(255, 255, 255, 0.22);
  --btn-surface: rgba(255, 255, 255, 0.08);
  --btn-glow: rgba(255, 255, 255, 0.12);
  appearance: none;
  border: 1px solid var(--btn-stroke);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, var(--btn-grad-1), var(--btn-grad-2));
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  border-radius: 22px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  transition:
    transform 180ms var(--ease),
    box-shadow 220ms var(--ease),
    border-color 180ms var(--ease),
    background-color 180ms var(--ease);
  box-shadow:
    0 18px 60px rgba(20, 8, 46, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.btn__icon {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: var(--btn-surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn__icon i {
  font-size: 18px;
}

.btn__text {
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 15px;
}

.btn__chev {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  opacity: 0.95;
}

.btn--primary {
  /* Same visual style; keep modifier for future variants. */
}

.btn--primary .btn__icon {
}

.btn--ghost {
  /* Same visual style; keep modifier for future variants. */
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow:
    0 22px 64px rgba(20, 8, 46, 0.28),
    0 0 0 6px var(--btn-glow);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible,
.iconbtn:focus-visible,
.brand:focus-visible,
.nav__link:focus-visible,
.scroll:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: 3px;
}

.scroll {
  position: absolute;
  right: 26px;
  bottom: 22px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    transform 180ms var(--ease),
    background-color 180ms var(--ease),
    border-color 180ms var(--ease);
}

.scroll:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.scroll__ring {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.scroll__text {
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 13px;
}

.footer {
  padding: 16px clamp(16px, 4vw, 42px) 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.footer__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.footer__year {
  font-variant-numeric: tabular-nums;
}

@media (max-width: 860px) {
  .nav {
    display: none;
  }

  .frame {
    min-height: min(660px, 82vh);
  }
}

@media (max-width: 720px) {
  .topbar {
    padding: 18px 18px;
  }

  .cornerlogo {
    top: 14px;
    left: 14px;
    padding: 9px 12px;
    font-size: 13px;
  }

  .langswitch {
    top: 14px;
    right: 14px;
    padding: 3px;
  }

  .langswitch__btn {
    padding: 6px 9px;
  }

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

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

  .hero__headline {
    white-space: normal;
  }

  .hero__content {
    padding-top: 68px;
  }

  .hero__center {
    padding: 0;
  }

  .hero__character {
    width: min(86vw, 520px);
    max-height: 55vh;
  }

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

  .scroll {
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .frame {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .wm__ch {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }

  .btn,
  .iconbtn,
  .nav__link,
  .scroll {
    transition: none;
  }
}

@keyframes lift-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
