@font-face {
  font-family: "Jost Nexarq";
  src: url("/fonts/jost-nexarq.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --page: #f2f2e9;
  --paper: #fbfbf5;
  --surface: #ffffff;
  --ink: #11130f;
  --muted: #65675f;
  --quiet: #989b91;
  --line: #d9dbd1;
  --blue: #1958ff;
  --blue-deep: #0d3fd4;
  --orange: #ff5c35;
  --green: #0e9f6e;
  --cyan: #5de1e6;
  --lime: #dfff65;
  --shadow: 0 30px 80px rgba(18, 30, 50, 0.25), 0 5px 18px rgba(10, 18, 32, 0.14);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--page);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--page);
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

.page-stage {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(20px, 4vw, 54px);
  background: linear-gradient(90deg, var(--blue) 0 31%, var(--page) 31% 100%);
}

.stage-grid {
  position: absolute;
  inset: 0 auto 0 0;
  width: 31%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.backdrop-mark {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  font-family: "Arial Narrow", "Avenir Next Condensed", sans-serif;
  font-weight: 900;
  line-height: 0.8;
}

.backdrop-mark--left {
  top: -20px;
  left: -8px;
  color: rgba(255, 255, 255, 0.13);
  font-size: clamp(220px, 29vw, 430px);
  letter-spacing: -0.18em;
}

.backdrop-mark--right {
  right: -50px;
  bottom: 10px;
  color: rgba(17, 19, 15, 0.04);
  font-size: clamp(130px, 17vw, 250px);
  letter-spacing: -0.1em;
}

.app-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  min-height: calc(100vh - clamp(40px, 8vw, 108px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 15, 0.2);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  background: var(--blue);
  color: white;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-name {
  text-transform: lowercase;
}

.brand-name span {
  color: var(--blue);
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-nav a {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.topbar-nav a:hover {
  color: var(--blue);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.my-ip-top-button {
  display: inline-flex;
  height: 34px;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 0 11px;
  color: var(--blue);
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
  transition: border-color 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}

.my-ip-top-button:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 12px rgba(25, 88, 255, 0.1);
  transform: translateY(-1px);
}

.my-ip-top-button svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.live-indicator,
.freshness {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.live-indicator span,
.freshness span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(14, 159, 110, 0.12);
}

.ghost-button {
  border-bottom: 1px solid var(--ink);
  background: transparent;
  padding: 2px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.hero {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 70px 28px 50px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  overflow-wrap: normal;
  font-family: "Arial Narrow", "Avenir Next Condensed", Impact, sans-serif;
  font-size: clamp(55px, 7.2vw, 88px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.88;
  hyphens: none;
  text-wrap: balance;
  word-break: normal;
}

.hero h1 em {
  position: relative;
  z-index: 0;
  color: var(--blue);
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  position: absolute;
  z-index: -1;
  right: -9px;
  bottom: 2px;
  left: -5px;
  height: 19px;
  background: var(--lime);
  content: "";
  transform: rotate(-1.2deg);
}

.hero-copy {
  max-width: 590px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.probe {
  display: flex;
  width: min(100%, 720px);
  gap: 6px;
  margin-top: 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(30, 43, 75, 0.11), 0 2px 6px rgba(30, 43, 75, 0.08);
  padding: 6px;
}

.probe-field {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  gap: 10px;
  padding-left: 15px;
}

.probe-prompt {
  flex: 0 0 auto;
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  font-weight: 700;
}

.probe input {
  min-width: 0;
  height: 48px;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.probe input::placeholder {
  color: var(--quiet);
  font-weight: 500;
}

.clear-button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f0f1eb;
  color: var(--muted);
  cursor: pointer;
  font-size: 18px;
}

.trace-button {
  display: inline-flex;
  height: 48px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 8px;
  background: var(--blue);
  padding: 0 19px;
  color: white;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: background 150ms ease, transform 150ms ease;
}

.trace-button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 150ms ease;
}

.trace-button:hover {
  background: var(--blue-deep);
}

.trace-button:hover svg {
  transform: translateX(3px);
}

.trace-button:active {
  transform: scale(0.98);
}

.trace-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.trace-button.is-loading svg {
  animation: pulse-arrow 900ms ease-in-out infinite;
}

.turnstile-inline {
  display: grid;
  justify-items: center;
  max-height: 0;
  overflow: hidden;
  gap: 8px;
  opacity: 0;
  transition: max-height 200ms ease, opacity 200ms ease, margin-top 200ms ease;
}

.turnstile-inline.is-visible {
  max-height: 180px;
  margin-top: 14px;
  opacity: 1;
}

.turnstile-inline .turnstile-message {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.lookup-error {
  display: flex;
  width: min(100%, 720px);
  align-items: flex-start;
  gap: 12px;
  margin-top: 12px;
  border: 1px solid #e4a39b;
  border-radius: 10px;
  background: #fff1ee;
  padding: 14px 16px;
  color: #85251c;
  text-align: left;
}

.lookup-error[hidden] {
  display: none;
}

.lookup-error-mark {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #c43b2d;
  color: white;
  font-size: 14px;
  font-weight: 900;
}

.lookup-error strong {
  display: block;
  font-size: 14px;
}

.lookup-error p {
  margin: 3px 0 0;
  color: #974238;
  font-size: 12px;
  line-height: 1.45;
}

.lookup-progress {
  display: grid;
  width: min(100%, 720px);
  min-height: 190px;
  grid-template-columns: 250px minmax(0, 1fr);
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid #262a22;
  border-radius: 12px;
  background: var(--ink);
  box-shadow: 0 22px 55px rgba(17, 19, 15, 0.24);
  color: white;
  text-align: left;
}

.lookup-progress[hidden] {
  display: none;
}

.lookup-globe {
  position: relative;
  display: grid;
  min-height: 190px;
  place-items: center;
  overflow: hidden;
  background: var(--blue);
}

.lookup-globe svg {
  width: 205px;
  fill: none;
}

.lookup-globe-shell,
.lookup-globe-grid {
  stroke: rgba(255, 255, 255, 0.34);
  stroke-width: 1;
}

.lookup-route {
  stroke: var(--lime);
  stroke-dasharray: 5 7;
  stroke-linecap: round;
  stroke-width: 2;
  animation: lookup-route-flow 850ms linear infinite;
}

.lookup-route-b {
  animation-delay: -420ms;
}

.lookup-probe {
  fill: var(--lime);
  stroke: var(--blue);
  stroke-width: 2;
  transform-box: fill-box;
  transform-origin: center;
  animation: lookup-probe-pulse 1.4s ease-in-out infinite;
}

.lookup-probe-b,
.lookup-probe-d {
  animation-delay: -700ms;
}

.lookup-scan {
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 22px;
  width: 1px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.7);
  animation: lookup-scan 2.4s ease-in-out infinite;
}

.lookup-globe small {
  position: absolute;
  right: 13px;
  bottom: 11px;
  color: white;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.lookup-progress-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 25px 28px;
}

.lookup-progress-kicker {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  color: #aeb5a5;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lookup-progress-kicker i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(223, 255, 101, 0.12);
  animation: lookup-live-pulse 1.3s ease-in-out infinite;
}

.lookup-progress-kicker b {
  min-width: 0;
  overflow: hidden;
  color: white;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lookup-progress-copy > strong {
  margin-top: 14px;
  font-size: clamp(19px, 2.4vw, 25px);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.lookup-progress-copy > p {
  min-height: 31px;
  margin: 7px 0 18px;
  color: #aeb5a5;
  font-size: 11px;
  line-height: 1.45;
}

.lookup-stage-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 5px;
}

.lookup-stage-track span {
  border-top: 2px solid #353b31;
  padding-top: 6px;
  color: #71786b;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
  font-weight: 700;
  transition: border-color 180ms ease, color 180ms ease;
}

.lookup-stage-track span.is-passed {
  border-color: #71812e;
  color: #aab667;
}

.lookup-stage-track span.is-active {
  border-color: var(--lime);
  color: var(--lime);
}

.quick-targets {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--quiet);
  font-size: 11px;
}

.quick-targets button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  padding: 5px 9px;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 140ms ease, color 140ms ease, transform 140ms ease;
}

.quick-targets button:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}

.my-ip-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1.4fr) minmax(0, auto) 1px minmax(0, 1fr) auto;
  min-height: 60px;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--line);
  background: #f2f3ed;
  padding: 10px 28px;
  color: var(--muted);
  font-size: 12px;
}

.my-ip-strip strong {
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
}

.my-ip-strip > [data-my-location],
.my-ip-strip > [data-my-provider] {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.my-ip-addresses {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.my-ip-addresses strong,
.my-ip-addresses small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.my-ip-addresses small {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.my-ip-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

.info-button {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid #c8cbc0;
  border-radius: 50%;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.info-button:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 92, 53, 0.13);
}

.strip-divider {
  align-self: stretch;
  background: var(--line);
}

.strip-ip-button {
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.results {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.result-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.target-identity,
.result-actions,
.provider-lockup {
  display: flex;
  align-items: center;
}

.target-identity {
  gap: 14px;
}

.identity-logo,
.provider-logo {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.identity-logo {
  width: 46px;
  height: 46px;
  border-radius: 11px;
}

.identity-logo img,
.provider-logo img,
.node-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: white;
}

.target-identity p,
.section-title p {
  margin: 0 0 3px;
  color: var(--quiet);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.target-identity h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.045em;
}

.results.is-ip-result .result-heading {
  background: #f5f8f8;
}

.results.is-ip-result .identity-logo {
  background: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.results.is-ip-result .target-identity {
  min-width: 0;
}

.results.is-ip-result .target-identity > div:last-child {
  min-width: 0;
}

.results.is-ip-result .target-identity h2 {
  overflow: hidden;
  max-width: min(64vw, 610px);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 15px;
  letter-spacing: -0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.result-actions {
  gap: 15px;
}

.markdown-export-button,
.section-markdown-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 9px 11px;
  color: var(--muted);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
}

.markdown-export-button:hover,
.section-markdown-button:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.markdown-export-button span,
.section-markdown-button span {
  border-radius: 4px;
  background: var(--ink);
  padding: 2px 4px;
  color: white;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
}

.icon-button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
}

.icon-button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.result-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
}

.result-nav {
  position: relative;
  border-right: 1px solid var(--line);
  background: #f6f7f1;
  padding: 18px 12px;
}

.nav-item {
  display: grid;
  width: 100%;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 7px;
  border-radius: 8px;
  background: transparent;
  padding: 10px;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  text-align: left;
}

.nav-item:hover,
.nav-item.is-active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 1px 4px rgba(17, 19, 15, 0.08);
}

.nav-item.is-active {
  color: var(--blue);
  font-weight: 700;
}

.nav-glyph {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
}

.nav-item b {
  border-radius: 999px;
  background: #e9eae3;
  padding: 2px 6px;
  color: var(--muted);
  font-size: 9px;
}

.coverage-card {
  position: sticky;
  top: 20px;
  display: flex;
  margin: 38px 5px 5px;
  flex-direction: column;
  align-items: center;
  border: 1px solid #cfd2c4;
  border-radius: 10px;
  background: var(--paper);
  padding: 18px 12px;
  text-align: center;
}

.coverage-card svg {
  width: 48px;
  margin-bottom: 8px;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.coverage-card strong {
  font-size: 12px;
}

.coverage-card span {
  margin-top: 3px;
  color: var(--quiet);
  font-size: 10px;
  line-height: 1.35;
}

.result-content {
  min-width: 0;
}

.trace-section {
  padding: 30px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 18px;
}

.section-copy-row {
  display: flex;
  grid-column: 1 / -1;
  justify-content: flex-end;
  margin: -12px 0 10px;
}

.route-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 152px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, #fafbf7, #f3f5ef);
  padding: 24px 16px;
  overflow: hidden;
}

.route-map::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#cfd2c7 0.8px, transparent 0.8px);
  background-size: 16px 16px;
  content: "";
  opacity: 0.6;
}

.route-line {
  position: absolute;
  z-index: 1;
  top: 52px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  overflow: hidden;
  background: #bcc1b6;
}

.route-line span {
  display: block;
  width: 28%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  animation: scan-line 2.4s ease-in-out infinite;
}

.route-node {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  padding: 0 7px;
  text-align: center;
}

.node-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #cdd0c6;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: 0 4px 10px rgba(17, 19, 15, 0.08);
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
}

.route-node--dns .node-icon {
  background: var(--blue);
  color: white;
}

.route-node--place .node-icon {
  background: var(--lime);
  color: var(--ink);
  font-size: 20px;
}

.route-node small {
  margin-top: 11px;
  color: var(--quiet);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.route-node strong {
  width: 100%;
  margin-top: 2px;
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.proxy-notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  margin-top: 10px;
  border: 1px solid #f0a44a;
  border-radius: 10px;
  background: #fff8e9;
  padding: 13px 14px;
}

.proxy-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 9px;
  background: #f48120;
  color: white;
}

.proxy-mark svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.proxy-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: white;
}

