:root {
      --ink: #101418;
      --muted: #5c6773;
      --line: #d9e1e8;
      --paper: #fbfcfd;
      --panel: #ffffff;
      --soft: #eef3f6;
      --green: #0f7a5b;
      --blue: #1d5f8f;
      --amber: #c98524;
      --red: #b84a43;
      --navy: #0d1b2a;
      --violet: #5b5f97;
      --shadow: 0 20px 55px rgba(16, 20, 24, 0.10);
    }
    * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: Arial, sans-serif;
      color: var(--ink);
      background:
        linear-gradient(rgba(16, 20, 24, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 20, 24, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, #fbfcfd 0%, #eef4f6 54%, #fbfcfd 100%);
      background-size: 44px 44px, 44px 44px, auto;
    }
    a { color: var(--blue); text-decoration: none; }
    a:hover { text-decoration: underline; }
    .topbar { position: sticky; top: 0; z-index: 10; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 14px clamp(18px, 4vw, 54px); border-bottom: 1px solid rgba(16, 20, 24, 0.10); background: rgba(251, 252, 253, 0.90); backdrop-filter: blur(18px); }
    .brand { display: flex; align-items: center; gap: 12px; font-weight: 900; }
    .mark { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: #101418; color: #fff; border: 1px solid rgba(16, 20, 24, 0.18); box-shadow: inset 0 0 0 5px #fff, 0 10px 24px rgba(16, 20, 24, 0.14); }
    .mark svg { width: 22px; height: 22px; display: block; }
    .brand-stack { display: grid; gap: 1px; }
    .brand-name { font-size: 18px; line-height: 1; }
    .brand-sub { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
    .nav { display: flex; gap: 18px; flex-wrap: wrap; font-size: 13px; color: var(--muted); }
    .nav a { color: #24516f; font-weight: 700; }
    .ticker { overflow: hidden; border-bottom: 1px solid rgba(16, 20, 24, 0.10); background: linear-gradient(90deg, #101418, #0d1b2a 42%, #101418); color: #fff; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06); }
    .ticker-track { display: flex; width: max-content; padding: 9px 0; animation: ticker-scroll 58s linear infinite; }
    .ticker:hover .ticker-track { animation-play-state: paused; }
    .ticker-item { flex: 0 0 auto; display: inline-flex; align-items: baseline; gap: 8px; min-height: 28px; padding: 0 18px; border-right: 1px solid rgba(255, 255, 255, 0.16); white-space: nowrap; }
    .ticker-dot { align-self: center; width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 3px rgba(184, 74, 67, 0.20); }
    .ticker-item.is-open .ticker-dot { background: #22c55e; box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.20); }
    .ticker-name { color: rgba(255, 255, 255, 0.62); font-size: 11px; font-weight: 800; text-transform: uppercase; }
    .ticker-value { font-size: 14px; font-weight: 800; }
    .ticker-meta { color: rgba(255, 255, 255, 0.55); font-size: 11px; }
    .ticker-next { color: #f3c66b; }
    @keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    .hero { position: relative; display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(390px, 1.12fr); gap: clamp(28px, 5vw, 72px); min-height: 80vh; padding: clamp(44px, 7vw, 94px) clamp(18px, 4vw, 54px) 34px; align-items: center; border-bottom: 1px solid var(--line); background: linear-gradient(135deg, rgba(255, 255, 255, 0.76) 0%, rgba(244, 247, 249, 0.84) 48%, rgba(226, 239, 241, 0.90) 100%); overflow: hidden; }
    .hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(115deg, rgba(15, 122, 91, 0.08), transparent 34%), linear-gradient(290deg, rgba(201, 133, 36, 0.09), transparent 42%); }
    .hero > * { position: relative; }
    .eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 12px; color: var(--green); font-size: 12px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
    .eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: currentColor; }
    h1 { margin: 0; max-width: 760px; font-size: clamp(44px, 7vw, 94px); line-height: 0.92; letter-spacing: 0; }
    .lede { max-width: 660px; margin: 22px 0 0; color: #34404c; font-size: clamp(18px, 2vw, 24px); line-height: 1.42; }
    .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
    .button { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 0 16px; border-radius: 6px; border: 1px solid var(--ink); background: var(--ink); color: #fff; font-weight: 700; font-size: 14px; }
    .button.secondary { background: transparent; color: var(--ink); }
    .trust-strip { display: grid; grid-template-columns: repeat(4, minmax(120px, 1fr)); gap: 10px; margin-top: 36px; max-width: 760px; }
    .trust-item { border-top: 1px solid rgba(16, 20, 24, 0.20); padding: 12px 10px 0 0; background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent); }
    .trust-item span { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; }
    .trust-item strong { display: block; margin-top: 4px; font-size: 22px; }
    .atlas { min-height: 590px; border: 1px solid rgba(16, 20, 24, 0.12); border-radius: 8px; background: #101418; color: #fff; box-shadow: 0 30px 70px rgba(16, 20, 24, 0.22); overflow: hidden; }
    .atlas-head { display: flex; justify-content: space-between; gap: 12px; padding: 18px 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); background: linear-gradient(90deg, rgba(255,255,255,0.06), transparent); }
    .atlas-title strong { display: block; font-size: 19px; }
    .atlas-title span, .atlas-status { color: rgba(255, 255, 255, 0.68); font-size: 12px; }
    .atlas-body { display: grid; grid-template-columns: minmax(240px, 1fr) 192px; gap: 16px; padding: 18px; }
    .map-wrap { position: relative; min-height: 462px; border: 1px solid rgba(255, 255, 255, 0.10); border-radius: 8px; background: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px), radial-gradient(circle at 45% 43%, rgba(29, 95, 143, 0.38), transparent 52%), linear-gradient(180deg, #182127, #101418); background-size: 34px 34px, 34px 34px, auto, auto; }
    .col-map { width: 100%; height: 100%; min-height: 462px; }
    .country-outline { fill: rgba(15, 122, 91, 0.42); stroke: rgba(255, 255, 255, 0.78); stroke-width: 2.2; filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.28)); transition: fill 180ms ease, stroke 180ms ease; }
    .country-outline:hover { fill: rgba(15, 122, 91, 0.58); stroke: #ffffff; }
    .col-map.has-departments .country-outline { display: none; }
    .department-shape { fill: rgba(15, 122, 91, 0.36); stroke: rgba(255, 255, 255, 0.42); stroke-width: 0.72; cursor: pointer; transition: fill 140ms ease, stroke 140ms ease; }
    .department-shape:hover, .department-shape:focus { fill: rgba(243, 198, 107, 0.62); stroke: #ffffff; outline: none; }
    .map-guide { fill: none; stroke: rgba(255, 255, 255, 0.18); stroke-width: 1.2; stroke-dasharray: 4 7; }
    .map-hotspot { cursor: pointer; }
    .pulse-dot { fill: #f3c66b; stroke: #101418; stroke-width: 3; transition: r 160ms ease, fill 160ms ease; }
    .map-hotspot:hover .pulse-dot { r: 10; fill: #ffffff; }
    .map-label { fill: rgba(255, 255, 255, 0.74); font-size: 11px; font-weight: 700; }
    .legend { display: grid; gap: 10px; align-content: start; }
    .legend-card { padding: 12px; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 8px; background: rgba(255, 255, 255, 0.06); }
    .legend-card span { display: block; color: rgba(255, 255, 255, 0.62); font-size: 11px; text-transform: uppercase; }
    .legend-card strong { display: block; margin-top: 4px; font-size: 18px; }
    main { max-width: 1240px; margin: 0 auto; padding: 44px 18px 56px; }
    .section { margin-bottom: 46px; }
    .section-heading { display: flex; justify-content: space-between; align-items: end; gap: 18px; margin-bottom: 16px; }
    h2 { margin: 0; font-size: clamp(26px, 3vw, 42px); letter-spacing: 0; }
    .section-note { max-width: 620px; color: var(--muted); line-height: 1.5; }
    .metrics { display: grid; grid-template-columns: repeat(4, minmax(150px, 1fr)); gap: 12px; }
    .metric { background: rgba(255, 255, 255, 0.88); border: 1px solid var(--line); border-radius: 8px; padding: 18px; box-shadow: 0 14px 36px rgba(16, 20, 24, 0.07); }
    .metric span { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; }
    .metric strong { display: block; margin-top: 8px; font-size: 26px; }
    .metric small { display: block; margin-top: 8px; color: var(--muted); }
    .story-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 18px; align-items: start; }
    .brief { padding: 26px; border-left: 4px solid var(--green); background: linear-gradient(180deg, #ffffff, #f6faf9); box-shadow: var(--shadow); }
    .brief p { color: #34404c; font-size: 18px; line-height: 1.55; margin: 0; }
    .chart { width: 100%; display: block; background: #ffffff; border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 12px 34px rgba(16, 20, 24, 0.08); }
    .band { padding: 26px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
    .block-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 12px; margin-bottom: 18px; }
    .block-card { border: 1px solid var(--line); border-radius: 8px; padding: 14px; background: var(--soft); }
    .block-card span { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; }
    .block-card strong { display: block; margin-top: 6px; font-size: 18px; }
    .article-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 12px; }
    .article-card { min-height: 168px; padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: linear-gradient(180deg, #ffffff, #f8fbfc); box-shadow: 0 10px 28px rgba(16, 20, 24, 0.05); }
    .article-card span { display: block; color: var(--green); font-size: 11px; font-weight: 800; text-transform: uppercase; }
    .article-card strong { display: block; margin-top: 8px; font-size: 18px; }
    .article-card p { margin: 10px 0 0; color: var(--muted); line-height: 1.45; }
    .article-card small { display: block; margin-top: 16px; color: #8a96a3; font-weight: 700; }
    .table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
    .data-table { width: 100%; border-collapse: collapse; min-width: 780px; }
    th, td { padding: 12px 14px; border-bottom: 1px solid #e8edf1; text-align: left; font-size: 14px; }
    th { background: #f1f5f7; font-weight: 800; color: #34404c; }
    tr:last-child td { border-bottom: 0; }
    .compact { margin-top: 8px; }
    .links { display: flex; gap: 12px; flex-wrap: wrap; }
    .footer { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); }
    @media (max-width: 980px) {
      .hero, .story-grid, .atlas-body { grid-template-columns: 1fr; }
      .atlas { min-height: auto; }
      .metrics, .trust-strip { grid-template-columns: repeat(2, minmax(130px, 1fr)); }
      .nav { display: none; }
    }
    @media (max-width: 560px) {
      .hero { padding-top: 28px; }
      .metrics, .trust-strip { grid-template-columns: 1fr; }
      .atlas-body { padding: 12px; }
      .map-wrap { min-height: 360px; }
      .col-map { min-height: 360px; }
      .band { padding: 18px; }
      .ticker-item { padding: 0 14px; }
    }
