:root {
  --ink: #071b31;
  --ink-2: #123452;
  --burgundy: #9e0b25;
  --burgundy-2: #c31a35;
  --teal: #047c95;
  --ivory: #f8f5ef;
  --paper: #ffffff;
  --line: #d7dde2;
  --muted: #617386;
  --shadow: 0 18px 45px rgba(7, 27, 49, .13);
  --radius: 8px;
  --container: 1380px;
  font-family: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fbfaf7;
  color: var(--ink);
  line-height: 1.5;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  z-index: 40;
  width: auto;
  height: auto;
  clip: auto;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--paper);
  border: 1px solid var(--burgundy);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.utility-bar {
  border-bottom: 1px solid #eef1f3;
  color: var(--muted);
  font-size: 12px;
}

.utility-inner {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.utility-actions {
  display: flex;
  gap: 4px;
  margin-left: 8px;
}

.lang {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 2px 5px;
}

.lang.is-active {
  color: var(--burgundy);
  font-weight: 800;
}

.navbar {
  height: 86px;
  display: grid;
  grid-template-columns: minmax(340px, auto) 1fr auto auto;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 340px;
}

.brand img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  line-height: 1;
}

.brand small {
  display: block;
  max-width: 260px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 1.2vw, 18px);
  font-size: 13px;
  font-weight: 700;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 29px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--burgundy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-item.is-active > .nav-link::after {
  transform: scaleX(1);
}

.nav-item.is-active > .nav-link {
  color: var(--burgundy);
}

.chevron {
  color: var(--muted);
  font-size: 13px;
  transform: translateY(-1px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% - 5px);
  left: 50%;
  min-width: 245px;
  display: grid;
  gap: 3px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  inset: -12px 0 auto;
  height: 12px;
}

.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 5px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: var(--ivory);
  color: var(--burgundy);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.icon-button,
.nav-toggle {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.icon-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.nav-toggle {
  display: none;
  gap: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
}

.top-claim {
  align-self: stretch;
  min-width: 132px;
  display: grid;
  place-items: center;
  padding: 0 18px;
  background: var(--burgundy);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.25;
}

.hero {
  position: relative;
  height: clamp(500px, 31vw, 600px);
  min-height: 500px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  touch-action: pan-y;
  user-select: none;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity .9s ease, transform 7s ease;
}

.hero-slide::before,
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-slide::before {
  background: linear-gradient(90deg, rgba(5, 18, 34, .97) 0%, rgba(5, 18, 34, .72) 42%, rgba(5, 18, 34, .20) 78%);
}

.hero-slide::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 74%, rgba(251, 250, 247, .97) 100%);
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-grid {
  position: relative;
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(290px, 370px);
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 58px 0 72px;
}

.eyebrow {
  display: inline-flex;
  color: #b9d7e0;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.contact-band h2 {
  margin: 18px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.45vw, 66px);
  line-height: 1.05;
  max-width: 650px;
}

.hero p {
  max-width: 560px;
  margin: 22px 0 0;
  color: #e5edf2;
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.input-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.button {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid currentColor;
  border-radius: 6px;
  padding: 11px 18px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button::after {
  content: "→";
  font-size: 18px;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .14);
}

.button.primary {
  border-color: var(--burgundy);
  background: var(--burgundy);
  color: #fff;
}

.button.secondary {
  border-color: rgba(255, 255, 255, .75);
  color: #fff;
  background: rgba(3, 17, 31, .36);
}

.button.secondary.dark {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.hero-panel {
  align-self: center;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  background: rgba(7, 27, 49, .42);
  box-shadow: var(--shadow);
  backdrop-filter: blur(13px);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.metric {
  min-height: 104px;
  display: grid;
  place-items: center;
  padding: 16px 10px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
}

.metric span {
  display: block;
  color: #dce8ee;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.metric small {
  display: block;
  margin-top: 8px;
  color: #9fc8d3;
  font-size: 12px;
}

.hero-panel blockquote {
  margin: 0;
  padding: 22px;
  color: #edf5f7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-style: italic;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  transform: translateX(-50%);
  pointer-events: none;
}

.slider-arrow,
.hero-dot {
  pointer-events: auto;
  cursor: pointer;
}

.slider-arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
  background: rgba(7, 27, 49, .48);
  color: #fff;
  font-size: 25px;
  line-height: 1;
  backdrop-filter: blur(10px);
  transition: background .2s ease, border .2s ease, transform .2s ease;
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
  border-color: #fff;
  background: var(--burgundy);
  transform: translateY(-1px);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(7, 27, 49, .42);
  backdrop-filter: blur(10px);
}

.hero-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .46);
  padding: 0;
  transition: width .2s ease, background .2s ease;
}

