@font-face {
  font-family: Anton;
  src: url("./fonts/Anton-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("./fonts/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("./fonts/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("./fonts/Inter-Bold.ttf") format("truetype");
  font-weight: 700 900;
  font-display: swap;
}
:root {
  --bg: #0c0c0e;
  --panel: #121215;
  --ink: #f3f0e9;
  --muted: #a4a2a5;
  --red: #f0444d;
  --line: #29292c;
  --blue: #397cec;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font:
    400 15px/1.65 Inter,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
  cursor: pointer;
}
svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
button,
a,
summary {
  touch-action: manipulation;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid #fceaa3;
  outline-offset: 6px;
}
::selection {
  background: var(--red);
  color: var(--bg);
}
.wrap {
  max-width: 1280px;
  width: calc(100% - 112px);
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  background: var(--ink);
  color: var(--bg);
  padding: 12px;
  z-index: 100;
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  height: 92px;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid #ffffff0c;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  font-size: 27px;
  letter-spacing: -1.6px;
  font-weight: 800;
  line-height: 1;
}
.wordmark > span:not(.brand-period) {
  font-weight: 400;
}
.brand-icon {
  color: var(--red);
  width: 30px;
  height: 30px;
  margin-right: 10px;
  stroke-width: 2.3;
  transform: rotate(-12deg);
}
.wordmark .brand-period {
  align-self: flex-start;
  font:
    10px Inter,
    sans-serif;
  letter-spacing: 0;
  margin: 1px 0 0 4px;
}
.desktop-nav {
  display: flex;
  gap: 34px;
  padding-left: 75px;
  font-size: 12px;
  color: #c2c0c2;
}
.desktop-nav a {
  transition: color 0.2s;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.button {
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 15px 25px;
  background: var(--red);
  color: #fff;
  border: 1px solid var(--red);
  border-radius: 5px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  transition:
    transform 0.2s var(--ease),
    background 0.2s,
    box-shadow 0.2s;
}
.button svg {
  width: 20px;
}
.button-small {
  min-height: 41px;
  padding: 10px 17px;
  gap: 21px;
  font-size: 12px;
}
.button-small svg {
  width: 17px;
}
.button:not(:disabled):active {
  transform: scale(0.96);
}
.button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.motion-toggle {
  background: none;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 32px;
  height: 42px;
  padding: 4px;
  color: var(--muted);
}
.motion-toggle span {
  flex-shrink: 0;
  width: 2px;
  height: 9px;
  background: currentColor;
  animation: equalizer 1s ease-in-out infinite alternate;
}
.motion-toggle span:nth-child(2) {
  height: 18px;
  animation-delay: -0.4s;
}
.motion-toggle span:nth-child(3) {
  height: 13px;
  animation-delay: -0.7s;
}
.motion-toggle span:nth-child(4) {
  height: 6px;
  animation-delay: -0.2s;
}
.motion-toggle[aria-pressed="true"] {
  color: var(--red);
}
.hero {
  position: relative;
  min-height: 754px;
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  align-items: center;
  padding-top: 36px;
  padding-bottom: 120px;
}
.hero-copy {
  z-index: 2;
  position: relative;
  padding-top: 17px;
  pointer-events: none;
}
.hero-copy a,
.hero-copy button {
  pointer-events: auto;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 2.1px;
  font-weight: 600;
  line-height: 1.7;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
}
.live-dot {
  display: inline-block;
  background: var(--red);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 9px #f0444d55;
}
.hero h1 {
  font:
    400 clamp(65px, 7.5vw, 108px)/1.06 Anton,
    Impact,
    sans-serif;
  letter-spacing: -1.7px;
  margin: 0 0 26px;
  white-space: nowrap;
}
.hero h1 > span {
  color: var(--red);
}
.hero-description {
  color: #b5b2b6;
  font-size: 15px;
  line-height: 1.9;
  margin: 0 0 29px;
}
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 29px;
}
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
}
.play-circle {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid #4d494c;
  border-radius: 50%;
  transition: border-color 0.2s;
}
.play-circle svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  stroke-width: 0;
  margin-left: -2px;
}
.hero-footnote {
  margin-top: 35px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #858287;
  font-size: 10px;
}
.mini-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 18px;
}
.mini-wave i {
  width: 2px;
  height: 6px;
  background: var(--red);
}
.mini-wave i:nth-child(2n) {
  height: 13px;
}
.mini-wave i:nth-child(3) {
  height: 18px;
}
.hero-art {
  height: 540px;
  position: relative;
  margin-left: -20px;
  isolation: isolate;
  transform-origin: 50% 50%;
}
.hero-art:before {
  content: "";
  position: absolute;
  inset: -40px -20px;
  background: radial-gradient(ellipse at 54% 42%, #5c142133, transparent 65%);
  z-index: -1;
}
.record-orbit {
  position: absolute;
  width: 510px;
  height: 510px;
  border: 1px solid #ffffff07;
  left: -3px;
  top: 15px;
  border-radius: 50%;
}
.record-orbit:after {
  content: "";
  position: absolute;
  inset: 30px;
  border: 1px dashed #ffffff08;
  border-radius: 50%;
}
.art-coordinate {
  position: absolute;
  left: 70px;
  top: 14px;
  color: #777177;
  font-size: 8px;
  letter-spacing: 2px;
  transform: rotate(-90deg);
  transform-origin: top left;
}
.vinyl-wrap {
  position: absolute;
  right: -7px;
  top: 39px;
  width: 405px;
  height: 405px;
  filter: drop-shadow(0 18px 28px #0008);
  animation: float-record 7s ease-in-out infinite;
}
.vinyl {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #303036;
  background:
    radial-gradient(
      circle,
      transparent 28%,
      #0002 29%,
      transparent 45%,
      #0003 66%
    ),
    repeating-radial-gradient(
      circle at center,
      #202024 0,
      #202024 1px,
      #111114 2px,
      #111114 4px
    );
  box-shadow:
    inset 0 0 0 4px #141418,
    inset 0 0 40px #0009;
  animation: spin 36s linear infinite;
}
.vinyl:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 12deg,
    transparent 0deg,
    #bbb5c019 38deg,
    transparent 69deg,
    transparent 172deg,
    #bbb5c023 209deg,
    transparent 241deg
  );
  pointer-events: none;
}
.record-label {
  position: absolute;
  inset: 33%;
  border-radius: 50%;
  background: #b82d3a;
  border: 6px solid #8c2534;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  color: #130d13;
  box-shadow: 0 0 0 2px #050508;
  overflow: hidden;
}
.record-label > span {
  font-size: 5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  white-space: nowrap;
}
.record-label strong {
  font-size: 39px;
  line-height: 0.76;
  letter-spacing: -2px;
  margin: 10px 0 12px;
  text-align: center;
}
.record-label i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #111;
  box-shadow: 0 0 0 3px #b82d3a;
  transform: translate(-50%, -50%);
}
.hero-card-stack {
  position: absolute;
  width: 242px;
  height: 324px;
  top: 179px;
  left: 45px;
  transform: rotate(-12deg);
  animation: float-card 6s ease-in-out infinite;
}
.hero-prompt,
.back-card {
  position: absolute;
  inset: 0;
  border-radius: 9px;
  overflow: hidden;
}
.back-card {
  padding: 18px;
  font:
    10px/1.4 Inter,
    sans-serif;
  letter-spacing: 1px;
}
.back-card-blue {
  background: #16335a;
  border: 1px solid #3980cb;
  transform: rotate(21deg) translate(43px, -24px);
  box-shadow: 0 10px 30px #0006;
  color: #98bce8;
}
.back-card-blue svg {
  display: block;
  margin: 60px auto;
  width: 80px;
  height: 80px;
}
.back-card-red {
  background: #69202c;
  border: 1px solid #a73f4f;
  transform: rotate(9deg) translate(22px, -11px);
  color: #ee9098;
}
.hero-prompt {
  padding: 18px;
  background: linear-gradient(135deg, #26161c, #191317 70%);
  border: 1px solid #e05a6899;
  box-shadow:
    0 12px 35px #0008,
    0 0 45px #ae152323;
  display: flex;
  flex-direction: column;
}
.card-top {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #dd8289;
}
.card-top > span:first-child {
  display: flex;
  align-items: center;
  gap: 5px;
}
.card-top i {
  width: 4px;
  height: 4px;
  background: #ed737e;
  border-radius: 50%;
}
.card-top > span:last-child {
  color: #78606a;
  font-size: 7px;
}
.card-note {
  color: #ef6f79;
  width: 29px;
  height: 29px;
  margin-top: 23px;
}
.hero-prompt p {
  font:
    400 38px/1.1 Anton,
    Impact,
    sans-serif;
  margin: 16px 0 20px;
  letter-spacing: 0.2px;
}
.hero-prompt p em {
  color: #f3606b;
  font-style: normal;
}
.card-bottom {
  margin-top: auto;
  border-top: 1px solid #64303c;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-bottom > span {
  font-size: 5px;
  letter-spacing: 0.6px;
  color: #b88992;
}
.card-bottom b {
  font-size: 21px;
  font-weight: 600;
  color: #f47984;
  white-space: nowrap;
}
.card-bottom small {
  font-size: 7px;
  font-weight: 400;
}
.heat-sticker {
  position: absolute;
  right: -7px;
  bottom: 5px;
  width: 133px;
  height: 133px;
  background: #d8e9a1;
  color: #141710;
  clip-path: polygon(
    50% 0,
    58% 8%,
    70% 3%,
    75% 14%,
    89% 13%,
    90% 27%,
    100% 33%,
    94% 46%,
    100% 57%,
    89% 66%,
    91% 80%,
    76% 82%,
    69% 95%,
    56% 92%,
    47% 100%,
    37% 90%,
    23% 93%,
    19% 80%,
    7% 76%,
    11% 62%,
    0 53%,
    8% 41%,
    3% 28%,
    17% 24%,
    19% 10%,
    34% 12%,
    41% 2%
  );
  display: grid;
  place-items: center;
  text-align: center;
  transform: rotate(14deg);
  z-index: 2;
  animation: sticker-pop 0.75s 0.7s var(--ease) backwards;
}
.heat-sticker span {
  font-size: 10px;
  line-height: 1.55;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.heat-sticker strong {
  font:
    25px/1 Anton,
    Impact,
    sans-serif;
}
.floating-tag {
  position: absolute;
  right: 10px;
  top: 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #544047;
  background: #22171d;
  padding: 10px 13px;
  border-radius: 4px;
  font-size: 8px;
  letter-spacing: 1.6px;
  transform: rotate(7deg);
  color: #d2b6bd;
  animation: float-tag 5s ease-in-out infinite;
}
.floating-tag .live-dot {
  width: 4px;
  height: 4px;
  background: #e7858b;
}
.art-star {
  position: absolute;
  color: var(--red);
  font-size: 43px;
  line-height: 1;
}
.star-one {
  top: 98px;
  left: 55px;
  transform: rotate(12deg);
}
.star-two {
  right: 43px;
  bottom: 166px;
  font-size: 25px;
  color: #eec0c8;
}
.hero-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 23px;
}
.hero-bottom p {
  font-size: 9px;
  letter-spacing: 1.4px;
  color: #8f8b92;
  margin: 0;
}
.hero-bottom strong {
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
  margin: 0 6px 0 13px;
}
.hero-bottom strong:first-child {
  margin-left: 0;
}
.hero-bottom a {
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #aaa6ad;
  display: flex;
  gap: 18px;
  align-items: center;
}
.hero-bottom a span {
  font-size: 20px;
  color: var(--red);
  animation: nudge 2s ease-in-out infinite;
}
.marquee {
  background: var(--red);
  color: #160f12;
  overflow: hidden;
  padding: 16px 0;
  transform: rotate(-1.6deg);
  width: 100%;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.marquee-track > span {
  font:
    400 24px/1.1 Anton,
    Impact,
    sans-serif;
  letter-spacing: 0.8px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 32px;
}
.marquee i {
  font-style: normal;
  font-size: 29px;
}
.section {
  padding-top: 115px;
  padding-bottom: 115px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
}
.section-index {
  color: var(--red);
  margin-right: 7px;
}
h2 {
  font:
    400 clamp(42px, 4.5vw, 64px)/1.12 Anton,
    Impact,
    sans-serif;
  letter-spacing: -0.5px;
  margin: 0;
}
.outlined {
  -webkit-text-stroke: 1px #8e8b90;
  color: transparent;
}
.section-heading > p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  margin: 0 7px 6px 20px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}
.step:nth-child(2) {
  transition-delay: 90ms;
}
.step:nth-child(3) {
  transition-delay: 180ms;
}
.step-art {
  height: 214px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #161519, #101013);
  border: 1px solid #262328;
  border-radius: 7px;
  overflow: hidden;
  margin-bottom: 26px;
}
.step-art:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#ffffff0b 0.6px, transparent 0.7px);
  background-size: 10px 10px;
  pointer-events: none;
}
.team-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 19px;
  border: 1px solid;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.6px;
  box-shadow: 0 8px 20px #0005;
}
.team-chip svg {
  width: 20px;
  height: 20px;
}
.team-red {
  top: 43px;
  left: 28px;
  color: #f78a92;
  background: #321b22;
  border-color: #713742;
  transform: rotate(-9deg);
}
.team-blue {
  bottom: 38px;
  right: 20px;
  color: #8bb9ff;
  background: #162336;
  border-color: #2d4c73;
  transform: rotate(7deg);
}
.versus {
  position: absolute;
  left: 49%;
  top: 42%;
  font:
    26px Anton,
    sans-serif;
  color: #858088;
  transform: rotate(-12deg);
}
.art-spark {
  position: absolute;
  top: 25px;
  right: 32px;
  color: #776473;
  font-size: 24px;
}
.mini-prompt {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 18px;
  width: 190px;
  border: 1px solid #48446b;
  background: #20202f;
  border-radius: 6px;
  transform: rotate(-8deg);
  box-shadow: 0 10px 20px #0008;
}
.mini-prompt > span {
  font-size: 7px;
  color: #a2a0cf;
  letter-spacing: 1px;
}
.mini-prompt strong {
  font:
    22px/1.15 Anton,
    sans-serif;
  letter-spacing: 0.4px;
}
.mini-prompt i {
  font-size: 7px;
  font-style: normal;
  letter-spacing: 0.8px;
  color: #9d9ebd;
}
.locked-chip {
  position: absolute;
  bottom: 22px;
  right: 17px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 8px;
  letter-spacing: 0.8px;
  color: #a5dba5;
  background: #1d2c22;
  border: 1px solid #39533c;
  border-radius: 5px;
  padding: 10px 13px;
  transform: rotate(4deg);
}
.locked-chip svg {
  width: 13px;
  height: 13px;
}
.winner-badge {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 170px;
  height: 156px;
  padding: 23px 16px;
  background: #25221a;
  border: 1px solid #5c4c2a;
  border-radius: 50%;
  transform: rotate(-8deg);
  box-shadow: 0 0 30px #88642810;
}
.winner-badge svg {
  width: 35px;
  height: 35px;
  color: #dfbd72;
  margin-bottom: 12px;
}
.winner-badge strong {
  font-size: 9px;
  letter-spacing: 1px;
  color: #dfc48a;
  white-space: nowrap;
}
.winner-badge > span {
  font-size: 7px;
  color: #9c8c71;
  letter-spacing: 2px;
  margin-top: 3px;
}
.win-points {
  position: absolute;
  right: 28px;
  top: 39px;
  font:
    30px Anton,
    sans-serif;
  color: #e2c578;
  transform: rotate(12deg);
}
.win-spark {
  position: absolute;
  left: 43px;
  bottom: 39px;
  color: #bd9b59;
  font-size: 31px;
}
.step-caption {
  display: flex;
  align-items: center;
  gap: 12px;
}
.step-caption > span {
  font-size: 10px;
  color: var(--red);
  font-weight: 600;
}
.step-caption h3 {
  font-size: 16px;
  letter-spacing: -0.4px;
  margin: 0;
}
.step > p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
  margin: 13px 0 0;
  padding-left: 27px;
  max-width: 340px;
}
.deck-section {
  background: #111114;
  border-block: 1px solid #252327;
  position: relative;
  overflow: hidden;
}
.deck-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 78% 50%, #481a2220, transparent 55%);
  pointer-events: none;
}
.deck-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.deck-copy h2 span {
  color: var(--red);
}
.deck-copy > p:not(.eyebrow) {
  max-width: 360px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
  margin: 27px 0;
}
.genre-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 405px;
}
.genre-picker button {
  background: transparent;
  border: 1px solid #39363d;
  border-radius: 4px;
  padding: 10px 18px;
  font-size: 11px;
  min-height: 41px;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s,
    transform 0.2s;
}
.genre-picker button[aria-pressed="true"] {
  background: #ed454d1c;
  color: #fc888f;
  border-color: #d54855;
}
.genre-picker button:active {
  transform: scale(0.96);
}
.deck-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #817b85;
  font-size: 10px;
  margin-top: 22px;
}
.deck-hint svg {
  width: 17px;
  height: 17px;
  transform: rotate(-25deg);
  color: #a399a7;
}
.deck-preview {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 10px;
  --genre-color: #f16b78;
}
.demo-stack {
  width: 290px;
  height: 363px;
  position: relative;
  margin-bottom: 29px;
  perspective: 1000px;
}
.demo-back {
  position: absolute;
  inset: 0;
  border-radius: 9px;
  border: 1px solid #54414b;
  background: #261c26;
  transition: transform 0.45s var(--ease);
}
.demo-back-one {
  transform: rotate(7deg);
  background: #222433;
  border-color: #434760;
}
.demo-back-two {
  transform: rotate(-9deg);
  background: #2b1f28;
  border-color: #633847;
}
.demo-card {
  position: absolute;
  inset: 0;
  border: 1px solid var(--genre-color);
  border-radius: 9px;
  background: linear-gradient(140deg, #2b1c25, #1a171f 70%);
  padding: 22px;
  box-shadow: 0 20px 45px #0008;
  display: flex;
  flex-direction: column;
  transform: rotate(-2deg);
  transition: border-color 0.3s;
}
.demo-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--genre-color);
  font-size: 10px;
  letter-spacing: 1px;
  font-weight: 600;
}
.difficulty {
  font-size: 7px;
  letter-spacing: 0.8px;
  color: #99c7a2;
  border: 1px solid #607e654d;
  background: #5e7f6620;
  padding: 4px 8px;
  border-radius: 3px;
}
.demo-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 17px;
}
.demo-card-content > svg {
  width: 30px;
  height: 30px;
  color: var(--genre-color);
}
.demo-card-content h3 {
  text-transform: uppercase;
  font:
    400 31px/1.18 Anton,
    sans-serif;
  letter-spacing: 0.3px;
  margin: 0;
  text-wrap: balance;
}
.demo-card-bottom {
  border-top: 1px solid #ffffff1a;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.demo-card-bottom > span {
  font-size: 7px;
  letter-spacing: 1.3px;
  color: #b0a0b0;
}
.demo-card-bottom > strong {
  color: var(--genre-color);
  font-size: 25px;
  line-height: 1;
  font-weight: 600;
}
.demo-card-bottom small {
  font-size: 8px;
  font-weight: 400;
}
.draw-button {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: none;
  min-height: 44px;
  font-size: 12px;
  transition: color 0.2s;
}
.draw-button svg {
  width: 17px;
  height: 17px;
  color: var(--red);
  transition: transform 0.25s;
}
.preview-label {
  color: #7e7681;
  font-size: 7px;
  letter-spacing: 1.7px;
  margin: 8px 0 0;
}
.wild-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.wild-visual {
  position: relative;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  isolation: isolate;
}
.wild-ring {
  position: absolute;
  width: 365px;
  height: 365px;
  border: 1px solid #40312c;
  border-radius: 50%;
  z-index: -1;
}
.wild-ring:before,
.wild-ring:after {
  content: "";
  position: absolute;
  border: 1px solid #322523;
  border-radius: 50%;
  inset: -27px;
}
.wild-ring:after {
  inset: 28px;
  border-style: dashed;
  transform: rotate(-30deg);
}
.wild-card {
  width: 247px;
  height: 330px;
  padding: 23px;
  border-radius: 7px;
  background: #ed7850;
  color: #21130f;
  transform: rotate(-11deg);
  box-shadow:
    9px 10px 0 #542d26,
    0 30px 60px #0008;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s var(--ease);
}
.wild-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 7px;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.wild-card > div:first-child > span:last-child {
  font-size: 18px;
  line-height: 1;
}
.wild-card > strong {
  font:
    400 79px/0.95 Anton,
    sans-serif;
  letter-spacing: -1px;
}
.wild-card > strong > span {
  -webkit-text-stroke: 1px #21130f;
  color: transparent;
}
.wild-card > div > svg {
  width: 19px;
  height: 19px;
}
.wild-label {
  position: absolute;
  right: 5px;
  top: 48px;
  font:
    11px Inter,
    sans-serif;
  letter-spacing: 2px;
  background: #0c0c0e;
  padding: 10px;
  color: #e17c5a;
  transform: rotate(11deg);
}
.wild-copy > p:not(.eyebrow) {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 350px;
  margin: 23px 0 24px;
}
.wild-rule {
  display: flex;
  gap: 16px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 19px 0;
}
.wild-rule > span {
  display: grid;
  place-items: center;
  border: 1px solid #493227;
  border-radius: 5px;
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  color: #ef986b;
  background: #2b1d15;
  font-size: 20px;
}
.wild-rule h3 {
  font-size: 13px;
  margin: 0 0 5px;
}
.wild-rule p {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.9;
  margin: 0;
}
.wild-rule > b {
  font:
    30px Anton,
    sans-serif;
  color: #ed8d69;
  margin-left: auto;
  text-align: center;
}
.wild-rule small {
  display: block;
  font:
    7px Inter,
    sans-serif;
  letter-spacing: 2px;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
  border-top: 1px solid var(--line);
  padding-top: 88px;
  padding-bottom: 100px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 23px 0;
  font-size: 12px;
  font-weight: 600;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > svg {
  width: 17px;
  height: 17px;
  color: #aca4ae;
  transition:
    transform 0.2s,
    color 0.2s;
}
.faq-list details[open] summary > svg {
  transform: rotate(45deg);
  color: var(--red);
}
.faq-list details[open] summary {
  color: #f5767e;
}
.faq-list details p {
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
  margin: 0 30px 23px 0;
}
.final-section {
  position: relative;
  overflow: hidden;
  background: #ef454c;
  color: #201012;
}
.final-section:before,
.final-section:after {
  content: "";
  position: absolute;
  border: 1px solid #250b1020;
  border-radius: 50%;
  width: 590px;
  height: 590px;
  right: -300px;
  top: -70px;
}
.final-section:after {
  right: auto;
  left: -280px;
  top: 120px;
  width: 460px;
  height: 460px;
}
.final-inner {
  position: relative;
  text-align: center;
  padding-block: 74px 81px;
}
.final-inner .eyebrow {
  justify-content: center;
  font-size: 8px;
  letter-spacing: 2.4px;
  margin-bottom: 23px;
}
.final-inner h2 {
  font-size: 80px;
  line-height: 1.07;
  letter-spacing: -0.3px;
}
.final-inner h2 span {
  color: #fff0e8;
}
.final-inner > p:not(.eyebrow) {
  font-size: 12px;
  margin: 22px 0 28px;
}
.button-light {
  background: var(--ink);
  color: #201012;
  border-color: var(--ink);
  font-size: 12px;
  min-width: 217px;
}
.final-spark {
  position: absolute;
  left: 10%;
  top: 30%;
  font-size: 57px;
  color: #7c2025;
  transform: rotate(12deg);
}
.final-coordinate {
  position: absolute;
  right: 0;
  bottom: 27px;
  font-size: 7px;
  letter-spacing: 1.4px;
}
.site-footer {
  min-height: 111px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-footer .wordmark {
  font-size: 22px;
}
.site-footer .brand-icon {
  width: 24px;
  height: 24px;
}
.site-footer > span {
  font-size: 9px;
  color: #8b858e;
}
.site-footer > a:last-child {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 8px;
  letter-spacing: 1.2px;
  color: #bcb7bf;
}
.site-footer > a:last-child span {
  color: var(--red);
  font-size: 19px;
}
.hero-enter {
  animation: hero-enter 0.85s var(--ease) both;
}
.hero-enter:nth-child(2) {
  animation-delay: 80ms;
}
.hero-enter:nth-child(3) {
  animation-delay: 160ms;
}
.hero-enter:nth-child(4) {
  animation-delay: 240ms;
}
.hero-enter:nth-child(5) {
  animation-delay: 320ms;
}
.hero-art {
  animation: art-enter 1.2s 0.15s var(--ease) both;
}
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover,
  .text-button:hover,
  .draw-button:hover {
    color: var(--red);
  }
  .button:not(:disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 25px #f0444d30;
    background: #fa5058;
  }
  .button-light:not(:disabled):hover {
    background: #fff;
    box-shadow: 0 7px 25px #7b182735;
  }
  .text-button:hover .play-circle {
    border-color: var(--red);
  }
  .genre-picker button:hover {
    border-color: var(--genre-color, #ed7581);
    background: #ffffff08;
  }
  .step:hover .team-red {
    transform: rotate(-13deg) translateY(-3px);
  }
  .step:hover .team-blue {
    transform: rotate(11deg) translateY(3px);
  }
  .team-chip {
    transition: transform 0.3s var(--ease);
  }
  .step:hover .winner-badge {
    transform: rotate(0) scale(1.04);
  }
  .winner-badge {
    transition: transform 0.3s var(--ease);
  }
  .draw-button:hover svg {
    transform: rotate(-15deg);
  }
  .deck-preview:hover .demo-back-one {
    transform: rotate(10deg);
  }
  .deck-preview:hover .demo-back-two {
    transform: rotate(-12deg);
  }
  .wild-visual:hover .wild-card {
    transform: rotate(-6deg) translateY(-10px);
  }
  .faq-list summary:hover {
    color: #f5767e;
  }
  .site-footer > a:last-child:hover {
    color: #fff;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes equalizer {
  to {
    transform: scaleY(0.4);
  }
}
@keyframes float-record {
  50% {
    transform: translateY(-10px);
  }
}
@keyframes float-card {
  50% {
    transform: rotate(-9deg) translateY(-8px);
  }
}
@keyframes float-tag {
  50% {
    transform: rotate(4deg) translateY(-5px);
  }
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
@keyframes nudge {
  50% {
    transform: translateY(4px);
  }
}
@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes art-enter {
  from {
    opacity: 0;
    transform: translateY(28px) rotate(4deg) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0) scale(1);
  }
}
@keyframes sticker-pop {
  from {
    opacity: 0;
    transform: rotate(-15deg) scale(0.7);
  }
  to {
    opacity: 1;
    transform: rotate(14deg) scale(1);
  }
}
.motion-paused *,
.motion-paused *:before,
.motion-paused *:after {
  animation-play-state: paused !important;
  scroll-behavior: auto !important;
}
.motion-paused .hero-enter,
.motion-paused .hero-art,
.motion-paused .heat-sticker {
  animation: none !important;
}
.motion-paused .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
.motion-paused .hero-card-stack {
  animation: none;
}
.motion-paused .wild-card,
.motion-paused .team-chip,
.motion-paused .winner-badge,
.motion-paused .button,
.motion-paused .demo-back {
  transition: none;
}
@media (min-width: 1500px) {
  .hero {
    min-height: 790px;
  }
  .hero h1 {
    font-size: 118px;
  }
  .hero-art {
    margin-left: 12px;
  }
  .vinyl-wrap {
    width: 440px;
    height: 440px;
    right: -15px;
    top: 18px;
  }
  .hero-card-stack {
    left: 58px;
    top: 185px;
  }
  .heat-sticker {
    right: 0;
    bottom: -2px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 72px);
  }
  .hero {
    min-height: 710px;
    grid-template-columns: 1.07fr 1fr;
  }
  .hero h1 {
    font-size: 8.1vw;
    letter-spacing: -1px;
  }
  .hero-art {
    margin-left: -50px;
    transform-origin: left center;
  }
  .vinyl-wrap {
    width: 345px;
    height: 345px;
    right: -10px;
    top: 72px;
  }
  .hero-card-stack {
    width: 215px;
    height: 295px;
    left: 50px;
    top: 202px;
  }
  .hero-prompt p {
    font-size: 34px;
    margin-top: 12px;
  }
  .card-note {
    margin-top: 18px;
    width: 24px;
  }
  .card-bottom {
    padding-top: 10px;
  }
  .heat-sticker {
    width: 110px;
    height: 110px;
    right: -7px;
    bottom: 26px;
  }
  .heat-sticker span {
    font-size: 8px;
  }
  .heat-sticker strong {
    font-size: 22px;
  }
  .record-orbit {
    width: 420px;
    height: 420px;
    top: 60px;
    left: 20px;
  }
  .art-coordinate {
    left: 60px;
    top: 49px;
  }
  .floating-tag {
    top: 40px;
    right: 0;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-footnote {
    font-size: 8px;
  }
  .hero-buttons {
    gap: 20px;
  }
  .hero-buttons .button {
    gap: 15px;
    padding-inline: 18px;
  }
  .star-one {
    left: 44px;
    top: 131px;
  }
  .star-two {
    right: 18px;
    bottom: 159px;
  }
  .steps {
    gap: 23px;
  }
  .step-caption {
    gap: 8px;
  }
  .step-caption h3 {
    font-size: 14px;
  }
  .step > p {
    padding-left: 22px;
    font-size: 11px;
  }
  .team-chip {
    font-size: 8px;
    padding: 13px 12px;
  }
  .team-red {
    left: 16px;
  }
  .team-blue {
    right: 15px;
  }
  .mini-prompt {
    width: 171px;
  }
  .locked-chip {
    font-size: 7px;
    padding-inline: 9px;
    right: 6px;
  }
  .win-points {
    right: 15px;
  }
  .win-spark {
    left: 21px;
  }
  .deck-inner {
    gap: 45px;
  }
  .wild-section {
    gap: 55px;
  }
  .wild-ring {
    width: 305px;
    height: 305px;
  }
  .faq-section {
    gap: 55px;
  }
  .final-inner h2 {
    font-size: 73px;
  }
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .site-header {
    height: 78px;
  }
  .desktop-nav {
    padding: 0;
    gap: 22px;
    font-size: 11px;
  }
  .header-actions {
    gap: 10px;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: unset;
    padding-top: 55px;
    padding-bottom: 105px;
  }
  .hero-copy {
    padding: 0;
    text-align: center;
  }
  .hero-copy .eyebrow,
  .hero-buttons,
  .hero-footnote {
    justify-content: center;
  }
  .hero h1 {
    font-size: clamp(70px, 12.5vw, 99px);
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-art {
    width: 480px;
    max-width: 100%;
    height: 520px;
    margin: 17px auto 0;
    transform-origin: center;
  }
  .vinyl-wrap {
    width: 365px;
    height: 365px;
    right: 10px;
    top: 47px;
  }
  .hero-card-stack {
    width: 220px;
    height: 300px;
    left: 55px;
    top: 171px;
  }
  .record-orbit {
    left: 20px;
    top: 40px;
  }
  .art-coordinate {
    top: 50px;
    left: 41px;
  }
  .floating-tag {
    right: 15px;
    top: 32px;
  }
  .heat-sticker {
    right: 8px;
    bottom: 21px;
    width: 124px;
    height: 124px;
  }
  .heat-sticker span {
    font-size: 9px;
  }
  .heat-sticker strong {
    font-size: 25px;
  }
  .star-one {
    left: 34px;
    top: 96px;
  }
  .star-two {
    right: 33px;
    bottom: 147px;
  }
  .hero-footnote {
    font-size: 10px;
    margin-top: 27px;
  }
  .hero-bottom {
    bottom: 27px;
  }
  .section {
    padding-block: 80px;
  }
  h2 {
    font-size: 47px;
  }
  .section-heading {
    align-items: flex-start;
    gap: 15px;
  }
  .section-heading > p {
    font-size: 11px;
    margin-top: 43px;
  }
  .steps {
    gap: 18px;
    grid-template-columns: 1fr;
  }
  .step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 28px;
    align-items: center;
    margin-bottom: 15px;
  }
  .step-art {
    grid-row: span 2;
    height: 200px;
    margin: 0;
  }
  .step-caption {
    align-self: end;
  }
  .step > p {
    align-self: start;
    padding-left: 0;
    font-size: 12px;
    margin-top: 13px;
  }
  .step-caption h3 {
    font-size: 16px;
  }
  .team-chip {
    font-size: 9px;
    padding: 14px 16px;
  }
  .team-red {
    top: 42px;
  }
  .team-blue {
    bottom: 31px;
  }
  .deck-inner {
    gap: 38px;
    grid-template-columns: 1fr 1fr;
  }
  .deck-copy h2 {
    font-size: 46px;
  }
  .deck-copy > p:not(.eyebrow) {
    font-size: 12px;
  }
  .genre-picker {
    gap: 7px;
  }
  .genre-picker button {
    padding: 9px 12px;
    font-size: 10px;
  }
  .deck-hint {
    font-size: 8px;
    align-items: flex-start;
  }
  .deck-hint svg {
    width: 14px;
  }
  .demo-stack {
    width: 245px;
    height: 335px;
  }
  .demo-card {
    padding: 18px;
  }
  .demo-card-content h3 {
    font-size: 27px;
  }
  .deck-copy .eyebrow {
    font-size: 8px;
    letter-spacing: 1.3px;
  }
  .wild-section {
    gap: 40px;
  }
  .wild-visual {
    height: 395px;
  }
  .wild-card {
    width: 200px;
    height: 287px;
    padding: 20px;
  }
  .wild-card > strong {
    font-size: 67px;
  }
  .wild-card > div {
    font-size: 5px;
  }
  .wild-ring {
    width: 240px;
    height: 240px;
  }
  .wild-label {
    font-size: 9px;
    right: -10px;
    top: 35px;
  }
  .wild-copy h2 {
    font-size: 49px;
  }
  .wild-copy .eyebrow {
    font-size: 8px;
    letter-spacing: 1.5px;
  }
  .wild-copy > p:not(.eyebrow) {
    font-size: 12px;
  }
  .wild-rule {
    gap: 10px;
  }
  .wild-rule p {
    font-size: 9px;
  }
  .wild-rule > span {
    width: 29px;
    height: 29px;
  }
  .wild-rule > b {
    font-size: 25px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .faq-intro h2 br {
    display: none;
  }
  .faq-intro h2 {
    font-size: 44px;
  }
  .faq-list summary {
    font-size: 13px;
  }
  .final-inner {
    padding-block: 65px;
  }
  .final-inner h2 {
    font-size: 69px;
  }
  .final-spark {
    font-size: 35px;
    left: 2%;
    top: 18%;
  }
  .site-footer > span {
    font-size: 8px;
  }
  .site-footer .wordmark {
    font-size: 20px;
  }
  .site-footer > a:last-child {
    font-size: 7px;
    gap: 9px;
  }
  .site-footer {
    gap: 15px;
  }
}
@media (max-width: 560px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 72px;
  }
  .wordmark {
    font-size: 24px;
  }
  .brand-icon {
    width: 25px;
    height: 25px;
    margin-right: 7px;
  }
  .desktop-nav {
    display: none;
  }
  .header-actions {
    gap: 8px;
  }
  .button-small {
    font-size: 11px;
    gap: 12px;
    min-height: 38px;
    padding: 10px 12px;
  }
  .motion-toggle {
    width: 32px;
  }
  .hero {
    padding-top: 43px;
    padding-bottom: 92px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1.55px;
    gap: 8px;
    margin-bottom: 22px;
  }
  .hero h1 {
    font-size: clamp(52px, 13.8vw, 76px);
    letter-spacing: -0.5px;
    line-height: 1.09;
    margin-bottom: 23px;
  }
  .hero-description {
    font-size: 12px;
    line-height: 1.9;
  }
  .desktop-break {
    display: none;
  }
  .hero-buttons {
    gap: 20px;
  }
  .hero-buttons .button {
    font-size: 11px;
    min-height: 49px;
    padding-inline: 16px;
    gap: 15px;
  }
  .text-button {
    font-size: 10px;
    gap: 8px;
  }
  .play-circle {
    width: 28px;
    height: 28px;
  }
  .hero-footnote {
    font-size: 8px;
    gap: 8px;
    margin-top: 24px;
  }
  .hero-art {
    height: 425px;
    margin-top: 18px;
    width: 360px;
  }
  .vinyl-wrap {
    width: 286px;
    height: 286px;
    right: 2px;
    top: 39px;
  }
  .record-label strong {
    font-size: 28px;
    letter-spacing: -1.5px;
    margin: 8px 0 9px;
  }
  .record-label > span {
    font-size: 3.6px;
    letter-spacing: 0.5px;
  }
  .record-label {
    border-width: 4px;
  }
  .record-label i {
    width: 5px;
    height: 5px;
    box-shadow: 0 0 0 2px #b82d3a;
  }
  .hero-card-stack {
    width: 178px;
    height: 248px;
    left: 37px;
    top: 146px;
  }
  .hero-prompt {
    padding: 14px;
  }
  .hero-prompt p {
    font-size: 28px;
    margin: 12px 0 13px;
  }
  .card-top {
    font-size: 6px;
    letter-spacing: 0.8px;
  }
  .card-top > span:last-child {
    font-size: 5px;
  }
  .card-note {
    width: 21px;
    height: 21px;
    margin-top: 17px;
  }
  .card-bottom {
    padding-top: 10px;
  }
  .card-bottom > span {
    font-size: 4px;
    letter-spacing: 0.25px;
  }
  .card-bottom b {
    font-size: 17px;
  }
  .card-bottom small {
    font-size: 5px;
  }
  .back-card {
    font-size: 7px;
  }
  .back-card-blue {
    transform: rotate(20deg) translate(29px, -18px);
  }
  .back-card-red {
    transform: rotate(9deg) translate(16px, -8px);
  }
  .back-card-blue svg {
    width: 55px;
    height: 55px;
  }
  .heat-sticker {
    width: 100px;
    height: 100px;
    right: 0;
    bottom: 12px;
  }
  .heat-sticker span {
    font-size: 7px;
  }
  .heat-sticker strong {
    font-size: 20px;
  }
  .floating-tag {
    top: 21px;
    right: 5px;
    font-size: 6px;
    letter-spacing: 1.1px;
    gap: 6px;
    padding: 8px 9px;
  }
  .record-orbit {
    width: 330px;
    height: 330px;
    top: 30px;
    left: 8px;
  }
  .star-one {
    left: 18px;
    top: 70px;
    font-size: 30px;
  }
  .star-two {
    right: 10px;
    bottom: 123px;
    font-size: 22px;
  }
  .art-coordinate {
    top: 20px;
    left: 30px;
    font-size: 6px;
    letter-spacing: 1.2px;
  }
  .hero-bottom {
    bottom: 21px;
    padding-top: 16px;
  }
  .hero-bottom p {
    font-size: 6px;
    letter-spacing: 0.8px;
  }
  .hero-bottom strong {
    font-size: 13px;
    margin-left: 7px;
    margin-right: 4px;
  }
  .hero-bottom a {
    font-size: 6px;
    letter-spacing: 0.7px;
    gap: 8px;
  }
  .hero-bottom a span {
    font-size: 17px;
  }
  .marquee {
    padding: 13px 0;
  }
  .marquee-track > span {
    font-size: 20px;
    gap: 23px;
  }
  .marquee i {
    font-size: 23px;
  }
  .section {
    padding-block: 64px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.7px;
    margin-bottom: 18px;
  }
  h2 {
    font-size: 42px;
  }
  .section-heading {
    display: block;
    margin-bottom: 32px;
  }
  .section-heading > p {
    margin: 20px 0 0;
    font-size: 12px;
  }
  .section-heading > p br {
    display: none;
  }
  .steps {
    gap: 32px;
  }
  .step {
    display: block;
    margin: 0;
  }
  .step-art {
    height: 217px;
    margin-bottom: 20px;
  }
  .step-caption {
    gap: 11px;
  }
  .step-caption h3 {
    font-size: 17px;
  }
  .step > p {
    font-size: 12px;
    max-width: 100%;
    padding-left: 26px;
    margin-top: 10px;
  }
  .team-red {
    left: 35px;
    top: 45px;
  }
  .team-blue {
    right: 27px;
    bottom: 37px;
  }
  .team-chip {
    font-size: 10px;
    padding: 14px 20px;
  }
  .mini-prompt {
    width: 190px;
  }
  .locked-chip {
    right: 25px;
    font-size: 8px;
    padding: 10px 12px;
  }
  .win-points {
    right: 47px;
  }
  .win-spark {
    left: 57px;
  }
  .deck-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .deck-copy h2 {
    font-size: 47px;
  }
  .deck-copy > p:not(.eyebrow) {
    font-size: 12px;
    margin-block: 22px;
    max-width: 330px;
  }
  .genre-picker {
    max-width: 360px;
    gap: 8px;
  }
  .genre-picker button {
    font-size: 11px;
    padding: 10px 16px;
    min-height: 42px;
  }
  .deck-hint {
    font-size: 9px;
  }
  .demo-stack {
    width: 264px;
    height: 345px;
  }
  .demo-card {
    padding: 21px;
  }
  .demo-card-content h3 {
    font-size: 31px;
  }
  .deck-preview {
    padding-top: 0;
  }
  .wild-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .wild-visual {
    height: 350px;
    order: 2;
  }
  .wild-card {
    width: 210px;
    height: 283px;
  }
  .wild-card > strong {
    font-size: 65px;
  }
  .wild-label {
    right: 15px;
    top: 19px;
  }
  .wild-ring {
    width: 272px;
    height: 272px;
  }
  .wild-copy h2 {
    font-size: 49px;
  }
  .wild-copy h2 br {
    display: none;
  }
  .wild-copy > p:not(.eyebrow) {
    max-width: 100%;
  }
  .wild-rule p {
    font-size: 11px;
  }
  .wild-rule h3 {
    font-size: 14px;
  }
  .wild-rule > span {
    width: 35px;
    height: 35px;
  }
  .wild-rule {
    gap: 14px;
  }
  .wild-rule > b {
    font-size: 31px;
  }
  .faq-section {
    gap: 28px;
  }
  .faq-intro h2 {
    font-size: 39px;
  }
  .faq-intro h2 br {
    display: block;
  }
  .faq-list summary {
    font-size: 12px;
    padding-block: 22px;
  }
  .faq-list details p {
    font-size: 11px;
  }
  .final-inner {
    padding-block: 61px 75px;
  }
  .final-inner .eyebrow {
    font-size: 6px;
    letter-spacing: 1.7px;
    margin-bottom: 23px;
  }
  .final-inner h2 {
    font-size: 53px;
    line-height: 1.1;
  }
  .final-inner > p:not(.eyebrow) {
    font-size: 10px;
    line-height: 1.9;
    margin: 19px 0 25px;
  }
  .final-spark {
    font-size: 25px;
    left: 0;
    top: 18px;
  }
  .final-coordinate {
    font-size: 6px;
    bottom: 20px;
    right: 0;
  }
  .button-light {
    min-height: 50px;
    font-size: 11px;
    gap: 22px;
  }
  .site-footer {
    padding-block: 30px;
    min-height: 140px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
  }
  .site-footer > span {
    grid-column: 1/-1;
    grid-row: 2;
    justify-self: center;
  }
  .site-footer > a:last-child {
    justify-self: end;
  }
  .site-footer .wordmark {
    font-size: 23px;
  }
  .site-footer .brand-icon {
    width: 24px;
    height: 24px;
  }
  .site-footer > a:last-child {
    font-size: 7px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-enter,
  .hero-art,
  .heat-sticker {
    opacity: 1;
  }
  .hero-art {
    transform: none;
  }
}
.tab-hidden *,
.tab-hidden *:before,
.tab-hidden *:after {
  animation-play-state: paused !important;
}
.hero-art {
  transition: translate 0.35s var(--ease);
}
.motion-paused .hero-art {
  translate: 0 0 !important;
}
.motion-toggle:disabled {
  cursor: default;
}
/* Contain the deliberately rotated artwork and ticker, without a horizontal scrollbar. */
main {
  overflow-x: clip;
}
.art-coordinate {
  top: 110px;
  left: 30px;
}
.demo-card-content h3.long-prompt {
  font-size: 23px;
  line-height: 1.17;
}
@media (min-width: 561px) and (max-width: 700px) {
  .deck-inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .deck-copy > p:not(.eyebrow) {
    max-width: 430px;
  }
  .deck-copy h2 {
    font-size: 52px;
  }
  .genre-picker {
    max-width: 470px;
  }
  .demo-stack {
    width: 280px;
    height: 360px;
  }
  .deck-hint {
    font-size: 10px;
  }
  .wild-section {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .wild-visual {
    order: 2;
    height: 370px;
  }
  .wild-copy > p:not(.eyebrow) {
    max-width: 100%;
  }
  .wild-copy h2 br {
    display: none;
  }
  .wild-rule p {
    font-size: 11px;
  }
  .wild-label {
    right: 15%;
    top: 36px;
  }
}
@media (max-width: 560px) {
  .art-coordinate {
    top: 105px;
    left: 15px;
  }
  .demo-card-content h3.long-prompt {
    font-size: 23px;
  }
}
.motion-paused {
  scroll-behavior: auto;
}
.hero-copy {
  min-width: 0;
}
@media (max-width: 800px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 370px) {
  .hero-art {
    height: 380px;
  }
  .hero-card-stack {
    left: 26px;
    top: 129px;
    width: 160px;
    height: 226px;
  }
  .hero-prompt p {
    font-size: 25px;
  }
  .card-note {
    margin-top: 12px;
    width: 19px;
    height: 19px;
  }
  .hero-prompt {
    padding: 12px;
  }
  .vinyl-wrap {
    width: 255px;
    height: 255px;
    top: 36px;
  }
  .record-orbit {
    width: 270px;
    height: 270px;
    top: 36px;
    left: 4px;
  }
  .heat-sticker {
    width: 87px;
    height: 87px;
    bottom: 10px;
    right: 0;
  }
  .heat-sticker span {
    font-size: 6px;
  }
  .heat-sticker strong {
    font-size: 17px;
  }
  .hero-buttons {
    gap: 13px;
  }
  .hero-footnote {
    font-size: 7px;
  }
  .hero-bottom a {
    font-size: 5px;
    gap: 4px;
  }
  .wild-copy h2 {
    font-size: 42px;
  }
  .faq-intro h2 {
    font-size: 37px;
  }
  .final-inner h2 {
    font-size: 46px;
  }
}