.proxy-copy span {
  color: #a24d08;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proxy-copy strong {
  display: block;
  margin-top: 2px;
  font-size: 12px;
}

.proxy-copy p {
  margin: 3px 0 0;
  color: #79614d;
  font-size: 9px;
  line-height: 1.4;
}

.proxy-addresses {
  display: flex;
  max-width: 220px;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
}

.proxy-addresses span,
.answer-provider {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #ebc28e;
  border-radius: 999px;
  background: white;
  padding: 4px 7px;
  color: #8b4a12;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  font-weight: 700;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.stat-card {
  min-width: 0;
  min-height: 116px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  padding: 14px;
}

.stat-card--accent {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
}

.stat-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--quiet);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stat-label button {
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
}

.stat-card strong {
  display: block;
  margin-top: 18px;
  overflow: hidden;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stat-card small {
  display: block;
  margin-top: 6px;
  overflow: hidden;
  color: var(--quiet);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stat-card--accent .stat-label,
.stat-card--accent small {
  color: rgba(255, 255, 255, 0.7);
}

.status-tag {
  border-radius: 999px;
  background: #e8f7f0;
  padding: 3px 6px;
  color: var(--green);
}

.status-orb {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(223, 255, 101, 0.16);
}

.ip-passport {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid #163bc7;
  border-radius: 13px;
  background: linear-gradient(135deg, #0a2b95 0%, #164ee4 56%, #0c86a3 145%);
  padding: 22px;
  color: white;
}

.ip-passport::after {
  position: absolute;
  right: -90px;
  bottom: -155px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(93, 225, 230, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(93, 225, 230, 0.04), 0 0 0 110px rgba(93, 225, 230, 0.025);
  content: "";
}

.ip-passport-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(135deg, black, transparent 82%);
  pointer-events: none;
}

.ip-passport-head,
.ip-address-lockup,
.ip-route-line,
.ip-passport-facts {
  position: relative;
  z-index: 1;
}

.ip-passport-head {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ip-version-pill,
.ip-scope-pill {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 8px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.ip-scope-pill {
  border-color: rgba(93, 225, 230, 0.42);
  color: #c7fcff;
}

.ip-address-lockup {
  margin-top: 33px;
}

.ip-address-lockup > span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ip-address-value {
  display: flex;
  max-width: 760px;
  margin-top: 8px;
  flex-wrap: wrap;
  align-items: center;
  gap: 1px 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(20px, 3.1vw, 34px);
  font-weight: 750;
  letter-spacing: -0.065em;
  line-height: 1.1;
}

.ip-address-value span {
  display: inline-flex;
  align-items: center;
}

.ip-address-value .ip-address-separator {
  margin: 0 2px;
  color: var(--cyan);
  opacity: 0.72;
}

.ip-address-lockup button {
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.09);
  padding: 7px 9px;
  color: white;
  cursor: pointer;
  font-size: 8px;
  font-weight: 700;
}

.ip-address-lockup button:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.ip-route-line {
  display: grid;
  width: min(380px, 65%);
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  margin-top: 26px;
}

.ip-route-line span {
  height: 1px;
  background: rgba(255, 255, 255, 0.26);
}

.ip-route-line i {
  width: 7px;
  height: 7px;
  border: 1px solid white;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(93, 225, 230, 0.12);
}

.ip-passport-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 24px 0 0;
}

.ip-passport-facts div {
  min-width: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
}

.ip-passport-facts dt {
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  text-transform: uppercase;
}

.ip-passport-facts dd {
  margin: 5px 0 0;
  overflow: hidden;
  font-size: 9px;
  font-weight: 650;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ip-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 9px;
}

.ip-summary-grid article {
  min-width: 0;
  min-height: 105px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fafbf7;
  padding: 14px;
}

.ip-summary-grid .ip-summary-grid__location {
  grid-column: 1 / -1;
  min-height: 88px;
  border-color: #b9dee0;
  background: #f2fbfb;
}

.ip-summary-grid article > span {
  color: var(--quiet);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ip-summary-grid strong,
.ip-summary-grid small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ip-summary-grid strong {
  margin-top: 17px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 15px;
}

.ip-summary-grid small {
  margin-top: 5px;
  color: var(--quiet);
  font-size: 9px;
}

.results.is-ip-result #network {
  background: #f7f9f7;
}

.ip-registry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.ip-registry-grid div {
  min-width: 0;
  min-height: 88px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px;
}

.ip-registry-grid div:nth-child(3n) {
  border-right: 0;
}

.ip-registry-grid dt {
  color: var(--quiet);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.ip-registry-grid dd {
  margin: 10px 0 0;
  overflow-wrap: anywhere;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.35;
}

.ip-registry-note {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  margin-top: 9px;
  border: 1px solid #c8dfe1;
  border-radius: 10px;
  background: #f2fbfb;
  padding: 13px 14px;
}

.ip-registry-note span {
  color: #116e74;
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}

.ip-registry-note p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.4;
}

.ip-signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.ip-signal-grid article {
  display: grid;
  min-width: 0;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 11px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 15px;
}

.ip-signal-grid article:nth-child(2n) {
  border-right: 0;
}

.ip-signal-grid article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.ip-signal-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  background: #edf0ea;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 800;
}

.ip-signal-grid article.is-pass .ip-signal-icon {
  background: #e4f7ef;
  color: var(--green);
}

.ip-signal-grid article.is-warn .ip-signal-icon {
  background: #fff1eb;
  color: #b54125;
}

.ip-signal-grid strong,
.ip-signal-grid small {
  display: block;
}

.ip-signal-grid strong {
  font-size: 11px;
}

.ip-signal-grid small {
  margin-top: 3px;
  overflow-wrap: anywhere;
  color: var(--quiet);
  font-size: 9px;
  line-height: 1.35;
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.section-title h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.045em;
}

.record-filters {
  display: flex;
  max-width: 60%;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
}

.record-filters button,
.source-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f5f6f0;
  padding: 5px 8px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.source-pill--link {
  color: inherit;
  text-decoration: none;
}

.source-pill--link:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.record-filters button {
  cursor: pointer;
}

.record-filters button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.dns-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.dns-table {
  width: 100%;
  border-collapse: collapse;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  text-align: left;
}

.dns-table th {
  background: #f2f3ed;
  color: var(--quiet);
  font-family: "Avenir Next", Avenir, sans-serif;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dns-table th,
.dns-table td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
}

.subdomain-summary,
.evidence-note {
  color: var(--quiet);
  font-size: 10px;
  line-height: 1.55;
}

.subdomain-summary {
  margin: -7px 0 14px;
}

.subdomain-viewbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: -2px 0 10px;
}

.subdomain-viewbar[hidden] {
  display: none;
}

.subdomain-view-tabs {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #f2f3ed;
}

.subdomain-view-tabs button,
.subdomain-evidence-toggle {
  min-height: 31px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-size: 9px;
  font-weight: 800;
}

.subdomain-view-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  padding: 0 10px;
  color: var(--quiet);
}

