:root {
  color-scheme: dark;
  --bg: #0b0e13;
  --bg-alt: #121820;
  --panel: rgba(14, 19, 27, 0.92);
  --panel-border: rgba(218, 169, 71, 0.24);
  --text: #fff7e6;
  --muted: #c9c1ae;
  --cream: #fff7e6;
  --paper: #f5ead7;
  --paper-strong: #fffaf0;
  --ink: #15120d;
  --ink-soft: #51483c;
  --gold: #d9a947;
  --gold-soft: #f1d68d;
  --red: #b73d46;
  --green: #0f3a2f;
  --green-bright: #1f6a4d;
  --link: #f1d68d;
  --shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --content: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--text);
  background:
    repeating-linear-gradient(135deg, rgba(217, 169, 71, 0.08) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(225deg, rgba(217, 169, 71, 0.06) 0 1px, transparent 1px 24px),
    linear-gradient(180deg, #11161d 0%, var(--bg) 100%);
  letter-spacing: 0;
}

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

a {
  color: var(--link);
}

button,
input,
select,
textarea {
  font: inherit;
}

.shell {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
  padding: 32px 0 56px;
}

.hero,
.panel {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero {
  padding: 28px;
  margin-bottom: 18px;
}

.eyebrow,
.kicker {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.05;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.2rem;
  font-weight: 500;
}

h2 {
  margin: 0 0 12px;
  font-size: 1.45rem;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

p,
li {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1rem;
}

.hero p {
  margin: 14px 0 0;
  max-width: 65ch;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button,
.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease,
    border-color 160ms ease;
}

.nav a.primary,
.button.primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #171006;
  border: 1px solid rgba(255, 247, 230, 0.18);
}

.nav a.secondary,
.button.secondary {
  border: 1px solid rgba(255, 247, 230, 0.22);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.button:hover,
.nav a:hover {
  transform: translateY(-1px);
}

.grid {
  display: grid;
  gap: 18px;
}

.panel {
  padding: 24px 24px 8px;
}

.panel + .panel {
  margin-top: 18px;
}

ul {
  margin: 0 0 18px 20px;
  padding: 0;
}

.meta {
  color: #dfc681;
  font-size: 0.92rem;
}

.notice {
  margin-top: 14px;
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(217, 169, 71, 0.08);
}

.footer {
  margin-top: 22px;
  color: #aeb7c4;
  font-size: 0.92rem;
}

code {
  padding: 1px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff6d6;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.92em;
}

body.landing-page {
  color-scheme: light dark;
  color: var(--ink);
  background: var(--paper);
}

.landing-page a {
  color: inherit;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px max(24px, calc((100vw - var(--content)) / 2));
  color: var(--cream);
}

.brand-link,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font-weight: 900;
}

.brand-link {
  min-height: 54px;
  padding: 5px 10px 5px 5px;
  border: 1px solid rgba(255, 247, 230, 0.16);
  border-radius: var(--radius);
  background: rgba(11, 14, 19, 0.58);
  backdrop-filter: blur(14px);
}

.brand-link img,
.footer-brand img {
  border-radius: var(--radius);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 247, 230, 0.14);
  border-radius: var(--radius);
  background: rgba(11, 14, 19, 0.48);
  backdrop-filter: blur(14px);
}

.site-nav a {
  min-height: 38px;
  padding: 9px 12px;
  border-radius: 6px;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 800;
}

.site-nav a:hover {
  background: rgba(255, 247, 230, 0.1);
}

.landing-hero {
  position: relative;
  min-height: min(760px, calc(100svh - 48px));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 116px max(24px, calc((100vw - var(--content)) / 2)) 84px;
  color: var(--cream);
  background: var(--bg);
}

@supports not (height: 100svh) {
  .landing-hero {
    min-height: min(760px, calc(100vh - 48px));
  }
}

.landing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 14, 19, 0.96), rgba(11, 14, 19, 0.72) 46%, rgba(11, 14, 19, 0.18)),
    linear-gradient(0deg, rgba(11, 14, 19, 0.64), transparent 42%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
}

.hero-content h1 {
  font-size: 6rem;
  color: var(--cream);
  text-wrap: balance;
}

.hero-copy {
  margin: 22px 0 0;
  max-width: 620px;
  color: rgba(255, 247, 230, 0.82);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-actions .button {
  min-width: 168px;
}

.hero-card-stack {
  position: absolute;
  z-index: 1;
  right: max(20px, calc((100vw - var(--content)) / 2));
  bottom: 28px;
  width: 430px;
  height: 300px;
  pointer-events: none;
}

.hero-card-stack img {
  position: absolute;
  width: 150px;
  border-radius: 12px;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.35);
}

.hero-card-stack img:nth-child(1) {
  left: 18px;
  top: 72px;
  rotate: -10deg;
}

.hero-card-stack img:nth-child(2) {
  left: 144px;
  top: 34px;
  rotate: 5deg;
}

.hero-card-stack img:nth-child(3) {
  left: 268px;
  top: 74px;
  rotate: 12deg;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 24px max(24px, calc((100vw - var(--content)) / 2));
  background: var(--paper-strong);
  border-bottom: 1px solid rgba(21, 18, 13, 0.12);
}

.proof-strip div {
  padding: 0 22px;
  border-left: 1px solid rgba(21, 18, 13, 0.12);
}

.proof-strip div:first-child {
  padding-left: 0;
  border-left: 0;
}

.proof-strip strong {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
}

.proof-strip span {
  display: block;
  margin-top: 5px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.section {
  padding: 92px max(24px, calc((100vw - var(--content)) / 2));
}

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

.section-heading h2,
.download-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 500;
  text-wrap: balance;
}

.section-heading p:not(.kicker),
.download-copy p {
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.play-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 54px;
  align-items: center;
  background: var(--paper);
}

.web-stage {
  overflow: hidden;
  border: 1px solid rgba(21, 18, 13, 0.16);
  border-radius: var(--radius);
  background: #10141a;
  box-shadow: 0 24px 54px rgba(65, 47, 19, 0.22);
}

.stage-topbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  color: rgba(255, 247, 230, 0.74);
  background: #10141a;
  border-bottom: 1px solid rgba(255, 247, 230, 0.1);
  font-size: 0.86rem;
  font-weight: 800;
}

.table-felt {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(255, 247, 230, 0.08) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(225deg, rgba(255, 247, 230, 0.06) 0 1px, transparent 1px 34px),
    linear-gradient(145deg, #123a30, #0c201d 62%, #15120d);
}

.seat {
  position: absolute;
  min-width: 108px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 247, 230, 0.18);
  border-radius: var(--radius);
  color: rgba(255, 247, 230, 0.82);
  background: rgba(11, 14, 19, 0.38);
  font-size: 0.88rem;
  font-weight: 800;
}

.seat-top {
  top: 24px;
  left: 50%;
  translate: -50% 0;
}

.seat-left {
  top: 46%;
  left: 20px;
}

.seat-right {
  top: 46%;
  right: 20px;
}

.center-bid {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 116px;
  min-height: 92px;
  display: grid;
  place-items: center;
  translate: -50% -50%;
  border: 1px solid rgba(217, 169, 71, 0.42);
  border-radius: var(--radius);
  color: var(--cream);
  background: rgba(11, 14, 19, 0.52);
}

