@font-face {
  font-family: "Glorantha Core Runes";
  src: url("./font/GloranthaCoreRunes1.5.woff2") format("woff2");
  font-display: swap;
}

:root {
  --bg: #081120;
  --bg-strong: #15305b;
  --surface: rgba(8, 18, 35, 0.78);
  --surface-strong: rgba(5, 11, 24, 0.92);
  --text: #eaf1ff;
  --text-soft: #adc0e2;
  --accent: #75d6ff;
  --accent-strong: #2c91d8;
  --line: rgba(142, 195, 255, 0.16);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --rune-color: rgba(147, 224, 255, 0.95);
  --rune-holiday-color: #f4b740;
  --rune-holiday-glow: rgba(244, 183, 64, 0.55);
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(91, 128, 255, 0.3), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(66, 224, 255, 0.22), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(255, 160, 110, 0.14), transparent 28%),
    linear-gradient(180deg, #040915 0%, #081120 38%, #0d1930 100%);
}

img {
  display: block;
  max-width: 100%;
}

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

.page-shell {
  width: min(1180px, calc(100% - 32px));
  max-width: 100%;
  margin: 24px auto 40px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  gap: 12px;
  padding: 10px 2px;
}

.topbar--hero {
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  z-index: 3;
  margin-bottom: 0;
  padding: 0;
}

.rune-slot {
  position: static;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid rgba(128, 206, 255, 0.14);
  border-radius: 999px;
  background: rgba(7, 18, 34, 0.68);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.rune-slot:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3);
}

.rune-slot:focus-visible {
  outline: 2px solid rgba(128, 206, 255, 0.3);
  outline-offset: 2px;
}

.rune-slot__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.rune-slot__reel {
  display: grid;
  place-items: center;
  width: 46px;
  height: 58px;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(128, 206, 255, 0.22);
  background: rgba(239, 248, 255, 0.95);
  font-family: "Glorantha Core Runes", "Cinzel", serif;
  font-size: 1.75rem;
  line-height: 1;
  color: #3a6281;
  text-shadow: none;
}

.rune-slot__reel.is-spinning {
  animation: slot-reel-spin 180ms linear infinite;
}

.rune-slot.is-winning {
  border-color: rgba(255, 224, 137, 0.88);
  box-shadow:
    0 0 0 1px rgba(255, 236, 180, 0.24),
    0 18px 34px rgba(0, 0, 0, 0.24),
    0 0 24px rgba(255, 216, 120, 0.26);
}

.rune-slot.is-winning .rune-slot__reel {
  color: #fff3c5;
  background:
    linear-gradient(180deg, rgba(173, 97, 48, 0.92), rgba(116, 52, 22, 0.9));
  border-color: rgba(255, 224, 137, 0.5);
  text-shadow: 0 0 18px rgba(255, 224, 137, 0.4);
  animation: slot-win-pulse 360ms ease-in-out 3;
}

.rune-slot.is-holiday .rune-slot__reel {
  color: var(--rune-holiday-color);
  text-shadow: 0 0 16px var(--rune-holiday-glow);
}

.rune-slot.is-holiday.is-winning .rune-slot__reel {
  color: #fff6d6;
  background:
    linear-gradient(180deg, rgba(189, 110, 41, 0.96), rgba(132, 61, 18, 0.92));
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(7, 18, 34, 0.72);
  border: 1px solid rgba(128, 206, 255, 0.14);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.language-switcher__label {
  font-size: 0.92rem;
  font-weight: 700;
  color: #d4e8ff;
}

.language-switcher__select {
  min-width: 152px;
  padding: 10px 40px 10px 14px;
  border: 1px solid rgba(128, 206, 255, 0.24);
  border-radius: 999px;
  background: rgba(232, 243, 255, 0.96);
  color: #10233f;
  font: inherit;
}

.language-switcher__select:focus {
  outline: 2px solid rgba(128, 206, 255, 0.3);
  outline-offset: 2px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  min-height: 940px;
  background:
    radial-gradient(circle at 20% 20%, rgba(107, 142, 255, 0.24), transparent 24%),
    radial-gradient(circle at 76% 18%, rgba(102, 237, 255, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(2, 8, 20, 0.98), rgba(7, 16, 31, 0.96) 50%, rgba(9, 19, 37, 0.92) 100%);
  box-shadow: var(--shadow);
}

.hero__stars,
.hero__nebula {
  position: absolute;
  inset: 0;
}

.hero__stars {
  background-image:
    radial-gradient(circle at 10% 18%, rgba(255, 255, 255, 0.9) 0 1px, transparent 1.5px),
    radial-gradient(circle at 22% 70%, rgba(255, 255, 255, 0.5) 0 1px, transparent 1.5px),
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.85) 0 1px, transparent 1.5px),
    radial-gradient(circle at 72% 38%, rgba(150, 220, 255, 0.7) 0 1px, transparent 1.5px),
    radial-gradient(circle at 58% 60%, rgba(255, 255, 255, 0.45) 0 1px, transparent 1.5px),
    radial-gradient(circle at 90% 76%, rgba(255, 255, 255, 0.72) 0 1px, transparent 1.5px),
    radial-gradient(circle at 33% 84%, rgba(128, 213, 255, 0.64) 0 1px, transparent 1.5px);
  animation: star-drift 18s linear infinite;
}

