:root {
  --bg: #07111f;
  --bg-deep: #040b14;
  --panel: #0b1828;
  --panel-2: #0e1d30;
  --line: rgba(148, 180, 210, .15);
  --line-strong: rgba(148, 180, 210, .28);
  --text: #edf6ff;
  --muted: #8fa5ba;
  --muted-2: #61788f;
  --mint: #50f2c2;
  --mint-dim: rgba(80, 242, 194, .12);
  --blue: #69a8ff;
  --danger: #ff6f7d;
  --warn: #ffcc66;
  --ok: #55e6ae;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 75% 8%, rgba(37, 141, 143, .14), transparent 30rem),
    linear-gradient(180deg, var(--bg) 0%, #081321 52%, var(--bg-deep) 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.55;
}
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.skip-link { position: fixed; top: -50px; left: 20px; z-index: 99; padding: 10px 16px; color: #03100c; background: var(--mint); border-radius: 8px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: relative;
  z-index: 10;
  width: min(1180px, calc(100% - 40px));
  height: 82px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--text); text-decoration: none; font-size: 18px; letter-spacing: -.3px; }
.brand b { color: var(--mint); font-weight: 650; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; color: var(--mint); background: var(--mint-dim); border: 1px solid rgba(80, 242, 194, .25); border-radius: 10px; }
.brand-mark svg { width: 23px; }
.header-meta { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 13px; }
.header-meta a { margin-left: 14px; color: var(--text); text-underline-offset: 4px; text-decoration-color: var(--line-strong); }
.live-dot { width: 7px; height: 7px; background: var(--mint); border-radius: 50%; box-shadow: 0 0 0 5px var(--mint-dim), 0 0 15px var(--mint); }

