:root {
  --bg: #120a1f;
  --card: rgba(255, 255, 255, .06);
  --card-strong: rgba(255, 255, 255, .1);
  --line: rgba(255, 255, 255, .14);
  --text: #fff7ef;
  --muted: #c7b8d8;
  --accent: #ff6b6b;
  --accent-2: #ffd166;
  --wa: #25d366;
  --radius: 20px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html, body { margin: 0; min-height: 100%; }
body {
  background:
    radial-gradient(1100px 700px at 15% -10%, #3d1a63 0%, transparent 60%),
    radial-gradient(900px 600px at 110% 110%, #5f1f3d 0%, transparent 55%),
    var(--bg);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 540px; margin: 0 auto; padding: 28px 20px 64px; }
.center { text-align: center; }
h1, h2, .display { font-family: var(--font-display); font-weight: 600; letter-spacing: -.01em; line-height: 1.08; margin: 0 0 12px; }
.hero { font-size: clamp(40px, 9.5vw, 56px); margin: 22px 0 12px; }
.lede { color: var(--muted); font-size: 17px; margin: 0 0 24px; }
.lede b { color: var(--text); }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 600; color: var(--accent-2); margin: 0 0 10px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; }
.brand .logo { width: 34px; height: 34px; border-radius: 9px; box-shadow: 0 6px 18px -6px rgba(255, 107, 107, .8); }
.wordmark { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -.01em; }
.wordmark em { font-style: normal; color: var(--accent); display: inline-block; transform: rotate(12deg); margin-left: 1px; }
.brand.small { justify-content: center; margin-bottom: 26px; }
.brand.small .logo { width: 26px; height: 26px; border-radius: 7px; }
.brand.small .wordmark { font-size: 17px; }
.brand.inline { display: inline-flex; margin: 0 0 8px; gap: 7px; }
.brand.inline .logo { width: 22px; height: 22px; border-radius: 6px; }
.brand.inline .wordmark { font-size: 15px; color: var(--muted); }
.hint { color: var(--muted); font-size: 13.5px; }
a { color: var(--accent-2); }

.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; backdrop-filter: blur(10px); margin-bottom: 20px; }

label { display: block; font-weight: 500; font-size: 14px; margin-bottom: 16px; }
label small { color: var(--muted); font-weight: 400; margin-left: 6px; }
label .hint { display: block; font-weight: 400; margin-top: 4px; }
input, textarea {
  display: block; width: 100%; margin-top: 7px;
  font: inherit; font-size: 16px; color: var(--text);
  background: rgba(0, 0, 0, .28); border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 14px; outline: none; transition: border-color .15s, box-shadow .15s;
}
input:focus, textarea:focus { border-color: var(--accent-2); box-shadow: 0 0 0 3px rgba(255, 209, 102, .18); }
input::placeholder, textarea::placeholder { color: rgba(255, 247, 239, .35); }
textarea { resize: vertical; min-height: 120px; }
.row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 400px) { .row.two { grid-template-columns: 1fr; gap: 0; } }
input.invalid, textarea.invalid { border-color: var(--accent); }