.center-bid span {
  align-self: end;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.center-bid strong {
  align-self: start;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
}

.table-card {
  position: absolute;
  width: 96px;
  border-radius: 8px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
}

.card-one {
  top: 122px;
  left: 48%;
  rotate: -11deg;
}

.card-two {
  top: 132px;
  left: 58%;
  rotate: 10deg;
}

.card-three {
  top: 190px;
  left: 41%;
  rotate: 7deg;
}

.player-hand {
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 276px;
  height: 168px;
  translate: -50% 0;
}

.player-hand img {
  position: absolute;
  width: 96px;
  border-radius: 8px;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.34);
}

.player-hand img:nth-child(1) {
  left: 8px;
  bottom: 0;
  rotate: -10deg;
}

.player-hand img:nth-child(2) {
  left: 90px;
  bottom: 16px;
}

.player-hand img:nth-child(3) {
  right: 8px;
  bottom: 0;
  rotate: 10deg;
}

.modes-section {
  background: #ead9bf;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.feature-card {
  min-height: 260px;
  padding: 22px;
  border: 1px solid rgba(21, 18, 13, 0.13);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.feature-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 32px;
  margin-bottom: 36px;
  border-radius: 6px;
  color: #180f05;
  background: var(--gold-soft);
  font-weight: 900;
}

.feature-card h3 {
  color: var(--ink);
  font-size: 1.24rem;
}

.feature-card p {
  margin: 0;
  color: var(--ink-soft);
}

.download-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
  background:
    repeating-linear-gradient(135deg, rgba(217, 169, 71, 0.09) 0 1px, transparent 1px 30px),
    repeating-linear-gradient(225deg, rgba(217, 169, 71, 0.06) 0 1px, transparent 1px 30px),
    #0b0e13;
}

.download-section .kicker {
  color: var(--gold-soft);
}

.download-copy {
  max-width: 640px;
}

.download-copy h2 {
  color: var(--cream);
}

.download-copy p {
  color: rgba(255, 247, 230, 0.76);
}

.phone-frame {
  width: min(310px, 100%);
  aspect-ratio: 9 / 19;
  justify-self: center;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(255, 247, 230, 0.22);
  border-radius: 28px;
  background: #05070a;
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.42);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.store-button {
  min-width: 178px;
  min-height: 58px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 247, 230, 0.18);
  border-radius: var(--radius);
  color: var(--cream);
  background: rgba(255, 247, 230, 0.07);
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.store-button:hover {
  transform: translateY(-1px);
  background: rgba(255, 247, 230, 0.12);
}

.store-button span {
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.store-button strong {
  font-size: 1.08rem;
}

.suit-row {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.suit-row img {
  width: 42px;
  height: 42px;
  padding: 8px;
  border: 1px solid rgba(217, 169, 71, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 247, 230, 0.06);
  object-fit: contain;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px max(24px, calc((100vw - var(--content)) / 2));
  color: var(--cream);
  background: #080a0d;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.site-footer a {
  color: rgba(255, 247, 230, 0.78);
  text-decoration: none;
  font-weight: 800;
}

.site-footer a:hover {
  color: var(--cream);
}

.aaa-page {
  --bg: #05070a;
  --bg-alt: #0b1114;
  --panel: rgba(9, 13, 17, 0.92);
  --panel-border: rgba(226, 185, 95, 0.22);
  --text: #f9f1df;
  --muted: #afa795;
  --cream: #fff5df;
  --paper: #070a0d;
  --paper-strong: #0d1115;
  --ink: #f9f1df;
  --ink-soft: #b7ae9c;
  --gold: #d7a94c;
  --gold-soft: #f3d88d;
  --green: #0a211b;
  --green-bright: #1b5d45;
  color: var(--cream);
  background:
    repeating-linear-gradient(90deg, rgba(243, 216, 141, 0.035) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(0deg, rgba(243, 216, 141, 0.028) 0 1px, transparent 1px 80px),
    #05070a;
}

.aaa-page .site-header {
  position: fixed;
}

.aaa-page .brand-link,
.aaa-page .site-nav {
  border-color: rgba(243, 216, 141, 0.16);
  background: rgba(5, 7, 10, 0.72);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.aaa-page .landing-hero {
  min-height: min(820px, 100svh);
  background:
    linear-gradient(135deg, #05070a 0%, #09100f 55%, #040608 100%);
}

.aaa-page .landing-hero::after {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.98), rgba(5, 7, 10, 0.84) 42%, rgba(5, 7, 10, 0.34) 100%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.16), rgba(5, 7, 10, 0.92));
}

.aaa-page .hero-bg {
  opacity: 0.34;
  filter: saturate(0.72) contrast(1.2);
  object-position: center;
}

.aaa-page .hero-content {
  width: min(690px, 100%);
}

.aaa-page .hero-content h1 {
  max-width: 720px;
  font-size: 5.8rem;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}

.aaa-page .hero-copy {
  max-width: 570px;
  color: rgba(255, 245, 223, 0.76);
  font-size: 1.08rem;
}

.aaa-page .hero-card-stack {
  right: max(24px, calc((100vw - var(--content)) / 2));
  bottom: 70px;
  width: 520px;
  height: 420px;
}

.aaa-page .hero-card-stack::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 8px;
  bottom: 10px;
  height: 74%;
  border: 1px solid rgba(243, 216, 141, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 34%),
    rgba(4, 8, 9, 0.42);
  transform: skewY(-3deg);
}

.aaa-page .hero-card-stack img {
  border-radius: 14px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.58);
}

.aaa-page .hero-card-stack img:nth-child(1) {
  left: 188px;
  top: 0;
  z-index: 3;
  width: 210px;
  rotate: 4deg;
}

.aaa-page .hero-card-stack img:nth-child(2) {
  left: 72px;
  top: 116px;
  z-index: 2;
  width: 156px;
  rotate: -12deg;
}

.aaa-page .hero-card-stack img:nth-child(3) {
  left: 328px;
  top: 132px;
  z-index: 1;
  width: 150px;
  rotate: 11deg;
}

.aaa-page .proof-strip {
  color: var(--cream);
  background: #080c10;
  border-top: 1px solid rgba(243, 216, 141, 0.14);
  border-bottom: 1px solid rgba(243, 216, 141, 0.12);
}

.aaa-page .proof-strip div {
  border-left-color: rgba(243, 216, 141, 0.13);
}

.aaa-page .proof-strip strong {
  color: var(--cream);
}

.aaa-page .proof-strip span {
  color: rgba(255, 245, 223, 0.62);
}

.aaa-page .section {
  background: #05070a;
}

.aaa-page .section-heading h2,
.aaa-page .download-copy h2 {
  color: var(--cream);
}

.aaa-page .section-heading p:not(.kicker),
.aaa-page .download-copy p {
  color: rgba(255, 245, 223, 0.68);
}

.aaa-page .play-section {
  background:
    linear-gradient(180deg, #080c10 0%, #05070a 100%);
}

.aaa-page .web-stage {
  border-color: rgba(243, 216, 141, 0.18);
  background: #05070a;
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.52);
}

