:root {
  --bg-0: #071018;
  --bg-1: #0c1824;
  --chrome-ink: #e8eef6;
  --chrome-muted: #8494a8;
  --surface: #f4f7fb;
  --surface-2: #ffffff;
  --ink: #142033;
  --ink-soft: #3d4f66;
  --muted: #66788f;
  --line: #d7e0ec;
  --line-strong: #c3d0e0;
  --accent: #0d9488;
  --accent-2: #0284c7;
  --accent-soft: rgba(13, 148, 136, 0.1);
  --accent-ink: #ffffff;
  --danger: #dc2626;
  --radius: 4px;
  --radius-sm: 3px;
  --shadow: 0 10px 28px rgba(0, 0, 0, 0.28), 0 1px 0 rgba(255, 255, 255, 0.55) inset;
  --shadow-soft: 0 6px 16px rgba(15, 32, 51, 0.08);
  --font: "Outfit", "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Consolas, monospace;
  --shell: min(1440px, calc(100% - 2.5rem));
  --sidebar-w: 280px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--chrome-ink);
  background: var(--bg-0);
  line-height: 1.55;
  position: relative;
  overflow-x: clip;
}

a { color: var(--accent-2); text-decoration: none; }
a:hover { color: #0369a1; }

.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1000px 520px at 12% -10%, rgba(45, 212, 191, 0.16), transparent 55%),
    radial-gradient(900px 480px at 88% 8%, rgba(56, 189, 248, 0.14), transparent 50%),
    radial-gradient(700px 500px at 50% 100%, rgba(14, 116, 144, 0.18), transparent 55%),
    linear-gradient(180deg, #071018 0%, #0a1520 45%, #071018 100%);
}
.bg-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 183, 214, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 183, 214, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  opacity: 0.65;
}

.shell { width: var(--shell); margin-inline: auto; }

.page-surface {
  width: var(--shell);
  margin: 0.75rem auto 2rem;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  min-height: calc(100vh - 5.5rem);
}
.page-surface a { color: var(--accent-2); }
.page-surface a:hover { color: #0369a1; }
.page-surface .ad-slot {
  width: auto;
  margin: 0;
  padding: 0.85rem 1.1rem 0;
}
.page-surface .ad-slot__inner {
  background: #eef3f8;
  border-color: #c9d6e6;
  color: #8a9bb0;
}

.icon {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
  display: inline-block;
  vertical-align: -0.15em;
}
.icon--sm { width: 0.95em; height: 0.95em; }
.icon--nav { width: 1em; height: 1em; }
.icon--btn { width: 1.05em; height: 1.05em; }
.icon--title { width: 1.15em; height: 1.15em; margin-right: 0.25rem; color: var(--accent); }
.icon--chevron {
  width: 0.95em;
  height: 0.95em;
  margin-left: auto;
  color: var(--muted);
  opacity: 0.7;
}

.raised {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(148, 183, 214, 0.12);
  background: rgba(7, 16, 24, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--chrome-ink);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  min-width: 0;
}
.brand:hover { color: inherit; }
.brand__mark {
  flex: 0 0 auto;
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
.brand__text { display: grid; gap: 0.08rem; min-width: 0; }
.brand__name {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
}
.brand__tag {
  color: var(--chrome-muted);
  font-size: 0.84rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(420px, 55vw);
}
.brand--footer {
  color: var(--ink);
}
.brand--footer .brand__tag {
  color: var(--muted);
  white-space: normal;
  max-width: 42ch;
}

.header-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 600;
}
.header-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #c5d2e2;
}
.header-nav a:hover { color: #fff; }

.header-end {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
  min-width: 0;
}
.lang-switch {
  position: relative;
}
.lang-dropdown {
  position: relative;
}
.lang-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.55rem 0.35rem 0.45rem;
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: var(--radius-sm);
  background: rgba(7, 16, 24, 0.45);
  color: var(--chrome-ink);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  line-height: 1.2;
  transition: border-color 0.15s, background 0.15s;
}
.lang-dropdown__toggle:hover,
.lang-dropdown.is-open .lang-dropdown__toggle {
  border-color: rgba(94, 234, 212, 0.45);
  background: rgba(13, 148, 136, 0.12);
}
.lang-dropdown__flag {
  width: 1.15em;
  line-height: 0.85em;
  border-radius: 1px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
}
.lang-dropdown__chev {
  color: var(--chrome-muted);
  transition: transform 0.15s;
}
.lang-dropdown.is-open .lang-dropdown__chev {
  transform: rotate(90deg);
}
.lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  z-index: 120;
  min-width: 11.5rem;
  margin: 0;
  padding: 0.3rem;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}
.lang-dropdown__menu[hidden] {
  display: none;
}
.lang-dropdown__option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.5rem;
  border-radius: 2px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.84rem;
}
.lang-dropdown__option:hover {
  background: #eef4fa;
}
.lang-dropdown__option.is-active {
  background: rgba(13, 148, 136, 0.1);
}
.lang-dropdown__option-label {
  flex: 1;
  min-width: 0;
  font-weight: 600;
  color: var(--ink);
}
.lang-dropdown__option.is-active .lang-dropdown__option-label {
  font-weight: 700;
}
.lang-dropdown__check {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.85rem;
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.header-visitor {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  max-width: min(420px, 48vw);
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(148, 183, 214, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  color: #e8f0fa;
  font-size: 0.82rem;
  line-height: 1.35;
  min-width: 0;
}
.header-visitor:hover {
  color: #fff;
  border-color: rgba(148, 183, 214, 0.38);
  background: rgba(255, 255, 255, 0.07);
}
.header-visitor--muted { color: #c5d2e2; }
.header-visitor__ip {
  font-family: var(--mono);
  font-weight: 700;
  white-space: nowrap;
}
.header-visitor__loc {
  color: #b6c7da;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header-icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(148, 183, 214, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  color: #d7e4f2;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
}
.header-icon-btn:hover {
  color: #fff;
  border-color: rgba(148, 183, 214, 0.38);
  background: rgba(255, 255, 255, 0.08);
}
.header-icon-btn__label { white-space: nowrap; }

.header-menu-btn {
  display: none;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(148, 183, 214, 0.28);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}
.header-menu-btn__bars {
  display: grid;
  gap: 4px;
  width: 18px;
}
.header-menu-btn__bars span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}
.header-menu-btn__text { letter-spacing: 0.04em; text-transform: uppercase; }

.site-drawer[hidden] { display: none !important; }
.site-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  overflow: hidden;
  overscroll-behavior: contain;
}
.site-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 16, 0.62);
  backdrop-filter: blur(3px);
}
.site-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(22rem, 92vw);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #f7f9fc;
  color: var(--ink);
  border-left: 1px solid var(--line);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.28);
  transform: translateX(100%);
  transition: transform 0.22s ease;
}
body.drawer-open .site-drawer__panel { transform: translateX(0); }
.site-drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1rem 0.75rem;
  border-bottom: 1px solid var(--line);
  background: #eef2f7;
}
.site-drawer__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}
.site-drawer__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.site-drawer__tag {
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.35;
}
.site-drawer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}
.site-drawer__lang {
  padding: 0.65rem 1rem 0.75rem;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.site-drawer__lang .lang-dropdown__toggle {
  width: 100%;
  justify-content: flex-start;
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}
.site-drawer__lang .lang-dropdown__menu {
  left: 0;
  right: auto;
  min-width: 100%;
}
.site-drawer__visitor {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.55rem;
  margin: 0;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 600;
}
.site-drawer__visitor-loc {
  font-family: var(--sans);
  font-weight: 500;
  color: var(--muted);
}
.site-drawer__nav {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 0.85rem 0.85rem 1rem;
}
.site-drawer__foot {
  display: flex;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--line);
  background: #eef2f7;
  font-size: 0.88rem;
  font-weight: 600;
}
.catalog-nav--drawer a {
  padding: 0.42rem 0.35rem;
  border-radius: var(--radius-sm);
}
.catalog-nav--drawer a.is-active {
  background: #e8f0fa;
  color: var(--accent);
}

