/* Heavenbound on the web.

   The palette is the emblem's: deep night blue, moonlight, and the gold of the seal. Nothing
   here is a framework — one stylesheet for both pages, and every moving part gives up quietly
   under prefers-reduced-motion. */

:root {
  --night: #060a14;
  --night-2: #0a1020;
  --deep: #101c34;
  --panel: rgba(146, 178, 224, .045);
  --panel-lit: rgba(146, 178, 224, .085);
  --edge: rgba(159, 182, 216, .14);
  --edge-gold: rgba(230, 193, 105, .38);
  --text: #e2e8f4;
  --muted: #93a3c0;
  --gold: #e6c169;
  --gold-soft: #f0d79a;
  --moon: #f6ecd2;
  --jade: #7fc2a8;
  --red: #d98274;
  /* Cinzel cuts the headings like something carved on a gate; Cormorant's italic is the
     voice under it; Ma Shan Zheng is a brush, and every hanzi on the site is written with it. */
  --display: "Cinzel", Georgia, "Times New Roman", serif;
  --script: "Cormorant Garamond", Georgia, serif;
  --brush: "Ma Shan Zheng", "Cormorant Garamond", cursive;
  --body: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--night);
  color: var(--text);
  font: 16px/1.7 var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* A faint star-field and a cold wash at the top, so a dark page is never flat black. */
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(1px 1px at 12% 18%, rgba(246, 236, 210, .5), transparent 60%),
    radial-gradient(1px 1px at 78% 12%, rgba(246, 236, 210, .35), transparent 60%),
    radial-gradient(1.4px 1.4px at 64% 44%, rgba(246, 236, 210, .3), transparent 60%),
    radial-gradient(1px 1px at 32% 62%, rgba(246, 236, 210, .28), transparent 60%),
    radial-gradient(1px 1px at 88% 72%, rgba(246, 236, 210, .3), transparent 60%),
    radial-gradient(900px 500px at 50% -10%, rgba(30, 58, 110, .5), transparent 70%);
}

img { max-width: 100%; display: block; }
a { color: inherit; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .92em; color: var(--gold-soft); }

.wrap { max-width: 1060px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }

/* --- the bar ---------------------------------------------------------------------- */

.top {
  position: sticky; top: 0; z-index: 30;
  background: rgba(6, 10, 20, .72); backdrop-filter: blur(12px) saturate(120%);
  border-bottom: 1px solid var(--edge);
}
.top .wrap { display: flex; align-items: center; gap: 18px; height: 66px; }
.mark { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.mark img {
  width: 34px; height: 34px; border-radius: 50%;
  box-shadow: 0 0 0 1px var(--edge-gold), 0 0 18px rgba(230, 193, 105, .18);
  transition: transform 1.2s var(--ease), box-shadow .4s var(--ease);
}
.mark:hover img { transform: rotate(180deg); box-shadow: 0 0 0 1px var(--gold), 0 0 26px rgba(230, 193, 105, .4); }
.mark b { font-family: var(--display); font-size: 19px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }

.top nav { display: flex; gap: 22px; margin-left: auto; font-size: 14px; }
.top nav a { color: var(--muted); text-decoration: none; position: relative; padding: 4px 0; transition: color .25s; }
.top nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width .35s var(--ease);
}
.top nav a:hover { color: var(--gold-soft); }
.top nav a:hover::after { width: 100%; }

/* --- buttons ---------------------------------------------------------------------- */

.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 999px; border: 1px solid transparent;
  font: 500 14px/1 var(--body); letter-spacing: .03em;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 50%, var(--gold) 100%);
  color: #14110a;
  transition: transform .25s var(--ease), box-shadow .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(230, 193, 105, .28); }
.btn:active { transform: translateY(0); }
/* A blade of light crossing the button on hover. */
.btn::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 45%;
  left: -60%; transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), transparent);
}
.btn:hover::after { animation: sweep .7s var(--ease); }
@keyframes sweep { to { left: 120%; } }

.btn.ghost {
  background: transparent; color: var(--text); border-color: var(--edge);
}
.btn.ghost:hover { border-color: var(--gold); color: var(--gold-soft); box-shadow: 0 8px 24px rgba(230, 193, 105, .12); }
.btn[disabled] { opacity: .42; cursor: not-allowed; transform: none; box-shadow: none; }
.btn[disabled]::after { display: none; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px; border-radius: 999px;
  border: 1px solid var(--edge-gold); color: var(--gold);
  background: rgba(230, 193, 105, .05);
  font: 500 11px/1 var(--body); letter-spacing: .2em; text-transform: uppercase;
}

