:root {
  --crimson: #990000; --crimson-deep: #7a0000; --crimson-bright: #c81212;
  --ink: #1c1917; --ink2: #57534e; --ink3: #8b8580;
  --bg: #f7f5f2; --surface: #ffffff; --surface2: #f1eeea; --line: #e7e3dd;
  --good: #15803d; --warn-bg: #fef3c7; --warn: #92400e; --gold: #d4a017;
  --shadow: 0 1px 3px rgba(60,40,30,0.06), 0 8px 24px rgba(60,40,30,0.05);
  --shadow-lift: 0 6px 16px rgba(120,0,0,0.10), 0 18px 44px rgba(60,20,20,0.12);
}
@media (prefers-color-scheme: dark) {
  :root {
    --crimson: #ef5f64; --crimson-deep: #b3181d; --crimson-bright: #ff6b70;
    --ink: #f5f4f2; --ink2: #b3ada6; --ink3: #837c74;
    --bg: #100e0d; --surface: #1c1917; --surface2: #262220; --line: #34302c;
    --good: #4ade80; --warn-bg: #3a2f10; --warn: #fcd34d; --gold: #e8b53a;
    --shadow: 0 1px 3px rgba(0,0,0,0.4), 0 8px 28px rgba(0,0,0,0.35);
    --shadow-lift: 0 8px 20px rgba(0,0,0,0.5), 0 20px 50px rgba(0,0,0,0.45);
  }
}
* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background: var(--bg); color: var(--ink); line-height: 1.55; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

/* ---------- reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- top nav ---------- */
.topnav { display: flex; align-items: center; justify-content: space-between; padding: 11px 18px; background: color-mix(in srgb, var(--surface) 82%, transparent); backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 40; }
.topnav.ontop { background: rgba(70,0,0,0.28); backdrop-filter: saturate(1.4) blur(8px); border-bottom: 1px solid rgba(255,255,255,0.12); position: absolute; left: 0; right: 0; }
.tn-brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 16.5px; color: var(--ink); text-decoration: none; letter-spacing: -0.3px; }
.topnav.ontop .tn-brand { color: #fff; }
.tn-brand img { width: 30px; height: 30px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.25); }
.tn-links { display: flex; gap: 3px; }
.tn-links a { color: var(--ink2); text-decoration: none; font-size: 14px; font-weight: 650; padding: 7px 12px; border-radius: 9px; transition: background 0.15s, color 0.15s; }
.tn-links a.on, .tn-links a:hover { color: var(--crimson); background: color-mix(in srgb, var(--crimson) 10%, transparent); }
.topnav.ontop .tn-links a { color: rgba(255,255,255,0.88); }
.topnav.ontop .tn-links a.on, .topnav.ontop .tn-links a:hover { color: #fff; background: rgba(255,255,255,0.16); }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; text-align: center; color: #fff; padding: 96px 20px 54px; background: linear-gradient(135deg, #b3121a 0%, #7a0000 45%, #4a0000 100%); background-size: 200% 200%; animation: heroShift 18s ease-in-out infinite; }
@keyframes heroShift { 0%,100% { background-position: 0% 40%; } 50% { background-position: 100% 60%; } }
.hero::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(circle at 18% 12%, rgba(255,255,255,0.14), transparent 38%),
  radial-gradient(circle at 85% 88%, rgba(0,0,0,0.28), transparent 45%);
  pointer-events: none; }