.hero__nebula--one {
  background: radial-gradient(circle at 18% 26%, rgba(103, 98, 255, 0.22), transparent 28%);
  filter: blur(8px);
}

.hero__nebula--two {
  background: radial-gradient(circle at 82% 72%, rgba(71, 232, 255, 0.14), transparent 24%);
  filter: blur(18px);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(4, 10, 22, 0.3), rgba(6, 14, 28, 0.68) 38%, rgba(7, 17, 34, 0.92) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  min-height: 620px;
  padding: 136px 48px 56px;
}

.hero__media {
  display: grid;
  gap: 26px;
  justify-items: center;
}

.hero__icon-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 320px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(128, 215, 255, 0.2), rgba(8, 18, 35, 0.02) 56%, transparent 68%),
    radial-gradient(circle, rgba(255, 179, 120, 0.18), transparent 72%);
  box-shadow:
    inset 0 0 50px rgba(93, 178, 255, 0.12),
    0 0 100px rgba(55, 120, 255, 0.18);
}

.hero__orbit {
  position: absolute;
  border: 1px solid rgba(145, 217, 255, 0.28);
  border-radius: 50%;
}

.hero__orbit--outer {
  inset: 10px;
  animation: orbit-spin 18s linear infinite;
}

.hero__orbit--inner {
  inset: 42px;
  border-style: dashed;
  animation: orbit-spin-reverse 12s linear infinite;
}

.hero__icon {
  position: relative;
  z-index: 1;
  width: min(66%, 210px);
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.42));
}

.hero__signal {
  width: min(100%, 320px);
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(7, 19, 37, 0.72);
  border: 1px solid rgba(116, 204, 255, 0.18);
  box-shadow: inset 0 0 20px rgba(111, 176, 255, 0.06);
}

.hero__signal-label {
  margin: 0 0 8px;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7fd6ff;
}

.hero__signal h2 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  color: #f4fbff;
}

.hero__signal p {
  margin: 0;
  color: #bcd0ef;
  line-height: 1.7;
}

.hero__copy {
  width: 100%;
  max-width: 700px;
  color: #f1f6ff;
}

.hero__copy--promo {
  padding: 10px 0;
}

.eyebrow,
.section__label,
.link-panel__tag {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.footer h2,
.promo-band h2,
.hero__signal h2 {
  margin: 0;
  font-family: "Cinzel", serif;
  letter-spacing: 0.04em;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.92;
  text-shadow: 0 0 28px rgba(117, 214, 255, 0.18);
}

.hero__lead {
  margin: 22px 0 16px;
  font-size: clamp(1.18rem, 2.3vw, 1.55rem);
  font-weight: 700;
  line-height: 1.8;
  color: #ffffff;
}

.hero__tagline {
  margin: 0 0 18px;
  max-width: 34ch;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.85;
  color: #9fddff;
  overflow-wrap: anywhere;
}

.hero__text {
  margin: 0 0 12px;
  max-width: 60ch;
  font-size: 1rem;
  line-height: 1.95;
  color: rgba(230, 241, 255, 0.9);
  overflow-wrap: anywhere;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.button--primary {
  background: linear-gradient(135deg, #a8f0ff 0%, #5b9cff 100%);
  color: #071729;
}

.button--secondary {
  border: 1px solid rgba(142, 205, 255, 0.32);
  background: rgba(142, 205, 255, 0.08);
  color: #edf7ff;
}

.button--ghost {
  border: 1px solid rgba(255, 194, 138, 0.3);
  background: rgba(255, 194, 138, 0.08);
  color: #ffdcb4;
}

.hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
  width: 100%;
}

.hero__links a,
.howto-links a {
  color: #8fe0ff;
  font-weight: 700;
}

.hero__video-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin: 0 48px 48px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(8, 19, 37, 0.72);
  border: 1px solid rgba(125, 205, 255, 0.16);
  box-shadow: inset 0 0 28px rgba(134, 195, 255, 0.05);
}

.hero__video-copy p:last-child {
  color: #bfd1ee;
}

.hero__video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #030914;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
}

