:root {
  --navy: #06182c;
  --blue: #0c2a49;
  --cream: #f3eee3;
  --gold: #e1b867;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  background: var(--navy);
  color: var(--cream);
  font-family: "DM Sans", sans-serif;
}
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.splash-page { min-height: 100svh; overflow-x: hidden; }
.splash-main {
  min-height: 100svh;
  background: var(--navy);
}
.splash-stage {
  min-height: 100svh;
  padding: clamp(24px, 4vw, 52px) clamp(24px, 6vw, 88px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(520px, 1.28fr);
  grid-template-rows: auto 1fr auto;
  align-items: center;
  gap: 20px 4vw;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 48%, rgba(225,184,103,.12), transparent 31%),
    linear-gradient(120deg, #051527, #06182c 58%, #0a2744);
}
.splash-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.splash-brand {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
}
.splash-brand-lockup { display: flex; align-items: center; gap: 12px; }
.splash-brand img { width: 43px; height: 43px; border: 1px solid rgba(225,184,103,.45); border-radius: 50%; object-fit: cover; }
.splash-brand em { color: var(--gold); font-family: "Italiana", serif; font-size: 18px; font-style: normal; font-weight: 400; }
.splash-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 22px; }
.splash-nav a { min-height: 40px; display: inline-flex; align-items: center; color: rgba(255,255,255,.65); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.splash-nav a:hover, .splash-nav a:focus-visible { color: var(--gold); }
.splash-menu-button { width:44px; height:44px; padding:0; display:none; place-content:center; gap:5px; border:1px solid rgba(225,184,103,.3); color:var(--cream); background:rgba(255,255,255,.025); cursor:pointer; }
.splash-menu-button span { width:20px; height:1px; display:block; background:currentColor; transition:transform .2s,opacity .2s; }
.splash-brand.menu-open .splash-menu-button span:nth-child(1) { transform:translateY(6px) rotate(45deg); }
.splash-brand.menu-open .splash-menu-button span:nth-child(2) { opacity:0; }
.splash-brand.menu-open .splash-menu-button span:nth-child(3) { transform:translateY(-6px) rotate(-45deg); }
.splash-nav .country-nav-menu{position:relative}
.splash-nav .country-nav-menu>summary{min-height:40px;display:flex;align-items:center;gap:8px;color:rgba(242,238,228,.82);font-size:9px;letter-spacing:.13em;text-transform:uppercase;list-style:none;cursor:pointer}
.splash-nav .country-nav-menu>summary::-webkit-details-marker{display:none}
.splash-nav .country-nav-menu>summary::after{content:"";width:6px;height:6px;margin-top:-3px;border-right:1px solid currentColor;border-bottom:1px solid currentColor;transform:rotate(45deg)}
.splash-nav .country-nav-menu[open]>summary::after{margin-top:3px;transform:rotate(225deg)}
.splash-nav .country-nav-panel{width:430px;padding:12px;position:absolute;z-index:80;top:calc(100% + 8px);left:0;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:2px;border:1px solid rgba(225,184,103,.28);background:linear-gradient(145deg,#041323,#0a2744);box-shadow:0 24px 55px rgba(0,0,0,.38)}
.splash-nav .country-nav-panel a{min-height:40px;padding:9px 11px;display:flex;align-items:center;color:rgba(255,255,255,.72);font-size:9px;line-height:1.35;letter-spacing:.08em;text-transform:uppercase}
.splash-nav .country-nav-panel a:hover,.splash-nav .country-nav-panel a:focus-visible{color:var(--gold-light);background:rgba(255,255,255,.06)}
.splash-nav>a.nav-reading-list{padding:8px 13px;color:#06182c;border:1px solid rgba(225,184,103,.7);background:#e1c47f;box-shadow:0 8px 24px rgba(0,0,0,.15)}
.splash-nav>a.nav-reading-list:hover,.splash-nav>a.nav-reading-list:focus-visible{color:#06182c;background:#f1d79e}
.splash-copy { position: relative; z-index: 2; align-self: center; }
.splash-copy p, .splash-note { color: var(--gold); font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.splash-copy h1 { margin: 25px 0 0; font-family: "Italiana", Georgia, serif; font-size: clamp(64px, 7vw, 116px); font-weight: 400; line-height: .9; letter-spacing: -.035em; }
.splash-copy h1 i { color: var(--gold); font-style: italic; font-weight: 400; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.country-explorer {
  width: min(850px, 100%);
  min-height: 540px;
  position: relative;
  justify-self: end;
  align-self: center;
  display: grid;
  grid-template-columns: minmax(220px, .68fr) minmax(390px, 1.32fr);
  overflow: hidden;
  border: 1px solid rgba(225,184,103,.22);
  background: rgba(4,19,35,.52);
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
  backdrop-filter: blur(18px);
}
.country-globe {
  min-width: 0;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-right: 1px solid rgba(225,184,103,.16);
  background:
    radial-gradient(circle at 50% 44%, rgba(36,91,132,.3), transparent 48%),
    linear-gradient(160deg, rgba(255,255,255,.025), transparent);
}
.country-globe::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 65%, rgba(4,19,35,.28));
  pointer-events: none;
}
.country-globe .globe {
  width: min(410px, 125%);
  aspect-ratio: 1;
  position: relative;
  filter: drop-shadow(0 35px 55px rgba(0,0,0,.35));
  animation: globe-float 7s ease-in-out infinite;
}
.globe svg { width: 100%; height: 100%; display: block; }
.country-globe .globe-orbit {
  position: absolute;
  width: min(440px, 132%);
  aspect-ratio: 1;
  border: 1px solid rgba(225,184,103,.18);
  border-top-color: rgba(225,184,103,.65);
  border-radius: 50%;
  animation: orbit-spin 38s linear infinite;
}
.globe-orbit::before, .globe-orbit::after { content: ""; position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 18px rgba(225,184,103,.7); }
.globe-orbit::before { top: 11%; left: 21%; }
.globe-orbit::after { right: -4px; top: 48%; }
.globe-pins circle { filter: drop-shadow(0 0 8px rgba(225,184,103,.9)); animation: pin-pulse 3.6s ease-in-out infinite; }
.globe-pins circle:nth-child(2n) { animation-delay: -1.8s; }
.country-globe > p {
  position: absolute;
  z-index: 2;
  bottom: 25px;
  left: 27px;
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.country-globe > p span { margin-right: 8px; color: var(--gold); }
.country-directory { min-width: 0; padding: 30px; background: rgba(6,24,44,.82); }
.country-directory-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; }
.directory-kicker { margin: 0 0 9px; color: var(--gold); font-size: 8px; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; }
.country-directory h2 { margin: 0; font-family: "Italiana", Georgia, serif; font-size: 35px; font-weight: 400; line-height: 1; }
.country-search { width: min(180px, 46%); position: relative; display: block; }
.country-search input {
  width: 100%;
  min-height: 42px;
  padding: 0 34px 0 12px;
  border: 0;
  border-bottom: 1px solid rgba(225,184,103,.34);
  border-radius: 0;
  color: var(--cream);
  background: rgba(255,255,255,.035);
  font: inherit;
  font-size: 10px;
}
.country-search input::placeholder { color: rgba(255,255,255,.44); }
.country-search input:focus { border-bottom-color: var(--gold); outline: 0; background: rgba(255,255,255,.06); }
.country-search i { position: absolute; right: 12px; top: 10px; color: var(--gold); font-size: 17px; font-style: normal; pointer-events: none; }
.country-results { margin: 18px 0 12px; color: rgba(255,255,255,.42); font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }
.country-region-list { max-height: 395px; padding-right: 8px; overflow-y: auto; scrollbar-color: rgba(225,184,103,.42) transparent; scrollbar-width: thin; }
.country-region { margin-top: 21px; }
.country-region:first-child { margin-top: 0; }
.country-region h3 { margin: 0 0 8px; display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.42); font-size: 8px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.country-region h3::after { content: ""; height: 1px; flex: 1; background: rgba(255,255,255,.1); }
.country-region h3 span { order: 2; min-width: 21px; height: 21px; display: grid; place-items: center; border: 1px solid rgba(225,184,103,.26); border-radius: 50%; color: var(--gold); font-size: 7px; }
.country-link-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
.country-link-list a {
  min-height: 67px;
  padding: 12px;
  display: grid;
  grid-template-columns: 23px 1fr;
  align-content: center;
  gap: 4px 8px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.025);
  transition: border-color .2s, background .2s, transform .2s;
}
.country-link-list a:hover, .country-link-list a:focus-visible { border-color: rgba(225,184,103,.65); background: rgba(225,184,103,.07); transform: translateY(-2px); }
.country-link-list small { grid-row: 1 / 3; align-self: center; color: var(--gold); font-size: 8px; letter-spacing: .08em; }
.country-link-list strong { font-family: "Italiana", serif; font-size: 16px; font-weight: 400; line-height: 1.1; }
.country-link-list a > span { color: rgba(255,255,255,.4); font-size: 7px; letter-spacing: .12em; text-transform: uppercase; }
.country-link-list a > span::after { content: " →"; color: var(--gold); }
.country-empty { padding: 35px 15px; border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.55); text-align: center; font-size: 11px; }
[hidden] { display: none !important; }
.splash-note { position: relative; z-index: 2; margin: 0; color: rgba(255,255,255,.45); }
.splash-footer { position: relative; z-index: 5; padding: 34px clamp(24px, 6vw, 88px); display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); background: #041323; }
.splash-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 18px; }
.splash-footer a, .splash-footer button { min-height: 40px; padding: 0; display: inline-flex; align-items: center; border: 0; border-bottom: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.68); background: none; cursor: pointer; font: inherit; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.compact-footer { position:relative; z-index:5; padding:38px clamp(24px,8vw,120px) 25px; display:grid; grid-template-columns:minmax(240px,1fr) minmax(320px,auto); gap:25px 60px; align-items:start; background:#06182c; color:#f3eee3; }
.compact-footer .footer-copy p { max-width:520px; margin:0 0 8px; color:rgba(255,255,255,.6); font-size:10px; line-height:1.7; }
.compact-footer .footer-links { display:flex; flex-wrap:wrap; justify-content:flex-end; gap:10px 18px; }
.compact-footer .footer-links a,.compact-footer .footer-links button { min-height:40px; padding:0; display:inline-flex; align-items:center; border:0; border-bottom:1px solid rgba(255,255,255,.2); color:#e1c47f; background:none; cursor:pointer; font:inherit; font-size:9px; }
.compact-footer .copyright { grid-column:1/-1; margin:30px 0 0; padding-top:20px; display:flex; justify-content:space-between; border-top:1px solid rgba(255,255,255,.1); color:rgba(255,255,255,.28); font-size:8px; text-transform:uppercase; letter-spacing:.14em; }

.home-authority,
.home-guides,
.home-pathways,
.home-topics,
.home-updates {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 8vw, 120px);
}
.home-authority { color: #102033; background: #f3eee3; }
.home-authority-intro { max-width: 900px; margin-bottom: 65px; }
.home-kicker { margin: 0; color: #856027; font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.home-authority h2,
.home-pathways h2,
.home-topics h2,
.home-guides h2,
.home-updates h2 {
  margin: 20px 0 28px;
  font-family: "Italiana", Georgia, serif;
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 400;
  line-height: .98;
}
.home-authority h2 i,
.home-pathways h2 i,
.home-topics h2 i,
.home-guides h2 i,
.home-updates h2 i { color: #b2863e; font-weight: 400; }
.home-authority-intro > p:last-child { max-width: 780px; color: #59616b; font-size: 14px; line-height: 1.85; }
.home-purpose-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid rgba(16,32,51,.16); border-left: 1px solid rgba(16,32,51,.16); }
.home-purpose-grid article { min-height: 245px; padding: 28px; border-right: 1px solid rgba(16,32,51,.16); border-bottom: 1px solid rgba(16,32,51,.16); }
.home-purpose-grid span, .home-guide-links span { color: #9c7435; font-size: 9px; letter-spacing: .12em; }
.home-purpose-grid h3, .update-list h3 { margin: 34px 0 14px; font-family: "Italiana", serif; font-size: 25px; font-weight: 400; }
.home-purpose-grid p, .update-list p { margin: 0; color: #626a73; font-size: 11px; line-height: 1.75; }
.home-purpose-grid a { color: #102033; border-bottom: 1px solid rgba(133,96,39,.45); }
.home-decision-hub { padding: 82px 7vw; background: linear-gradient(135deg, #102033, #182d46); color: #f6efe1; }
.home-decision-heading { margin-bottom:42px; display:grid; grid-template-columns:minmax(0,.9fr) minmax(360px,.62fr); gap:clamp(28px,6vw,78px); align-items:end; }
.home-decision-copy { max-width: 760px; margin-bottom: 30px; }
.home-decision-copy h2 { margin: 8px 0 16px; color: #f6efe1; font-family: "Italiana", serif; font-size: clamp(46px, 7vw, 88px); font-weight: 400; line-height: .95; }
.home-decision-copy p { max-width: 620px; color: rgba(246,239,225,.72); line-height: 1.75; }
.home-decision-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid rgba(225,184,103,.22); border-left: 1px solid rgba(225,184,103,.22); }
.home-decision-grid a { min-height: 220px; padding: 26px; display: flex; flex-direction: column; gap: 14px; border-right: 1px solid rgba(225,184,103,.22); border-bottom: 1px solid rgba(225,184,103,.22); color: #f6efe1; background: rgba(255,255,255,.025); transition: background .2s ease, transform .2s ease; }
.home-decision-grid a:hover, .home-decision-grid a:focus-visible { background: rgba(225,184,103,.08); transform: translateY(-2px); }
.home-decision-grid span { color: #d7ad63; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.home-decision-grid strong { margin-top: auto; font-family: "Italiana", serif; font-size: 29px; font-weight: 400; line-height: 1; }
.home-decision-grid small { color: rgba(246,239,225,.68); font-size: 11px; line-height: 1.55; }
.home-decision-visual { min-height:300px; border-color:rgba(225,184,103,.25); box-shadow:0 24px 55px rgba(0,0,0,.2); }
.home-decision-visual img { min-height:300px; }
.home-newsletter { width:min(1180px,88vw); margin:0 auto 96px; padding:clamp(30px,5vw,52px); display:grid; grid-template-columns:minmax(0,1fr) auto; gap:28px; align-items:center; color:#f3eee3; border:1px solid rgba(225,184,103,.34); background:radial-gradient(circle at 92% 8%,rgba(225,184,103,.17),transparent 30%),linear-gradient(145deg,rgba(6,24,44,.96),rgba(10,42,73,.96)); box-shadow:0 26px 80px rgba(1,9,17,.26); }
.home-newsletter h2 { max-width:720px; margin:12px 0 16px; font-family:"Italiana",Georgia,serif; font-size:clamp(38px,5vw,66px); font-weight:400; line-height:1; }
.home-newsletter h2 i { color:#e1b867; font-style:normal; }
.home-newsletter p:not(.home-kicker) { max-width:720px; margin:0; color:rgba(243,238,227,.68); font-size:13px; line-height:1.8; }
.home-newsletter > a { min-height:48px; padding:0 22px; display:inline-flex; align-items:center; justify-content:center; color:#06182c; border:1px solid #e1b867; background:#e1b867; font-size:9px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; }
.home-newsletter > a:hover, .home-newsletter > a:focus-visible { background:#f1d79e; }
.home-pathways { color:#102033; background:#e8dfd1; }
.home-topics { color:#f3eee3; background:radial-gradient(circle at 84% 18%,rgba(225,184,103,.13),transparent 26%),#071a2f; }
.home-topics-intro { max-width:790px; }
.home-topics-intro > p:last-child { max-width:680px; color:rgba(243,238,227,.66); font-size:14px; line-height:1.85; }
.home-topic-grid { margin-top:48px; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); border-top:1px solid rgba(243,238,227,.16); border-left:1px solid rgba(243,238,227,.16); }
.home-topic-grid a { min-height:225px; padding:28px; display:flex; flex-direction:column; color:#f3eee3; border-right:1px solid rgba(243,238,227,.16); border-bottom:1px solid rgba(243,238,227,.16); }
.home-topic-grid span { color:#e1b867; font-size:8px; letter-spacing:.14em; }
.home-topic-grid strong { margin:38px 0 14px; font-family:"Italiana",serif; font-size:28px; font-weight:400; line-height:1.08; }
.home-topic-grid small { margin-top:auto; color:rgba(243,238,227,.58); font-size:10px; line-height:1.6; }
.home-pathways-feature { display:grid; grid-template-columns:minmax(0,.8fr) minmax(330px,.62fr); gap:clamp(28px,5vw,70px); align-items:end; }
.home-pathways-feature > div { max-width:850px; }
.home-pathways-feature > div > p:last-child { max-width:720px; color:#59616b; font-size:14px; line-height:1.85; }
.home-editorial-image { margin:0; position:relative; min-height:360px; overflow:hidden; border:1px solid rgba(16,32,51,.16); background:#06182c; box-shadow:0 24px 55px rgba(6,24,44,.14); }
.home-editorial-image img { width:100%; height:100%; min-height:360px; display:block; object-fit:cover; filter:saturate(.94) contrast(1.04); }
.home-editorial-image::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 42%,rgba(3,12,24,.84)); pointer-events:none; }
.home-editorial-image figcaption { position:absolute; z-index:2; left:24px; right:24px; bottom:22px; color:rgba(243,238,227,.78); font-size:9px; letter-spacing:.16em; line-height:1.6; text-transform:uppercase; }
.home-pathway-grid { margin-top:55px; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); border-top:1px solid rgba(16,32,51,.16); border-left:1px solid rgba(16,32,51,.16); }
.home-pathway-grid a { min-height:205px; padding:28px; display:flex; flex-direction:column; border-right:1px solid rgba(16,32,51,.16); border-bottom:1px solid rgba(16,32,51,.16); transition:background .2s,transform .2s; }
.home-pathway-grid a:hover { background:#f6f0e5; transform:translateY(-3px); }
.home-pathway-grid span { color:#856027; font-size:8px; letter-spacing:.14em; }
.home-pathway-grid strong { margin:34px 0 12px; color:#102033; font-family:"Italiana",serif; font-size:25px; font-weight:400; }
.home-pathway-grid small { color:#626a73; font-size:10px; line-height:1.6; }

.home-guides { color: var(--cream); background: linear-gradient(135deg, #06182c, #0c2a49); }
.home-guides > div { max-width: 780px; }
.home-guide-links { margin-top: 55px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.14); border-left: 1px solid rgba(255,255,255,.14); }
.home-guide-links a { padding: 24px; display: flex; align-items: center; gap: 22px; border-right: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); font-family: "Italiana", serif; font-size: 22px; transition: background .2s, padding-left .2s; }
.home-guide-links a:hover, .home-guide-links a:focus-visible { padding-left: 30px; background: rgba(255,255,255,.05); }
.home-all-guides { margin-top: 30px; display: inline-block; color: var(--gold); border-bottom: 1px solid rgba(225,184,103,.45); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }

.home-updates { color: #102033; background: #ebe3d5; }
.home-updates > div:first-child { max-width: 760px; }
.update-list { margin-top: 55px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid rgba(16,32,51,.16); }
.update-list article { padding: 28px 25px; border-right: 1px solid rgba(16,32,51,.16); border-bottom: 1px solid rgba(16,32,51,.16); }
.update-list article:first-child { border-left: 1px solid rgba(16,32,51,.16); }
.update-list time { color: #856027; font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.update-list h3 { margin-top: 28px; }

@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes globe-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pin-pulse { 0%,100% { opacity: .55; } 50% { opacity: 1; } }

@media (max-width: 900px) {
  .splash-stage {
    min-height: 100svh;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr auto;
    align-content: space-between;
  }
  .splash-menu-button { display:grid; }
  .splash-nav { width:min(280px,calc(100vw - 36px)); padding:13px; position:absolute; top:calc(100% + 10px); right:0; display:none; flex-direction:column; align-items:stretch; gap:0; border:1px solid rgba(225,184,103,.25); background:linear-gradient(145deg,#041323,#0a2744); box-shadow:0 24px 55px rgba(0,0,0,.35); }
  .splash-brand.menu-open .splash-nav { display:flex; }
  .splash-nav a { min-height:44px; padding:0 12px; border-bottom:1px solid rgba(255,255,255,.1); }
  .splash-nav a:last-child { border-bottom:0; }
  .splash-nav .country-nav-menu>summary{min-height:44px;padding:0 12px;border-bottom:1px solid rgba(255,255,255,.1)}
  .splash-nav .country-nav-panel{width:100%;max-height:50vh;padding:6px 0 8px;position:static;grid-template-columns:1fr;overflow-y:auto;border:0;border-bottom:1px solid rgba(255,255,255,.1);box-shadow:none;background:rgba(255,255,255,.025)}
  .splash-nav .country-nav-panel a{min-height:38px;padding-left:24px;border-bottom:0}
  .splash-nav>a.nav-reading-list{margin-top:7px;justify-content:center;border:1px solid rgba(225,184,103,.7)}
  .splash-copy { text-align: center; }
  .splash-copy h1 { margin-top: 15px; font-size: clamp(48px, 12vw, 78px); }
  .country-explorer { width: min(780px, 100%); min-height: 500px; justify-self: center; grid-template-columns: minmax(210px, .68fr) minmax(380px, 1.32fr); }
  .home-pathways-feature,.home-decision-heading { grid-template-columns: 1fr; }
  .home-newsletter { grid-template-columns: 1fr; }
  .home-purpose-grid, .home-pathway-grid, .home-decision-grid, .update-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .splash-stage { min-height: auto; padding-bottom: 45px; }
  .country-explorer { min-height: 0; grid-template-columns: 1fr; }
  .country-globe { min-height: 235px; border-right: 0; border-bottom: 1px solid rgba(225,184,103,.16); }
  .country-globe .globe { width: 285px; }
  .country-globe .globe-orbit { width: 310px; }
  .country-directory-head { align-items: stretch; flex-direction: column; }
  .country-search { width: 100%; }
  .country-region-list { max-height: 520px; padding-right: 6px; overflow-y: auto; }
}

@media (max-width: 560px) {
  .splash-stage { min-height: auto; padding: 22px 18px 38px; gap: 26px; }
  .splash-brand { font-size: 12px; }
  .splash-copy p { margin: 10px 0 0; font-size: 8px; }
  .splash-copy h1 { font-size: 47px; }
  .country-globe { min-height: 210px; }
  .country-globe .globe { width: 255px; }
  .country-globe .globe-orbit { width: 275px; }
  .country-globe > p { bottom: 16px; left: 18px; }
  .country-directory { padding: 23px 17px 20px; }
  .country-directory-head { gap: 17px; }
  .country-directory h2 { font-size: 31px; }
  .country-link-list { grid-template-columns: 1fr; }
  .country-link-list a { min-height: 61px; }
  .splash-note { text-align: center; font-size: 7px; }
  .splash-footer { align-items: center; flex-direction: column; gap: 10px; }
  .splash-footer nav { justify-content: center; gap: 8px 13px; }
  .splash-footer a, .splash-footer button { font-size: 7px; }
  .compact-footer { padding:30px 24px 22px; grid-template-columns:1fr; gap:20px; }
  .compact-footer .footer-links { justify-content:flex-start; }
  .compact-footer .copyright { grid-column:auto; flex-direction:column; gap:8px; }
  .home-authority, .home-pathways, .home-topics, .home-guides, .home-updates, .home-decision-hub { padding: 75px 20px; }
  .home-newsletter { width: calc(100% - 40px); margin-bottom: 70px; }
  .home-topic-grid { grid-template-columns:1fr; }
  .home-topic-grid a { min-height:185px; }
  .home-purpose-grid, .home-pathway-grid, .home-decision-grid, .home-guide-links, .update-list { grid-template-columns: 1fr; }
  .home-editorial-image, .home-editorial-image img { min-height: 260px; }
  .home-purpose-grid article { min-height: auto; }
  .home-decision-grid a { min-height: 185px; }
  .update-list article { border-left: 1px solid rgba(16,32,51,.16); }
}

@media (max-height: 700px) and (min-width: 901px) {
  .splash-stage { padding-top: 24px; padding-bottom: 24px; }
  .country-explorer { min-height: 470px; }
  .country-region-list { max-height: 325px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