fieldset { border: 0; padding: 0; margin: 0 0 16px; }
legend { font-weight: 500; font-size: 14px; margin-bottom: 8px; padding: 0; }
.types { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.type { position: relative; margin: 0; cursor: pointer; }
.type input { position: absolute; opacity: 0; width: 0; height: 0; margin: 0; }
.type-box { display: flex; flex-direction: column; gap: 4px; height: 100%; padding: 14px; border-radius: 14px; border: 1px solid var(--line); background: rgba(0, 0, 0, .2); transition: border-color .15s, background .15s, transform .15s; }
.type input:checked + .type-box { border-color: var(--accent-2); background: rgba(255, 209, 102, .1); }
.type input:focus-visible + .type-box { box-shadow: 0 0 0 3px rgba(255, 209, 102, .3); }
.type:active .type-box { transform: scale(.98); }
.type-ico { font-size: 24px; }
.type-name { font-weight: 600; }
.type-desc { color: var(--muted); font-size: 12.5px; font-weight: 400; line-height: 1.35; }

details.more { margin-bottom: 18px; }
details.more summary { cursor: pointer; color: var(--muted); font-size: 14px; margin-bottom: 10px; }

.btn {
  display: inline-block; vertical-align: middle;
  font: inherit; font-weight: 600; font-size: 16px; color: var(--text); line-height: 1.3;
  background: var(--card-strong); border: 1px solid var(--line); border-radius: 14px;
  padding: 13px 20px; cursor: pointer; text-decoration: none; text-align: center;
  transition: transform .12s, background .15s, filter .15s; -webkit-tap-highlight-color: transparent;
}
.btn:hover { filter: brightness(1.08); }
.btn:active { transform: scale(.98); }
.btn.primary { background: linear-gradient(135deg, var(--accent) 0%, #ff8e53 100%); border-color: transparent; color: #2a0a0a; box-shadow: 0 10px 30px -10px rgba(255, 107, 107, .7); }
.btn.big { display: block; width: 100%; padding: 16px 20px; font-size: 17px; }
.btn.ghost { background: transparent; border-color: transparent; color: var(--muted); }
.btn.wa { background: var(--wa); border-color: transparent; color: #05301a; }
.btn:disabled { opacity: .5; cursor: default; }
.actions { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }

.result h2 { font-size: 26px; }
.linkbox { display: flex; gap: 8px; margin: 14px 0 4px; }
.linkbox input { margin: 0; font-size: 13px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.linkbox .btn { flex: 0 0 auto; }

footer { color: var(--muted); font-size: 13px; text-align: center; margin-top: 24px; }

/* ---------- Recipient page ---------- */
.stage { min-height: 100dvh; display: flex; flex-direction: column; justify-content: center; }
.stage[hidden] { display: none; }
.envelope { font-size: 64px; line-height: 1; margin-bottom: 18px; animation: bob 2.4s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-8px) rotate(3deg); } }
.reassure { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 8px; text-align: left; color: var(--muted); font-size: 14.5px; }
.reassure li { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 10px 14px; }
#intro .btn.ghost { margin-top: 8px; width: 100%; }

.frame { position: relative; width: min(78vw, 300px); aspect-ratio: 3 / 4; margin: 10px auto 16px; border-radius: 24px; overflow: hidden; background: #000; border: 2px solid var(--line); box-shadow: 0 20px 60px -20px rgba(0, 0, 0, .8); }
.frame video { width: 100%; height: 100%; object-fit: cover; transform: scaleX(-1); }
.count { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(0, 0, 0, .45); font-family: var(--font-display); font-size: 120px; font-weight: 700; color: #fff; }
.count[hidden] { display: none; }
.count span { animation: pop .9s ease-out; }
@keyframes pop { 0% { transform: scale(1.6); opacity: 0; } 30% { transform: scale(1); opacity: 1; } 100% { opacity: .9; } }

.pip { position: fixed; top: 14px; right: 14px; width: 92px; aspect-ratio: 3 / 4; border-radius: 16px; overflow: hidden; border: 2px solid rgba(255, 255, 255, .5); box-shadow: 0 8px 24px rgba(0, 0, 0, .5); z-index: 30; background: #000; }
.pip[hidden] { display: none; }
.pip video { width: 100%; height: 100%; object-fit: cover; transform: scaleX(-1); }
.rec-dot { position: absolute; top: 6px; left: 6px; width: 10px; height: 10px; border-radius: 50%; background: #ff3b3b; box-shadow: 0 0 0 2px rgba(0, 0, 0, .35); animation: blink 1.2s infinite; }
@keyframes blink { 50% { opacity: .25; } }

#reveal { position: relative; }
.reveal-root { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 80px 22px 120px; max-width: 560px; margin: 0 auto; width: 100%; }
.reactbar { position: fixed; left: 0; right: 0; bottom: 0; padding: 14px 18px calc(14px + env(safe-area-inset-bottom)); display: flex; align-items: center; justify-content: space-between; gap: 12px; background: rgba(10, 5, 20, .85); backdrop-filter: blur(12px); border-top: 1px solid var(--line); z-index: 20; animation: rise .35s ease-out; }
.reactbar[hidden] { display: none; }
@keyframes rise { from { transform: translateY(100%); } }
.rec { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); }
.rec .dot { width: 10px; height: 10px; border-radius: 50%; background: #ff3b3b; animation: blink 1.2s infinite; }
.rec b { color: var(--text); font-variant-numeric: tabular-nums; }
#continueBar { justify-content: center; }

/* Slow reveal */
.slow { text-align: center; }
.slow-lead { font-size: 22px; color: var(--muted); opacity: 0; transition: opacity .8s; margin: 0 0 22px; font-family: var(--font-display); }
.slow-lead.on { opacity: 1; }
.slow-title { font-size: clamp(38px, 10vw, 60px); margin: 0 0 26px; }
.slow-title .word { display: inline-block; white-space: nowrap; }
.slow-title .ch { display: inline-block; opacity: 0; filter: blur(14px); transform: translateY(10px) scale(1.15); transition: opacity 1.1s ease, filter 1.1s ease, transform 1.1s ease; white-space: pre; }
.slow-title .ch.on { opacity: 1; filter: blur(0); transform: none; }
.slow-msg { font-size: 19px; color: var(--muted); white-space: pre-wrap; margin: 0; }
.slow-msg .w { opacity: 0; transition: opacity .5s; }
.slow-msg .w.on { opacity: 1; }

/* Story */
.story { position: fixed; inset: 0; display: flex; flex-direction: column; padding: 16px 16px calc(16px + env(safe-area-inset-bottom)); user-select: none; -webkit-user-select: none; }
.story-bars { display: flex; gap: 5px; margin: 6px 110px 0 0; }
.story-bars i { flex: 1; height: 3px; border-radius: 3px; background: rgba(255, 255, 255, .28); overflow: hidden; display: block; }
.story-bars i b { display: block; height: 100%; width: 0; background: #fff; }
.story-bars i.done b { width: 100%; }
.story-bars i.active b { animation: fill var(--dur, 5s) linear forwards; }
@keyframes fill { to { width: 100%; } }
.story-slide { flex: 1; display: flex; flex-direction: column; justify-content: center; text-align: center; padding: 20px 8px; animation: slidein .5s ease-out; }
.story-slide p { font-family: var(--font-display); font-size: clamp(26px, 6.5vw, 36px); line-height: 1.25; margin: 0; white-space: pre-wrap; }
.story-slide.final h1 { font-size: clamp(40px, 11vw, 64px); animation: bloom 1.2s ease-out; }
.story-slide.final p { font-family: var(--font-body); font-size: 17px; color: var(--muted); }
@keyframes slidein { from { opacity: 0; transform: translateY(14px); } }
@keyframes bloom { from { opacity: 0; transform: scale(.7); filter: blur(10px); } }
.story-hint { text-align: center; color: var(--muted); font-size: 13px; padding-bottom: 96px; }

/* Video */
.vid { text-align: center; }
.vid video { width: 100%; max-height: 62vh; border-radius: 18px; background: #000; box-shadow: 0 20px 60px -20px rgba(0, 0, 0, .8); }
.vid .playwrap { position: relative; }
.vid .play { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(0, 0, 0, .35); border-radius: 18px; border: 0; color: #fff; font: inherit; font-size: 20px; font-weight: 600; cursor: pointer; }
.vid .play span { width: 84px; height: 84px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; font-size: 34px; box-shadow: 0 10px 30px -8px rgba(255, 107, 107, .9); padding-left: 6px; }
.vid .after { animation: slidein .6s ease-out; }
.vid .after h1 { font-size: clamp(36px, 9vw, 54px); margin-top: 26px; }
.vid .after p { color: var(--muted); font-size: 18px; white-space: pre-wrap; }
.vid .err { color: var(--accent-2); font-size: 14px; margin-top: 10px; }

/* Scratch card */
.scratch { text-align: center; }
.scratch-wrap { position: relative; border-radius: 22px; overflow: hidden; margin: 0 auto; max-width: 420px; box-shadow: 0 24px 70px -20px rgba(0, 0, 0, .9); }
.scratch-card { background: linear-gradient(160deg, #fff4e1 0%, #ffd9c9 100%); color: #2c1226; padding: 46px 26px; min-height: 340px; display: flex; flex-direction: column; justify-content: center; }
.scratch-card h1 { font-size: clamp(34px, 8.5vw, 48px); margin: 0 0 14px; }
.scratch-card p { margin: 0; font-size: 17px; white-space: pre-wrap; color: #5a2c4c; }
.scratch-cover { position: absolute; inset: 0; width: 100%; height: 100%; touch-action: none; cursor: crosshair; transition: opacity .9s ease; }
.scratch-cover.gone { opacity: 0; pointer-events: none; }
.scratch-hint { color: var(--muted); margin: 18px 0 0; font-size: 15px; }
.scratch-hint.hide { opacity: 0; transition: opacity .5s; }

/* Done */
.playback { width: min(70vw, 280px); aspect-ratio: 3 / 4; object-fit: cover; border-radius: 22px; background: #000; margin: 6px auto 8px; display: block; box-shadow: 0 20px 60px -20px rgba(0, 0, 0, .8); }
#done .actions { margin-top: 20px; }
.tiny { font-size: 13px; color: var(--muted); margin-top: 26px; }

#confetti { position: fixed; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 40; }
.error-box { text-align: center; }

/* ---------- v2: instruction, photo, slower pacing ---------- */
.instruction-card { background: linear-gradient(160deg, #fff4e1 0%, #ffd9c9 100%); color: #2c1226; border-radius: 22px; padding: 34px 26px; margin: 8px 0 18px; box-shadow: 0 24px 70px -20px rgba(0, 0, 0, .9); animation: slidein .6s ease-out; }
.instruction-card h1 { font-size: clamp(30px, 8vw, 42px); margin: 0; }
.instruction-card h1::before { content: "“"; color: var(--accent); }
.instruction-card h1::after { content: "”"; color: var(--accent); }

.photo-preview { margin: -6px 0 18px; }
.photo-preview img { display: block; width: 120px; height: 120px; object-fit: cover; border-radius: 12px; border: 1px solid var(--line); margin-bottom: 6px; }
input[type=file] { padding: 10px 14px; }
input[type=file]::file-selector-button { font: inherit; font-weight: 600; color: var(--text); background: var(--card-strong); border: 1px solid var(--line); border-radius: 10px; padding: 8px 12px; margin-right: 12px; }

.photo { margin: 26px auto 0; width: min(78%, 300px); background: #fff; padding: 10px 10px 28px; border-radius: 6px; box-shadow: 0 24px 60px -18px rgba(0, 0, 0, .9); opacity: 0; transform: rotate(-3deg) scale(.85) translateY(20px); transition: opacity 1.2s ease, transform 1.2s cubic-bezier(.2, .9, .3, 1.2); }
.photo.on { opacity: 1; transform: rotate(-2deg) scale(1) translateY(0); }
.photo img { display: block; width: 100%; border-radius: 3px; }
.photo.small { width: min(64%, 220px); padding: 7px 7px 18px; margin-top: 16px; }

.slow-msg { margin-bottom: 30px; }
.slow-title { margin-bottom: 0; }
.slow .slow-msg + .slow-title { margin-top: 6px; }

.story-slide.kind-news h1 { font-size: clamp(40px, 11vw, 64px); animation: bloom 1.4s ease-out; }
.story-caption { font-family: var(--font-display) !important; font-size: clamp(22px, 5.5vw, 30px) !important; margin-bottom: 4px !important; }
.story-slide.kind-photo .photo { margin-top: 10px; }

.vid .playwrap { opacity: 0; transition: opacity .8s; }
.vid .playwrap.on { opacity: 1; }
.vid .playwrap .eyebrow { margin-bottom: 12px; }
.vid .play { top: 34px; }
.vid-msg { text-align: center; }

.scratch-wrap.locked { opacity: .55; transition: opacity .8s; pointer-events: none; }
.scratch-wrap { transition: opacity .8s; }
.scratch-hint { opacity: 0; transition: opacity .5s; }
.scratch-hint.on { opacity: 1; }
.scratch-msg { text-align: center; margin-bottom: 22px; }

/* Spot it */
.spot { text-align: center; }
.spot-msg { margin-bottom: 18px; }
.spot-stage { opacity: 0; transform: translateY(16px); transition: opacity .9s, transform .9s; }
.spot-stage.on { opacity: 1; transform: none; }
.spot-frame { position: relative; overflow: hidden; border-radius: 18px; background: #000; touch-action: none; box-shadow: 0 24px 60px -18px rgba(0, 0, 0, .9); max-height: 62vh; transition: max-height .7s ease; }
.spot-frame img { display: block; width: 100%; max-height: 62vh; object-fit: contain; transform-origin: center; user-select: none; -webkit-user-select: none; cursor: grab; }
.spot-hint { margin: 10px 0 12px; }
.spot-found { opacity: 0; transform: translateY(10px); transition: opacity .8s, transform .8s; pointer-events: none; }
.spot-found.on { opacity: 1; transform: none; pointer-events: auto; }
.spot-stage.shrink .spot-frame { max-height: 34vh; }
.spot-stage.shrink .spot-hint, .spot-stage.shrink .spot-found { display: none; }
.spot-news { opacity: 0; transition: opacity 1s; }
.spot-news.on { opacity: 1; }
.spot-news h1 { font-size: clamp(34px, 9vw, 52px); margin: 22px 0 0; animation: bloom 1.4s ease-out; }

/* Category chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; margin: 0; cursor: pointer; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; margin: 0; }
.chip span { display: inline-block; padding: 8px 12px; border-radius: 999px; border: 1px solid var(--line); background: rgba(0, 0, 0, .2); font-size: 14px; font-weight: 500; transition: border-color .15s, background .15s; }
.chip input:checked + span { border-color: var(--accent-2); background: rgba(255, 209, 102, .14); }
.chip input:focus-visible + span { box-shadow: 0 0 0 3px rgba(255, 209, 102, .3); }
legend small { color: var(--muted); font-weight: 400; margin-left: 6px; }

/* Gift card */
.gift { margin-top: 30px; padding: 22px 18px 16px; border-radius: var(--radius); background: linear-gradient(160deg, rgba(255, 209, 102, .12), rgba(255, 107, 107, .08)); border: 1px solid rgba(255, 209, 102, .28); text-align: left; opacity: 0; transform: translateY(14px); transition: opacity .7s, transform .7s; }
.gift.on { opacity: 1; transform: none; }
.gift .eyebrow, .gift h2 { text-align: center; }
.gift h2 { font-size: 24px; margin-bottom: 14px; }
.gift-offers { display: grid; gap: 8px; }
.gift-offer { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 14px; background: rgba(0, 0, 0, .28); border: 1px solid var(--line); color: var(--text); text-decoration: none; transition: transform .12s, border-color .15s; }
.gift-offer:hover { border-color: var(--accent-2); }
.gift-offer:active { transform: scale(.98); }
.gift-emoji { font-size: 26px; width: 34px; text-align: center; }
.gift-text { flex: 1; display: flex; flex-direction: column; line-height: 1.3; }
.gift-text b { font-weight: 600; }
.gift-text small { color: var(--muted); font-size: 13px; }
.gift-go { color: var(--muted); font-size: 22px; }
.gift .hint { text-align: center; margin: 12px 0 0; font-size: 12px; }
.chip i { font-style: normal; }

.tiny-note { display: inline-block; margin-top: 6px; opacity: .7; font-size: 12px; }

/* ---------- Landing page ---------- */
.landing-wrap { padding-top: 34px; max-width: 640px; }
.center-brand { justify-content: center; margin-bottom: 34px; }
.hero-block { text-align: center; }
.landing .hero { font-size: clamp(42px, 10vw, 64px); margin: 0 0 14px; }
.landing .lede { max-width: 480px; margin: 0 auto 8px; }
.fan { position: relative; height: 330px; margin: 22px auto 10px; max-width: 520px; }
.pola { position: absolute; left: 50%; top: 10px; width: 190px; margin: 0; background: #fff; padding: 10px 10px 34px; border-radius: 6px; box-shadow: 0 30px 60px -22px rgba(0, 0, 0, .95); transform-origin: 50% 110%; transition: transform .35s cubic-bezier(.2, .9, .3, 1.2); }
.pola.p1 { transform: translateX(-50%) translateX(-120px) rotate(-11deg); z-index: 1; }
.pola.p2 { transform: translateX(-50%) translateY(-14px) rotate(1deg); z-index: 3; }
.pola.p3 { transform: translateX(-50%) translateX(120px) rotate(10deg); z-index: 2; }
.fan:hover .pola.p1 { transform: translateX(-50%) translateX(-150px) rotate(-14deg); }
.fan:hover .pola.p3 { transform: translateX(-50%) translateX(150px) rotate(13deg); }
.fan:hover .pola.p2 { transform: translateX(-50%) translateY(-24px) rotate(0); }
.shot { position: relative; aspect-ratio: 3 / 4; border-radius: 3px; display: grid; place-items: center; overflow: hidden; background: #17101f; }
.shot video { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (prefers-reduced-motion: reduce) { .shot video { display: none; } .shot { background-size: cover; background-position: center; } }
.shot .face { font-size: 78px; line-height: 1; filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .35)); }
.shot .rec { position: absolute; top: 8px; left: 8px; display: flex; align-items: center; gap: 5px; font: 600 11px/1 var(--font-body); color: #fff; background: rgba(0, 0, 0, .45); padding: 4px 7px; border-radius: 999px; }
.shot .rec i { width: 7px; height: 7px; border-radius: 50%; background: #ff3b3b; animation: blink 1.2s infinite; }
.shot.s1 { background: radial-gradient(120% 90% at 30% 20%, #ffd9c9, #b56576 70%, #6d2e46); }
.shot.s2 { background: radial-gradient(120% 90% at 70% 20%, #d9f2ff, #5b8fc9 70%, #2b3d6b); }
.shot.s3 { background: radial-gradient(120% 90% at 40% 30%, #fff1b8, #f0a35e 70%, #9a4a2a); }
.pola figcaption { position: absolute; left: 10px; right: 10px; bottom: 9px; text-align: center; font: italic 500 15px var(--font-display); color: #3a2440; white-space: nowrap; }
.pola.p1 figcaption { text-align: left; }
.pola.p3 figcaption { text-align: right; }
.cta { text-align: center; margin: 10px auto 40px; max-width: 360px; }
.cta .hint { margin-top: 12px; }
.steps { display: grid; gap: 12px; margin-bottom: 30px; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px 16px 58px; position: relative; }
.step .num { position: absolute; left: 16px; top: 16px; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 14px; color: #2a0a0a; background: linear-gradient(135deg, var(--accent), #ff8e53); }
.step b { display: block; font-size: 16px; margin-bottom: 3px; }
.step p { margin: 0; color: var(--muted); font-size: 14px; }
@media (max-width: 460px) {
  .fan { height: 300px; }
  .pola { width: 140px; padding: 8px 8px 30px; }
  .pola.p1 { transform: translateX(-50%) translateX(-72px) rotate(-9deg); }
  .pola.p3 { transform: translateX(-50%) translateX(72px) rotate(8deg); }
  .pola figcaption { font-size: 13px; bottom: 8px; }
}
@media (min-width: 640px) { .steps { grid-template-columns: 1fr 1fr 1fr; } .step { padding: 52px 18px 18px; } .step .num { top: 16px; left: 18px; } }

/* Stats page */
.statrow { margin-bottom: 12px; }
.statlabel { display: flex; justify-content: space-between; align-items: baseline; font-size: 14px; margin-bottom: 5px; }
.statlabel b { font-variant-numeric: tabular-nums; }
.statlabel i { font-style: normal; color: var(--muted); font-weight: 400; font-size: 12.5px; margin-left: 4px; }
.statbar { height: 8px; border-radius: 999px; background: rgba(255, 255, 255, .08); overflow: hidden; }
.statbar span { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