.hero__video-frame::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.hero__video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.content {
  display: grid;
  gap: 28px;
  margin-top: 28px;
}

.intro-card,
.section,
.footer,
.promo-band {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.intro-card {
  padding: 28px 30px;
  font-size: 1.03rem;
  line-height: 1.9;
}

.section,
.promo-band {
  padding: 34px 30px 30px;
}

.promo-band {
  position: relative;
  overflow: hidden;
}

.promo-band::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103, 221, 255, 0.12), transparent 68%);
  pointer-events: none;
}

.promo-band--alt {
  background:
    linear-gradient(180deg, rgba(11, 23, 42, 0.86), rgba(10, 20, 35, 0.78)),
    rgba(9, 20, 38, 0.78);
}

.section__heading {
  display: flex;
  gap: 16px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 22px;
}

.section__heading--stack {
  display: grid;
  gap: 8px;
  justify-content: start;
}

.section__label {
  color: var(--accent);
}

.section h2,
.footer h2,
.promo-band h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  color: #f1f6ff;
}

.feature-list,
.promo-grid {
  display: grid;
  gap: 18px;
}

.promo-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.promo-grid--usecases {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.feature-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 18px;
  border-radius: 24px;
  background: rgba(241, 248, 255, 0.08);
  border: 1px solid rgba(142, 205, 255, 0.14);
}

.feature-card--link {
  grid-template-columns: 116px minmax(0, 1fr) auto;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card--link:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.18);
}

.feature-card__icon-wrap {
  display: grid;
  place-items: center;
  width: 116px;
  aspect-ratio: 1;
  border-radius: 26px;
  background:
    radial-gradient(circle at top, rgba(131, 228, 255, 0.32), transparent 52%),
    linear-gradient(180deg, rgba(71, 134, 255, 0.12), rgba(20, 45, 78, 0.2));
}

.feature-card__icon {
  width: 74px;
  height: 74px;
}

.feature-card h3,
.link-panel h3,
.account-card h3,
.promo-card h3,
.step h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
  color: #f3f8ff;
}

.feature-card__arrow,
.link-panel__arrow {
  font-size: 2rem;
  color: var(--accent);
}

.feature-card p,
.link-panel p,
.account-card p,
.footer p,
.promo-band p {
  margin: 0;
  line-height: 1.85;
  color: var(--text-soft);
}

.link-panel {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(12, 28, 52, 0.88), rgba(17, 35, 62, 0.92)),
    #071121;
  border: 1px solid rgba(142, 205, 255, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.link-panel__image {
  width: 120px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.link-panel:hover,
.account-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.18);
}

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

