:root {
    color-scheme: light;
    --canvas: #fdfcfc;
    --panel: #f6f5f2;
    --panel-soft: #f1f0ec;
    --ink: #050505;
    --muted: #6f6c66;
    --line: #e4e2de;
    --line-strong: #cfccc6;
    --white: #ffffff;
    --black: #050505;
    --green: #28c96f;
    --green-soft: #e6f8ec;
    --amber: #e0a01b;
    --amber-soft: #fff4dc;
    --red: #e14b42;
    --red-soft: #ffe8e5;
    --blue: #1f7bff;
    --blue-soft: #e7f0ff;
    --shadow-soft: 0 20px 50px rgba(20, 18, 15, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 82px;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--canvas);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

::selection {
    background: #d9ecff;
    color: var(--black);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

a,
button {
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

code {
    display: inline-flex;
    max-width: 100%;
    overflow-wrap: anywhere;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.28rem 0.58rem;
    background: rgba(255, 255, 255, 0.72);
    color: #25231f;
    font-size: 0.8rem;
}

.app-shell {
    min-height: 100vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2.5rem;
    min-height: 66px;
    padding: 0 3.75rem;
    border-bottom: 1px solid var(--line);
    background: rgba(253, 252, 252, 0.9);
    backdrop-filter: blur(18px);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.app-wordmark {
    display: block;
    width: auto;
    height: 30px;
}

.header-nav {
    display: inline-flex;
    justify-content: center;
    gap: clamp(1rem, 2.5vw, 2rem);
    font-size: 0.875rem;
    line-height: 1.35;
}

.header-nav a {
    color: #171615;
    transition: color 150ms ease;
}

.header-nav a:hover {
    color: var(--muted);
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.header-pill,
.pill-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    padding: 0 1rem;
    border: 1px solid var(--line-strong);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0;
    white-space: nowrap;
    transition:
        background-color 160ms ease,
        border-color 160ms ease,
        color 160ms ease,
        box-shadow 160ms ease,
        transform 160ms ease;
}

.header-pill {
    min-height: 44px;
    padding-inline: 0.875rem;
}

.hero-actions .pill-button {
    min-height: 44px;
    padding-inline: 1.15rem;
}

.header-pill.solid,
.pill-button.solid {
    border-color: var(--black);
    background: var(--black);
    color: var(--white);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.header-pill.ghost,
.pill-button.ghost {
    background: var(--white);
    color: var(--black);
    box-shadow: none;
}

.header-pill:hover,
.pill-button:hover {
    transform: translateY(-1px);
}

.header-pill:active,
.pill-button:active {
    transform: translateY(0);
}

.header-pill.solid:hover,
.pill-button.solid:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
}

.header-pill.ghost:hover,
.pill-button.ghost:hover {
    border-color: #bcb8b0;
    background: #fbfbfa;
}

.header-pill:focus-visible,
.pill-button:focus-visible,
.header-nav a:focus-visible,
.tab-item:focus-visible,
.sample-row button:focus-visible,
.admin-actions button:focus-visible,
.entity-actions a:focus-visible,
.entity-actions button:focus-visible,
.official-suggestions a:focus-visible,
.directory-category-card:focus-visible,
.directory-group-filter button:focus-visible,
.show-more-row button:focus-visible,
select:focus-visible {
    outline: 0;
    box-shadow:
        0 0 0 2px var(--canvas),
        0 0 0 4px rgba(5, 5, 5, 0.18);
}

.header-session-form {
    display: inline-flex;
    margin: 0;
}

.header-session-form button {
    font: inherit;
}

.pill-button:disabled {
    cursor: wait;
    opacity: 0.58;
}

.main-surface {
    width: min(1440px, calc(100% - 120px));
    margin: 0 auto;
    padding: 0 0 4rem;
}

.hero-section {
    padding-top: clamp(4rem, 6.6vw, 6.2rem);
}

.hero-columns {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
    align-items: end;
    gap: clamp(3rem, 7vw, 7.5rem);
    margin-bottom: clamp(2.75rem, 4.5vw, 4rem);
}

.hero-copy {
    min-width: 0;
}

.eyebrow {
    margin: 0 0 1rem;
    color: #625f59;
    font-size: 0.72rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 15ch;
    margin-bottom: 1.75rem;
    font-size: clamp(3.15rem, 4vw, 4.5rem);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: 0;
}

h1:focus {
    outline: none;
}

h2 {
    margin-bottom: 0;
    font-size: clamp(2.35rem, 3.7vw, 3.65rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 0.65rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.hero-brief {
    max-width: 660px;
    padding-bottom: 1.2rem;
}

.hero-brief p {
    margin-bottom: 2rem;
    font-size: clamp(1.05rem, 1.4vw, 1.18rem);
    line-height: 1.45;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-metrics span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 34px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0 0.72rem;
    background: rgba(255, 255, 255, 0.62);
    color: var(--muted);
    font-size: 0.82rem;
}

.hero-metrics strong {
    color: var(--ink);
    font-weight: 500;
}

.product-console {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--panel);
    box-shadow: 0 1px 2px rgba(20, 18, 15, 0.04);
}

.console-tabs {
    display: flex;
    gap: 0.25rem;
    overflow-x: auto;
    padding: 0.35rem;
    border-bottom: 1px solid var(--line);
    scrollbar-width: none;
}

.console-tabs::-webkit-scrollbar {
    display: none;
}

.tab-item {
    display: flex;
    flex: 1 0 0;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 145px;
    min-height: 48px;
    border-radius: 14px;
    color: #514e48;
    font-size: 0.95rem;
    font-weight: 400;
    transition:
        background-color 150ms ease,
        border-color 150ms ease,
        color 150ms ease;
}

.tab-item:hover {
    background: rgba(255, 255, 255, 0.54);
    color: var(--black);
}

.tab-item.active {
    border: 1px solid var(--line-strong);
    background: var(--white);
    color: var(--black);
    box-shadow: 0 1px 3px rgba(20, 18, 15, 0.06);
}

.tab-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--green);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.tab-dot.blue {
    background: var(--blue);
}

.tab-dot.amber {
    background: var(--amber);
}

.tab-dot.red {
    background: var(--red);
}

.console-body {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    min-height: 440px;
}

.verify-workspace,
.verification-output {
    min-width: 0;
    padding: clamp(1.35rem, 3.2vw, 3rem);
}

.verify-workspace {
    border-right: 1px solid var(--line);
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.024) 1px, transparent 1px),
        linear-gradient(rgba(0, 0, 0, 0.024) 1px, transparent 1px),
        var(--panel);
    background-size: 32px 32px;
}

.workspace-heading {
    max-width: 760px;
    margin-bottom: clamp(1.4rem, 2.8vw, 2.35rem);
}

.workspace-heading h2 {
    max-width: 13ch;
    font-size: clamp(2.15rem, 3vw, 3.2rem);
}

.verify-form,
.report-form {
    display: grid;
    gap: 0.8rem;
}

label {
    color: #55514a;
    font-size: 0.85rem;
    font-weight: 500;
}

.input-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
}

input,
textarea,
select {
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    outline: none;
    background: var(--white);
    color: var(--ink);
    font-size: 0.95rem;
    transition:
        border-color 150ms ease,
        box-shadow 150ms ease,
        background-color 150ms ease;
}

input::placeholder,
textarea::placeholder {
    color: #9a9690;
    opacity: 1;
}

textarea {
    min-height: 142px;
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--black);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.055);
}

