/* ============================================================
   Scam Fight Club — "The Dossier"
   An operations / case-file visual system.
   Committed dark world (intentional single theme).
   ============================================================ */

/* ---------- Self-hosted faces (same-origin; CSP-safe) ---------- */
@font-face {
    font-family: "Archivo"; font-style: normal; font-weight: 800;
    font-display: swap; src: url("/assets/fonts/archivo-800.woff2") format("woff2");
}
@font-face {
    font-family: "Archivo"; font-style: normal; font-weight: 600;
    font-display: swap; src: url("/assets/fonts/archivo-600.woff2") format("woff2");
}
@font-face {
    font-family: "Plex Sans"; font-style: normal; font-weight: 400;
    font-display: swap; src: url("/assets/fonts/plexsans-400.woff2") format("woff2");
}
@font-face {
    font-family: "Plex Sans"; font-style: normal; font-weight: 600;
    font-display: swap; src: url("/assets/fonts/plexsans-600.woff2") format("woff2");
}
@font-face {
    font-family: "Plex Mono"; font-style: normal; font-weight: 400;
    font-display: swap; src: url("/assets/fonts/plexmono-400.woff2") format("woff2");
}
@font-face {
    font-family: "Plex Mono"; font-style: normal; font-weight: 600;
    font-display: swap; src: url("/assets/fonts/plexmono-600.woff2") format("woff2");
}

/* ---------- Tokens ---------- */
:root {
    color-scheme: dark;

    --ink:      #0e0d0c;
    --ink-2:    #171512;
    --ink-3:    #201d19;
    --hairline: #34302a;
    --hairline-2: #48423a;
    --bone:     #e8e2d6;
    --bone-dim: #c9c2b4;
    --ash:      #9a9186;
    --ash-dim:  #6f685e;

    --signal:      #d3242b;
    --signal-hot:  #f0474d;
    --signal-deep: #7c1519;

    --gold:      #f0b429;
    --gold-hot:  #ffca4d;
    --gold-ink:  #1a1206;

    --display: "Archivo", "Arial Narrow", system-ui, sans-serif;
    --body:    "Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
    --mono:    "Plex Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;

    --wrap: 1160px;
    --edge: 24px;
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    background: var(--ink);
    color: var(--bone);
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.72;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--bone); text-decoration: none; }
a:hover { color: var(--signal-hot); }

h1, h2, h3, h4 {
    font-family: var(--display);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-wrap: balance;
    margin: 0;
}

strong { font-weight: 600; color: #fff; }

::selection { background: var(--signal); color: #fff; }

:focus-visible {
    outline: 2px solid var(--signal-hot);
    outline-offset: 3px;
}

/* ---------- Atmosphere: film grain + scanlines ---------- */
.grain {
    position: fixed; inset: 0; z-index: 1; pointer-events: none;
    opacity: 0.05; mix-blend-mode: screen;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.scan {
    position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.35;
    background-image: repeating-linear-gradient(
        to bottom, rgba(0,0,0,0) 0, rgba(0,0,0,0) 2px, rgba(0,0,0,0.16) 3px);
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--edge); }
.wrap.narrow { max-width: 760px; }
main { position: relative; z-index: 2; }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 200;
    background: var(--signal); color: #fff; padding: 10px 16px;
    font-family: var(--mono); font-size: 13px;
}
.skip-link:focus { left: 8px; top: 8px; }

/* mono utility label, e.g. §01 / MISSION */
.label {
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ash);
}
.label .mark { color: var(--signal); }

/* ---------- Ops HUD bar ---------- */
.ops-bar {
    position: relative; z-index: 60;
    background: #0a0908;
    border-bottom: 1px solid var(--hairline);
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ash);
}
.ops-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; min-height: 34px; flex-wrap: wrap;
}
.ops-status { display: inline-flex; align-items: center; gap: 9px; }
.op-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--signal); box-shadow: 0 0 0 0 rgba(211,36,43,0.7);
    animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(211,36,43,0.65); }
    70%  { box-shadow: 0 0 0 7px rgba(211,36,43,0); }
    100% { box-shadow: 0 0 0 0 rgba(211,36,43,0); }
}
.ops-links { display: inline-flex; gap: 18px; }
.ops-links a { color: var(--ash); }
.ops-links a:hover { color: var(--bone); }

