/* ============================================================
   METASCAN — Media Day flyer
   Portrait poster (2:3). Coded entirely in HTML/CSS/JS.
   Photographic assets: hero figure (per theme) + brand equipment.
   Everything else — type, neon, buttons, icons, frames — is code.
   ============================================================ */

/* ---------- Self-hosted fonts ---------- */
@font-face {
  font-family: "Anton";
  src: url("assets/fonts/Anton-Regular.ttf") format("truetype");
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: "Allura";
  src: url("assets/fonts/Allura-Regular.ttf") format("truetype");
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat.ttf") format("truetype");
  font-weight: 500 900; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --pink: #ff2fb9;
  --magenta: #ff3dd0;
  --violet: #8a4bff;
  --blue: #2a6bff;
  --cyan: #00eaff;
  --ink: #d9dcec;
  --dim: #99a0b7;

  --brand-grad: linear-gradient(100deg, var(--pink) 0%, var(--violet) 46%, var(--cyan) 100%);
  --brand-grad-rev: linear-gradient(100deg, var(--cyan) 0%, var(--violet) 54%, var(--pink) 100%);

  --W: 720px;   /* poster width  */
  --H: 1080px;  /* poster height */

  --sans: "Montserrat", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  font-family: var(--sans);
  background: #08060f;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

/* screen backdrop */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 34px 16px 70px;
  background:
    radial-gradient(900px 600px at 80% -5%, rgba(138,75,255,.16), transparent 60%),
    radial-gradient(900px 700px at 10% 110%, rgba(0,234,255,.10), transparent 60%),
    #08060f;
}