select {
    cursor: pointer;
}

.sample-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1rem;
}

.sample-row > span {
    display: inline-flex;
    align-items: center;
    color: var(--muted);
    font-size: 0.82rem;
}

.sample-row button {
    min-height: 44px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    padding: 0.35rem 0.72rem;
    background: var(--white);
    color: #26231f;
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    transition:
        background-color 160ms ease,
        border-color 160ms ease,
        transform 160ms ease;
}

.sample-row button:hover {
    border-color: #bcb8b0;
    background: #fbfbfa;
    transform: translateY(-1px);
}

.verification-output {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    background: var(--white);
}

.result-panel {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.35rem;
    background: var(--panel);
}

.result-panel.is-official {
    background: var(--green-soft);
}

.result-panel.is-reported,
.result-panel.is-invalid {
    background: var(--red-soft);
}

.result-panel.is-suspicious {
    background: var(--amber-soft);
}

.result-panel.is-unverified {
    background: var(--blue-soft);
}

.result-kicker {
    position: relative;
    z-index: 1;
    margin-bottom: 0.5rem;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
}

.result-panel h3 {
    font-size: 1.25rem;
}

.result-panel h3,
.result-panel p,
.result-panel code {
    position: relative;
    z-index: 1;
}

.result-panel p {
    color: #45413a;
    line-height: 1.42;
}

.result-panel .result-next-step {
    max-width: 520px;
    margin: 1rem 0 0;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(5, 5, 5, 0.14);
    font-size: 0.9rem;
}

.result-next-step strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--ink);
    font-weight: 600;
}

.verification-disclaimer {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem;
    background: #f8f7f4;
    color: #45413a;
}

