/* ═══════════════════════════════════════════════════════════
   AURA MIXER PORTAL — global styles
   Design tokens mirror the app (src/Ngs.AuraMixer.App/wwwroot/app.css):
   flat surfaces, hairline borders, 2px radius, accent #3b82f6.
   ═══════════════════════════════════════════════════════════ */

:root {
    --bg-outer:   #171717;   /* neutral ramp lifted ~6 across the board so near-blacks don't collapse into
                                one flat slab on high-contrast (VA) panels — hierarchy + WCAG AA preserved */
    --bg:         #1c1c1c;
    --surface:    #212121;
    --raised:     #2a2a2a;
    --line:       #2e2e2e;   /* hairline */
    --line-2:     #3a3a3a;   /* interactive border */
    --depth:      #121212;
    --input-bg:   #191919;

    --accent:     #3b82f6;
    --accent-2:   #60a5fa;

    --text:       #e5e5e5;
    --muted:      #a1a1aa;
    --faint:      #8a8a93;   /* holds ~4.7:1 on the (lifted) surfaces — WCAG AA */

    --green:      #1db954;
    --amber:      #f59e0b;
    --red:        #ef4444;
}

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

/* ════ COOKIE CONSENT (RODO) — revealed by js/analytics.js on first visit; hidden until a choice is made ════ */
.cookie-consent {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000;
    background: var(--surface);
    border-top: 1px solid var(--line-2);
    box-shadow: 0 -10px 34px rgba(0, 0, 0, .4);
}
.cookie-consent[hidden] { display: none; }
.cookie-consent-inner {
    display: flex; align-items: center; gap: 24px;
    padding: 14px 0;
}
.cookie-consent-text {
    margin: 0; font-size: 13px; line-height: 1.65; color: var(--muted);
}
.cookie-consent-text a { color: var(--accent-2); }
.cookie-consent-actions {
    display: flex; gap: 10px; flex-shrink: 0; margin-left: auto;
}
@media (max-width: 640px) {
    .cookie-consent-inner { flex-direction: column; align-items: stretch; gap: 12px; }
    .cookie-consent-actions { margin-left: 0; justify-content: flex-end; }
}

/* ════ DOWNLOAD CONSENT DIALOG (beta / unsigned-installer heads-up) — opened by js/site.js auraDownload ════ */
.dl-modal {
    width: min(540px, calc(100vw - 32px));
    /* The global `* { margin: 0 }` reset overrides the UA `margin: auto` that centers a modal <dialog>,
       pinning it to the inset:0 top-left corner. Restore it so showModal() centers on both axes. */
    margin: auto;
    padding: 0;
    border: 1px solid var(--line-2);
    border-radius: 6px;
    background: var(--surface);
    color: var(--text);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .6);
}
.dl-modal::backdrop { background: rgba(0, 0, 0, .62); }
.dl-modal-body { position: relative; padding: 30px 30px 24px; }
.dl-modal-x {
    position: absolute; top: 12px; right: 12px;
    width: 30px; height: 30px; padding: 0;
    display: flex; align-items: center; justify-content: center;
    background: transparent; border: 1px solid var(--line); border-radius: 4px;
    color: var(--faint); font-size: 13px; cursor: pointer;
}
.dl-modal-x:hover { color: var(--text); border-color: var(--line-2); }
.dl-modal-icon { font-size: 30px; line-height: 1; margin-bottom: 12px; }
.dl-modal-title { font-size: 20px; font-weight: 800; letter-spacing: -.01em; margin-bottom: 12px; }
.dl-modal-lead { font-size: 14px; line-height: 1.7; color: var(--muted); }
.dl-modal-lead strong { color: var(--text); font-weight: 600; }
.dl-modal-box {
    margin-top: 18px; padding: 16px 18px;
    background: var(--depth); border: 1px solid var(--line); border-radius: 4px;
}
.dl-modal-box-title {
    font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
    color: var(--faint); margin-bottom: 10px;
}
.dl-modal-steps { margin: 0 0 0 18px; font-size: 14px; line-height: 1.9; }
.dl-modal-steps strong { color: var(--text); }
.dl-modal-av { margin-top: 12px; font-size: 12.5px; line-height: 1.65; color: var(--muted); }
.dl-modal-av strong { color: var(--text); }
.dl-modal-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 24px; }
@media (max-width: 520px) {
    .dl-modal-actions { flex-direction: column-reverse; }
    .dl-modal-actions .btn { width: 100%; }
}