.aaa-page .stage-topbar {
  color: rgba(255, 245, 223, 0.7);
  background: linear-gradient(90deg, #0b0f13, #111815);
  border-bottom-color: rgba(243, 216, 141, 0.14);
}

.aaa-page .table-felt {
  background:
    repeating-linear-gradient(135deg, rgba(243, 216, 141, 0.04) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(225deg, rgba(243, 216, 141, 0.032) 0 1px, transparent 1px 38px),
    linear-gradient(145deg, #071f19, #07100f 56%, #07080b);
}

.aaa-page .seat,
.aaa-page .center-bid {
  border-color: rgba(243, 216, 141, 0.2);
  background: rgba(5, 7, 10, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 245, 223, 0.06);
}

.aaa-page .modes-section {
  background: #090d11;
}

.aaa-page .feature-card {
  border-color: rgba(243, 216, 141, 0.13);
  border-top-color: rgba(243, 216, 141, 0.64);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 38%),
    #0f1519;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
}

.aaa-page .feature-card h3 {
  color: var(--cream);
}

.aaa-page .feature-card p {
  color: rgba(255, 245, 223, 0.64);
}

.aaa-page .download-section {
  background:
    repeating-linear-gradient(90deg, rgba(243, 216, 141, 0.04) 0 1px, transparent 1px 78px),
    linear-gradient(135deg, #05070a, #071411 64%, #05070a);
}

.aaa-page .phone-frame {
  border-color: rgba(243, 216, 141, 0.2);
  background: #030507;
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.6);
}

.aaa-page .store-button {
  border-color: rgba(243, 216, 141, 0.18);
  background: rgba(255, 245, 223, 0.06);
}

.aaa-page .site-footer {
  background: #040609;
  border-top: 1px solid rgba(243, 216, 141, 0.1);
}

@media (max-width: 1020px) {
  .aaa-page .hero-card-stack {
    opacity: 0.4;
    right: -108px;
  }
}

@media (max-width: 720px) {
  .aaa-page .site-header {
    position: absolute;
  }

  .aaa-page .landing-hero {
    min-height: calc(100svh - 38px);
  }

  .aaa-page .landing-hero::after {
    background:
      linear-gradient(90deg, rgba(5, 7, 10, 0.98), rgba(5, 7, 10, 0.82)),
      linear-gradient(180deg, rgba(5, 7, 10, 0.24), rgba(5, 7, 10, 0.88));
  }

  .aaa-page .hero-content h1 {
    font-size: 3.08rem;
  }

  .aaa-page .proof-strip div {
    border-top-color: rgba(243, 216, 141, 0.13);
  }
}

.invite-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.invite-hero {
  width: 100%;
}

.invite-code {
  margin-top: 22px;
  padding: 16px 18px;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  border-radius: var(--radius);
  border: 1px solid rgba(217, 169, 71, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

.invite-code span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.invite-code strong {
  color: #ffd66f;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 3.6rem;
  letter-spacing: 0;
}

@media (max-width: 1020px) {
  .hero-content h1 {
    font-size: 4.6rem;
  }

  .hero-card-stack {
    opacity: 0.45;
    right: -72px;
  }

  .play-section,
  .download-section {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .phone-frame {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 20px), var(--content));
    padding: 20px 0 36px;
  }

  .hero,
  .panel {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .site-header {
    padding: 14px;
  }

  .brand-link span {
    display: none;
  }

  .site-nav {
    gap: 2px;
  }

  .site-nav a {
    min-height: 36px;
    padding: 8px 9px;
    font-size: 0.86rem;
  }

  .landing-hero {
    min-height: calc(100svh - 38px);
    padding: 106px 18px 58px;
  }

  .landing-hero::after {
    background:
      linear-gradient(90deg, rgba(11, 14, 19, 0.97), rgba(11, 14, 19, 0.74)),
      linear-gradient(0deg, rgba(11, 14, 19, 0.62), transparent 42%);
  }

  .hero-content h1 {
    font-size: 3.15rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-card-stack {
    display: none;
  }

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

  .proof-strip {
    grid-template-columns: 1fr;
    padding: 22px 18px;
  }

  .proof-strip div {
    padding: 16px 0;
    border-left: 0;
    border-top: 1px solid rgba(21, 18, 13, 0.12);
  }

  .proof-strip div:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .section {
    padding: 64px 18px;
  }

  .section-heading h2,
  .download-copy h2 {
    font-size: 2.25rem;
  }

  .play-section {
    gap: 30px;
  }

  .stage-topbar {
    flex-direction: column;
    gap: 4px;
  }

  .table-felt {
    min-height: 360px;
  }

  .seat-left,
  .seat-right {
    display: none;
  }

  .table-card {
    width: 78px;
  }

  .card-one {
    left: 40%;
  }

  .card-two {
    left: 58%;
  }

  .card-three {
    left: 30%;
  }

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

  .feature-card {
    min-height: auto;
  }

  .feature-card span {
    margin-bottom: 28px;
  }

  .download-section {
    gap: 34px;
  }

  .phone-frame {
    width: min(250px, 100%);
  }

  .store-actions {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 18px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .invite-code strong {
    font-size: 2.7rem;
  }
}

@media (max-width: 720px) {
  .aaa-page .hero-card-stack {
    display: block;
    right: -150px;
    bottom: 58px;
    width: 370px;
    height: 270px;
    opacity: 0.28;
  }

  .aaa-page .hero-card-stack img:nth-child(1) {
    left: 138px;
    top: 6px;
    width: 150px;
  }

  .aaa-page .hero-card-stack img:nth-child(2) {
    left: 52px;
    top: 88px;
    width: 108px;
  }

  .aaa-page .hero-card-stack img:nth-child(3) {
    left: 246px;
    top: 96px;
    width: 104px;
  }
}

body.pro-page {
  --pro-bg: #05070a;
  --pro-panel: #0c1116;
  --pro-line: rgba(235, 195, 111, 0.17);
  --pro-line-strong: rgba(235, 195, 111, 0.34);
  --pro-text: #fff4dd;
  --pro-muted: #b9ad99;
  --pro-dim: #817866;
  --pro-gold-soft: #f7d98f;
  --pro-content: 1180px;
  color: var(--pro-text);
  background:
    repeating-linear-gradient(90deg, rgba(255, 244, 221, 0.025) 0 1px, transparent 1px 84px),
    repeating-linear-gradient(0deg, rgba(255, 244, 221, 0.02) 0 1px, transparent 1px 84px),
    var(--pro-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.pro-page a {
  color: inherit;
}

.pro-nav,
.pro-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 20px max(22px, calc((100vw - var(--pro-content)) / 2));
}

.pro-nav {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(5, 7, 10, 0.9), rgba(5, 7, 10, 0));
}

.pro-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 5px 12px 5px 5px;
  border: 1px solid var(--pro-line);
  border-radius: 8px;
  color: var(--pro-text);
  background: rgba(7, 10, 13, 0.72);
  text-decoration: none;
  font-weight: 900;
  backdrop-filter: blur(16px);
}

.pro-brand img {
  border-radius: 7px;
}

.pro-links {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 48px;
  padding: 5px;
  border: 1px solid var(--pro-line);
  border-radius: 8px;
  background: rgba(7, 10, 13, 0.72);
  backdrop-filter: blur(16px);
}

.pro-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 6px;
  color: rgba(255, 244, 221, 0.84);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 850;
}

.pro-links a:hover {
  color: var(--pro-text);
  background: rgba(255, 244, 221, 0.08);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 48px;
  padding: 5px;
  border: 1px solid var(--pro-line);
  border-radius: 8px;
  background: rgba(7, 10, 13, 0.72);
  backdrop-filter: blur(16px);
}

.language-switcher button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  min-width: 48px;
  padding: 8px 10px;
  border: 0;
  border-radius: 6px;
  color: rgba(255, 244, 221, 0.78);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.language-switcher button:hover,
.language-switcher button[aria-pressed="true"] {
  color: #120c04;
  background: linear-gradient(135deg, #ffe7a3, #d9a84c);
}

.language-switcher button:focus-visible {
  outline: 3px solid rgba(255, 244, 221, 0.7);
  outline-offset: 3px;
}

.pro-hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 112px max(22px, calc((100vw - var(--pro-content)) / 2)) 78px;
  border-bottom: 1px solid var(--pro-line);
  background: linear-gradient(120deg, #05070a 0%, #07100f 58%, #05070a 100%);
}

@supports not (height: 100svh) {
  .pro-hero {
    min-height: 88vh;
  }
}

.pro-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.96) 0%, rgba(5, 7, 10, 0.74) 46%, rgba(5, 7, 10, 0.28) 100%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.2), rgba(5, 7, 10, 0.96));
}

.pro-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.26;
  filter: saturate(0.65) contrast(1.25);
}