.toast-stack {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: grid;
  gap: 0.45rem;
  width: min(22rem, calc(100vw - 2rem));
  pointer-events: none;
}
.toast {
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.toast--ok { border-color: #6ee7b7; background: #ecfdf5; color: #065f46; }
.toast--fail { border-color: #fca5a5; background: #fef2f2; color: #991b1b; }
.toast--neutral { border-color: var(--line); background: #f8fafc; color: var(--ink); }

.layout-shell {
  display: grid;
  grid-template-columns: var(--sidebar-w) minmax(0, 1fr);
  gap: 0;
  align-items: start;
  padding: 0;
}
.layout-shell--home {
  grid-template-columns: minmax(0, 1fr);
}

.content-panel,
.footer-catalog {
  position: relative;
}

.content-panel {
  background: transparent;
  color: var(--ink);
  border: 0;
  box-shadow: none;
  padding: 1.25rem 1.35rem 1.5rem;
  min-width: 0;
}

.sidebar-panel {
  position: static;
  display: grid;
  gap: 0.85rem;
  align-content: start;
  order: 0;
  padding: 1.1rem 0.85rem 1.4rem;
  border-right: 1px solid var(--line);
  background: #eef2f7;
}
.sidebar-panel__inner {
  color: var(--ink);
}
.sidebar-panel__heading,
.footer-catalog__heading {
  margin: 0 0 0.7rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.breadcrumbs { margin: 0 0 1rem; }
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.88rem;
}
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.35rem;
  color: #9aabbf;
}
.breadcrumbs a { color: var(--ink-soft); }

.hero { margin-bottom: 1.25rem; }

/* —— Homepage —— */
.layout-shell--home .content-panel {
  padding: 0.75rem 0.75rem 1.5rem;
}
.home-hero-banner {
  position: relative;
  display: grid;
  margin: 0 0 1.15rem;
  overflow: hidden;
  background: #061018;
  border: 1px solid rgba(94, 234, 212, 0.12);
  border-radius: var(--radius);
}
.home-hero-banner__scene {
  grid-area: 1 / 1;
  position: relative;
  min-height: clamp(300px, 42vw, 420px);
  pointer-events: none;
}
.home-hero-banner__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, #000 20%, transparent 100%);
}
.home-hero-banner__scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(45, 212, 191, 0.07) 48%, transparent 52%);
  animation: hero-scan 6s linear infinite;
  pointer-events: none;
}
.home-hero-banner__svg {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(300px, 42vw, 420px);
}
.home-hero-banner__routes {
  stroke-dasharray: 10 8;
  animation: hero-route-flow 14s linear infinite;
}
.home-hero-banner__overlay {
  grid-area: 1 / 1;
  position: relative;
  z-index: 2;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2.75rem) clamp(1.25rem, 4vw, 2.5rem);
  background:
    linear-gradient(180deg, rgba(6, 16, 24, 0.84) 0%, rgba(6, 16, 24, 0.42) 42%, rgba(6, 16, 24, 0.42) 58%, rgba(6, 16, 24, 0.84) 100%);
}
.home-hero-banner__inner {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
}
.home-hero-banner__eyebrow {
  margin: 0 0 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  color: #5eead4;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.home-hero-banner__eyebrow .icon { color: #5eead4; flex: 0 0 auto; }
.home-hero-banner h1 {
  display: block;
  text-align: center;
  margin: 0 0 0.75rem;
  color: #f8fbff;
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 800;
  text-wrap: balance;
}
.home-hero-banner__lede {
  margin: 0 auto 1rem;
  color: #b4c5d8;
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  line-height: 1.55;
  max-width: 62ch;
}
.home-hero-banner__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}
.home-hero-banner__tag {
  display: inline-flex;
  padding: 0.22rem 0.55rem;
  border: 1px solid rgba(94, 234, 212, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(13, 148, 136, 0.12);
  color: #99f6e4;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.home-hero-banner__tag:hover {
  color: #fff;
  border-color: rgba(94, 234, 212, 0.55);
  background: rgba(13, 148, 136, 0.28);
}

@keyframes hero-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}
@keyframes hero-route-flow {
  to { stroke-dashoffset: -72; }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-banner__scan,
  .home-hero-banner__routes,
  .home-hero-banner__svg animate,
  .home-hero-banner__svg animateMotion {
    animation: none !important;
  }
}

@media (max-width: 768px) {
  .home-hero-banner__scene {
    min-height: clamp(220px, 52vw, 320px);
  }
  .home-hero-banner__overlay {
    align-self: stretch;
    padding: 1.45rem 1.1rem 1.55rem;
  }
  .home-hero-banner h1 {
    font-size: clamp(1.55rem, 6.8vw, 2.05rem);
    line-height: 1.12;
  }
  .home-hero-banner__lede {
    font-size: 0.94rem;
    line-height: 1.5;
    margin-bottom: 0.85rem;
  }
  .home-hero-banner__tags {
    gap: 0.35rem;
  }
  /* SMIL (SVG animate/animateMotion) ignores CSS animation:none — hide moving layers */
  .home-hero-banner__scan,
  .home-hero-banner__routes,
  .home-hero-banner__svg > g[filter],
  .home-hero-banner__hub > circle:nth-child(2) {
    display: none !important;
  }
}

.footer-catalog {
  content-visibility: auto;
  contain-intrinsic-size: auto 480px;
}

.home-catalog { display: grid; gap: 0.85rem; }
.home-tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.55rem;
}
.home-tool-card {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.65rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: inherit;
  transition: border-color 0.12s ease, box-shadow 0.12s ease, transform 0.12s ease;
}
.home-tool-card:hover {
  border-color: #9fc0d8;
  box-shadow: 0 8px 18px rgba(15, 32, 51, 0.08);
  transform: translateY(-1px);
  color: inherit;
}
.home-tool-card__icon {
  display: inline-flex;
  flex: 0 0 auto;
  color: var(--accent);
  margin-top: 0.1rem;
}
.home-tool-card__icon .icon { width: 1.15rem; height: 1.15rem; }
.home-tool-card__body {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
}
.home-tool-card__title {
  font-weight: 650;
  font-size: 0.92rem;
  line-height: 1.35;
  color: var(--ink);
}
.home-tool-card__desc {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-tool-card__chevron {
  flex: 0 0 auto;
  align-self: center;
  opacity: 0.45;
}

@media (max-width: 860px) {
  .home-tool-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .layout-shell--home .content-panel {
    padding: 0.75rem 0.75rem 1rem;
  }
}

.eyebrow {
  margin: 0 0 0.4rem;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}
h2 {
  margin: 0 0 0.55rem;
  font-size: 1.1rem;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.lede {
  margin: 0;
  color: var(--ink-soft);
  max-width: 62ch;
  font-size: 1.02rem;
}

.hero-actions, .row, .tool-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.hero-actions { margin-top: 1.05rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: var(--radius);
  padding: 0.62rem 1.05rem;
  background: var(--accent);
  color: var(--accent-ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(13, 148, 136, 0.22);
}
.btn:hover { filter: brightness(1.05); color: var(--accent-ink); }
.btn-ghost {
  background: var(--surface-2);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  box-shadow: none;
}
.btn-ghost:hover { color: var(--ink); border-color: #a9bbd0; }

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 0.75rem;
  margin: 0.35rem 0 1.35rem;
}
.card {
  display: block;
  color: inherit;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.95rem 1rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease;
}
.card:hover {
  transform: translateY(-1px);
  border-color: #9fc0d8;
  box-shadow: 0 10px 22px rgba(15, 32, 51, 0.1);
  color: inherit;
}
.card__icon {
  display: inline-flex;
  color: var(--accent);
  margin-bottom: 0.45rem;
}
.card__icon .icon { width: 1.35rem; height: 1.35rem; }
.card h2 { margin: 0 0 0.3rem; font-size: 1rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.88rem; }

.category-block {
  margin: 0 0 1rem;
  padding: 0.95rem 1rem 1.05rem;
}
.category-block__head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line);
}
.category-block__head h2 { margin: 0; }
.category-block__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(13, 148, 136, 0.18);
}
.category-block__icon .icon { width: 1.1rem; height: 1.1rem; }