/* ---------- Header / nav ---------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(14,13,12,0.86);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--hairline);
}
.header-inner {
    display: flex; align-items: center; justify-content: flex-start;
    min-height: 78px; gap: 18px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-logo { height: 50px; width: auto; }
.brand:hover { color: inherit; }

.primary-nav ul { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; }
.primary-nav a {
    display: block; padding: 9px 15px;
    font-family: var(--mono); font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--bone-dim);
    border: 1px solid transparent;
}
.primary-nav a:hover { color: var(--bone); border-color: var(--hairline); }
.primary-nav a.active { color: var(--signal-hot); }
.primary-nav a.active::before { content: "▸ "; color: var(--signal); }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: 1px solid var(--hairline); cursor: pointer; padding: 9px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--bone); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 26px; border: 1px solid var(--signal);
    font-family: var(--mono); font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
    transition: background .16s, color .16s, transform .08s, border-color .16s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--signal); color: #fff; }
.btn-primary:hover { background: var(--signal-hot); border-color: var(--signal-hot); color: #fff; }
.btn-ghost { background: transparent; color: var(--bone); border-color: var(--hairline-2); }
.btn-ghost:hover { border-color: var(--bone); color: #fff; }

/* ---------- Donate (gold "support" accent, distinct from signal red) ---------- */
.btn-donate {
    display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
    padding: 9px 15px; border: 1px solid var(--gold); background: var(--gold); color: var(--gold-ink);
    font-family: var(--mono); font-size: 0.76rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    transition: transform .08s, background .15s, box-shadow .15s;
}
.btn-donate:hover {
    background: var(--gold-hot); color: var(--gold-ink); text-decoration: none;
    transform: translateY(-1px); box-shadow: 0 4px 18px rgba(240,180,41,0.28);
}
.btn-donate .heart { color: var(--signal); font-size: 1.05em; line-height: 1; }
/* larger variant for CTA rows alongside .btn */
.btn-donate-lg { padding: 14px 24px; font-size: 0.82rem; letter-spacing: 0.08em; border-width: 2px; }