.pro-hero-copy {
  position: relative;
  z-index: 3;
  width: min(650px, 100%);
}

.pro-kicker {
  margin: 0 0 14px;
  color: var(--pro-gold-soft);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pro-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--pro-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 4.95rem;
  line-height: 0.98;
  font-weight: 900;
  text-wrap: balance;
}

.pro-hero-copy p:not(.pro-kicker) {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 244, 221, 0.76);
  font-size: 1.08rem;
  line-height: 1.65;
}

.pro-store-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.pro-store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 8px;
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    filter 160ms ease;
}

.pro-store-badge:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

.localized-store-text {
  display: none;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  color: #100b04;
  font-size: 0.92rem;
  font-weight: 950;
  white-space: nowrap;
}

.pro-store-badge img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 52px;
  object-fit: contain;
}

.app-store-badge img {
  height: 52px;
}

.google-play-badge img {
  height: 78px;
  margin: -13px;
}

.pro-store {
  min-width: 174px;
  min-height: 60px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 10px 16px;
  border: 1px solid var(--pro-line);
  border-radius: 8px;
  color: var(--pro-text);
  background: rgba(255, 244, 221, 0.06);
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 244, 221, 0.05);
}

.pro-store.primary {
  color: #130d04;
  background: linear-gradient(135deg, #ffe7a3, #d9a84c);
  border-color: rgba(255, 244, 221, 0.3);
}

.pro-store span {
  font-size: 0.78rem;
  font-weight: 800;
  color: currentColor;
  opacity: 0.72;
}

.pro-store strong {
  font-size: 1.08rem;
}

.pro-hero-art {
  position: absolute;
  z-index: 2;
  right: max(20px, calc((100vw - var(--pro-content)) / 2));
  bottom: 64px;
  width: min(560px, 48vw);
  height: 430px;
  pointer-events: none;
}

.hero-card-fan {
  position: absolute;
  z-index: 7;
  right: 54px;
  top: 18px;
  width: 430px;
  height: 310px;
  perspective: 900px;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.42));
}

.fan-card {
  --fan-x: 0px;
  --fan-y: 20px;
  --fan-r: 0deg;
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 126px;
  aspect-ratio: 5 / 7;
  border-radius: 10px;
  transform:
    translate(calc(-50% + var(--fan-x)), var(--fan-y))
    rotate(var(--fan-r))
    rotateX(3deg);
  transform-origin: 50% 122%;
  transform-style: preserve-3d;
  will-change: transform;
  animation:
    cardDealFan 9.6s cubic-bezier(0.25, 0.82, 0.24, 1) infinite,
    primaryDealtCardVisibility 9.6s linear infinite;
  box-shadow: 0 26px 46px rgba(0, 0, 0, 0.48);
}

.fan-card-inner {
  position: absolute;
  inset: 0;
  display: block;
  transform-style: preserve-3d;
  will-change: transform;
  animation: dealtCardFlip 9.6s cubic-bezier(0.32, 0.72, 0.23, 1) infinite;
}

.fan-card-face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.fan-card-back {
  transform: rotateY(180deg);
}

.fan-card-1 {
  --fan-x: -118px;
  --fan-y: 30px;
  --fan-r: -20deg;
  z-index: 4;
}

.fan-card-2 {
  --fan-x: -42px;
  --fan-y: 4px;
  --fan-r: -7deg;
  z-index: 3;
  animation-name: cardDealFan, secondaryDealtCardVisibility;
}

.fan-card-3 {
  --fan-x: 42px;
  --fan-y: 4px;
  --fan-r: 7deg;
  z-index: 2;
  animation-name: cardDealFan, secondaryDealtCardVisibility;
}

.fan-card-4 {
  --fan-x: 118px;
  --fan-y: 30px;
  --fan-r: 20deg;
  z-index: 1;
  animation-name: cardDealFan, secondaryDealtCardVisibility;
}

@keyframes cardDealFan {
  0% {
    transform:
      translate(calc(-50% + 168px), -118px)
      rotate(13deg)
      rotateX(0deg)
      scale(0.92);
  }

  8%,
  32%,
  82%,
  100% {
    transform:
      translate(-50%, 24px)
      rotate(0deg)
      rotateX(0deg)
      scale(1);
  }

  48%,
  72% {
    transform:
      translate(calc(-50% + var(--fan-x)), var(--fan-y))
      rotate(var(--fan-r))
      rotateX(3deg)
      scale(1);
  }
}

@keyframes dealtCardFlip {
  0%,
  16%,
  100% {
    transform: rotateY(180deg);
  }

  28%,
  82% {
    transform: rotateY(0deg);
  }

  92% {
    transform: rotateY(180deg);
  }
}

@keyframes primaryDealtCardVisibility {
  0% {
    opacity: 0;
  }

  6%,
  100% {
    opacity: 1;
  }
}

@keyframes secondaryDealtCardVisibility {
  0%,
  34%,
  84%,
  100% {
    opacity: 0;
  }

  44%,
  76% {
    opacity: 1;
  }
}

.pro-table-card {
  position: absolute;
  right: 0;
  bottom: 28px;
  width: 470px;
  overflow: hidden;
  border: 1px solid var(--pro-line);
  border-radius: 8px;
  background: rgba(5, 7, 10, 0.72);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.55);
}

.pro-table-bar,
.browser-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--pro-line);
  color: rgba(255, 244, 221, 0.72);
  background: linear-gradient(90deg, #0a0e12, #101916);
  font-size: 0.82rem;
  font-weight: 900;
}

.pro-table-bar strong {
  color: var(--pro-gold-soft);
}

.pro-table-felt {
  position: relative;
  min-height: 294px;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(230, 185, 95, 0.045) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(225deg, rgba(230, 185, 95, 0.032) 0 1px, transparent 1px 34px),
    linear-gradient(145deg, #08251e, #07100f 62%, #08090c);
}

.pro-seat {
  position: absolute;
  min-width: 92px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border: 1px solid rgba(255, 244, 221, 0.14);
  border-radius: 8px;
  color: rgba(255, 244, 221, 0.72);
  background: rgba(5, 7, 10, 0.5);
  font-size: 0.78rem;
  font-weight: 850;
}

.pro-seat.top {
  top: 20px;
  left: 50%;
  translate: -50% 0;
}

.pro-seat.left {
  top: 118px;
  left: 18px;
}

.pro-seat.right {
  top: 118px;
  right: 18px;
}

.table-center-mark {
  position: absolute;
  left: 50%;
  top: 52%;
  display: grid;
  place-items: center;
  min-width: 150px;
  min-height: 86px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 244, 221, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 244, 221, 0.08), rgba(255, 244, 221, 0.02)),
    rgba(5, 7, 10, 0.38);
  box-shadow:
    inset 0 0 0 1px rgba(230, 185, 95, 0.08),
    0 24px 54px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
}

.table-center-mark span {
  color: rgba(255, 244, 221, 0.58);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.table-center-mark strong {
  color: var(--pro-gold-soft);
  font-size: 1.6rem;
  line-height: 1.05;
}

.table-deck-stack {
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 74px;
  height: 104px;
  opacity: 0.6;
}

.table-deck-stack span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 244, 221, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(230, 185, 95, 0.22), transparent 44%),
    linear-gradient(145deg, #111820, #070a0f);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3);
}