.disclaimer-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    background: var(--white);
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 700;
    font-style: normal;
}

.verification-disclaimer strong {
    display: block;
    margin: 0.15rem 0 0.35rem;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 600;
}

.verification-disclaimer p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.5;
}

.verification-disclaimer .disclaimer-limit {
    margin-top: 0.5rem;
    color: #625d55;
    font-size: 0.8rem;
}

.credibility-meter {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.52rem;
    max-width: 320px;
    margin-top: 1rem;
}

.credibility-meter div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    color: #25231f;
}

.credibility-meter span {
    font-size: 0.82rem;
    font-weight: 500;
}

.credibility-meter strong {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
}

.meter-track {
    display: block;
    height: 6px;
    overflow: hidden;
    border: 1px solid rgba(5, 5, 5, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
}

.meter-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--black);
}

.ai-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.3rem 0.8rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    background: var(--panel);
}

.ai-summary p {
    grid-column: 1 / -1;
}

.ai-summary span,
.ai-summary p {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.ai-summary strong {
    color: var(--ink);
    font-size: 1rem;
}

.research-scores {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: 0.45rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--line);
}

.research-scores span {
    display: grid;
    gap: 0.18rem;
}

.research-scores small {
    color: var(--muted);
    font-size: 0.75rem;
}

.research-scores strong {
    font-size: 1.25rem;
}

.investigation-dossier {
    display: grid;
    border-top: 1px solid var(--line);
}

.dossier-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
    color: var(--muted);
    font-size: 0.82rem;
    text-transform: uppercase;
}

.dossier-heading strong {
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 500;
}

.redirect-chain {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    overflow-x: auto;
    padding: 0 0 0.8rem;
}

.redirect-chain span {
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 0.78rem;
}

.redirect-chain code {
    flex: 0 0 auto;
    font-size: 0.72rem;
}

.stage-detail {
    border-bottom: 1px solid var(--line);
}

.stage-detail:first-of-type {
    border-top: 1px solid var(--line);
}

.stage-detail summary {
    display: grid;
    grid-template-columns: 10px minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.7rem;
    min-height: 48px;
    cursor: pointer;
    list-style: none;
}

.stage-detail summary::-webkit-details-marker {
    display: none;
}

.stage-detail summary strong {
    font-size: 0.9rem;
    font-weight: 500;
}

.stage-detail summary small {
    color: var(--muted);
    font-size: 0.72rem;
}

.stage-detail > p {
    margin: 0 0 0.9rem 1.7rem;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.45;
}

.stage-state {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #a9a59d;
}

.stage-state.complete {
    background: #278456;
}

.stage-state.partial {
    background: #c88a19;
}

.stage-state.failed {
    background: #bd3c35;
}

.evidence-list {
    display: grid;
    gap: 0.5rem;
    margin: 0 0 1rem 1.7rem;
}

.evidence-list article {
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 0.72rem 0.8rem;
    background: var(--white);
}

.evidence-list article > div,
.evidence-list footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
}

.evidence-list article strong {
    font-size: 0.84rem;
    font-weight: 500;
    text-align: right;
}

.evidence-list article p {
    margin: 0.55rem 0;
    color: #4d4943;
    font-size: 0.82rem;
    line-height: 1.45;
}

.evidence-list footer {
    color: var(--muted);
    font-size: 0.72rem;
}

.evidence-list footer a {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.evidence-direction {
    flex: 0 0 auto;
    border-radius: 999px;
    padding: 0.18rem 0.42rem;
    font-size: 0.68rem;
}

.evidence-direction.official {
    background: #dff3e8;
    color: #17623d;
}

.evidence-direction.fraud {
    background: var(--red-soft);
    color: #8e201b;
}

.evidence-direction.neutral {
    background: #ecebe8;
    color: #57534d;
}

.result-art {
    position: absolute;
    inset: 0;
    opacity: 0.38;
    pointer-events: none;
}

.result-art span {
    position: absolute;
    display: block;
    border: 1px solid rgba(5, 5, 5, 0.34);
    border-radius: 50%;
}

.result-art span:nth-child(1) {
    width: 220px;
    height: 220px;
    right: -50px;
    top: 32px;
}

.result-art span:nth-child(2) {
    width: 170px;
    height: 170px;
    right: -18px;
    top: 57px;
}

.result-art span:nth-child(3) {
    width: 120px;
    height: 120px;
    right: 18px;
    top: 82px;
}

.signal-list {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.signal-list li {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 1rem;
    padding: 0.78rem 0;
    border-bottom: 1px solid var(--line);
}

.signal-list span {
    color: var(--muted);
    font-size: 0.82rem;
}

.signal-list p {
    margin-bottom: 0;
    color: #25231f;
    font-size: 0.95rem;
}

.official-suggestions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.official-suggestions span {
    color: var(--muted);
    font-size: 0.84rem;
}

.official-suggestions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    max-width: 100%;
    min-height: 44px;
    border-radius: 999px;
    padding: 0.48rem 0.86rem;
    background: var(--black);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    text-align: center;
    transition:
        background-color 160ms ease,
        transform 160ms ease;
}

.official-suggestions a:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
}

