:root {
  --ink: #17152a;
  --muted: #635f77;
  --paper: #f7f6ff;
  --white: #ffffff;
  --line: #e5e1f3;
  --violet: #6f4cff;
  --violet-deep: #5134cf;
  --teal: #0f9d8a;
  --coral: #ef6a67;
  --gold: #f4c84d;
  --lavender: #ebe6ff;
  --mint: #e3f8f3;
  --rose: #ffe9e7;
  --navy: #23213f;
  --shadow: 0 24px 70px rgba(48, 39, 97, 0.14);
  --shadow-soft: 0 16px 40px rgba(48, 39, 97, 0.09);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

button,
summary {
  font: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 880px;
  font-size: clamp(3.35rem, 7vw, 6.4rem);
}

h2 {
  font-size: clamp(2.25rem, 4.8vw, 4.35rem);
}

h3 {
  font-size: 1.28rem;
}

p {
  margin-top: 0;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: 7rem 0;
}

.compact-section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 100;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(111, 76, 255, 0.08);
  background: rgba(247, 246, 255, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  width: min(100% - 2rem, var(--max));
  min-height: 76px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--violet), var(--teal));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(111, 76, 255, 0.22);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 1.45rem;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-links a,
.related-grid a,
.site-footer a {
  transition: color 160ms ease, transform 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--violet-deep);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  padding: 0.7rem 1rem;
  font-size: 0.94rem;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 15%, rgba(111, 76, 255, 0.13), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(15, 157, 138, 0.13), transparent 28%),
    linear-gradient(180deg, #fbfaff 0%, var(--paper) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(82, 65, 154, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 65, 154, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 72%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.82fr);
  gap: 4.2rem;
  align-items: center;
}

.hero-copy {
  padding-block: 2rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--violet-deep);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.72);
}

.hero-lede,
.section-heading > p,
.statement-copy p,
.screenshot-copy p,
.share-copy p,
.multiplayer-copy p,
.final-card p {
  color: var(--muted);
  font-size: 1.15rem;
}

.hero-lede {
  max-width: 720px;
  margin: 1.55rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.95rem 1.3rem;
  font-weight: 950;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--violet);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(111, 76, 255, 0.24);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--violet-deep);
}