.subdomain-view-tabs button b {
  min-width: 20px;
  border-radius: 999px;
  background: #dfe2d7;
  padding: 3px 6px;
  color: var(--muted);
  font-size: 8px;
}

.subdomain-view-tabs button.is-active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 1px 4px rgba(12, 13, 10, 0.12);
}

.subdomain-view-tabs button.is-active b {
  background: var(--blue);
  color: white;
}

.subdomain-evidence-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0 8px 0 6px;
  color: var(--muted);
}

.subdomain-evidence-toggle > span {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 5px;
  background: var(--ink);
  color: white;
  font-size: 7px;
}

.subdomain-evidence-toggle b {
  color: var(--quiet);
  font-size: 8px;
  font-weight: 600;
}

.subdomain-evidence-toggle[aria-pressed="true"] {
  border-color: var(--blue);
  color: var(--blue);
}

.subdomain-evidence-toggle[aria-pressed="true"] > span {
  background: var(--blue);
}

.subdomain-empty-state {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  border: 1px solid #ddd8c7;
  border-radius: 10px;
  background: #f7f4ea;
  padding: 18px;
}

.subdomain-empty-state[hidden] {
  display: none;
}

.subdomain-empty-state > span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 7px;
  background: var(--ink);
  color: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 800;
}

.subdomain-empty-state strong {
  display: block;
  font-size: 13px;
}

.subdomain-empty-state p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.subdomain-empty-state button {
  flex: 0 0 auto;
  margin-left: auto;
  border: 1px solid var(--ink);
  border-radius: 7px;
  background: var(--ink);
  padding: 8px 10px;
  color: white;
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
}

.subdomain-empty-state button:hover:not(:disabled) {
  background: var(--blue);
}

.subdomain-empty-state button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.evidence-note {
  margin: 12px 2px 0;
}

.subdomain-answer-list {
  display: grid;
  min-width: 0;
}

.subdomain-answer-line {
  display: grid;
  min-width: 0;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  border-bottom: 1px solid #e7e8e0;
}

.subdomain-answer-line:first-child {
  padding-top: 0;
}

.subdomain-answer-line:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.subdomain-answer-type {
  display: inline-grid;
  min-width: 38px;
  height: 22px;
  place-items: center;
  justify-self: start;
  border: 1px solid #cbd6ff;
  border-radius: 5px;
  background: #eef3ff;
  color: var(--blue);
  font-family: "Avenir Next", Avenir, sans-serif;
  font-size: 8px;
  font-weight: 900;
}

.subdomain-answer-destination {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 8px;
}

.subdomain-answer-destination strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;
}

.subdomain-answer-line .answer-provider {
  padding: 2px 6px;
  font-size: 7px;
}

.subdomain-answer-line .answer-provider img {
  width: 11px;
  height: 11px;
}

.subdomain-answer-ttl {
  min-width: 60px;
  color: var(--quiet);
  font-size: 8px;
  text-align: right;
  white-space: nowrap;
}

.subdomain-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  font-family: "Avenir Next", Avenir, sans-serif;
  font-size: 9px;
  font-weight: 700;
}

.subdomain-status::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.subdomain-status.is-active {
  color: #17643a;
}

.subdomain-status.is-retired {
  color: #7a6040;
}

.dns-table tr:last-child td {
  border-bottom: 0;
}

.dns-table td:nth-child(1) {
  width: 62px;
  color: var(--blue);
  font-weight: 800;
}

.dns-table td:nth-child(2) {
  max-width: 150px;
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dns-table td:nth-child(3) {
  min-width: 260px;
  overflow-wrap: anywhere;
}

.subdomain-table {
  table-layout: fixed;
}

.subdomain-table th:nth-child(1) {
  width: 29%;
}

.subdomain-table th:nth-child(3) {
  width: 104px;
}

.subdomain-table th:nth-child(4) {
  width: 220px;
}

.subdomain-table td {
  padding: 13px 14px;
  vertical-align: middle;
}

.dns-table.subdomain-table td.subdomain-host {
  width: 29%;
  min-width: 0;
  max-width: none;
  overflow: visible;
  color: var(--ink);
  text-overflow: clip;
  white-space: normal;
}

.subdomain-host-lockup {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  align-items: start;
  gap: 9px;
}

.subdomain-host-lockup strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 9px;
  line-height: 1.4;
}

.subdomain-host-lockup small {
  display: block;
  margin-top: 4px;
  color: var(--quiet);
  font-family: "Avenir Next", Avenir, sans-serif;
  font-size: 7px;
  line-height: 1.35;
}

.subdomain-node-mark {
  position: relative;
  width: 10px;
  height: 10px;
  margin-top: 2px;
  border: 1px solid #bfcaff;
  border-radius: 50%;
  background: #f2f5ff;
}

.subdomain-node-mark::after {
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.dns-table.subdomain-table td.subdomain-answer {
  min-width: 0;
  overflow-wrap: anywhere;
}

.subdomain-table tr.is-ct-only .subdomain-node-mark {
  border-color: #d9d3c6;
  background: #f5f1e8;
}

.subdomain-table tr.is-ct-only .subdomain-node-mark::after {
  background: #8a7659;
}

.subdomain-table tr.is-ct-only .subdomain-answer-destination strong {
  color: var(--quiet);
  font-family: "Avenir Next", Avenir, sans-serif;
  font-weight: 500;
}

.dns-table.subdomain-table td.subdomain-status-cell {
  width: 104px;
  min-width: 0;
  max-width: none;
}

.subdomain-certificate {
  min-width: 220px;
}

.subdomain-certificate[hidden] {
  display: none;
}

.subdomain-certificate strong,
.subdomain-certificate small {
  display: block;
}

.subdomain-certificate strong {
  color: var(--ink);
  font-size: 10px;
}

.subdomain-certificate small {
  margin-top: 4px;
  overflow-wrap: anywhere;
  color: var(--quiet);
  font-size: 8px;
  line-height: 1.45;
}

.table-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 2px 2px;
  color: var(--quiet);
  font-size: 9px;
}

.table-pagination[hidden] {
  display: none;
}

.table-pagination > div,
.table-pagination label,
.table-page-list {
  display: flex;
  align-items: center;
  gap: 7px;
}

.table-pagination select,
.table-pagination button {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  padding: 6px 8px;
  color: var(--muted);
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
}

.table-pagination button:hover:not(:disabled),
.table-page-list button.is-active {
  border-color: var(--blue);
  color: var(--blue);
}

.table-page-list button.is-active {
  background: #edf2ff;
}

.table-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.dns-answer-cell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}

.answer-provider {
  border-color: #f1c58f;
  background: #fff8e9;
  color: #9a500e;
  font-family: "Avenir Next", Avenir, sans-serif;
  white-space: nowrap;
}

.answer-provider img {
  width: 13px;
  height: 13px;
  object-fit: contain;
}

.answer-provider--service {
  border-color: #c7d7ff;
  background: #f2f6ff;
  color: #1747b8;
}

.empty-state {
  padding: 32px;
  color: var(--quiet);
  font-size: 12px;
  text-align: center;
}

.global-dns-section {
  background: #f7f8f2;
}

.global-dns-controls {
  display: grid;
  grid-template-columns: 132px auto minmax(220px, 1fr);
  align-items: end;
  gap: 10px;
  margin-bottom: 10px;
}

.global-dns-controls label > span {
  display: block;
  margin-bottom: 6px;
  color: var(--quiet);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.global-dns-controls select {
  width: 100%;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  appearance: none;
  background: var(--surface) linear-gradient(45deg, transparent 50%, var(--muted) 50%) calc(100% - 14px) 17px / 5px 5px no-repeat;
  padding: 0 30px 0 12px;
  color: var(--ink);
  cursor: pointer;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 800;
}

.global-dns-controls select:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.global-dns-run {
  display: inline-flex;
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 8px;
  background: var(--blue);
  padding: 0 15px;
  color: white;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: background 150ms ease, transform 150ms ease;
}

.global-dns-run:hover {
  background: var(--blue-deep);
  transform: translateY(-1px);
}

.global-dns-run:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.global-dns-run svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.global-dns-run.is-loading svg {
  animation: pulse-arrow 900ms ease-in-out infinite;
}

.global-dns-controls > p {
  margin: 0 0 4px;
  color: var(--quiet);
  font-size: 9px;
  line-height: 1.45;
}

.global-dns-board {
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 12px;
  background: var(--surface);
}

.global-map-shell {
  background: var(--ink);
  color: white;
}

.global-map-summary {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px 12px;
}

.global-map-summary span,
.global-map-summary strong {
  display: block;
}

.global-map-summary div > span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.global-map-summary div > strong {
  margin-top: 4px;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.global-consistency {
  border: 1px solid rgba(223, 255, 101, 0.35);
  border-radius: 999px;
  background: rgba(223, 255, 101, 0.1);
  padding: 6px 9px;
  color: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  white-space: nowrap;
}

.global-consistency.is-mixed {
  border-color: rgba(255, 92, 53, 0.4);
  background: rgba(255, 92, 53, 0.12);
  color: #ff9a7f;
}

.global-consistency.is-idle {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.56);
}

.global-map {
  position: relative;
  min-height: 320px;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  isolation: isolate;
  background:
    radial-gradient(circle at 72% 42%, rgba(25, 88, 255, 0.2), transparent 34%),
    radial-gradient(circle at 22% 58%, rgba(223, 255, 101, 0.07), transparent 31%),
    #0d100d;
}

.global-map::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.46);
  content: "";
  pointer-events: none;
}