.section-band {
    margin-top: 5rem;
    padding: clamp(1.6rem, 3vw, 2.4rem) 0 0;
    border-top: 1px solid var(--line);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.25rem;
}

.section-heading.compact {
    align-items: start;
}

.search-control {
    width: min(100%, 390px);
}

.search-control label,
.category-control label {
    display: block;
    margin-bottom: 0.45rem;
}

.directory-toolbar {
    display: grid;
    grid-template-columns: minmax(280px, 1.4fr) minmax(210px, 0.8fr);
    gap: 0.75rem;
    width: min(100%, 650px);
}

.directory-toolbar .search-control {
    width: 100%;
}

.category-control {
    min-width: 0;
}

.section-description {
    max-width: 680px;
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.55;
}

.directory-categories {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.directory-categories::-webkit-scrollbar {
    display: none;
}

.directory-category-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 0.9rem;
    min-height: 112px;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem;
    background: var(--white);
    color: var(--ink);
    text-align: left;
    transition:
        border-color 160ms ease,
        background-color 160ms ease,
        transform 160ms ease;
}

.directory-category-card:hover {
    border-color: #aaa69e;
    transform: translateY(-1px);
}

.directory-category-card.active {
    border-color: var(--black);
    background: var(--black);
    color: var(--white);
}

.directory-category-card > span:last-child {
    display: grid;
    gap: 0.42rem;
}

.directory-category-card strong {
    font-size: 0.94rem;
    font-weight: 500;
    line-height: 1.25;
}

.directory-category-card small {
    color: var(--muted);
    font-size: 0.75rem;
}

.directory-category-card.active small {
    color: rgba(255, 255, 255, 0.66);
}

.category-index {
    color: var(--muted);
    font-size: 0.72rem;
    font-variant-numeric: tabular-nums;
}

.directory-category-card.active .category-index {
    color: rgba(255, 255, 255, 0.56);
}

.directory-results {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: clamp(1rem, 2.4vw, 2rem);
    background: var(--panel);
}

.directory-results-heading {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.25rem;
}

.directory-results-heading .eyebrow {
    margin-bottom: 0.7rem;
}

.directory-results-heading h3 {
    margin-bottom: 0.55rem;
    font-size: clamp(1.65rem, 2.5vw, 2.25rem);
    font-weight: 400;
}

.directory-results-heading p:last-child {
    max-width: 720px;
    margin-bottom: 0;
    color: var(--muted);
}

.result-count {
    flex: 0 0 auto;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    padding: 0.38rem 0.7rem;
    background: var(--white);
    color: #4f4c47;
    font-size: 0.78rem;
}

.directory-group-filter {
    display: flex;
    gap: 0.45rem;
    overflow-x: auto;
    margin-bottom: 1.2rem;
    padding: 0 0 0.25rem;
    scrollbar-width: thin;
}

.directory-group-filter button {
    flex: 0 0 auto;
    min-height: 44px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    padding: 0.38rem 0.72rem;
    background: var(--white);
    color: #38352f;
    font-size: 0.8rem;
}

.directory-group-filter button.active {
    border-color: var(--black);
    background: var(--black);
    color: var(--white);
}

.directory-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0.1rem 0 1rem;
}

.directory-tags span {
    border-radius: 999px;
    padding: 0.25rem 0.52rem;
    background: #e9e7e2;
    color: #514d46;
    font-size: 0.72rem;
}

.directory-empty {
    display: grid;
    place-items: center;
    min-height: 220px;
    border: 1px dashed var(--line-strong);
    border-radius: 14px;
    padding: 2rem;
    background: var(--white);
    text-align: center;
}

.directory-empty strong {
    font-size: 1.1rem;
    font-weight: 500;
}

.directory-empty p {
    margin: 0.35rem 0 0;
    color: var(--muted);
}

.entity-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.report-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(460px, 1.28fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: start;
}

.report-intro {
    position: sticky;
    top: 100px;
}

.report-intro > p:not(.eyebrow) {
    max-width: 520px;
    margin: 1.25rem 0 1.4rem;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.55;
}