/* faint field yard-lines */
.hero::after { content: ""; position: absolute; inset: 0; opacity: 0.06; pointer-events: none;
  background-image: repeating-linear-gradient(90deg, #fff 0 2px, transparent 2px 62px); }
.hero > * { position: relative; z-index: 1; }
.hero .brand { width: 82px; height: 82px; border-radius: 21px; box-shadow: 0 8px 30px rgba(0,0,0,0.4); animation: floaty 5s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.hero h1 { font-size: clamp(29px, 6vw, 50px); margin: 18px auto 10px; max-width: 720px; letter-spacing: -1px; line-height: 1.05; font-weight: 850; text-shadow: 0 2px 20px rgba(0,0,0,0.2); }
.hero .sub { font-size: clamp(15px, 3.2vw, 19px); opacity: 0.94; max-width: 580px; margin: 0 auto; }
.hero.small { padding: 92px 20px 40px; }
.hero.small h1 { font-size: clamp(23px, 4.6vw, 34px); max-width: 660px; margin: 0 auto 8px; }

.trust { display: flex; flex-wrap: wrap; gap: 8px 10px; justify-content: center; margin-top: 22px; }
.trust span { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 650; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.18); padding: 7px 13px; border-radius: 999px; backdrop-filter: blur(4px); }

.hero-cta { display: inline-flex; gap: 10px; margin-top: 26px; flex-wrap: wrap; justify-content: center; }
.hero-cta a { text-decoration: none; font-weight: 750; font-size: 15.5px; padding: 13px 24px; border-radius: 12px; transition: transform 0.15s, box-shadow 0.15s; }
.hero-cta .primary { background: #fff; color: var(--crimson-deep); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.hero-cta .primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.35); }
.hero-cta .secondary { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.hero-cta .secondary:hover { background: rgba(255,255,255,0.22); }

/* countdown */
.countdown { display: inline-flex; gap: 8px; margin-top: 26px; }
.cd-unit { min-width: 62px; background: rgba(0,0,0,0.22); border: 1px solid rgba(255,255,255,0.16); border-radius: 12px; padding: 8px 6px; }
.cd-unit b { display: block; font-size: 26px; font-weight: 850; line-height: 1; font-variant-numeric: tabular-nums; }
.cd-unit span { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.8; }
.cd-label { display: block; font-size: 12.5px; opacity: 0.85; margin-top: 12px; font-weight: 600; }

/* ---------- stat strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { background: var(--surface); text-align: center; padding: 20px 8px; }
.stat b { display: block; font-size: clamp(22px, 5vw, 30px); font-weight: 850; color: var(--crimson); letter-spacing: -0.5px; line-height: 1; }
.stat span { font-size: 12px; color: var(--ink2); font-weight: 600; }
@media (max-width: 560px) { .stats { grid-template-columns: repeat(2, 1fr); } }

main { max-width: 760px; margin: 0 auto; padding: 8px 16px 40px; }
section { margin-top: 42px; }
.sec-head { text-align: center; margin-bottom: 20px; }
.sec-head h2 { font-size: clamp(22px, 4.5vw, 30px); letter-spacing: -0.5px; }
.sec-head p { color: var(--ink2); font-size: 15px; margin-top: 6px; }
h2 { font-size: 22px; margin-bottom: 12px; letter-spacing: -0.3px; }
.eyebrow { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--crimson); background: color-mix(in srgb, var(--crimson) 11%, transparent); padding: 5px 12px; border-radius: 999px; margin-bottom: 10px; }
.note { background: var(--warn-bg); color: var(--warn); border-radius: 12px; padding: 11px 15px; font-size: 14px; margin-bottom: 14px; font-weight: 600; text-align: center; }
.loading { color: var(--ink2); padding: 34px 0; text-align: center; }

/* ---------- game cards ---------- */
.games { display: grid; gap: 12px; }
.game { position: relative; display: flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 15px 17px; box-shadow: var(--shadow); transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s; overflow: hidden; }
.game:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: color-mix(in srgb, var(--crimson) 30%, var(--line)); }
.game.premium { border-color: color-mix(in srgb, var(--crimson) 35%, var(--line)); background: linear-gradient(120deg, color-mix(in srgb, var(--crimson) 7%, var(--surface)), var(--surface) 60%); }
.game.premium::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(var(--crimson-bright), var(--crimson-deep)); }
.game .when { min-width: 56px; text-align: center; background: var(--surface2); border-radius: 12px; padding: 7px 4px; }
.game.premium .when { background: color-mix(in srgb, var(--crimson) 14%, var(--surface2)); }
.game .when .mo { display: block; font-size: 11px; font-weight: 800; text-transform: uppercase; color: var(--crimson); letter-spacing: 0.04em; }
.game .when .day { display: block; font-size: 22px; font-weight: 850; line-height: 1.05; }
.game .info { flex: 1; min-width: 0; }
.game .opp { font-weight: 800; font-size: 16.5px; letter-spacing: -0.2px; display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.game .meta { font-size: 12.5px; color: var(--ink2); margin-top: 2px; }
.game .left { display: inline-block; font-size: 11.5px; font-weight: 750; color: var(--crimson); background: color-mix(in srgb, var(--crimson) 12%, transparent); padding: 2px 8px; border-radius: 999px; margin-top: 5px; }
.tag { font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: 0.05em; padding: 3px 8px; border-radius: 999px; }
.tag.star { background: linear-gradient(var(--crimson-bright), var(--crimson-deep)); color: #fff; }
.tag.hot { background: var(--gold); color: #3a2600; }
.game .buy { text-align: right; flex-shrink: 0; }
.game .price { font-size: 21px; font-weight: 850; letter-spacing: -0.5px; }
.game .price small { display: block; font-size: 10.5px; font-weight: 600; color: var(--ink3); letter-spacing: 0; margin-top: -1px; }
.game button { margin-top: 6px; background: var(--crimson-deep); color: #fff; border: 0; border-radius: 11px; font-size: 14px; font-weight: 750; padding: 9px 18px; cursor: pointer; font-family: inherit; transition: transform 0.15s, background 0.15s; }
.game button:hover { background: var(--crimson); transform: scale(1.04); }
.game button:disabled { background: var(--line); color: var(--ink3); cursor: default; transform: none; }
.game.out { opacity: 0.62; }
.soldout { font-size: 13px; font-weight: 800; color: var(--ink3); margin-top: 8px; }

/* ---------- season pass promo ---------- */
.season { position: relative; border-radius: 18px; background: linear-gradient(120deg, #300b0b, #5c0000 55%, #7a0000); color: #fff; box-shadow: var(--shadow-lift); overflow: hidden; border: 1px solid rgba(255,255,255,0.14); }
.season::after { content: ""; position: absolute; inset: 0; opacity: 0.07; background-image: repeating-linear-gradient(90deg, #fff 0 2px, transparent 2px 46px); pointer-events: none; }
.sn-ribbon { position: absolute; top: 16px; left: -36px; transform: rotate(-45deg); background: linear-gradient(#f5c14b, #d4a017); color: #3a2600; font-size: 11px; font-weight: 900; letter-spacing: 0.08em; padding: 5px 42px; box-shadow: 0 2px 8px rgba(0,0,0,0.3); z-index: 2; }
.sn-body { position: relative; display: flex; gap: 16px; align-items: center; padding: 24px 20px 20px 30px; flex-wrap: wrap; z-index: 1; }
.sn-info { flex: 1; min-width: 220px; }
.sn-title { font-size: 20px; font-weight: 850; letter-spacing: -0.4px; }
.sn-sub { font-size: 13.5px; opacity: 0.92; margin-top: 4px; }
.sn-scarce { display: inline-block; margin-top: 10px; font-size: 12.5px; font-weight: 750; background: rgba(0,0,0,0.3); border: 1px solid rgba(245,193,75,0.5); color: #f5c14b; padding: 5px 11px; border-radius: 999px; animation: snpulse 2s infinite; }
@keyframes snpulse { 0%,100% { box-shadow: 0 0 0 0 rgba(245,193,75,0.35); } 50% { box-shadow: 0 0 0 8px rgba(245,193,75,0); } }
.sn-buy { text-align: right; min-width: 170px; }
.sn-was { font-size: 12.5px; opacity: 0.75; text-decoration: line-through; }
.sn-price { font-size: 36px; font-weight: 900; letter-spacing: -1px; line-height: 1.05; }
.sn-save { font-size: 12px; font-weight: 750; color: #f5c14b; margin-bottom: 9px; }
.sn-buy button { background: #fff; color: var(--crimson-deep); border: 0; border-radius: 11px; font-size: 15px; font-weight: 800; padding: 11px 24px; cursor: pointer; font-family: inherit; transition: transform 0.15s; }
.sn-buy button:hover { transform: scale(1.05); }
.season.out { opacity: 0.75; }
@media (max-width: 560px) { .sn-buy { text-align: left; } .sn-body { padding-top: 58px; } }

/* ---------- value grid ---------- */
.valgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 12px; }
.val { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 20px 18px; box-shadow: var(--shadow); transition: transform 0.18s, box-shadow 0.18s; }
.val:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.val .vic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: color-mix(in srgb, var(--crimson) 12%, transparent); color: var(--crimson); margin-bottom: 12px; }
.val h3 { font-size: 16px; margin-bottom: 5px; letter-spacing: -0.2px; }
.val p { font-size: 13.5px; color: var(--ink2); line-height: 1.55; }

/* ---------- map card ---------- */
.mapcard { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 18px; box-shadow: var(--shadow); }
.mapcard svg { width: 100%; height: auto; border-radius: 12px; display: block; }
.m-street { stroke: var(--ink3); stroke-width: 3; opacity: 0.38; stroke-linecap: round; }
.m-zone { fill: none; stroke: var(--crimson); stroke-width: 2.5; stroke-dasharray: 9 7; opacity: 0.6; }
.m-stadium { fill: var(--crimson-deep); }
.m-stadium-t { fill: #fff; font: 800 12px -apple-system, BlinkMacSystemFont, sans-serif; letter-spacing: 0.02em; }
.m-pin { fill: var(--crimson-bright); }
.m-pin-dot { fill: #fff; }
.m-label { fill: var(--ink2); stroke: var(--surface); stroke-width: 4px; paint-order: stroke; stroke-linejoin: round; font: 650 12.5px -apple-system, BlinkMacSystemFont, sans-serif; }
.m-pill { fill: color-mix(in srgb, var(--crimson) 12%, var(--surface)); stroke: color-mix(in srgb, var(--crimson) 26%, transparent); stroke-width: 1; }
.m-pill-ring { fill: none; stroke: var(--crimson); stroke-width: 2; stroke-dasharray: 3 2.5; }
.m-pill-t { fill: var(--crimson); font: 800 11px -apple-system, BlinkMacSystemFont, sans-serif; letter-spacing: 0.05em; }
.mapcap { text-align: center; font-size: 13px; color: var(--ink2); margin-top: 13px; }

/* ---------- how it works ---------- */
.steps { display: grid; gap: 12px; }
.step { display: flex; gap: 15px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; box-shadow: var(--shadow); }
.step .n { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(var(--crimson-bright), var(--crimson-deep)); color: #fff; font-weight: 850; display: grid; place-items: center; font-size: 15px; }
.step b { font-size: 15.5px; }
.step p { font-size: 13.5px; color: var(--ink2); margin-top: 2px; }

/* ---------- founder teaser ---------- */
.teaser { display: flex; gap: 18px; align-items: center; background: linear-gradient(120deg, color-mix(in srgb, var(--crimson) 8%, var(--surface)), var(--surface)); border: 1px solid var(--line); border-radius: 18px; padding: 20px; box-shadow: var(--shadow); }
.teaser img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; border: 3px solid var(--crimson-deep); flex-shrink: 0; }
.teaser .tx { flex: 1; }
.teaser h3 { font-size: 17px; letter-spacing: -0.2px; }
.teaser p { font-size: 13.5px; color: var(--ink2); margin: 5px 0 9px; }
.teaser a { color: var(--crimson); font-weight: 700; font-size: 14px; text-decoration: none; }
.teaser a:hover { text-decoration: underline; }
@media (max-width: 480px) { .teaser { flex-direction: column; text-align: center; } }

/* ---------- content pages ---------- */
.body-p { font-size: 15.5px; line-height: 1.65; color: var(--ink); margin-bottom: 14px; max-width: 660px; }
.body-p a { color: var(--crimson); font-weight: 650; }
.stdgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.std { background: var(--surface); border: 1px solid var(--line); border-radius: 15px; padding: 16px 18px; box-shadow: var(--shadow); }
.std b { font-size: 15px; }
.std p { font-size: 13.5px; color: var(--ink2); margin-top: 5px; line-height: 1.55; }
.std a { color: var(--crimson); }
.founder { text-align: center; max-width: 660px; margin: 0 auto; }
.founder .headshot { width: 172px; height: 172px; border-radius: 50%; object-fit: cover; margin-top: 30px; border: 4px solid var(--crimson-deep); box-shadow: var(--shadow-lift); }
.founder h1 { font-size: 31px; margin: 15px 0 2px; letter-spacing: -0.6px; }
.founder .ftag { color: var(--crimson); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 24px; }
.founder .body-p { text-align: left; margin-left: auto; margin-right: auto; }

/* ---------- faq ---------- */
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 13px; padding: 3px 17px; margin-bottom: 9px; box-shadow: var(--shadow); transition: border-color 0.15s; }
.faq details[open] { border-color: color-mix(in srgb, var(--crimson) 28%, var(--line)); }
.faq summary { font-weight: 700; cursor: pointer; font-size: 15px; padding: 13px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; font-weight: 400; color: var(--crimson); transition: transform 0.2s; line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 0 0 14px; font-size: 14.5px; color: var(--ink2); line-height: 1.6; }
.faq a { color: var(--crimson); font-weight: 600; }

/* ---------- final CTA band ---------- */
.ctaband { margin-top: 46px; background: linear-gradient(135deg, #b3121a, #5c0000); color: #fff; border-radius: 20px; padding: 34px 24px; text-align: center; box-shadow: var(--shadow-lift); position: relative; overflow: hidden; }
.ctaband::after { content: ""; position: absolute; inset: 0; opacity: 0.07; background-image: repeating-linear-gradient(90deg, #fff 0 2px, transparent 2px 54px); }
.ctaband > * { position: relative; }
.ctaband h2 { font-size: clamp(21px, 4.5vw, 28px); }
.ctaband p { opacity: 0.92; margin: 8px auto 18px; max-width: 440px; font-size: 15px; }
.ctaband a { display: inline-block; background: #fff; color: var(--crimson-deep); font-weight: 800; font-size: 16px; padding: 13px 30px; border-radius: 12px; text-decoration: none; transition: transform 0.15s; }
.ctaband a:hover { transform: translateY(-2px); }

/* ---------- reserve sheet ---------- */
.sheetwrap { position: fixed; inset: 0; background: rgba(20,10,10,0.6); backdrop-filter: blur(3px); display: flex; align-items: flex-end; justify-content: center; z-index: 50; animation: fadeIn 0.2s; }
.sheetwrap[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.sheet { background: var(--surface); border-radius: 20px 20px 0 0; width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto; padding: 24px 20px 32px; animation: slideUp 0.28s cubic-bezier(.2,.8,.2,1); }
@keyframes slideUp { from { transform: translateY(40px); } to { transform: none; } }
@media (min-width: 600px) { .sheetwrap { align-items: center; } .sheet { border-radius: 20px; } @keyframes slideUp { from { transform: translateY(20px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } } }
.sheet h3 { font-size: 19px; margin-bottom: 4px; letter-spacing: -0.3px; }
.sheet .gsub { color: var(--ink2); font-size: 14px; margin-bottom: 16px; }
.field { margin-bottom: 12px; }
.field label { display: block; font-size: 12px; font-weight: 750; margin-bottom: 5px; color: var(--ink2); text-transform: uppercase; letter-spacing: 0.04em; }
.field input, .field select { width: 100%; font-family: inherit; font-size: 16px; padding: 12px 13px; border-radius: 11px; border: 1px solid var(--line); background: var(--bg); color: var(--ink); transition: border-color 0.15s, box-shadow 0.15s; }
.field input:focus, .field select:focus { outline: none; border-color: var(--crimson); box-shadow: 0 0 0 3px color-mix(in srgb, var(--crimson) 18%, transparent); }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 850; padding: 13px 2px; border-top: 1px solid var(--line); margin-top: 8px; }
.btn { display: block; width: 100%; background: linear-gradient(var(--crimson-bright), var(--crimson-deep)); color: #fff; border: 0; border-radius: 13px; font-size: 16px; font-weight: 750; padding: 14px; cursor: pointer; font-family: inherit; text-align: center; text-decoration: none; transition: transform 0.15s, box-shadow 0.15s; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px color-mix(in srgb, var(--crimson) 35%, transparent); }
.btn.ghost { background: none; color: var(--ink2); font-weight: 650; padding: 11px; box-shadow: none; }
.btn.ghost:hover { transform: none; }
.err { color: #dc2626; font-size: 13.5px; margin-top: 8px; font-weight: 600; }
.payblock { background: var(--bg); border: 1px solid var(--line); border-radius: 13px; padding: 15px 17px; margin: 10px 0; }
.payblock .k { font-size: 12px; font-weight: 750; text-transform: uppercase; color: var(--ink2); letter-spacing: 0.04em; }
.payblock .v { font-size: 18px; font-weight: 800; margin-top: 2px; }
.payblock p { font-size: 13.5px; color: var(--ink2); margin-top: 6px; }
.okmark { text-align: center; font-size: 48px; animation: pop 0.4s cubic-bezier(.2,1.4,.4,1); }
@keyframes pop { from { transform: scale(0); } to { transform: scale(1); } }

/* ---------- footer ---------- */
footer { text-align: center; color: var(--ink2); font-size: 13.5px; padding: 30px 16px 46px; border-top: 1px solid var(--line); margin-top: 40px; }
footer p { margin: 4px 0; }
footer a { color: var(--crimson); text-decoration: none; font-weight: 600; }
footer a:hover { text-decoration: underline; }