/* Inline heads-up under the download button (also the no-JS fallback path). */
.dl-unsigned {
    margin-top: 10px; font-size: 11px; line-height: 1.65;
    color: var(--faint);
}

/* ════ LANGUAGE SWITCHER (EN / PL) — bordered segmented toggle in the top nav ════ */
.nav-lang {
    display: inline-flex; align-items: stretch;
    border: 1px solid var(--line-2); border-radius: 5px; overflow: hidden;
    font-size: 11px; font-weight: 600; letter-spacing: .05em;
}
.nav-lang a {
    display: inline-flex; align-items: center;
    color: var(--muted); text-decoration: none;
    padding: 4px 9px; transition: color .12s, background .12s;
}
.nav-lang a + a { border-left: 1px solid var(--line-2); }
.nav-lang a:hover { color: var(--text); background: var(--surface); }
.nav-lang a.nav-lang-on { color: #fff; background: var(--accent); }

html { scroll-behavior: smooth; }

body {
    background: var(--bg-outer);
    color: var(--text);
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    font-size: 14px;
}

::selection { background: rgba(59, 130, 246, .25); }

/* faint film grain — barely there. Images are lifted above it (see `img` rule
   below) so PNG screenshots don't pick up noise on their flat areas. */
body::before {
    content: '';
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: .015;
}

/* Keep the film grain off bitmap content — the opaque pixels cover the noise. */
img { position: relative; z-index: 1; }

h1, h2, h3 { letter-spacing: -.02em; }

a { color: var(--accent-2); }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-outer); }
::-webkit-scrollbar-thumb { background: var(--raised); }

/* ════ ACCESSIBILITY ════ */

/* Visible focus ring for keyboard users; suppressed for pointer interactions. */
:focus-visible {
    outline: 2px solid var(--accent-2);
    outline-offset: 2px;
}
:focus:not(:focus-visible) { outline: none; }
/* Programmatic focus targets (skip-link target, FocusOnNavigate <h1>) shouldn't show a ring. */
[tabindex="-1"]:focus { outline: none; }

/* Skip to main content — first tab stop, slides in only when focused. */
.skip-link {
    position: fixed;
    top: 8px; left: 8px;
    z-index: 200;
    transform: translateY(-150%);
    background: var(--accent);
    color: #fff;
    padding: 10px 18px;
    border-radius: 2px;
    font-size: 13px; font-weight: 600;
    text-decoration: none;
    transition: transform .15s ease;
}
.skip-link:focus { transform: translateY(0); }

/* Screen-reader-only text (visually hidden, still announced). */
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Honour users who ask the OS to reduce motion. */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
    .fi { opacity: 1 !important; transform: none !important; }
}

/* ════ TYPE UTILITIES ════ */

.mono { font-family: 'JetBrains Mono', monospace; }

.label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; font-weight: 500;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--faint);
}

/* ════ LAYOUT UTILITIES ════ */

.container {
    max-width: 1152px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.container-sm  { max-width: 672px; }
.container-md  { max-width: 896px; }

/* ════ SECTION HEADER — index + rule + name ════ */

.sec-head { margin-bottom: 56px; }

.sec-rule {
    display: flex; align-items: baseline; gap: 14px;
    border-top: 1px solid var(--line);
    padding-top: 14px; margin-bottom: 28px;
}

.sec-idx {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; color: var(--accent); font-weight: 600;
}

.sec-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
    color: var(--faint);
}

.sec-title {
    font-size: clamp(26px, 3.6vw, 42px);
    font-weight: 800; line-height: 1.1; color: var(--text);
}

.sec-split {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 40px; align-items: end;
}

.sec-desc { color: var(--muted); font-size: 14px; line-height: 1.75; }

@media (max-width: 768px) {
    .sec-split { grid-template-columns: 1fr; gap: 16px; }
}

/* ════ PANELS — flat, hairline, 2px radius ════ */

.panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 2px;
}

.panel-hover { transition: border-color .15s; }
.panel-hover:hover { border-color: var(--line-2); }

/* hairline grid — cells separated by 1px lines */
.hairline-grid {
    display: grid;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.hairline-grid > * { background: var(--surface); }

.cols-2 { grid-template-columns: 1fr 1fr; }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
    .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
    .cols-4 { grid-template-columns: 1fr 1fr; }
}

