@font-face { font-family: 'Clash Display'; font-weight: 600; font-display: swap; src: url('/static/fonts/ClashDisplay/ClashDisplay-Semibold.woff2') format('woff2'); }
@font-face { font-family: 'Clash Display'; font-weight: 700; font-display: swap; src: url('/static/fonts/ClashDisplay/ClashDisplay-Bold.woff2') format('woff2'); }
@font-face { font-family: 'Archivo'; font-weight: 400; font-display: swap; src: url('/static/fonts/Archivo/archivo-400.woff2') format('woff2'); }
@font-face { font-family: 'Archivo'; font-weight: 500; font-display: swap; src: url('/static/fonts/Archivo/archivo-500.woff2') format('woff2'); }
@font-face { font-family: 'Archivo'; font-weight: 600; font-display: swap; src: url('/static/fonts/Archivo/archivo-600.woff2') format('woff2'); }
@font-face { font-family: 'Archivo'; font-weight: 700; font-display: swap; src: url('/static/fonts/Archivo/archivo-700.woff2') format('woff2'); }
@font-face { font-family: 'JetBrains Mono'; font-weight: 400; font-display: swap; src: url('/static/fonts/JetBrainsMono/jetbrains-mono-400.woff2') format('woff2'); }
@font-face { font-family: 'JetBrains Mono'; font-weight: 500; font-display: swap; src: url('/static/fonts/JetBrainsMono/jetbrains-mono-500.woff2') format('woff2'); }

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

:root {
  --indigo: #5700FF;
  --indigo-deep: #3B00B0;
  --indigo-darker: #2A007A;
  --chartreuse: #DFFF00;
  --accent: #5700FF;
  --black: #0A0A0A;
  --gray-900: #1A1A1A;
  --gray-800: #2A2A2A;
  --gray-600: #666;
  --white: #FFFFFF;
  --bone: #F5F5F0;
  --line: rgba(255, 255, 255, 0.12);
  --line-dim: rgba(255, 255, 255, 0.06);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Archivo', system-ui, sans-serif;
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── nav ─────────────────────────────────────────────── */
nav.top {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
}
nav.top .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
}
.brand-logo {
  height: 22px;
  width: auto;
  margin-right: 10px;
  vertical-align: middle;
}
.brand .dot { color: var(--gray-600); }
.nav-meta {
  display: flex;
  gap: 28px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
}
.nav-meta a { color: inherit; text-decoration: none; }
.nav-meta a:hover { color: var(--white); }

/* ─── hero ────────────────────────────────────────────── */
header.hero {
  padding: 80px 0 100px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 28px;
  position: relative;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

h1.hero-title {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  position: relative;
}
h1.hero-title em {
  font-style: normal;
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 0.1em;
  text-decoration-thickness: 0.06em;
}
h1.hero-title .underline {
  text-decoration: none;
  position: relative;
  display: inline-block;
}
h1.hero-title .underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.04em;
  height: 0.1em;
  background: var(--accent);
  z-index: -1;
}

.hero-sub {
  font-size: clamp(16px, 1.3vw, 19px);
  max-width: 620px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 48px;
  line-height: 1.55;
}

/* ─── search ──────────────────────────────────────────── */
.search-wrap {
  position: relative;
  max-width: 720px;
}
.search-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  display: block;
}
form.search {
  display: flex;
  background: var(--white);
  padding: 6px;
  border-radius: 0;
  border: 2px solid var(--white);
  transition: border-color 0.15s;
}
form.search:focus-within {
  border-color: rgba(255,255,255,0.6);
}
.search-prefix {
  font-family: 'JetBrains Mono', monospace;
  color: var(--indigo);
  padding: 0 14px;
  display: flex;
  align-items: center;
  font-weight: 500;
  border-right: 1px solid rgba(0,0,0,0.1);
}
form.search input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 18px 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 17px;
  color: var(--black);
  min-width: 0;
}
form.search input::placeholder { color: rgba(0,0,0,0.35); }
form.search button {
  background: var(--white);
  color: var(--black);
  border: 0;
  padding: 0 32px;
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
form.search button:hover { background: var(--gray-800); color: var(--white); }

.search-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  flex-wrap: wrap;
  gap: 12px;
}
.refresh-toggle {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
.refresh-toggle input { accent-color: var(--white); cursor: pointer; }
.refresh-toggle:hover { color: var(--white); }

.examples {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.examples span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 4px;
}
.examples a {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--white);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  padding: 6px 12px;
  text-decoration: none;
  transition: all 0.15s;
}
.examples a:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