.hero { position: relative; width: min(1180px, calc(100% - 40px)); min-height: 520px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(109, 150, 179, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(109, 150, 179, .035) 1px, transparent 1px); background-size: 36px 36px; mask-image: linear-gradient(90deg, transparent, #000 60%, transparent); }
.hero-copy { position: relative; z-index: 2; padding: 68px 0 58px; }
.eyebrow, .section-kicker { margin: 0 0 15px; color: var(--mint); font-size: 11px; font-weight: 700; letter-spacing: 2.2px; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 9px; }
.eyebrow span { display: block; width: 28px; height: 1px; background: var(--mint); }
.hero h1 { margin: 0; max-width: 610px; font-size: clamp(52px, 6.7vw, 84px); line-height: 1.02; letter-spacing: -4px; font-weight: 650; }
.hero h1 em { color: transparent; -webkit-text-stroke: 1.5px var(--mint); font-style: normal; text-shadow: 0 0 38px rgba(80, 242, 194, .1); }
.hero-lead { max-width: 560px; margin: 27px 0 33px; color: var(--muted); font-size: 17px; }
.hero-stats { display: flex; gap: 0; }
.hero-stats div { min-width: 120px; padding-right: 28px; margin-right: 28px; border-right: 1px solid var(--line); }
.hero-stats div:last-child { border: 0; }
.hero-stats strong { display: block; color: var(--text); font-size: 23px; font-weight: 600; }
.hero-stats span { color: var(--muted-2); font-size: 11px; letter-spacing: .8px; }

.hero-visual { position: relative; height: 440px; opacity: .92; }
.globe-grid { position: absolute; width: 310px; height: 310px; top: 65px; left: 50%; transform: translateX(-50%); border: 1px solid rgba(80, 242, 194, .18); border-radius: 50%; background: radial-gradient(circle, rgba(80, 242, 194, .07), transparent 64%), repeating-radial-gradient(ellipse at center, transparent 0 38px, rgba(80, 242, 194, .08) 39px 40px), linear-gradient(90deg, transparent 49.7%, rgba(80, 242, 194, .16) 50%, transparent 50.3%); box-shadow: inset 0 0 50px rgba(80, 242, 194, .04), 0 0 80px rgba(27, 171, 150, .08); }
.globe-grid::before, .globe-grid::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(80, 242, 194, .1); border-radius: 50%; transform: scaleX(.54); }
.globe-grid::after { transform: scaleY(.54); }
.orbit { position: absolute; z-index: 1; border: 1px dashed rgba(105, 168, 255, .18); border-radius: 50%; }
.orbit-one { width: 390px; height: 260px; left: 50%; top: 90px; transform: translateX(-50%) rotate(-22deg); }
.orbit-two { width: 410px; height: 190px; left: 50%; top: 120px; transform: translateX(-50%) rotate(28deg); }
.node { position: absolute; z-index: 4; display: flex; align-items: center; gap: 7px; padding: 6px 9px; color: var(--muted); font: 600 10px ui-monospace, SFMono-Regular, Consolas, monospace; background: rgba(8, 21, 34, .86); border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 8px 22px rgba(0,0,0,.3); }
.node i { width: 5px; height: 5px; background: var(--mint); border-radius: 50%; box-shadow: 0 0 8px var(--mint); }
.node-a { left: 10%; top: 110px; }.node-b { right: 8%; top: 86px; }.node-c { right: 2%; bottom: 104px; }.node-d { left: 2%; bottom: 105px; }
.visual-card { position: absolute; z-index: 5; left: 50%; top: 50%; width: 225px; padding: 18px 19px; transform: translate(-50%, -50%); background: rgba(7, 19, 31, .9); border: 1px solid rgba(80, 242, 194, .28); border-radius: 14px; box-shadow: 0 20px 50px rgba(0,0,0,.38), inset 0 1px rgba(255,255,255,.03); backdrop-filter: blur(10px); }
.visual-label { display: block; margin-bottom: 9px; color: var(--muted-2); font: 600 9px ui-monospace, monospace; letter-spacing: 1.3px; }
.visual-card strong { font: 600 18px ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: -.7px; }
.visual-card small { color: var(--mint); font: 10px ui-monospace, monospace; }
.signal { height: 23px; margin: 10px 0 4px; display: flex; align-items: flex-end; gap: 4px; }
.signal i { flex: 1; height: 20%; background: linear-gradient(var(--mint), rgba(80,242,194,.2)); border-radius: 2px 2px 0 0; }
.signal i:nth-child(2){height:55%}.signal i:nth-child(3){height:34%}.signal i:nth-child(4){height:90%}.signal i:nth-child(5){height:63%}

.tool-shell { position: relative; z-index: 3; width: min(1180px, calc(100% - 40px)); min-height: 640px; margin: 10px auto 95px; display: grid; grid-template-columns: 190px 1fr; background: rgba(9, 23, 38, .88); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); overflow: hidden; backdrop-filter: blur(18px); }
.tool-nav { padding: 18px 12px; background: rgba(4, 13, 23, .45); border-right: 1px solid var(--line); }
.tool-tab { width: 100%; min-height: 47px; margin: 2px 0; padding: 0 13px; display: flex; align-items: center; gap: 11px; color: var(--muted); background: transparent; border: 1px solid transparent; border-radius: 10px; cursor: pointer; text-align: left; font-size: 13px; transition: .18s ease; }
.tool-tab svg { width: 18px; }
.tool-tab:hover { color: var(--text); background: rgba(255,255,255,.025); }
.tool-tab.active { color: var(--mint); background: var(--mint-dim); border-color: rgba(80, 242, 194, .16); box-shadow: inset 3px 0 var(--mint); }
.tool-tab:focus-visible, .btn:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, a:focus-visible { outline: 2px solid var(--mint); outline-offset: 2px; }
.panels { min-width: 0; }
.tool-panel { padding: 34px 38px 38px; animation: panel-in .22s ease both; }
@keyframes panel-in { from { opacity: 0; transform: translateY(5px); } }
.panel-heading { min-height: 74px; display: flex; justify-content: space-between; gap: 24px; align-items: flex-start; }
.panel-heading h2 { margin: 0 0 5px; font-size: 25px; letter-spacing: -.7px; font-weight: 620; }
.panel-heading p:not(.section-kicker) { margin: 0; color: var(--muted); font-size: 13px; }
.section-kicker { margin-bottom: 5px; font-size: 9px; }
.privacy-pill { flex: none; display: flex; align-items: center; gap: 6px; padding: 6px 10px; color: var(--mint); background: var(--mint-dim); border: 1px solid rgba(80,242,194,.16); border-radius: 20px; font-size: 10px; letter-spacing: .4px; }
.privacy-pill svg { width: 13px; }

