:root {
  --ik-primary: #0970b7;
  --ik-primary-dark: #065a92;
  --ik-success: #2fc10a;
  --ik-accent: #d2ab3e;
  --ik-text: #1e293b;
  --ik-muted: #64748b;
  --ik-bg: #f5f8fb;
  --ik-footer: #0b3a5c;
  --ik-card: #fff;
  --ik-line: #e8eef4;
  --ik-radius: 12px;
}

html { scroll-behavior: smooth; height: auto; }
body {
  font-family: Poppins, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ik-text);
  background: var(--ik-bg);
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: clip;
  overflow-y: visible;
}
.site-main {
  flex: 1 0 auto;
  position: relative;
  z-index: 0;
  width: 100%;
  overflow: visible;
}
.site-main .row { align-items: flex-start; }
.site-main .row > [class*="col-"] { min-width: 0; }
.site-main .row.result-cards { align-items: stretch; }
.site-main .row.result-cards > [class*="col-"] {
  display: flex;
}
.site-main .row.result-cards .panel {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  width: 100%;
  min-height: 100%;
}
.site-main .row.result-cards .panel .info-chip-note:last-child {
  margin-top: auto !important;
  padding-top: .75rem;
}

.topbar {
  background: var(--ik-primary-dark);
  color: #fff;
  font-size: .85rem;
  padding: .4rem 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  flex-wrap: nowrap;
}
.topbar-contact, .topbar-actions {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #fff;
  text-decoration: none;
  opacity: .92;
  white-space: nowrap;
}
.topbar-link:hover { opacity: 1; color: #fff; }

.navbar-brand span { font-weight: 700; color: #fff; }
.site-logo { width: 36px; height: 36px; display: block; }
.site-nav { background: var(--ik-primary); z-index: 1030; }
.site-nav .nav-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.9) !important;
  font-weight: 500;
}
.site-nav .nav-link.active, .site-nav .nav-link:hover { color: #fff !important; }
.site-nav .nav-ico { font-size: .82rem; opacity: .88; width: 1rem; text-align: center; }
.site-nav .navbar-toggler {
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.14);
}

