:root {
    color-scheme: dark;
    --ink: #e8f0f4;
    --navy: #050a10;
    --navy-2: #0a1520;
    --cream: #070d13;
    --paper: #0d1721;
    --line: #22313d;
    --muted: #91a1ad;
    --mint: #80e6c0;
    --mint-dark: #67d6ae;
    --accent: #80e6c0;
    --danger: #ff786f;
    --shadow: 0 18px 55px rgba(0, 0, 0, .28);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
button, input { font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: wait; opacity: .72; }

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

h1:focus, h2:focus { outline: none; }

.shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 10;
    color: #fff;
}

.nav-shell {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #fff;
    font-weight: 760;
    font-size: 1.05rem;
    text-decoration: none;
    letter-spacing: -.02em;
}

.brand-mark {
    width: 36px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 11px 11px 11px 3px;
    color: var(--navy);
    background: var(--mint);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: -.03em;
}

.nav-shell nav { display: flex; gap: 30px; }
.nav-shell nav a {
    color: rgba(255, 255, 255, .72);
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease;
}
.nav-shell nav a:hover, .nav-shell nav a.active { color: #fff; }

.hero {
    position: relative;
    overflow: hidden;
    min-height: 650px;
    padding: 155px 0 94px;
    color: #fff;
    background:
        radial-gradient(circle at 50% 38%, rgba(38, 145, 123, .26), transparent 34%),
        radial-gradient(circle at 85% 15%, rgba(35, 83, 126, .2), transparent 28%),
        linear-gradient(145deg, #03070c 0%, #08131d 60%, #0a1c25 100%);
}

.hero::before, .hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.hero::before {
    width: 430px;
    height: 430px;
    right: -130px;
    top: 90px;
    border: 1px solid rgba(153, 226, 198, .16);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(153, 226, 198, .03), 0 0 0 140px rgba(153, 226, 198, .02);
}

.hero::after {
    inset: 0;
    opacity: .12;
    background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to right, transparent 8%, #000 45%, transparent 100%);
}

.hero-compact {
    min-height: 0;
    padding: 118px 0 34px;
}

.hero-compact::before { display: none; }
.hero-compact::after { opacity: .07; }
.hero-compact .search-control input { height: 52px; }
.hero-compact .search-control button { min-height: 50px; }
.hero-compact .search-note { margin-top: 9px; }

.hero-content { position: relative; z-index: 1; text-align: center; }

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    color: var(--mint);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.eyebrow span { width: 24px; height: 2px; background: currentColor; }
.hero-content > .eyebrow { justify-content: center; }
.eyebrow.dark { color: var(--mint-dark); margin-bottom: 10px; }

.hero h1 {
    max-width: 920px;
    margin: 0 auto;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.2rem, 7vw, 6.25rem);
    font-weight: 500;
    line-height: .93;
    letter-spacing: -.055em;
}

.hero-copy {
    max-width: 680px;
    margin: 27px auto 39px;
    color: rgba(255,255,255,.68);
    font-size: 1.08rem;
}

.search-form { width: 100%; max-width: 980px; margin-inline: auto; }

.search-control {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(128, 230, 192, .36);
    border-radius: 18px;
    background: rgba(8, 17, 25, .94);
    box-shadow: 0 28px 90px rgba(0,0,0,.48), 0 0 0 1px rgba(255,255,255,.035) inset;
}

.search-prefix { padding-left: 18px; color: #7f909d; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; }
.search-control input {
    min-width: 0;
    height: 64px;
    border: 0;
    outline: 0;
    color: #f4fafc;
    background: transparent;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 1.18rem;
}
.search-control button, .secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 62px;
    padding: 0 29px;
    border: 0;
    border-radius: 9px;
    color: #04130e;
    background: var(--accent);
    font-weight: 780;
    transition: transform .18s ease, background .18s ease;
}
.search-control button:hover, .secondary-button:hover { transform: translateY(-1px); background: #a2efd3; }

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(4,19,14,.25);
    border-top-color: #04130e;
    border-radius: 50%;
    animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.search-note { margin: 13px 0 0; color: rgba(255,255,255,.52); font-size: .78rem; }
.validation-message, .form-error { margin: 9px 0 0 3px; color: #ffb39a; font-size: .86rem; }

.trust-row { display: flex; justify-content: center; gap: 30px; margin-top: 31px; color: rgba(255,255,255,.6); font-size: .82rem; }
.trust-row span { display: flex; align-items: center; gap: 8px; }
.trust-row i { color: var(--mint); font-style: normal; font-weight: 900; }

.feature-section, .result-section { padding-block: 88px 110px; }
.feature-intro { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: end; margin-bottom: 48px; }
.feature-intro > span { color: var(--mint-dark); font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.feature-intro h2, .result-heading h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.3rem, 4vw, 4.1rem);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -.045em;
}

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.feature-grid article { padding: 30px 42px 10px 0; }
.feature-grid article + article { padding-left: 42px; border-left: 1px solid var(--line); }
.feature-grid article > span, .section-number { color: var(--accent); font: 700 .72rem ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .1em; }
.feature-grid h3 { margin: 30px 0 12px; font-size: 1.1rem; }
.feature-grid p { margin: 0; color: var(--muted); font-size: .92rem; }

.result-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 35px; }
.result-heading h2 { overflow-wrap: anywhere; }
.punycode { margin: 8px 0 0; color: var(--muted); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; }
.result-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; align-items: center; gap: 10px; }
.cache-pill { padding: 6px 10px; border: 1px solid rgba(128,230,192,.25); border-radius: 999px; color: var(--mint); background: rgba(128,230,192,.08); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.retrieved { flex-basis: 100%; text-align: right; color: var(--muted); font-size: .78rem; }
.secondary-button { min-height: 36px; padding: 0 13px; color: var(--ink); background: transparent; border: 1px solid #40515d; font-size: .8rem; }
.secondary-button:hover { color: var(--mint); border-color: #39695c; background: #122720; }

.summary-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 22px; }
.summary-card { min-height: 150px; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); box-shadow: 0 8px 26px rgba(20,43,57,.035); }
.summary-card strong { margin: 10px 0 4px; font-size: 1.05rem; line-height: 1.3; overflow-wrap: anywhere; }
.summary-card > span:last-child { color: var(--muted); font-size: .78rem; }
.card-label { color: var(--mint-dark); font-size: .69rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.accent-card { color: #fff; border-color: #284a4a; background: linear-gradient(145deg, #102c2b, #0b1c25); }
.accent-card .card-label { color: var(--mint); }
.accent-card > span:last-child { color: rgba(255,255,255,.55); }

.report-grid { display: grid; grid-template-columns: minmax(0, 3fr) minmax(245px, 1fr); gap: 22px; align-items: start; }
.report-main { min-width: 0; display: grid; gap: 22px; }
.report-aside { display: grid; gap: 22px; position: sticky; top: 20px; }
.panel { border: 1px solid var(--line); border-radius: 13px; background: var(--paper); box-shadow: var(--shadow); overflow: hidden; }
.panel-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 28px; border-bottom: 1px solid var(--line); }
.panel-heading > div { display: flex; align-items: center; gap: 14px; }
.panel h3 { margin: 0; font-size: 1.02rem; }
.panel h4 { margin: 28px 28px 13px; font-size: .73rem; letter-spacing: .1em; text-transform: uppercase; }
.panel-intro { margin: 20px 28px; color: var(--muted); font-size: .88rem; }
.record-count { color: var(--muted); font-size: .76rem; }

.detail-list { margin: 0; padding: 8px 28px; }
.detail-list > div { display: grid; grid-template-columns: 145px 1fr; gap: 15px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.detail-list > div:last-child { border-bottom: 0; }
.detail-list dt { color: var(--muted); font-size: .78rem; }
.detail-list dd { margin: 0; font-size: .85rem; font-weight: 600; overflow-wrap: anywhere; }
.detail-list a { color: var(--mint-dark); }

.tag-list { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 28px 4px; }
.tag-list span { padding: 6px 10px; border: 1px solid #294c45; border-radius: 999px; color: #9ce7cc; background: #10241f; font: 600 .7rem ui-monospace, SFMono-Regular, Consolas, monospace; }

.timeline { padding: 0 28px 28px; }
.timeline > div { position: relative; display: grid; grid-template-columns: 18px 1fr auto; align-items: center; gap: 10px; min-height: 37px; font-size: .8rem; }
.timeline > div > span { width: 7px; height: 7px; border: 2px solid var(--mint-dark); border-radius: 50%; }
.timeline > div:not(:last-child)::before { content: ""; position: absolute; left: 3px; top: 22px; height: 20px; border-left: 1px solid var(--line); }
.timeline time { color: var(--muted); font: .7rem ui-monospace, SFMono-Regular, Consolas, monospace; }

.record-group { display: grid; grid-template-columns: 90px 1fr; border-bottom: 1px solid var(--line); }
.record-group:last-child { border-bottom: 0; }
.record-type { padding: 20px 28px; color: var(--mint-dark); font: 800 .78rem ui-monospace, SFMono-Regular, Consolas, monospace; }
.record-table { min-width: 0; border-left: 1px solid var(--line); }
.record-table-head { display: grid; grid-template-columns: minmax(115px, .7fr) minmax(0, 2fr) 72px; gap: 15px; padding: 10px 20px; border-bottom: 1px solid var(--line); color: #6f818d; font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.record-table-head span:last-child { text-align: right; }
.record-row { display: grid; grid-template-columns: minmax(115px, .7fr) minmax(0, 2fr) 72px; gap: 15px; padding: 15px 20px; border-bottom: 1px solid var(--line); align-items: start; font-size: .77rem; }
.record-row:last-child { border-bottom: 0; }
.record-row code, .record-row span { overflow-wrap: anywhere; }
.record-row code { color: #a9c6d8; }
.record-row span { color: #d7e3e9; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; }
.record-row .record-ip { color: #b4f4dc; font-size: .9rem; font-weight: 800; }
.mx-value { min-width: 0; display: grid; gap: 7px; }
.mx-value > span { overflow-wrap: anywhere; }
.mx-addresses { display: flex; flex-wrap: wrap; gap: 5px; }
.mx-addresses code { padding: 3px 6px; border: 1px solid #2d5c52; border-radius: 5px; color: #b4f4dc; background: #0a211d; font-size: .68rem; }
.record-row small { color: #7e909c; text-align: right; white-space: nowrap; }

.raw-panel details { border-top: 1px solid var(--line); }
.raw-panel summary { display: flex; justify-content: space-between; padding: 17px 28px; cursor: pointer; font-weight: 750; font-size: .84rem; }
.raw-panel summary span { color: var(--muted); font: 700 .65rem ui-monospace, SFMono-Regular, Consolas, monospace; }
.raw-panel pre { max-height: 520px; margin: 0; padding: 24px 28px; overflow: auto; color: #d4e7e3; background: #071a2b; font: .76rem/1.6 ui-monospace, SFMono-Regular, Consolas, monospace; white-space: pre-wrap; overflow-wrap: anywhere; }

.compact-panel { padding: 24px; }
.compact-panel h3 { padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.nameserver-list { list-style: none; margin: 14px 0 0; padding: 0; }
.nameserver-list li { display: flex; align-items: flex-start; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .74rem; overflow-wrap: anywhere; }
.nameserver-list li:last-child { border-bottom: 0; }
.nameserver-dot { flex: 0 0 auto; width: 7px; height: 7px; margin-top: 6px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 3px rgba(128,230,192,.12); }
.nameserver-host { color: var(--ink); }
.nameserver-addresses { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 7px; }
.nameserver-addresses code { padding: 3px 6px; border: 1px solid #29404f; border-radius: 5px; color: #9fc5d9; background: #09131c; font-size: .66rem; }
.nameserver-list small { display: block; margin-top: 5px; color: var(--muted); }
.notice-panel p { color: var(--muted); font-size: .78rem; }
.empty-state { padding: 20px 28px; margin: 0; color: var(--muted); font-size: .86rem; }
.source-card { padding: 26px; border-radius: 13px; color: #fff; background: var(--navy); }
.source-card > span { color: var(--mint); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.source-card p { margin: 15px 0 0; color: rgba(255,255,255,.66); font-size: .82rem; }

.alert-card { display: flex; gap: 16px; align-items: flex-start; padding: 22px; border: 1px solid #633c3c; border-radius: 12px; background: #251415; box-shadow: var(--shadow); }
.alert-icon { flex: 0 0 auto; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--danger); font-weight: 900; }
.alert-card strong { color: #ffaaa4; }
.alert-card p { margin: 3px 0 0; color: #c89a96; }

.legal-hero { padding: 155px 0 70px; color: #fff; background: linear-gradient(135deg, var(--navy), #0d3444); }
.legal-heading h1 { margin: 0; font: 500 clamp(2.8rem, 6vw, 5.4rem)/1 Georgia, "Times New Roman", serif; letter-spacing: -.05em; }
.legal-heading p { color: rgba(255,255,255,.58); }
.legal-document { max-width: 820px; padding-block: 72px 110px; }
.legal-lead { margin: 0 0 48px; color: #bfd0da; font: 1.25rem/1.65 Georgia, "Times New Roman", serif; }
.legal-document h2 { margin: 40px 0 10px; font-size: 1.16rem; }
.legal-document p, .legal-document li { color: var(--muted); font-size: .94rem; }
.legal-document li + li { margin-top: 7px; }
.legal-document a { color: var(--mint-dark); font-weight: 650; }
.legal-callout { margin-top: 50px; padding: 22px 25px; border-left: 4px solid var(--accent); background: #101b18; }
.legal-callout p { margin: 4px 0 0; }

.not-found-page {
    position: relative;
    isolation: isolate;
    min-height: 720px;
    display: grid;
    align-items: center;
    overflow: hidden;
    padding: 150px 0 90px;
    color: #fff;
    background:
        radial-gradient(circle at 75% 45%, rgba(36, 150, 122, .2), transparent 28%),
        radial-gradient(circle at 12% 80%, rgba(29, 76, 112, .18), transparent 30%),
        linear-gradient(145deg, #07121c 0%, #0a1924 58%, #0d2630 100%);
}
.not-found-page::before {
    content: "404";
    position: absolute;
    z-index: -1;
    right: -2vw;
    bottom: -18%;
    color: rgba(255, 255, 255, .025);
    font: 800 clamp(20rem, 42vw, 42rem)/.8 ui-sans-serif, system-ui, sans-serif;
    letter-spacing: -.1em;
    pointer-events: none;
}
.not-found-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    align-items: center;
    gap: clamp(50px, 9vw, 130px);
}
.not-found-content { max-width: 690px; }
.not-found-content h1 {
    max-width: 650px;
    margin: 0;
    font: 500 clamp(3.25rem, 7vw, 6.5rem)/.94 Georgia, "Times New Roman", serif;
    letter-spacing: -.055em;
}
.not-found-content > p {
    max-width: 570px;
    margin: 28px 0 34px;
    color: rgba(255, 255, 255, .66);
    font-size: 1.02rem;
}
.not-found-action {
    width: fit-content;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 0 22px;
    border-radius: 9px;
    color: #04130e;
    background: var(--mint);
    font-weight: 800;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease;
}
.not-found-action:hover { transform: translateY(-1px); background: #a2efd3; }
.not-found-action span:last-child { font-size: 1.25rem; line-height: 1; }
.not-found-status {
    position: relative;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 34px;
    border: 1px solid rgba(128, 230, 192, .22);
    border-radius: 22px;
    background: rgba(6, 17, 25, .72);
    box-shadow: 0 35px 90px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .035);
    backdrop-filter: blur(12px);
}
.not-found-status::before,
.not-found-status::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.not-found-status::before { inset: 76px 58px; border: 1px solid rgba(128, 230, 192, .13); }
.not-found-status::after { inset: 110px 92px; border: 1px solid rgba(128, 230, 192, .2); }
.not-found-status > span {
    color: var(--mint);
    font: 800 .69rem ui-monospace, SFMono-Regular, Consolas, monospace;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.not-found-status strong {
    position: relative;
    z-index: 1;
    align-self: center;
    color: #effff9;
    font: 500 6.7rem/.9 Georgia, "Times New Roman", serif;
    letter-spacing: -.07em;
}
.not-found-status > div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .56);
    font-size: .78rem;
}
.not-found-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 4px rgba(128, 230, 192, .1);
}

.site-footer { color: rgba(255,255,255,.62); border-top: 1px solid #162631; background: #040a0f; }
.footer-shell { padding-block: 50px 24px; }
.footer-main { display: grid; grid-template-columns: minmax(280px, 1fr) auto; gap: 70px; align-items: start; }
.footer-brand { max-width: 440px; }
.footer-brand-title { display: flex; align-items: center; gap: 12px; }
.footer-brand-title .brand-mark { width: 34px; border-radius: 10px 10px 10px 3px; }
.site-footer strong { color: #fff; font-size: 1.02rem; letter-spacing: -.02em; }
.site-footer p { margin: 14px 0 0; color: #788a96; font-size: .82rem; line-height: 1.65; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 28px; padding-top: 8px; }
.footer-links a { position: relative; padding-block: 5px; color: #a9b6be; font-size: .82rem; font-weight: 650; text-decoration: none; transition: color .18s ease; }
.footer-links a::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: var(--mint); transform: scaleX(0); transform-origin: left; transition: transform .18s ease; }
.footer-links a:hover, .footer-links a.active { color: #fff; }
.footer-links a:hover::after, .footer-links a.active::after { transform: scaleX(1); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 42px; padding-top: 20px; border-top: 1px solid #16232d; color: #667883; font-size: .72rem; }

#blazor-error-ui { display: none; position: fixed; inset: auto 0 0; z-index: 1000; padding: .8rem 3rem .8rem 1rem; color: #fff; background: #8d2823; }
#blazor-error-ui .dismiss { position: absolute; right: 1rem; cursor: pointer; }

@media (max-width: 900px) {
    .not-found-shell { grid-template-columns: minmax(0, 1fr) 280px; gap: 40px; }
    .not-found-status { min-height: 300px; padding: 28px; }
    .not-found-status strong { font-size: 5.5rem; }
    .summary-grid { grid-template-columns: repeat(2, 1fr); }
    .report-grid { grid-template-columns: 1fr; }
    .report-aside { position: static; grid-template-columns: repeat(2, 1fr); }
    .source-card { grid-column: 1 / -1; }
    .feature-intro { grid-template-columns: 1fr; gap: 12px; }
    .footer-main { grid-template-columns: 1fr; gap: 30px; }
    .footer-links { justify-content: flex-start; padding-top: 0; }
}

@media (max-width: 640px) {
    .shell { width: min(100% - 24px, 1180px); }
    .nav-shell { min-height: 70px; }
    .nav-shell nav { gap: 10px; }
    .nav-shell nav a { font-size: .72rem; }
    .brand > span:last-child { display: none; }
    .not-found-page { min-height: 680px; padding: 125px 0 68px; }
    .not-found-page::before { right: -8vw; bottom: -4%; font-size: 18rem; }
    .not-found-shell { grid-template-columns: 1fr; gap: 44px; }
    .not-found-content h1 { font-size: clamp(3.1rem, 16vw, 4.5rem); }
    .not-found-content > p { margin-block: 22px 28px; font-size: .94rem; }
    .not-found-status { min-height: 220px; }
    .not-found-status::before { inset: 55px 75px; }
    .not-found-status::after { inset: 75px 98px; }
    .not-found-status strong { font-size: 4.6rem; }
    .hero { min-height: 620px; padding: 130px 0 70px; }
    .hero h1 { font-size: clamp(3rem, 17vw, 4.5rem); }
    .hero-copy { font-size: .98rem; }
    .search-control { grid-template-columns: 1fr; padding: 7px; }
    .search-prefix { display: none; }
    .search-control input { padding: 0 11px; }
    .search-control button { width: 100%; }
    .trust-row { flex-wrap: wrap; gap: 10px 20px; }
    .feature-section, .result-section { padding-block: 60px 75px; }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-grid article, .feature-grid article + article { padding: 25px 0; border-left: 0; border-bottom: 1px solid var(--line); }
    .feature-grid h3 { margin-top: 14px; }
    .result-heading { align-items: flex-start; flex-direction: column; }
    .result-actions { justify-content: flex-start; }
    .retrieved { text-align: left; }
    .summary-grid { grid-template-columns: 1fr; }
    .summary-card { min-height: 128px; }
    .report-aside { grid-template-columns: 1fr; }
    .source-card { grid-column: auto; }
    .detail-list > div { grid-template-columns: 1fr; gap: 4px; }
    .record-group { grid-template-columns: 1fr; }
    .record-type { padding: 15px 20px; }
    .record-table { border-left: 0; border-top: 1px solid var(--line); }
    .record-table-head { display: none; }
    .record-row { grid-template-columns: 1fr; gap: 6px; }
    .record-row small { text-align: left; }
    .timeline > div { grid-template-columns: 18px 1fr; padding: 5px 0; }
    .timeline time { grid-column: 2; }
    .footer-shell { padding-block: 38px 22px; }
    .footer-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 24px; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 6px; margin-top: 30px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