.hero-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--burgundy-2);
}

.quote-band {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.quote-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.quote-inner p {
  margin: 0;
  color: var(--ink-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2.4vw, 27px);
  font-style: italic;
}

.quote-inner div {
  min-width: 250px;
  text-align: right;
}

.quote-inner strong,
.quote-inner span {
  display: block;
}

.lead-layout,
.intelligence-grid,
.people-media {
  display: grid;
  gap: 24px;
  padding: 42px 0 0;
}

.lead-layout {
  grid-template-columns: minmax(0, 1.25fr) minmax(350px, .95fr) minmax(330px, .82fr);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 0;
  color: var(--burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  text-transform: uppercase;
}

.section-head.compact h2 {
  font-size: 20px;
}

.section-head a {
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 800;
}

.featured-publication,
.updates-panel,
.event-card,
.numbers-card,
.publication-stack,
.map-card,
.president-card,
.contact-form,
.subscribe-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(7, 27, 49, .06);
}

.featured-publication {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  padding: 22px;
}

.report-cover {
  min-height: 275px;
  display: grid;
  align-content: space-between;
  padding: 18px;
  overflow: hidden;
  color: #fff;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(5, 18, 34, .46), rgba(5, 18, 34, .94)),
    url("/assets/images/hero-strategy.png") center / cover no-repeat;
  box-shadow: 0 18px 35px rgba(7, 27, 49, .22);
}

.report-cover strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.12;
}

.report-cover span {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.publication-copy .tag,
.update-item .tag,
.media-item .tag {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.publication-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.25vw, 34px);
  line-height: 1.12;
}

.publication-copy p,
.subscribe-form p,
.contact-band p {
  color: var(--muted);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
}

.publication-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.publication-actions .button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.updates-panel,
.event-subscribe,
.publication-stack,
.numbers-card,
.map-card,
.people-media article {
  min-width: 0;
}

.updates-panel,
.publication-stack,
.numbers-card,
.map-card {
  padding: 20px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.tab {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  color: var(--ink-2);
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.tab.is-active {
  border-color: var(--burgundy);
  background: var(--burgundy);
  color: #fff;
}

.update-item,
.publication-mini,
.media-item {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid #edf0f2;
}

.update-item:first-child,
.publication-mini:first-child,
.media-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.thumb {
  width: 92px;
  height: 68px;
  border-radius: 5px;
  object-fit: cover;
}

.update-item h3,
.publication-mini h3,
.media-item h3,
.event-card h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.25;
}

.arrow {
  color: var(--burgundy);
  font-size: 24px;
  font-weight: 900;
}

.event-card {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
  margin-bottom: 14px;
}

.date-box {
  text-align: center;
  color: var(--burgundy);
}

.date-box strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 35px;
  line-height: 1;
}