.hero {
  background: linear-gradient(180deg, #fff 0%, #f5f8fb 100%);
  border-bottom: 1px solid var(--ik-line);
  padding: 1.25rem 0 1.4rem;
  isolation: isolate;
  overflow: visible;
}
.hero h1 {
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--ik-primary);
  margin: 0 0 .35rem;
}
.hero .lead {
  color: var(--ik-muted);
  font-size: 1rem;
  margin-bottom: 1.1rem;
  max-width: 42rem;
}
.hero .search-bar-form { max-width: 760px; }
.map-radar {
  height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  background:
    radial-gradient(circle at 50% 42%, #0d4a6a 0%, #072536 68%);
  padding: 1rem 1rem 1.1rem;
  text-align: center;
}
.radar-scope {
  width: min(230px, 72%);
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(47, 193, 10, .4);
  box-shadow:
    0 0 0 10px rgba(9, 112, 183, .18),
    inset 0 0 36px rgba(47, 193, 10, .14);
  background: radial-gradient(circle at 50% 50%, #0a3348 0%, #051820 100%);
}
.radar-rings, .radar-cross, .radar-sweep, .radar-blip {
  position: absolute;
}
.radar-rings {
  inset: 0;
  background: repeating-radial-gradient(
    circle at 50% 50%,
    transparent 0,
    transparent 18%,
    rgba(47, 193, 10, .22) 18.6%,
    transparent 19.2%
  );
}
.radar-cross {
  inset: 0;
  background:
    linear-gradient(rgba(47, 193, 10, .28) 1px, transparent 1px) 0 50% / 100% 50% no-repeat,
    linear-gradient(90deg, rgba(47, 193, 10, .28) 1px, transparent 1px) 50% 0 / 50% 100% no-repeat;
}
.radar-sweep {
  inset: -10%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 300deg,
    rgba(47, 193, 10, .05) 320deg,
    rgba(47, 193, 10, .45) 350deg,
    rgba(159, 255, 120, .85) 360deg
  );
  animation: radar-spin 2.6s linear infinite;
}
.radar-blip {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2fc10a;
  box-shadow: 0 0 8px #2fc10a, 0 0 16px rgba(47, 193, 10, .6);
  animation: radar-ping 2.6s ease-in-out infinite;
}
.radar-blip.b1 { top: 28%; left: 62%; animation-delay: 0s; }
.radar-blip.b2 { top: 58%; left: 30%; animation-delay: .7s; }
.radar-blip.b3 { top: 42%; left: 44%; width: 5px; height: 5px; animation-delay: 1.4s; }
.radar-msg {
  margin: 0;
  color: #9ec4e0;
  font-size: .82rem;
  line-height: 1.45;
  max-width: 16rem;
}
@keyframes radar-spin {
  to { transform: rotate(360deg); }
}
@keyframes radar-ping {
  0%, 100% { opacity: .15; transform: scale(.7); }
  40% { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .radar-sweep, .radar-blip { animation: none; }
  .radar-sweep { opacity: .45; }
}
.consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4000;
  background: #fff;
  border-top: 1px solid #d7e4ef;
  box-shadow: 0 -16px 48px rgba(15, 40, 70, .18);
  padding: 1.15rem 0 1.2rem;
  max-height: min(72vh, 520px);
  overflow: auto;
}
.consent-banner-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}
.consent-banner-copy { flex: 1 1 auto; min-width: 0; }
.consent-banner-copy h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ik-footer);
  margin: .15rem 0 .55rem;
  line-height: 1.3;
}
.consent-banner-copy p,
.consent-banner-copy li {
  color: #334155;
  font-size: .9rem;
  line-height: 1.6;
  margin: 0 0 .5rem;
}
.consent-banner-copy a { color: var(--ik-primary); font-weight: 700; text-decoration: none; }
.consent-banner-copy a:hover { text-decoration: underline; }
.consent-banner-copy em { font-style: italic; color: var(--ik-muted); font-weight: 500; }
.consent-label {
  font-weight: 600;
  color: var(--ik-footer) !important;
  margin-bottom: .35rem !important;
}
.consent-banner-copy ul {
  margin: 0 0 .65rem;
  padding-left: 1.15rem;
}
.consent-banner-copy li { margin-bottom: .28rem; }
.consent-legal {
  font-size: .82rem !important;
  color: #475569 !important;
  background: #f5f8fb;
  border-left: 4px solid var(--ik-primary);
  border-radius: 0 8px 8px 0;
  padding: .55rem .75rem;
  margin: .35rem 0 0 !important;
}
.consent-banner .consent-actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: stretch;
  gap: .55rem;
  margin-top: .15rem;
  min-width: 220px;
  position: sticky;
  top: 0;
}
.consent-banner .consent-actions .btn {
  justify-content: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: .6rem 1.1rem;
}
body.has-consent-banner { padding-bottom: 360px; }

@media (max-width: 767.98px) {
  .consent-banner { max-height: 78vh; }
  .consent-banner-inner { flex-direction: column; align-items: stretch; }
  .consent-banner .consent-actions {
    min-width: 0;
    flex-direction: row;
    flex-wrap: wrap;
    position: static;
  }
  .consent-banner .consent-actions .btn { flex: 1 1 auto; }
  body.has-consent-banner { padding-bottom: 420px; }
}
.you-are {
  display: inline-block;
  background: #e8f8df;
  color: #166534;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: .2rem .65rem;
  margin-bottom: .45rem;
}

