:root {
  --bg: #050914;
  --bg-soft: #0b1222;
  --surface: rgba(9, 15, 28, 0.8);
  --surface-strong: #0d1426;
  --text: #f5f7ff;
  --muted: #94a3b8;
  --line: rgba(148, 163, 184, 0.16);
  --accent: #ff7a18;
  --accent-soft: rgba(96, 165, 250, 0.16);
  --mint: #4fd1c5;
  --gold: #f5b942;
  --shadow: 0 28px 80px rgba(2, 6, 23, 0.42);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --header-height: 92px;
  --store-badge-height: 56px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.16), transparent 26%),
    radial-gradient(circle at 85% 12%, rgba(255, 122, 24, 0.16), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(79, 209, 197, 0.08), transparent 28%),
    linear-gradient(180deg, #07101e 0%, #050914 46%, #03060d 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 70%);
}

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

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

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 48px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: var(--header-height);
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(156, 163, 175, 0.22);
  border: 1px solid rgba(229, 231, 235, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 40px rgba(2, 6, 23, 0.24);
}

.brand,
.compact-brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 148px;
  height: auto;
}

.site-nav,
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.site-nav a,
.legal-nav a {
  padding: 10px 14px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
  border-radius: 999px;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.legal-nav a:hover,
.site-nav a:focus-visible,
.legal-nav a:focus-visible {
  color: var(--text);
  background: rgba(148, 163, 184, 0.08);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  justify-self: start;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.1);
  color: var(--text);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  background: rgba(148, 163, 184, 0.08);
  border-radius: 999px;
}

.lang-switch button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.lang-switch button.is-active {
  color: #07101e;
  background: #f8fafc;
}

.section {
  padding: 72px 0;
  scroll-margin-top: 128px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 160px);
}

.section-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.12);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  margin-top: 18px;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.96;
}

h2 {
  margin-top: 18px;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.08;
}

p {
  margin: 0;
  line-height: 1.72;
  color: var(--muted);
}

.hero-text,
.section-heading p,
.legal-hero p {
  max-width: 62ch;
  margin-top: 18px;
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

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

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

.button-primary {
  color: #07101e;
  background: linear-gradient(135deg, #f8fafc, #dbe4ff);
  box-shadow: 0 18px 34px rgba(2, 6, 23, 0.28);
}

.button-secondary {
  color: var(--text);
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.stat-card,
.visual-card,
.info-card,
.mode-card,
.compliance-card,
.faq-card,
.legal-card,
.player-card {
  position: relative;
  overflow: hidden;
  background: rgba(8, 14, 26, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 18px;
}

.stat-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.visual-card {
  padding: 24px;
}

.visual-card-main {
  min-height: 520px;
  background:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(9, 15, 28, 0.96), rgba(10, 18, 34, 0.92));
}

.hero-store-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
  margin-bottom: 6px;
}

.hero-store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.hero-store-link:hover,
.hero-store-link:focus-visible {
  transform: translateY(-2px);
  opacity: 0.92;
}

.hero-store-link img {
  display: block;
  width: auto;
  height: var(--store-badge-height);
  object-fit: contain;
}

.visual-card::before,
.mode-card::before,
.player-card::before {
  content: "";
  position: absolute;
  inset: auto auto -40px -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.16), transparent 68%);
}

.visual-tag,
.mini-label,
.player-label {
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.mock-phone {
  display: grid;
  place-items: center;
  margin-top: 20px;
}

.mock-phone-screen {
  width: min(320px, 100%);
  padding: 18px;
  border-radius: 30px;
  background: #0a1120;
  color: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(148, 163, 184, 0.08),
    0 26px 54px rgba(2, 6, 23, 0.4);
}

.mock-header,
.player-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 700;
}

.flag-placeholder {
  position: relative;
  height: 280px;
  margin: 18px 0;
  overflow: hidden;
  border-radius: 22px;
  background: #091423;
}

.flag-strip {
  height: 33.33%;
}

.strip-a {
  background: #dc2626;
}