/* ---------- Toolbar (screen only) ---------- */
.toolbar {
  width: var(--W); max-width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; margin-bottom: 18px; color: #aeb2c6; font-size: 13px;
}
.toolbar a { color: #cfd3e6; text-decoration: none; }
.toolbar__links { display: flex; gap: 14px; flex-wrap: wrap; }
.toolbar__links a { opacity: .7; transition: opacity .15s; }
.toolbar__links a:hover, .toolbar__links a[aria-current="true"] { opacity: 1; }
.toolbar__btn {
  border: 0; cursor: pointer; color: #fff; font: 700 13px var(--sans);
  letter-spacing: .02em; padding: 9px 18px; border-radius: 999px;
  background: var(--brand-grad);
  box-shadow: 0 6px 20px rgba(255,47,185,.3), 0 2px 8px rgba(0,234,255,.2);
}

/* ---------- Stage / scaling ---------- */
.stage { position: relative; width: var(--W); max-width: 100%; }

/* ============================================================
   POSTER
   ============================================================ */
.poster {
  position: relative;
  width: var(--W);
  height: var(--H);
  overflow: hidden;
  border-radius: 10px;
  transform-origin: top left;
  background:
    radial-gradient(720px 520px at 88% 6%,  rgba(120,60,255,.42), transparent 62%),
    radial-gradient(680px 560px at 6% 40%,  rgba(255,45,190,.20), transparent 60%),
    radial-gradient(760px 620px at 78% 96%, rgba(0,150,255,.28), transparent 62%),
    radial-gradient(600px 520px at 30% 82%, rgba(140,60,255,.22), transparent 60%),
    linear-gradient(180deg, #0a0714 0%, #0b0618 46%, #060410 100%);
  box-shadow: 0 30px 90px rgba(10,4,30,.6);
  color: var(--ink);
  isolation: isolate;
}

/* faint smoke/haze layer */
.atmos {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(340px 300px at 62% 30%, rgba(180,80,255,.18), transparent 70%),
    radial-gradient(420px 340px at 40% 66%, rgba(90,50,200,.16), transparent 72%),
    radial-gradient(300px 260px at 78% 58%, rgba(0,180,255,.12), transparent 72%);
  mix-blend-mode: screen;
  filter: blur(6px);
}

/* perspective floor grid near the bottom */
.floor {
  position: absolute; left: -10%; right: -10%; bottom: 44px; height: 220px;
  z-index: 0; pointer-events: none; opacity: .3;
  background-image:
    linear-gradient(rgba(80,150,255,.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80,150,255,.28) 1px, transparent 1px);
  background-size: 46px 46px, 46px 46px;
  transform: perspective(360px) rotateX(66deg);
  transform-origin: bottom center;
  -webkit-mask-image: linear-gradient(to top, #000 0%, transparent 82%);
          mask-image: linear-gradient(to top, #000 0%, transparent 82%);
}

/* ---------- Real-person hero photo (top-right) ---------- */
/* "The real you" — pairs with the 3D trophy figurine below. */
/* Cage scan: athlete inside the 360 booth, arms out (being 3D scanned) */
.realself {
  position: absolute; z-index: 1;
  top: 10px; right: -46px; width: 442px; height: auto;
  -webkit-mask-image: radial-gradient(98% 90% at 50% 40%, #000 52%, rgba(0,0,0,.4) 70%, transparent 86%);
          mask-image: radial-gradient(98% 90% at 50% 40%, #000 52%, rgba(0,0,0,.4) 70%, transparent 86%);
  filter: saturate(1.05) contrast(1.02);
  pointer-events: none;
}
/* "Get Scanned" caption tag */
.realself-tag {
  position: absolute; z-index: 5;
  top: 300px; right: 36px;
  font: 800 11px var(--sans); letter-spacing: .24em; text-transform: uppercase;
  color: #fff; opacity: .92;
  padding: 6px 13px; border-radius: 999px;
  background: rgba(10,7,20,.55); border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(3px);
}
.realself-tag b {
  background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  font-weight: 800;
}

/* ---------- Hero trophy (figure + podium, one render) ---------- */
.hero {
  position: absolute; z-index: 4;
  bottom: 96px;
  right: 72px;
  height: 712px; width: auto;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.55));
  pointer-events: none;
}

/* ---------- Right-column circles ---------- */
.circles {
  position: absolute; z-index: 3;
  right: 20px; top: 392px;
  display: flex; flex-direction: column; gap: 20px; align-items: center;
}
.circ {
  width: 150px; height: 150px; border-radius: 50%; padding: 3px;
  background: var(--brand-grad);
  box-shadow: 0 0 22px rgba(255,47,185,.45), 0 0 44px rgba(0,234,255,.28);
}
.circ > span {
  display: block; width: 100%; height: 100%; border-radius: 50%;
  overflow: hidden; background: #05030c;
  border: 2px solid rgba(6,3,14,.9);
}
.circ img { width: 100%; height: 100%; object-fit: cover; display: block; }
.circ--result { width: 168px; height: 168px; }

/* ============================================================
   CONTENT (left column)
   ============================================================ */
.content {
  position: absolute; z-index: 5;
  left: 40px; top: 30px; width: 402px;
}

.eyebrow {
  font-weight: 700; font-size: 14px; letter-spacing: .2em;
  text-transform: uppercase;
  background: var(--brand-grad); -webkit-background-clip: text;
  background-clip: text; color: transparent;
  filter: drop-shadow(0 0 8px rgba(255,47,185,.35));
  margin-bottom: 8px;
}

.title {
  font-family: "Anton", var(--sans);
  font-weight: 400; font-size: 82px; line-height: .9;
  letter-spacing: .012em;
  background: linear-gradient(180deg, #ffffff 0%, #eaf0ff 42%, #b9c6ff 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 34px rgba(150,130,255,.35);
  filter: drop-shadow(0 2px 1px rgba(0,0,0,.35));
}

.script {
  font-family: "Allura", cursive;
  font-size: 92px; line-height: .72;
  /* padding gives the background-clip:text paint box room for the tall
     Allura ascenders/descenders; negative margins keep the visual position
     so the layout below isn't pushed down */
  padding: 20px 12px 26px 0;
  margin: -18px 0 -24px 6px;
  background: linear-gradient(96deg, var(--magenta) 6%, var(--violet) 50%, var(--cyan) 96%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 16px rgba(0,234,255,.4)) drop-shadow(0 0 10px rgba(255,47,185,.3));
  transform: rotate(-3deg);
}

/* ---------- INQUIRE WITHIN brush button ---------- */
.inquire {
  position: relative;
  display: inline-block; margin-top: 14px;
  padding: 13px 34px;
  font: 800 25px var(--sans); letter-spacing: .12em; text-transform: uppercase;
  color: #fff; border: 0; cursor: default;
  background: linear-gradient(96deg, var(--pink) 0%, var(--violet) 52%, var(--blue) 100%);
  border-radius: 8px;
  filter: url(#brush) drop-shadow(0 6px 18px rgba(255,47,185,.4));
  text-shadow: 0 1px 2px rgba(0,0,0,.28);
  transform: rotate(-1deg);
}

.lede {
  margin-top: 22px; width: 320px;
  font-size: 15.5px; font-weight: 500; line-height: 1.55; color: #c4c8db;
}
.lede .hl {
  display: inline-block; margin-top: 4px;
  font-weight: 800; letter-spacing: .01em;
  background: linear-gradient(96deg, var(--magenta), var(--violet) 60%, var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 8px rgba(180,80,255,.4));
}

/* ---------- Feature rows ---------- */
.feats { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 20px; }
.feats li { display: flex; align-items: center; gap: 16px; }
.ic {
  flex: 0 0 auto; width: 58px; height: 58px; border-radius: 50%; padding: 2.5px;
  background: var(--brand-grad);
  box-shadow: 0 0 16px rgba(255,47,185,.4), 0 0 26px rgba(0,234,255,.22);
  display: grid; place-items: center;
}
.ic > span {
  width: 100%; height: 100%; border-radius: 50%;
  background: #0a0714; display: grid; place-items: center;
}
.ic svg { width: 30px; height: 30px; display: block; }
.ic svg [stroke] { stroke: url(#icg); }
.ic svg [fill]:not([fill="none"]) { fill: url(#icg); }

.ft-h {
  font-weight: 800; font-size: 21px; letter-spacing: .03em; text-transform: uppercase;
  /* full rainbow gradient text (matches original flyers) */
  background: var(--brand-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 0 9px rgba(160,90,255,.3));
}
/* children inherit the one continuous gradient from .ft-h */
.ft-h .accent { background: none; -webkit-text-fill-color: transparent; }
.ft-sub { display: block; margin-top: 4px; font-size: 13.5px; font-weight: 600; line-height: 1.42; color: #b7bccf; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { position: absolute; z-index: 6; left: 0; right: 0; bottom: 0; }
.foot__bar {
  height: 60px; display: grid; place-items: center;
  font-family: "Anton", var(--sans); font-size: 27px; letter-spacing: .045em;
  text-transform: uppercase; color: #0a0512;
  background: linear-gradient(96deg, var(--pink) 0%, var(--violet) 50%, var(--cyan) 100%);
  box-shadow: 0 0 40px rgba(180,60,255,.45);
  text-shadow: 0 1px 0 rgba(255,255,255,.25);
}
.foot__contact {
  height: 44px; display: flex; align-items: center; justify-content: center; gap: 14px;
  background: #060410; font-size: 14px; font-weight: 600; color: #cfd3e6; letter-spacing: .01em;
}
.foot__contact .sep { color: #55597a; }
.foot__contact span.item { display: inline-flex; align-items: center; gap: 7px; }
.foot__contact svg { width: 16px; height: 16px; }
.foot__contact svg [stroke] { stroke: url(#icg); }

/* ============================================================
   PRINT
   ============================================================ */
/* page size matches the poster exactly (720x1080px = 7.5in x 11.25in)
   so it prints on ONE page instead of overflowing */
@page { size: 7.5in 11.25in; margin: 0; }

/* ---- shot mode: strip chrome so the poster captures cleanly at 720x1080 ---- */
html[data-shot] body { padding: 0 !important; margin: 0; display: block; background: #060410; }
html[data-shot] .toolbar { display: none !important; }
html[data-shot] .stage { width: var(--W); max-width: none; margin: 0; }
html[data-shot] .poster { transform: none !important; border-radius: 0; box-shadow: none; }

/* ---- flat print sheet: a pre-rendered image that prints identically on any
        device (avoids mobile-Safari's blend/mask/gradient print artifacts) ---- */
.print-sheet { display: none; }
@media print {
  html, body { background: #fff; padding: 0; margin: 0; display: block; }
  .no-print, .toolbar, .stage { display: none !important; }
  .print-sheet {
    display: block; width: 7.5in; height: 11.25in; margin: 0;
    page-break-inside: avoid; break-inside: avoid; page-break-after: avoid;
  }
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
}

/* ============================================================
   PRICING SHEET (pricing.html)
   ============================================================ */
.phead { position: absolute; z-index: 5; top: 34px; left: 44px; right: 44px; text-align: center; }
.phead .eyebrow { filter: drop-shadow(0 0 8px rgba(255,47,185,.35)); }
.phead .title { font-size: 76px; }
/* extra line-height + padding so the tall Allura glyphs aren't clipped by
   the background-clip:text paint area */
.phead .script {
  font-size: 82px; line-height: 1.16;
  padding: 10px 12px 22px; margin: 2px 0 0;
  transform: rotate(-2deg); display: inline-block;
}
.phead__sub { margin-top: 12px; font-size: 14.5px; font-weight: 600; letter-spacing: .01em; color: #c4c8db; }
.phead__sub b { background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 800; }

.pcards {
  position: absolute; z-index: 5; left: 44px; right: 44px;
  top: 322px; bottom: 156px;
  display: flex; gap: 20px;
}
.pcard {
  position: relative; flex: 1; border-radius: 20px; padding: 22px 20px;
  background: linear-gradient(180deg, rgba(26,17,44,.72), rgba(12,8,22,.74));
  border: 1px solid rgba(255,255,255,.09);
  display: flex; flex-direction: column; align-items: center;
  box-shadow: 0 20px 50px rgba(8,4,20,.5);
}
.pcard--featured {
  border: 1.6px solid transparent;
  background:
    linear-gradient(180deg, rgba(30,18,52,.92), rgba(12,8,22,.92)) padding-box,
    var(--brand-grad) border-box;
  box-shadow: 0 0 42px rgba(160,60,255,.34), 0 20px 50px rgba(8,4,20,.55);
}
.pcard__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font: 800 10px var(--sans); letter-spacing: .16em; text-transform: uppercase;
  color: #fff; padding: 6px 15px; border-radius: 999px; white-space: nowrap;
  background: var(--brand-grad); box-shadow: 0 6px 16px rgba(255,47,185,.4);
}
.pcard__trophy { height: 264px; display: flex; align-items: flex-end; justify-content: center; margin-top: 6px; }
.pcard__trophy img { height: 264px; width: auto; filter: drop-shadow(0 12px 22px rgba(0,0,0,.5)); }

.tier { margin-top: 6px; font: 800 15px var(--sans); letter-spacing: .12em; text-transform: uppercase; color: #fff; text-align: center; }
.tier--muted { color: #aeb2c6; }
.price { margin: 4px 0 0; font-family: "Anton", sans-serif; line-height: .9; display: flex; align-items: baseline; gap: 7px; }
.price .cur { font-size: 66px; background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent; filter: drop-shadow(0 0 14px rgba(160,80,255,.35)); }
.price .per { font: 700 14px var(--sans); color: #c4c8db; letter-spacing: .03em; }

.pincludes { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; width: 100%; }
.pincludes li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: #d2d5e6; line-height: 1.34; }
.pincludes .dot { flex: 0 0 auto; width: 8px; height: 8px; margin-top: 5px; border-radius: 50%; background: var(--brand-grad); box-shadow: 0 0 0 3px rgba(122,92,255,.1); }
.pincludes b { color: #fff; font-weight: 700; }
.pincludes .muted { color: #9aa0b7; font-style: italic; }

.commit { margin-top: auto; padding-top: 16px; font: 800 11px var(--sans); letter-spacing: .1em; text-transform: uppercase; color: #9aa0b7; text-align: center; }

.pnote {
  position: absolute; z-index: 5; left: 44px; right: 44px; bottom: 116px; text-align: center;
  font-size: 13.5px; font-weight: 600; color: #c8cbdd;
}
.pnote b { background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 800; }

/* gradient text utility (pricing tier accents) */
.grad {
  background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Trophy nameplate (on the podium front) ---------- */
.nameplate {
  position: absolute; z-index: 5;
  bottom: 150px; left: 50%;
  transform: translateX(-50%) perspective(340px) rotateX(-14deg);
  width: 210px; padding: 7px 10px 8px; text-align: center;
  /* curve the plate downward at the ends to hug the round podium */
  border-radius: 6px 6px 5px 5px / 6px 6px 20px 20px;
  background: linear-gradient(180deg, #f8edb6 0%, #d9b25a 44%, #b98f36 52%, #f0dd93 100%);
  box-shadow: 0 4px 10px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.6), inset 0 -1px 0 rgba(90,60,10,.5);
  border: 1px solid rgba(120,86,20,.6);
}
.nameplate__brand {
  font: 800 12px var(--sans); letter-spacing: .12em; text-transform: uppercase;
  color: #2e2202; line-height: 1;
  text-shadow: 0 1px 0 rgba(255,255,255,.35);
}
.nameplate__line {
  font: 700 8.5px var(--sans); letter-spacing: .13em; text-transform: uppercase;
  color: #4a3706; margin-top: 3px; line-height: 1;
}
/* nudge for the trophy's horizontal position (trophy sits right of centre) */
.nameplate { margin-left: 42px; }

/* nameplate inside pricing cards (smaller, centred on the card trophy) */
.pcard__trophy { position: relative; }
.pcard .nameplate {
  bottom: 16px; left: 50%; margin-left: 0;
  transform: translateX(-50%) perspective(300px) rotateX(9deg);
  width: 66px; padding: 2px 4px 2.5px; border-radius: 2.5px;
}
.pcard .nameplate__brand { font-size: 5px; letter-spacing: .03em; }
.pcard .nameplate__line { font-size: 3.7px; letter-spacing: .05em; margin-top: 1px; }

/* ============================================================
   TROPHY MENU SHEET (trophy-menu.html)
   ============================================================ */
.mhead { position: absolute; z-index: 5; top: 26px; left: 44px; right: 44px; text-align: center; }
.mhead .title { font-size: 66px; }
.mhead .script {
  font-size: 68px; line-height: 1.16; padding: 8px 12px 10px; margin: 0;
  transform: rotate(-2deg); display: inline-block;
}
.mhead__sub { margin-top: 4px; font-size: 13.5px; font-weight: 600; color: #c4c8db; }
.mhead__sub b { background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 800; }

.slabel {
  position: absolute; z-index: 5; left: 0; right: 0; text-align: center;
  font: 800 12px var(--sans); letter-spacing: .24em; text-transform: uppercase;
  background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Figurine size ladder */
.sizes {
  position: absolute; z-index: 5; left: 30px; right: 30px; top: 276px;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.size-item { flex: 1; display: flex; flex-direction: column; align-items: center; }
.size-item img { width: auto; display: block; filter: drop-shadow(0 8px 16px rgba(0,0,0,.5)); }
.size-cap { margin-top: 8px; text-align: center; line-height: 1; }
.size-cap .in { display: block; font-family: "Anton", sans-serif; font-size: 24px; color: #fff; letter-spacing: .01em; }
.size-cap .pr {
  display: block; margin-top: 3px; font: 800 15px var(--sans);
  background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Trophy bases + columns */
.bases {
  position: absolute; z-index: 5; left: 30px; right: 30px; top: 640px;
  display: flex; justify-content: space-between; gap: 10px; align-items: stretch;
}
.base-item { flex: 1; display: flex; flex-direction: column; align-items: center; }
.base-item .bimg {
  width: 100%; height: 150px; padding: 8px;
  display: flex; align-items: flex-end; justify-content: center; overflow: hidden;
  background: radial-gradient(120% 92% at 50% 26%, rgba(255,255,255,.10), rgba(255,255,255,.02) 72%);
  border: 1px solid rgba(255,255,255,.09); border-radius: 12px;
}
.base-item .bimg img { max-height: 100%; max-width: 100%; width: auto; filter: drop-shadow(0 6px 12px rgba(0,0,0,.5)); }
.base-item .bname { margin-top: 8px; font: 700 10.5px var(--sans); color: #e6e8f4; text-align: center; line-height: 1.25; min-height: 26px; }
.base-item .bprice { margin-top: 2px; font: 800 14px var(--sans); background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.menu-note { position: absolute; z-index: 5; left: 44px; right: 44px; bottom: 114px; text-align: center; font-size: 12.5px; font-weight: 600; color: #c8cbdd; line-height: 1.5; }
.menu-note b { background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 800; }
.menu-note .star { color: #ffcf4a; }

/* ---------- Starting-price line (cheer / event flyer) ---------- */
.startprice {
  margin-top: 12px; font: 800 15px var(--sans); letter-spacing: .02em; color: #fff;
  display: flex; align-items: baseline; gap: 7px;
}
.startprice .amt {
  font-family: "Anton", sans-serif; font-size: 34px; letter-spacing: .01em;
  background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 12px rgba(160,80,255,.35));
}
.startprice .per { font: 700 13px var(--sans); color: #c4c8db; }
.startprice .lead { font: 700 12px var(--sans); letter-spacing: .14em; text-transform: uppercase; color: #aeb2c6; }

/* cheer figure is wider (pom-poms) — nudge right so it clears the copy */
body[data-theme="cheer"] .hero { right: 44px; }
body[data-theme="cheer"] .nameplate { margin-left: 70px; }

/* nameplate is now baked into every trophy render — hide the CSS overlay */
.nameplate { display: none !important; }

/* ============================================================
   MOBILE — toolbar (tabs + print button) responsive
   ============================================================ */
@media (max-width: 760px) {
  .toolbar {
    width: 100%;
    flex-direction: column; align-items: center; gap: 10px;
    margin-bottom: 14px; font-size: 13px;
  }
  .toolbar__links { justify-content: center; flex-wrap: wrap; gap: 8px 14px; }
  .toolbar__btn { font-size: 13px; padding: 10px 20px; }
}

/* ============================================================
   FIGURINE PRICING SHEET (figurine-pricing.html)
   ============================================================ */
.fig-cols {
  position: absolute; z-index: 5; left: 40px; right: 40px; top: 262px; bottom: 150px;
  display: flex; gap: 22px;
}
.fig-card {
  flex: 1; border-radius: 20px; padding: 16px 16px 10px;
  display: flex; flex-direction: column; align-items: center;
  background: linear-gradient(180deg, rgba(26,17,44,.72), rgba(12,8,22,.74));
  border: 1px solid rgba(255,255,255,.09); box-shadow: 0 20px 50px rgba(8,4,20,.5);
}
.fig-card__title { font: 800 16px var(--sans); letter-spacing: .12em; text-transform: uppercase; color: #fff; text-align: center; }
.fig-card__title .accent { background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.fig-card__img { height: 208px; display: flex; align-items: flex-end; justify-content: center; margin: 4px 0 6px; }
.fig-card__img img { height: 208px; width: auto; filter: drop-shadow(0 10px 20px rgba(0,0,0,.5)); }
.fig-list { list-style: none; width: 100%; margin: 6px 0 0; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.fig-list li { display: flex; align-items: center; justify-content: space-between; padding: 10px 6px; border-top: 1px solid rgba(255,255,255,.09); flex: 1; }
.fig-list li:first-child { border-top: 0; }
.fig-list .sz { font-family: "Anton", sans-serif; font-size: 19px; letter-spacing: .02em; color: #fff; }
.fig-list .pr { font: 800 18px var(--sans); background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.fig-note { position: absolute; z-index: 5; left: 44px; right: 44px; bottom: 116px; text-align: center; font-size: 12.5px; font-weight: 600; color: #c8cbdd; }
.fig-note b { background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 800; }