.tool-tile-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.35rem;
}
.tool-tile-list a {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.55rem;
  border-radius: var(--radius-sm);
  color: var(--ink);
  border: 1px solid transparent;
  font-weight: 500;
  font-size: 0.92rem;
}
.tool-tile-list a:hover {
  background: #eef4fa;
  border-color: var(--line);
  color: var(--ink);
}
.tool-tile-list a span {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}
.tool-tile-list strong { font-weight: 650; }
.tool-tile-list em {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 450;
}

.tool-group { margin: 1.2rem 0 0; }
.tool-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.25rem;
}
.tool-list a { color: var(--ink-soft); font-weight: 500; }
.tool-list a:hover { color: var(--accent); }

.badge {
  display: inline-flex;
  align-items: center;
  margin: 0.7rem 0 1rem;
  padding: 0.28rem 0.55rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(13, 148, 136, 0.25);
}

.tool-about,
.tool-root,
.lookup-form,
.result-block,
.faq,
.legal-doc,
.proxy-check,
.bulk-ip,
.bulk-bl,
.webrtc-leak,
.proxy-anon {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.95rem 1.05rem;
  box-shadow: var(--shadow-soft);
  margin: 0.8rem 0;
}
.tool-about h2,
.tool-about h3 {
  margin: 0 0 0.45rem;
}
.tool-about h3 {
  margin-top: 0.85rem;
  font-size: 0.95rem;
}
.tool-about p { margin: 0 0 0.35rem; color: var(--ink-soft); }
.tool-about__list {
  margin: 0.35rem 0 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
}
.tool-about__list li { margin: 0.25rem 0; }
.lookup-form label {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.result-meta { margin: 0.6rem 0 0.85rem; }
.result-meta .muted { margin: 0; }
.result-meta__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
}
.permalink-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  padding: 0.55rem 0.7rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.permalink-bar__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.permalink-bar__input {
  flex: 1 1 220px;
  min-width: 0;
  max-width: 100%;
  font-family: var(--mono);
  font-size: 0.82rem;
  padding: 0.4rem 0.55rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
}
.btn-sm {
  padding: 0.35rem 0.7rem;
  font-size: 0.82rem;
  box-shadow: none;
}
.country-flag.fi,
.fi.country-flag {
  width: 1.15em;
  line-height: 0.85em;
  vertical-align: -0.05em;
  margin-right: 0.35rem;
  box-shadow: 0 0 0 1px rgba(15, 32, 51, 0.1);
}
.catalog-nav a.is-active {
  background: #dbeafe;
  color: #0f2744;
  font-weight: 700;
  border: 1px solid #93c5fd;
}
.catalog-nav a.is-active .icon { color: #1d4ed8; }
.credits-list {
  padding: 1rem 1.1rem;
  margin: 0 0 1rem;
}
.credits-list h2 {
  margin: 0 0 0.55rem;
  font-size: 1.02rem;
}
.credits-list ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
}
.credits-list li { margin: 0.4rem 0; }
.recheck-form { margin: 0; }
.result-link { margin: 0; font-size: 0.9rem; word-break: break-all; }