/* ---------- Hero (thesis) ---------- */
.hero { position: relative; border-bottom: 1px solid var(--hairline); overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
    width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
    filter: grayscale(1) contrast(1.15) brightness(0.55);
}
/* duotone signal wash + legibility gradient */
.hero-media::after {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(120% 90% at 78% 20%, rgba(211,36,43,0.34), transparent 55%),
        linear-gradient(90deg, rgba(14,13,12,0.94) 0%, rgba(14,13,12,0.72) 42%, rgba(14,13,12,0.30) 100%),
        linear-gradient(0deg, var(--ink) 2%, transparent 40%);
    mix-blend-mode: normal;
}
.hero-inner {
    position: relative; z-index: 2;
    padding: clamp(76px, 12vw, 150px) 0 clamp(60px, 9vw, 110px);
    max-width: 940px;
}
.hero-eyebrow {
    font-family: var(--mono); font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--signal-hot);
    margin: 0 0 22px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.hero-eyebrow::before {
    content: ""; width: 34px; height: 1px; background: var(--signal);
}
.hero-title {
    font-size: clamp(2.6rem, 6.4vw, 5.1rem);
    color: #fff; margin: 0 0 22px;
    text-shadow: 0 6px 40px rgba(0,0,0,0.6);
}
.hero-lead {
    font-size: clamp(1.05rem, 1.8vw, 1.28rem);
    color: var(--bone-dim); max-width: 62ch; margin: 0 0 34px; line-height: 1.6;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.reveal { animation: reveal .7s cubic-bezier(.2,.7,.2,1) both; }
.reveal-2 { animation-delay: .09s; }
.reveal-3 { animation-delay: .18s; }
@keyframes reveal {
    from { opacity: 0; transform: translateY(16px); clip-path: inset(0 0 8% 0); }
    to   { opacity: 1; transform: none; clip-path: inset(0 0 0 0); }
}

/* ---------- Sections ---------- */
.band { padding: clamp(56px, 8vw, 96px) 0; }
.band + .band { border-top: 1px solid var(--hairline); }

.section-head { margin-bottom: 44px; max-width: 760px; }
.section-head .label { display: block; margin-bottom: 16px; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }

/* ---------- Case-file panel ---------- */
.panel {
    position: relative;
    background: var(--ink-2);
    border: 1px solid var(--hairline);
    padding: 30px 28px 30px;
}
.panel::before { /* corner registration tick */
    content: ""; position: absolute; top: -1px; left: -1px;
    width: 16px; height: 16px;
    border-top: 2px solid var(--signal); border-left: 2px solid var(--signal);
}
.panel .panel-label {
    font-family: var(--mono); font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--ash);
    display: block; margin-bottom: 14px;
}
.panel h3 { font-size: 1.35rem; margin-bottom: 12px; color: #fff; }
.panel p { margin: 0; color: var(--bone-dim); }

.briefs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ---------- Page head ---------- */
.page-head { padding: clamp(64px, 9vw, 104px) 0 clamp(30px, 4vw, 46px); border-bottom: 1px solid var(--hairline); }
.page-head .label { display: block; margin-bottom: 18px; }
.page-head h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); color: #fff; }
.page-head .lead {
    color: var(--ash); font-size: 1.14rem; max-width: 68ch; margin: 20px 0 0;
    font-family: var(--body); text-transform: none; line-height: 1.6;
}
.page-actions { margin-top: 26px; }
.count-pill {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
    font-family: var(--mono); font-size: 0.76rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--signal-hot);
    border: 1px solid var(--signal-deep); padding: 7px 14px;
}
.count-pill::before { content: ""; width: 7px; height: 7px; background: var(--signal); }

/* ---------- Wall of Shame — case ledger ---------- */
.ledger { border-top: 1px solid var(--hairline); }
.ledger-row {
    display: grid;
    grid-template-columns: 78px 1fr auto;
    align-items: center; gap: 22px;
    padding: 20px 8px; border-bottom: 1px solid var(--hairline);
    transition: background .16s;
}
.ledger-row:hover { background: var(--ink-2); }
.case-no {
    font-family: var(--mono); font-weight: 600; font-size: 0.85rem;
    color: var(--signal-hot); font-variant-numeric: tabular-nums; letter-spacing: 0.04em;
}
.case-no small { display: block; color: var(--ash-dim); font-size: 0.64rem; letter-spacing: 0.14em; }
.case-body { min-width: 0; }
.case-name {
    font-family: var(--display); font-weight: 600; font-size: 1.12rem;
    text-transform: uppercase; letter-spacing: -0.01em; color: #fff; line-height: 1.15;
}
.case-loc {
    font-family: var(--mono); font-size: 0.8rem; color: var(--ash);
    margin-top: 5px; line-height: 1.45;
}
.stamp {
    justify-self: end;
    font-family: var(--mono); font-weight: 600; font-size: 0.72rem;
    letter-spacing: 0.16em; text-transform: uppercase; color: var(--signal-hot);
    border: 2px solid var(--signal); padding: 5px 10px;
    transform: rotate(-6deg); opacity: 0.82;
    box-shadow: inset 0 0 0 1px rgba(211,36,43,0.25);
    transition: transform .16s, opacity .16s;
    white-space: nowrap;
}
.ledger-row:hover .stamp { transform: rotate(-3deg) scale(1.04); opacity: 1; }