.report-tips {
    display: grid;
    gap: 0.72rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.report-tips li {
    position: relative;
    padding-left: 1.35rem;
    color: #45413a;
    font-size: 0.9rem;
}

.report-tips li::before {
    content: "";
    position: absolute;
    top: 0.55em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--black);
}

.report-form-panel {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: clamp(1rem, 2.5vw, 1.8rem);
    background: var(--panel);
}

.public-evidence-list {
    margin: 0 0 1rem;
}

.admin-page {
    padding-top: clamp(2.8rem, 5vw, 5rem);
}

.admin-page-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
}

.admin-page-heading h1 {
    max-width: 18ch;
    margin-bottom: 0.75rem;
    font-size: clamp(2.6rem, 4.5vw, 4.2rem);
}

.admin-page-heading p:last-child {
    max-width: 680px;
    margin-bottom: 0;
    color: var(--muted);
}

.admin-workflow {
    margin-top: 1rem;
}

.admin-workflow .section-band {
    min-width: 0;
}

.admin-report-list {
    margin-top: 1rem;
}

.admin-message {
    position: sticky;
    bottom: 1rem;
    z-index: 5;
    width: fit-content;
    max-width: 100%;
    margin: 1rem auto 0;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    padding: 0.7rem 1rem;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.entity-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 350px;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.4rem;
    background: var(--panel);
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.entity-card:hover {
    border-color: var(--line-strong);
    box-shadow: 0 16px 40px rgba(20, 18, 15, 0.06);
    transform: translateY(-2px);
}

.line-art {
    position: relative;
    display: grid;
    place-items: center;
    height: 160px;
    margin-bottom: 1.4rem;
}

.brand-logo {
    display: grid;
    place-items: center;
    min-height: 160px;
    margin: 0 0 1.4rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 1.25rem;
    background: var(--white);
}

.brand-logo img {
    display: block;
    max-width: min(210px, 100%);
    max-height: 110px;
    object-fit: contain;
}

.line-art span,
.line-art::before,
.line-art::after {
    content: "";
    position: absolute;
    display: block;
    border: 1.3px solid var(--black);
}

.line-art.orbit span {
    border-radius: 50%;
}

.line-art.orbit span:nth-child(1) {
    width: 150px;
    height: 112px;
}

.line-art.orbit span:nth-child(2) {
    width: 174px;
    height: 130px;
    transform: rotate(8deg);
}

.line-art.orbit span:nth-child(3) {
    width: 198px;
    height: 148px;
    border-style: dotted;
    transform: rotate(16deg);
}

.line-art.mesh span:nth-child(1) {
    width: 180px;
    height: 110px;
    transform: skewY(-18deg);
}

.line-art.mesh span:nth-child(2) {
    width: 180px;
    height: 1px;
}

.line-art.mesh span:nth-child(3) {
    width: 1px;
    height: 135px;
    border-style: dotted;
}

.line-art.wave span {
    border-radius: 50%;
}

.line-art.wave span:nth-child(1) {
    width: 72px;
    height: 128px;
    left: 20%;
}

.line-art.wave span:nth-child(2) {
    width: 118px;
    height: 174px;
    right: 15%;
}

.line-art.wave span:nth-child(3) {
    width: 190px;
    height: 1px;
    border-style: dotted;
}

.entity-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--muted);
    font-size: 0.75rem;
}

.entity-card-top span {
    color: #4f4c47;
    font-weight: 500;
}

.entity-card h3 {
    margin-top: 0.8rem;
    font-size: 1.25rem;
}

.entity-summary {
    margin-bottom: 1rem;
    color: #625d55;
    font-size: 0.92rem;
    line-height: 1.5;
}

.coverage-summary {
    display: grid;
    grid-template-columns: 8px minmax(0, 1fr);
    gap: 0.55rem;
    margin: 0 0 0.85rem;
    color: #4e4a43;
    font-size: 0.84rem;
    line-height: 1.4;
}

.coverage-summary > span:first-child {
    padding-top: 0.26rem;
    color: var(--green);
    font-size: 0.58rem;
}

.coverage-summary > span:last-child {
    display: grid;
    gap: 0.08rem;
}

.coverage-summary strong {
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
}

.domain-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.42rem;
    margin-top: 0.25rem;
}