.table-deck-stack span:nth-child(1) {
  transform: translate(-8px, -6px) rotate(-6deg);
}

.table-deck-stack span:nth-child(2) {
  transform: translate(-4px, -3px) rotate(-2deg);
}

.table-deck-stack span:nth-child(3) {
  transform: rotate(3deg);
}

.pro-play-card,
.pro-face-card,
.pro-card-back,
.browser-card {
  position: absolute;
  border-radius: 10px;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.44);
}

.pro-play-card {
  width: 86px;
}

.pro-play-card.c1 {
  left: 182px;
  top: 84px;
  rotate: -12deg;
}

.pro-play-card.c2 {
  left: 244px;
  top: 96px;
  rotate: 8deg;
}

.pro-play-card.c3 {
  left: 213px;
  top: 144px;
  rotate: 3deg;
}

.pro-card-back {
  z-index: 5;
  right: 132px;
  top: 12px;
  width: 158px;
  rotate: 2deg;
}

.pro-face-card.one {
  z-index: 4;
  right: 248px;
  top: 136px;
  width: 126px;
  rotate: -13deg;
}

.pro-face-card.two {
  z-index: 3;
  right: 26px;
  top: 152px;
  width: 122px;
  rotate: 12deg;
}

.pro-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0 max(22px, calc((100vw - var(--pro-content)) / 2));
  border-bottom: 1px solid var(--pro-line);
  background: #080c10;
}

.pro-proof div {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 20px 20px;
  border-left: 1px solid var(--pro-line);
}

.pro-proof div:first-child {
  border-left: 0;
  padding-left: 0;
}

.pro-proof strong {
  color: var(--pro-text);
  font-size: 1rem;
}

.pro-proof span {
  color: var(--pro-muted);
  line-height: 1.45;
}

.pro-video-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
  padding: 96px max(22px, calc((100vw - var(--pro-content)) / 2));
  border-bottom: 1px solid var(--pro-line);
  background:
    radial-gradient(circle at 76% 28%, rgba(230, 185, 95, 0.12), transparent 34%),
    linear-gradient(180deg, #080c10, #05070a);
  scroll-margin-top: 96px;
}

.video-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.32fr);
  gap: 22px;
  align-items: stretch;
  width: 100%;
  max-width: var(--pro-content);
  margin: 0 auto;
}

.video-card {
  overflow: hidden;
  border: 1px solid var(--pro-line-strong);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 244, 221, 0.05), transparent 44%),
    #0b1014;
  box-shadow: 0 30px 74px rgba(0, 0, 0, 0.42);
}

.video-frame {
  position: relative;
  display: block;
  overflow: hidden;
  background: #030507;
  text-decoration: none;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
  background: #030507;
}

.video-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  filter: saturate(0.9) contrast(1.08);
  transition: opacity 160ms ease, scale 220ms ease;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 42%, rgba(3, 5, 7, 0.76)),
    radial-gradient(circle at center, transparent 0 22%, rgba(3, 5, 7, 0.18) 42%, rgba(3, 5, 7, 0.62));
}

.video-frame:hover img {
  opacity: 0.92;
  scale: 1.035;
}

.play-button {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  min-width: 82px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  translate: -50% -50%;
  border: 1px solid rgba(255, 244, 221, 0.34);
  border-radius: 8px;
  color: #130d04;
  background: linear-gradient(135deg, #ffe7a3, #d9a84c);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
  font-weight: 950;
}

.trailer-frame {
  aspect-ratio: 16 / 9;
}

.short-frame {
  aspect-ratio: 9 / 16;
}

.video-caption {
  display: grid;
  gap: 4px;
  padding: 14px 16px 16px;
}

.video-caption span {
  color: var(--pro-gold-soft);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.video-caption strong {
  color: var(--pro-text);
  font-size: 1.06rem;
}

.video-copy-under {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.pro-screenshots {
  display: grid;
  gap: 32px;
  padding: 92px max(22px, calc((100vw - var(--pro-content)) / 2));
  border-bottom: 1px solid var(--pro-line);
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 159, 184, 0.12), transparent 32%),
    radial-gradient(circle at 72% 42%, rgba(230, 185, 95, 0.12), transparent 34%),
    linear-gradient(180deg, #05070a, #090d11);
}

.screenshot-copy {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.studio-shot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.studio-shot-grid article {
  overflow: hidden;
  border: 1px solid var(--pro-line-strong);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 244, 221, 0.045), transparent 38%),
    #0b1014;
  box-shadow: 0 30px 74px rgba(0, 0, 0, 0.42);
}

.studio-shot-grid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1885 / 4096;
  object-fit: cover;
  background: #05070a;
}

.studio-shot-grid span,
.studio-shot-grid strong {
  display: block;
  padding-inline: 16px;
}

.studio-shot-grid span {
  padding-top: 15px;
  color: var(--pro-gold-soft);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.studio-shot-grid strong {
  padding-top: 5px;
  padding-bottom: 17px;
  color: var(--pro-text);
  font-size: 1.02rem;
  line-height: 1.24;
}

.pro-section {
  padding: 96px max(22px, calc((100vw - var(--pro-content)) / 2));
}

.pro-section,
.pro-download {
  scroll-margin-top: 96px;
}

.pro-section-copy {
  max-width: 660px;
}

.pro-section-copy h2,
.download-panel h2 {
  margin: 0;
  color: var(--pro-text);
  font-size: 3.05rem;
  line-height: 1.05;
  text-wrap: balance;
}

.pro-section-copy p:not(.pro-kicker),
.download-panel p {
  color: var(--pro-muted);
  line-height: 1.65;
  font-size: 1.05rem;
}

.pro-browser {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(470px, 1.18fr);
  gap: 56px;
  align-items: center;
  background: linear-gradient(180deg, #05070a 0%, #08100f 100%);
}

.pro-browser-frame {
  overflow: hidden;
  border: 1px solid var(--pro-line-strong);
  border-radius: 8px;
  background: #05070a;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.5);
}

.browser-chrome {
  justify-content: flex-start;
}

.browser-chrome span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 244, 221, 0.22);
}

.browser-chrome strong {
  margin-left: auto;
  color: rgba(255, 244, 221, 0.58);
  font-size: 0.8rem;
}

.browser-table {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(230, 185, 95, 0.05) 0 1px, transparent 1px 38px),
    radial-gradient(circle at center, rgba(20, 93, 67, 0.5), transparent 58%),
    #06100f;
}

.round-status,
.score-rail,
.bid-chip {
  position: absolute;
  border: 1px solid rgba(255, 244, 221, 0.14);
  border-radius: 8px;
  background: rgba(5, 7, 10, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 244, 221, 0.05);
}

.round-status {
  top: 24px;
  left: 24px;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
}