.global-map-art,
.global-map-points {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.global-map-art {
  z-index: 0;
  display: block;
  object-fit: fill;
  opacity: 0.92;
  user-select: none;
}

.global-map-chrome {
  position: absolute;
  z-index: 5;
  top: 11px;
  right: 13px;
  left: 13px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.42);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.11em;
  pointer-events: none;
  text-transform: uppercase;
}

.global-map.is-loading .global-map-art {
  opacity: 0.72;
}

.global-map.is-loading::before {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: -20%;
  width: 18%;
  background: linear-gradient(90deg, transparent, rgba(223, 255, 101, 0.13), transparent);
  content: "";
  animation: global-scan 1.7s ease-in-out infinite;
}

.global-map-point {
  --probe-accent: var(--lime);
  --probe-glow: rgba(223, 255, 101, 0.16);
  position: absolute;
  z-index: 4;
  left: var(--point-x);
  top: var(--point-y);
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 2px solid var(--probe-accent);
  border-radius: 50%;
  background: #f7f8f2;
  box-shadow: 0 0 0 4px var(--probe-glow), 0 3px 14px rgba(0, 0, 0, 0.46), 0 0 22px var(--probe-glow);
  padding: 0;
  color: #151812;
  cursor: pointer;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  transform: translate(-50%, -50%);
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.global-map-point::before {
  position: absolute;
  inset: -6px;
  border: 1px solid currentColor;
  border-radius: inherit;
  color: var(--probe-accent);
  content: "";
  opacity: 0.24;
  pointer-events: none;
}

.global-map-point::after {
  position: absolute;
  bottom: 28px;
  left: 50%;
  width: max-content;
  min-width: 160px;
  max-width: min(280px, calc(100vw - 40px));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(17, 19, 15, 0.94);
  padding: 6px 8px;
  color: white;
  content: attr(data-label);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 3px);
  transition: opacity 120ms ease, transform 120ms ease;
  line-height: 1.45;
  overflow-wrap: anywhere;
  text-align: left;
  white-space: pre-wrap;
}

.global-map-point:hover::after,
.global-map-point:focus-visible::after,
.global-map-point.is-selected::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.global-map-point.is-west::after {
  left: 0;
  transform: translate(0, 3px);
}

.global-map-point.is-east::after {
  right: 0;
  left: auto;
  transform: translate(0, 3px);
}

.global-map-point.is-west:hover::after,
.global-map-point.is-west:focus-visible::after,
.global-map-point.is-west.is-selected::after,
.global-map-point.is-east:hover::after,
.global-map-point.is-east:focus-visible::after,
.global-map-point.is-east.is-selected::after {
  transform: translate(0, 0);
}

.global-map-point:hover,
.global-map-point:focus-visible,
.global-map-point.is-selected {
  z-index: 6;
  box-shadow: 0 0 0 6px var(--probe-glow), 0 5px 18px rgba(0, 0, 0, 0.58), 0 0 26px var(--probe-glow);
  outline: none;
  transform: translate(-50%, -50%) scale(1.12);
}

.global-map-point.is-different {
  --probe-accent: var(--orange);
  --probe-glow: rgba(255, 92, 53, 0.2);
}

.global-map-point.is-failed {
  --probe-accent: #82867b;
  --probe-glow: rgba(130, 134, 123, 0.18);
}

.global-map-idle {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 178px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(17, 19, 15, 0.82);
  padding: 15px;
  backdrop-filter: blur(10px);
  text-align: center;
  transform: translate(-50%, -50%);
}

.global-map-idle span,
.global-map-idle strong,
.global-map-idle small {
  display: block;
}

.global-map-idle span {
  color: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 30px;
  font-weight: 800;
}

.global-map-idle strong {
  margin-top: 2px;
  font-size: 11px;
}

.global-map-idle small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  line-height: 1.4;
}

.global-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 11px 18px 14px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 8px;
}

.global-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.global-map-legend a {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
}

.global-map-legend a:hover {
  color: white;
}

.global-map-legend i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #82867b;
}

.global-map-legend i.is-match {
  background: var(--lime);
}

.global-map-legend i.is-different {
  background: var(--orange);
}

.global-probe-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--surface);
}

.global-probe-card {
  min-width: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
}

.global-probe-card:nth-child(2n) {
  border-right: 0;
}

.global-probe-card:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.global-probe-card-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
}

.global-probe-flag {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid #d3dfaa;
  background: #f7faea;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 15px;
}

.global-probe-card.is-different .global-probe-flag {
  border-color: #e8b3a5;
  background: #fff0eb;
}

.global-probe-card.is-failed .global-probe-flag {
  border-color: #d5d7cf;
  background: #eff0ec;
}

.global-probe-card-heading strong,
.global-probe-card-heading small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.global-probe-card-heading strong {
  font-size: 11px;
}

.global-probe-card-heading small {
  margin-top: 2px;
  color: var(--quiet);
  font-size: 8px;
}

.global-probe-network {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
}

.global-probe-network-logo {
  display: grid;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 15, 0.12);
  border-radius: 5px;
  background: var(--isp-color);
  color: white;
  font-size: 6px;
  font-weight: 900;
}

.global-probe-network-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: white;
}

.global-probe-network small {
  min-width: 0;
  margin-top: 0;
}

.global-probe-latency {
  border-radius: 999px;
  background: #f0f1eb;
  padding: 4px 6px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
}

.global-probe-answers {
  display: flex;
  margin-top: 11px;
  flex-wrap: wrap;
  gap: 5px;
}