.domain-list code {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.entity-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.entity-actions-label {
    flex-basis: 100%;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.entity-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    max-width: 100%;
    min-height: 44px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    padding: 0.46rem 0.76rem;
    background: var(--white);
    color: var(--black);
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    text-align: center;
    transition:
        background-color 160ms ease,
        border-color 160ms ease,
        transform 160ms ease;
}

.entity-actions a.payment-action {
    border-color: var(--black);
    background: var(--black);
    color: var(--white);
}

.entity-actions a.payment-action:hover {
    background: #2b2925;
    color: var(--white);
}

.entity-actions a:hover {
    border-color: #bcb8b0;
    background: #fbfbfa;
    transform: translateY(-1px);
}

.entity-actions .save-payment-action {
    flex-basis: 100%;
    min-height: 44px;
    margin-top: 0.18rem;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    padding: 0.55rem 0.8rem;
    background: var(--white);
    color: var(--black);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.2;
    transition:
        background-color 160ms ease,
        border-color 160ms ease,
        transform 160ms ease;
}

.entity-actions .save-payment-action:hover {
    border-color: var(--black);
    background: #f5f4f1;
    transform: translateY(-1px);
}

.payment-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: start center;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-top: max(1.25rem, env(safe-area-inset-top));
    padding-right: max(1.25rem, env(safe-area-inset-right));
    padding-bottom: max(1.25rem, env(safe-area-inset-bottom));
    padding-left: max(1.25rem, env(safe-area-inset-left));
    background: rgba(5, 5, 5, 0.5);
    backdrop-filter: blur(5px);
}

.payment-modal {
    position: relative;
    min-width: 0;
    width: min(520px, 100%);
    margin-block: auto;
    border: 1px solid var(--line-strong);
    border-radius: 20px;
    padding: clamp(1.4rem, 4vw, 2.2rem);
    background: var(--white);
    box-shadow: 0 30px 90px rgba(5, 5, 5, 0.24);
}

.payment-modal h2 {
    max-width: 420px;
    margin: 0 2rem 0.7rem 0;
    font-size: clamp(1.65rem, 4vw, 2.2rem);
    font-weight: 500;
    line-height: 1.12;
    overflow-wrap: anywhere;
}

.payment-modal-description {
    margin: 0 0 1.35rem;
    color: var(--muted);
}

.payment-modal > label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.86rem;
    font-weight: 600;
}

.payment-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--panel);
    color: var(--black);
    font-size: 1.25rem;
    line-height: 1;
}

.payment-date-input {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    padding: 0 0.9rem;
    background: var(--white);
    color: var(--black);
}

.payment-date-input:focus-visible,
.payment-modal-close:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 3px rgba(5, 5, 5, 0.14);
}

.payment-date-help {
    display: block;
    margin-top: 0.48rem;
    color: var(--muted);
    font-size: 0.8rem;
}

.payment-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.4rem;
}

.payment-modal-error,
.payment-modal-success {
    border-radius: 12px;
    padding: 0.8rem 0.9rem;
    font-size: 0.88rem;
}

.payment-modal-error {
    margin: 0.85rem 0 0;
    border: 1px solid #e9b5af;
    background: var(--red-soft);
    color: #7d2721;
}

.payment-modal-success {
    border: 1px solid #a9d9bc;
    background: var(--green-soft);
    color: #195d3b;
}

.payment-modal-success p {
    margin: 0.28rem 0 0;
}

.show-more-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    margin-top: 1.4rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}

.show-more-row span {
    color: var(--muted);
    font-size: 0.82rem;
}

.workflow-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 1.2rem;
}

.report-form {
    gap: 0.9rem;
}

.form-submit {
    width: fit-content;
    margin-top: 0.55rem;
}

.file-note,
.submit-message {
    margin: 0.5rem 0 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.report-list {
    display: grid;
    gap: 0.7rem;
}

.report-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 68px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    background: var(--white);
}

.report-row strong,
.report-row span {
    display: block;
    overflow-wrap: anywhere;
}

.report-row-with-evidence {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
}

.report-evidence {
    grid-column: 1 / -1;
    padding-top: 0.55rem;
    border-top: 1px solid var(--line);
}

.report-evidence summary {
    color: var(--ink);
    font-size: 0.8rem;
    cursor: pointer;
}