/* --- the hero --------------------------------------------------------------------- */

.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--edge); }
.hero .art {
  position: absolute; inset: -6% -4%;
  background: #05070f center/cover no-repeat;
  opacity: .55; filter: saturate(.85) brightness(.55) contrast(1.05);
  transform: translate3d(calc(var(--px, 0) * -14px), calc(var(--py, 0) * -10px), 0) scale(1.06);
  transition: transform .9s var(--ease);
}
.hero .veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 60% at 50% 30%, rgba(6, 10, 20, .25), rgba(6, 10, 20, .8) 70%),
    linear-gradient(180deg, rgba(6, 10, 20, .7) 0%, rgba(6, 10, 20, .55) 40%, var(--night) 100%);
}
/* Qi, drifting up out of the valley. */
.motes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.motes i {
  position: absolute; bottom: -10px; width: 3px; height: 3px; border-radius: 50%;
  background: var(--gold-soft); opacity: 0;
  box-shadow: 0 0 8px rgba(230, 193, 105, .8);
  animation: rise linear infinite;
}
@keyframes rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  12% { opacity: .75; }
  85% { opacity: .35; }
  100% { transform: translateY(-78vh) translateX(26px); opacity: 0; }
}

.hero .wrap { padding: 104px 20px 86px; }
.hero h1 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(34px, 6.4vw, 62px); line-height: 1.08; margin: 24px 0 16px; letter-spacing: .01em;
  text-shadow: 0 2px 40px rgba(6, 10, 20, .9);
}
.hero h1 em {
  display: block; font-family: var(--script); font-style: italic; font-weight: 500;
  font-size: clamp(44px, 8.6vw, 82px); line-height: 1.05; letter-spacing: -.01em;
  background: linear-gradient(100deg, var(--gold) 0%, var(--moon) 30%, var(--gold) 55%, var(--moon) 80%, var(--gold) 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gild 9s ease-in-out infinite;
}
/* The gold moves through the letters, the way light moves along a blade being turned. */
@keyframes gild { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.hanzi {
  font-family: var(--brush); color: var(--gold-soft); opacity: .78;
  letter-spacing: .12em; font-size: 22px; margin: 0 0 20px;
}
.hanzi small { font-family: var(--body); font-size: 12.5px; letter-spacing: .16em;
               text-transform: uppercase; color: var(--muted); margin-left: 12px; }
.lede { max-width: 37em; color: #c3cee2; font-size: 17.5px; margin: 0 0 32px; }
.cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* The seal, turning beside the words on a wide screen. The turn owns `transform`, so the
   cursor moves the seal's *box* instead and the two never fight over the same property. */
.seal-hold {
  position: absolute; right: -60px; top: 50%; width: 400px; height: 400px; margin-top: -200px;
  pointer-events: none;
  transform: translate3d(calc(var(--px, 0) * 20px), calc(var(--py, 0) * 16px), 0);
  transition: transform 1s var(--ease);
}
.seal {
  width: 100%; height: 100%; border-radius: 50%; opacity: .5;
  filter: drop-shadow(0 0 60px rgba(230, 193, 105, .28));
  animation: turn 120s linear infinite;
}
@keyframes turn { to { transform: rotate(360deg); } }
@media (max-width: 980px) { .seal-hold { display: none; } }

/* --- the count -------------------------------------------------------------------- */

.count {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1px;
  background: var(--edge); border-bottom: 1px solid var(--edge); position: relative; z-index: 1;
}
.count div { background: var(--night); padding: 30px 20px; text-align: center; transition: background .4s; }
.count div:hover { background: var(--night-2); }
.count b {
  display: block; font-family: var(--display); font-size: 40px; font-weight: 600;
  color: var(--gold); text-shadow: 0 0 26px rgba(230, 193, 105, .3); line-height: 1.1;
}
.count span { font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }

/* --- sections --------------------------------------------------------------------- */

section { padding: 84px 0; position: relative; z-index: 1; }
section + section { border-top: 1px solid var(--edge); }
.eyebrow { font: 500 11px/1 var(--body); letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
section h2 {
  font-family: var(--script); font-weight: 500; font-size: clamp(32px, 4.8vw, 46px);
  margin: 16px 0 12px; line-height: 1.12;
}
section .sub { color: var(--muted); max-width: 40em; margin: 0 0 36px; }

/* A rule with a seal in it, between sections. */
.rule-mark { display: flex; align-items: center; gap: 18px; color: var(--gold); opacity: .6; margin: 0 0 8px; }
.rule-mark::before, .rule-mark::after {
  content: ""; height: 1px; flex: 1;
  background: linear-gradient(90deg, transparent, var(--edge-gold), transparent);
}
.rule-mark span { font-family: var(--brush); font-size: 26px; letter-spacing: .1em; }

/* --- cards, with a light that follows the cursor ------------------------------------ */

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 16px; }
.card, .good, .plate {
  position: relative; overflow: hidden;
  background: var(--panel); border: 1px solid var(--edge); border-radius: 16px;
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.card, .good { padding: 24px; }
.card::before, .good::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .35s; pointer-events: none;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(230, 193, 105, .13), transparent 62%);
}
.card:hover, .good:hover, .plate:hover {
  transform: translateY(-4px);
  border-color: var(--edge-gold);
  box-shadow: 0 18px 44px rgba(3, 6, 14, .7), 0 0 0 1px rgba(230, 193, 105, .08);
}
.card:hover::before, .good:hover::before { opacity: 1; }

.card .glyph, .good .glyph {
  position: absolute; right: 10px; top: -6px; font-family: var(--brush); font-size: 78px;
  color: rgba(230, 193, 105, .07); pointer-events: none;
  transition: transform .5s var(--ease), color .5s;
}
.card:hover .glyph, .good:hover .glyph { transform: translateY(6px) scale(1.06); color: rgba(230, 193, 105, .14); }
.card .tag, .good .tag { font: 500 10px/1 var(--body); letter-spacing: .18em; text-transform: uppercase; color: var(--jade); }
.card h3, .good h3 { font-family: var(--script); font-weight: 500; font-size: 24px; margin: 12px 0 8px; letter-spacing: .005em; }
.card p, .good p { margin: 0; color: var(--muted); font-size: 14.5px; }

.plates { display: grid; grid-template-columns: repeat(auto-fit, minmax(236px, 1fr)); gap: 16px; }
.plate { background: var(--night-2); }
.plate img {
  height: 186px; width: 100%; object-fit: cover;
  filter: saturate(.8) brightness(.78); transition: transform .7s var(--ease), filter .5s;
}
.plate:hover img { transform: scale(1.07); filter: saturate(1) brightness(.95); }
.plate figcaption { padding: 14px 16px; font-size: 13.5px; color: var(--muted); }
.plate figcaption b { color: var(--text); font-weight: 500; }

/* A painting behind a section, sunk far enough back that words stay readable over it. */
section.scened { overflow: hidden; }
section.scened::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--art, none) center/cover no-repeat;
  opacity: .16; filter: saturate(.7) brightness(.7);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 35%, #000 65%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 35%, #000 65%, transparent);
}