/* ─── result section ──────────────────────────────────── */
section.result {
  padding: 80px 0 100px;
  background: var(--bone);
  color: var(--black);
  position: relative;
}
section.result::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: rgba(0,0,0,0.15);
}

.result-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  border-bottom: 2px solid var(--black);
  padding-bottom: 32px;
  margin-bottom: 48px;
}
.result-domain-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.5);
  margin-bottom: 12px;
}
.result-domain {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  word-break: break-all;
}
.result-domain .tld { color: rgba(0,0,0,0.4); }

.verdict {
  text-align: right;
}
.verdict-status {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.verdict-status.not-sovereign { color: #C81818; }
.verdict-status.unclear { color: #D4890A; }
.verdict-status.sovereign { color: #003399; }
.verdict-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 8px;
  color: rgba(0,0,0,0.6);
}
.recheck-link {
  display: inline-block;
  margin-top: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(0,0,0,0.4);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.2);
}
.recheck-link:hover { color: var(--black); border-color: var(--black); }

/* score bar */
.score-bar-wrap {
  margin-bottom: 56px;
}
.score-bar-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.score-bar-meta strong {
  font-family: 'Clash Display', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
}
.score-bar {
  height: 24px;
  background: rgba(0,0,0,0.08);
  display: flex;
  overflow: hidden;
  position: relative;
}
.score-bar .fill-eu {
  background: #003399;
}
.score-bar .fill-na {
  background: #C81818;
}
.score-bar-legend {
  display: flex;
  gap: 24px;
  margin-top: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(0,0,0,0.6);
}
.swatch { display: inline-block; width: 10px; height: 10px; margin-right: 6px; vertical-align: middle; }
.swatch.eu { background: #003399; }
.swatch.us { background: #C81818; }

/* sections */
.section-title {
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.section-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(0,0,0,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.infra-block {
  margin-bottom: 56px;
}
table.infra {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}
table.infra tr { border-bottom: 1px solid rgba(0,0,0,0.15); }
table.infra tr:last-child { border-bottom: 0; }
table.infra td {
  padding: 18px 0;
  vertical-align: middle;
}
table.infra td.label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.55);
  width: 140px;
}
table.infra td.provider {
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
}
table.infra td.flag {
  text-align: right;
  width: 200px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  font-weight: 500;
}
.pill.us { background: #FBE9E7; color: #B71C1C; }
.pill.eu { background: #E8EAF6; color: #003399; }
.pill.neutral { background: rgba(0,0,0,0.08); color: var(--black); }
.pill .square {
  width: 8px; height: 8px; display: inline-block;
}
.pill.us .square { background: #B71C1C; }
.pill.eu .square { background: #003399; }

/* ─── expandable infra rows ──────────────────────────── */
.infra-list {
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}
.infra-row {
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.infra-row:last-child { border-bottom: 0; }
.infra-row > summary {
  display: flex;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
}
.infra-row > summary::-webkit-details-marker { display: none; }
.infra-row > summary::before {
  content: "▸";
  font-size: 10px;
  color: rgba(0,0,0,0.35);
  margin-right: 12px;
  transition: transform 0.15s;
}
.infra-row[open] > summary::before { transform: rotate(90deg); }
.infra-row > summary .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.55);
  width: 140px;
  flex-shrink: 0;
}
.infra-row > summary .provider {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 17px;
  flex: 1;
}
.infra-row > summary .flag {
  text-align: right;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.infra-detail {
  padding: 0 0 18px 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(0,0,0,0.6);
}
.trace {
  border-left: 2px solid rgba(0,0,0,0.12);
  padding-left: 16px;
}
.trace-step {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 4px 0;
}
.trace-label {
  color: rgba(0,0,0,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  min-width: 60px;
  flex-shrink: 0;
}
.trace-value {
  color: rgba(0,0,0,0.8);
  word-break: break-all;
}
.trace-result .trace-value {
  font-weight: 500;
  color: var(--black);
}

/* ─── expandable tracker rows ────────────────────────── */
.tracker-list {
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}
.tracker-row {
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.tracker-row:last-child { border-bottom: 0; }
.tracker-row > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
}
.tracker-row > summary::-webkit-details-marker { display: none; }
.tracker-row > summary::before {
  content: "▸";
  font-size: 10px;
  color: rgba(0,0,0,0.35);
  margin-right: 12px;
  transition: transform 0.15s;
}
.tracker-row[open] > summary::before { transform: rotate(90deg); }
.tracker-row > summary .tracker-name {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 15px;
  flex: 1;
}
.tracker-row > summary .tracker-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #C81818;
}
.tracker-row.eu > summary .tracker-meta { color: #003399; }

/* trackers (old grid removed) */
.tracker-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 2px solid var(--black);
  border-left: 2px solid var(--black);
}
.tracker {
  flex: 1 1 200px;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  padding: 20px 18px;
  background: var(--bone);
  transition: background 0.15s;
}
.tracker:hover { background: var(--white); }
.tracker-name {
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.tracker-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #C81818;
}
.tracker.eu .tracker-meta { color: var(--indigo); }

/* CTA */
section.cta {
  background: var(--black);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
section.cta::before {
  content: "ENUM ENUM ENUM ENUM ENUM ENUM";
  position: absolute;
  bottom: -40px;
  left: -20px;
  right: -20px;
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 280px;
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.05em;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.cta h2 {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.cta h2 em {
  font-style: normal;
  color: var(--white);
  font-style: italic;
}
.cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  line-height: 1.55;
  margin-bottom: 32px;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  transition: all 0.15s;
}
.btn-primary {
  background: var(--white);
  color: var(--black);
}
.btn-primary:hover { background: rgba(255,255,255,0.85); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover { border-color: var(--white); color: var(--white); }

.cta-card {
  background: var(--gray-900);
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  position: relative;
}
.cta-card-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.cta-card-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cta-stat-num {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
}
.cta-stat-num em {
  font-style: normal;
  color: var(--white);
}
.cta-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}

/* stats bar */
.stats-bar {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item {
  text-align: center;
}
.stat-item .cta-stat-num {
  font-size: 40px;
}
.stat-item .cta-stat-label {
  margin-top: 6px;
}

/* footer */
footer {
  background: var(--black);
  color: var(--white);
  padding: 48px 0 32px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-brand {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}
.footer-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}
.footer-meta a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin-left: 24px;
}
.footer-meta a:hover { color: var(--white); }

/* ─── recent checks ──────────────────────────────────── */
.recent {
  padding: 60px 0;
  background: var(--black);
  border-top: 1px solid var(--line);
}
.recent .section-title {
  color: var(--white);
  margin-bottom: 20px;
}
.recent-list {
  display: flex;
  flex-direction: column;
}
.recent-entry {
  display: flex;
  align-items: center;
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--white);
  transition: background 0.1s;
}
.recent-entry:hover {
  background: rgba(255,255,255,0.04);
}
.recent-domain {
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  font-size: 15px;
  flex: 1;
}
.recent-score {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-right: 16px;
}
.recent-verdict {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  min-width: 100px;
  text-align: right;
}

/* loading skeleton */
.skeleton-row {
  display: flex;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  gap: 16px;
}
.skeleton-row:last-child { border-bottom: 0; }
.skeleton-row .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.35);
  width: 140px;
  flex-shrink: 0;
}
.skeleton-bar {
  height: 18px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(0,0,0,0.06) 25%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.06) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}
.skeleton-bar.wide { flex: 1; }
.skeleton-bar.pill { width: 120px; flex-shrink: 0; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* result actions */
.result-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.action-btn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 20px;
  text-decoration: none;
  background: var(--black);
  color: var(--white);
  transition: opacity 0.15s;
}
.action-btn:hover { opacity: 0.8; }
.action-btn.action-ghost {
  background: transparent;
  color: rgba(0,0,0,0.5);
  border: 1px solid rgba(0,0,0,0.2);
}
.action-btn.action-ghost:hover { color: var(--black); border-color: var(--black); }

/* responsive */
@media (max-width: 760px) {
  .wrap { padding: 0 20px; }
  .result-header { grid-template-columns: 1fr; gap: 24px; }
  .verdict { text-align: left; }
  .cta-grid { grid-template-columns: 1fr; gap: 48px; }
  table.infra td.label { width: 90px; font-size: 10px; }
  table.infra td.flag { width: auto; }
  table.infra td.provider { font-size: 17px; }
  form.search { flex-direction: column; padding: 12px; gap: 8px; }
  .search-prefix { border-right: 0; border-bottom: 1px solid rgba(0,0,0,0.1); padding: 8px 0; }
  form.search input { padding: 12px 0; }
  form.search button { padding: 16px; width: 100%; }
  nav.top .nav-meta { display: none; }
}