.round-status span,
.score-rail span,
.bid-chip span {
  color: var(--pro-dim);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.round-status strong,
.score-rail strong {
  color: var(--pro-text);
}

.bid-chip {
  left: 50%;
  top: 46%;
  width: 126px;
  min-height: 108px;
  display: grid;
  place-items: center;
  translate: -50% -50%;
}

.bid-chip strong {
  color: var(--pro-gold-soft);
  font-size: 3.15rem;
  line-height: 1;
}

.score-rail {
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 4px;
  min-width: 116px;
  padding: 12px 14px;
}

.score-rail strong {
  color: #79e2aa;
}

.browser-card {
  width: 112px;
  animation: tableCardHover 5.8s ease-in-out infinite;
}

.browser-card.b1 {
  left: 36%;
  top: 134px;
  rotate: -13deg;
  animation-delay: -1.4s;
}

.browser-card.b2 {
  left: 50%;
  top: 118px;
  rotate: 3deg;
  z-index: 2;
  animation-delay: -0.2s;
}

.browser-card.b3 {
  left: 60%;
  top: 150px;
  rotate: 13deg;
  animation-delay: -2.6s;
}

@keyframes tableCardHover {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

.pro-web-play {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
  padding-top: clamp(16px, 2.6vh, 32px);
  padding-bottom: clamp(16px, 2.6vh, 32px);
  scroll-margin-top: 64px;
  border-top: 1px solid var(--pro-line);
  border-bottom: 1px solid var(--pro-line);
  background:
    radial-gradient(circle at 78% 18%, rgba(230, 185, 95, 0.13), transparent 30%),
    linear-gradient(180deg, #07100f, #05070a);
}

.web-play-copy strong {
  color: var(--pro-text);
}

.web-play-copy {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.web-play-copy h2 {
  font-size: clamp(1.8rem, 4vw, 2.55rem);
}

.web-play-copy p:not(.pro-kicker) {
  max-width: 640px;
  margin: 8px auto 0;
  font-size: 0.96rem;
  line-height: 1.5;
}

.web-embed-shell {
  width: min(460px, calc(100vw - 56px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--pro-line-strong);
  border-radius: 8px;
  background: #030507;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.54);
}

.web-game-frame {
  display: block;
  width: 100%;
  height: clamp(540px, 72svh, 700px);
  min-height: 0;
  border: 0;
  background: #05070a;
}

.web-demo-stage {
  position: relative;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 159, 184, 0.24), transparent 48%),
    #0b0e13;
}

.web-demo-frame {
  position: absolute;
  left: 0;
  top: 0;
  border: 0;
  background: #05070a;
  transform-origin: 0 0;
}

.web-app-frame {
  background:
    radial-gradient(circle at 50% 42%, rgba(21, 104, 73, 0.36), transparent 48%),
    #0b0e13;
}

.web-demo-launch {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 22px;
  color: var(--pro-text);
  text-align: center;
}

.web-demo-launch::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 24%, rgba(230, 185, 95, 0.22), transparent 28%),
    radial-gradient(circle at 72% 74%, rgba(50, 166, 120, 0.18), transparent 30%),
    repeating-linear-gradient(135deg, rgba(255, 244, 221, 0.05) 0 1px, transparent 1px 42px);
}

.web-demo-launch::after {
  content: "J  9  K  A";
  position: absolute;
  left: 50%;
  top: 50%;
  color: rgba(255, 244, 221, 0.055);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.8rem, 15vw, 10rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  transform: translate(-50%, -50%) rotate(-8deg);
  white-space: nowrap;
}

.demo-launch-content {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 360px;
  gap: 8px;
  justify-items: center;
}

.demo-launch-content span {
  color: var(--pro-gold-soft);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.demo-launch-content strong {
  color: var(--pro-text);
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  line-height: 1.08;
  text-wrap: balance;
}

.demo-launch-content p {
  max-width: 360px;
  margin: 0;
  color: var(--pro-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.demo-launch-button {
  min-height: 42px;
  margin-top: 8px;
  padding: 0 16px;
  border: 1px solid rgba(255, 244, 221, 0.22);
  border-radius: 8px;
  color: #130d04;
  background: linear-gradient(135deg, #ffe7a3, #d9a84c);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
  cursor: pointer;
  font: inherit;
  font-weight: 950;
}

.demo-launch-button:hover {
  filter: brightness(1.06);
}

.demo-launch-button:focus-visible {
  outline: 3px solid rgba(255, 244, 221, 0.7);
  outline-offset: 3px;
}

.web-build-preview {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(135deg, rgba(230, 185, 95, 0.05) 0 1px, transparent 1px 42px),
    radial-gradient(circle at 50% 48%, rgba(21, 104, 73, 0.52), transparent 46%),
    linear-gradient(145deg, #071511, #05070a);
}

.web-build-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 244, 221, 0.06), transparent 32%),
    radial-gradient(circle at center, transparent 0 28%, rgba(3, 5, 7, 0.38) 68%);
  pointer-events: none;
}

.web-preview-badge,
.web-preview-launch {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255, 244, 221, 0.16);
  border-radius: 8px;
  background: rgba(5, 7, 10, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 244, 221, 0.06);
}

.web-preview-badge {
  left: 26px;
  top: 26px;
  padding: 10px 12px;
  color: var(--pro-gold-soft);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.web-preview-card {
  position: absolute;
  z-index: 2;
  width: 142px;
  border-radius: 10px;
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.48);
  animation: tableCardHover 5.8s ease-in-out infinite;
}

.web-preview-card.preview-one {
  left: 36%;
  top: 176px;
  rotate: -15deg;
  animation-delay: -1.3s;
}

.web-preview-card.preview-two {
  left: 50%;
  top: 138px;
  width: 152px;
  translate: -50% 0;
  z-index: 3;
  rotate: 2deg;
}

.web-preview-card.preview-three {
  right: 28%;
  top: 180px;
  rotate: 15deg;
  animation-delay: -2.4s;
}

.web-preview-launch {
  right: 26px;
  bottom: 26px;
  min-width: 156px;
  display: grid;
  gap: 2px;
  padding: 13px 16px;
  color: #130d04;
  background: linear-gradient(135deg, #ffe7a3, #d9a84c);
  text-decoration: none;
}

.web-preview-launch span {
  font-size: 0.76rem;
  font-weight: 850;
  opacity: 0.74;
}

.web-preview-launch strong {
  font-size: 1.1rem;
}

.pro-modes {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 58px;
  align-items: start;
  background: #090d11;
  border-top: 1px solid var(--pro-line);
  border-bottom: 1px solid var(--pro-line);
}

.mode-list {
  display: grid;
  gap: 14px;
}

.mode-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--pro-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 244, 221, 0.045), transparent 40%),
    #0f1519;
}

.mode-list img {
  width: 42px;
  height: 42px;
  padding: 8px;
  border: 1px solid rgba(230, 185, 95, 0.32);
  border-radius: 8px;
  background: rgba(255, 244, 221, 0.06);
  object-fit: contain;
}

.mode-list h3 {
  margin: 0 0 8px;
  color: var(--pro-text);
  font-size: 1.16rem;
}

.mode-list p {
  margin: 0;
  color: var(--pro-muted);
  line-height: 1.55;
}

.pro-about-game {
  display: grid;
  grid-template-columns: minmax(260px, 0.84fr) minmax(0, 1.16fr);
  gap: 54px;
  align-items: start;
  background:
    radial-gradient(circle at 82% 18%, rgba(74, 201, 159, 0.12), transparent 34%),
    linear-gradient(180deg, #05070a, #080d10);
  border-bottom: 1px solid var(--pro-line);
}

.seo-faq-grid {
  display: grid;
  gap: 14px;
}

.seo-faq-grid article {
  padding: 20px;
  border: 1px solid var(--pro-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 244, 221, 0.04), transparent 44%),
    #0d1317;
}

.seo-faq-grid h3 {
  margin: 0 0 9px;
  color: var(--pro-text);
  font-size: 1.18rem;
}

.seo-faq-grid p {
  margin: 0;
  color: var(--pro-muted);
  line-height: 1.58;
}

.pro-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 28px max(22px, calc((100vw - var(--pro-content)) / 2));
  background: #05070a;
}