.strip-b {
  background: #f8fafc;
}

.strip-c {
  background: #1d4ed8;
}

.flag-reveal {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 32% 42%, rgba(255, 255, 255, 0.04) 0 12%, transparent 12% 100%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.84) 0 44%, transparent 44% 58%, rgba(15, 23, 42, 0.84) 58% 100%);
  animation: revealPulse 4s ease-in-out infinite;
}

.guess-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.guess-chip {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

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

.accent-card {
  background:
    linear-gradient(135deg, rgba(96, 165, 250, 0.16), rgba(8, 14, 26, 0.94)),
    rgba(8, 14, 26, 0.9);
}

.section-heading {
  max-width: 760px;
}

.overview-grid,
.modes-section,
.showcase-section,
.faq-section {
  display: grid;
  gap: 28px;
}

.flow-grid,
.mode-grid,
 .faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.showcase-stage,
.showcase-copy-card {
  position: relative;
  overflow: hidden;
  background: rgba(8, 14, 26, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.showcase-stage {
  min-height: 520px;
  padding: 28px;
  background:
    radial-gradient(circle at 20% 18%, rgba(96, 165, 250, 0.18), transparent 22%),
    radial-gradient(circle at 82% 76%, rgba(255, 122, 24, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(7, 12, 23, 0.98), rgba(9, 16, 28, 0.95));
}

.iso-scene {
  position: relative;
  height: 100%;
  min-height: 460px;
  perspective: 1200px;
}

.iso-card {
  position: absolute;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(18, 27, 46, 0.96), rgba(9, 14, 24, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow:
    0 24px 60px rgba(2, 6, 23, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform-style: preserve-3d;
}

.iso-card-large {
  inset: 82px 108px 34px 24px;
  transform: rotateX(57deg) rotateZ(-31deg) translateZ(0);
  animation: floatLarge 8s ease-in-out infinite;
}

.iso-card-top {
  top: 18px;
  right: 16px;
  width: 220px;
  height: 172px;
  transform: rotateX(57deg) rotateZ(-29deg);
  animation: floatSmall 7s ease-in-out infinite;
}

.iso-card-bottom {
  right: 34px;
  bottom: 24px;
  width: 250px;
  height: 188px;
  transform: rotateX(57deg) rotateZ(-29deg);
  animation: floatSmallReverse 7.5s ease-in-out infinite;
}

.iso-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: #cbd5e1;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.iso-screen {
  height: calc(100% - 30px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.08);
  background-color: #0b1222;
}

.iso-screen-flag {
  background:
    radial-gradient(circle at 20% 28%, rgba(255, 255, 255, 0.08), transparent 12%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 22%, transparent 22% 78%, rgba(255, 255, 255, 0.08) 78% 100%),
    linear-gradient(180deg, #b91c1c 0 33%, #e5e7eb 33% 66%, #1d4ed8 66% 100%);
}

.iso-screen-flash {
  background:
    radial-gradient(circle at 68% 36%, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(145deg, rgba(255, 122, 24, 0.28), transparent 34%),
    linear-gradient(180deg, #172554 0 50%, #0f172a 50% 100%);
}

.iso-screen-weekly {
  background:
    radial-gradient(circle at 30% 34%, rgba(79, 209, 197, 0.22), transparent 16%),
    radial-gradient(circle at 62% 56%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(135deg, #0f172a 0%, #1e293b 46%, #0b1222 100%);
}

.showcase-copy-grid {
  display: grid;
  gap: 18px;
}

.showcase-copy-card {
  padding: 28px;
}

.showcase-copy-card h3 {
  font-size: 1.4rem;
}

.showcase-copy-card p {
  margin-top: 14px;
}

.download-section {
  padding-top: 18px;
}

.download-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  padding: 36px;
  border-radius: 40px;
  background:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.18), transparent 28%),
    linear-gradient(160deg, #0d1628 0%, #050914 100%);
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: 0 36px 90px rgba(2, 6, 23, 0.42);
}

.download-eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  color: #8fc6ff;
}

.download-copy h2 {
  color: #f8fbff;
}

.download-copy p {
  color: rgba(232, 239, 255, 0.72);
}

.download-points {
  display: grid;
  gap: 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.download-points li {
  position: relative;
  padding-left: 28px;
  color: #f2f6ff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
}

.download-points li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  transform: translateY(-50%);
  box-shadow: 0 0 24px rgba(96, 165, 250, 0.5);
}

.download-panel {
  display: grid;
  align-content: center;
  gap: 28px;
  padding: 28px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.download-app {
  display: flex;
  align-items: center;
  gap: 18px;
}

.download-app-icon {
  display: grid;
  place-items: center;
  width: 102px;
  height: 102px;
  padding: 14px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(229, 231, 235, 0.95), rgba(156, 163, 175, 0.95));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.download-app-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.download-app-meta strong {
  display: block;
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1;
}

.download-app-meta span {
  display: block;
  margin-top: 10px;
  color: rgba(232, 239, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.5;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.store-badge:hover,
.store-badge:focus-visible {
  transform: translateY(-2px);
  opacity: 0.92;
}

.store-badge img {
  display: block;
  width: auto;
  height: var(--store-badge-height);
  object-fit: contain;
}

.info-card,
.mode-card,
.compliance-card,
.faq-card,
.legal-card {
  padding: 28px;
}

.step-index,
.mode-number {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.mode-card {
  min-height: 272px;
}

.mode-card p,
.compliance-card p,
.faq-card p,
.legal-card p {
  margin-top: 14px;
}

.mode-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.mode-tags span {
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
}

.event-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 28px;
  align-items: center;
}

.event-points {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.event-points strong {
  display: block;
  font-size: 1.02rem;
}

.event-points p {
  margin-top: 8px;
}

.player-card {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(96, 165, 250, 0.08), rgba(255, 122, 24, 0.08)),
    rgba(8, 14, 26, 0.84);
}

.player-photo {
  height: 420px;
  margin: 18px 0;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.5), transparent 18%),
    radial-gradient(circle at 48% 34%, rgba(255, 255, 255, 0.14), transparent 40%),
    linear-gradient(180deg, rgba(16, 33, 58, 0.9), rgba(16, 33, 58, 0.7));
  filter: blur(9px) saturate(1.2);
  animation: blurShift 6s ease-in-out infinite;
}

.inline-link {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 800;
  color: var(--accent);
}

.inline-link:hover,
.inline-link:focus-visible {
  text-decoration: underline;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
  padding: 10px 0 4px;
}

.footer-copy {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

@keyframes floatLarge {
  0%,
  100% {
    transform: rotateX(57deg) rotateZ(-31deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotateX(57deg) rotateZ(-31deg) translate3d(0, -14px, 0);
  }
}

@keyframes floatSmall {
  0%,
  100% {
    transform: rotateX(57deg) rotateZ(-29deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotateX(57deg) rotateZ(-29deg) translate3d(0, -10px, 0);
  }
}

@keyframes floatSmallReverse {
  0%,
  100% {
    transform: rotateX(57deg) rotateZ(-29deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotateX(57deg) rotateZ(-29deg) translate3d(0, 10px, 0);
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-end;
  gap: 14px;
}

.footer-links a {
  font-weight: 800;
  color: var(--muted);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.legal-page {
  min-height: 100vh;
}

.legal-header {
  grid-template-columns: auto 1fr auto;
}

.legal-content {
  display: grid;
  gap: 18px;
  padding: 72px 0 20px;
}

.legal-hero {
  padding: 0 0 18px;
}

.legal-card h2 {
  margin-top: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.legal-markdown > :first-child {
  margin-top: 0;
}

.legal-markdown h2,
.legal-markdown h3,
.legal-markdown h4 {
  margin-top: 28px;
}

.legal-markdown p + p,
.legal-markdown ul + p,
.legal-markdown ol + p,
.legal-markdown p + ul,
.legal-markdown p + ol {
  margin-top: 16px;
}

.legal-markdown ul,
.legal-markdown ol {
  margin: 18px 0 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.72;
}

.legal-markdown li + li {
  margin-top: 10px;
}

.legal-markdown a {
  color: var(--accent);
  font-weight: 800;
}

.legal-markdown a:hover,
.legal-markdown a:focus-visible {
  text-decoration: underline;
}

@keyframes revealPulse {
  0%,
  100% {
    transform: translateX(-4%);
    opacity: 0.9;
  }

  50% {
    transform: translateX(4%);
    opacity: 0.72;
  }
}

@keyframes blurShift {
  0%,
  100% {
    filter: blur(10px) saturate(1.1);
    transform: scale(1);
  }

  50% {
    filter: blur(6px) saturate(1.25);
    transform: scale(1.02);
  }
}

@media (max-width: 1080px) {
  .hero,
  .event-layout,
  .download-shell,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .site-header {
    grid-template-columns: auto auto 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

.site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: rgba(8, 14, 26, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 28px;
    box-shadow: 0 16px 50px rgba(2, 6, 23, 0.28);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    text-align: center;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 20px, 1200px);
  }

  .site-header,
  .legal-header {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    padding: 14px;
    border-radius: 28px;
  }

  .brand-logo,
  .footer-logo {
    width: 118px;
  }

  .legal-nav {
    display: none;
  }

  .flow-grid,
  .mode-grid,
  .faq-grid,
  .hero-stats,
  .visual-stack {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

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

  h2 {
    font-size: clamp(1.9rem, 8vw, 2.7rem);
  }

  .visual-card-main {
    min-height: auto;
  }

  .mock-phone-screen {
    width: 100%;
  }

  .flag-placeholder {
    height: 220px;
  }

  .player-photo {
    height: 320px;
  }

  .download-shell {
    padding: 24px;
    border-radius: 30px;
  }

  .download-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .showcase-stage {
    min-height: 420px;
  }

  .iso-scene {
    min-height: 360px;
  }

  .iso-card-large {
    inset: 72px 72px 24px 14px;
  }

  .iso-card-top {
    width: min(186px, 48vw);
    height: 146px;
  }

  .iso-card-bottom {
    width: min(210px, 54vw);
    height: 162px;
  }

  .hero-store-links {
    justify-content: flex-start;
  }

  .download-app {
    flex-direction: column;
    align-items: flex-start;
  }

  .download-app-icon {
    width: 88px;
    height: 88px;
  }

  .download-points li {
    font-size: 1.05rem;
  }

  .store-badges {
    flex-direction: column;
  }

  .hero-store-link,
  .store-badge {
    width: auto;
    max-width: 100%;
  }

  .store-badge img,
  .hero-store-link img {
    max-width: 100%;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  :root {
    --store-badge-height: 48px;
  }

  .site-header,
  .legal-header {
    position: static;
    margin-top: 10px;
  }

  .hero-store-links,
  .store-badges {
    gap: 12px;
  }

  .hero-store-links {
    justify-content: flex-start;
  }

  .showcase-stage {
    min-height: 360px;
    padding: 18px;
  }

  .iso-scene {
    min-height: 300px;
  }

  .iso-card {
    padding: 14px;
    border-radius: 18px;
  }

  .iso-card-large {
    inset: 66px 54px 18px 8px;
  }

  .iso-card-top {
    top: 10px;
    right: 4px;
    width: min(150px, 46vw);
    height: 116px;
  }

  .iso-card-bottom {
    right: 14px;
    bottom: 14px;
    width: min(168px, 52vw);
    height: 128px;
  }

  .menu-toggle,
  .lang-switch button,
  .site-nav a,
  .legal-nav a,
  .button,
  .mode-tags span {
    font-size: 0.88rem;
  }

  .stat-card,
  .visual-card,
  .info-card,
  .mode-card,
  .compliance-card,
  .faq-card,
  .legal-card,
  .player-card,
  .download-shell,
  .download-panel {
    border-radius: 22px;
  }
}