/* ---------- Tools — protocol steps (a real sequence) ---------- */
.protocol { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { position: relative; background: var(--ink-2); border: 1px solid var(--hairline); padding: 30px 26px 28px; }
.step::before {
    content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--signal), transparent);
}
.step-no {
    font-family: var(--mono); font-size: 0.74rem; font-weight: 600;
    letter-spacing: 0.18em; color: var(--signal-hot); text-transform: uppercase;
}
.step h3 { font-size: 1.3rem; margin: 14px 0 12px; color: #fff; }
.step-desc { color: var(--bone-dim); margin: 0 0 18px; }
.step ul { list-style: none; margin: 0; padding: 0; }
.step li {
    position: relative; padding: 9px 0 9px 20px; color: var(--ash);
    font-size: 0.92rem; border-top: 1px solid var(--hairline); line-height: 1.5;
}
.step li::before { content: "//"; position: absolute; left: 0; color: var(--signal); font-family: var(--mono); font-size: 0.8rem; }

/* ---------- Notice / callout ---------- */
.notice {
    margin-top: 40px; border: 1px dashed var(--hairline-2);
    padding: 22px 24px; color: var(--ash);
    font-family: var(--mono); font-size: 0.9rem; line-height: 1.6;
}
.notice a { color: var(--signal-hot); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Allied operations ---------- */
.ally { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; align-items: start; }
.ally-copy p { color: var(--bone-dim); margin: 0 0 18px; max-width: 64ch; }
.ally-copy .btn { margin-top: 8px; }
.ally-stat { display: flex; flex-direction: column; justify-content: center; }
.stat-figure {
    font-family: var(--display); font-weight: 800;
    font-size: clamp(2.6rem, 5.2vw, 3.9rem); line-height: 1;
    letter-spacing: -0.03em; color: #fff; margin: 8px 0 16px;
    font-variant-numeric: tabular-nums;
}
.stat-caption { color: var(--ash); font-size: 0.94rem; margin: 0; line-height: 1.55; }

/* ---------- CTA band ---------- */
.enlist {
    text-align: center; border: 1px solid var(--hairline);
    background:
        radial-gradient(90% 140% at 50% -20%, rgba(211,36,43,0.16), transparent 60%),
        var(--ink-2);
    padding: clamp(44px, 7vw, 76px) 24px;
}
.enlist-label { display: block; margin-bottom: 16px; }
.enlist h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: #fff; margin-bottom: 14px; }
.enlist p { color: var(--ash); max-width: 52ch; margin: 0 auto 30px; }
.enlist .hero-cta { justify-content: center; }

/* ---------- Urgent notice (report page) ---------- */
.urgent-notice {
    background: radial-gradient(120% 140% at 0% 0%, rgba(211,36,43,0.14), transparent 60%), var(--ink-2);
    border: 1px solid var(--signal-deep); border-left: 3px solid var(--signal);
    padding: 24px 26px; margin-bottom: 30px;
}
.urgent-notice .label { display: block; margin-bottom: 12px; color: var(--signal-hot); }
.urgent-notice p { margin: 0 0 14px; color: var(--bone-dim); }
.urgent-actions { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.urgent-actions li { position: relative; padding-left: 22px; color: var(--bone-dim); }
.urgent-actions li::before { content: "→"; position: absolute; left: 0; color: var(--signal); font-family: var(--mono); }
.urgent-actions a { color: var(--signal-hot); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Fieldset subgroup ---------- */
.subgroup { border: 1px solid var(--hairline); padding: 20px 22px 6px; margin: 0 0 22px; }
.subgroup legend {
    font-family: var(--mono); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--ash); padding: 0 8px;
}
.subgroup .opt { color: var(--ash-dim); letter-spacing: 0.04em; }

/* ---------- Captcha status ---------- */
.captcha {
    display: inline-flex; align-items: center; gap: 10px; margin-top: 4px;
    font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--ash);
    border: 1px solid var(--hairline); padding: 9px 14px;
}
.captcha-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ash-dim); }
.captcha[data-state="working"] { color: var(--bone-dim); }
.captcha[data-state="working"] .captcha-dot { background: var(--gold); animation: pulse 1.1s ease-out infinite; }
.captcha[data-state="ok"] { color: #bfe9cc; border-color: #3c6b45; }
.captcha[data-state="ok"] .captcha-dot { background: #46b366; animation: none; }

/* ---------- Report form — incident intake ---------- */
.intake {
    background: var(--ink-2); border: 1px solid var(--hairline);
    padding: clamp(24px, 4vw, 40px);
}
.intake-head { border-bottom: 1px solid var(--hairline); padding-bottom: 18px; margin-bottom: 28px; }
.intake-head .label { display: block; }
.field { margin-bottom: 22px; }
.field > label {
    display: block; font-family: var(--mono); font-size: 0.76rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--bone-dim); margin-bottom: 9px;
}
.req { color: var(--signal-hot); }
.field input, .field select, .field textarea {
    width: 100%; background: var(--ink); color: var(--bone);
    border: 1px solid var(--hairline-2); padding: 13px 15px;
    font-family: var(--body); font-size: 1rem; border-radius: 0;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ash-dim); }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--signal); box-shadow: 0 0 0 3px rgba(211,36,43,0.18);
}
.field textarea { resize: vertical; min-height: 150px; }
.hint { display: block; margin-top: 7px; font-family: var(--mono); font-size: 0.74rem; color: var(--ash-dim); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hp-field { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }
.form-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 8px; }
.form-note { font-family: var(--mono); font-size: 0.74rem; color: var(--ash-dim); }