.report-evidence p {
    margin: 0.45rem 0 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.report-row div span,
.report-row small {
    margin-top: 0.2rem;
    color: var(--muted);
    font-size: 0.86rem;
}

.report-row small {
    display: block;
}

.compact-row {
    min-height: 58px;
}

.admin-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.admin-actions button {
    min-height: 34px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    padding: 0.34rem 0.68rem;
    background: var(--white);
    color: var(--black);
    font-size: 0.78rem;
    font-weight: 400;
    transition:
        background-color 150ms ease,
        border-color 150ms ease;
}

.admin-actions button:hover {
    border-color: #aaa69e;
    background: #fbfbfa;
}

.admin-actions button:disabled {
    cursor: wait;
    opacity: 0.58;
}

.empty-note {
    margin: 0;
    color: var(--muted);
}

.false-positive-list {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}

.dataset-link {
    min-height: 36px;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    padding: 0.48rem 0.72rem;
    background: var(--white);
    color: var(--ink);
    font-size: 0.8rem;
}

.mini-heading,
.billing-pill {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.mini-heading {
    color: var(--muted);
    font-size: 0.9rem;
}

.mini-heading strong,
.billing-pill {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.32rem 0.64rem;
    background: var(--white);
    color: var(--ink);
    font-weight: 500;
}

.verified-domain-block {
    background: var(--panel);
}

.verified-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem 1rem;
}

.verified-form textarea,
.verified-form .check-row,
.verified-form .form-submit {
    grid-column: 1 / -1;
}

.ownership-challenge {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}

.ownership-challenge > div {
    display: grid;
    gap: 0.4rem;
    min-width: 0;
}

.ownership-challenge span {
    color: var(--muted);
    font-size: 0.78rem;
}

.ownership-challenge code {
    overflow-x: auto;
    white-space: nowrap;
}

.ownership-challenge .challenge-footer {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.challenge-footer button {
    min-height: 38px;
    border: 0;
    border-radius: 6px;
    padding: 0 0.8rem;
    background: var(--black);
    color: var(--white);
    cursor: pointer;
}

.check-row {
    display: flex;
    align-items: center;
    gap: 0.58rem;
    width: fit-content;
    color: #25231f;
}

.check-row input {
    width: 18px;
    min-height: 18px;
    accent-color: var(--black);
}

.status-pill {
    min-width: 100px;
    border-radius: 999px;
    padding: 0.32rem 0.62rem;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 500;
}

input[type="file"] {
    min-height: 0;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    color: var(--muted);
    font-size: 0.86rem;
    overflow: hidden;
}

input[type="file"]::file-selector-button {
    min-height: 44px;
    margin-right: 0.7rem;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    padding: 0 0.8rem;
    background: var(--white);
    color: var(--black);
    font: inherit;
    font-weight: 400;
    cursor: pointer;
}

.status-pill.danger {
    background: var(--red-soft);
    color: #8e201b;
}

.status-pill.warning {
    background: var(--amber-soft);
    color: #87570d;
}

.status-pill.new {
    background: var(--blue-soft);
    color: #164ba9;
}

.status-pill.muted {
    background: #ecebe8;
    color: #57534d;
}

#blazor-error-ui {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1000;
    display: none;
    max-width: 420px;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 0.85rem 2.2rem 0.85rem 1rem;
    background: var(--red-soft);
    color: var(--ink);
    box-shadow: var(--shadow-soft);
}

#blazor-error-ui .reload {
    margin-left: 0.5rem;
    text-decoration: underline;
}

#blazor-error-ui .dismiss {
    position: absolute;
    top: 0.75rem;
    right: 0.85rem;
    cursor: pointer;
}

@media (max-width: 1100px) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .header-nav {
        display: none;
    }

    .hero-columns,
    .console-body,
    .workflow-grid,
    .report-layout {
        grid-template-columns: 1fr;
    }

    .report-intro {
        position: static;
    }

    .directory-categories {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .verify-workspace {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .entity-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .main-surface {
        width: min(100% - 48px, 920px);
    }
}

@media (max-width: 900px) {
    #directorio > .section-heading {
        align-items: stretch;
        flex-direction: column;
    }

    #directorio .directory-toolbar {
        width: 100%;
    }

    input,
    textarea,
    select,
    .payment-date-input {
        font-size: 16px;
    }
}