/* accent top edge — replaces glow for highlighted cells */
.cell-accent {
    border-top: 2px solid var(--accent);
    margin-top: -1px;
}

/* ════ BUTTONS — flat, square, no glow ════ */

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 10px 22px; border-radius: 2px;
    font-size: 13px; font-weight: 600; letter-spacing: .01em;
    cursor: pointer; text-decoration: none; border: 1px solid transparent;
    transition: background .12s, border-color .12s, color .12s;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.btn:disabled {
    opacity: .4;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: #2563eb; border-color: #2563eb; }

.btn-outline { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn-outline:hover { border-color: #555; background: rgba(255, 255, 255, .03); }

.btn-sm {
    padding: 6px 14px; font-size: 11px;
    font-family: 'JetBrains Mono', monospace; font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase;
}

.btn-lg { padding: 13px 30px; font-size: 14px; }

.btn-block { width: 100%; }

/* ════ SPINNER — busy state for buttons/links waiting on the server ════ */

@keyframes aura-spin { to { transform: rotate(360deg); } }

.spinner {
    display: inline-block;
    width: 14px; height: 14px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: aura-spin .6s linear infinite;
    flex-shrink: 0;
}

.spinner-sm { width: 12px; height: 12px; }

/* a link/button mid-action, set by js/site.js (auraBusy) */
.is-busy { opacity: .75; pointer-events: none; cursor: progress; }

/* ════ TAGS — square mono chips ════ */

.tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 3px 8px; border-radius: 2px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
    border: 1px solid var(--line-2); color: var(--muted); background: transparent;
}

.tag-blue  { color: var(--accent-2); border-color: rgba(59, 130, 246, .35); }
.tag-green { color: #34d058; border-color: rgba(29, 185, 84, .35); }

/* ════ MEDIA PLACEHOLDER ════ */

.ph {
    background: var(--depth); border: 1px dashed #2e2e2e; border-radius: 2px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 8px; color: #3a3a3a; font-size: 11px;
    font-family: 'JetBrains Mono', monospace; text-align: center; padding: 20px;
    line-height: 1.7;
}

.ph-label { color: #4a4a4a; font-weight: 600; }

/* ════ FADE-IN ON SCROLL (js/site.js attaches .in) ════ */

.fi { opacity: 0; transform: translateY(10px); transition: opacity .5s ease, transform .5s ease; }
.fi.in { opacity: 1; transform: translateY(0); }

/* ════ MISC ════ */

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: .3; }
}

.live-dot {
    width: 6px; height: 6px; background: var(--green); border-radius: 50%;
    display: inline-block; animation: pulse 2s ease-in-out infinite;
}

.hide-mobile { display: block; }
.hide-desktop { display: none; }

@media (max-width: 768px) {
    .hide-mobile { display: none; }
    .hide-desktop { display: block; }
}

/* ════ ADMIN — shared page header (used across /admin pages) ════ */

.adm-page-head {
    display: flex; align-items: flex-start;
    justify-content: space-between; gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.adm-h1 { font-size: 24px; font-weight: 800; letter-spacing: -.02em; color: var(--text); }
.adm-sub { margin-top: 6px; font-size: 13px; color: var(--faint); }

/* stat tiles (inside a .hairline-grid) */
.adm-stat { padding: 18px 20px; }
.adm-stat-lbl {
    font-family: 'JetBrains Mono', monospace;
    font-size: 8.5px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
    color: var(--faint); margin-bottom: 9px;
}
.adm-stat-val { font-size: 22px; font-weight: 700; color: var(--text); display: flex; align-items: baseline; gap: 8px; }
.adm-stat-delta { font-size: 11px; font-weight: 600; color: #34d058; }
.adm-stat-accent { border-top: 2px solid var(--accent); margin-top: -1px; }
.adm-stat-accent .adm-stat-val { color: var(--accent-2); }

/* tab strip */
.adm-tabs { display: flex; gap: 2px; border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.adm-tab {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 16px; margin-bottom: -1px;
    background: none; border: none; border-bottom: 2px solid transparent;
    color: var(--faint); font-size: 13px; font-weight: 600;
    cursor: pointer; transition: color .12s;
}
.adm-tab:hover { color: var(--muted); }
.adm-tab-on { color: var(--text); border-bottom-color: var(--accent); }
.adm-tab-n { font-size: 9.5px; color: var(--faint); }
.adm-tab-on .adm-tab-n { color: var(--accent-2); }

/* data table */
.adm-table-wrap { border: 1px solid var(--line); border-radius: 2px; overflow-x: auto; background: var(--surface); }
.adm-table { width: 100%; border-collapse: collapse; font-size: 12.5px; }
.adm-table th, .adm-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); white-space: nowrap; }
.adm-table thead th {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px; letter-spacing: .12em; text-transform: uppercase;
    color: var(--faint); background: var(--depth);
    border-bottom: 1px solid var(--line-2);
}
.adm-table tbody tr:last-child td { border-bottom: none; }
.adm-table td { color: var(--text); }
.adm-table .adm-num { text-align: right; }

/* ════ ADMIN — icon action buttons (shared across all /admin tables) ════
   Uniform 28px squares so action columns stay tidy. Global (not scoped) on purpose: the icon SVG is
   injected via AdminIcons.Render (MarkupString) and carries no component scope, so a scoped
   `.adm-iconbtn svg` rule would never match it. */
.adm-actions { display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }

.adm-iconbtn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; flex: 0 0 28px; padding: 0;
    border: 1px solid var(--line-2); border-radius: 4px;
    background: var(--input-bg); color: var(--faint);
    cursor: pointer; text-decoration: none;
    transition: color .12s ease, border-color .12s ease, background .12s ease;
}
.adm-iconbtn:hover { color: var(--text); border-color: var(--line); }
.adm-iconbtn:disabled { opacity: .35; cursor: default; }
.adm-iconbtn svg { width: 14px; height: 14px; display: block; }
.adm-iconbtn-go:hover { color: #34d058; border-color: rgba(52, 208, 88, .45); }
.adm-iconbtn-danger:hover { color: #f87171; border-color: rgba(248, 113, 113, .45); }

/* ════ DOCS — rendered page content (shared across all /docs pages) ════ */

.docs-body {
    font-size: 14px; line-height: 1.75; color: var(--muted);
    margin-top: 20px; padding-top: 26px;
    border-top: 1px solid var(--line);
}
.docs-body > *:first-child { margin-top: 0; }
.docs-body p { margin: 0 0 16px; }
.docs-body strong { color: var(--text); font-weight: 600; }
.docs-body em { font-style: italic; }
.docs-body a { color: var(--accent-2); text-decoration: none; }
.docs-body a:hover { text-decoration: underline; }

.docs-body h2 {
    font-size: 19px; font-weight: 700; letter-spacing: -.01em;
    color: var(--text); margin: 34px 0 14px;
}
.docs-body h3 { font-size: 15px; font-weight: 700; color: var(--text); margin: 26px 0 10px; }

.docs-body ul, .docs-body ol { margin: 0 0 16px; padding-left: 22px; }
.docs-body li > ul, .docs-body li > ol { margin: 9px 0 0; }
.docs-body li { margin-bottom: 9px; }
.docs-body li::marker { color: var(--faint); }

.docs-body code {
    font-family: 'JetBrains Mono', monospace; font-size: 12.5px;
    background: var(--surface); border: 1px solid var(--line); border-radius: 2px;
    padding: 1px 5px; color: var(--accent-2);
}
.docs-body hr { border: none; border-top: 1px solid var(--line); margin: 28px 0; }
.docs-body pre {
    background: var(--depth); border: 1px solid var(--line); border-radius: 2px;
    padding: 14px 16px; margin: 0 0 16px; overflow-x: auto;
}
.docs-body pre code { background: none; border: none; padding: 0; color: var(--muted); }

/* tables */
.docs-table { width: 100%; border-collapse: collapse; font-size: 13px; margin: 4px 0 20px; }
.docs-table th, .docs-table td { text-align: left; padding: 10px 14px; border: 1px solid var(--line); vertical-align: top; }
.docs-table thead th {
    font-family: 'JetBrains Mono', monospace; font-size: 9.5px; letter-spacing: .08em; text-transform: uppercase;
    color: var(--faint); background: var(--depth);
}
.docs-table td { color: var(--muted); }
.docs-table strong { color: var(--text); }

/* callouts (from blockquotes) */
.docs-callout {
    background: var(--surface); border: 1px solid var(--line);
    border-left: 2px solid var(--line-2); border-radius: 2px;
    padding: 16px 18px; margin: 0 0 18px;
}
.docs-callout p { margin: 0; font-size: 13px; color: var(--muted); }
.docs-callout-title { font-size: 10px; letter-spacing: .1em; color: var(--muted); margin-bottom: 7px; }
.docs-callout-star { border-left-color: var(--accent); }
.docs-callout-star .docs-callout-title { color: var(--accent-2); }
.docs-callout-tip { border-left-color: var(--amber); }
.docs-callout-tip .docs-callout-title { color: var(--amber); }
.docs-callout-warn { border-left-color: var(--red); }
.docs-callout-warn .docs-callout-title { color: #f87171; }
.docs-callout-new { border-left-color: var(--green); }
.docs-callout-new .docs-callout-title { color: var(--green); }

/* image placeholder (fill in later) */
.docs-fig {
    margin: 0 0 20px;
    background: var(--depth); border: 1px dashed #2e2e2e; border-radius: 2px;
    padding: 24px; text-align: center;
}
.docs-fig-tag { font-size: 9px; letter-spacing: .14em; color: var(--accent-2); margin-bottom: 9px; }
.docs-fig-desc { font-size: 12px; color: var(--muted); line-height: 1.6; max-width: 460px; margin: 0 auto 9px; }
.docs-fig-path { font-size: 10px; color: #4a4a4a; }

/* inline SVG diagram (signal flow, channel chain, bus chain…) */
.docs-svg {
    margin: 0 0 22px;
    padding: 22px 20px;
    background: var(--depth);
    border: 1px solid var(--line);
    border-radius: 2px;
    overflow-x: auto;
}
.docs-svg svg { display: block; width: 100%; height: auto; min-width: 640px; }
.docs-svg figcaption {
    margin-top: 12px; font-size: 11px; color: var(--faint);
    text-align: center; line-height: 1.55;
}

/* real image figure */
.docs-figure { margin: 0 0 22px; }
.docs-figure img {
    display: block; width: 100%; height: auto;
    border: 1px solid var(--line); border-radius: 2px;
    background: var(--depth);
}
.docs-figure figcaption {
    margin-top: 9px; font-size: 11px; color: var(--faint);
    text-align: center; line-height: 1.55;
}

/* ════ ERROR PAGES (404 / 500) — shared chrome ════ */

.errp {
    min-height: calc(100vh - 56px);
    display: flex; align-items: center;
    padding: 120px 0 96px;
    background: var(--bg-outer);
}

.errp-box { width: 100%; text-align: center; }

.errp-eyebrow {
    font-size: 10px; font-weight: 600;
    letter-spacing: .18em;
    color: var(--accent-2);
    margin-bottom: 14px;
}
.errp-eyebrow-warn { color: var(--amber); }

.errp-code {
    font-size: clamp(86px, 17vw, 168px);
    font-weight: 800; line-height: .9;
    letter-spacing: -.04em;
    color: #2f2f2f;            /* faded watermark — the eyebrow carries the real label */
    user-select: none;
    margin-bottom: 6px;
}

.errp-title {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800; color: var(--text);
    margin-bottom: 14px;
}

.errp-desc {
    max-width: 480px; margin: 0 auto;
    font-size: 14px; line-height: 1.7;
    color: var(--muted);
}

.errp-wave {
    width: 100%; max-width: 440px; height: 40px;
    display: block; margin: 32px auto;
    opacity: .7;
}

.errp-ctas {
    display: flex; gap: 10px;
    justify-content: center; flex-wrap: wrap;
}

.errp-rid {
    margin-top: 24px;
    font-size: 10px; color: var(--faint);
}
.errp-rid code { color: var(--muted); }

.errp-links { margin-top: 52px; }

.errp-links-label {
    font-size: 9px; letter-spacing: .16em;
    color: var(--faint); margin-bottom: 16px;
}

.errp-link {
    display: flex; flex-direction: column; gap: 4px;
    padding: 18px; text-align: left;
    text-decoration: none;
    transition: background .12s;
}
.errp-link:hover { background: var(--raised); }
.errp-link-name { font-size: 13px; font-weight: 600; color: var(--text); }
.errp-link-sub  { font-size: 10px; color: var(--faint); }

@media (max-width: 600px) {
    .errp { padding: 96px 0 64px; }
}