.ip-hero-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 32px rgba(15, 40, 70, .08);
  padding: 1.25rem 1.35rem 1.35rem;
  border: 1px solid #d7e4ef;
  border-left: 6px solid var(--ik-success);
  height: auto;
}
.you-are.is-other {
  background: #eef6fb;
  color: var(--ik-primary);
}
.you-are.is-local {
  display: block;
  background: #f4f4f5;
  color: #3f3f46;
  text-transform: none;
  letter-spacing: 0;
  border-radius: 10px;
  padding: .55rem .75rem;
  font-size: .85rem;
  font-weight: 600;
  line-height: 1.45;
  max-width: 100%;
}
.ip-hero-card.is-local { border-left-color: #94a3b8; }
.ip-kicker.is-local { color: #64748b; }
.ip-kicker {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
  color: var(--ik-success);
  margin-bottom: .35rem;
}
.ip-kicker.is-other { color: var(--ik-primary); }
.ip-big {
  font-size: clamp(1.6rem, 4vw, 2.55rem);
  font-weight: 700;
  letter-spacing: .01em;
  color: #0f172a;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
}
.asn-card .ip-big {
  word-break: normal;
  overflow-wrap: normal;
}
.asn-org {
  font-size: 1.08rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.45;
  margin: .45rem 0 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.rdap-card .ip-big {
  word-break: break-word;
  overflow-wrap: anywhere;
}
.rdap-card .info-chip-value {
  font-size: .98rem;
}
.ip-actions { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .85rem; }
.btn-copy {
  background: var(--ik-success);
  border: 0;
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  padding: .5rem 1rem;
}
.btn-copy:hover,
.btn-copy:focus-visible,
.btn.btn-copy:hover,
.btn.btn-copy:focus-visible {
  background: #27a809;
  border-color: #27a809;
  color: #fff;
}
.btn-brand {
  background: var(--ik-primary);
  border: 0;
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  padding: .5rem 1rem;
}
.btn-brand:hover,
.btn-brand:focus-visible,
.btn.btn-brand:hover,
.btn.btn-brand:focus-visible {
  background: var(--ik-primary-dark);
  border-color: var(--ik-primary-dark);
  color: #fff;
}
.btn-ghost {
  background: #eef6fb;
  border: 1px solid #b7d3e8;
  color: var(--ik-primary);
  font-weight: 600;
  border-radius: 8px;
  padding: .5rem 1rem;
}
.btn-ghost:hover,
.btn-ghost:focus-visible,
.btn.btn-ghost:hover,
.btn.btn-ghost:focus-visible {
  background: var(--ik-primary);
  border-color: var(--ik-primary);
  color: #fff;
}
.ip-meta-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: .65rem;
  margin-top: 1rem;
}
.info-chip {
  background: linear-gradient(180deg, #eef6fb 0%, #fff 70%);
  border: 1px solid #b7d3e8;
  border-left: 4px solid var(--ik-primary);
  border-radius: 10px;
  padding: .7rem .85rem;
}
.info-chip.ok { border-left-color: var(--ik-success); }
.info-chip.warn { border-left-color: var(--ik-accent); }
.info-chip.local {
  grid-column: 1 / -1;
  border-left-color: #94a3b8;
}
.info-chip-label {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 700;
  color: var(--ik-primary);
}
.info-chip-value {
  font-size: 1.02rem;
  font-weight: 700;
  color: #0f172a;
  word-break: break-word;
  line-height: 1.25;
}
.flag-img {
  display: inline-block;
  width: 22px;
  height: 16px;
  object-fit: cover;
  vertical-align: -2px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(15, 40, 70, .14);
  margin-right: .4rem;
  flex-shrink: 0;
}
.kv-value .flag-img {
  margin-right: .35rem;
  margin-left: .15rem;
}
.info-chip-note { font-size: .75rem; color: var(--ik-muted); }

.map-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #d7e4ef;
  box-shadow: 0 10px 32px rgba(15, 40, 70, .06);
  height: auto;
  position: relative;
  z-index: 0;
  isolation: isolate;
  contain: layout paint;
}
#ip-map {
  height: 340px;
  width: 100%;
  background: #dbe7f1;
  position: relative;
  z-index: 0;
  overflow: hidden;
  isolation: isolate;
}
.map-caption {
  padding: .7rem 1rem;
  font-size: .8rem;
  color: var(--ik-muted);
  border-top: 1px solid var(--ik-line);
}

.panel {
  background: #fff;
  border-radius: var(--ik-radius);
  box-shadow: 0 6px 18px rgba(15, 40, 70, .06);
  padding: 1.15rem 1.2rem;
  height: auto;
  overflow: visible;
  position: relative;
  z-index: 0;
}
.panel h2, .section-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ik-footer);
  margin: 0 0 .85rem;
}
.kv { display: flex; justify-content: space-between; gap: 1rem; padding: .45rem 0; border-top: 1px solid #f1f5f9; }
.kv:first-child { border-top: 0; }
.kv-label { color: var(--ik-muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .03em; font-weight: 600; flex: 0 0 42%; }
.kv-value { font-weight: 600; overflow-wrap: anywhere; word-break: break-word; text-align: right; }
#session-ua .kv-value, #session-ua .kv-text {
  font-size: .72rem;
  font-weight: 500;
  line-height: 1.35;
}
.copy-mini {
  border: 0;
  background: transparent;
  color: var(--ik-primary);
  padding: 0 0 0 .35rem;
}

.search-toolbar {
  background: #fff;
  border-bottom: 1px solid var(--ik-line);
  padding: .75rem 0;
  box-shadow: 0 6px 16px rgba(15, 40, 70, .05);
}
.search-bar-form {
  display: flex;
  align-items: stretch;
  gap: .5rem;
  max-width: 760px;
  background: #fff;
  border: 1px solid #d7e4ef;
  border-radius: 16px;
  padding: .4rem .4rem .4rem .7rem;
  box-shadow: 0 12px 36px rgba(15, 40, 70, .08);
}
.search-bar-form .form-control {
  flex: 1;
  height: 52px;
  border: 0;
  border-radius: 10px;
  font-size: 1.12rem;
  font-weight: 600;
  color: #0f172a;
  background: transparent;
  box-shadow: none;
  padding-left: .35rem;
}
.search-bar-form .form-control::placeholder {
  color: #94a3b8;
  font-weight: 500;
}
.search-bar-form .form-control:focus {
  border: 0;
  box-shadow: none;
  outline: 0;
}
.search-bar-form:focus-within {
  border-color: var(--ik-primary);
  box-shadow: 0 12px 36px rgba(9, 112, 183, .16);
}
.btn-search {
  background: var(--ik-success);
  border: 0;
  color: #fff;
  font-weight: 700;
  min-width: 132px;
  height: 52px;
  border-radius: 12px;
  padding: 0 1.25rem;
  font-size: 1rem;
}
.btn-search:hover { background: #27a809; color: #fff; }

.page-wrap { padding: 1.5rem 0 2rem; position: relative; z-index: 0; }
.prose { max-width: none; }
.prose h1 { font-size: 1.65rem; color: var(--ik-footer); margin: 0 0 .35rem; line-height: 1.3; }
.prose h2 { font-size: 1.25rem; color: var(--ik-footer); margin-top: 1.6rem; }
.prose h3 { font-size: 1.05rem; color: var(--ik-primary); margin-top: 1.2rem; }
.prose p, .prose li { color: #334155; line-height: 1.7; }
.prose a { color: var(--ik-primary); font-weight: 600; }
.prose a.btn { text-decoration: none; }
.prose a.btn-copy,
.prose a.btn-brand,
.prose a.btn-success {
  color: #fff;
}
.prose a.btn-copy:hover,
.prose a.btn-copy:focus-visible,
.prose a.btn-brand:hover,
.prose a.btn-brand:focus-visible,
.prose a.btn-success:hover,
.prose a.btn-success:focus-visible {
  color: #fff;
}
.prose a.btn-ghost { color: var(--ik-primary); }
.prose a.btn-ghost:hover,
.prose a.btn-ghost:focus-visible { color: #fff; }
.prose code { background: #eef6fb; padding: .1em .35em; border-radius: 4px; font-size: .9em; }
.prose .table-wrap { overflow-x: auto; margin: 1rem 0; }
.prose-table {
  width: 100%;
  margin: 0;
  background: #fff;
  border-collapse: collapse;
}
.prose-table th {
  background: #eef6fb;
  color: var(--ik-footer);
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
}
.prose-table th,
.prose-table td {
  padding: .55rem .7rem;
  border: 1px solid var(--ik-line);
  vertical-align: top;
}
.prose-table td { font-size: .9rem; }
.prose blockquote {
  border-left: 4px solid var(--ik-primary);
  background: #eef6fb;
  margin: 1rem 0;
  padding: .7rem 1rem;
}

.guide-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: .85rem; }
.guide-card {
  background: #fff;
  border: 1px solid #d7e4ef;
  border-radius: 12px;
  padding: 1rem 1.05rem;
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}
.guide-card:hover { border-color: var(--ik-primary); color: inherit; box-shadow: 0 8px 20px rgba(9, 112, 183, .1); }
.guide-card h3 { font-size: 1rem; font-weight: 700; color: var(--ik-footer); margin: 0 0 .35rem; }
.guide-card p { margin: 0; color: var(--ik-muted); font-size: .88rem; }

.tool-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .85rem; }
.tool-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.1rem;
  border: 1px solid #d7e4ef;
  text-decoration: none;
  color: inherit;
  display: block;
}
.tool-card:hover { color: inherit; border-color: var(--ik-primary); }
.tool-card i { color: var(--ik-primary); font-size: 1.2rem; margin-bottom: .4rem; }
.tool-card h3 { font-size: 1rem; margin: 0 0 .3rem; }
.tool-card p { margin: 0; font-size: .85rem; color: var(--ik-muted); }

.faq-list { margin-top: .35rem; }
.faq-item {
  border-top: 1px solid var(--ik-line);
  padding: 0;
}
.faq-item:first-of-type { border-top: 0; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .85rem 0;
  font-weight: 600;
  color: var(--ik-footer);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }
.faq-item summary i {
  color: var(--ik-primary);
  font-size: .78rem;
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq-item[open] summary { color: var(--ik-primary); }
.faq-item[open] summary i { transform: rotate(180deg); }
.faq-q { flex: 1; }
.faq-a { padding: 0 0 .95rem; }
.faq-a p { margin: 0 0 .65rem; color: #334155; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-links {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: .75rem 0 0 !important;
}
.faq-links a {
  display: inline-flex;
  align-items: center;
  background: #eef6fb;
  color: var(--ik-primary);
  font-size: .8rem;
  font-weight: 600;
  padding: .28rem .7rem;
  border-radius: 999px;
  text-decoration: none;
  line-height: 1.35;
}
.faq-links a:hover { background: var(--ik-primary); color: #fff; }

.faq-page .faq-toolbar {
  position: relative;
  margin-bottom: .85rem;
}
.faq-page .faq-toolbar i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ik-muted);
  pointer-events: none;
}
.faq-page .faq-toolbar input {
  width: 100%;
  border: 1px solid #d7e4ef;
  border-radius: 12px;
  background: #fff;
  padding: .85rem 1rem .85rem 2.6rem;
  font: inherit;
  color: var(--ik-text);
}
.faq-page .faq-toolbar input:focus {
  outline: 0;
  border-color: var(--ik-primary);
  box-shadow: 0 0 0 3px rgba(9, 112, 183, .12);
}
.faq-jump {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: 0 0 1.35rem;
}
.faq-jump a {
  display: inline-flex;
  background: #fff;
  border: 1px solid #d7e4ef;
  color: var(--ik-footer);
  font-size: .82rem;
  font-weight: 600;
  padding: .35rem .75rem;
  border-radius: 999px;
  text-decoration: none;
}
.faq-jump a:hover { border-color: var(--ik-primary); color: var(--ik-primary); }
.faq-group { margin-bottom: 1.5rem; }
.faq-group h2 {
  font-size: 1.05rem;
  color: var(--ik-footer);
  margin: 0 0 .65rem;
}
.faq-page .faq-item {
  background: #fff;
  border: 1px solid #d7e4ef;
  border-radius: 12px;
  margin-bottom: .55rem;
}
.faq-page .faq-item:first-of-type { border-top: 1px solid #d7e4ef; }
.faq-page .faq-item[open] {
  border-color: var(--ik-primary);
  box-shadow: 0 8px 20px rgba(9, 112, 183, .08);
}
.faq-page .faq-item summary { padding: .95rem 1.1rem; }
.faq-page .faq-a { padding: 0 1.1rem 1.05rem; }

.cta-band {
  background: var(--ik-footer);
  color: #d7e6f2;
  padding: 1.6rem 0;
  margin-top: 2rem;
  position: relative;
  z-index: 0;
  clear: both;
}
.cta-inner { display: flex; justify-content: space-between; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: 1.2rem; margin: 0 0 .35rem; }
.cta-band p { margin: 0; }
.cta-actions { display: flex; gap: .5rem; flex-wrap: wrap; }
.cta-band a:not(.btn) { color: #fff; font-weight: 600; }
.cta-band a:not(.btn):hover { color: #fff; text-decoration: underline; }
.cta-band .btn-success {
  background: var(--ik-success);
  border: 0;
  color: #fff;
  font-weight: 700;
}
.cta-band .btn-success:hover,
.cta-band .btn-success:focus-visible {
  background: #27a809;
  border-color: #27a809;
  color: #fff;
}
.cta-band .btn-outline-light {
  font-weight: 600;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,.78);
}
.cta-band .btn-outline-light:hover,
.cta-band .btn-outline-light:focus-visible {
  background: #fff;
  border-color: #fff;
  color: var(--ik-footer);
}
.product-hint-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .65rem;
  margin-bottom: 1.15rem;
}
.product-hint {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  padding: .75rem .85rem;
  color: #e8f3fb;
  text-decoration: none;
  min-height: 100%;
}
.product-hint:hover { background: rgba(255,255,255,.14); color: #fff; }
.product-hint i { color: var(--ik-success); margin-bottom: .15rem; }
.product-hint-title { font-weight: 700; font-size: .92rem; }
.product-hint-blurb { font-size: .75rem; color: #b7d3e8; line-height: 1.35; }

.related-prod a { color: var(--ik-primary); font-weight: 600; text-decoration: none; }
.related-prod a:hover { text-decoration: underline; }

.badge-soft {
  display: inline-block;
  background: #eef6fb;
  color: var(--ik-primary);
  font-size: .72rem;
  font-weight: 700;
  border-radius: 999px;
  padding: .15rem .55rem;
}
.badge-listed { background: #fee2e2; color: #b91c1c; }
.badge-clean { background: #dcfce7; color: #166534; }
.table-lists td { vertical-align: middle; font-size: .9rem; }
.ip-hero-card.is-listed { border-left-color: #dc2626; }
.ip-kicker.is-listed { color: #b91c1c; }
.bl-list { display: flex; flex-direction: column; }
.bl-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 0;
  border-top: 1px solid #f1f5f9;
}
.bl-row:first-child { border-top: 0; }
.bl-name { font-weight: 700; color: #0f172a; }
.bl-blurb, .bl-detail { font-size: .8rem; color: var(--ik-muted); line-height: 1.35; }
.bl-side { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.bl-delist { font-weight: 700; font-size: .85rem; }
.bl-row.is-listed { background: linear-gradient(90deg, #fef2f2 0%, transparent 55%); margin: 0 -.4rem; padding-left: .4rem; padding-right: .4rem; border-radius: 8px; }
.host-list .bl-name { font-weight: 600; word-break: break-all; }
.host-list {
  max-height: 32rem;
  overflow: auto;
}
.btn-copy-sm {
  font-size: .8rem;
  font-weight: 600;
  padding: .2rem .65rem;
  min-height: 36px;
}
.btn-host-go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--ik-primary);
  background: #eef6fb;
  text-decoration: none;
  flex-shrink: 0;
}
.btn-host-go:hover,
.btn-host-go:focus-visible {
  background: var(--ik-primary);
  color: #fff;
}
.bl-hits { border-left: 4px solid #dc2626; }
.bl-hit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 0;
}
.bl-hit + .bl-hit { border-top: 1px solid #fee2e2; }
.btn-delist {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dc2626;
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  border-radius: 10px;
  padding: .55rem 1rem;
  text-decoration: none;
  white-space: nowrap;
}
.btn-delist:hover { background: #b91c1c; color: #fff; }
.btn-delist-sm { padding: .4rem .7rem; font-size: .8rem; }

.notice {
  background: #fff8e6;
  border: 1px solid #ead7a0;
  color: #7a5b12;
  border-radius: 10px;
  padding: .75rem 1rem;
  font-size: .88rem;
}

.site-footer {
  background: var(--ik-footer);
  color: #d7e6f2;
  margin-top: auto;
  padding: 2.6rem 0 1.2rem;
  position: relative;
  z-index: 0;
  flex-shrink: 0;
  clear: both;
}
.site-footer.is-compact { padding: 1.2rem 0; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, .9fr) minmax(0, .9fr) minmax(0, 1.15fr);
  gap: 2rem 2.2rem;
  align-items: start;
}
.site-footer h4 {
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: .15rem 0 1rem;
}
.footer-brand {
  display: flex; align-items: center; gap: .7rem;
  margin: 0 0 .7rem; color: #fff; text-decoration: none; font-weight: 700;
  font-size: 1.15rem;
}
.footer-brand:hover { color: #fff; }
.footer-lead {
  margin: 0 0 .85rem;
  color: #c5d8e8;
  font-size: .9rem;
  line-height: 1.55;
  max-width: 28rem;
}
.footer-parent {
  margin: 0;
  color: #9ec4e0;
  font-size: .84rem;
  line-height: 1.5;
  max-width: 28rem;
}
.footer-parent a { color: #fff; font-weight: 600; text-decoration: none; }
.footer-parent a:hover { text-decoration: underline; }
.footer-company { margin: 0 0 .55rem; color: #8ec0e4; font-weight: 600; }
.footer-meta { margin: 0; color: #c5d8e8; font-size: .88rem; }
.footer-contact { display: flex; flex-wrap: wrap; gap: .35rem 1.1rem; margin-top: .9rem; }
.footer-contact a, .footer-links a { color: #d7e6f2; text-decoration: none; }
.footer-contact a:hover, .footer-links a:hover { color: #fff; }
.footer-links { margin: 0; }
.footer-links li { margin: 0; }
.footer-links a { display: inline-block; padding: .18rem 0; }
.footer-subhead { margin-top: 1.35rem; }
.footer-search .form-control {
  background: #fff;
  border: 0;
  height: 42px;
  font-size: .9rem;
}
.footer-search .btn-success {
  background: var(--ik-success);
  border: 0;
  color: #fff;
  font-weight: 700;
}
.footer-search .btn-success:hover,
.footer-search .btn-success:focus-visible {
  background: #27a809;
  color: #fff;
}
.footer-domain-op {
  margin: .65rem 0 .35rem;
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.footer-domain-copy {
  margin: 0;
  color: #9ec4e0;
  font-size: .8rem;
  line-height: 1.5;
}
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2rem; padding-top: 1rem; font-size: .85rem; }
.footer-copy { margin: 0; line-height: 1.7; }
.footer-copy a { color: #fff; text-decoration: none; font-weight: 600; }
.footer-copy a:hover { text-decoration: underline; }
.footer-public { margin: .55rem 0 0; color: #9ec4e0; font-size: .8rem; line-height: 1.55; max-width: 920px; }
.footer-public p { margin: 0 0 .45rem; }
.footer-public p:last-child { margin-bottom: 0; }
.footer-public a { color: #fff; font-weight: 600; }

@media (max-width: 991.98px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767.98px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
}

.breadcrumb { background: transparent; padding: 0 0 .8rem; font-size: .85rem; }
.breadcrumb a { color: var(--ik-primary); text-decoration: none; }
.code-block {
  background: #0b3a5c;
  color: #e8f3fb;
  border-radius: 10px;
  padding: 1rem 1.1rem;
  font-size: .85rem;
  overflow: auto;
}

.error-hero {
  padding: 2.2rem 0 1.2rem;
}
.error-card {
  background: #fff;
  border: 1px solid #d7e4ef;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(15, 40, 70, .08);
  padding: 1.8rem 1.6rem 1.7rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 1.25rem;
  position: relative;
  overflow: hidden;
}
.error-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--ik-primary) 0%, var(--ik-success) 100%);
}
.error-num {
  font-size: clamp(4.2rem, 12vw, 7rem);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.04em;
  color: var(--ik-primary);
  opacity: .16;
  margin: .2rem 0 .35rem;
  font-variant-numeric: tabular-nums;
}
.error-card h1 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ik-footer);
  margin: 0 0 .5rem;
}
.error-lead {
  color: var(--ik-muted);
  font-size: .95rem;
  line-height: 1.6;
  margin: 0 auto 1.15rem;
  max-width: 34rem;
}
.error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem;
  margin-bottom: 1.1rem;
}
.error-actions .btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.error-search {
  max-width: 520px;
  margin: 0 auto;
}
.error-search .search-bar-form { max-width: 100%; }
.error-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 767.98px) {
  .ip-meta-row { grid-template-columns: 1fr; }
  .topbar-contact .topbar-text, .topbar-actions .topbar-text { display: none; }
  .search-bar-form { flex-wrap: wrap; max-width: 100%; padding: .45rem; }
  .search-bar-form .form-control { flex: 1 1 100%; height: 48px; font-size: 16px; padding-left: .5rem; }
  .btn-search { flex: 1; height: 48px; min-width: 0; }
  #ip-map, .map-radar { height: 260px; }
  .hero h1 { font-size: 1.25rem; }
  .site-nav .nav-item { width: 100%; }
  .site-nav .nav-link { min-height: 48px; }
  .product-hint-grid { grid-template-columns: 1fr 1fr; }
  .error-links { grid-template-columns: 1fr 1fr; }
  .guide-grid { grid-template-columns: 1fr; }
  .tool-grid { grid-template-columns: 1fr; }
  .kv { flex-direction: column; gap: .15rem; }
  .kv-label { flex: none; }
  .kv-value { text-align: left; }
  .bl-row, .bl-hit {
    flex-direction: column;
    align-items: flex-start;
    gap: .55rem;
  }
  .bl-side { flex-wrap: wrap; }
  .btn-delist { white-space: normal; }
  .ip-actions .btn { flex: 1 1 auto; justify-content: center; min-height: 44px; }
  .cta-inner { align-items: stretch; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { flex: 1 1 auto; justify-content: center; min-height: 44px; }
  .consent-banner {
    padding-bottom: calc(1.2rem + env(safe-area-inset-bottom, 0px));
  }
  body.has-consent-banner {
    padding-bottom: calc(420px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 479.98px) {
  .product-hint-grid,
  .error-links { grid-template-columns: 1fr; }
  .hero { padding: 1rem 0 1.15rem; }
  .ip-hero-card, .panel { padding: 1rem .95rem; }
}