.query-form { margin-top: 24px; padding: 19px; display: flex; align-items: flex-start; gap: 12px; background: rgba(3, 12, 21, .34); border: 1px solid var(--line); border-radius: 14px; }
.query-form.single-line { align-items: flex-end; }
.stack-form { margin-top: 24px; padding: 19px; display: flex; flex-direction: column; gap: 14px; background: rgba(3, 12, 21, .34); border: 1px solid var(--line); border-radius: 14px; }
.field { min-width: 145px; display: flex; flex-direction: column; gap: 7px; }
.field-grow { flex: 1; min-width: 180px; }
.field > span { color: #b9c9d8; font-size: 11px; font-weight: 600; letter-spacing: .35px; }
.field > span small { color: var(--muted-2); font-weight: 400; }
.field > small { margin-top: -3px; color: var(--muted-2); font-size: 9px; }
.input-wrap { position: relative; }
.input-wrap svg { position: absolute; z-index: 2; left: 12px; top: 50%; width: 16px; color: var(--muted-2); transform: translateY(-50%); pointer-events: none; }
.input-wrap svg + input { padding-left: 37px; }
input, select, textarea { width: 100%; color: var(--text); background: #091522; border: 1px solid var(--line-strong); border-radius: 8px; transition: border-color .18s, box-shadow .18s; }
input, select { height: 42px; padding: 0 12px; }
textarea { padding: 12px; resize: vertical; }
select { min-width: 126px; cursor: pointer; }
input::placeholder, textarea::placeholder { color: #496076; }
input:focus, select:focus, textarea:focus { border-color: rgba(80, 242, 194, .58); box-shadow: 0 0 0 3px rgba(80, 242, 194, .07); outline: none; }
.form-actions { padding-top: 25px; display: flex; gap: 8px; }
.single-line .form-actions { padding-top: 0; }
.btn { min-height: 42px; padding: 0 16px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; border: 1px solid transparent; border-radius: 8px; cursor: pointer; font-size: 12px; font-weight: 650; white-space: nowrap; transition: transform .15s, border-color .15s, background .15s; }
.btn svg { width: 15px; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: .6; cursor: wait; transform: none; }
.btn-primary { color: #03130e; background: var(--mint); box-shadow: 0 8px 22px rgba(80, 242, 194, .12); }
.btn-primary:hover { background: #70f7ce; }
.btn-secondary { color: var(--text); background: rgba(255,255,255,.035); border-color: var(--line-strong); }
.align-start { align-self: flex-start; }

.results { min-height: 260px; margin-top: 22px; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: rgba(4, 13, 23, .2); }
.empty-state { min-height: 260px; padding: 35px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--muted); text-align: center; }
.empty-state.compact { min-height: 210px; }
.empty-state h3 { margin: 12px 0 3px; color: #b8cadb; font-size: 14px; font-weight: 560; }
.empty-state p { max-width: 490px; margin: 0; font-size: 11px; }
.empty-icon { width: 48px; height: 48px; display: grid; place-items: center; color: var(--muted-2); background: rgba(255,255,255,.025); border: 1px solid var(--line); border-radius: 14px; }
.empty-icon svg { width: 23px; }
.loading-state { min-height: 230px; display: grid; place-items: center; text-align: center; color: var(--muted); font-size: 11px; }
.loader { width: 34px; height: 34px; margin: 0 auto 13px; border: 2px solid var(--line); border-top-color: var(--mint); border-radius: 50%; animation: spin .75s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.result-head { min-height: 56px; padding: 10px 16px; display: flex; align-items: center; justify-content: space-between; gap: 10px; background: rgba(255,255,255,.02); border-bottom: 1px solid var(--line); }
.result-head h3 { margin: 0; font-size: 13px; font-weight: 600; }
.result-meta { display: flex; align-items: center; gap: 8px; color: var(--muted-2); font: 9px ui-monospace, SFMono-Regular, Consolas, monospace; text-transform: uppercase; letter-spacing: .6px; }
.status-badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 7px; border-radius: 12px; font: 600 9px ui-sans-serif, sans-serif; letter-spacing: .3px; }
.status-badge::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.status-ok { color: var(--ok); background: rgba(85,230,174,.1); }.status-warn { color: var(--warn); background: rgba(255,204,102,.1); }.status-error { color: var(--danger); background: rgba(255,111,125,.1); }.status-neutral { color: var(--blue); background: rgba(105,168,255,.1); }
.table-scroll { overflow-x: auto; }
.records-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.records-table th { padding: 10px 14px; color: var(--muted-2); background: rgba(0,0,0,.08); border-bottom: 1px solid var(--line); font-size: 9px; letter-spacing: .9px; text-align: left; text-transform: uppercase; }
.records-table td { padding: 12px 14px; color: #b8c9d9; border-bottom: 1px solid rgba(148,180,210,.08); font: 11px ui-monospace, SFMono-Regular, Consolas, monospace; vertical-align: top; overflow-wrap: anywhere; }
.records-table tr:last-child td { border-bottom: 0; }
.records-table td.value { color: var(--text); }
.records-table th:nth-child(1) { width: 24%; }.records-table th:nth-child(2) { width: 10%; }.records-table th:nth-child(4) { width: 11%; }
.result-note { padding: 13px 16px; color: var(--muted); border-top: 1px solid var(--line); font-size: 10px; }
.result-error { min-height: 220px; padding: 35px; display: flex; align-items: center; justify-content: center; text-align: center; }
.result-error strong { display: block; margin-bottom: 5px; color: var(--danger); font-size: 14px; }.result-error p { margin: 0; color: var(--muted); font-size: 11px; }

.all-grid { padding: 14px; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.record-group { min-width: 0; background: rgba(255,255,255,.018); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.record-group-head { padding: 9px 11px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); }
.record-group-head strong { color: var(--mint); font: 650 11px ui-monospace, monospace; }.record-group-head span { color: var(--muted-2); font-size: 9px; }
.record-item { padding: 8px 11px; border-bottom: 1px solid rgba(148,180,210,.07); }.record-item:last-child { border: 0; }
.record-item code { display: block; color: #c7d6e4; font: 10px/1.5 ui-monospace, Consolas, monospace; overflow-wrap: anywhere; }.record-item small { color: var(--muted-2); font-size: 8px; }
.record-empty { padding: 14px 11px; color: var(--muted-2); font-size: 10px; }

.prop-summary { padding: 20px; display: grid; grid-template-columns: 130px 1fr; align-items: center; gap: 20px; border-bottom: 1px solid var(--line); }
.progress-ring { width: 108px; height: 108px; position: relative; }.progress-ring svg { width: 108px; transform: rotate(-90deg); }.progress-ring circle { fill: none; stroke-width: 7; }.progress-track { stroke: var(--line); }.progress-value { stroke: var(--mint); stroke-linecap: round; transition: stroke-dashoffset .5s; }.progress-label { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }.progress-label strong { font-size: 22px; }.progress-label span { color: var(--muted-2); font-size: 8px; letter-spacing: .6px; }
.prop-summary h3 { margin: 0 0 5px; font-size: 18px; }.prop-summary p { margin: 0; color: var(--muted); font-size: 11px; }
.resolver-list { padding: 5px 16px; }.resolver-row { min-height: 57px; display: grid; grid-template-columns: 130px 1fr auto; gap: 14px; align-items: center; border-bottom: 1px solid rgba(148,180,210,.08); }.resolver-row:last-child { border: 0; }.resolver-name { display: flex; align-items: center; gap: 9px; font-size: 11px; font-weight: 600; }.resolver-logo { width: 26px; height: 26px; display: grid; place-items: center; color: var(--blue); background: rgba(105,168,255,.08); border: 1px solid rgba(105,168,255,.14); border-radius: 8px; font: 700 8px ui-monospace, monospace; }.resolver-value { color: #c7d6e4; font: 10px ui-monospace, monospace; overflow-wrap: anywhere; }.resolver-time { color: var(--muted-2); font: 9px ui-monospace, monospace; }

.score-grid { padding: 15px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }.score-card { min-height: 112px; padding: 14px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.018); }.score-card-top { display: flex; justify-content: space-between; gap: 8px; }.score-card h4 { margin: 0; font: 650 11px ui-monospace, monospace; }.score-card strong { display: block; margin: 18px 0 1px; font-size: 13px; }.score-card p { margin: 0; color: var(--muted-2); font-size: 9px; }.detail-section { padding: 17px; border-top: 1px solid var(--line); }.detail-section h4 { margin: 0 0 11px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .8px; }
.analysis-grid { padding: 16px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }.analysis-card { padding: 15px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.018); }.analysis-card span { color: var(--muted-2); font-size: 9px; text-transform: uppercase; letter-spacing: .7px; }.analysis-card strong { display: block; margin-top: 7px; color: var(--text); font: 600 12px ui-monospace, monospace; overflow-wrap: anywhere; }.raw-record { margin: 0 16px 16px; padding: 12px; color: #bcd0e1; background: #06101b; border: 1px solid var(--line); border-radius: 8px; font: 10px/1.7 ui-monospace, Consolas, monospace; overflow-wrap: anywhere; }.warning-list { margin: 0; padding: 0 16px 15px 34px; color: var(--warn); font-size: 10px; }.mechanism-list { padding: 0 16px 16px; display: flex; flex-wrap: wrap; gap: 6px; }.mechanism-chip { padding: 5px 8px; color: #bcd0e1; background: rgba(105,168,255,.07); border: 1px solid rgba(105,168,255,.13); border-radius: 6px; font: 9px ui-monospace, monospace; }
.check-list { padding: 10px 18px; }.check-row { min-height: 56px; display: grid; grid-template-columns: 28px 155px 1fr; align-items: center; gap: 10px; border-bottom: 1px solid rgba(148,180,210,.08); }.check-row:last-child { border: 0; }.check-icon { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; font-size: 10px; font-weight: 800; }.check-icon.ok { color: var(--ok); background: rgba(85,230,174,.1); }.check-icon.fail { color: var(--danger); background: rgba(255,111,125,.1); }.check-icon.warn { color: var(--warn); background: rgba(255,204,102,.1); }.check-row strong { font-size: 11px; }.check-row span:last-child { color: var(--muted); font-size: 10px; }
.caa-list { padding: 15px; display: grid; gap: 9px; }.caa-card { padding: 14px; display: grid; grid-template-columns: 56px 1fr; gap: 13px; align-items: center; border: 1px solid var(--line); border-radius: 10px; }.caa-tag { color: var(--mint); font: 700 10px ui-monospace, monospace; }.caa-card strong { display: block; font: 600 11px ui-monospace, monospace; overflow-wrap: anywhere; }.caa-card p { margin: 3px 0 0; color: var(--muted); font-size: 9px; }

.about { width: min(1180px, calc(100% - 40px)); margin: 0 auto 90px; padding: 38px 0; display: grid; grid-template-columns: .8fr 1.2fr; gap: 35px 70px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }.about h2 { margin: 0; font-size: 26px; letter-spacing: -.7px; }.about > p { margin: 0; color: var(--muted); font-size: 13px; }.about-flow { grid-column: 1/-1; display: flex; align-items: center; justify-content: center; gap: 16px; }.about-flow span { padding: 9px 14px; color: #b9cada; background: rgba(255,255,255,.025); border: 1px solid var(--line); border-radius: 8px; font-size: 10px; }.about-flow i { color: var(--mint); font-style: normal; }
footer { width: min(1180px, calc(100% - 40px)); min-height: 100px; margin: auto; display: flex; align-items: center; gap: 30px; color: var(--muted-2); font-size: 10px; }.footer-brand { margin-right: auto; font-size: 14px; }.footer-brand .brand-mark { width: 28px; height: 28px; }.footer-brand svg { width: 19px; }
.toast { position: fixed; z-index: 99; right: 20px; bottom: 20px; max-width: min(380px, calc(100% - 40px)); padding: 11px 14px; color: var(--text); background: #122438; border: 1px solid var(--line-strong); border-radius: 9px; box-shadow: 0 12px 35px rgba(0,0,0,.35); font-size: 11px; opacity: 0; transform: translateY(15px); pointer-events: none; transition: .2s; }.toast.show { opacity: 1; transform: translateY(0); }.toast.error { border-color: rgba(255,111,125,.35); }
.not-found { min-height: 100vh; display: grid; place-items: center; padding: 24px; text-align: center; }
.not-found-kicker { justify-content: center; }
.not-found-code { margin: 0 0 12px; font-size: clamp(42px, 8vw, 76px); line-height: 1; }
.not-found-copy { margin: 0 0 24px; color: var(--muted); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }.hero-visual { display: none; }.hero-copy { padding: 75px 0; }.hero h1 { max-width: 660px; }
  .tool-shell { grid-template-columns: 1fr; }.tool-nav { display: flex; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--line); scrollbar-width: thin; }.tool-tab { flex: 0 0 auto; width: auto; padding: 0 13px; }.tool-tab.active { box-shadow: inset 0 -3px var(--mint); }
  .query-form { flex-wrap: wrap; }.query-form .field-grow { flex: 1 1 260px; }.form-actions { align-self: flex-end; }
  .score-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 620px) {
  .site-header, .hero, .tool-shell, .about, footer { width: min(100% - 24px, 1180px); }.site-header { height: 68px; }.header-meta > span:not(.live-dot) { display: none; }.header-meta a { margin-left: 4px; }
  .hero { min-height: auto; }.hero-copy { padding: 65px 0 58px; }.hero h1 { font-size: 50px; letter-spacing: -2.8px; }.hero-lead { font-size: 14px; }.hero-stats div { min-width: 0; flex: 1; margin-right: 14px; padding-right: 14px; }
  .tool-shell { margin-bottom: 60px; border-radius: 16px; }.tool-panel { padding: 26px 15px 24px; }.panel-heading { min-height: 65px; }.panel-heading .privacy-pill { display: none; }
  .query-form, .stack-form { padding: 13px; }.query-form .field, .query-form .field-grow { flex: 1 1 100%; }.form-actions { width: 100%; padding-top: 4px; }.form-actions .btn { flex: 1; }
  .all-grid { grid-template-columns: 1fr; }.records-table { min-width: 570px; }.result-head { align-items: flex-start; flex-direction: column; }.prop-summary { grid-template-columns: 1fr; justify-items: center; text-align: center; }.resolver-row { grid-template-columns: 100px 1fr; }.resolver-time { display: none; }.score-grid, .analysis-grid { grid-template-columns: 1fr; }.check-row { grid-template-columns: 26px 100px 1fr; }.about { grid-template-columns: 1fr; gap: 15px; }.about-flow { margin-top: 15px; flex-wrap: wrap; }.about-flow i { transform: rotate(90deg); } footer { flex-wrap: wrap; padding: 25px 0; gap: 12px; }.footer-brand { width: 100%; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; } }
