/* Palette lifted from the AMC logo: peach → sky → lavender backdrop,
   yellow-orange letters, pink + cyan + deep plum extrusion, confetti. */
:root {
  --peach: #ffd9c4;
  --sky: #9fe3ee;
  --lavender: #cbb6f3;
  --cyan: #3de8e4;
  --cyan-deep: #14a9b3;
  --pink: #f8a5c2;
  --magenta: #c43d8a;
  --plum: #4a0e3d;
  --plum-2: #6a2a60;
  --gold: #f9c95f;
  --orange: #f29a4a;
  --ink: #2f0c2c;
  --muted: #6b4667;
  --card: rgba(255, 250, 252, 0.62);
  --card-solid: #fff6f8;
  --line: rgba(74, 14, 61, 0.14);
  --shadow: 0 22px 50px rgba(74, 14, 61, 0.18);
  --radius: 20px;
  --font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --display: "Fredoka", "Plus Jakarta Sans", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  background:
    radial-gradient(70% 55% at 0% 0%, var(--peach) 0%, rgba(255, 217, 196, 0) 70%),
    radial-gradient(60% 60% at 100% 100%, var(--lavender) 0%, rgba(203, 182, 243, 0) 70%),
    radial-gradient(55% 50% at 100% 0%, rgba(248, 165, 194, 0.7) 0%, rgba(248, 165, 194, 0) 70%),
    linear-gradient(135deg, var(--peach) 0%, var(--sky) 52%, var(--lavender) 100%);
  background-attachment: fixed;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; }
a { color: var(--cyan-deep); }
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--cyan-deep);
  outline-offset: 3px;
  border-radius: 6px;
}
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 50;
  padding: 10px 16px;
  background: var(--card-solid);
  color: var(--plum);
  border: 2px solid var(--plum);
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 4px 5px 0 var(--plum);
}
.skip-link:focus { top: 12px; }

/* Confetti speckles like the logo, drifting slowly. */
.scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  perspective: 900px;
  overflow: hidden;
}
.scene::before,
.scene::after {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 2px, transparent 3px),
    radial-gradient(circle, var(--pink) 0 2px, transparent 3px),
    radial-gradient(circle, var(--cyan) 0 1.6px, transparent 2.6px),
    radial-gradient(circle, var(--gold) 0 1.8px, transparent 2.8px),
    radial-gradient(circle, rgba(74, 14, 61, 0.35) 0 1.2px, transparent 2.2px);
  background-size: 260px 260px, 340px 340px, 210px 210px, 300px 300px, 380px 380px;
  background-position: 10px 30px, 120px 90px, 60px 200px, 200px 40px, 40px 120px;
  animation: drift 60s linear infinite;
  opacity: 0.9;
}
.scene::after {
  background-size: 190px 190px, 250px 250px, 160px 160px, 230px 230px, 290px 290px;
  background-position: 70px 10px, 30px 150px, 140px 60px, 90px 180px, 170px 110px;
  animation-duration: 90s;
  animation-direction: reverse;
  opacity: 0.6;
}
@keyframes drift {
  to { transform: translate3d(60px, 90px, 0); }
}

.cube {
  position: absolute;
  width: var(--s, 56px);
  height: var(--s, 56px);
  transform-style: preserve-3d;
  animation: spin var(--t, 18s) linear infinite;
}
.cube span {
  position: absolute;
  inset: 0;
  border: 2px solid var(--plum);
  background: linear-gradient(135deg, var(--gold), var(--orange));
  backface-visibility: hidden;
}
.cube span:nth-child(1) { transform: rotateY(0deg) translateZ(calc(var(--s, 56px) / 2)); }
.cube span:nth-child(2) { transform: rotateY(90deg) translateZ(calc(var(--s, 56px) / 2)); background: var(--pink); }
.cube span:nth-child(3) { transform: rotateY(180deg) translateZ(calc(var(--s, 56px) / 2)); }
.cube span:nth-child(4) { transform: rotateY(-90deg) translateZ(calc(var(--s, 56px) / 2)); background: var(--pink); }
.cube span:nth-child(5) { transform: rotateX(90deg) translateZ(calc(var(--s, 56px) / 2)); background: var(--cyan); }
.cube span:nth-child(6) { transform: rotateX(-90deg) translateZ(calc(var(--s, 56px) / 2)); background: var(--plum-2); }
@keyframes spin {
  to { transform: rotateX(360deg) rotateY(360deg); }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(255, 244, 248, 0.62);
  border-bottom: 2px solid rgba(74, 14, 61, 0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--plum);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  box-shadow: 3px 4px 0 var(--plum), 0 0 0 2px #fff;
}
.nav-links { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 8px;
  border-radius: 10px;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--plum); }