.date-box span {
  display: block;
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.subscribe-form {
  padding: 20px;
  background: linear-gradient(135deg, var(--ink), #082c48);
  color: #fff;
}

.subscribe-form h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
}

.subscribe-form p {
  color: #d9e7ee;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

.subscribe-form .input-row {
  display: grid;
  grid-template-columns: 1fr auto;
}

.form-status {
  display: block;
  min-height: 24px;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 800;
}

.research-section {
  margin-top: 40px;
  padding: 35px 0;
  background: #fff;
  border-block: 1px solid var(--line);
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 8px;
}

.research-card {
  min-height: 135px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 16px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  text-align: center;
  transition: border .2s ease, transform .2s ease, box-shadow .2s ease;
}

.research-card:hover {
  border-color: rgba(4, 124, 149, .45);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(7, 27, 49, .08);
}

.research-card svg {
  width: 34px;
  height: 34px;
  color: var(--teal);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.research-card strong {
  font-size: 14px;
  line-height: 1.25;
}

.research-card p {
  display: none;
}

.intelligence-grid {
  grid-template-columns: 1.15fr .95fr .62fr;
}

.map-card {
  background: linear-gradient(135deg, #061b31, #082b48);
  color: #fff;
}

.map-card .section-head h2 {
  color: #fff;
}

.map-visual {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 6px;
  background:
    radial-gradient(circle at 48% 52%, rgba(158, 11, 37, .65), transparent 22%),
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: auto, 45px 45px, 45px 45px;
}

.turkiye-shape {
  position: absolute;
  left: 32%;
  top: 44%;
  width: 35%;
  min-height: 78px;
  display: grid;
  place-items: center;
  clip-path: polygon(3% 42%, 16% 30%, 34% 33%, 49% 23%, 63% 34%, 84% 28%, 97% 49%, 84% 66%, 58% 62%, 39% 75%, 18% 65%);
  background: var(--burgundy-2);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.pin {
  position: absolute;
  color: #d8edf2;
  font-size: 12px;
  font-weight: 800;
}

.pin::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--burgundy);
}

.p1 { left: 13%; top: 25%; }
.p2 { left: 43%; top: 17%; }
.p3 { right: 16%; top: 28%; }
.p4 { right: 7%; top: 49%; }
.p5 { left: 52%; bottom: 16%; }
.p6 { right: 10%; bottom: 17%; }

.region-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.region-list span {
  color: #b9d7e0;
  font-size: 13px;
}

.publication-mini {
  grid-template-columns: 74px 1fr;
}

.publication-mini .thumb {
  width: 74px;
  height: 96px;
}

.number-list {
  display: grid;
  gap: 10px;
}

.number-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #edf0f2;
}

.number-item:last-child {
  border-bottom: 0;
}

.number-item strong {
  color: var(--burgundy);
  font-size: 26px;
}

.people-media {
  grid-template-columns: 1.05fr .9fr .95fr;
  padding-bottom: 44px;
}

.expert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.expert-card {
  min-height: 176px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.avatar {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e7edf0, #fff);
  color: var(--burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 900;
}

.expert-card strong,
.expert-card span {
  display: block;
}

.expert-card span {
  color: var(--muted);
  font-size: 13px;
}

.president-card {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 18px;
  padding: 18px;
  align-items: center;
}

.president-card img {
  width: 125px;
  height: 125px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--ivory);
}

.president-card span {
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.president-card h2 {
  margin: 6px 0;
  font-family: Georgia, "Times New Roman", serif;
}

.president-card p {
  color: var(--ink-2);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.media-list {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: 14px;
}

.media-item {
  grid-template-columns: 86px 1fr;
}

.media-item .thumb {
  width: 86px;
  height: 58px;
}

.global-agenda {
  position: relative;
  min-height: 490px;
  overflow: hidden;
  display: grid;
  align-items: center;
  color: #fff;
  isolation: isolate;
}

.global-map {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 18, 33, .92), rgba(3, 18, 33, .42) 50%, rgba(3, 18, 33, .88)),
    linear-gradient(180deg, rgba(3, 18, 33, .35), rgba(3, 18, 33, .65)),
    url("/assets/images/global-turkiye-network.png") center / cover no-repeat;
  z-index: -2;
}

.global-agenda::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
  opacity: .55;
  z-index: -1;
}

.global-agenda-inner {
  display: grid;
  grid-template-columns: minmax(0, 660px) minmax(260px, 380px);
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 68px 0;
}

.global-copy h2 {
  max-width: 680px;
  margin: 16px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.08;
}

.global-copy p {
  max-width: 610px;
  margin: 18px 0 28px;
  color: #e0edf2;
  font-size: 19px;
}

.global-focus {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  background: rgba(7, 27, 49, .44);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.global-focus span {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 6px;
  color: #edf7fa;
  font-size: 13px;
  font-weight: 850;
}

.global-focus span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--burgundy-2);
  box-shadow: 0 0 18px rgba(195, 26, 53, .8);
}

.contact-band {
  padding: 54px 0;
  background: linear-gradient(135deg, #061b31, #082b48 52%, #0b4552);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 52px;
  align-items: start;
}

.contact-band h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.contact-form {
  display: grid;
  gap: 9px;
  padding: 22px;
  color: var(--ink);
}

.contact-form label {
  font-size: 13px;
  font-weight: 800;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 42px 0 24px;
  background:
    radial-gradient(circle at 92% 36%, rgba(4, 124, 149, .18), transparent 26%),
    linear-gradient(135deg, #03182b 0%, #06263f 52%, #031527 100%);
  color: #cbd9e1;
}

.footer-compass {
  position: absolute;
  right: 62px;
  top: 42px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  opacity: .45;
}

.footer-compass::before,
.footer-compass::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.footer-compass::after {
  inset: 50%;
  width: 150px;
  height: 1px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, .18);
  transform: translate(-50%, -50%) rotate(-35deg);
  transform-origin: center;
}

.footer-main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 1.05fr) minmax(430px, 1.75fr) minmax(185px, .72fr) minmax(220px, .8fr);
  gap: 28px;
  align-items: start;
}