.global-probe-answer {
  max-width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fafbf7;
  padding: 5px 7px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.global-probe-answer i {
  margin-left: 5px;
  color: var(--quiet);
  font-style: normal;
}

.global-probe-empty {
  grid-column: 1 / -1;
  padding: 24px;
  text-align: center;
}

.global-probe-empty strong,
.global-probe-empty span {
  display: block;
}

.global-probe-empty strong {
  font-size: 12px;
}

.global-probe-empty span {
  max-width: 440px;
  margin: 5px auto 0;
  color: var(--quiet);
  font-size: 9px;
  line-height: 1.45;
}

@keyframes global-scan {
  from { transform: translateX(0); }
  to { transform: translateX(680%); }
}

.web-runtime-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.web-runtime-card {
  min-width: 0;
  min-height: 105px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fafbf7;
  padding: 14px;
}

.web-runtime-card--status {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
}

.web-runtime-card > span,
.mail-provider-card span {
  display: block;
  color: var(--quiet);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.web-runtime-card--status > span,
.web-runtime-card--status small {
  color: rgba(255, 255, 255, 0.68);
}

.web-runtime-card strong {
  display: block;
  margin-top: 18px;
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.web-runtime-card small,
.mail-provider-card small {
  display: block;
  margin-top: 5px;
  overflow: hidden;
  color: var(--quiet);
  font-size: 9px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stack-evidence {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.stack-evidence[hidden] {
  display: none;
}

.stack-evidence--empty {
  display: block;
}

.stack-evidence--empty p {
  margin: 0;
  border: 1px dashed var(--line);
  border-radius: 10px;
  padding: 12px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.stack-chip {
  display: grid;
  min-width: 0;
  max-width: 100%;
  gap: 1px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  border-radius: 8px;
  background: var(--surface);
  padding: 8px 11px;
}

.stack-chip strong {
  color: var(--ink);
  font-size: 12px;
  letter-spacing: -0.02em;
}

.stack-chip span {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stack-chip small {
  max-width: 230px;
  overflow: hidden;
  color: var(--quiet);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-evidence {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.platform-card {
  display: grid;
  min-width: 0;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fafbf7;
  padding: 12px;
}

.platform-card .provider-logo {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.platform-card-copy {
  min-width: 0;
}

.platform-card-copy > span {
  color: var(--quiet);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.platform-card-copy > strong {
  display: block;
  margin-top: 2px;
  font-size: 12px;
}

.platform-confidence {
  border-radius: 999px;
  background: #e7f7ef;
  padding: 4px 7px;
  color: #14805a;
  font-size: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.platform-confidence--likely {
  background: #fff3de;
  color: #9a500e;
}

.platform-signals {
  display: flex;
  grid-column: 2 / -1;
  flex-wrap: wrap;
  gap: 4px;
}

.platform-signals span,
.response-facts span {
  max-width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  padding: 4px 7px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-empty {
  grid-column: 1 / -1;
  border: 1px dashed var(--line-strong);
  border-radius: 10px;
  padding: 18px;
  color: var(--quiet);
  font-size: 10px;
  text-align: center;
}

.response-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}

.subsection-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  margin: 24px 0 10px;
}

.subsection-heading span,
.subsection-heading strong {
  display: block;
}

.subsection-heading span {
  color: var(--quiet);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subsection-heading strong {
  margin-top: 2px;
  font-size: 14px;
}

.subsection-heading small {
  color: var(--quiet);
  font-size: 8px;
}

.header-audit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.header-check {
  display: grid;
  min-width: 0;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  padding: 12px;
}

.header-check:nth-child(2n) {
  border-right: 0;
}

.header-check:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.audit-orb,
.mail-check-icon {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #f4e8e4;
  color: #c34b2e;
  font-size: 10px;
  font-weight: 900;
}

.header-check.is-present .audit-orb,
.mail-check-grid article.is-pass .mail-check-icon {
  background: #e6f7ef;
  color: var(--green);
}

.header-check strong,
.header-check small,
.mail-check-grid strong,
.mail-check-grid small {
  display: block;
}

.header-check strong,
.mail-check-grid strong {
  font-size: 10px;
}

.header-check small,
.mail-check-grid small {
  margin-top: 3px;
  overflow: hidden;
  color: var(--quiet);
  font-size: 8px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-check > span:last-child {
  color: var(--quiet);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  text-transform: uppercase;
}

.mail-provider-card {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fafbf7;
  padding: 15px;
}

.mail-provider-card strong {
  display: block;
  margin-top: 2px;
  font-size: 13px;
}

.mail-tool-links {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  margin: 12px 0;
  padding-bottom: 2px;
}

.mail-tool-links a {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  padding: 6px 10px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  text-decoration: none;
}

.mail-tool-links a.is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
}

.mail-audit-summary {
  display: grid;
  grid-template-columns: 104px repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 11px;
  background: var(--ink);
  gap: 1px;
}

.mail-audit-summary > div {
  min-width: 0;
  background: #fafbf7;
  padding: 16px;
}

.mail-audit-summary span,
.mail-audit-summary strong,
.mail-audit-summary small {
  display: block;
}

.mail-audit-summary span {
  color: var(--quiet);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mail-audit-summary strong {
  margin-top: 9px;
  font-size: 18px;
  letter-spacing: -0.035em;
}

.mail-audit-summary small {
  margin-top: 5px;
  color: var(--quiet);
  font-size: 8px;
  line-height: 1.45;
}

.mail-audit-summary .mail-grade {
  display: grid;
  align-content: center;
  justify-items: center;
  background: var(--blue);
  color: white;
  text-align: center;
}

.mail-grade span {
  color: rgba(255, 255, 255, 0.7);
}

.mail-grade strong {
  margin-top: 2px;
  color: white;
  font-size: 46px;
  line-height: 1;
}

.mail-grade.is-grade-a,
.mail-grade.is-grade-b { background: #16855d; }
.mail-grade.is-grade-c,
.mail-grade.is-grade-d { background: #b56a13; }
.mail-grade.is-grade-f { background: #bc3d2a; }

.dkim-selector-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px;
  margin-top: 12px;
}

.dkim-selector-control label {
  display: flex;
  min-width: 0;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: white;
  padding: 0 11px;
}

.dkim-selector-control label span {
  flex: 0 0 auto;
  color: var(--quiet);
  font-size: 8px;
  font-weight: 800;
}

.dkim-selector-control input {
  width: 100%;
  min-width: 80px;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 10px;
  color: var(--ink);
  font: 10px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.dkim-selector-control button {
  border: 0;
  border-radius: 9px;
  background: var(--ink);
  padding: 0 15px;
  color: white;
  font-size: 9px;
  font-weight: 800;
}

.dkim-selector-control > small {
  grid-column: 1 / -1;
  color: var(--quiet);
  font-size: 8px;
}

.mail-check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.mail-check-grid article {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  padding: 13px;
}

.mail-check-grid article.is-pass {
  border-color: #b9dfce;
}

.mail-check-grid article.is-warn {
  border-color: #e5c881;
}

.mail-check-grid article.is-fail {
  border-color: #e4a99d;
}

.mail-check-grid article.is-info {
  border-color: #b8c8e9;
}

.mail-check-grid article.is-warn .mail-check-icon {
  background: #fff3d6;
  color: #9a620d;
}

.mail-check-grid article.is-fail .mail-check-icon {
  background: #f9e2dd;
  color: #b83e2c;
}

.mail-check-grid article.is-info .mail-check-icon {
  background: #e8efff;
  color: var(--blue);
}

.mail-policy-board {
  overflow: hidden;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
}

.mail-policy-row {
  display: grid;
  grid-template-columns: 68px 150px minmax(0, 1fr);
  gap: 12px;
  border-bottom: 1px solid var(--line);
  background: #fafbf7;
  padding: 14px;
}

.mail-policy-row:last-child {
  border-bottom: 0;
}

.mail-policy-row.is-focused {
  box-shadow: inset 4px 0 0 var(--blue);
  background: #f2f5ff;
}

.mail-policy-verdict {
  align-self: start;
  border-radius: 999px;
  background: #eef0eb;
  padding: 5px 7px;
  color: var(--muted);
  font-size: 7px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.mail-policy-row.is-pass .mail-policy-verdict { background: #e6f7ef; color: var(--green); }
.mail-policy-row.is-warning .mail-policy-verdict,
.mail-policy-row.is-missing .mail-policy-verdict { background: #fff3d6; color: #9a620d; }
.mail-policy-row.is-fail .mail-policy-verdict { background: #f9e2dd; color: #b83e2c; }
.mail-policy-row.is-info .mail-policy-verdict { background: #e8efff; color: var(--blue); }

.mail-policy-row > div > strong,
.mail-policy-row > div > small,
.mail-policy-row code {
  display: block;
}

.mail-policy-row > div > strong {
  font-size: 10px;
  line-height: 1.4;
}

.mail-policy-row > div > small {
  margin-top: 4px;
  overflow-wrap: anywhere;
  color: var(--quiet);
  font: 8px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.mail-policy-row code {
  overflow: auto;
  max-height: 88px;
  margin-top: 7px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  padding: 7px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.45;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.mail-policy-row ul {
  margin: 7px 0 0;
  padding-left: 16px;
  color: #7e4b11;
  font-size: 8px;
  line-height: 1.5;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 12px;
}

.split-section .section-title {
  grid-column: 1 / -1;
}

.detail-panel,
.detail-note {
  margin: 10px 0 0;
  font-size: 10px;
  line-height: 1.6;
  color: var(--quiet);
}

.location-panel {
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fafbf7;
  padding: 18px;
}

.provider-lockup {
  gap: 11px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.provider-logo {
  width: 44px;
  height: 44px;
  border-radius: 9px;
}

.provider-lockup span,
.location-panel > div:last-child > span {
  display: block;
  color: var(--quiet);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.provider-lockup strong {
  display: block;
  max-width: 230px;
  margin-top: 2px;
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-list {
  margin: 12px 0 0;
}

.detail-list div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 8px 0;
  font-size: 10px;
}

.detail-list dt {
  color: var(--quiet);
}

.detail-list dd {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  text-align: right;
}

.location-panel {
  display: grid;
  grid-template-columns: 118px 1fr;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.map-grid {
  position: relative;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 14px 14px;
}

.map-ring {
  position: absolute;
  border: 1px solid rgba(223, 255, 101, 0.28);
  border-radius: 50%;
}

.map-ring--one {
  inset: 18px;
}

.map-ring--two {
  inset: 34px;
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 7px rgba(223, 255, 101, 0.18);
  transform: translate(-50%, -50%);
}

.location-panel strong {
  display: block;
  margin-top: 7px;
  font-size: 16px;
  line-height: 1.2;
}

.location-panel small {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  line-height: 1.35;
}

.trace-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 12px;
}

.trace-facts span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 6px;
  color: rgba(255, 255, 255, 0.78);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
  text-transform: none;
}

.registration-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.registration-grid div {
  min-width: 0;
  min-height: 87px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px;
}

.registration-grid div:nth-child(3n) {
  border-right: 0;
}

.registration-grid dt {
  color: var(--quiet);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.registration-grid dd {
  margin: 12px 0 0;
  overflow: hidden;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  text-overflow: ellipsis;
}

.registration-contacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 9px;
}

.registration-contact {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fafbf7;
  padding: 14px;
}

.registration-contact-heading span,
.registration-contact-heading strong,
.registration-contact-heading small {
  display: block;
}

.registration-contact-heading span {
  color: var(--quiet);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.registration-contact-heading strong {
  margin-top: 3px;
  font-size: 13px;
}

.registration-contact-heading small {
  margin-top: 4px;
  color: #9a500e;
  font-size: 8px;
}

.registration-contact dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 12px 0 0;
  border-top: 1px solid var(--line);
}

.registration-contact dl div {
  min-width: 0;
  padding: 10px 10px 8px 0;
}

.registration-contact dt {
  color: var(--quiet);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.registration-contact dd {
  margin: 4px 0 0;
  overflow-wrap: anywhere;
  font-size: 10px;
  line-height: 1.4;
}

.registration-contact-empty {
  grid-column: 1 / -1;
  border: 1px dashed var(--line-strong);
  border-radius: 10px;
  padding: 16px;
  color: var(--quiet);
  font-size: 10px;
  text-align: center;
}

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

.security-grid article {
  display: flex;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 15px;
}

.security-grid .security-card--certificate {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border-color: var(--ink);
  background: var(--ink);
  color: white;
  padding: 18px;
}

.certificate-lock {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  background: var(--lime);
  color: var(--ink);
}

.certificate-lock svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.certificate-copy span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.security-grid .certificate-copy strong {
  margin-top: 2px;
  font-size: 16px;
}

.security-grid .certificate-copy small {
  color: rgba(255, 255, 255, 0.6);
}

.certificate-facts {
  display: flex;
  max-width: 240px;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
}

.certificate-facts span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  padding: 5px 8px;
  color: rgba(255, 255, 255, 0.8);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
}

.certificate-facts button {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  padding: 5px 8px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
}

.certificate-facts button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.check-icon {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #e8f7f0;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.security-grid strong,
.security-grid small {
  display: block;
}

.security-grid strong {
  font-size: 11px;
}

.security-grid small {
  margin-top: 4px;
  color: var(--quiet);
  font-size: 9px;
  line-height: 1.35;
}

.landing-content {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.route-seo:empty {
  display: none;
}

.privacy-ledger {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  align-items: center;
  gap: clamp(44px, 8vw, 108px);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: #f2f3ed;
  padding: clamp(62px, 8vw, 102px) clamp(24px, 7vw, 88px);
}

.privacy-ledger-intro {
  max-width: 430px;
}

.privacy-ledger .eyebrow {
  margin-bottom: 18px;
  color: var(--blue);
}

.privacy-ledger h2 {
  margin: 0;
  font-family: "Arial Narrow", "Avenir Next Condensed", Impact, sans-serif;
  font-size: clamp(40px, 5vw, 66px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.93;
  text-transform: uppercase;
}

.privacy-ledger-intro > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.68;
}

.privacy-ledger-intro > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  text-decoration-color: var(--blue);
  text-underline-offset: 5px;
}

.privacy-control-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--ink);
  gap: 1px;
}

.privacy-control-grid.is-condensed .privacy-control:nth-child(3) {
  grid-column: span 2;
}

.privacy-control {
  display: grid;
  min-width: 0;
  min-height: 176px;
  grid-template-columns: 48px minmax(0, 1fr);
  align-content: start;
  gap: 18px;
  background: var(--paper);
  padding: 24px 22px;
}

.privacy-control-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: var(--lime);
  color: var(--ink);
}

.privacy-control-icon--metrics {
  background: #d9f6f4;
  color: #087b80;
}

.privacy-control-icon--limits {
  background: #ffe1d8;
  color: #c33e1d;
}

.privacy-control-icon--verification {
  background: #dff4e9;
  color: var(--green);
}

.privacy-control-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.privacy-control strong,
.privacy-control p {
  display: block;
}

.privacy-control strong {
  margin-top: 2px;
  font-size: 14px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.privacy-control p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.landing-copy-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 7vw, 96px);
  padding: clamp(58px, 8vw, 104px) clamp(24px, 7vw, 88px);
  background: var(--blue);
  color: white;
}

.landing-copy-panel .eyebrow {
  color: var(--lime);
}

.landing-copy-panel h2,
.landing-section-head h2,
.evidence-manifesto h2,
.api-callout h2 {
  margin: 0;
  font-family: "Arial Narrow", "Avenir Next Condensed", Impact, sans-serif;
  font-size: clamp(36px, 5.2vw, 68px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-transform: uppercase;
}

.landing-copy-panel > div:last-child > p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.65;
}

.landing-copy-panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.landing-copy-panel li {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 7px 10px;
  color: white;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
}

.tool-field-guide {
  padding: clamp(64px, 9vw, 112px) clamp(24px, 6vw, 72px);
  background: #f6f6ef;
  color: var(--ink);
}

.tool-field-guide__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.58fr) auto;
  align-items: end;
  gap: clamp(24px, 5vw, 68px);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 28px;
}

.tool-field-guide__header .eyebrow {
  margin-bottom: 14px;
  color: var(--blue);
}

.tool-field-guide__header h2 {
  max-width: 670px;
  margin: 0;
  font-family: "Arial Narrow", "Avenir Next Condensed", Impact, sans-serif;
  font-size: clamp(38px, 5vw, 66px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.94;
  text-transform: uppercase;
}

.tool-field-guide__header > p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.tool-field-guide__header > span {
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tool-use-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--ink);
}

.tool-use {
  min-height: 235px;
  border-right: 1px solid var(--line);
  padding: 26px 28px 32px 0;
}

.tool-use + .tool-use {
  padding-left: 28px;
}

.tool-use:last-child {
  border-right: 0;
  padding-right: 0;
}

.tool-use > span,
.tool-guide-label {
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tool-use h3 {
  margin: 64px 0 10px;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.tool-use p {
  max-width: 38ch;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.62;
}

.tool-reading-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  border-bottom: 1px solid var(--ink);
}

.tool-reading,
.tool-scope {
  padding: clamp(34px, 5vw, 58px);
}

.tool-reading {
  padding-left: 0;
}

.tool-reading ol {
  display: grid;
  gap: 18px;
  max-width: 720px;
  margin: 30px 0 0;
  padding-left: 26px;
}

.tool-reading li {
  padding-left: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.tool-reading li::marker {
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
}

.tool-scope {
  background: var(--ink);
  color: white;
}

.tool-scope .tool-guide-label {
  color: var(--lime);
}

.tool-scope strong {
  display: block;
  max-width: 360px;
  margin-top: 34px;
  font-size: clamp(22px, 2.7vw, 34px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.tool-scope > p:last-child {
  max-width: 58ch;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.7;
}

.tool-faq {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(34px, 7vw, 96px);
  border-bottom: 1px solid var(--ink);
  padding: clamp(54px, 7vw, 84px) 0;
}

.tool-faq__heading h3 {
  max-width: 470px;
  margin: 15px 0 0;
  font-family: "Arial Narrow", "Avenir Next Condensed", Impact, sans-serif;
  font-size: clamp(30px, 3.9vw, 50px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.96;
  text-transform: uppercase;
}

.tool-faq details {
  border-top: 1px solid var(--line);
}

.tool-faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.tool-faq summary {
  display: grid;
  min-height: 68px;
  cursor: pointer;
  list-style: none;
  grid-template-columns: minmax(0, 1fr) 24px;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

.tool-faq summary::-webkit-details-marker {
  display: none;
}

.tool-faq summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.tool-faq summary span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  transition: transform 160ms ease;
}

.tool-faq details[open] summary span {
  transform: rotate(45deg);
}

.tool-faq details p {
  max-width: 72ch;
  margin: 0;
  padding: 0 48px 24px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.72;
}

.tool-reference-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 7vw, 96px);
  padding-top: 34px;
}

.tool-reference-row > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
}

.tool-reference-row .tool-guide-label {
  width: 100%;
  margin: 0 0 7px;
}

.tool-reference-row a {
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration-color: var(--blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.tool-reference-row a:hover,
[aria-current="page"] {
  color: var(--blue);
}

.tool-deck,
.landing-guides {
  padding: clamp(64px, 9vw, 112px) clamp(24px, 6vw, 72px);
}

.landing-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
}

.landing-section-head h2 {
  max-width: 650px;
  font-size: clamp(34px, 4.5vw, 58px);
}

.landing-section-head > p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.landing-section-head > a {
  color: var(--blue);
  font-size: 11px;
  font-weight: 750;
  text-decoration: none;
}

.tool-card-grid {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--ink);
  background: var(--ink);
  gap: 1px;
}

.tool-card-grid a {
  position: relative;
  min-height: 215px;
  background: var(--paper);
  padding: 23px;
  color: var(--ink);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.tool-card-grid .tool-card--wide {
  grid-column: span 2;
}

.tool-card-grid a::after {
  position: absolute;
  right: 20px;
  bottom: 18px;
  content: "↗";
  color: var(--blue);
  font-size: 17px;
}

.tool-card-grid a:hover {
  z-index: 1;
  background: var(--blue);
  color: white;
  transform: translateY(-4px);
}

.tool-card-grid a:hover p,
.tool-card-grid a:hover small,
.tool-card-grid a:hover::after {
  color: rgba(255, 255, 255, 0.78);
}

.tool-code {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 30px;
  background: var(--lime);
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 850;
}

.tool-card-grid strong,
.tool-card-grid p,
.tool-card-grid small {
  display: block;
}

.tool-card-grid strong {
  font-size: 15px;
  letter-spacing: -0.025em;
}

.tool-card-grid p {
  min-height: 48px;
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.tool-card-grid small {
  color: var(--quiet);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.evidence-manifesto {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(40px, 8vw, 100px);
  overflow: hidden;
  padding: clamp(64px, 9vw, 116px) clamp(24px, 7vw, 88px);
  background: #101512;
  color: white;
}

.signal-orbit {
  position: relative;
  width: min(360px, 100%);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
}

.signal-orbit::before,
.signal-orbit::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.signal-orbit::before {
  inset: 18%;
}

.signal-orbit::after {
  inset: 37%;
  background: var(--blue);
  box-shadow: 0 0 45px rgba(25, 88, 255, 0.5);
}

.signal-orbit i {
  position: absolute;
  z-index: 2;
  inset: 47%;
  border-radius: 50%;
  background: white;
}

.signal-orbit span {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 48px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #101512;
  color: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
}

.signal-orbit span:nth-child(1) { top: -14px; left: calc(50% - 24px); }
.signal-orbit span:nth-child(2) { top: calc(50% - 14px); right: -24px; }
.signal-orbit span:nth-child(3) { bottom: -14px; left: calc(50% - 24px); }
.signal-orbit span:nth-child(4) { top: calc(50% - 14px); left: -24px; }

.evidence-manifesto .eyebrow {
  color: var(--cyan);
}

.evidence-manifesto h2 {
  font-size: clamp(38px, 5vw, 68px);
}

.evidence-manifesto > div:last-child > p {
  max-width: 600px;
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.75;
}

.evidence-manifesto > div:last-child > a {
  display: inline-flex;
  gap: 10px;
  margin-top: 28px;
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.evidence-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.evidence-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.74);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  text-transform: uppercase;
}

.evidence-legend i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.evidence-legend .observed { background: var(--green); }
.evidence-legend .correlated { background: var(--orange); }
.evidence-legend .unknown { border: 1px solid rgba(255, 255, 255, 0.45); }

.landing-guides {
  background: #eef0e8;
}

.guide-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.guide-row a {
  min-height: 220px;
  border-right: 1px solid var(--line);
  padding: 24px 24px 28px 0;
  color: var(--ink);
  text-decoration: none;
}

.guide-row a + a {
  padding-left: 24px;
}

.guide-row a:last-child {
  border-right: 0;
}

.guide-row span {
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
}

.guide-row strong,
.guide-row p {
  display: block;
}

.guide-row strong {
  margin-top: 44px;
  font-size: 18px;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.guide-row p {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.api-callout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 28px 56px;
  padding: clamp(56px, 8vw, 92px) clamp(24px, 7vw, 88px);
  background: var(--lime);
}

.api-callout > div:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
  align-self: start;
}

.api-callout > div:first-child p {
  margin: 0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.api-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(25, 88, 255, 0.14);
}

.api-callout h2 {
  max-width: 680px;
  font-size: clamp(36px, 4.8vw, 62px);
}

.api-callout code {
  grid-column: 2;
  overflow-x: auto;
  border: 1px solid rgba(17, 19, 15, 0.4);
  background: rgba(255, 255, 255, 0.45);
  padding: 14px;
  font-size: 10px;
  white-space: nowrap;
}

.api-callout > div:last-child {
  display: flex;
  grid-column: 2;
  gap: 22px;
}

.api-callout > div:last-child a {
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.footer {
  display: grid;
  gap: 15px;
  padding: 18px 28px;
  background: var(--paper);
  color: var(--quiet);
  font-size: 9px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px 24px;
}

.footer-identity {
  display: grid;
  justify-items: start;
  gap: 3px;
}

.footer-aside {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 20px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.footer-bottom > span {
  min-width: 0;
  flex: 1 1 240px;
}

.footer-bottom .maker-credit {
  flex: 0 0 auto;
}

.footer strong {
  color: var(--ink);
  font-size: 11px;
}

.footer .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 3px;
  color: var(--ink);
  text-decoration: none;
}

.footer-brand-mark {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  background: var(--blue);
}

.footer-brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-brand-name {
  letter-spacing: -0.04em;
  text-transform: lowercase;
}

.footer-brand-name span {
  color: var(--blue);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

.cloudflare-build {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 8px 3px 9px;
  color: var(--quiet);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 140ms ease, color 140ms ease, transform 140ms ease;
}

.cloudflare-build-label {
  margin-right: -0.12em;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cloudflare-build img {
  display: block;
  width: 15px;
  height: 15px;
  margin-top: -1px;
}

.cloudflare-build:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}

.cloudflare-build:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.maker-credit {
  display: flex !important;
  align-items: center;
  gap: 7px !important;
  color: var(--quiet);
  font-size: 8px;
  letter-spacing: 0.015em;
}

.maker-credit-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.maker-credit-separator {
  color: var(--line);
}

.nexarq-credit {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nexarq-credit img {
  display: block;
  width: 11px;
  height: 11px;
}

.maker-credit a {
  color: var(--ink);
  font-size: inherit;
  font-weight: 700;
}

.maker-credit .nexarq-credit {
  text-decoration: none;
}

.maker-credit .nexarq-credit:hover strong {
  color: var(--blue);
}

.maker-credit .nexarq-credit:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.maker-credit .nexarq-credit strong {
  margin-right: -0.16em;
  color: var(--ink);
  font-family: "Jost Nexarq", Jost, "Avenir Next", Avenir, sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: lowercase;
}

.maker-credit a:hover {
  color: var(--blue);
}

.maker-credit a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.about-dialog {
  width: min(500px, calc(100% - 32px));
  border: 1px solid var(--ink);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
  padding: 34px;
  color: var(--ink);
}

.about-dialog::backdrop {
  background: rgba(15, 20, 31, 0.5);
  backdrop-filter: blur(4px);
}

.about-dialog h2 {
  margin: 0;
  font-family: "Arial Narrow", "Avenir Next Condensed", Impact, sans-serif;
  font-size: 42px;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.about-dialog > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eceee6;
  cursor: pointer;
  font-size: 18px;
}

.dialog-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.dialog-sources span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
}

.ip-dialog {
  width: min(620px, calc(100% - 32px));
}

.ip-explainer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.ip-explainer-grid article {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  padding: 14px;
}

.ip-explainer-grid span {
  color: var(--blue);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ip-explainer-grid strong {
  display: block;
  margin-top: 7px;
  font-size: 11px;
}

.ip-explainer-grid p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.dialog-primary {
  width: 100%;
  height: 42px;
  margin-top: 16px;
  border-radius: 8px;
  background: var(--blue);
  color: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
}

.turnstile-dialog {
  width: min(430px, calc(100% - 28px));
  border: 1px solid var(--ink);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
  padding: 30px;
  color: var(--ink);
}

.turnstile-dialog::backdrop {
  background: rgba(15, 20, 31, 0.56);
  backdrop-filter: blur(4px);
}

.turnstile-dialog h2 {
  margin: 10px 0 0;
  font-family: "Arial Narrow", "Avenir Next Condensed", Impact, sans-serif;
  font-size: 40px;
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-transform: uppercase;
}

.turnstile-dialog > p:not(.eyebrow) {
  margin: 14px 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.turnstile-dialog .cf-turnstile {
  min-height: 65px;
  margin: 20px 0 8px;
}

.turnstile-dialog .turnstile-message {
  min-height: 18px;
  margin: 8px 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
}

.turnstile-cancel {
  min-width: 88px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 10px;
  font-weight: 750;
}

.toast {
  position: fixed;
  z-index: 20;
  right: 24px;
  bottom: 24px;
  border-radius: 8px;
  background: var(--ink);
  padding: 10px 14px;
  color: white;
  font-size: 11px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[hidden] {
  display: none !important;
}

@keyframes scan-line {
  from { transform: translateX(-130%); }
  to { transform: translateX(430%); }
}

@keyframes pulse-arrow {
  0%, 100% { opacity: 0.35; transform: translateX(-2px); }
  50% { opacity: 1; transform: translateX(3px); }
}

@keyframes lookup-route-flow {
  to { stroke-dashoffset: -24; }
}

@keyframes lookup-probe-pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.75); }
  50% { opacity: 1; transform: scale(1.35); }
}

@keyframes lookup-scan {
  0%, 100% { opacity: 0; transform: translateX(0); }
  15%, 85% { opacity: 0.8; }
  50% { transform: translateX(205px); }
}

@keyframes lookup-live-pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1); }
}

@media (max-width: 860px) {
  .page-stage {
    padding: 18px;
    background: linear-gradient(180deg, var(--blue) 0 260px, var(--page) 260px 100%);
  }

  .stage-grid {
    width: 100%;
    height: 260px;
  }

  .app-shell {
    min-height: calc(100vh - 36px);
  }

  .my-ip-strip {
    grid-template-columns: auto auto 1fr auto;
  }

  .privacy-ledger {
    grid-template-columns: 1fr;
  }

  .my-ip-strip [data-my-location],
  .strip-divider {
    display: none;
  }

  .result-layout {
    grid-template-columns: 1fr;
  }

  .result-nav {
    position: sticky;
    z-index: 5;
    top: 0;
    display: flex;
    gap: 6px;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 9px 12px;
  }

  .nav-item {
    width: auto;
    flex: 0 0 auto;
    grid-template-columns: 22px auto auto;
    padding: 7px 9px;
  }

  .nav-glyph {
    width: 20px;
    height: 20px;
  }

  .coverage-card {
    display: none;
  }

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

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

  .platform-evidence {
    grid-template-columns: 1fr;
  }

  .mail-policy-row {
    grid-template-columns: 62px 125px minmax(0, 1fr);
  }

  .registration-contacts {
    grid-template-columns: 1fr;
  }

  .ip-passport-facts,
  .ip-registry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ip-registry-grid div:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .ip-registry-grid div:nth-child(2n) {
    border-right: 0;
  }

  .global-dns-controls {
    grid-template-columns: 132px auto;
  }

  .global-dns-controls > p {
    grid-column: 1 / -1;
  }

  .topbar-nav {
    display: none;
  }

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

  .tool-card-grid .tool-card--wide {
    grid-column: auto;
  }

  .landing-copy-panel,
  .evidence-manifesto {
    grid-template-columns: 1fr;
  }

  .tool-field-guide__header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .tool-field-guide__header > p {
    grid-column: 1;
  }

  .tool-field-guide__header > span {
    grid-column: 2;
    grid-row: 1;
  }

  .tool-use-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 30px;
  }

  .tool-use,
  .tool-use + .tool-use,
  .tool-use:last-child {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 26px 0;
  }

  .tool-use:last-child {
    border-bottom: 0;
  }

  .tool-use h3 {
    margin-top: 30px;
  }

  .tool-reading-grid,
  .tool-faq {
    grid-template-columns: 1fr;
  }

  .tool-reading {
    padding-right: 0;
  }

  .tool-faq {
    gap: 34px;
  }

  .signal-orbit {
    width: min(300px, calc(100% - 48px));
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .page-stage {
    padding: 10px;
  }

  .app-shell {
    min-height: calc(100vh - 20px);
    border-radius: 13px;
  }

  .topbar,
  .result-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
  }

  .target-identity {
    min-width: 0;
    max-width: 100%;
  }

  .target-identity h2 {
    font-size: 19px;
    overflow-wrap: anywhere;
  }

  .result-actions {
    width: 100%;
    gap: 8px;
  }

  .result-actions .markdown-export-button {
    flex: 1;
    justify-content: center;
  }

  .live-indicator {
    display: none;
  }

  .hero {
    min-height: 510px;
    padding: 58px 16px 35px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 60px);
  }

  .hero h1 em {
    white-space: normal;
  }

  .hero h1 em::after {
    height: 12px;
  }

  .hero-copy {
    font-size: 13px;
  }

  .landing-copy-panel,
  .tool-field-guide,
  .tool-deck,
  .landing-guides,
  .evidence-manifesto,
  .api-callout {
    padding-right: 20px;
    padding-left: 20px;
  }

  .tool-field-guide__header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .tool-field-guide__header > p,
  .tool-field-guide__header > span {
    grid-column: 1;
    grid-row: auto;
  }

  .tool-reading,
  .tool-scope {
    padding: 34px 22px;
  }

  .tool-reading {
    padding-right: 0;
    padding-left: 0;
  }

  .tool-reference-row {
    grid-template-columns: 1fr;
  }

  .landing-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .tool-card-grid,
  .guide-row,
  .api-callout {
    grid-template-columns: 1fr;
  }

  .tool-card-grid a {
    min-height: 190px;
  }

  .guide-row a,
  .guide-row a + a {
    min-height: 180px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
  }

  .guide-row a:last-child {
    border-bottom: 0;
  }

  .guide-row strong {
    margin-top: 26px;
  }

  .api-callout code,
  .api-callout > div:last-child {
    grid-column: 1;
  }

  .evidence-manifesto h2,
  .landing-copy-panel h2,
  .landing-section-head h2,
  .api-callout h2 {
    font-size: clamp(34px, 11vw, 50px);
  }

  .probe {
    display: grid;
    padding: 5px;
  }

  .probe-field {
    padding-right: 6px;
  }

  .trace-button {
    width: 100%;
  }

  .lookup-progress {
    grid-template-columns: 1fr;
  }

  .lookup-globe {
    min-height: 132px;
  }

  .lookup-globe svg {
    width: 178px;
    height: 126px;
  }

  .lookup-progress-copy {
    padding: 21px 18px 23px;
  }

  .lookup-progress-copy > p {
    min-height: 0;
  }

  .lookup-scan {
    top: 8px;
    bottom: 8px;
    left: calc(50% - 100px);
  }

  .subdomain-empty-state {
    flex-wrap: wrap;
  }

  .subdomain-empty-state button {
    width: 100%;
    margin-left: 47px;
  }

  .my-ip-strip {
    grid-template-columns: 1fr auto;
    gap: 5px 12px;
    padding: 12px 16px;
  }

  .my-ip-strip [data-my-provider] {
    grid-column: 1;
  }

  .strip-ip-button {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .my-ip-addresses {
    grid-column: 1;
  }

  .privacy-ledger {
    gap: 38px;
    padding: 58px 20px;
  }

  .privacy-ledger h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .tool-use-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .privacy-control-grid {
    grid-template-columns: 1fr;
  }

  .privacy-control-grid.is-condensed .privacy-control:nth-child(3) {
    grid-column: auto;
  }

  .privacy-control {
    min-height: 0;
    padding: 21px 19px;
  }

  .result-actions .freshness {
    display: none;
  }

  .trace-section {
    padding: 24px 16px;
  }

  .route-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 6px;
  }

  .proxy-notice {
    grid-template-columns: auto 1fr;
  }

  .proxy-addresses {
    grid-column: 1 / -1;
    max-width: none;
    justify-content: flex-start;
  }

  .route-line {
    display: none;
  }

  .stat-grid,
  .split-section,
  .registration-grid,
  .security-grid,
  .web-runtime-grid,
  .platform-evidence,
  .header-audit,
  .mail-check-grid {
    grid-template-columns: 1fr;
  }

  .mail-audit-summary {
    grid-template-columns: 88px 1fr;
  }

  .mail-audit-summary > div:last-child {
    grid-column: 1 / -1;
  }

  .dkim-selector-control,
  .mail-policy-row {
    grid-template-columns: 1fr;
  }

  .dkim-selector-control button {
    min-height: 38px;
  }

  .mail-policy-verdict {
    justify-self: start;
  }

  .ip-passport {
    min-height: 405px;
    padding: 18px;
  }

  .ip-address-value {
    font-size: clamp(18px, 6.4vw, 25px);
    letter-spacing: -0.055em;
  }

  .ip-route-line {
    width: 88%;
  }

  .ip-passport-facts,
  .ip-summary-grid,
  .ip-registry-grid,
  .ip-signal-grid {
    grid-template-columns: 1fr;
  }

  .ip-summary-grid .ip-summary-grid__location {
    grid-column: 1;
  }

  .ip-registry-grid div,
  .ip-registry-grid div:nth-child(2n),
  .ip-registry-grid div:nth-child(3n) {
    border-right: 0;
  }

  .ip-signal-grid article,
  .ip-signal-grid article:nth-child(2n),
  .ip-signal-grid article:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .ip-signal-grid article:last-child {
    border-bottom: 0;
  }

  .ip-registry-note {
    grid-template-columns: 1fr;
  }

  .ip-registry-note span {
    white-space: normal;
  }

  .header-check,
  .header-check:nth-child(2n),
  .header-check:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .header-check:last-child {
    border-bottom: 0;
  }

  .split-section .section-title {
    grid-column: 1;
  }

  .registration-grid div,
  .registration-grid div:nth-child(3n) {
    border-right: 0;
  }

  .location-panel {
    grid-template-columns: 100px 1fr;
  }

  .registration-contact dl {
    grid-template-columns: 1fr;
  }

  .map-grid {
    width: 94px;
    height: 94px;
  }

  .section-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .table-pagination {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .table-pagination > div {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
  }

  .table-pagination label {
    flex: 1 0 100%;
    justify-content: space-between;
  }

  .table-page-list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .table-pagination select,
  .table-pagination button {
    padding: 8px 10px;
    font-size: 10px;
  }

  .subdomain-viewbar {
    align-items: stretch;
    flex-direction: column;
  }

  .subdomain-view-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .subdomain-view-tabs button {
    justify-content: center;
  }

  .subdomain-evidence-toggle {
    justify-content: flex-start;
  }

  .subdomain-table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
  }

  .subdomain-table,
  .subdomain-table tbody {
    display: block;
    width: 100%;
  }

  .subdomain-table thead {
    display: none;
  }

  .subdomain-table tbody {
    display: grid;
    gap: 8px;
  }

  .subdomain-table tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: var(--surface);
  }

  .subdomain-table td,
  .dns-table.subdomain-table td.subdomain-host,
  .dns-table.subdomain-table td.subdomain-answer,
  .dns-table.subdomain-table td.subdomain-status-cell,
  .subdomain-table .subdomain-certificate {
    width: auto;
    min-width: 0;
    max-width: none;
    border: 0;
  }

  .subdomain-table .subdomain-host,
  .subdomain-table .subdomain-status-cell {
    grid-row: 1;
    padding: 12px;
  }

  .subdomain-table .subdomain-status-cell {
    grid-column: 2;
    justify-self: end;
    padding-left: 0;
  }

  .subdomain-table .subdomain-answer,
  .subdomain-table .subdomain-certificate {
    grid-column: 1 / -1;
  }

  .subdomain-table .subdomain-answer {
    border-top: 1px solid var(--line);
    background: #f7f8f3;
    padding: 10px 12px;
  }

  .subdomain-table .subdomain-certificate {
    border-top: 1px solid var(--line);
    padding: 9px 11px 11px;
  }

  .subdomain-table td[data-label]::before {
    display: block;
    margin-bottom: 5px;
    color: var(--quiet);
    content: attr(data-label);
    font-family: "Avenir Next", Avenir, sans-serif;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .subdomain-table .subdomain-host::before,
  .subdomain-table .subdomain-status-cell::before {
    display: none;
  }

  .subdomain-answer-line {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 7px;
    padding: 7px 0;
  }

  .subdomain-answer-destination {
    align-items: flex-start;
    flex-direction: column;
  }

  .subdomain-answer-ttl {
    grid-column: 2;
    min-width: 0;
    text-align: left;
  }

  .table-page-list {
    flex-wrap: wrap;
  }

  .global-dns-controls,
  .global-probe-list {
    grid-template-columns: 1fr;
  }

  .global-dns-controls > p {
    grid-column: 1;
  }

  .global-map-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .global-map {
    min-height: 190px;
    aspect-ratio: 1.72 / 1;
  }

  .global-map-point::after {
    display: none;
  }

  .global-map-point {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }

  .global-map-chrome {
    top: 8px;
    right: 9px;
    left: 9px;
    font-size: 6px;
  }

  .global-map-legend a {
    width: 100%;
    margin-left: 0;
  }

  .global-probe-card,
  .global-probe-card:nth-child(2n),
  .global-probe-card:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .global-probe-card:last-child {
    border-bottom: 0;
  }

  .record-filters {
    max-width: 100%;
    justify-content: flex-start;
  }

  .footer {
    padding: 16px;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-aside {
    justify-items: start;
  }

  .footer nav {
    justify-content: flex-start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom > span {
    flex: 0 0 auto;
  }

  .maker-credit {
    flex-wrap: wrap;
  }

  .topbar-actions {
    gap: 10px;
  }

  .my-ip-top-button {
    padding: 0 9px;
  }

  .ip-explainer-grid {
    grid-template-columns: 1fr;
  }

  .security-grid .security-card--certificate {
    grid-template-columns: auto 1fr;
  }

  .certificate-facts {
    grid-column: 1 / -1;
    max-width: none;
    justify-content: flex-start;
  }
}

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