.account-card {
  padding: 22px 20px;
  border-radius: 22px;
  background: rgba(241, 248, 255, 0.06);
  border: 1px solid rgba(142, 205, 255, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.account-card__emoji {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.promo-card {
  position: relative;
  padding: 24px 22px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(242, 249, 255, 0.08), rgba(242, 249, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(142, 205, 255, 0.16);
  box-shadow: inset 0 0 24px rgba(111, 184, 255, 0.04);
}

.promo-card--story {
  min-height: 190px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.step {
  flex: 1 1 240px;
  max-width: 320px;
  padding: 24px 20px;
  border-radius: 22px;
  background: rgba(242, 249, 255, 0.06);
  border: 1px solid rgba(142, 205, 255, 0.14);
  text-align: center;
}

.step-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9de8ff, #4e98ff);
  color: #05111f;
  font-weight: 700;
}

.howto-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 24px;
  align-items: center;
  padding: 30px;
  margin-top: 28px;
}

.footer__copy {
  max-width: 58ch;
}

.footer__small {
  margin-top: 16px;
  font-size: 0.92rem;
}

.footer__qr {
  justify-self: end;
  padding: 16px;
  border-radius: 22px;
  background: rgba(241, 248, 255, 0.08);
  text-align: center;
}

.footer__qr img {
  width: 100%;
  max-width: 172px;
  margin-bottom: 12px;
}

.section-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.section-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slot-reel-spin {
  from {
    transform: translateY(-6%);
    filter: blur(0.2px);
  }

  to {
    transform: translateY(6%);
    filter: blur(1px);
  }
}

@keyframes slot-win-pulse {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

@keyframes orbit-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes orbit-spin-reverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes star-drift {
  from {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }

  to {
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .topbar {
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .topbar--hero {
    left: 18px;
    right: 18px;
    top: 18px;
    justify-content: space-between;
  }

  .hero {
    min-height: auto;
  }

  .hero__content,
  .hero__video-wrap,
  .footer,
  .account-grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    min-height: auto;
    padding: 128px 24px 36px;
  }

  .feature-card,
  .feature-card--link,
  .link-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature-card__icon-wrap,
  .footer__qr,
  .link-panel__image,
  .link-panel__arrow {
    justify-self: center;
  }

  .hero__video-wrap {
    margin: 0 24px 24px;
  }

  .footer {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: auto;
    margin: 8px 10px 20px;
  }

  .topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .topbar--hero {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    margin: 0;
    padding: 14px 14px 0;
    gap: 10px;
  }

  .rune-slot {
    align-self: center;
    padding: 10px 12px;
    background: rgba(7, 18, 34, 0.48);
    border-color: rgba(142, 205, 255, 0.18);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  }

  .rune-slot__reel {
    width: 38px;
    height: 48px;
    font-size: 1.45rem;
  }

  .language-switcher {
    width: 100%;
    justify-content: space-between;
    padding: 10px 12px;
    background: rgba(7, 18, 34, 0.82);
  }

  .language-switcher__select {
    min-width: 0;
    width: 100%;
    max-width: 180px;
  }

  .is-sp-layout .topbar--hero {
    justify-content: center;
  }

  .hero,
  .intro-card,
  .section,
  .footer,
  .promo-band {
    border-radius: 22px;
  }

  .hero__content,
  .section,
  .footer,
  .intro-card,
  .promo-band {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: stretch;
    gap: 28px;
    min-height: 0;
    padding-top: 24px;
    padding-bottom: 20px;
  }

  .hero__media,
  .hero__copy,
  .hero__video-copy,
  .section__heading,
  .section__heading--stack {
    width: 100%;
  }

  .hero__icon-orbit {
    width: min(100%, 220px);
  }

  .hero__signal {
    width: 100%;
    padding: 16px 18px;
    text-align: center;
  }

  .hero__copy--promo {
    text-align: center;
  }

  .hero__lead,
  .hero__tagline,
  .hero__text {
    max-width: none;
    word-break: break-word;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .hero__links,
  .howto-links {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero__links a,
  .howto-links a {
    width: 100%;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(143, 224, 255, 0.08);
    border: 1px solid rgba(143, 224, 255, 0.16);
    text-align: center;
  }

  .hero__video-wrap {
    margin: 0 12px 12px;
    padding: 18px 16px;
    gap: 16px;
    width: auto;
  }

  .hero__video-copy {
    text-align: center;
  }

  .section__heading {
    gap: 10px;
    margin-bottom: 18px;
  }

  .section__heading--stack {
    justify-items: center;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 12vw, 3.7rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .promo-grid,
  .promo-grid--usecases {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .steps {
    gap: 16px;
  }

  .promo-card,
  .step,
  .feature-card,
  .link-panel,
  .account-card {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .promo-card--story {
    min-height: 0;
  }

  .feature-card__icon-wrap {
    width: 92px;
  }

  .feature-card__icon {
    width: 58px;
    height: 58px;
  }

  .link-panel__image {
    width: min(100%, 150px);
  }

  .account-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .account-card {
    min-height: 132px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .intro-card {
    font-size: 0.96rem;
    line-height: 1.8;
  }

  .footer {
    gap: 18px;
    padding-top: 22px;
    padding-bottom: 22px;
  }
}

@media (max-width: 420px) {
  .page-shell {
    margin-left: 7px;
    margin-right: 7px;
  }

  .topbar--hero {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
  }

  .hero__content {
    padding-top: 20px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.2rem);
  }

  .hero__lead {
    line-height: 1.65;
  }

  .hero__tagline {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .language-switcher {
    gap: 8px;
    flex-direction: column;
    align-items: stretch;
  }

  .language-switcher__select {
    max-width: none;
  }

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

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

  .section-fade,
  .button,
  .link-panel,
  .account-card,
  .rune-slot,
  .rune-slot__reel,
  .hero__orbit,
  .hero__stars {
    transition: none;
    animation: none;
  }

  .rune-slot__reel.is-spinning,
  .rune-slot.is-winning .rune-slot__reel {
    animation: none;
  }
}