/* ---------- Alerts ---------- */
.alert { padding: 16px 20px; margin-bottom: 26px; border: 1px solid; font-size: 0.98rem; }
.alert strong { color: inherit; }
.alert ul { margin: 8px 0 0; padding-left: 20px; }
.alert a { color: inherit; text-decoration: underline; }
.alert-success { border-color: #3c6b45; background: rgba(46,110,64,0.16); color: #bfe9cc; }
.alert-error   { border-color: var(--signal-deep); background: rgba(211,36,43,0.12); color: #f3c3c6; }

/* ---------- Footer ---------- */
.site-footer { position: relative; z-index: 2; border-top: 1px solid var(--hairline); background: #0a0908; margin-top: 10px; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 34px; padding: 54px 0 40px; }
.footer-logo { height: 56px; margin-bottom: 16px; }
.footer-brand p { color: var(--ash); max-width: 320px; margin: 0; font-size: 0.95rem; }
.footer-col .label { display: block; margin-bottom: 14px; }
.social-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.social-list a { font-family: var(--mono); font-size: 0.85rem; color: var(--bone-dim); letter-spacing: 0.04em; }
.social-list a::before { content: "→ "; color: var(--signal); }
.social-list a:hover { color: var(--bone); }
.footer-support p { color: var(--ash); font-size: 0.9rem; margin: 0 0 15px; max-width: 240px; line-height: 1.55; }
.footer-legal {
    border-top: 1px solid var(--hairline);
    font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--ash-dim);
    display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
    padding: 16px 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
    .briefs, .protocol, .ally { grid-template-columns: 1fr; }
    .nav-toggle { display: flex; }
    .primary-nav {
        position: absolute; top: 100%; left: 0; right: 0;
        background: #0c0b0a; border-bottom: 1px solid var(--hairline);
        max-height: 0; overflow: hidden; transition: max-height .28s ease;
    }
    .primary-nav.open { max-height: 320px; }
    .primary-nav ul { flex-direction: column; padding: 10px 16px; gap: 2px; }
    .primary-nav a { padding: 13px 8px; border-color: transparent; border-bottom: 1px solid var(--hairline); }
    .grid-2 { grid-template-columns: 1fr; }
    .ledger-row { grid-template-columns: 54px 1fr; gap: 16px; }
    .stamp { grid-column: 2; justify-self: start; margin-top: 4px; }
}

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