.pro-flow div {
  min-height: 158px;
  padding: 18px;
  border: 1px solid var(--pro-line);
  border-radius: 8px;
  background: #0c1116;
}

.pro-flow span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--pro-gold-soft);
  font-size: 0.8rem;
  font-weight: 950;
}

.pro-flow strong {
  display: block;
  color: var(--pro-text);
  font-size: 1.1rem;
}

.pro-flow p {
  margin: 8px 0 0;
  color: var(--pro-muted);
  line-height: 1.45;
}

.pro-download {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  overflow: hidden;
  padding: 98px max(22px, calc((100vw - var(--pro-content)) / 2));
  background:
    repeating-linear-gradient(90deg, rgba(230, 185, 95, 0.035) 0 1px, transparent 1px 78px),
    linear-gradient(135deg, #06100f, #05070a 62%, #071915);
}

.download-device {
  width: min(280px, 100%);
  aspect-ratio: 9 / 19;
  justify-self: center;
  overflow: hidden;
  padding: 9px;
  border: 1px solid var(--pro-line-strong);
  border-radius: 28px;
  background: #030507;
  box-shadow: 0 36px 86px rgba(0, 0, 0, 0.58);
}

.download-device img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.download-panel {
  max-width: 650px;
}

.download-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-top: 28px;
}

.download-actions .pro-store-row {
  margin-top: 0;
}

.download-qr {
  display: grid;
  width: 148px;
  gap: 8px;
  justify-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 244, 221, 0.18);
  border-radius: 8px;
  color: var(--pro-text);
  background:
    linear-gradient(145deg, rgba(255, 244, 221, 0.08), rgba(255, 244, 221, 0.02)),
    rgba(5, 7, 10, 0.58);
  text-align: center;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 244, 221, 0.06);
}

.download-qr:hover {
  border-color: rgba(230, 185, 95, 0.48);
}

.download-qr img {
  width: 112px;
  height: 112px;
  border-radius: 6px;
}

.download-qr span {
  color: rgba(255, 244, 221, 0.64);
  font-size: 0.72rem;
  font-weight: 850;
}

.download-qr strong {
  color: var(--pro-gold-soft);
  font-size: 0.9rem;
}

.pro-footer {
  border-top: 1px solid var(--pro-line);
  background: #040609;
}

.pro-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.pro-footer nav a {
  color: rgba(255, 244, 221, 0.72);
  text-decoration: none;
  font-weight: 850;
}

.pro-footer nav a:hover {
  color: var(--pro-text);
}

.blog-page .pro-nav {
  background: rgba(5, 7, 10, 0.94);
  border-bottom: 1px solid var(--pro-line);
}

.blog-page .pro-links a[aria-current="page"] {
  color: #120c04;
  background: linear-gradient(135deg, #ffe7a3, #d9a84c);
}

.blog-hero {
  padding: 150px max(22px, calc((100vw - var(--pro-content)) / 2)) 48px;
  background:
    linear-gradient(180deg, rgba(235, 195, 111, 0.1), rgba(5, 7, 10, 0)),
    var(--pro-bg);
}

.blog-hero h1 {
  max-width: 840px;
  margin: 0;
  color: var(--pro-text);
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.95;
  text-wrap: balance;
}

.blog-hero p:not(.pro-kicker) {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--pro-muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.blog-embed-section {
  min-height: 520px;
  padding: 28px max(22px, calc((100vw - var(--pro-content)) / 2)) 96px;
}

#soro-blog {
  min-height: 420px;
}

.blog-noscript {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--pro-line-strong);
  border-radius: 8px;
  color: var(--pro-muted);
  background: rgba(12, 17, 22, 0.86);
}

body.support-page {
  color: var(--text);
  background:
    radial-gradient(circle at 18% 4%, rgba(230, 185, 95, 0.14), transparent 28%),
    radial-gradient(circle at 84% 16%, rgba(116, 89, 190, 0.18), transparent 30%),
    linear-gradient(180deg, #05070a 0%, #0b0e13 52%, #06080b 100%);
}

.support-topbar,
.support-footer {
  display: flex;
  width: min(calc(100% - 36px), var(--content));
  margin: 0 auto;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.support-topbar {
  padding: 18px 0 10px;
}

.support-topbar .pro-brand,
.support-footer span {
  color: var(--cream);
  text-decoration: none;
}

.support-topbar nav,
.support-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.support-topbar nav a,
.support-footer nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 8px;
  color: rgba(255, 247, 230, 0.72);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 850;
}

.support-topbar nav a:hover,
.support-topbar nav a[aria-current="page"],
.support-footer nav a:hover {
  color: var(--cream);
  background: rgba(255, 247, 230, 0.08);
}

.support-shell {
  padding-top: 20px;
}

.support-page .hero,
.support-page .panel {
  border-color: rgba(230, 185, 95, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 247, 230, 0.065), rgba(255, 247, 230, 0.018)),
    rgba(8, 12, 18, 0.88);
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.34);
}

.support-page .hero {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 44px);
}

.support-page .hero::after {
  content: "";
  position: absolute;
  right: clamp(18px, 5vw, 54px);
  bottom: -72px;
  width: 176px;
  aspect-ratio: 5 / 7;
  border: 1px solid rgba(230, 185, 95, 0.24);
  border-radius: 14px;
  background-image: url("/card-back.svg");
  background-position: center;
  background-size: cover;
  opacity: 0.2;
  transform: rotate(8deg);
  pointer-events: none;
}

.support-page h1 {
  max-width: 12ch;
  color: var(--cream);
  font-size: clamp(2.65rem, 7vw, 5.2rem);
}

.support-page h2 {
  color: var(--cream);
}

.support-page p,
.support-page li {
  max-width: 78ch;
}

.support-page .panel {
  padding: clamp(20px, 3vw, 28px);
}

.support-page .panel p:last-child,
.support-page .notice p:last-child {
  margin-bottom: 0;
}

.support-page .nav {
  position: relative;
  z-index: 1;
}

.support-page .invite-shell {
  min-height: auto;
  display: block;
  place-items: initial;
}

.support-page .invite-hero {
  width: min(100%, 780px);
  margin: 0 auto;
  text-align: center;
}

.support-page .invite-hero p {
  margin-left: auto;
  margin-right: auto;
}

.support-page .invite-hero .nav {
  justify-content: center;
}

.support-page .invite-code {
  border-color: rgba(230, 185, 95, 0.3);
  background:
    linear-gradient(145deg, rgba(230, 185, 95, 0.16), rgba(255, 247, 230, 0.04)),
    rgba(255, 255, 255, 0.04);
}

.support-page .footer {
  text-align: center;
}

.support-footer {
  padding: 24px 0 34px;
  border-top: 1px solid rgba(255, 247, 230, 0.1);
}

