  :root {
    --eu-blue: #003399;
    --eu-blue-deep: #002878;
    --eu-blue-bright: #2552d9;
    --eu-blue-soft: #eef2fb;
    --eu-blue-soft-2: #dde5f6;
    --eu-yellow: #ffcc00;

    --ink: #0f172a;
    --ink-2: #334155;
    --ink-3: #475569;
    --muted: #64748b;
    --muted-2: #94a3b8;
    --line: #e6eaf2;
    --line-2: #d6dce8;
    --line-3: #c2cad8;
    --bg: #ffffff;
    --bg-2: #fafbfc;
    --bg-3: #f4f6fa;

    --green: #16a34a;
    --green-soft: #dcfce7;
    --green-line: #bbf7d0;

    --shadow-sm: 0 1px 2px rgba(15,23,42,.04);
    --shadow-md: 0 4px 14px rgba(15,23,42,.06);
    --shadow-blue: 0 6px 20px rgba(0,51,153,.15);

    --radius: 10px;
    --radius-sm: 6px;
    --max: 1280px;

    --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  }
  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--bg);
    font-size: 16px; line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  ::selection { background: var(--eu-blue); color: #fff; }
  a { color: var(--eu-blue); text-decoration: none; }
  a:hover { text-decoration: underline; }
  .wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

  .mono { font-family: var(--mono); font-feature-settings: "ss01", "cv11"; }
  .small-caps {
    font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.05em;
    color: var(--muted); text-transform: uppercase; font-weight: 600;
  }

  /* ─── Top stripe ─────────────────────────────────────── */
  .stripe {
    height: 3px;
    background: linear-gradient(90deg, var(--eu-blue) 0 80%, var(--eu-yellow) 80% 100%);
  }

  /* ─── Header ───────────────────────────────────────────── */
  header.site {
    border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,.92);
    backdrop-filter: saturate(180%) blur(8px);
    -webkit-backdrop-filter: saturate(180%) blur(8px);
    position: sticky; top: 0; z-index: 30;
  }
  .nav {
    display: flex; align-items: center; justify-content: space-between;
    height: 64px; gap: 24px;
  }
  .nav .left { display: flex; align-items: center; gap: 28px; }
  .brand {
    display: inline-flex; align-items: center; gap: 10px;
    font-weight: 700; font-size: 1.05rem; color: var(--ink); letter-spacing: -0.01em;
  }
  .brand:hover { text-decoration: none; }
  .brand .mark {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: 7px;
    background: var(--eu-blue); color: #fff; font-weight: 800; font-size: 0.78rem;
  }
  .brand .tld { color: var(--muted); font-weight: 500; }

  nav.primary { display: flex; align-items: center; gap: 24px; }
  nav.primary a { color: var(--ink-2); font-weight: 500; font-size: 0.92rem; }
  nav.primary a.active { color: var(--eu-blue); }
  nav.primary a:hover { color: var(--eu-blue); text-decoration: none; }

  .nav .right { display: flex; align-items: center; gap: 12px; }
  .status-pill {
    display: inline-flex; align-items: center; gap: 8px;
    height: 28px; padding: 0 12px;
    border: 1px solid var(--line-2); border-radius: 999px;
    background: var(--bg);
    font-family: var(--mono); font-size: 0.74rem; color: var(--ink-2);
  }
  .status-pill .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(22,163,74,.5);
    animation: pulse-green 2s infinite;
  }
  @keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(22,163,74,.5); }
    70% { box-shadow: 0 0 0 8px rgba(22,163,74,0); }
    100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
  }

  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; border-radius: 8px;
    font-weight: 600; font-size: 0.92rem;
    cursor: pointer; border: 1px solid transparent;
    transition: background .15s, border-color .15s, color .15s, transform .06s, box-shadow .15s;
    font-family: inherit; white-space: nowrap;
    box-shadow: var(--shadow-sm);
  }
  .btn:active { transform: translateY(1px); }
  .btn-primary { background: var(--eu-blue); color: #fff; box-shadow: var(--shadow-blue); }
  .btn-primary:hover { background: var(--eu-blue-deep); text-decoration: none; }
  .btn-ghost { background: var(--bg); color: var(--ink); border-color: var(--line-2); }
  .btn-ghost:hover { background: var(--bg-3); border-color: var(--line-3); text-decoration: none; }
  .btn .arrow { font-family: var(--mono); }

  /* ─── Page header ───────────────────────────────────────── */
  .page-header {
    padding: 40px 0 32px;
    border-bottom: 1px solid var(--line);
    background:
      radial-gradient(900px 280px at 30% -50px, rgba(0,51,153,.08), transparent 70%),
      var(--bg);
    position: relative;
  }
  .breadcrumb {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 16px;
    font-size: 0.84rem; color: var(--muted); font-family: var(--mono);
    flex-wrap: wrap;
  }
  .breadcrumb a { color: var(--muted); }
  .breadcrumb a:hover { color: var(--eu-blue); text-decoration: none; }
  .breadcrumb .sep { color: var(--line-3); }
  .breadcrumb .current { color: var(--ink-2); }

  .ph-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    margin-bottom: 14px;
    font-family: var(--mono); font-size: 0.82rem;
    color: var(--muted);
  }
  .ph-eyebrow a {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--eu-blue); font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--eu-blue-soft);
    border: 1px solid var(--eu-blue-soft-2);
  }
  .ph-eyebrow a:hover { background: var(--eu-blue); color: #fff; text-decoration: none; }
  .ph-eyebrow a:hover .icon-back { color: #fff; }
  .ph-eyebrow .icon-back { color: var(--eu-blue); }
  .ph-eyebrow .pos { color: var(--muted); }

  .ph-row {
    display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  }
  .ph-icon {
    width: 56px; height: 56px; border-radius: 12px;
    background: var(--eu-blue-soft); color: var(--eu-blue);
    display: inline-flex; align-items: center; justify-content: center;
    flex: none; border: 1px solid var(--eu-blue-soft-2);
  }
  .ph-icon svg { width: 28px; height: 28px; }
  .ph-content h1 {
    margin: 0; font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    letter-spacing: -0.025em; line-height: 1.05; font-weight: 700;
  }
  .ph-content h1 .accent { color: var(--eu-blue); }
  .ph-content .meta-row {
    margin-top: 6px;
    display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
    font: 0.84rem var(--mono); color: var(--muted);
  }
  .ph-content .meta-row strong { color: var(--ink); font-weight: 600; }
  .ph-content .meta-row .accent-v { color: var(--eu-blue); font-weight: 600; }
  .ph-content .meta-row .sep { color: var(--line-3); }
  .ph-content .meta-row .also { color: var(--muted); }
  .ph-content .meta-row .also a { color: var(--ink-2); border-bottom: 1px dashed var(--line-3); }
  .ph-content .meta-row .also a:hover { color: var(--eu-blue); border-color: var(--eu-blue); text-decoration: none; }

  .page-lede {
    margin: 18px 0 0; max-width: 720px;
    font-size: 1rem; color: var(--ink-2); line-height: 1.6;
  }

  /* ─── Subcategory strip ───────────────────────────────── */
  .sub-strip {
    border-bottom: 1px solid var(--line);
    background: var(--bg-2);
    position: sticky; top: 64px; z-index: 20;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(250,251,252,.92);
  }
  .sub-strip-inner {
    display: flex; gap: 8px; align-items: center; padding: 12px 0;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .sub-strip-inner::-webkit-scrollbar { display: none; }
  .sub-chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--bg);
    border: 1px solid var(--line-2);
    color: var(--ink-2);
    font-size: 0.86rem; font-weight: 500;
    white-space: nowrap;
    transition: background .12s, border-color .12s, color .12s;
  }
  .sub-chip:hover {
    background: var(--eu-blue-soft); border-color: var(--eu-blue-soft-2);
    color: var(--eu-blue); text-decoration: none;
  }
  .sub-chip.active {
    background: var(--ink); color: #fff; border-color: var(--ink);
  }
  .sub-chip .num { font-family: var(--mono); color: var(--muted); font-size: 0.78rem; }
  .sub-chip:hover .num { color: var(--eu-blue); }
  .sub-chip.active .num { color: rgba(255,255,255,.7); }
  .sub-chip.up {
    background: var(--bg);
    color: var(--muted);
    font-style: normal;
  }
  .sub-chip.up:hover { color: var(--eu-blue); }
  .sub-chip.up .icon-up { color: var(--muted); font-family: var(--mono); }

  /* ─── Two-column body ──────────────────────────────────── */
  .body-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    padding: 36px 0 56px;
  }

  /* ─── Filter sidebar ───────────────────────────────────── */
  .filter-side {
    position: sticky; top: 130px;
    align-self: start;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    padding-right: 6px;
  }
  .filter-side::-webkit-scrollbar { width: 6px; }
  .filter-side::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 999px; }

  .filter-head {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 16px;
  }
  .filter-head h2 {
    margin: 0; font: 700 1rem var(--sans);
    display: inline-flex; align-items: center; gap: 8px;
  }
  .filter-head h2 .count {
    font: 600 0.74rem var(--mono);
    background: var(--eu-blue); color: #fff;
    padding: 2px 8px; border-radius: 999px;
  }
  .filter-head .clear {
    font: 600 0.78rem var(--mono); color: var(--muted);
  }
  .filter-head .clear:hover { color: var(--eu-blue); text-decoration: none; }

  .filter-group { margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
  .filter-group:last-child { border-bottom: 0; padding-bottom: 0; }
  .filter-group h3 {
    margin: 0 0 10px;
    font: 600 0.78rem var(--mono);
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--muted);
    display: flex; justify-content: space-between; align-items: center;
  }
  .filter-group h3 .help { font: 0.7rem var(--mono); color: var(--muted-2); text-transform: none; letter-spacing: 0; }

  .filter-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
  .filter-row {
    display: flex; align-items: center; gap: 10px;
    padding: 6px 8px; margin: 0 -8px;
    border-radius: 6px;
    color: var(--ink-2);
    font-size: 0.88rem;
    cursor: pointer;
    transition: background .12s;
  }
  .filter-row:hover { background: var(--bg-2); color: var(--ink); }
  .filter-row.checked { color: var(--ink); font-weight: 500; }
  .filter-row .check {
    width: 16px; height: 16px; border-radius: 4px;
    border: 1.5px solid var(--line-3);
    background: var(--bg);
    flex: none;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .12s, border-color .12s;
  }
  .filter-row.checked .check {
    background: var(--eu-blue); border-color: var(--eu-blue);
  }
  .filter-row.checked .check::after {
    content: ""; width: 7px; height: 4px;
    border-left: 1.5px solid #fff; border-bottom: 1.5px solid #fff;
    transform: rotate(-45deg) translateY(-1px);
  }
  .filter-row .label-text { flex: 1; display: flex; align-items: center; gap: 8px; }
  .filter-row .label-text .swatch {
    width: 16px; height: 11px; border-radius: 2px;
    border: 1px solid rgba(15,23,42,.08);
    background-size: cover; flex: none;
  }
  .filter-row .count {
    font: 0.74rem var(--mono); color: var(--muted);
  }
  .filter-row.checked .count { color: var(--eu-blue); }

  /* Toggle */
  .filter-toggle {
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px; margin: 0 -8px;
    border-radius: 6px;
    color: var(--ink-2); font-size: 0.88rem;
    cursor: pointer;
    transition: background .12s;
  }
  .filter-toggle:hover { background: var(--bg-2); }
  .filter-toggle .info { display: flex; flex-direction: column; gap: 2px; }
  .filter-toggle .info-count { font: 0.74rem var(--mono); color: var(--muted); }
  .switch {
    width: 32px; height: 18px;
    background: var(--line-2); border-radius: 999px;
    position: relative; flex: none;
    transition: background .15s;
  }
  .switch::after {
    content: ""; position: absolute; top: 2px; left: 2px;
    width: 14px; height: 14px; border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,.2);
    transition: left .15s;
  }
  .filter-toggle.on .switch { background: var(--eu-blue); }
  .filter-toggle.on .switch::after { left: 16px; }

  .filter-search {
    width: 100%;
    padding: 7px 10px;
    background: var(--bg-2);
    border: 1px solid var(--line-2);
    border-radius: 6px;
    font: 0.84rem var(--sans);
    color: var(--ink);
    margin-bottom: 8px;
    outline: 0;
  }
  .filter-search:focus { border-color: var(--eu-blue); background: #fff; }
  .filter-search::placeholder { color: var(--muted); }

  /* ─── Results area ────────────────────────────────────── */
  .results-side { min-width: 0; }

  .results-bar {
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    flex-wrap: wrap;
  }
  .results-count {
    font-size: 0.94rem; color: var(--ink-2);
  }
  .results-count strong { color: var(--ink); font-weight: 600; }

  .results-controls { display: flex; align-items: center; gap: 8px; }
  .sort {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 12px;
    border: 1px solid var(--line-2); border-radius: 8px;
    background: var(--bg);
    font-size: 0.86rem; font-weight: 500; color: var(--ink-2);
    cursor: pointer;
  }
  .sort:hover { border-color: var(--line-3); background: var(--bg-2); }
  .sort .label-text { font-family: var(--mono); font-size: 0.74rem; color: var(--muted); margin-right: 4px; text-transform: uppercase; letter-spacing: 0.04em; }
  .sort .arrow { font-family: var(--mono); color: var(--muted); }

  .view-toggle {
    display: inline-flex;
    border: 1px solid var(--line-2); border-radius: 8px;
    overflow: hidden;
  }
  .view-toggle button {
    border: 0; background: var(--bg); padding: 7px 9px;
    cursor: pointer; color: var(--muted);
    border-right: 1px solid var(--line-2);
  }
  .view-toggle button:last-child { border-right: 0; }
  .view-toggle button.active { background: var(--bg-3); color: var(--ink); }
  .view-toggle button svg { width: 16px; height: 16px; display: block; }

  /* ─── Listing card ──────────────────────────────────── */
  .listings-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  }
  .listing {
    display: flex; flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: border-color .15s, box-shadow .15s, transform .15s;
    color: var(--ink); overflow: hidden;
  }
  .listing:hover {
    border-color: var(--eu-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
    text-decoration: none;
  }
  .listing-head {
    padding: 18px 18px 12px;
    display: flex; gap: 14px; align-items: start;
  }
  .listing-logo {
    width: 48px; height: 48px; border-radius: 10px;
    background: var(--eu-blue-soft); color: var(--eu-blue);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.15rem; letter-spacing: -0.04em;
    flex: none; border: 1px solid var(--eu-blue-soft-2);
  }
  .listing-head .info { flex: 1; min-width: 0; }
  .listing-head .name-row {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px;
  }
  .listing-name {
    font: 700 1.05rem var(--sans); letter-spacing: -0.01em; line-height: 1.2;
    color: var(--ink);
  }
  .listing-pricing {
    font: 600 0.7rem var(--mono); letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 3px 8px; border-radius: 4px;
    flex: none;
  }
  .listing-pricing.paid { background: var(--bg-3); color: var(--ink-2); border: 1px solid var(--line); }
  .listing-pricing.freemium { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
  .listing-pricing.free { background: var(--green-soft); color: #15803d; border: 1px solid var(--green-line); }

  .listing-cat {
    margin-top: 3px;
    font: 0.78rem var(--mono); color: var(--muted);
  }
  .listing-cat a { color: var(--muted); border-bottom: 1px dashed transparent; }
  .listing-cat a:hover { color: var(--eu-blue); border-bottom-color: var(--eu-blue); text-decoration: none; }

  .listing-body { padding: 0 18px 14px; }
  .listing-desc {
    font-size: 0.9rem; color: var(--ink-2); line-height: 1.5;
    margin: 0;
    display:-webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  }

  .listing-replaces {
    padding: 0 18px 12px;
    font: 0.78rem var(--mono); color: var(--muted);
    display: flex; gap: 6px; flex-wrap: wrap; align-items: center;
  }
  .listing-replaces .lbl { color: var(--muted); }
  .listing-replaces .pkg { color: var(--ink-2); font-weight: 500; }
  .listing-replaces .sep { color: var(--line-3); }

  .listing-foot {
    padding: 12px 18px;
    margin-top: auto;
    border-top: 1px solid var(--line);
    background: var(--bg-2);
    display: flex; justify-content: space-between; align-items: center;
    gap: 10px; flex-wrap: wrap;
  }
  .listing-flag {
    display: inline-flex; align-items: center; gap: 6px;
    font: 0.82rem var(--sans); color: var(--ink-2); font-weight: 500;
  }
  .listing-flag .swatch {
    width: 18px; height: 13px; border-radius: 2px;
    border: 1px solid rgba(15,23,42,.08);
    background-size: cover; flex: none;
  }
  .listing-badges {
    display: inline-flex; gap: 4px; flex-wrap: wrap;
  }
  .badge {
    display: inline-flex; align-items: center; gap: 3px;
    font-size: 0.7rem; font-weight: 600;
    padding: 2px 7px; border-radius: 999px;
    background: var(--bg-3); color: var(--ink-2);
    border: 1px solid var(--line);
  }
  .badge.os { background: var(--green-soft); color: #15803d; border-color: var(--green-line); }
  .badge.dpa { background: var(--eu-blue-soft); color: var(--eu-blue); border-color: var(--eu-blue-soft-2); }
  .badge.self { background: #fef3c7; color: #92400e; border-color: #fde68a; }
  .badge.eu { background: var(--bg-3); color: var(--ink-2); border-color: var(--line); }

  /* Country flag swatches */
  .f-de { background: linear-gradient(180deg,#000 33%,#dd0000 33% 66%,#ffce00 66%); }
  .f-fr { background: linear-gradient(90deg,#0055a4 33%,#fff 33% 66%,#ef4135 66%); }
  .f-nl { background: linear-gradient(180deg,#ae1c28 33%,#fff 33% 66%,#21468b 66%); }
  .f-es { background: linear-gradient(180deg,#aa151b 25%,#f1bf00 25% 75%,#aa151b 75%); }
  .f-se { background: #006aa7 url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 10'><rect width='16' height='10' fill='%23006aa7'/><rect x='5' width='2' height='10' fill='%23fecc00'/><rect y='4' width='16' height='2' fill='%23fecc00'/></svg>"); background-size: cover; }
  .f-ee { background: linear-gradient(180deg,#0072ce 33%,#000 33% 66%,#fff 66%); }
  .f-fi { background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 11'><rect width='18' height='11' fill='%23fff'/><rect x='5' width='3' height='11' fill='%23003580'/><rect y='4' width='18' height='3' fill='%23003580'/></svg>"); background-size: cover; }
  .f-pl { background: linear-gradient(180deg,#fff 50%,#dc143c 50%); }
  .f-it { background: linear-gradient(90deg,#008c45 33%,#fff 33% 66%,#cd212a 66%); }
  .f-cz { background: linear-gradient(180deg,#fff 50%,#d7141a 50%); }
  .f-be { background: linear-gradient(90deg,#000 33%,#fdda24 33% 66%,#ef3340 66%); }

  /* ─── Pagination ──────────────────────────────────────── */
  .pagination {
    display: flex; justify-content: center; align-items: center; gap: 4px;
    margin-top: 36px; padding-top: 28px;
    border-top: 1px solid var(--line);
  }
  .page-btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 36px; height: 36px; padding: 0 10px;
    border: 1px solid var(--line-2); border-radius: 8px;
    background: var(--bg); color: var(--ink-2);
    font: 600 0.86rem var(--mono);
    cursor: pointer;
    transition: background .12s, border-color .12s, color .12s;
  }
  .page-btn:hover { background: var(--bg-2); border-color: var(--line-3); color: var(--ink); text-decoration: none; }
  .page-btn.active {
    background: var(--ink); color: #fff; border-color: var(--ink);
  }
  .page-btn.disabled { opacity: .4; cursor: not-allowed; }
  .page-info { color: var(--muted); font: 0.84rem var(--mono); margin: 0 12px; }

  /* ─── Sibling subcategories ───────────────────────────── */
  .siblings {
    border-top: 1px solid var(--line);
    background: var(--bg-2);
    padding: 56px 0;
  }
  .siblings-head {
    display: flex; justify-content: space-between; align-items: end;
    margin-bottom: 24px; gap: 24px; flex-wrap: wrap;
  }
  .siblings-head h2 {
    margin: 0; font-size: 1.4rem; letter-spacing: -0.015em; font-weight: 700;
    color: var(--ink);
  }
  .siblings-head h2 .accent { color: var(--eu-blue); }
  .siblings-head .lede {
    margin: 6px 0 0; color: var(--muted); font-size: 0.92rem;
  }
  .siblings-head .more {
    font-size: 0.9rem; font-weight: 600; color: var(--eu-blue);
    display: inline-flex; align-items: center; gap: 4px;
  }
  .siblings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .sibling-card {
    display: flex; align-items: center; gap: 14px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    transition: border-color .15s, box-shadow .15s, transform .12s;
  }
  .sibling-card:hover {
    border-color: var(--eu-blue);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    transform: translateY(-1px);
  }
  .sibling-card .ico {
    width: 36px; height: 36px; border-radius: 8px;
    background: var(--eu-blue-soft); color: var(--eu-blue);
    display: inline-flex; align-items: center; justify-content: center;
    flex: none;
  }
  .sibling-card .ico svg { width: 18px; height: 18px; }
  .sibling-card .info { flex: 1; min-width: 0; }
  .sibling-card .name { font-weight: 600; font-size: 0.94rem; line-height: 1.2; color: var(--ink); }
  .sibling-card .meta { font: 0.76rem var(--mono); color: var(--muted); margin-top: 3px; }
  .sibling-card .num {
    font: 700 1rem var(--sans); color: var(--eu-blue);
    flex: none;
    letter-spacing: -0.02em;
  }

  /* ─── Footer ────────────────────────────────────────────── */
  footer.site {
    background: #0b1226; color: #cbd5e1;
    padding: 56px 0 32px;
  }
  footer.site a { color: #cbd5e1; }
  footer.site a:hover { color: #fff; text-decoration: none; }
  .foot-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px; margin-bottom: 32px;
  }
  .foot-brand .brand { color: #fff; }
  .foot-brand .brand .tld { color: #94a3b8; }
  .foot-brand p {
    color: #94a3b8; font-size: 0.88rem; max-width: 320px; margin: 14px 0 0; line-height: 1.6;
  }
  .foot-col h4 {
    font: 600 0.74rem var(--mono); text-transform: uppercase; letter-spacing: 0.06em;
    color: #94a3b8; margin: 0 0 14px;
  }
  .foot-col ul { list-style: none; padding: 0; margin: 0; }
  .foot-col li { margin-bottom: 9px; }
  .foot-col a { font-size: 0.92rem; }
  .foot-bar {
    border-top: 1px solid #1e293b; padding-top: 22px;
    display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
    font-size: 0.84rem; color: #94a3b8; font-family: var(--mono);
  }

  /* ─── Responsive ────────────────────────────────────────── */
  @media (max-width: 1100px) {
    .body-grid { grid-template-columns: 220px 1fr; gap: 24px; }
    nav.primary { display: none; }
    .status-pill { display: none; }
    .siblings-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 900px) {
    .body-grid { grid-template-columns: 1fr; gap: 0; }
    .filter-side {
      position: static; max-height: none; overflow: visible;
      padding: 16px; margin-bottom: 24px;
      background: var(--bg-2); border: 1px solid var(--line);
      border-radius: var(--radius);
    }
    .listings-grid { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 600px) {
    .nav .right .btn-ghost { display: none; }
    .ph-row { flex-direction: column; align-items: start; gap: 12px; }
    .ph-icon { width: 48px; height: 48px; }
    .ph-icon svg { width: 22px; height: 22px; }
    .siblings-grid { grid-template-columns: 1fr; }
    .results-bar { gap: 10px; }
    .view-toggle { display: none; }
    .foot-grid { grid-template-columns: 1fr; gap: 24px; }
  }