.button.secondary {
  border-color: rgba(23, 21, 42, 0.12);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.proof-strip span {
  border: 1px solid rgba(23, 21, 42, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  padding: 0.48rem 0.78rem;
  font-size: 0.9rem;
  font-weight: 850;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.62;
}

.glow-one {
  right: -120px;
  top: 120px;
  width: 320px;
  height: 320px;
  background: rgba(111, 76, 255, 0.15);
}

.glow-two {
  left: 44%;
  bottom: -170px;
  width: 390px;
  height: 390px;
  background: rgba(15, 157, 138, 0.11);
}

.teacher-builder {
  position: relative;
  border: 1px solid rgba(111, 76, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(1.2deg);
}

.teacher-builder::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(111, 76, 255, 0.04), transparent 42%, rgba(15, 157, 138, 0.05));
}

.builder-topbar {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 54px;
  border-bottom: 1px solid var(--line);
  padding: 0 1rem;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d9d5e8;
}

.builder-label {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.builder-content {
  position: relative;
  padding: 1.4rem;
}

.unit-card,
.game-preview-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.unit-kicker {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: var(--violet-deep);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.unit-card strong {
  display: block;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.unit-card p {
  margin: 0.35rem 0 0.95rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.word-chips,
.card-tag-row,
.share-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.word-chips span {
  border-radius: 999px;
  background: var(--lavender);
  color: var(--violet-deep);
  padding: 0.42rem 0.7rem;
  font-size: 0.84rem;
  font-weight: 850;
}

.flow-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0.55rem auto;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(35, 33, 63, 0.17);
}

.game-preview-card {
  border-color: rgba(15, 157, 138, 0.22);
}

.game-preview-head,
.share-demo-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 900;
}

.status-pill {
  border-radius: 999px;
  background: var(--mint);
  color: #087665;
  padding: 0.3rem 0.62rem;
  font-size: 0.74rem;
  font-weight: 950;
}

.game-question {
  margin: 1.2rem 0 0.7rem;
  font-weight: 900;
}

.game-options {
  display: grid;
  gap: 0.55rem;
}

.game-options span {
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 0.68rem 0.78rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.game-options .selected {
  border-color: rgba(15, 157, 138, 0.35);
  background: var(--mint);
  color: #087665;
}

.mini-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.mini-actions span {
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  padding: 0.65rem 0.55rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 900;
}

.teacher-problem {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.statement-grid,
.screenshot-grid,
.share-grid,
.compare-shell,
.faq-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 4rem;
  align-items: start;
}

.statement-copy p:last-child,
.screenshot-copy p:last-child,
.share-copy p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 2.5rem;
}

.section-heading.narrow {
  max-width: 920px;
}

.section-heading > p {
  max-width: 720px;
  margin: 1.15rem 0 0;
}

.workflow-section {
  background: var(--white);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.workflow-card {
  position: relative;
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fbfaff;
  padding: 1.5rem;
  overflow: hidden;
}

.workflow-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  opacity: 0.9;
}

.workflow-card.accent-violet::after {
  background: var(--lavender);
}

.workflow-card.accent-teal::after {
  background: var(--mint);
}

.workflow-card.accent-coral::after {
  background: var(--rose);
}

.step-number {
  display: inline-flex;
  margin-bottom: 4.5rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.workflow-card h3 {
  position: relative;
  z-index: 1;
  max-width: 260px;
}

.workflow-card p {
  position: relative;
  z-index: 1;
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.card-tag-row {
  position: absolute;
  left: 1.5rem;
  bottom: 1.35rem;
  z-index: 1;
}

.card-tag-row span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  padding: 0.36rem 0.62rem;
  font-size: 0.75rem;
  font-weight: 850;
}

.screenshot-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 40%, rgba(111, 76, 255, 0.1), transparent 27%),
    var(--paper);
}

.screenshot-copy {
  position: sticky;
  top: 120px;
  padding-top: 2rem;
}

.phone-stack {
  position: relative;
  min-height: 760px;
}

.phone-shot {
  position: absolute;
  width: min(260px, 48%);
  margin: 0;
  border: 8px solid var(--white);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone-shot img {
  width: 100%;
  height: auto;
}

.shot-one {
  top: 0;
  left: 7%;
  transform: rotate(-5deg);
}

.shot-two {
  top: 140px;
  right: 3%;
  transform: rotate(5deg);
}

.shot-three {
  left: 30%;
  bottom: 0;
  transform: rotate(-1deg);
}

.use-cases-section {
  background: var(--white);
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.use-card {
  min-height: 235px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  background:
    linear-gradient(145deg, rgba(111, 76, 255, 0.035), transparent 50%),
    #fcfbff;
}

.use-label {
  display: inline-flex;
  margin-bottom: 2rem;
  border-radius: 999px;
  background: var(--lavender);
  color: var(--violet-deep);
  padding: 0.38rem 0.68rem;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.use-card p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.multiplayer-section {
  background: var(--paper);
}

.multiplayer-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  border-radius: 38px;
  background:
    radial-gradient(circle at 85% 20%, rgba(244, 200, 77, 0.22), transparent 27%),
    linear-gradient(135deg, #2d2851 0%, #4e3ca9 100%);
  color: var(--white);
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: 0 30px 90px rgba(45, 40, 81, 0.25);
}

.multiplayer-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.light-button {
  margin-top: 0.5rem;
  border-color: rgba(255, 255, 255, 0.18);
  background: var(--white);
  color: var(--navy);
}

.duel-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
}

.player-card {
  display: grid;
  justify-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0.8rem;
  text-align: center;
  backdrop-filter: blur(8px);
}

.player-card > span:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.83rem;
}

.player-avatar {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 18px;
  background: var(--gold);
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 950;
}

.versus-mark {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(239, 106, 103, 0.26);
}

.share-section {
  background: var(--white);
}

.share-grid {
  align-items: center;
}

.share-demo {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(111, 76, 255, 0.05), rgba(15, 157, 138, 0.04)),
    #fbfaff;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.share-link-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.fake-link {
  display: flex;
  align-items: center;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  color: var(--muted);
  padding: 0.8rem;
  font-size: 0.86rem;
  overflow: hidden;
  white-space: nowrap;
}

.copy-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--violet);
  color: var(--white);
  padding: 0.8rem 0.95rem;
  font-size: 0.84rem;
  font-weight: 950;
}