/* --- the ladder ------------------------------------------------------------------- */

.ladder { border: 1px solid var(--edge); border-radius: 16px; overflow: hidden; }
.rung {
  display: flex; align-items: baseline; gap: 18px; padding: 18px 22px;
  border-bottom: 1px solid var(--edge); position: relative;
  transition: background .35s, padding-left .35s var(--ease);
}
.rung:last-child { border-bottom: 0; }
.rung::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  transform: scaleY(0); transition: transform .4s var(--ease);
}
.rung:hover { background: var(--panel-lit); padding-left: 30px; }
.rung:hover::before { transform: scaleY(1); }
.rung .n { font-family: var(--brush); font-size: 26px; color: var(--gold); min-width: 2.4em; }
.rung b { font-weight: 500; }
.rung span.what { color: var(--muted); font-size: 14px; }
.rung.shut { opacity: .45; }
.rung.shut .n { color: var(--muted); }

/* --- the store -------------------------------------------------------------------- */

.shelf { display: grid; grid-template-columns: repeat(auto-fit, minmax(266px, 1fr)); gap: 16px; }
.good { display: flex; flex-direction: column; gap: 12px; }
.good.monthly { border-color: var(--edge-gold); background: linear-gradient(180deg, rgba(230, 193, 105, .07), rgba(230, 193, 105, .02)); }
.good.monthly .tag { color: var(--gold); }
.good h3 { margin: 0; font-size: 23px; }
.good p { flex: 1; }
.good .price { font-family: var(--display); font-weight: 600; font-size: 30px; color: var(--moon); }
.good .price small { font-size: 14px; color: var(--muted); font-family: var(--body); }
.good .held { font-size: 13px; color: var(--jade); min-height: 18px; }