.footer-brand {
  padding-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.footer-brand img {
  width: 250px;
  max-width: 100%;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(100px, 1fr));
  gap: 24px;
  padding-inline: 10px 24px;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.footer-col h2,
.footer-contact h2 {
  margin: 0 0 12px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.footer-col a {
  display: block;
  margin: 7px 0;
  color: #d8e5eb;
  font-size: 13px;
}

.footer-col a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-contact {
  padding-inline: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.contact-line span {
  color: #fff;
  font-size: 17px;
}

.social-row {
  display: flex;
  gap: 14px;
  margin: 18px 0 10px;
}

.social-row a {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.social-row .nsosyal-link {
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
}

.footer-handle,
.footer-sites {
  margin: 0;
  color: #fff;
  font-size: 12px;
}

.footer-sites {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 10px;
}

.footer-sites a {
  color: #fff;
  font-size: 12px;
}

.footer-sites a + a {
  padding-left: 9px;
  border-left: 1px solid rgba(255, 255, 255, .35);
}

.footer-quote {
  min-height: 145px;
  display: grid;
  align-items: start;
}

.footer-quote blockquote {
  position: relative;
  margin: 0;
  color: #dbe6ec;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.45;
}

.footer-quote blockquote::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 18px;
  background: var(--burgundy-2);
}

.footer-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #b9c9d2;
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.footer-bottom a {
  color: #d7e2e8;
}

.search-dialog {
  width: min(720px, calc(100% - 32px));
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow);
}

.search-dialog::backdrop {
  background: rgba(4, 18, 33, .65);
  backdrop-filter: blur(5px);
}

.search-box {
  position: relative;
  padding: 28px;
}

.search-box label {
  display: block;
  margin-bottom: 10px;
  color: var(--burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 800;
}

.search-box .close {
  position: absolute;
  right: 14px;
  top: 14px;
  font-size: 27px;
}

.search-result {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.search-result strong {
  display: block;
}

.search-result span {
  color: var(--muted);
  font-size: 13px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 18, 34, .96), rgba(5, 18, 34, .70)),
    url("/assets/images/hero-strategy.png") center / cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, .18);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px) 330px;
  gap: 44px;
  align-items: end;
}

.page-hero h1 {
  margin: 16px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.04;
}

.page-hero p {
  max-width: 720px;
  margin: 20px 0 0;
  color: #e5edf2;
  font-size: 20px;
}

.page-hero aside {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: var(--radius);
  background: rgba(7, 27, 49, .52);
  backdrop-filter: blur(12px);
}

.page-hero aside strong,
.page-hero aside span {
  display: block;
}

.page-hero aside strong {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.page-hero aside span {
  color: #cfe0e7;
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 32px;
  padding: 42px 0 54px;
}

.page-main,
.page-side {
  min-width: 0;
}

.content-block,
.detail-card,
.wide-item,
.quick-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 22px rgba(7, 27, 49, .05);
}

.content-block {
  padding: 26px;
  margin-bottom: 18px;
}

.content-block h2,
.detail-card h2,
.wide-item h2,
.quick-panel h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.15;
}

.content-block p,
.detail-card p,
.wide-item p,
.quick-panel p {
  margin: 0;
  color: var(--muted);
}

.feature-grid,
.detail-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.detail-card {
  min-height: 190px;
  padding: 22px;
}

.detail-card svg {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--teal);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.detail-card span {
  display: block;
  margin-top: 18px;
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 800;
}

.list-page {
  display: grid;
  gap: 16px;
}

.wide-item {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  align-items: center;
  padding: 18px;
}

.wide-item img {
  width: 190px;
  height: 128px;
  object-fit: cover;
  border-radius: 6px;
}

