/* Coil & Climb — home page.
   Loaded only by index.html, on top of site.css. The rest of the site stays
   the quiet document it needs to be for store reviewers; this page is the
   shopfront and is allowed to move.

   Everything animated here is behind prefers-reduced-motion, and every layer
   is CSS — no canvas, no WebGL, no third-party request. */

.home {
  --felt-0: #070d18;
  --felt-1: #0e1a2e;
  --felt-2: #16243d;
  --coral: #f2622f;
  --coral-lit: #ff8a52;
  --azure: #38a0ff;
  --gold: #ffc93c;
  --leaf: #47c46a;
  --rose: #ff6f9c;
  --paper: #fdfaf3;
  --edge: rgba(255, 255, 255, .12);
  --edge-2: rgba(255, 255, 255, .07);
  --dim: #9db0cd;
  background: var(--felt-0);
  color: #eaf1fb;
}
.home ::selection { background: var(--coral); color: #fff; }

/* The whole page sits on one lit table. */
.home main { position: relative; }
.home .wrap { width: min(100% - 2.2rem, 1200px); }

/* ---------- shared shopfront furniture ---------- */
.home .eyebrow {
  font: 700 .76rem/1 var(--font);
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 .9rem;
  display: inline-flex; align-items: center; gap: .55rem;
}
.home .eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--coral), transparent);
}
.home h1, .home h2, .home h3 { color: #fff; }
.home h2 { font-size: clamp(1.75rem, 1.2rem + 2.1vw, 2.9rem); }
.home p { color: #c3d2e6; }
.home .sect { position: relative; padding: clamp(4.5rem, 9vw, 8rem) 0; }
.home .sect-head { max-width: 46rem; margin: 0 0 clamp(2rem, 4vw, 3.2rem); }
.home .sect-head p { font-size: 1.08rem; color: var(--dim); margin-bottom: 0; }

.home .rule {
  height: 1px; border: 0;
  background: linear-gradient(90deg, transparent, var(--edge), transparent);
  margin: 0;
}

/* ---------- header ---------- */
.home .site-head {
  background: rgba(7, 13, 24, .72);
  border-bottom: 1px solid var(--edge-2);
  backdrop-filter: saturate(150%) blur(14px);
}
.home .site-head .brand { color: #fff; }
.home .site-head .brand i { color: var(--coral-lit); }
.home .nav a { color: #c3d2e6; }
.home .nav a:hover, .home .nav a[aria-current] { color: #fff; }
.home .nav a[aria-current]::after { background: var(--coral); }

/* ---------- hero ---------- */
.hero-3d {
  position: relative;
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 72% 8%, rgba(255, 201, 60, .20), transparent 55%),
    radial-gradient(90% 70% at 12% 100%, rgba(242, 98, 47, .22), transparent 60%),
    linear-gradient(180deg, var(--felt-1), var(--felt-0) 82%);
}
/* Faint board grid receding into the dark — the table the game is played on. */
.hero-3d::before {
  content: ""; position: absolute; inset: -10% -20% 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 88px 88px;
  transform: perspective(760px) rotateX(66deg) translateY(24%) scale(1.7);
  transform-origin: 50% 100%;
  mask-image: linear-gradient(180deg, transparent 34%, #000 76%, transparent);
  pointer-events: none;
}
.hero-grid-3d {
  position: relative; z-index: 2;
  display: grid; gap: clamp(2.5rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 940px) { .hero-grid-3d { grid-template-columns: 1.02fr .98fr; } }

.hero-copy h1 {
  font-size: clamp(2.35rem, 1.3rem + 4.4vw, 4.15rem);
  line-height: 1.02; letter-spacing: -.02em; margin-bottom: .55em;
}
.hero-copy h1 .hl {
  position: relative; color: var(--gold); white-space: nowrap;
}
.hero-copy h1 .hl::after {
  content: ""; position: absolute; left: -.06em; right: -.06em; bottom: .04em;
  height: .28em; border-radius: 999px; z-index: -1;
  background: linear-gradient(90deg, rgba(242, 98, 47, .55), rgba(255, 201, 60, .18));
}
.hero-copy .lede {
  font-size: clamp(1.04rem, .98rem + .4vw, 1.22rem);
  color: #cddcf0; max-width: 34rem;
}

/* store buttons, moulded plastic */
.home .hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin: 1.9rem 0 1.1rem; }
.home .btn {
  display: inline-flex; flex-direction: column; justify-content: center;
  min-width: 12.5rem; padding: .82rem 1.5rem;
  border-radius: 16px; border: 0; text-decoration: none;
  font: 800 1.06rem/1.15 var(--display); color: #fff;
  background: linear-gradient(180deg, var(--coral-lit), var(--coral) 60%, #d34a1c);
  box-shadow: 0 6px 0 #a53713, 0 16px 34px rgba(242, 98, 47, .34);
  transform: translateZ(0); transition: transform .12s, box-shadow .12s, filter .2s;
}
.home .btn small {
  font: 600 .74rem/1.3 var(--font); opacity: .82; letter-spacing: .02em;
  text-transform: none;
}
.home .btn:hover { transform: translateY(-2px); filter: saturate(1.06); }
.home .btn:active { transform: translateY(4px); box-shadow: 0 2px 0 #a53713, 0 8px 16px rgba(0,0,0,.4); }
.home .btn[aria-disabled="true"] {
  background: linear-gradient(180deg, #2a3a54, #1d2a3f);
  box-shadow: 0 6px 0 #131d2d, inset 0 1px 0 rgba(255,255,255,.08);
  color: #b9c8de; cursor: default;
}
.home .btn[aria-disabled="true"]:hover { transform: none; }
.home .btn-ghost {
  background: transparent; color: #fff;
  border: 2px solid var(--edge); box-shadow: none;
  align-items: center; text-align: center; min-width: 9rem;
}
.home .btn-ghost:hover { border-color: var(--gold); box-shadow: none; }

.hero-note { color: #8fa3c0; font-size: .9rem; margin: 0 0 1.4rem; }
.home .badges {
  list-style: none; display: flex; flex-wrap: wrap; gap: .5rem;
  padding: 0; margin: 0;
}
.home .badges li {
  font: 700 .8rem/1 var(--font); color: #cfe0f5;
  padding: .5rem .8rem; border-radius: 999px;
  background: rgba(255, 255, 255, .05); border: 1px solid var(--edge-2);
}
.home .badges li::before { content: "✓ "; color: var(--leaf); }

/* ---------- the 3D board scene ---------- */
.scene {
  position: relative;
  perspective: 1300px;
  perspective-origin: 55% 42%;
  min-height: clamp(21rem, 46vw, 34rem);
  display: grid; place-items: center;
}
.scene-stage {
  position: relative;
  width: min(100%, 34rem);
  transform-style: preserve-3d;
  transform:
    rotateX(var(--rx, 47deg)) rotateZ(var(--rz, -26deg))
    translate3d(var(--tx, 0px), var(--ty, 0px), 0);
  transition: transform .5s cubic-bezier(.2, .7, .3, 1);
  animation: float 9s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}
.board-3d { position: relative; transform-style: preserve-3d; }
/* board thickness — a stack of receding copies is cheaper and crisper than
   a real extruded mesh, and reads the same at this angle */
.board-3d::before,
.board-3d::after {
  content: ""; position: absolute; inset: 0; border-radius: 30px;
  background: linear-gradient(180deg, #b9793f, #7d4a20);
}
.board-3d::before { transform: translateZ(-9px); }
.board-3d::after  { transform: translateZ(-19px); filter: brightness(.7); }
.board-3d .glass {
  position: absolute; inset: 0; border-radius: 30px; pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.32), transparent 42%);
  mix-blend-mode: screen;
}
.board-shadow {
  position: absolute; left: 6%; right: 6%; top: 12%; bottom: -6%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0,0,0,.7), transparent 70%);
  filter: blur(28px); transform: translateZ(-60px); border-radius: 50%;
}
.board-svg {
  display: block; width: 100%; height: auto;
  border-radius: 30px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .6);
}
.board-bed { fill: #f6efe0; stroke: #cbb894; stroke-width: 3; }
.board-svg .num {
  font: 800 30px/1 var(--display); fill: #fff; text-anchor: middle;
  paint-order: stroke; stroke: rgba(26, 39, 68, .55); stroke-width: 5;
  stroke-linejoin: round;
}
.board-svg .tile { filter: drop-shadow(0 3px 0 rgba(0, 0, 0, .14)); }
.board-svg .ladder line { stroke-linecap: round; }
.board-svg .rail line { stroke: #c98b3f; stroke-width: 9; }
.board-svg .rung line { stroke: #e0a95d; stroke-width: 6; }
.board-svg .rail-shadow line { stroke: rgba(90, 55, 20, .45); stroke-width: 12;
  transform: translate(3px, 4px); }
.board-svg .snake path { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.board-svg .s-shade { stroke: rgba(0, 0, 0, .3); stroke-width: 30;
  transform: translate(4px, 6px); }
.board-svg .s-body { stroke-width: 30; }
.board-svg .s-skin { stroke-width: 24; }
.board-svg .s-belly { stroke-width: 9; stroke-dasharray: 3 22; opacity: .85; }
.board-svg .home-disc { fill: var(--gold); stroke: #b8801a; stroke-width: 3; }
.board-svg .home-txt {
  font: 800 19px/1 var(--display); fill: #6a4708; text-anchor: middle;
}

/* playing pieces — flat discs, the way they read from this camera angle */
.pawn {
  position: absolute; width: 6.4%; aspect-ratio: 1;
  left: var(--x); top: var(--y); transform: translate(-50%, -50%);
}
.pawn i {
  position: absolute; inset: 0; border-radius: 50%;
  background:
    radial-gradient(58% 52% at 34% 28%, rgba(255,255,255,.85), transparent 62%),
    radial-gradient(100% 100% at 50% 50%, var(--c), color-mix(in srgb, var(--c) 62%, #000));
  box-shadow:
    0 0 0 2.5px rgba(255,255,255,.75),
    0 4px 8px rgba(0,0,0,.45);
}
.pawn::after {
  content: ""; position: absolute; left: 6%; right: -14%; top: 22%; bottom: -18%;
  background: rgba(0,0,0,.4); filter: blur(3px); border-radius: 50%; z-index: -1;
}

/* the die, a real six-sided cube */
.die-wrap {
  position: absolute; right: -8%; top: -14%;
  --sz: clamp(74px, 11vw, 108px);
  width: var(--sz); height: var(--sz);
  perspective: 600px; transform: translateZ(90px);
}
.die {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d;
  transform: rotateX(var(--dx, -22deg)) rotateY(var(--dy, 34deg));
  transition: transform .9s cubic-bezier(.18, .9, .25, 1);
  animation: tumble 14s linear infinite;
  cursor: pointer;
}
.die.rolling { animation: none; }
@keyframes tumble {
  from { transform: rotateX(-22deg) rotateY(34deg); }
  to   { transform: rotateX(338deg) rotateY(394deg); }
}
.die .f {
  position: absolute; inset: 0; border-radius: 16%;
  background: linear-gradient(150deg, #fffdf7, #ecdfcd);
  border: 1px solid #d6c4aa;
  box-shadow: inset 0 0 18px rgba(140, 110, 70, .28);
  display: grid; grid-template: repeat(3, 1fr) / repeat(3, 1fr);
  padding: 14%; gap: 6%;
}
.die .f b.tl { grid-area: 1 / 1; } .die .f b.tr { grid-area: 1 / 3; }
.die .f b.ml { grid-area: 2 / 1; } .die .f b.mr { grid-area: 2 / 3; }
.die .f b.bl { grid-area: 3 / 1; } .die .f b.br { grid-area: 3 / 3; }
.die .f b.c  { grid-area: 2 / 2; }
.die .f b {
  border-radius: 50%; align-self: center; justify-self: center;
  width: 74%; aspect-ratio: 1;
  background: radial-gradient(60% 60% at 35% 32%, #6c7a90, #16233d 70%);
}
.die .f1 { transform: translateZ(calc(var(--sz) / 2)); }
.die .f6 { transform: rotateY(180deg) translateZ(calc(var(--sz) / 2)); }
.die .f2 { transform: rotateY(90deg)  translateZ(calc(var(--sz) / 2)); }
.die .f5 { transform: rotateY(-90deg) translateZ(calc(var(--sz) / 2)); }
.die .f3 { transform: rotateX(90deg)  translateZ(calc(var(--sz) / 2)); }
.die .f4 { transform: rotateX(-90deg) translateZ(calc(var(--sz) / 2)); }
.die-hint {
  position: absolute; top: 104%; right: 0; white-space: nowrap;
  font: 700 .72rem/1 var(--font); color: #8fa3c0; letter-spacing: .1em;
  text-transform: uppercase;
}

/* ---------- ticker ---------- */
.ticker {
  border-block: 1px solid var(--edge-2);
  background: linear-gradient(180deg, rgba(255,255,255,.035), transparent);
  overflow: hidden; padding: .95rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker ul {
  display: flex; gap: 2.6rem; list-style: none; margin: 0; padding: 0;
  width: max-content; animation: slide 38s linear infinite;
}
.ticker li {
  font: 800 .95rem/1 var(--display); letter-spacing: .04em;
  color: #d8e4f4; display: flex; align-items: center; gap: 2.6rem;
  white-space: nowrap;
}
.ticker li::after { content: "●"; color: var(--coral); font-size: .55rem; }
@keyframes slide { to { transform: translateX(-50%); } }
.ticker:hover ul { animation-play-state: paused; }

/* ---------- feature slabs ---------- */
.slabs { display: grid; gap: 1.15rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .slabs { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .slabs { grid-template-columns: repeat(3, 1fr); } }
.slab {
  position: relative; padding: 1.7rem 1.6rem 1.8rem;
  border-radius: 22px; border: 1px solid var(--edge-2);
  background: linear-gradient(165deg, rgba(255,255,255,.075), rgba(255,255,255,.02));
  transform-style: preserve-3d;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), border-color .3s, box-shadow .3s;
  overflow: hidden;
}
.slab::after {                                  /* moving sheen on hover */
  content: ""; position: absolute; inset: -40% -10%;
  background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,.10) 50%, transparent 58%);
  translate: -70% 0; transition: translate .7s ease;
}
.slab:hover { border-color: rgba(255,201,60,.4); box-shadow: 0 24px 50px rgba(0,0,0,.45); }
.slab:hover::after { translate: 70% 0; }
.slab h3 { font-size: 1.22rem; margin-bottom: .45rem; }
.slab p { color: var(--dim); margin: 0; font-size: .99rem; }
.slab .ico {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  font-size: 1.55rem; margin-bottom: 1rem;
  background: linear-gradient(160deg, rgba(255,201,60,.22), rgba(242,98,47,.14));
  border: 1px solid rgba(255,201,60,.28);
  transform: translateZ(30px);
}
.slab > * { position: relative; }

/* ---------- board rail ---------- */
.rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(78vw, 19rem);
  gap: 1.1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: .6rem .2rem 1.6rem; margin-inline: -.2rem;
  perspective: 1100px;
  scrollbar-width: thin; scrollbar-color: var(--coral) transparent;
}
.rail::-webkit-scrollbar { height: 8px; }
.rail::-webkit-scrollbar-thumb { background: #2b3d59; border-radius: 99px; }
.bcard {
  scroll-snap-align: start; position: relative;
  border-radius: 20px; padding: 1.35rem 1.35rem 1.5rem;
  border: 1px solid var(--edge-2); overflow: hidden;
  background: linear-gradient(170deg, var(--tint, #24344e), #101c2f 70%);
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s;
  transform-style: preserve-3d;
}
.bcard:hover { transform: translateY(-6px) rotateX(6deg); box-shadow: 0 26px 50px rgba(0,0,0,.5); }
.bcard .no {
  font: 800 .74rem/1 var(--font); letter-spacing: .18em; color: var(--gold);
}
.bcard h3 { font-size: 1.3rem; margin: .5rem 0 .35rem; }
.bcard p { font-size: .95rem; color: #b9c9df; min-height: 3.2em; }
.bcard .meter { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: .9rem; }
.bcard .meter span {
  font: 700 .76rem/1 var(--font); padding: .38rem .6rem; border-radius: 8px;
  background: rgba(0,0,0,.3); color: #d6e3f3; border: 1px solid var(--edge-2);
}
.bcard .lock { color: var(--gold); }
.bcard .free { color: var(--leaf); }

/* ---------- snake species ---------- */
.species { display: flex; flex-wrap: wrap; gap: .7rem; }
.species figure {
  margin: 0; display: flex; align-items: center; gap: .6rem;
  padding: .55rem .95rem .55rem .6rem; border-radius: 999px;
  background: rgba(255,255,255,.05); border: 1px solid var(--edge-2);
  font: 700 .92rem/1 var(--font); color: #dfe9f7;
  transition: transform .25s, background .25s;
}
.species figure:hover { transform: translateY(-3px) scale(1.03); background: rgba(255,255,255,.09); }
.species svg { width: 30px; height: 30px; display: block; }

/* ---------- screens ---------- */
.screens { display: grid; gap: clamp(1.4rem, 4vw, 2.6rem); perspective: 1400px; }
@media (min-width: 760px) { .screens { grid-template-columns: repeat(2, 1fr); } }
.phone { margin: 0; text-align: center; transform-style: preserve-3d; }
.phone img {
  width: min(100%, 21rem); margin-inline: auto; border-radius: 26px;
  border: 1px solid var(--edge);
  box-shadow: 0 36px 70px rgba(0,0,0,.55);
  transform: rotateY(var(--ry, 0deg)) rotateX(var(--rx2, 0deg));
  transition: transform .45s cubic-bezier(.2,.7,.3,1);
}
.phone:nth-child(1) img { --ry: 13deg; }
.phone:nth-child(2) img { --ry: -13deg; }
.phone:hover img { --ry: 0deg; --rx2: 0deg; }
.phone figcaption { color: var(--dim); font-size: .95rem; margin-top: 1rem; }

/* ---------- stats ---------- */
.stats {
  display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr);
  text-align: center;
}
@media (min-width: 820px) { .stats { grid-template-columns: repeat(5, 1fr); } }
.stat {
  padding: 1.5rem .6rem; border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), transparent);
  border: 1px solid var(--edge-2);
}
.stat b {
  display: block; font: 800 clamp(2rem, 1.2rem + 2.4vw, 3.1rem)/1 var(--display);
  color: var(--gold);
}
.stat span { font: 700 .82rem/1.3 var(--font); color: var(--dim);
  letter-spacing: .08em; text-transform: uppercase; }

/* ---------- faq / contact / cta ---------- */
.home .faq details {
  border: 1px solid var(--edge-2); border-radius: 16px; margin-bottom: .7rem;
  background: rgba(255,255,255,.035); padding: 0;
}
.home .faq summary {
  cursor: pointer; padding: 1.05rem 1.2rem; font: 800 1.03rem/1.4 var(--display);
  color: #fff; list-style: none; display: flex; justify-content: space-between; gap: 1rem;
}
.home .faq summary::-webkit-details-marker { display: none; }
.home .faq summary::after { content: "+"; color: var(--coral-lit); font-size: 1.4rem; line-height: 1; }
.home .faq details[open] summary::after { content: "–"; }
.home .faq details p { padding: 0 1.2rem 1.1rem; margin: 0; color: var(--dim); }

.home .contact-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .home .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.home .contact-grid .card {
  border: 1px solid var(--edge-2); border-radius: 18px; padding: 1.4rem;
  background: rgba(255,255,255,.04);
}
.home .contact-grid .card h3 { font-size: 1.08rem; }
.home .contact-grid a, .home .faq a { color: var(--gold); }

.cta-band {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background:
    radial-gradient(70% 120% at 50% 0%, rgba(242,98,47,.30), transparent 60%),
    linear-gradient(180deg, #101d33, #070d18);
  border-top: 1px solid var(--edge-2);
}
.cta-band h2 { max-width: 22ch; margin-inline: auto; }
.cta-band .hero-cta { justify-content: center; }
.cta-band p { color: var(--dim); }

/* ---------- footer ---------- */
.home .site-foot {
  background: #05090f; border-top: 1px solid var(--edge-2); color: var(--dim);
}
.home .site-foot h4 { color: #fff; }
.home .site-foot a { color: #b9c9df; }
.home .site-foot a:hover { color: var(--gold); }
.home .foot-base { color: #6d7f99; border-top-color: var(--edge-2); }

/* ---------- reveal on scroll ---------- */
.js .home .reveal { opacity: 0; transform: translateY(26px); }
.home .reveal.in { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.home .reveal.in.d1 { transition-delay: .08s; }
.home .reveal.in.d2 { transition-delay: .16s; }
.home .reveal.in.d3 { transition-delay: .24s; }


@media (prefers-reduced-motion: reduce) {
  .scene-stage, .die, .ticker ul { animation: none !important; }
  .home .reveal { opacity: 1; transform: none; }
  .slab::after { display: none; }
}

/* ---------- corrections after first visual pass ---------- */
.home {
  --ink-soft: #93a6c2;      /* site.css uses this in the shared footer */
  --line: rgba(255, 255, 255, .1);
}
.home .faq { max-width: 54rem; }
/* Keep the highlight swash tight to its own words rather than the whole line. */
.hero-copy h1 .hl { display: inline-block; }
.hero-copy h1 .hl::after { bottom: .06em; height: .22em; opacity: .9; }

/* Narrow screens: the die belongs over the board, not over the copy. */
@media (max-width: 939px) {
  .scene { padding-top: 2.5rem; }
  .die-wrap { right: 0; top: -2%; --sz: clamp(62px, 17vw, 88px); }
  .die-hint { right: auto; left: 0; }
  .home .hero-cta .btn { flex: 1 1 13rem; }
  .scene-stage { transform: rotateX(38deg) rotateZ(-16deg) scale(.84); }
}
.hero-copy h1 .hl::after { bottom: .09em; height: .17em; opacity: .75; }


/* Board-card tints and playing-piece positions, by class: the production CSP
   sets style-src 'self', which drops style="" attributes on sight. */
.bcard.t-meadow { --tint: #2a4436; } .bcard.t-bamboo { --tint: #28452f; }
.bcard.t-stone  { --tint: #33384a; } .bcard.t-dunes  { --tint: #4a3b28; }
.bcard.t-jungle { --tint: #1f4232; } .bcard.t-ice    { --tint: #24414f; }
.bcard.t-ember  { --tint: #4a2a26; } .bcard.t-storm  { --tint: #2b3350; }
.bcard.t-ruins  { --tint: #3d3a2c; } .bcard.t-crown  { --tint: #42294a; }

.pawn.p1 { --x: 11.5%; --y: 84.5%; --c: #E53935; }
.pawn.p2 { --x: 30.5%; --y: 84.5%; --c: #1E88E5; }
.pawn.p3 { --x: 49.5%; --y: 66%;   --c: #43A047; }
.pawn.p4 { --x: 68.5%; --y: 47%;   --c: #FDD835; }