.who {
  display: flex; align-items: center; gap: 14px; padding: 18px 22px; margin-bottom: 30px;
  border: 1px solid var(--edge); border-radius: 16px; background: var(--panel);
}
.who img { width: 40px; height: 40px; border-radius: 50%; box-shadow: 0 0 0 1px var(--edge-gold); }
.who .name { font-weight: 500; }
.who .state { color: var(--muted); font-size: 13.5px; }
.who .btn { margin-left: auto; }

.rules { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.rule { border-left: 2px solid var(--edge); padding: 4px 0 4px 18px; transition: border-color .35s, transform .35s var(--ease); }
.rule:hover { border-color: var(--gold); transform: translateX(3px); }
.rule b { display: block; font-weight: 500; margin-bottom: 4px; }
.rule span { color: var(--muted); font-size: 14.5px; }

.shout { color: var(--red); min-height: 22px; font-size: 14px; margin: 16px 0 0; }

footer { padding: 40px 0 64px; color: var(--muted); font-size: 13.5px; border-top: 1px solid var(--edge); position: relative; z-index: 1; }
footer p { margin: 7px 0; max-width: 46em; }
footer .seal-small { width: 44px; height: 44px; border-radius: 50%; opacity: .5; margin-bottom: 14px; }

/* --- arriving --------------------------------------------------------------------- */

.rise { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rise.here { opacity: 1; transform: none; }

@media (max-width: 620px) {
  .hero .wrap { padding: 74px 20px 60px; }
  section { padding: 62px 0; }
  .top nav { gap: 16px; }
  .top nav a.hide-small { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .rise { opacity: 1; transform: none; }
  .motes { display: none; }
}

/* --- the cursor, and the thread across the top ------------------------------------- */

/* Qi comes off the pointer and falls away. Drawn on one canvas over everything, and it
   never eats a click. */
.qi-trail {
  position: fixed; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 60;
}

/* How far down the road you are. */
.progress {
  position: fixed; left: 0; top: 0; height: 2px; width: 0; z-index: 70;
  background: linear-gradient(90deg, rgba(230, 193, 105, 0), var(--gold), var(--moon));
  box-shadow: 0 0 12px rgba(230, 193, 105, .6);
  transition: width .12s linear;
}

/* A ring of light where the page was struck, once. */
.strike {
  position: fixed; pointer-events: none; z-index: 59;
  width: 14px; height: 14px; margin: -7px 0 0 -7px; border-radius: 50%;
  border: 1px solid var(--gold-soft);
  animation: strike .7s var(--ease) forwards;
}
@keyframes strike {
  from { transform: scale(.4); opacity: .9; }
  to { transform: scale(9); opacity: 0; }
}

/* Cards lean towards the cursor. The lean is set from JS, so a card nobody has touched
   keeps the plain transform the rest of the stylesheet gives it. */
.card.tilting, .good.tilting {
  transform: perspective(900px)
             rotateX(calc(var(--ty, 0) * -5deg)) rotateY(calc(var(--tx, 0) * 5deg))
             translateY(-4px);
  transition: transform .18s var(--ease), border-color .35s, box-shadow .35s;
}

@media (prefers-reduced-motion: reduce) {
  .qi-trail, .progress, .strike { display: none; }
  .card.tilting, .good.tilting { transform: none; }
}
@media (pointer: coarse) { .qi-trail { display: none; } }

/* --- the chapter rail -------------------------------------------------------------- */

.rail {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px 4px 18px; margin: 0 -4px;
  scrollbar-width: thin; scrollbar-color: var(--edge-gold) transparent;
  cursor: grab;
}
.rail.dragging { cursor: grabbing; scroll-snap-type: none; }
.rail::-webkit-scrollbar { height: 6px; }
.rail::-webkit-scrollbar-thumb { background: var(--edge); border-radius: 99px; }
.rail:hover::-webkit-scrollbar-thumb { background: var(--edge-gold); }

.chapter {
  position: relative; flex: 0 0 300px; scroll-snap-align: start;
  border: 1px solid var(--edge); border-radius: 16px; overflow: hidden;
  background: var(--night-2);
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.chapter img {
  width: 100%; height: 300px; object-fit: cover;
  filter: saturate(.75) brightness(.6); transition: transform .8s var(--ease), filter .5s;
}
.chapter .said {
  position: absolute; inset: auto 0 0 0; padding: 18px 18px 20px;
  background: linear-gradient(180deg, transparent, rgba(6, 10, 20, .88) 38%, rgba(6, 10, 20, .97));
}
.chapter .n { font-family: var(--brush); font-size: 26px; color: var(--gold); display: block; line-height: 1; }
.chapter b { font-family: var(--script); font-weight: 500; font-size: 21px; display: block; margin: 6px 0 4px; }
.chapter .what { color: var(--muted); font-size: 13.5px; display: block;
                 max-height: 0; opacity: 0; overflow: hidden; transition: max-height .45s var(--ease), opacity .35s; }
.chapter:hover { transform: translateY(-6px); border-color: var(--edge-gold); box-shadow: 0 20px 50px rgba(3, 6, 14, .75); }
.chapter:hover img { transform: scale(1.06); filter: saturate(1) brightness(.78); }
.chapter:hover .what { max-height: 80px; opacity: 1; }
.drag-hint { color: var(--muted); font-size: 13px; margin: 6px 0 0; }

/* --- the bestiary, running past --------------------------------------------------- */

.marquee {
  margin-top: 30px; overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.running { display: flex; gap: 16px; width: max-content; animation: run 64s linear infinite; }
.marquee:hover .running { animation-play-state: paused; }
@keyframes run { to { transform: translateX(-50%); } }

.beast {
  margin: 0; flex: 0 0 172px; border: 1px solid var(--edge); border-radius: 14px;
  overflow: hidden; background: var(--night-2);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.beast img { width: 100%; height: 172px; object-fit: cover; filter: saturate(.8) brightness(.8); transition: filter .4s, transform .6s var(--ease); }
.beast figcaption { padding: 10px 12px 12px; }
.beast b { display: block; font-family: var(--script); font-size: 17px; font-weight: 500; }
.beast span { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); opacity: .8; }
.beast:hover { transform: translateY(-5px) scale(1.03); border-color: var(--edge-gold); box-shadow: 0 16px 40px rgba(3, 6, 14, .7); }
.beast:hover img { filter: saturate(1.05) brightness(.95); transform: scale(1.05); }

/* --- the faces -------------------------------------------------------------------- */

.faces { display: grid; grid-template-columns: repeat(auto-fit, minmax(154px, 1fr)); gap: 18px; }
.face { margin: 0; text-align: center; }
.face img {
  width: 118px; height: 118px; border-radius: 50%; object-fit: cover; margin: 0 auto 12px;
  border: 1px solid var(--edge); filter: saturate(.8) brightness(.82);
  transition: transform .4s var(--ease), filter .4s, border-color .4s, box-shadow .4s;
}
.face:hover img {
  transform: translateY(-4px) scale(1.06); filter: saturate(1) brightness(1);
  border-color: var(--gold); box-shadow: 0 0 0 4px rgba(230, 193, 105, .1), 0 14px 34px rgba(3, 6, 14, .6);
}
.face b { display: block; font-family: var(--script); font-size: 18px; font-weight: 500; }
.face span { color: var(--muted); font-size: 13px; }

@media (prefers-reduced-motion: reduce) {
  .running { animation: none; }
  .chapter .what { max-height: 80px; opacity: 1; }
}

/* What the page says when somebody comes back from paying. */
.thanks {
  display: flex; flex-direction: column; gap: 4px; margin: 0 0 24px;
  padding: 18px 22px; border-radius: 14px;
  border: 1px solid var(--edge-gold); background: rgba(230, 193, 105, .07);
}
.thanks b { font-family: var(--script); font-size: 20px; font-weight: 500; color: var(--gold-soft); }
.thanks span { color: var(--muted); font-size: 14px; }