.nav-links a[aria-current="page"] { background: rgba(255, 255, 255, 0.7); box-shadow: inset 0 -2px 0 var(--pink); }

main, footer { position: relative; z-index: 1; }

.hero { padding: 56px 0 28px; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--plum);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.55);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px 6px 10px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--muted);
  box-shadow: 0 0 0 4px rgba(74, 14, 61, 0.08);
}
.dot.on { background: var(--cyan-deep); box-shadow: 0 0 0 4px rgba(61, 232, 228, 0.35); }
.dot.off { background: var(--magenta); box-shadow: 0 0 0 4px rgba(196, 61, 138, 0.22); }
.dot.unknown { background: var(--orange); box-shadow: 0 0 0 4px rgba(242, 154, 74, 0.25); }

/* The wordmark: logo letters in 3D. Face is yellow→orange, then a pink
   rim, then a cyan rim, then a deep-plum extrusion, like the icon. */
.amc-stage {
  perspective: 900px;
  margin: 14px 0 6px;
  min-height: clamp(96px, 22vw, 200px);
  overflow: visible;
  padding: 0.08em 0.32em 0.28em 0.04em;
}
.amc-word {
  display: flex;
  gap: 0;
  transform-style: preserve-3d;
  overflow: visible;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(68px, 22vw, 176px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  user-select: none;
}
.letter {
  position: relative;
  display: inline-block;
  overflow: visible;
  /* Right padding is clip room, not a gap. Pull the next letter back. */
  padding: 0.06em 0.18em 0.16em 0;
  margin-right: -0.12em;
}
.letter:last-child { margin-right: 0; }
.letter .face {
  position: relative;
  z-index: 3;
  display: inline-block;
  background: linear-gradient(180deg, #ffe08a 0%, var(--gold) 45%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.letter[data-l="A"] .face {
  background-image: linear-gradient(180deg, #ffffff 0%, #fff8fb 55%, #f3e6f0 100%);
}
/* Fredoka glyphs are built from overlapping contours, so -webkit-text-stroke
   draws lines inside the letters in WebKit. Two copies under the face do the
   job instead: ::before is the plum outline (8-way shadow of the filled glyph),
   ::after is the extrusion, so counters show solid pink → cyan → plum walls. */
.letter .face,
.letter::before,
.letter::after {
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.letter::before,
.letter::after {
  content: attr(data-l);
  position: absolute;
  left: 0;
  top: 0.06em;
  pointer-events: none;
}
/* ::before is a full white/gold glyph plus plum outline. The gradient
   face is ~1px smaller (background-clip:text); matching fill completes
   the stroke instead of a plum sliver or a clipped hard edge. */
.letter::before {
  z-index: 2;
  color: var(--gold);
  text-shadow:
    -0.02em 0 0 var(--plum),
    0.016em 0 0 var(--plum),
    0 -0.02em 0 var(--plum),
    0 0.02em 0 var(--plum),
    -0.016em 0.016em 0 var(--plum),
    -0.016em -0.016em 0 var(--plum),
    0.016em 0.016em 0 var(--plum),
    0.016em -0.016em 0 var(--plum);
}
.letter[data-l="A"]::before {
  color: #ffffff;
}
.letter::after {
  z-index: 1;
  color: var(--pink);
  text-shadow:
    0.008em 0.01em 0 var(--pink),
    0.018em 0.022em 0 var(--pink),
    0.028em 0.034em 0 var(--pink),
    0.038em 0.046em 0 var(--cyan),
    0.048em 0.058em 0 var(--cyan),
    0.058em 0.07em 0 var(--cyan),
    0.07em 0.084em 0 var(--plum),
    0.082em 0.098em 0 var(--plum),
    0.094em 0.112em 0 var(--plum),
    0.106em 0.126em 0 var(--plum),
    0 0.18em 0.16em rgba(74, 14, 61, 0.28);
}
.letter:nth-child(2) { transform: translateZ(18px) translateY(-0.03em); }
.letter:nth-child(3) { transform: translateZ(8px) translateY(0.01em); }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

h1.page-title {
  margin: 14px 0 10px;
  font-family: var(--display);
  font-size: clamp(40px, 6.5vw, 68px);
  letter-spacing: -0.02em;
  color: var(--plum);
  text-shadow: 3px 3px 0 var(--pink), 5px 6px 0 rgba(74, 14, 61, 0.18);
}
.lede { max-width: 40rem; color: var(--muted); font-size: 18px; line-height: 1.55; font-weight: 500; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid var(--plum);
  border-radius: 14px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  color: var(--plum);
  box-shadow: 4px 5px 0 var(--plum);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translate(-1px, -1px); box-shadow: 5px 6px 0 var(--plum); }
.btn:active { transform: translate(3px, 4px); box-shadow: 1px 1px 0 var(--plum); }
.btn.gold { background: linear-gradient(180deg, #ffe08a, var(--gold) 55%, var(--orange)); }
.btn.ghost { background: rgba(255, 255, 255, 0.72); }
.btn:focus-visible { outline: 3px solid var(--cyan-deep); outline-offset: 3px; border-radius: 14px; }
.btn.is-done { background: linear-gradient(180deg, #9ff3f0, var(--cyan) 60%, var(--cyan-deep)); }
.btn.is-done::before { content: "✓"; font-weight: 900; }

.join-box {
  margin-top: 36px;
  background: var(--card-solid);
  border: 2px solid var(--plum);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 8px 10px 0 var(--pink), 8px 10px 0 2px var(--plum), var(--shadow);
  display: grid;
  gap: 16px;
}
.join-ip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.join-ip .btn { flex-shrink: 0; }
.join-ip code {
  font-family: var(--mono);
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 600;
  color: var(--plum);
  background: linear-gradient(180deg, rgba(61, 232, 228, 0.35), rgba(61, 232, 228, 0.15));
  padding: 4px 12px;
  border-radius: 10px;
}
.meta { color: var(--muted); font-size: 14px; margin: 0; }
.copied { color: var(--cyan-deep); font-weight: 700; min-height: 1.2em; margin: 0; font-size: 14px; }
.copied.is-error { color: var(--magenta); }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}
.card {
  position: relative;
  background: var(--card);
  backdrop-filter: blur(10px);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 10px 30px rgba(74, 14, 61, 0.08);
  transition: transform 0.25s ease, border-color 0.2s ease, box-shadow 0.25s ease;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--pink), var(--cyan), var(--lavender));
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--plum);
  box-shadow: 6px 8px 0 var(--plum), 0 16px 34px rgba(74, 14, 61, 0.14);
}
.card h3 { margin: 4px 0 8px; font-size: 18px; color: var(--plum); font-family: var(--display); font-weight: 700; }
.card p, .card li, .prose p, .prose li { color: var(--muted); line-height: 1.6; margin: 0; }
.prose p, .prose li { margin: 0 0 12px; }
.card a { font-weight: 700; text-decoration: none; }
section { padding: 28px 0 12px; }
section h2 {
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: var(--plum);
  text-shadow: 2px 2px 0 var(--pink);
}

.vote-list { display: grid; gap: 10px; }
.vote-list a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  color: var(--plum);
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.vote-list a span {
  color: var(--plum);
  font-weight: 800;
  background: var(--gold);
  border: 1.5px solid var(--plum);
  border-radius: 999px;
  padding: 1px 10px;
  font-size: 13px;
}
.vote-list a:hover { border-color: var(--plum); transform: translateX(3px); box-shadow: -4px 4px 0 var(--cyan); }

.banner-wrap { margin-top: 18px; }
.banner-wrap img {
  width: 468px;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 2px solid var(--plum);
  box-shadow: 4px 5px 0 var(--pink);
}

.blog-list { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.blog-list a.card { color: inherit; text-decoration: none; display: block; }
.blog-list a.card:focus-visible { outline-offset: 0; border-radius: var(--radius); }
.blog-list .tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 2px 9px;
  border-radius: 999px;
  border: 1.5px solid var(--plum);
  background: var(--gold);
  color: var(--plum);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.crumb {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}
.crumb a { color: var(--muted); text-decoration: none; }
.crumb a:hover { color: var(--plum); }

/* Homepage "What's new" — a short dated list, full story in /blog/whats-new/. */
.news {
  background: var(--card);
  backdrop-filter: blur(10px);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 6px 22px;
  list-style: none;
  margin: 0 0 16px;
}
.news li {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-top: 1.5px solid var(--line);
  color: var(--muted);
  line-height: 1.55;
}
.news li:first-child { border-top: 0; }
.news time {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--plum);
  padding-top: 2px;
}
.news strong { color: var(--plum); }
.section-foot { margin: 0; }
.section-foot a { font-weight: 800; }

/* Blog post footer nav: back to the list + next guide. */
.post-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1.5px solid var(--line);
}
.post-nav .btn { padding: 10px 16px; }
.prose .post-nav a.btn { text-decoration: none; }
.prose h2 { color: var(--plum); }
.prose dl { margin: 0; }
.prose dt { color: var(--plum); font-weight: 800; margin-top: 12px; }
.prose dd { margin: 4px 0 0; color: var(--muted); line-height: 1.6; }
.prose {
  max-width: 44rem;
  margin-top: 24px;
  background: var(--card);
  backdrop-filter: blur(10px);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 28px 22px;
}
.prose h2 { font-size: 22px; margin: 26px 0 10px; text-shadow: none; }
.prose h3 { font-family: var(--display); font-size: 18px; margin: 20px 0 6px; color: var(--plum); }
.prose ul { padding-left: 1.2rem; }
.prose code, .news code, .footer code, .card code {
  font-family: var(--mono);
  color: var(--plum);
  background: rgba(61, 232, 228, 0.28);
  padding: 0.1em 0.4em;
  border-radius: 6px;
  white-space: nowrap;
}

.footer {
  margin-top: 48px;
  padding: 28px 0 48px;
  border-top: 2px solid rgba(74, 14, 61, 0.12);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--plum); }
.footer-links { display: flex; flex-wrap: wrap; gap: 4px 12px; }

/* 404 page. */
.err { text-align: center; padding: 40px 0 24px; }
.err .code {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(88px, 18vw, 160px);
  line-height: 1;
  color: var(--gold);
  text-shadow:
    0 0 0 var(--plum),
    0.03em 0.03em 0 var(--pink),
    0.06em 0.06em 0 var(--cyan),
    0.09em 0.09em 0 var(--plum);
  -webkit-text-stroke: 0;
}
.err .lede { margin: 12px auto 0; }
.err .cta-row { justify-content: center; }

/* 3D decorations ported from ThreeUI (threeui.js). Hosts stay hidden until
   the script confirms WebGL and flips .fx-on on <html>, so the layout below
   is the plain single-column one for everyone else. */
.fx { position: relative; }
.fx canvas { display: block; width: 100%; height: 100%; }
.hero-fx, .vote-fx { display: none; }
.fx-on .hero-fx, .fx-on .vote-fx { display: block; pointer-events: none; }
.fx.is-off { display: none !important; }

.fx-on .hero-fx { height: 260px; margin: 18px -20px -10px; }
.vote-grid { display: grid; gap: 20px; }
.fx-on .vote-fx { height: 280px; margin: 0 -20px; }
.vote-copy { min-width: 0; }

.card .wire {
  position: absolute;
  top: 18px;
  right: 16px;
  width: 60px;
  height: 60px;
  pointer-events: none;
}
.card.has-wire h3 { display: flex; align-items: center; min-height: 56px; padding-right: 72px; }

/* Key-art showcase: the illustration in a framed card, copy beside it on wide screens. */
#showcase { padding: 8px 0 12px; }
.showcase {
  display: grid;
  gap: 28px;
  align-items: center;
}
.showcase-art {
  margin: 0;
  border: 2px solid var(--plum);
  border-radius: 24px;
  overflow: hidden;
  background: var(--sky);
  box-shadow: 10px 12px 0 var(--cyan), 10px 12px 0 2px var(--plum), var(--shadow);
  transform: rotate(-1.2deg);
}
.showcase-art img { display: block; width: 100%; height: auto; }
.showcase-copy h2 { margin-top: 0; }
.showcase-copy p { color: var(--muted); line-height: 1.65; margin: 0; font-size: 17px; }
.showcase-copy .cta-row { margin-top: 22px; }
@media (min-width: 900px) {
  .showcase { grid-template-columns: minmax(0, 1.35fr) minmax(280px, 1fr); gap: 44px; }
}
@media (max-width: 700px) {
  .showcase-art { box-shadow: 6px 7px 0 var(--cyan), 6px 7px 0 2px var(--plum); transform: rotate(-0.8deg); }
}

@media (min-width: 900px) {
  .fx-on .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(320px, 36vw, 440px);
    grid-auto-rows: max-content;
    column-gap: 24px;
    align-items: start;
  }
  .fx-on .hero > * { grid-column: 1; }
  .fx-on .hero .kicker { justify-self: start; }
  .fx-on .hero-fx {
    grid-column: 2;
    grid-row: 1 / span 6;
    align-self: center;
    justify-self: stretch;
    height: auto;
    aspect-ratio: 1;
    margin: 0;
  }
  .fx-on .vote-grid { grid-template-columns: minmax(0, 1fr) clamp(300px, 32vw, 380px); gap: 28px; align-items: center; }
  .fx-on .vote-fx { height: auto; aspect-ratio: 1; margin: 0; }
}

@media (max-width: 900px) {
  /* Fixed backgrounds paint as a huge layer on iOS and smear when you scroll. */
  body { background-attachment: scroll; }
  /* CSS cubes sit in the viewport and show through translucent copy. */
  .cube { display: none; }
  /* The vote orb is a side column on desktop; on phones it was a 280px
     empty canvas under the banner. */
  .fx-on .vote-fx { display: none; }
  .fx-on .hero-fx { height: 140px; margin: 12px 0 0; }
}

@media (max-width: 700px) {
  /* Two-row header on phones; not sticky so it does not eat the viewport. */
  .nav { position: static; }
  .nav-inner { flex-wrap: wrap; padding: 10px 0; row-gap: 4px; min-height: 0; }
  .nav-links { width: 100%; gap: 4px 2px; justify-content: flex-start; }
  .nav-links a { font-size: 13px; padding: 8px 10px; }
  .hero { padding-top: 24px; }
  .join-box { box-shadow: 5px 6px 0 var(--pink), 5px 6px 0 2px var(--plum); }
  .news li { grid-template-columns: 1fr; gap: 2px; }
  .footer { flex-direction: column; gap: 10px; }
  .prose { padding: 14px 16px 18px; }
  .cta-row { margin-top: 22px; flex-direction: column; align-items: stretch; }
  .cta-row .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cube, .scene::before, .scene::after { animation: none; }
  .btn, .card, .vote-list a { transition: none; }
  .card:hover, .vote-list a:hover, .btn:hover { transform: none; }
  .showcase-art { transform: none; }
}