.dns-table-wrap {
  overflow: auto;
  padding: 0;
  margin: 0.85rem 0;
}
.dns-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.dns-table th,
.dns-table td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.dns-table thead th {
  background: #1e3a5f;
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.dns-table tbody tr:nth-child(even) { background: #f3faf5; }
.dns-table tbody tr:nth-child(odd) { background: #fff; }
.dns-ttl {
  font-family: var(--mono);
  font-size: 0.84rem;
  color: var(--ink-soft);
  white-space: nowrap;
}
.dns-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.4rem;
  padding: 0.22rem 0.45rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: #64748b;
}
.dns-type--a { background: #2563eb; }
.dns-type--aaaa { background: #06b6d4; }
.dns-type--ns { background: #16a34a; }
.dns-type--mx { background: #dc2626; }
.dns-type--soa { background: #ea580c; }
.dns-type--txt { background: #475569; }
.dns-type--cname { background: #7c3aed; }
.dns-type--caa { background: #0d9488; }
.check-panel {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
}
.check-panel__title {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
  font-weight: 700;
}
.check-panel__meta {
  margin: 0 0 0.5rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}
.check-panel__subtitle {
  margin: 0.85rem 0 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.fp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0.75rem 0.85rem;
}
.fp-tag {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  background: #eef4fa;
  border: 1px solid var(--line);
  font-family: var(--mono);
}
.fp-mono {
  font-family: var(--mono);
  font-size: 0.82rem;
}
.fp-mono--wrap { word-break: break-all; }
.fp-header-order {
  margin: 0 0 0.65rem;
  font-size: 0.84rem;
  word-break: break-word;
}
.fp-matrix td code { font-size: 0.78rem; }

.bfp-tool .bfp-id {
  display: block;
  margin: 0 0 0.85rem;
  padding: 0.75rem 0.85rem;
  font-size: 0.82rem;
  word-break: break-all;
  background: #f8fafc;
  border: 1px solid var(--line);
}
.bfp-panels { display: flex; flex-direction: column; gap: 0.85rem; }
.bfp-panel { margin: 0; min-width: 0; }
.bfp-panel .check-panel__title { word-break: break-word; }
.bfp-fonts { margin: 0; font-size: 0.88rem; line-height: 1.55; word-break: break-word; }
.bfp-empty { margin: 0; font-size: 0.88rem; }
.bfp-results[hidden] { display: none !important; }

.bfp-kv {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  min-width: 0;
}
.bfp-kv__row {
  display: grid;
  grid-template-columns: minmax(9rem, 12rem) minmax(0, 1fr);
  gap: 0.35rem 1.25rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.bfp-kv__row:last-child { border-bottom: 0; }
.bfp-kv__key {
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0.01em;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.bfp-kv__val {
  display: block;
  min-width: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.bfp-kv__val--hash {
  display: block;
  font-family: var(--mono);
  font-size: 0.78rem;
  line-height: 1.5;
  word-break: break-all;
  overflow-wrap: anywhere;
  padding: 0.35rem 0.45rem;
  background: #f8fafc;
  border: 1px solid var(--line);
}
.bfp-kv__val--empty { color: var(--muted); font-style: italic; }
.bfp-kv__bool.is-yes { color: #15803d; font-weight: 600; }
.bfp-kv__bool.is-no { color: var(--muted); }

.bfp-pre {
  margin: 0;
  max-width: 100%;
  padding: 0.55rem 0.65rem;
  font-family: var(--mono);
  font-size: 0.76rem;
  line-height: 1.45;
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: anywhere;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow-x: auto;
}

.bfp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  min-width: 0;
}
.bfp-chip {
  display: inline-block;
  max-width: 100%;
  padding: 0.15rem 0.45rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  line-height: 1.35;
  word-break: break-word;
  overflow-wrap: anywhere;
  background: #eef4fa;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.bfp-expand {
  min-width: 0;
}
.bfp-expand > summary {
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  list-style: none;
}
.bfp-expand > summary::-webkit-details-marker { display: none; }
.bfp-expand > summary::before {
  content: '▸ ';
  display: inline-block;
  transition: transform 0.15s ease;
}
.bfp-expand[open] > summary::before { transform: rotate(90deg); }
.bfp-expand .bfp-chips { margin-top: 0.45rem; }

.bfp-tool .fp-tags {
  margin: 0 0 0.85rem;
  padding: 0.65rem 0.75rem;
}
.bfp-tool .subnet-section-title {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .bfp-kv__row {
    grid-template-columns: minmax(7.5rem, 10rem) minmax(0, 1fr);
    gap: 0.35rem 0.85rem;
  }
}

@media (max-width: 720px) {
  .bfp-kv__row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
    padding: 0.65rem 0;
  }
  .bfp-kv__key {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .bfp-panel {
    padding: 0.75rem 0.85rem;
  }
  .bfp-tool .bfp-id {
    font-size: 0.76rem;
    padding: 0.65rem 0.75rem;
  }
}

@media (max-width: 520px) {
  .bfp-tool .tool-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .bfp-tool .tool-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .bfp-chip {
    font-size: 0.68rem;
  }
}

.redirect-chain {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.88rem;
}
.redirect-chain li { margin: 0.35rem 0; word-break: break-all; }
.code--preview {
  max-height: 12rem;
  overflow: auto;
  font-size: 0.82rem;
  margin: 0.5rem 0 0;
}
.ct-names { columns: 2; margin-top: 0.65rem; }
.dns-line { margin: 0.15rem 0; line-height: 1.45; }
.dns-line__text { font-family: var(--mono); font-size: 0.84rem; word-break: break-word; }
.dns-line__meta {
  display: inline-block;
  margin-left: 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-family: var(--font);
}
.geo-badge {
  display: inline-flex;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-sm);
  background: #dbeafe;
  color: #1e40af;
  font-weight: 700;
  font-size: 0.82rem;
}
.bl-summary {
  margin: 0.75rem 0 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.bl-summary--clean {
  background: #ecfdf5;
  border-color: #a7f3d0;
}
.bl-summary--listed {
  background: #fef2f2;
  border-color: #fecaca;
}
.bl-summary__title {
  margin: 0;
  font-weight: 700;
  font-size: 1.05rem;
}
.bl-summary__meta {
  margin: 0.35rem 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}
.bl-table-wrap { margin: 0 0 1rem; overflow-x: auto; }
.bl-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.bl-table th,
.bl-table td {
  padding: 0.55rem 0.65rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.bl-table th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: var(--surface-2);
}
.bl-table tbody tr:nth-child(even) { background: #f8fafc; }
.bl-detail { color: var(--ink-soft); font-size: 0.84rem; max-width: 22rem; }
.bl-cat {
  display: inline-flex;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.bl-cat--spam { background: #fee2e2; color: #991b1b; }
.bl-cat--attack { background: #ffedd5; color: #9a3412; }
.bl-cat--abuse { background: #ede9fe; color: #5b21b6; }
.bl-status {
  display: inline-flex;
  padding: 0.18rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.bl-status--clean { background: #dcfce7; color: #166534; }
.bl-status--listed { background: #fecaca; color: #991b1b; }
.bl-status--skipped { background: #e2e8f0; color: #475569; }
.bl-status--error { background: #fef3c7; color: #92400e; }
.ssl-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0.75rem 0 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.ssl-summary__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon--ssl-status {
  width: 52px;
  height: 52px;
}
.ssl-summary--ok .icon--ssl-status { color: #15803d; }
.ssl-summary--warn .icon--ssl-status { color: #b45309; }
.ssl-summary--fail .icon--ssl-status { color: #b91c1c; }
.ssl-summary__body { min-width: 0; }
.ssl-summary--ok {
  background: #ecfdf5;
  border-color: #a7f3d0;
}
.ssl-summary--warn {
  background: #fffbeb;
  border-color: #fde68a;
}
.ssl-summary--fail {
  background: #fef2f2;
  border-color: #fecaca;
}
.ssl-summary__title {
  margin: 0;
  font-weight: 700;
  font-size: 1.05rem;
}
.ssl-summary__meta {
  margin: 0.35rem 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}
.ssl-issues {
  margin: 0 0 1rem;
  padding: 0.65rem 0.85rem 0.65rem 1.25rem;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.ssl-issues li + li { margin-top: 0.45rem; }
.ssl-issue {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  line-height: 1.45;
}
.ssl-issue::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 1px;
}
.ssl-issue--error::before { background: #dc2626; }
.ssl-issue--warn::before { background: #d97706; }
.ssl-issue--info::before { background: #2563eb; }
.ssl-pill {
  display: inline-flex;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.ssl-pill--ok { background: #dcfce7; color: #166534; }
.ssl-pill--warn { background: #fef3c7; color: #92400e; }
.ssl-pill--fail { background: #fecaca; color: #991b1b; }
.ssl-sans {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.ssl-chain {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.ssl-chain__table {
  overflow-x: auto;
  margin: 0 -0.25rem;
}
.ssl-chain__table .bl-table { margin: 0; }
.ssl-sans__title,
.ssl-chain__title {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 700;
}
.ssl-sans__list {
  margin: 0;
  padding: 0;
  list-style: none;
  columns: 2;
  gap: 1rem;
}
.ssl-sans__list li {
  break-inside: avoid;
  margin: 0.2rem 0;
  font-size: 0.84rem;
}
.ssl-sans__list code { font-size: 0.82rem; }
.ssl-role {
  display: inline-flex;
  padding: 0.12rem 0.4rem;
  border-radius: var(--radius-sm);
  background: #e2e8f0;
  color: #334155;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}
.lookalike-summary {
  margin: 0.75rem 0 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
  background: #eff6ff;
}
.lookalike-summary__title {
  margin: 0;
  font-weight: 700;
  font-size: 1.05rem;
}
.lookalike-summary__meta {
  margin: 0.35rem 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}
.lookalike-copy { margin: 0 0 0.75rem; }
.lookalike-table-wrap {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow-x: auto;
}
.lookalike-table { margin: 0; }
.lookalike-domain { font-size: 0.88rem; word-break: break-all; }
.lookalike-swap {
  color: var(--ink-soft);
  font-size: 0.84rem;
  max-width: 18rem;
}
.lookalike-table code { font-size: 0.82rem; word-break: break-all; }
.geo-note { margin: 0.35rem 0 0.75rem; font-size: 0.84rem; }
.raw-json {
  margin: 0.75rem 0 1rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.65rem 0.85rem;
}
.raw-json summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink-soft);
}
.field { margin-bottom: 0.75rem; }
.field--hinted .field__label {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}
.field__hint {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}
.tool-root .tool-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}
.cron-tool .cron-lede { margin: 0 0 0.85rem; font-size: 0.92rem; }
.cron-section-title {
  margin: 1rem 0 0.55rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.cron-tool .cron-section-title:first-of-type { margin-top: 0; }
.cron-fields {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.85rem 1rem;
}
.cron-fields .field { margin-bottom: 0; }
.cron-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.cron-expression {
  display: block;
  margin: 0;
  padding: 0.75rem 0.85rem;
  background: #f6f9fc;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-family: var(--mono);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.cron-summary {
  margin: 0.55rem 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.cron-ref { margin-top: 0.85rem; }
.cron-next-runs {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0.75rem 0.85rem;
  background: #f6f9fc;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.cron-next-runs li {
  font-family: var(--mono);
  font-size: 0.86rem;
  padding: 0.2rem 0;
  color: var(--ink-soft);
}
.cron-next-hint { margin: 0 0 0.35rem; font-size: 0.82rem; }

.devops-verdict {
  margin: 0;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  font-weight: 650;
  font-size: 0.95rem;
}
.tool-root .tool-actions + .devops-verdict,
.tool-root .tool-actions + .tool-feedback,
.tool-root .tool-actions + .tool-actions--secondary {
  margin-top: 1.15rem;
}
.tool-root .tool-feedback {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.tool-root .tool-actions--secondary {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.tool-root .devops-verdict + .tool-actions--secondary {
  margin-top: 1.15rem;
}
.tool-root .tool-actions--secondary + .bfp-results {
  margin-top: 1.15rem;
}
.tool-root .btn-copy {
  display: none;
}
.tool-root.is-ready .btn-copy {
  display: inline-flex;
}
.tool-root .tool-actions--secondary[hidden] {
  display: none !important;
}
.tool-root.is-ready .tool-actions--secondary:not([hidden]) {
  display: flex;
}
.devops-verdict--ok { background: #ecfdf5; border: 1px solid #6ee7b7; color: #065f46; }
.devops-verdict--warn { background: #fffbeb; border: 1px solid #fcd34d; color: #92400e; }
.devops-verdict--fail { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }
.devops-verdict--neutral { background: #f6f9fc; border: 1px solid var(--line); color: var(--ink); }
.devops-tool .muted { font-size: 0.92rem; }

.lorem-preview {
  margin: 0.75rem 0 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  background: #fff;
  max-height: 14rem;
  overflow: auto;
  line-height: 1.55;
  font-size: 0.95rem;
  color: var(--ink);
}
.lorem-preview__body { white-space: pre-wrap; word-break: break-word; }

.env-warnings { margin: 0.65rem 0; }
.env-warn { margin: 0.25rem 0; color: #b45309; font-size: 0.88rem; font-weight: 600; }
.env-table-wrap { overflow-x: auto; margin-top: 0.5rem; }
.env-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.env-table th,
.env-table td {
  padding: 0.45rem 0.55rem;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.env-table thead th {
  background: #eef4fa;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--muted);
}
.env-table tbody tr:nth-child(even) { background: #f8fafc; }
.env-table td:nth-child(1) { width: 3rem; color: var(--muted); }
.env-table td:nth-child(2) { font-family: var(--mono); font-weight: 600; white-space: nowrap; }
.env-table td:nth-child(3) { font-family: var(--mono); font-size: 0.86rem; word-break: break-all; }

.regex-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
}
.regex-flag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--mono);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}
.regex-highlight {
  margin: 0 0 0.85rem;
  padding: 0.75rem 0.85rem;
  background: #f8fafc;
  border: 1px solid var(--line);
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.55;
}
.regex-hit {
  background: #fef08a;
  color: #713f12;
  padding: 0 0.1em;
  border-radius: 2px;
}
.regex-table-wrap { margin-bottom: 0.85rem; }
.regex-replace-out {
  margin: 0.35rem 0 0;
  padding: 0.75rem 0.85rem;
  background: #f0fdf4;
  border: 1px solid #86efac;
  white-space: pre-wrap;
  word-break: break-word;
}
.regex-preset-groups { margin-bottom: 0.5rem; }
.regex-preset-group { margin-bottom: 0.75rem; }
.regex-preset-group__title {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.regex-preset-group__bar { margin-bottom: 0; }

.ssh-key-results { display: flex; flex-direction: column; gap: 0.85rem; }
.ssh-key-card {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: #fff;
}
.ssh-key-card--error { border-color: #fca5a5; background: #fef2f2; }
.ssh-key-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.75rem;
  margin-bottom: 0.55rem;
}
.ssh-key-card__line {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.ssh-key-card__type {
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  background: #eef4fa;
  border: 1px solid var(--line);
}
.ssh-key-card__type--error { background: #fee2e2; border-color: #fca5a5; color: #991b1b; }
.ssh-key-card__comment { font-weight: 600; font-size: 0.92rem; }
.ssh-key-card__options { margin: 0 0 0.5rem; font-size: 0.84rem; font-family: var(--mono); word-break: break-all; }
.ssh-key-card__kv { margin: 0; }
.ssh-key-card__actions { margin-top: 0.55rem; }
.ssh-key-card__err { margin: 0 0 0.45rem; color: #991b1b; font-weight: 600; font-size: 0.88rem; }
.ssh-key-card__source { margin: 0; font-size: 0.78rem; max-height: 4.5rem; overflow: auto; }
.ssh-key-warn {
  margin: 0.35rem 0;
  padding: 0.55rem 0.75rem;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  color: #92400e;
  font-size: 0.86rem;
  font-weight: 600;
}

.encode-tool .encode-out {
  margin: 0 0 0.85rem;
  padding: 0.75rem 0.85rem;
  min-height: 2.5rem;
  white-space: pre-wrap;
  word-break: break-word;
}
.encode-meta { margin: 0 0 0.65rem; font-size: 0.84rem; }

.convert-tool .field textarea {
  min-height: 10rem;
  font-family: var(--mono);
  font-size: 0.86rem;
  line-height: 1.45;
}
.convert-tool .encode-out {
  max-height: 32rem;
  overflow: auto;
}
.convert-preview {
  padding: 0.85rem 1rem;
  margin-bottom: 0.85rem;
  min-height: 3rem;
  line-height: 1.55;
  color: var(--ink);
}
.convert-preview h1,
.convert-preview h2,
.convert-preview h3 {
  margin: 0.5rem 0 0.35rem;
  font-size: 1rem;
}
.convert-preview code {
  font-family: var(--mono);
  font-size: 0.88em;
  background: #eef4fa;
  padding: 0.1em 0.35em;
  border-radius: var(--radius-sm);
}

.data-units-tool .data-units-input-row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(180px, 1.4fr);
  gap: 0.75rem 1rem;
  align-items: end;
}
.data-units-tool .field--inline {
  margin: 0;
}
.data-units-select {
  width: 100%;
  font: inherit;
  padding: 0.5rem 0.6rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fff;
}
.data-units-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.data-units-results {
  display: grid;
  gap: 0.85rem;
}
.data-units-group__hint {
  margin: -0.35rem 0 0.45rem;
  font-size: 0.84rem;
}
.data-units-exact,
.data-units-transfer {
  padding: 0.75rem 0.85rem;
}
.unit-table tr.is-source {
  background: #ecfdf5;
}
.unit-table tr.is-source td {
  font-weight: 700;
  color: #065f46;
}
.unit-table__val {
  font-family: var(--mono);
  font-size: 0.88rem;
  word-break: break-all;
}
.unit-table__action {
  width: 4.5rem;
  text-align: right;
}
.unit-table__copy {
  padding: 0.15rem 0.45rem;
  font-size: 0.74rem;
}

@media (max-width: 640px) {
  .data-units-tool .data-units-input-row {
    grid-template-columns: 1fr;
  }
}

.encode-mode-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.encode-mode-bar .btn.is-active {
  background: #eef4fa;
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 700;
}
.encode-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-bottom: 0.65rem;
}
.encode-option {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  cursor: pointer;
}
.encode-option--block { display: flex; margin-bottom: 0.65rem; }
.encode-hash-table td.encode-hash-digest {
  font-family: var(--mono);
  font-size: 0.82rem;
  word-break: break-all;
}
.jwt-tool .jwt-panel {
  margin: 0 0 0.85rem;
  padding: 0.75rem 0.85rem;
  max-height: 240px;
  overflow: auto;
  font-size: 0.82rem;
}
.jwt-tool .jwt-sig {
  margin: 0;
  padding: 0.65rem 0.85rem;
  font-size: 0.78rem;
  word-break: break-all;
  color: var(--muted);
}
.jwt-claims { margin-bottom: 0.85rem; }

.charset-table-wrap { max-height: 420px; overflow: auto; }
.charset-table td.charset-char {
  font-size: 1.1rem;
  min-width: 2.5rem;
  text-align: center;
}
.charset-table td.charset-mono {
  font-family: var(--mono);
  font-size: 0.82rem;
  white-space: nowrap;
}
.charset-row--highlight { background: #f0fdf4; }
.charset-tool .encode-meta { margin: 0.5rem 0 0.75rem; font-weight: 600; }

.cert-tool .cert-warn {
  margin: 0 0 0.85rem;
  padding: 0.65rem 0.85rem;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  color: #92400e;
  font-size: 0.88rem;
  font-weight: 600;
}
.cert-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem 1rem;
  margin-bottom: 0.5rem;
}
.cert-pem {
  max-height: 220px;
  overflow: auto;
  font-size: 0.78rem;
  margin: 0 0 0.85rem;
}
.cert-status { margin: 0.5rem 0; }

.subnet-tool .subnet-lede { margin: 0 0 0.85rem; font-size: 0.92rem; }
.subnet-section-title,
.tool-section-title {
  margin: 1rem 0 0.55rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.subnet-tool .subnet-section-title:first-of-type { margin-top: 0; }
.subnet-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.subnet-cidr {
  display: block;
  margin: 0 0 0.65rem;
  padding: 0.75rem 0.85rem;
  background: #f6f9fc;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-family: var(--mono);
  font-size: 1.05rem;
  font-weight: 600;
}
.subnet-error { margin: 0.65rem 0 0; }

.timestamp-tool .timestamp-lede { margin: 0 0 0.85rem; font-size: 0.92rem; }
.timestamp-section-title {
  margin: 1rem 0 0.55rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.timestamp-tool .timestamp-section-title:first-of-type { margin-top: 0; }
.timestamp-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.timestamp-results { margin: 0; }
.timestamp-results dd {
  font-family: var(--mono);
  font-size: 0.88rem;
  word-break: break-word;
}
.timestamp-results__text {
  font-family: inherit;
  font-size: 0.92rem;
  line-height: 1.4;
}
.timestamp-error { margin: 0.65rem 0 0; }

.locale-index { padding: 0.95rem 1.05rem; }
.locale-search-bar { margin-bottom: 1rem; }
.locale-search-bar__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
}
.locale-search-bar__field {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.62rem 0.8rem;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  box-shadow: inset 0 1px 2px rgba(15, 32, 51, 0.04);
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
}
.locale-search-bar__field:focus-within {
  border-color: #7eb8d4;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.14);
}
.locale-search-bar__icon {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--muted);
  flex-shrink: 0;
}
.locale-search-bar__field input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
}
.locale-search-bar__field input:focus { outline: none; }
.locale-search-bar__field input::placeholder { color: #94a3b8; }
.locale-search-bar__field input[type="search"]::-webkit-search-decoration,
.locale-search-bar__field input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}
.locale-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 0.45rem;
}
.locale-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.62rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.88rem;
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
}
.locale-card:hover {
  border-color: #9fc0d8;
  box-shadow: 0 4px 12px rgba(15, 32, 51, 0.08);
  color: var(--ink);
}
.locale-card__flag .country-flag { width: 1.25rem; line-height: 1; border-radius: 1px; }
.locale-card__code { font-family: var(--mono); font-size: 0.82rem; }
.locale-empty { margin: 0.75rem 0 0; }
.locale-back { margin: 0 0 0.85rem; }
.locale-back a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--accent);
}
.locale-back__icon { transform: rotate(180deg); }
.locale-detail-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
  padding: 0.95rem 1.05rem;
}
.locale-detail-head__flag .country-flag { width: 2rem; border-radius: 2px; }
.locale-detail-head__tag { margin: 0 0 0.2rem; font-size: 1.05rem; }
.locale-detail-head__meta { margin: 0; font-size: 0.88rem; }
.locale-results__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.65rem;
  margin: 0 0 0.85rem;
}
.locale-panel {
  margin: 0;
  padding: 0.75rem 0.85rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}
.locale-panel__label {
  margin: 0 0 0.35rem;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.locale-panel__value {
  margin: 0;
  font-size: 1rem;
  font-weight: 650;
  color: var(--ink);
  line-height: 1.35;
  word-break: break-word;
}
.locale-panel__value--mono {
  font-family: var(--mono);
  font-size: 0.88rem;
  font-weight: 600;
}
.locale-options { margin-top: 0.35rem; }

.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.6rem;
}
input[type="text"],
input[type="number"],
textarea,
select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.62rem 0.7rem;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(2, 132, 199, 0.25);
  border-color: #7db7d8;
}
textarea {
  min-height: 150px;
  font-family: var(--mono);
  font-size: 0.86rem;
}
.row input { flex: 1; min-width: 180px; width: auto; }

.code,
pre.code {
  margin: 0.4rem 0 0;
  background: #0f172a;
  color: #e2e8f0;
  border: 1px solid #1e293b;
  border-radius: var(--radius-sm);
  padding: 0.8rem;
  overflow: auto;
  font-family: var(--mono);
  font-size: 0.84rem;
}
.kv,
.subnet-results {
  display: grid;
  grid-template-columns: minmax(9rem, 12rem) minmax(0, 1fr);
  gap: 0 1.25rem;
  margin: 0;
  align-items: start;
}
.kv dt,
.subnet-results dt {
  margin: 0;
  padding: 0.55rem 0;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--muted);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.kv dd,
.subnet-results dd {
  margin: 0;
  padding: 0.55rem 0;
  font-size: 0.88rem;
  line-height: 1.45;
  word-break: break-word;
  overflow-wrap: anywhere;
  border-bottom: 1px solid var(--line);
  font-family: inherit;
}
.kv dd:last-child,
.subnet-results dd:last-child {
  border-bottom: 0;
}
.kv dd code,
.subnet-results dd code {
  font-size: 0.84rem;
  word-break: break-all;
}
.kv.raised,
.kv.result-block {
  padding: 0.85rem 1rem;
}

@media (max-width: 720px) {
  .kv,
  .subnet-results {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .kv dt,
  .subnet-results dt {
    padding: 0.65rem 0 0.18rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .kv dd,
  .subnet-results dd {
    padding: 0 0 0.65rem;
  }
  .kv.raised,
  .kv.result-block {
    padding: 0.75rem 0.85rem;
  }
}

.error { color: var(--danger); }
.muted { color: var(--muted); }

.faq details { margin: 0.4rem 0; }
.faq summary { cursor: pointer; font-weight: 600; color: var(--ink-soft); }

.catalog-nav__group { margin-bottom: 0.85rem; }
.catalog-nav__title {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Sidebar + mobile drawer: stronger category labels vs tool links */
.catalog-nav--sidebar .catalog-nav__group,
.catalog-nav--drawer .catalog-nav__group {
  margin-bottom: 0;
  padding-bottom: 0.72rem;
}
.catalog-nav--sidebar .catalog-nav__group:not(:first-child),
.catalog-nav--drawer .catalog-nav__group:not(:first-child) {
  padding-top: 0.82rem;
  border-top: 1px solid var(--line);
}
.catalog-nav--sidebar .catalog-nav__title,
.catalog-nav--drawer .catalog-nav__title {
  margin: 0 0 0.48rem;
  padding: 0.3rem 0.5rem 0.3rem 0.55rem;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  color: #0f766e;
  font-weight: 800;
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.catalog-nav--sidebar .catalog-nav__title .icon,
.catalog-nav--drawer .catalog-nav__title .icon {
  color: var(--accent);
  flex-shrink: 0;
}
.catalog-nav--sidebar ul,
.catalog-nav--drawer ul {
  gap: 0.08rem;
}

.catalog-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.12rem;
}
.catalog-nav--sidebar a {
  font-size: 0.8rem;
  padding: 0.18rem 0.3rem;
}
.catalog-nav a {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
  padding: 0.28rem 0.35rem;
  border-radius: var(--radius-sm);
}
.catalog-nav a:hover {
  background: #eef4fa;
  color: var(--ink);
}
.catalog-nav a .icon { color: var(--accent); }

.catalog-nav--footer {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.95rem 1.15rem;
}
.catalog-nav--footer .catalog-nav__group { margin: 0; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.15rem 1.1rem 1.4rem;
  background: #eef2f7;
}
.footer-shell { display: grid; gap: 0.95rem; }
.footer-catalog {
  padding: 1rem 1.1rem;
  color: var(--ink);
}
.footer-catalog__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.85rem 1.5rem;
  margin-bottom: 0.95rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}
.footer-catalog__head .footer-catalog__heading {
  margin: 0;
  flex: 0 1 auto;
}
.brand--footer .brand__mark {
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
}
.legal-doc h2 {
  margin: 1rem 0 0.45rem;
  font-size: 1rem;
}
.legal-doc {
  margin-top: 0;
}
.legal-doc h2:first-child { margin-top: 0; }
.legal-doc p,
.legal-doc li { color: var(--ink-soft); line-height: 1.55; }
.legal-doc__updated { margin-top: 1rem; font-size: 0.84rem; }
.contact-form label {
  display: block;
  margin: 0.65rem 0 0.3rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}
.contact-form label:first-of-type { margin-top: 0; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  font: inherit;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 8rem; }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  padding: 0.85rem 1.1rem;
}
.footer-legal__copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 400;
  white-space: nowrap;
  flex: 0 1 auto;
}
.footer-legal__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 1.1rem;
  flex: 0 1 auto;
  margin-left: auto;
}
.footer-legal__nav a {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
}
.footer-legal__nav a:hover,
.footer-legal__nav a.is-active {
  color: var(--accent);
}
.tool-disclaimer {
  margin: 1.25rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
  line-height: 1.5;
}
.tool-disclaimer a { color: var(--accent); }
.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 120;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  max-width: min(720px, calc(100vw - 2rem));
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--line-strong);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.12);
}
.cookie-consent[hidden] { display: none !important; }
.cookie-consent__text {
  margin: 0;
  flex: 1 1 16rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ink-soft);
}
.cookie-consent__text a { color: var(--accent); }
.contact-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.site-drawer__foot {
  flex-wrap: wrap;
  gap: 0.55rem 0.85rem;
}
.footer-note {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.ad-slot { margin: 0; width: auto; }
.ad-slot--sidebar { padding: 0; }
.ad-slot--incontent { margin: 1rem 0 0; }
.ad-slot--footer { margin: 0; }
.ad-slot__inner {
  min-height: 72px;
  border: 1px dashed #c9d6e6;
  border-radius: var(--radius);
  background: #eef3f8;
  display: grid;
  place-items: center;
  color: #8a9bb0;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ad-slot--sidebar .ad-slot__inner { min-height: 160px; }
.ad-slot--top .ad-slot__inner { min-height: 90px; }

.preview-glass {
  min-height: 120px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #134e4a, #0c4a6e);
  color: #e2e8f0;
}
.swatch {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}
.palette { display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; }
.locale-list { columns: 2; }
@media (min-width: 900px) { .locale-list { columns: 3; } }

@media (max-width: 980px) {
  .layout-shell {
    grid-template-columns: 1fr;
  }
  .sidebar-panel {
    display: none;
  }
  .header-tools { display: none; }
  .lang-switch { display: none; }
  .header-menu-btn { display: inline-flex; }
  .header-shell {
    flex-wrap: nowrap;
    gap: 0.65rem;
  }
  .brand__tag { display: none; }
  .ad-slot { display: none !important; }
}
body.drawer-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

@media (max-width: 640px) {
  :root { --shell: min(100% - 1.25rem, 1440px); }
  .content-panel { padding: 1rem; }
  .tool-tile-list { grid-template-columns: 1fr; }
  .header-menu-btn__text { display: none; }
  .toast-stack {
    left: 1rem;
    right: 1rem;
    width: auto;
  }
  .bl-table-wrap {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    -webkit-overflow-scrolling: touch;
  }
  .bl-table th,
  .bl-table td {
    padding: 0.45rem 0.5rem;
    font-size: 0.8rem;
  }
}

/* Proxy checker */
.proxy-check {
  margin-top: 0;
}
.proxy-check__input { font-family: var(--mono); font-size: 0.88rem; }
.proxy-check__hint { margin: 0.35rem 0 1rem; font-size: 0.86rem; }
.proxy-check__actions { margin-bottom: 1rem; }
.proxy-check__progress { margin: 0 0 1rem; }
.proxy-check__progress-bar {
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, #2dd4bf, #38bdf8);
  transition: width 0.2s ease;
}
.proxy-check__progress-text { margin: 0.45rem 0 0; font-size: 0.86rem; color: var(--muted); }
.proxy-check__summary p { margin: 0 0 1rem; font-size: 0.92rem; }
.proxy-check__export { margin: 0 0 1rem; }
.proxy-check__format { max-width: 22rem; margin-bottom: 0.85rem; }
.proxy-check__format-select { width: 100%; }
.proxy-check__export-label { margin: 0 0 0.45rem; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); }
.proxy-check__export-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.proxy-check__export-btns { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.proxy-check__export-row > #proxy-copy-selected { margin-left: auto; }
@media (max-width: 560px) {
  .proxy-check__export-row > #proxy-copy-selected { margin-left: 0; width: 100%; }
}
.pc-table-wrap { margin: 0 0 1rem; overflow-x: auto; }
.pc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}
.pc-table th,
.pc-table td {
  padding: 0.5rem 0.55rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.pc-table th {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: var(--surface-2);
}
.pc-table tbody tr:nth-child(even) { background: #f8fafc; }
.pc-proxy code { font-size: 0.8rem; word-break: break-all; }
.pc-error { color: var(--ink-soft); font-size: 0.82rem; max-width: 14rem; }
.pc-status-cell { width: 3rem; text-align: center; vertical-align: middle; }
.pc-status-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  line-height: 0;
}
.pc-status-icon--ok { color: #047857; }
.pc-status-icon--fail { color: #b91c1c; }
.pc-loc-cell { min-width: 10rem; }
.pc-loc {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}
.pc-loc .country-flag {
  width: 1.15rem;
  line-height: 1;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.pc-loc-country { font-weight: 600; }
.pc-loc-city { color: var(--ink-soft); }
.pc-loc-sep { color: var(--muted); }
.proxy-parse-errors {
  margin: 0.35rem 0 0;
  padding: 0.65rem 0.75rem;
  background: #fffbeb;
  border: 1px solid #fde68a;
  font-size: 0.82rem;
  overflow-x: auto;
}

/* Marketing / SEO tools */
.serp-preview {
  padding: 0.85rem 1rem;
  max-width: 36rem;
}
.serp-preview__url {
  margin: 0 0 0.2rem;
  font-size: 0.82rem;
  color: #15803d;
}
.serp-preview__title {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  color: #1a0dab;
  line-height: 1.3;
}
.serp-preview__desc {
  margin: 0;
  font-size: 0.88rem;
  color: #4b5563;
  line-height: 1.45;
}
.serp-preview__meta { margin: 0.55rem 0 0; font-size: 0.8rem; }
.contrast-colors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}
.contrast-colors label { display: grid; gap: 0.35rem; }
.contrast-colors input[type="color"] {
  width: 100%;
  height: 2.5rem;
  padding: 0.15rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fff;
}
.contrast-ratio {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}
.contrast-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}
.contrast-badge {
  display: inline-flex;
  padding: 0.2rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
}
.contrast-badge--ok { background: #ecfdf5; color: #047857; }
.contrast-badge--fail { background: #fef2f2; color: #b91c1c; }
.contrast-preview {
  padding: 1.25rem 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: var(--radius);
  min-height: 4rem;
  display: grid;
  place-items: center;
}
@media (max-width: 640px) {
  .contrast-colors { grid-template-columns: 1fr; }
}

.mkt-rows {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}
.mkt-row {
  display: grid;
  gap: 0.55rem;
  padding: 0.75rem 0.85rem;
}
.mkt-row .btn { justify-self: start; }
.mkt-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-bottom: 0.85rem;
}
.mkt-check {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  cursor: pointer;
}
.mkt-kw-summary { margin: 0.5rem 0; }
.mkt-kw-table .mkt-kw-section td {
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: var(--surface-2);
  padding-top: 0.65rem;
}

/* Proxy checker options + details */
.pc-options {
  margin: 0 0 1.1rem;
  padding: 0.95rem 1rem 1rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
}
.pc-options__title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.pc-options__grid {
  display: grid;
  gap: 0.65rem;
}
@media (min-width: 720px) {
  .pc-options__grid { grid-template-columns: 1fr 1fr; }
}
.pc-toggle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.pc-toggle:hover { border-color: #cbd5e1; }
.pc-toggle:has(.pc-toggle__input:checked) {
  border-color: #0d9488;
  box-shadow: inset 0 0 0 1px rgba(13, 148, 136, 0.15);
}
.pc-toggle__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pc-toggle__shell {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: #64748b;
}
.pc-toggle__icon {
  display: block;
  flex-shrink: 0;
}
.pc-toggle:has(.pc-toggle__input:checked) .pc-toggle__shell {
  background: #ecfdf5;
  border-color: #0d9488;
  color: #0f766e;
  box-shadow: inset 0 0 0 1px rgba(13, 148, 136, 0.2);
}
.pc-toggle__text { min-width: 0; }
.pc-toggle__label {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}
.pc-toggle__hint {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}
.pc-options__sub {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}
.pc-stepper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
}
.pc-stepper__label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}
.pc-stepper__control {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--line);
  background: #fff;
}
.pc-stepper__btn {
  width: 2.1rem;
  border: 0;
  background: var(--surface-2);
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}
.pc-stepper__btn:hover { background: #e2e8f0; }
.pc-stepper__input {
  width: 2.75rem;
  border: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: center;
  font-weight: 700;
  font-family: var(--mono);
  background: #fff;
  padding: 0.45rem 0;
}
.pc-stepper__hint {
  font-size: 0.78rem;
  color: var(--muted);
}

.pc-details-row td {
  background: #f1f5f9;
  border-top: none;
  padding: 0.65rem 0.75rem 0.85rem;
}
.pc-detail-grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
}
.pc-detail-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: center;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  background: #fff;
}
.pc-detail-card--wide { grid-column: 1 / -1; align-items: start; }
.pc-detail-card__icon {
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  color: #475569;
}
.pc-detail-card--error {
  border-color: #fecaca;
  background: #fef2f2;
}
.pc-detail-card--error .pc-detail-card__icon {
  background: #fee2e2;
  color: #b91c1c;
}
.pc-detail-card--elite .pc-detail-card__icon { background: #ecfdf5; color: #047857; }
.pc-detail-card--anon .pc-detail-card__icon { background: #fffbeb; color: #b45309; }
.pc-detail-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.pc-detail-card__value {
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.45;
  word-break: break-word;
}
.pc-detail-error {
  color: #b91c1c;
  font-weight: 500;
}
.pc-detail-ips {
  margin-top: 0.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.pc-anon-badge {
  display: inline-block;
  padding: 0.12rem 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid var(--line);
}
.pc-anon-badge--elite { background: #ecfdf5; border-color: #6ee7b7; color: #047857; }
.pc-anon-badge--anonymous { background: #fffbeb; border-color: #fcd34d; color: #b45309; }
.pc-anon-badge--transparent { background: #fef2f2; border-color: #fca5a5; color: #b91c1c; }
.pc-tag {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.08rem 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--muted);
  vertical-align: middle;
}
.pc-tag--ok { border-color: #6ee7b7; background: #ecfdf5; color: #047857; }
.pc-probe-list {
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}
.pc-probe {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 0.65rem;
  padding: 0.45rem 0.55rem;
  border: 1px solid var(--line);
  background: var(--surface-2);
  font-size: 0.82rem;
}
.pc-probe--ok { border-left: 3px solid #047857; }
.pc-probe--fail { border-left: 3px solid #b91c1c; }
.pc-probe__scheme {
  font-family: var(--mono);
  font-weight: 600;
  color: var(--ink);
}
.pc-probe__status { color: var(--ink-soft); }
.pc-probe__err {
  grid-column: 1 / -1;
  color: #b91c1c;
  font-size: 0.8rem;
}
.pc-details-empty {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.pc-details-toggle--fail {
  color: #b91c1c;
  border-color: #fecaca;
}
.pc-details-toggle.is-open {
  background: var(--surface-2);
}
.pc-detail strong { color: var(--muted); font-weight: 600; margin-right: 0.25rem; }
.pc-detail--error { color: #b91c1c; }
.pc-row--warn { background: #fffbeb; }

/* Bulk IP / blacklist */
.bulk-ip,
.bulk-bl { margin-top: 0; }
.bulk-ip .field--hinted,
.bulk-bl .field--hinted { margin-bottom: 0.5rem; }
.bulk-ip__input,
.bulk-bl__input { font-family: var(--mono); font-size: 0.88rem; }
.bulk-ip__hint,
.bulk-bl__hint { margin: 0 0 1.25rem; font-size: 0.86rem; }
.bulk-ip__actions,
.bulk-bl__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0 0 1.25rem; }
.bulk-ip__progress,
.bulk-bl__progress {
  margin: 0 0 1rem;
  height: 4px;
  background: #e2e8f0;
  overflow: hidden;
}
.bulk-ip__progress-bar,
.bulk-bl__progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #2dd4bf, #38bdf8);
  transition: width 0.2s ease;
}
.bulk-ip__progress-text,
.bulk-bl__progress-text { margin: 0.55rem 0 0; font-size: 0.86rem; color: var(--muted); }
.bulk-ip__summary,
.bulk-bl__summary { margin: 0 0 1rem; }
.bulk-ip__summary p,
.bulk-bl__summary p { margin: 0; font-size: 0.92rem; }
.bulk-ip .pc-table-wrap,
.bulk-bl .pc-table-wrap { margin: 0 0 1rem; }
.bulk-ip-table .pc-loc-cell { min-width: 10rem; }
.pc-status { font-size: 0.82rem; font-weight: 600; }
.pc-status--ok { color: #047857; }
.pc-status--fail { color: #b91c1c; }
.bl-verdict { font-weight: 600; font-size: 0.86rem; }
.bl-verdict--clean { color: #047857; }
.bl-verdict--listed { color: #b45309; }

/* WebRTC leak test */
.webrtc-leak { margin-top: 0; }
.webrtc-leak__actions { margin-bottom: 1rem; }
.webrtc-leak__status {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.webrtc-leak__status[hidden],
.webrtc-leak__results[hidden],
.webrtc-leak__candidates[hidden] {
  display: none !important;
}
.webrtc-leak__spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid #cbd5e1;
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: webrtc-spin 0.8s linear infinite;
}
@keyframes webrtc-spin { to { transform: rotate(360deg); } }
.webrtc-leak__results { display: grid; gap: 0.95rem; }
.webrtc-leak__verdict {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  background: #fff;
}
.webrtc-verdict__icon {
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}
.webrtc-verdict--pass .webrtc-verdict__icon { background: #ecfdf5; color: #047857; }
.webrtc-verdict--fail .webrtc-verdict__icon { background: #fef2f2; color: #b91c1c; }
.webrtc-verdict--warn .webrtc-verdict__icon { background: #fffbeb; color: #b45309; }
.webrtc-verdict--pass { border-left: 3px solid #047857; }
.webrtc-verdict--fail { border-left: 3px solid #b91c1c; }
.webrtc-verdict--warn { border-left: 3px solid #b45309; }
.webrtc-verdict__body { min-width: 0; }
.webrtc-verdict__title { margin: 0 0 0.35rem; font-weight: 700; font-size: 1.05rem; }
.webrtc-verdict__detail { margin: 0; color: var(--ink-soft); font-size: 0.92rem; line-height: 1.45; }
.webrtc-leak__cards { margin: 0; }
.webrtc-leak__candidates {
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.85rem 1rem;
}
.webrtc-candidates__title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.webrtc-candidates__title svg { color: var(--accent); }
.webrtc-candidate-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}
.webrtc-candidate-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem 0.75rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--line);
  background: var(--surface-2);
}
.webrtc-candidate-item__ip code {
  font-family: var(--mono);
  font-size: 0.88rem;
  word-break: break-all;
}
.webrtc-candidate-item__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}
.webrtc-type-badge {
  display: inline-block;
  padding: 0.12rem 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
}
.webrtc-type-badge--host { border-color: #fcd34d; background: #fffbeb; color: #92400e; }
.webrtc-type-badge--srflx { border-color: #93c5fd; background: #eff6ff; color: #1d4ed8; }
.webrtc-type-badge--relay { border-color: #c4b5fd; background: #f5f3ff; color: #6d28d9; }
.pc-detail-card--warn { border-left: 3px solid #b45309; }

/* Proxy anonymity */
.proxy-anon { margin-top: 0; }
.proxy-anon__input { font-family: var(--mono); font-size: 0.88rem; }
.proxy-anon__options { margin: 0 0 1rem; }
.proxy-anon__actions { margin: 0 0 1rem; }
.proxy-anon__status {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.proxy-anon__status[hidden],
.proxy-anon__results[hidden],
.proxy-anon__headers[hidden],
.proxy-anon__no-headers[hidden] {
  display: none !important;
}
.proxy-anon__spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid #cbd5e1;
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: webrtc-spin 0.8s linear infinite;
}
.proxy-anon__results { display: grid; gap: 0.95rem; }
.proxy-anon__verdict {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  background: #fff;
}
.proxy-anon-verdict__icon {
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}
.anon--elite .proxy-anon-verdict__icon { background: #ecfdf5; color: #047857; }
.anon--anonymous .proxy-anon-verdict__icon { background: #fffbeb; color: #b45309; }
.anon--transparent .proxy-anon-verdict__icon { background: #fef2f2; color: #b91c1c; }
.anon--elite { border-left: 3px solid #047857; }
.anon--anonymous { border-left: 3px solid #b45309; }
.anon--transparent { border-left: 3px solid #b91c1c; }
.proxy-anon-verdict__body { min-width: 0; }
.proxy-anon-verdict__level { margin: 0 0 0.35rem; font-weight: 700; font-size: 1.05rem; }
.proxy-anon-verdict__hint { margin: 0; color: var(--ink-soft); font-size: 0.92rem; line-height: 1.45; }
.proxy-anon__cards { margin: 0; }
.proxy-anon__headers {
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.85rem 1rem;
}
.proxy-anon-headers__title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.proxy-anon-headers__title svg { color: var(--accent); }
.proxy-anon-header-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}
.proxy-anon-header-item {
  display: grid;
  gap: 0.25rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--line);
  background: var(--surface-2);
}
.proxy-anon-header-item__name {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.proxy-anon-header-item__value {
  font-family: var(--mono);
  font-size: 0.84rem;
  word-break: break-all;
  color: var(--ink);
}
.proxy-anon__no-headers {
  margin: 0;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  background: var(--surface-2);
  font-size: 0.88rem;
}
