  :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;
    --amber: #d97706;
    --amber-soft: #fef3c7;
    --amber-line: #fde68a;

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

    --radius: 10px;
    --radius-sm: 6px;
    --radius-lg: 14px;
    --max: 1180px;

    --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-cta {
    padding: 12px 22px;
    font-size: 0.96rem;
    background: var(--eu-blue); color: #fff;
    box-shadow: 0 8px 24px rgba(0,51,153,.20);
    border: 1px solid var(--eu-blue);
  }
  .btn-cta:hover { background: var(--eu-blue-deep); border-color: var(--eu-blue-deep); text-decoration: none; }
  .btn .arrow { font-family: var(--mono); }

  /* ─── Page header / Hero ──────────────────────────────── */
  .product-hero {
    padding: 36px 0 32px;
    border-bottom: 1px solid var(--line);
    background:
      radial-gradient(900px 280px at 70% -50px, rgba(0,51,153,.07), transparent 70%),
      var(--bg);
  }
  .breadcrumb {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 24px;
    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-row {
    display: flex; gap: 28px; align-items: start; flex-wrap: wrap;
  }
  .ph-logo {
    width: 96px; height: 96px; flex: none;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--eu-blue), #2552d9);
    color: #fff; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.4rem; letter-spacing: -0.04em;
    box-shadow: 0 12px 32px rgba(0,51,153,.20), inset 0 1px 0 rgba(255,255,255,.25);
    border: 1px solid rgba(0,51,153,.3);
    overflow: hidden;
  }
  .ph-logo img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 14px;
    box-sizing: border-box;
    background: #fff;
  }
  .ph-info { flex: 1; min-width: 0; }
  .ph-eyebrow {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    margin-bottom: 8px;
    font: 0.82rem var(--mono); color: var(--muted);
  }
  .ph-eyebrow a { color: var(--ink-2); border-bottom: 1px dashed var(--line-3); }
  .ph-eyebrow a:hover { color: var(--eu-blue); border-color: var(--eu-blue); text-decoration: none; }
  .ph-eyebrow .verified-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 3px 10px;
    border-radius: 999px;
    background: var(--green-soft); color: #15803d;
    border: 1px solid var(--green-line);
    font-weight: 600; font-size: 0.74rem;
    text-transform: uppercase; letter-spacing: 0.04em;
  }
  .ph-eyebrow .verified-pill .dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  }

  .ph-info h1 {
    margin: 0; font-size: clamp(2rem, 3.6vw, 2.8rem);
    letter-spacing: -0.025em; line-height: 1.05; font-weight: 700; color: var(--ink);
  }
  .ph-tagline {
    margin: 10px 0 18px;
    font-size: 1.16rem; color: var(--ink-2); line-height: 1.45;
    max-width: 720px;
  }
  .ph-meta {
    display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
    font: 0.86rem var(--mono); color: var(--muted);
    margin-bottom: 20px;
  }
  .ph-meta .meta-item {
    display: inline-flex; align-items: center; gap: 6px;
  }
  .ph-meta strong { color: var(--ink); font-weight: 600; }
  .ph-meta .swatch {
    width: 18px; height: 13px; border-radius: 2px;
    border: 1px solid rgba(15,23,42,.08);
    background-size: cover; flex: none;
  }
  .ph-meta .sep { color: var(--line-3); }
  .ph-meta .pricing-badge {
    padding: 3px 10px; border-radius: 4px;
    font: 600 0.74rem var(--mono);
    text-transform: uppercase; letter-spacing: 0.04em;
    background: var(--amber-soft); color: #92400e;
    border: 1px solid var(--amber-line);
  }

  .ph-actions {
    display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
  }
  .ph-actions .secondary-actions {
    display: inline-flex; gap: 4px; padding-left: 12px; margin-left: 4px;
    border-left: 1px solid var(--line);
  }
  .icon-btn {
    width: 36px; height: 36px; border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--line-2);
    background: var(--bg); color: var(--ink-2);
    cursor: pointer;
    transition: background .12s, border-color .12s;
  }
  .icon-btn:hover { background: var(--bg-3); color: var(--ink); border-color: var(--line-3); text-decoration: none; }
  .icon-btn svg { width: 16px; height: 16px; }

  /* ─── Replaces strip ───────────────────────────────────── */
  .replaces-strip {
    border-bottom: 1px solid var(--line);
    background: var(--bg-2);
    padding: 14px 0;
  }
  .replaces-inner {
    display: flex; align-items: center; gap: 12px;
    flex-wrap: wrap;
    font-size: 0.92rem;
  }
  .replaces-inner .lbl {
    color: var(--muted); font-weight: 500;
  }
  .replaces-inner .lbl strong { color: var(--ink); font-weight: 700; }
  .repl-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--bg);
    border: 1px solid var(--line-2);
    color: var(--ink-2);
    font: 500 0.86rem var(--sans);
    transition: background .12s, border-color .12s, color .12s;
  }
  .repl-chip:hover {
    background: var(--eu-blue-soft); border-color: var(--eu-blue-soft-2);
    color: var(--eu-blue); text-decoration: none;
  }
  .repl-chip .arrow { font-family: var(--mono); color: var(--muted); font-size: 0.78rem; }
  .repl-chip:hover .arrow { color: var(--eu-blue); }
  .repl-chip .repl-icon {
    width: 16px; height: 16px;
    object-fit: contain; flex: none;
    margin-right: 2px;
  }

  /* ─── Body two-column ──────────────────────────────────── */
  .body-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 40px;
    padding: 48px 0 64px;
  }

  /* ─── Main column ───────────────────────────────────── */
  .main-col { min-width: 0; }

  .section-h {
    display: flex; align-items: center; gap: 12px;
    margin: 0 0 16px;
    font-size: 1.32rem; font-weight: 700; letter-spacing: -0.015em;
    color: var(--ink);
  }
  .section-h::before {
    content: "";
    width: 3px; height: 18px; background: var(--eu-blue); border-radius: 2px;
    flex: none;
  }

  .description {
    font-size: 1rem; line-height: 1.7;
    color: var(--ink-2);
    margin: 0;
  }
  .description p { margin: 0 0 16px; }
  .description p:last-child { margin-bottom: 0; }
  .description p:first-of-type::first-letter {
    font-size: 2.6em;
    float: left;
    line-height: 0.9;
    margin-right: 8px;
    margin-top: 4px;
    color: var(--eu-blue);
    font-weight: 700;
    font-family: var(--sans);
  }
  .description strong { color: var(--ink); font-weight: 600; }
  .description em { color: var(--ink); font-style: normal; background: rgba(0,51,153,.06); padding: 0 4px; border-radius: 3px; }

  /* Attributes grid */
  .attrs-block {
    margin-top: 36px;
    padding: 22px 24px;
    border: 1px solid var(--line);
    background: var(--bg-2);
    border-radius: var(--radius);
  }
  .attrs-block .ab-h {
    margin: 0 0 14px;
    font: 600 0.78rem var(--mono);
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--muted);
  }
  .attrs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 32px;
    margin: 0;
  }
  .attr {
    display: flex; justify-content: space-between; align-items: center;
    padding: 11px 0;
    border-bottom: 1px dashed var(--line-2);
    font-size: 0.92rem;
  }
  .attr:nth-last-child(-n+2) { border-bottom: 0; }
  .attr-label { color: var(--muted); }
  .attr-value {
    color: var(--ink); font-weight: 500;
    text-align: right;
  }
  .attr-value.yes { color: var(--green); }
  .attr-value.yes::before { content: "✓ "; }
  .attr-value.no { color: var(--muted); }
  .attr-value.no::before { content: "—"; opacity: .5; margin-right: 4px; }
  .attr-value a { font-weight: 600; }
  .attr-value .link-arrow { font-family: var(--mono); color: var(--muted); font-size: 0.84rem; margin-left: 4px; }

  /* Editorial notes */
  .editorial {
    margin-top: 36px;
    display: grid; gap: 12px;
  }
  .ed-note {
    border: 1px solid;
    border-radius: var(--radius);
    padding: 16px 18px 16px 50px;
    position: relative;
    font-size: 0.94rem;
    line-height: 1.55;
  }
  .ed-note .ico {
    position: absolute; left: 16px; top: 16px;
    width: 22px; height: 22px;
    border-radius: 6px;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .ed-note .ico svg { width: 14px; height: 14px; }
  .ed-note .lbl {
    display: block;
    font: 600 0.78rem var(--mono);
    text-transform: uppercase; letter-spacing: 0.06em;
    margin-bottom: 4px;
  }
  .ed-note p { margin: 0; }
  .ed-note.watch {
    background: var(--amber-soft); border-color: var(--amber-line);
    color: #92400e;
  }
  .ed-note.watch .ico { background: var(--amber); color: #fff; }
  .ed-note.watch .lbl { color: var(--amber); }
  .ed-note.editorial-note {
    background: var(--eu-blue-soft); border-color: var(--eu-blue-soft-2);
    color: var(--eu-blue-deep);
  }
  .ed-note.editorial-note .ico { background: var(--eu-blue); color: #fff; }
  .ed-note.editorial-note .lbl { color: var(--eu-blue); }

  /* ─── Sidebar ──────────────────────────────────────────── */
  .sidebar {
    display: flex; flex-direction: column; gap: 14px;
    align-self: start;
    position: sticky;
    top: 88px;
  }

  .side-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow-sm);
  }

  .side-h {
    display: flex; justify-content: space-between; align-items: center;
    margin: 0 0 16px;
    font: 700 0.94rem var(--sans);
  }
  .side-h .small-caps { color: var(--muted); }

  /* Compliance card — signature element */
  .compliance {
    background:
      radial-gradient(400px 120px at 90% -20%, rgba(0,51,153,.08), transparent 70%),
      #fff;
    border-color: var(--eu-blue-soft-2);
    position: relative;
    overflow: hidden;
  }
  .compliance::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--eu-blue) 0 80%, var(--eu-yellow) 80% 100%);
  }
  .compliance-head {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 14px;
  }
  .compliance-head .star { color: var(--eu-yellow); font-size: 1.05rem; }
  .compliance-head h3 {
    margin: 0; font: 700 0.94rem var(--sans); color: var(--ink);
  }
  .compliance-head .pass-pill {
    margin-left: auto;
    display: inline-flex; align-items: center; gap: 4px;
    padding: 3px 8px;
    background: var(--green-soft); color: #15803d;
    border: 1px solid var(--green-line);
    border-radius: 999px;
    font: 600 0.7rem var(--mono);
  }
  .compliance-head .pass-pill::before { content: "✓"; }

  .crit-row {
    display: flex; gap: 12px; align-items: start;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
  .crit-row:last-child { border-bottom: 0; }
  .crit-row .check {
    width: 24px; height: 24px; flex: none;
    border-radius: 50%;
    background: var(--green-soft); color: #15803d;
    border: 1px solid var(--green-line);
    display: inline-flex; align-items: center; justify-content: center;
  }
  .crit-row .check svg { width: 12px; height: 12px; }
  .crit-row .info { flex: 1; }
  .crit-row .name {
    font-weight: 600; font-size: 0.9rem; color: var(--ink); line-height: 1.2;
  }
  .crit-row .detail {
    margin-top: 3px; font-size: 0.82rem; color: var(--muted);
    line-height: 1.5;
  }
  .crit-row .detail a { color: var(--eu-blue); font-weight: 500; }
  .crit-row .detail .ext-icon { font-family: var(--mono); font-size: 0.74rem; margin-left: 2px; }

  .compliance-foot {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed var(--line-2);
    font: 0.8rem var(--mono); color: var(--muted);
    display: flex; justify-content: space-between; align-items: center;
  }
  .compliance-foot strong { color: var(--green); font-weight: 600; }
  .compliance-foot strong::before { content: "● "; }

  /* Quick facts card */
  .facts dl {
    margin: 0; display: grid; gap: 0;
  }
  .facts .fact {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed var(--line-2);
    font-size: 0.88rem;
  }
  .facts .fact:last-child { border-bottom: 0; }
  .facts dt { color: var(--muted); }
  .facts dd {
    margin: 0; color: var(--ink); font-weight: 500;
    text-align: right;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .facts dd .swatch {
    width: 18px; height: 13px; border-radius: 2px;
    border: 1px solid rgba(15,23,42,.08);
    background-size: cover; flex: none;
  }
  .facts dd .ext { color: var(--eu-blue); font-weight: 600; }
  .facts dd .ext .arrow { font-family: var(--mono); font-size: 0.74rem; }

  /* Tags card */
  .tags-card .tag-list {
    display: flex; flex-wrap: wrap; gap: 6px;
  }
  .tag {
    display: inline-flex; align-items: center;
    padding: 4px 10px;
    background: var(--bg-3);
    border: 1px solid var(--line);
    border-radius: 999px;
    font: 500 0.8rem var(--sans);
    color: var(--ink-2);
    transition: background .12s, color .12s, border-color .12s;
  }
  .tag:hover { background: var(--eu-blue-soft); color: var(--eu-blue); border-color: var(--eu-blue-soft-2); text-decoration: none; }

  /* ─── Related listings ─────────────────────────────────── */
  .related {
    border-top: 1px solid var(--line);
    background: var(--bg-2);
    padding: 56px 0;
  }
  .related-head {
    display: flex; justify-content: space-between; align-items: end;
    margin-bottom: 22px; gap: 24px; flex-wrap: wrap;
  }
  .related-head h2 {
    margin: 0;
    font-size: 1.4rem; letter-spacing: -0.015em; font-weight: 700; color: var(--ink);
  }
  .related-head h2 .accent { color: var(--eu-blue); }
  .related-head .sub-line { display: block; color: var(--muted); font-size: 0.92rem; margin-top: 6px; }
  .related-head .more {
    font-size: 0.9rem; font-weight: 600; color: var(--eu-blue);
    display: inline-flex; align-items: center; gap: 4px;
  }
  .related-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  }
  .rel-listing {
    display: flex; flex-direction: column; gap: 10px;
    padding: 16px;
    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);
  }
  .rel-listing:hover {
    border-color: var(--eu-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
    text-decoration: none;
  }
  .rel-head { display: flex; gap: 10px; align-items: center; }
  .rel-logo {
    width: 40px; height: 40px; border-radius: 9px;
    background: var(--eu-blue-soft); color: var(--eu-blue);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem; letter-spacing: -0.04em;
    flex: none; border: 1px solid var(--eu-blue-soft-2);
  }
  .rel-name { font-weight: 600; font-size: 0.94rem; line-height: 1.2; }
  .rel-cat { font: 0.72rem var(--mono); color: var(--muted); margin-top: 2px; }
  .rel-desc {
    font-size: 0.84rem; color: var(--ink-2); line-height: 1.45; margin: 0;
    display:-webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  }
  .rel-foot {
    margin-top: auto;
    padding-top: 8px; border-top: 1px dashed var(--line);
    display: flex; justify-content: space-between; align-items: center;
    font: 0.78rem var(--mono); color: var(--ink-2);
  }
  .rel-flag { display: inline-flex; align-items: center; gap: 5px; }
  .rel-flag .swatch {
    width: 16px; height: 11px; border-radius: 2px;
    border: 1px solid rgba(15,23,42,.08); background-size: cover; flex: none;
  }
  .rel-foot .badges { display: inline-flex; gap: 4px; }
  .rel-foot .badge {
    font-size: 0.66rem; font-weight: 600;
    padding: 1px 6px; border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--bg-3); color: var(--ink-2);
  }
  .rel-foot .badge.os { background: var(--green-soft); color: #15803d; border-color: var(--green-line); }
  .rel-foot .badge.dpa { background: var(--eu-blue-soft); color: var(--eu-blue); border-color: var(--eu-blue-soft-2); }

  /* ─── Verification footer ─────────────────────────────── */
  .verify-band {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    padding: 22px 0;
    font-size: 0.86rem;
  }
  .verify-band-inner {
    display: flex; justify-content: space-between; align-items: center;
    gap: 18px; flex-wrap: wrap;
    color: var(--muted);
  }
  .verify-band .left {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--mono);
  }
  .verify-band .left::before {
    content: ""; width: 8px; height: 8px; border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(22,163,74,.5);
    animation: pulse-green 2s infinite;
  }
  .verify-band .left strong { color: var(--ink); font-weight: 600; }
  .verify-band .right { display: inline-flex; gap: 18px; align-items: center; }
  .verify-band .right a { color: var(--ink-2); font-weight: 500; }
  .verify-band .right a:hover { color: var(--eu-blue); text-decoration: none; }

  /* 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-pl { background: linear-gradient(180deg,#fff 50%,#dc143c 50%); }
  .f-ee { background: linear-gradient(180deg,#0072ce 33%,#000 33% 66%,#fff 66%); }

  /* ─── 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) {
    nav.primary { display: none; }
    .status-pill { display: none; }
    .body-grid { grid-template-columns: 1fr; gap: 32px; }
    .sidebar { position: static; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 700px) {
    .nav .right .btn-ghost { display: none; }
    .ph-row { gap: 18px; }
    .ph-logo { width: 72px; height: 72px; font-size: 1.8rem; border-radius: 14px; }
    .attrs { grid-template-columns: 1fr; gap: 0; }
    .attr:nth-last-child(-n+2) { border-bottom: 1px dashed var(--line-2); }
    .attr:last-child { border-bottom: 0; }
    .related-grid { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr; gap: 24px; }
    .description p:first-of-type::first-letter { font-size: 2.2em; }
  }