@media (max-width: 720px) {
    .site-header {
        min-height: 60px;
        padding-top: 0.55rem;
        padding-right: max(1rem, env(safe-area-inset-right));
        padding-bottom: 0.55rem;
        padding-left: max(1rem, env(safe-area-inset-left));
    }

    .app-wordmark {
        height: 28px;
    }

    .header-actions {
        gap: 0.45rem;
    }

    .header-pill.ghost {
        display: none;
    }

    .header-pill,
    .pill-button {
        min-height: 44px;
        padding: 0 0.9rem;
        font-size: 0.84rem;
    }

    .header-pill {
        min-height: 44px;
    }

    .main-surface {
        width: min(calc(100% - 28px - env(safe-area-inset-left) - env(safe-area-inset-right)), 560px);
    }

    .hero-section {
        padding-top: 3.6rem;
    }

    .hero-columns {
        gap: 1.8rem;
        margin-bottom: 2rem;
    }

    h1 {
        max-width: 12ch;
        font-size: clamp(3rem, 13vw, 3.8rem);
    }

    h2 {
        font-size: clamp(2.1rem, 9vw, 2.8rem);
    }

    .hero-brief {
        padding-bottom: 0;
    }

    .hero-brief p {
        font-size: 1rem;
    }

    .console-tabs {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding: 0.3rem;
        overflow: visible;
    }

    .tab-item {
        width: 100%;
        justify-content: center;
        gap: 0.3rem;
        min-width: 0;
        min-height: 44px;
        padding: 0 0.25rem;
        font-size: clamp(0.72rem, 3.4vw, 0.9rem);
    }

    .tab-dot {
        flex: 0 0 auto;
        width: 7px;
        height: 7px;
    }

    .product-console,
    .entity-card,
    .result-panel {
        border-radius: 16px;
    }

    .input-row,
    .entity-grid,
    .verified-form,
    .directory-toolbar {
        grid-template-columns: 1fr;
    }

    .directory-categories {
        display: flex;
        overflow-x: auto;
        padding-bottom: 0.35rem;
        scrollbar-width: none;
    }

    .directory-category-card {
        flex: 0 0 220px;
        min-height: 104px;
    }

    .directory-results-heading,
    .admin-page-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .result-count {
        width: fit-content;
    }

    .verify-workspace,
    .verification-output,
    .section-band {
        padding: 1rem;
    }

    .section-band {
        padding-inline: 0;
    }

    .entity-card {
        min-height: auto;
    }

    .line-art {
        height: 150px;
    }

    .section-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .search-control {
        width: 100%;
    }

    .show-more-row {
        align-items: stretch;
        flex-direction: column;
        text-align: center;
    }

    .signal-list li {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .report-row {
        align-items: stretch;
        flex-direction: column;
    }

    .report-row-with-evidence,
    .research-scores,
    .ownership-challenge {
        grid-template-columns: 1fr;
    }

    .ai-summary {
        grid-template-columns: 1fr;
    }

    .ai-summary > strong {
        margin-top: 0.2rem;
    }

    .ownership-challenge .challenge-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .stage-detail summary {
        grid-template-columns: 10px minmax(0, 1fr);
    }

    .stage-detail summary small {
        grid-column: 2;
        padding-bottom: 0.6rem;
    }

    .stage-detail > p,
    .evidence-list {
        margin-left: 0;
    }

    .admin-actions {
        justify-content: flex-start;
    }

    .admin-page {
        padding-top: 2.5rem;
    }

    .status-pill {
        width: fit-content;
    }

    .form-submit {
        width: 100%;
    }
}

@media (max-width: 430px) {
    .site-header {
        gap: 0.45rem;
    }

    .brand-mark {
        min-width: 0;
    }

    .app-wordmark {
        height: 27px;
    }

    .header-pill {
        padding-inline: 0.75rem;
        font-size: 0.8rem;
    }

    .hero-section {
        padding-top: 2.8rem;
    }

    h1 {
        font-size: clamp(2.65rem, 13vw, 3.35rem);
    }

    .hero-actions .pill-button {
        flex: 1 1 100%;
    }

    .hero-metrics {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-metrics span {
        justify-content: space-between;
        width: 100%;
        min-height: 44px;
    }

    .verify-workspace,
    .verification-output {
        padding: 0.85rem;
    }

    .sample-row > span {
        flex-basis: 100%;
    }

    .sample-row button {
        flex: 1 1 auto;
    }

    .directory-results {
        padding: 0.75rem;
    }

    .entity-card {
        padding: 1.05rem;
    }

    .entity-card-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.25rem;
    }

    .entity-actions a {
        flex: 1 1 100%;
    }

    .payment-modal-backdrop {
        padding-top: max(0.75rem, env(safe-area-inset-top));
        padding-right: max(0.75rem, env(safe-area-inset-right));
        padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
        padding-left: max(0.75rem, env(safe-area-inset-left));
    }

    .payment-modal {
        border-radius: 16px;
        padding: 1.15rem;
    }

    .payment-modal .eyebrow {
        padding-right: 2.8rem;
    }

    .payment-modal h2 {
        margin-right: 0;
        font-size: 1.6rem;
    }

    .payment-modal-close {
        top: 0.7rem;
        right: 0.7rem;
    }

    .payment-modal-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .payment-modal-actions .pill-button {
        width: 100%;
        min-height: 48px;
    }

    input[type="file"]::file-selector-button {
        margin-right: 0.4rem;
        padding-inline: 0.65rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