@media (max-width: 1060px) {
  .pro-hero h1 {
    font-size: 4rem;
  }

  .pro-hero-art {
    opacity: 0.44;
    right: -122px;
  }

  .pro-browser,
  .pro-modes,
  .pro-about-game,
  .pro-video-section,
  .pro-web-play,
  .pro-download {
    grid-template-columns: 1fr;
  }

  .pro-browser-frame {
    max-width: 720px;
  }

  .video-grid {
    max-width: 820px;
  }

  .download-device {
    justify-self: start;
  }

  .download-actions {
    grid-template-columns: 1fr;
  }

  .download-qr {
    width: min(190px, 100%);
    justify-self: start;
  }

  .pro-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .pro-nav {
    position: absolute;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 8px 10px;
    padding: 12px 14px;
  }

  .pro-brand {
    justify-self: start;
    min-height: 50px;
    padding: 4px;
  }

  .pro-brand span {
    display: none;
  }

  .pro-links {
    justify-self: stretch;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 44px;
    gap: 0;
  }

  .pro-links a {
    padding: 8px 6px;
    font-size: 0.73rem;
  }

  .language-switcher {
    grid-column: 1 / -1;
    justify-self: end;
    min-height: 40px;
    margin-left: 0;
    padding: 4px;
  }

  .language-switcher button {
    min-height: 32px;
    min-width: 38px;
    padding: 6px 7px;
    font-size: 0.72rem;
  }

  .pro-hero {
    min-height: auto;
    display: grid;
    align-items: start;
    gap: 14px;
    padding: 120px 18px 42px;
  }

  .pro-hero::before {
    background:
      linear-gradient(90deg, rgba(5, 7, 10, 0.98), rgba(5, 7, 10, 0.86)),
      linear-gradient(180deg, rgba(5, 7, 10, 0.14), rgba(5, 7, 10, 0.92));
  }

  .pro-hero h1 {
    font-size: clamp(2.35rem, 12vw, 2.9rem);
    line-height: 1;
  }

  .pro-hero-copy p:not(.pro-kicker) {
    margin-top: 16px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .pro-store-row {
    width: 100%;
    gap: 12px;
  }

  .pro-store-badge img {
    height: 46px;
  }

  .google-play-badge img {
    height: 69px;
    margin: -11px;
  }

  .pro-hero-art {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 184px;
    margin: -6px auto 0;
    opacity: 1;
  }

  .hero-card-fan {
    left: 50%;
    right: auto;
    top: -22px;
    width: min(318px, 86vw);
    height: 204px;
    transform: translateX(-50%);
    filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.46));
  }

  .fan-card {
    width: clamp(78px, 23vw, 92px);
  }

  .fan-card-1 {
    --fan-x: -78px;
    --fan-y: 24px;
  }

  .fan-card-2 {
    --fan-x: -28px;
    --fan-y: 6px;
  }

  .fan-card-3 {
    --fan-x: 28px;
    --fan-y: 6px;
  }

  .fan-card-4 {
    --fan-x: 78px;
    --fan-y: 24px;
  }

  .pro-table-card {
    display: none;
  }

  .pro-card-back {
    right: 236px;
    top: 20px;
    width: 122px;
  }

  .pro-face-card.one {
    right: 240px;
    width: 96px;
  }

  .pro-face-card.two {
    right: 58px;
    width: 92px;
  }

  .pro-table-card {
    width: 380px;
  }

  .pro-proof {
    grid-template-columns: 1fr;
    padding: 0 18px;
  }

  .pro-proof div {
    min-height: auto;
    padding: 17px 0;
    border-left: 0;
    border-top: 1px solid var(--pro-line);
  }

  .pro-proof div:first-child {
    border-top: 0;
  }

  .pro-section,
  .pro-video-section,
  .pro-screenshots,
  .pro-web-play,
  .pro-download {
    padding: 66px 18px;
  }

  .pro-web-play {
    padding-top: 22px;
    padding-bottom: 24px;
  }

  .pro-section-copy h2,
  .download-panel h2 {
    font-size: 2.2rem;
  }

  .pro-browser {
    gap: 32px;
  }

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

  .video-short {
    width: min(310px, 100%);
    max-width: none;
    justify-self: center;
  }

  .studio-shot-grid {
    display: flex;
    gap: 14px;
    margin-right: -18px;
    padding: 2px 18px 12px 0;
    overflow-x: auto;
    scroll-padding-inline: 18px;
    scroll-snap-type: x mandatory;
  }

  .studio-shot-grid article {
    flex: 0 0 min(76vw, 310px);
    scroll-snap-align: start;
  }

  .browser-table {
    min-height: 350px;
  }

  .web-embed-shell {
    width: min(430px, calc(100vw - 36px));
  }

  .web-game-frame {
    height: clamp(500px, 66svh, 560px);
  }

  .demo-launch-content {
    max-width: 295px;
  }

  .demo-launch-content strong {
    font-size: 1.34rem;
  }

  .web-preview-card {
    width: 104px;
  }

  .web-preview-card.preview-one {
    left: 22%;
    top: 220px;
  }

  .web-preview-card.preview-two {
    top: 188px;
    width: 116px;
  }

  .web-preview-card.preview-three {
    right: 18%;
    top: 224px;
  }

  .browser-card {
    width: 88px;
  }

  .browser-card.b1 {
    left: 24%;
  }

  .browser-card.b2 {
    left: 45%;
  }

  .browser-card.b3 {
    left: 60%;
  }

  .round-status {
    top: 16px;
    left: 16px;
  }

  .score-rail {
    right: 16px;
    bottom: 16px;
  }

  .mode-list article {
    grid-template-columns: 46px 1fr;
    padding: 16px;
  }

  .mode-list img {
    width: 36px;
    height: 36px;
  }

  .pro-flow {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .pro-flow div {
    min-height: auto;
  }

  .download-device {
    order: 2;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
    margin-top: 8px;
    padding: 0;
    border-radius: 8px;
    background:
      radial-gradient(circle at 36% 42%, rgba(230, 185, 95, 0.2), transparent 28%),
      radial-gradient(circle at 66% 54%, rgba(255, 159, 184, 0.16), transparent 32%),
      repeating-linear-gradient(135deg, rgba(255, 244, 221, 0.055) 0 1px, transparent 1px 34px),
      linear-gradient(145deg, #0a1117, #05070a);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  }

  .download-device img {
    display: none;
  }

  .download-device::before,
  .download-device::after {
    content: "";
    grid-area: 1 / 1;
    display: block;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.42);
  }

  .download-device::before {
    width: 86px;
    aspect-ratio: 5 / 7;
    border: 1px solid rgba(230, 185, 95, 0.4);
    border-radius: 9px;
    background-image: url("/card-back.svg");
    transform: translateX(-46px) rotate(-9deg);
  }

  .download-device::after {
    width: 88px;
    height: 88px;
    border: 1px solid rgba(255, 244, 221, 0.18);
    border-radius: 22px;
    background-image: url("/assets/29-app-icon.png");
    transform: translateX(42px) rotate(4deg);
  }

  .download-panel {
    order: 1;
  }

  .blog-hero {
    padding: 132px 18px 36px;
  }

  .blog-hero h1 {
    font-size: 2.35rem;
    overflow-wrap: break-word;
  }

  .blog-hero p:not(.pro-kicker) {
    max-width: 100%;
  }

  .blog-embed-section {
    padding: 20px 18px 68px;
  }

  .download-qr {
    display: none;
  }

  .pro-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 18px;
  }

  .pro-footer nav {
    justify-content: flex-start;
  }

  .support-topbar,
  .support-footer {
    width: min(calc(100% - 28px), var(--content));
    align-items: flex-start;
    flex-direction: column;
  }

  .support-topbar nav,
  .support-footer nav {
    justify-content: flex-start;
  }

  .support-topbar nav a,
  .support-footer nav a {
    padding-left: 0;
    padding-right: 10px;
  }

  .support-page .hero::after {
    right: -28px;
    bottom: -62px;
    width: 124px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fan-card,
  .fan-card-inner,
  .browser-card {
    animation: none;
  }

  .fan-card {
    transform:
      translate(calc(-50% + var(--fan-x)), var(--fan-y))
      rotate(var(--fan-r));
  }

  .fan-card-inner {
    transform: rotateY(0deg);
  }

  .fan-card {
    opacity: 1;
  }
}
