    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --ink: #0f172a;
      --ink-soft: #334155;
      --ink-muted: #64748b;
      --rule: rgba(148, 163, 184, 0.24);
      --card: rgba(255,255,255,0.84);
      --accent: #0f766e;
      --accent-soft: rgba(15,118,110,0.10);
      --contested: #b45309;
      --shadow: 0 22px 60px rgba(15, 23, 42, 0.10);
    }
    body {
      font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
      color: var(--ink);
      min-height: 100vh;
      padding: 1rem;
      background:
        radial-gradient(circle at 8% 5%, rgba(15, 118, 110, 0.16), transparent 30%),
        radial-gradient(circle at 90% 8%, rgba(180, 83, 9, 0.13), transparent 26%),
        linear-gradient(135deg, #f8fbff 0%, #eef5f8 52%, #f8f3ea 100%);
    }
    a { color: inherit; text-decoration: none; }
    .shell { width: min(1180px, 100%); margin: 0 auto; }
    .nav {
      position: sticky;
      top: 1rem;
      z-index: 20;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      color: #fff;
      background: rgba(15, 23, 42, 0.76);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 999px;
      padding: 0.75rem 1rem;
      box-shadow: 0 12px 34px rgba(15, 23, 42, 0.14);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
    }
    .logo {
      flex-shrink: 0;
      padding: 0 1rem 0 0.25rem;
      border-right: 1px solid rgba(255,255,255,0.12);
      color: #fff;
      font-size: 0.98rem;
      font-weight: 900;
      letter-spacing: -0.04em;
      white-space: nowrap;
    }
    .logo span {
      background: linear-gradient(90deg, #8b5cf6, #38bdf8, #0f766e);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 0.35rem;
      flex: 1;
      min-width: 0;
      overflow-x: auto;
      scrollbar-width: none;
    }
    .nav-links::-webkit-scrollbar { display: none; }
    .nav-links a {
      white-space: nowrap;
      color: rgba(226,232,240,0.82);
      font-size: 0.72rem;
      font-weight: 800;
      padding: 0.5rem 0.85rem;
      border-radius: 999px;
      border: 1px solid transparent;
      transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s;
    }
    .nav-links a:hover {
      color: #fff;
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.10);
      transform: translateY(-1px);
    }
    .nav-links a.home-link {
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.10);
      color: #fff;
    }
    .nav-cta {
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #0f172a;
      font-size: 0.72rem;
      font-weight: 900;
      padding: 0.55rem 0.95rem;
      border-radius: 999px;
      background: linear-gradient(135deg, #f8fafc, #bae6fd);
      border: 1px solid rgba(255,255,255,0.72);
      box-shadow: 0 10px 24px rgba(56,189,248,0.18);
      white-space: nowrap;
    }
    .nav-cta:hover { transform: translateY(-1px); }
    .hero {
      margin: 3rem 0 1rem;
      min-height: 520px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 330px;
      gap: 1rem;
      align-items: stretch;
    }
    .hero-main, .hero-side, .panel, .article, .related-card {
      background: var(--card);
      border: 1px solid rgba(255,255,255,0.72);
      border-radius: 34px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(16px);
    }
    .hero-main {
      color: #fff;
      padding: clamp(1.45rem, 4vw, 3.3rem);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      overflow: hidden;
      position: relative;
      background:
        linear-gradient(180deg, rgba(15,23,42,0.06), rgba(15,23,42,0.82)),
        var(--hero-image, linear-gradient(135deg, #0f766e, #0f172a));
      background-size: cover;
      background-position: center;
    }
    .hero-main::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 18%, rgba(255,255,255,0.28), transparent 26%),
        linear-gradient(135deg, rgba(15,118,110,0.72), rgba(15,23,42,0.45));
    }
    .hero-inner { position: relative; z-index: 1; }
    .kicker {
      color: rgba(255,255,255,0.74);
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-size: 0.74rem;
      font-weight: 900;
    }
    h1 {
      font-family: "Newsreader", Georgia, serif;
      font-size: clamp(2.75rem, 7.8vw, 6.25rem);
      line-height: 0.9;
      letter-spacing: -0.07em;
      max-width: 820px;
      margin-top: 0.65rem;
    }
    .dek {
      max-width: 740px;
      color: rgba(255,255,255,0.84);
      font-size: clamp(1rem, 2vw, 1.18rem);
      line-height: 1.65;
      margin-top: 1rem;
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.2rem; }
    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      padding: 0.75rem 1rem;
      font-size: 0.84rem;
      font-weight: 900;
    }
    .button.primary { background: #fff; color: #0f172a; }
    .button.secondary { color: #fff; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.1); }
    .share-control {
      position: relative;
      z-index: 5;
      display: inline-flex;
      align-items: center;
    }
    .share-trigger {
      appearance: none;
      border: 1px solid rgba(255,255,255,0.28);
      color: #fff;
      background: rgba(255,255,255,0.14);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
      cursor: pointer;
    }
    .share-trigger:hover { background: rgba(255,255,255,0.2); }
    .share-icon {
      width: 1rem;
      height: 1rem;
      margin-right: 0.45rem;
    }
    .share-menu {
      position: absolute;
      left: 0;
      top: calc(100% + 0.55rem);
      width: 230px;
      padding: 0.45rem;
      border-radius: 20px;
      background: rgba(255,255,255,0.96);
      border: 1px solid rgba(226,232,240,0.9);
      box-shadow: 0 22px 60px rgba(15, 23, 42, 0.22);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      opacity: 0;
      transform: translateY(-6px);
      pointer-events: none;
      transition: opacity 160ms ease, transform 160ms ease;
    }
    .share-control.open .share-menu {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    .share-menu a, .share-menu button {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      padding: 0.72rem 0.78rem;
      border: 0;
      border-radius: 15px;
      color: var(--ink-soft);
      background: transparent;
      font: inherit;
      font-size: 0.8rem;
      font-weight: 900;
      text-align: left;
      cursor: pointer;
    }
    .share-menu a:hover, .share-menu button:hover {
      color: var(--ink);
      background: rgba(15, 118, 110, 0.08);
    }
    .share-menu span {
      color: var(--ink-muted);
      font-size: 0.68rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .toast {
      position: fixed;
      left: 50%;
      bottom: 1.25rem;
      z-index: 80;
      padding: 0.72rem 1rem;
      border-radius: 999px;
      color: #fff;
      background: rgba(15, 23, 42, 0.9);
      box-shadow: 0 18px 50px rgba(15, 23, 42, 0.26);
      font-size: 0.82rem;
      font-weight: 900;
      opacity: 0;
      transform: translate(-50%, 10px);
      pointer-events: none;
      transition: opacity 180ms ease, transform 180ms ease;
    }
    .toast.visible {
      opacity: 1;
      transform: translate(-50%, 0);
    }
    .hero-side {
      padding: 1rem;
      display: grid;
      align-content: stretch;
      gap: 0.75rem;
      background:
        radial-gradient(circle at 88% 4%, rgba(14, 165, 233, 0.16), transparent 30%),
        radial-gradient(circle at 8% 92%, rgba(15, 118, 110, 0.12), transparent 34%),
        rgba(255,255,255,0.84);
    }
    .hero-guide {
      position: relative;
      overflow: hidden;
      min-height: 12.5rem;
      padding: 1rem;
      border-radius: 26px;
      color: #fff;
      background:
        radial-gradient(circle at 82% 12%, rgba(56, 189, 248, 0.26), transparent 28%),
        linear-gradient(135deg, #0f766e, #0f172a);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.16);
    }
    .hero-guide::before {
      content: "";
      position: absolute;
      inset: -4rem -5rem auto auto;
      width: 12rem;
      height: 12rem;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.18);
      box-shadow: inset 0 0 0 1.6rem rgba(255,255,255,0.05);
    }
    .guide-label {
      position: relative;
      z-index: 1;
      color: rgba(226,232,240,0.78);
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-size: 0.68rem;
      font-weight: 900;
    }
    .hero-guide h2 {
      position: relative;
      z-index: 1;
      max-width: 12ch;
      margin-top: 0.42rem;
      font-family: "Newsreader", Georgia, serif;
      font-size: 2rem;
      line-height: 0.95;
      letter-spacing: -0.055em;
    }
    .hero-guide p {
      position: relative;
      z-index: 1;
      color: rgba(241,245,249,0.82);
      font-size: 0.86rem;
      line-height: 1.52;
      margin-top: 0.65rem;
    }
    .guide-chip-row {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      gap: 0.38rem;
      margin-top: 0.85rem;
    }
    .guide-chip-row span {
      display: inline-flex;
      border-radius: 999px;
      padding: 0.34rem 0.52rem;
      color: rgba(255,255,255,0.88);
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.14);
      font-size: 0.68rem;
      font-weight: 900;
    }
    .metric {
      border-radius: 24px;
      padding: 0.95rem;
      background: rgba(15,23,42,0.04);
      border: 1px solid var(--rule);
    }
    .metric-value { display: block; font-family: "Newsreader", Georgia, serif; font-size: 2.6rem; line-height: 0.9; letter-spacing: -0.06em; }
    .metric-label { display: block; color: var(--ink-muted); font-size: 0.76rem; font-weight: 900; margin-top: 0.4rem; text-transform: uppercase; letter-spacing: 0.11em; }
    .divergence-wrap { position: relative; }
    .divergence-tip {
      position: fixed;
      width: 230px;
      background: #1a2535;
      border: 1px solid rgba(148,163,184,0.18);
      border-radius: 12px;
      padding: 0.8rem 0.9rem 0.75rem;
      box-shadow: 0 12px 32px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.3);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.17s ease;
      z-index: 9999;
    }
    .divergence-tip.visible { opacity: 1; pointer-events: auto; }
    .divergence-tip-title { font-family: "Manrope", sans-serif; font-size: 0.66rem; font-weight: 700; color: #e2e8f0; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.35rem; }
    .divergence-tip-desc { font-family: "Manrope", sans-serif; font-size: 0.63rem; color: #94a3b8; line-height: 1.55; margin-bottom: 0.55rem; }
    .divergence-tip-scale { display: flex; flex-direction: column; gap: 0.22rem; border-top: 1px solid rgba(148,163,184,0.1); padding-top: 0.45rem; }
    .divergence-tip-row { display: flex; align-items: center; gap: 0.45rem; }
    .divergence-tip-swatch { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
    .divergence-tip-row span { font-family: "Manrope", sans-serif; font-size: 0.61rem; color: #94a3b8; line-height: 1.4; }
    .divergence-tip-row span strong { color: #cbd5e1; font-weight: 600; }
    .content { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 1rem; align-items: start; }
    .panel { padding: clamp(1rem, 2vw, 1.35rem); margin-bottom: 1rem; }
    .panel-label { color: var(--accent); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.7rem; font-weight: 900; }
    .panel-title { font-family: "Newsreader", Georgia, serif; font-size: clamp(1.75rem, 4vw, 2.7rem); line-height: 0.98; letter-spacing: -0.05em; margin-top: 0.35rem; }
    .body-text { color: var(--ink-soft); line-height: 1.72; margin-top: 0.85rem; }
    .brief-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.8rem; margin-top: 1rem; }
    .brief-card {
      border-radius: 24px;
      padding: 1rem;
      background: rgba(15,23,42,0.04);
      border: 1px solid var(--rule);
    }
    .brief-card.consensus { background: rgba(15,118,110,0.08); }
    .brief-card.contested { background: rgba(180,83,9,0.10); }
    .brief-label { color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.68rem; font-weight: 900; }
    .brief-card ul { margin: 0.65rem 0 0 1.1rem; color: var(--ink-soft); line-height: 1.6; }
    .qc-panel {
      background: linear-gradient(135deg, rgba(240,253,250,0.92), rgba(255,251,235,0.80));
      border-color: rgba(15,118,110,0.20);
    }
    .qc-list {
      margin: 0.85rem 0 0 1.1rem;
      color: var(--ink-soft);
      line-height: 1.62;
    }
    .qc-confidence {
      color: var(--ink-muted);
      font-size: 0.78rem;
      font-weight: 900;
      margin-top: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }
    .viewpoint-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; margin-top: 1rem; }
    .viewpoint {
      border-radius: 24px;
      padding: 1rem;
      background: #fff;
      border: 1px solid var(--rule);
    }
    .viewpoint-country {
      display: inline-flex;
      border-radius: 999px;
      background: var(--accent-soft);
      color: var(--accent);
      padding: 0.32rem 0.55rem;
      font-size: 0.68rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }
    .viewpoint p { color: var(--ink-soft); line-height: 1.6; margin-top: 0.65rem; }
    .article {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 110px;
      gap: 1rem;
      padding: 1rem;
      margin-bottom: 0.75rem;
      border-radius: 26px;
    }
    .article-meta { color: var(--ink-muted); font-size: 0.74rem; font-weight: 850; display: flex; gap: 0.4rem; flex-wrap: wrap; }
    .article-title { font-family: "Newsreader", Georgia, serif; font-size: 1.42rem; line-height: 1.04; letter-spacing: -0.035em; margin-top: 0.35rem; }
    .article-title a:hover { color: var(--accent); }
    .article-summary { color: var(--ink-soft); line-height: 1.55; margin-top: 0.6rem; font-size: 0.94rem; }
    .article-thumb { width: 110px; height: 92px; object-fit: cover; border-radius: 18px; }
    .side-list { display: grid; gap: 0.55rem; margin-top: 0.75rem; }
    .chip, .side-list a {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      padding: 0.45rem 0.65rem;
      background: rgba(15,23,42,0.05);
      border: 1px solid var(--rule);
      color: var(--ink-soft);
      font-size: 0.78rem;
      font-weight: 850;
    }
    .side-list a { border-radius: 16px; }
    .side-list a:hover { background: #fff; color: var(--accent); }
    .chip-row { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 0.75rem; }
    .related-grid { display: grid; gap: 0.65rem; margin-top: 0.75rem; }
    .related-card { display: block; padding: 0.85rem; border-radius: 22px; }
    .related-card:hover { color: var(--accent); }
    .related-kicker { color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.62rem; font-weight: 900; }
    .related-name { font-family: "Newsreader", Georgia, serif; font-size: 1.25rem; line-height: 1.05; letter-spacing: -0.035em; margin-top: 0.25rem; }
    .site-footer {
      border-top: 1px solid var(--rule);
      padding: 1.25rem 0 0.5rem;
      margin-top: 1.5rem;
      color: var(--ink-muted);
      font-size: 0.82rem;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 0.85rem;
    }
    .footer-links { display: flex; flex-wrap: wrap; gap: 0.75rem; }
    .footer-links a { color: var(--ink-soft); font-weight: 800; }
    .footer-links a:hover { color: var(--accent); }
    @media (max-width: 900px) {
      body { padding: 0.75rem 0.75rem 4rem; }
      .nav {
        border-radius: 22px;
        align-items: center;
        flex-wrap: wrap;
        gap: 0;
        padding: 0.65rem 0.85rem 0.55rem;
      }
      .logo {
        border-right: none;
        padding-right: 0;
      }
      .nav-cta {
        margin-left: auto;
        padding: 0.42rem 0.72rem;
        font-size: 0.68rem;
      }
      .nav-links {
        order: 3;
        width: 100%;
        flex-basis: 100%;
        padding: 0.42rem 0 0.1rem;
        margin-top: 0.38rem;
        border-top: 1px solid rgba(255,255,255,0.10);
      }
      .nav-links a {
        flex-shrink: 0;
        padding: 0.35rem 0.72rem;
        font-size: 0.7rem;
      }
      .hero, .content, .brief-grid, .viewpoint-grid { grid-template-columns: 1fr; }
      .hero { margin-top: 1rem; min-height: auto; }
      .hero-main { min-height: 420px; border-radius: 28px; }
      .share-control { width: 100%; }
      .share-trigger { width: 100%; }
      .share-menu {
        left: 0;
        right: 0;
        width: auto;
      }
      .article { grid-template-columns: 1fr; }
      .article-thumb { width: 100%; height: 190px; }
    }

    /* ── Editorial comparison panel — the lead content on perspective pages ── */
    .panel.editorial {
      background:
        linear-gradient(135deg, rgba(15,118,110,0.06) 0%, rgba(180,83,9,0.05) 100%),
        var(--card);
      border-left: 4px solid var(--accent);
      padding: clamp(1.4rem, 2.6vw, 2rem);
    }
    .editorial-kicker {
      color: var(--accent);
      font-weight: 900;
    }
    .editorial-lede {
      font-family: "Newsreader", Georgia, serif;
      font-size: clamp(1.45rem, 3vw, 2.1rem);
      line-height: 1.18;
      letter-spacing: -0.025em;
      color: var(--ink);
      margin-top: 0.5rem;
      margin-bottom: 1.1rem;
    }
    .editorial-prose p {
      color: var(--ink-soft);
      line-height: 1.78;
      font-size: 1.02rem;
      margin-bottom: 0.95rem;
    }
    .editorial-prose p:last-child { margin-bottom: 0; }

    .outlet-openings {
      margin-top: 1.6rem;
      padding-top: 1.2rem;
      border-top: 1px dashed var(--rule);
    }
    .outlet-openings-label {
      color: var(--ink-muted);
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-size: 0.7rem;
      font-weight: 800;
      margin-bottom: 0.85rem;
    }
    .outlet-openings-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 0.7rem;
    }
    .outlet-opening {
      background: var(--card);
      border: 1px solid var(--rule);
      border-radius: 10px;
      padding: 0.75rem 0.9rem;
    }
    .outlet-opening-source {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 0.35rem;
    }
    .outlet-opening-source a { color: var(--accent); }
    .outlet-opening-country {
      font-size: 0.7rem;
      font-weight: 700;
      color: var(--ink-muted);
      background: rgba(148,163,184,0.16);
      padding: 0.1rem 0.42rem;
      border-radius: 999px;
    }
    .outlet-opening-text {
      color: var(--ink-soft);
      font-size: 0.92rem;
      line-height: 1.5;
    }

    /* ── Source trail collapsible — articles are secondary on perspective pages ── */
    .source-trail-panel { background: transparent; box-shadow: none; border: 1px dashed var(--rule); }
    .source-trail-details { margin-top: 0.9rem; }
    .source-trail-summary {
      cursor: pointer;
      list-style: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.55rem 0.95rem;
      border-radius: 999px;
      background: rgba(15,118,110,0.10);
      color: var(--accent);
      font-weight: 700;
      font-size: 0.88rem;
      user-select: none;
    }
    .source-trail-summary::-webkit-details-marker { display: none; }
    .source-trail-chevron { transition: transform 0.18s; }
    details[open] .source-trail-chevron { transform: rotate(180deg); }
    .source-trail-list { margin-top: 1rem; display: grid; gap: 0.75rem; }