.date-box.large {
  width: 126px;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.quick-panel {
  display: grid;
  gap: 4px;
  padding: 18px;
  margin-bottom: 16px;
}

.quick-panel a {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-top: 1px solid #edf0f2;
  color: var(--ink-2);
  font-weight: 750;
}

.quick-panel a span {
  color: var(--burgundy);
}

.quick-panel.dark {
  background: linear-gradient(135deg, var(--ink), #082c48);
  color: #fff;
}

.quick-panel.dark h2 {
  color: #fff;
}

.quick-panel.dark p {
  color: #d9e7ee;
}

.page-contact-form {
  max-width: 640px;
}

@media (max-width: 1280px) {
  .navbar {
    grid-template-columns: minmax(0, 1fr) auto auto;
    justify-content: stretch;
  }

  .nav-toggle {
    display: inline-grid;
    order: 3;
    width: 48px;
    height: 48px;
    border-color: var(--burgundy);
    border-radius: 6px;
    background: var(--burgundy);
    box-shadow: 0 10px 22px rgba(158, 11, 37, .22);
  }

  .nav-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 999px;
  }

  .brand {
    order: 1;
  }

  #searchToggle {
    order: 2;
    width: 48px;
    height: 48px;
    border-color: rgba(7, 27, 49, .12);
    border-radius: 6px;
    background: #fff;
  }

  .nav-links {
    order: 4;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 107px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .nav-item {
    display: block;
    align-self: auto;
  }

  .nav-link {
    display: flex;
    justify-content: space-between;
    padding: 12px;
  }

  .nav-link::after {
    left: 12px;
    right: 12px;
    bottom: 5px;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    display: none;
    margin: 0 10px 8px 18px;
    padding: 4px 0 4px 12px;
    border: 0;
    border-left: 2px solid var(--line);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .dropdown-menu a {
    white-space: normal;
  }

  .nav-item.is-dropdown-open .dropdown-menu,
  .nav-item.is-active .dropdown-menu {
    display: grid;
  }

  .top-claim {
    display: none;
  }

  .hero-grid,
  .lead-layout,
  .intelligence-grid,
  .people-media,
  .contact-grid,
  .global-agenda-inner {
    grid-template-columns: 1fr;
  }

  .page-hero-grid,
  .page-layout {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .detail-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .research-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .expert-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr 1.45fr;
  }

  .footer-brand,
  .footer-columns {
    border-right: 0;
  }

  .footer-contact {
    border-right: 0;
    padding-right: 0;
  }

  .footer-quote {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .utility-inner {
    justify-content: center;
    gap: 9px;
  }

  .navbar {
    height: 70px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .brand strong {
    font-size: 24px;
  }

  .brand small {
    max-width: 190px;
    font-size: 9px;
  }

  .nav-links {
    top: 98px;
  }

  .hero,
  .hero-grid {
    height: auto;
    min-height: 640px;
  }

  .hero-grid {
    align-items: center;
    padding: 42px 0 76px;
  }

  .hero-controls {
    bottom: 18px;
    justify-content: center;
  }

  .hero-panel {
    align-self: end;
  }

  .metric-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-inner,
  .featured-publication,
  .president-card,
  .footer-main,
  .wide-item {
    grid-template-columns: 1fr;
  }

  .quote-inner {
    align-items: flex-start;
    padding: 20px 0;
    flex-direction: column;
  }

  .quote-inner div {
    min-width: 0;
    text-align: left;
  }

  .featured-publication {
    padding: 16px;
  }

  .report-cover {
    min-height: 220px;
  }

  .subscribe-form .input-row,
  .input-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .button {
    width: 100%;
  }

  .update-item,
  .event-card,
  .media-item {
    grid-template-columns: 78px 1fr;
  }

  .update-item .arrow,
  .event-card .arrow {
    display: none;
  }

  .thumb {
    width: 78px;
    height: 62px;
  }

  .research-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .research-card {
    min-height: 122px;
    padding: 14px 8px;
    gap: 9px;
  }

  .research-card svg {
    width: 30px;
    height: 30px;
  }

  .research-card strong {
    font-size: 12px;
    line-height: 1.22;
  }

  .region-list {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
    padding-inline: 0;
  }

  .footer-brand {
    padding-right: 0;
    text-align: center;
    display: grid;
    justify-items: center;
  }

  .footer-contact {
    text-align: center;
    display: grid;
    justify-items: center;
  }

  .contact-line,
  .social-row,
  .footer-sites {
    justify-content: center;
  }

  .footer-quote {
    text-align: center;
    justify-items: center;
  }

  .footer-quote blockquote::after {
    margin-inline: auto;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    justify-content: center;
  }

  .expert-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wide-item img {
    width: 100%;
    height: 190px;
  }

  .global-focus {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .brand small {
    display: none;
  }

  .expert-grid,
  .feature-grid,
  .detail-card-grid {
    grid-template-columns: 1fr;
  }

  .research-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 16px;
  }

  .research-section .section-head {
    align-items: center;
  }

  .research-section .section-head h2 {
    font-size: 24px;
  }

  .hero h1 {
    font-size: 35px;
  }
}