.share-channels {
  margin-top: 0.8rem;
}

.share-channels span {
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  padding: 0.4rem 0.68rem;
  font-size: 0.75rem;
  font-weight: 850;
}

.micro-note {
  border-left: 3px solid var(--violet);
  padding-left: 1rem;
  color: var(--muted) !important;
  font-size: 0.94rem !important;
}

.compare-section {
  background: var(--paper);
}

.compare-shell {
  align-items: start;
}

.compare-heading {
  position: sticky;
  top: 120px;
}

.compare-table {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.compare-row > div {
  padding: 1rem 1.1rem;
  color: var(--muted);
}

.compare-row > div + div {
  border-left: 1px solid var(--line);
}

.compare-row + .compare-row {
  border-top: 1px solid var(--line);
}

.compare-head > div {
  background: var(--navy);
  color: var(--white);
  font-weight: 950;
}

.compare-row:not(.compare-head) > div:last-child {
  background: rgba(227, 248, 243, 0.45);
  color: #1c665d;
  font-weight: 800;
}

.faq-section {
  background: var(--white);
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fcfbff;
  padding: 1rem 1.1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--violet);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.final-cta {
  background: var(--white);
}

.final-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  border-radius: 38px;
  background:
    radial-gradient(circle at 14% 10%, rgba(15, 157, 138, 0.2), transparent 24%),
    linear-gradient(135deg, #6f4cff 0%, #4c34c5 100%);
  color: var(--white);
  padding: clamp(2.2rem, 6vw, 4.5rem);
  box-shadow: 0 30px 90px rgba(81, 52, 207, 0.24);
}

.final-card p {
  max-width: 700px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.final-button {
  background: var(--white);
  color: var(--violet-deep);
  white-space: nowrap;
}

.related-section {
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 2.6rem 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.related-grid a {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  padding: 1rem;
}

.related-grid a:hover,
.related-grid a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(111, 76, 255, 0.28);
}

.related-grid span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--violet-deep);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.related-grid strong {
  font-size: 0.95rem;
}

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.74);
  padding: 1.7rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  font-size: 0.88rem;
}

.footer-inner > span {
  color: var(--white);
  font-weight: 950;
}

.footer-inner div {
  display: flex;
  gap: 1rem;
}

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

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .hero-grid,
  .statement-grid,
  .screenshot-grid,
  .share-grid,
  .compare-shell,
  .faq-shell,
  .multiplayer-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 2.5rem;
  }

  .teacher-builder {
    max-width: 620px;
    margin-inline: auto;
    transform: none;
  }

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

  .workflow-card {
    min-height: 250px;
  }

  .step-number {
    margin-bottom: 2.3rem;
  }

  .screenshot-copy,
  .compare-heading,
  .faq-heading {
    position: static;
  }

  .phone-stack {
    width: min(100%, 660px);
    margin-inline: auto;
  }

  .multiplayer-card {
    gap: 2rem;
  }

  .duel-visual {
    max-width: 560px;
  }

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

  .final-button {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 5rem 0;
  }

  .compact-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .nav-shell {
    min-height: 68px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0.58rem 0.8rem;
    font-size: 0.82rem;
  }

  .brand span:last-child {
    display: none;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3.3rem);
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .proof-strip span {
    flex: 1 1 calc(50% - 0.5rem);
    text-align: center;
  }

  .builder-content {
    padding: 0.85rem;
  }

  .use-case-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .phone-stack {
    display: grid;
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    gap: 0.75rem;
    min-height: auto;
    overflow-x: auto;
    padding: 1rem 0.3rem 1.5rem;
    scroll-snap-type: x mandatory;
  }

  .phone-shot {
    position: static;
    width: 100%;
    min-width: 190px;
    transform: none;
    scroll-snap-align: start;
  }

  .duel-visual {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .player-card {
    width: min(100%, 300px);
  }

  .versus-mark {
    margin-block: -0.15rem;
  }

  .share-link-row {
    grid-template-columns: 1fr;
  }

  .compare-table {
    overflow-x: auto;
  }

  .compare-row {
    min-width: 620px;
  }

  .final-card,
  .multiplayer-card {
    border-radius: 28px;
  }

  .final-button {
    width: 100%;
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
