:root {
  --bg: #090912;
  --bg-soft: #11111d;
  --panel: rgba(19, 19, 34, 0.88);
  --panel-soft: rgba(21, 21, 38, 0.64);
  --panel-border: rgba(255, 255, 255, 0.08);
  --text: #f0efe8;
  --muted: #8e91a8;
  --accent: #f6861f;
  --accent-soft: #ffab57;
  --hero-ink: #f2ede2;
  --hero-muted: rgba(242, 237, 226, 0.74);
  --hero-line: rgba(255, 176, 96, 0.18);
  --hero-line-strong: rgba(255, 176, 96, 0.28);
  --hero-surface: rgba(28, 21, 23, 0.58);
  --hero-surface-soft: rgba(255, 255, 255, 0.03);
  --hero-shadow: rgba(7, 6, 10, 0.3);
  --max-width: 1240px;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --font-base: "DIN Next LT Arabic", "DIN Next Arabic", "Cairo", "Segoe UI", sans-serif;
  --font-display: "DIN Next LT Arabic", "DIN Next Arabic", "Cairo", "Segoe UI", sans-serif;
}

@font-face {
  font-family: "DIN Next LT Arabic";
  src:
    local("DIN Next LT Arabic Regular"),
    local("DIN Next LT Arabic"),
    local("DINNextLTArabic-Regular");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DIN Next LT Arabic";
  src:
    local("DIN Next LT Arabic Medium"),
    local("DINNextLTArabic-Medium");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "DIN Next LT Arabic";
  src:
    local("DIN Next LT Arabic Bold"),
    local("DINNextLTArabic-Bold");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "DIN Next LT Arabic";
  src:
    local("DIN Next LT Arabic Heavy"),
    local("DINNextLTArabic-Heavy");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "DIN Next LT Arabic";
  src:
    local("DIN Next LT Arabic Black"),
    local("DINNextLTArabic-Black");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-base);
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(246, 134, 31, 0.1), transparent 20%),
    radial-gradient(circle at bottom left, rgba(246, 134, 31, 0.06), transparent 26%),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.025), transparent 16%),
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 40px 40px, 40px 40px;
  opacity: 0.16;
  mix-blend-mode: screen;
}

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

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

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-header,
.section-shell,
.contact-section,
.site-footer {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
  margin-top: 14px;
  padding: 14px 26px;
  border-radius: 999px;
  background: rgba(15, 15, 26, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  box-shadow: 0 0 18px rgba(246, 134, 31, 0.72);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text strong {
  font-size: 1rem;
  font-weight: 800;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.74rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.main-nav a,
.header-cta,
.button,
.button-secondary,
.section-link,
.stretched-link {
  transition: 180ms ease;
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--text);
  background: rgba(246, 134, 31, 0.14);
}

.header-cta,
.button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #1b1209;
  font-family: inherit;
  font-weight: 800;
  cursor: pointer;
}

.header-cta,
.button {
  padding: 14px 24px;
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid rgba(246, 134, 31, 0.32);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.button:hover,
.button-secondary:hover,
.header-cta:hover,
.section-link:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.page-main {
  padding: 12px 0 0;
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 96px);
  display: flex;
  align-items: center;
  padding: 18px 0 34px;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 26%),
    radial-gradient(circle at 50% 20%, rgba(246, 134, 31, 0.12), transparent 20%),
    radial-gradient(circle at 55% 46%, rgba(246, 134, 31, 0.09), transparent 18%),
    radial-gradient(circle at 50% 62%, rgba(246, 134, 31, 0.06), transparent 26%),
    linear-gradient(90deg, rgba(246, 134, 31, 0.04), transparent 14%, transparent 86%, rgba(246, 134, 31, 0.04));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), 1160px);
  margin-inline: auto;
  text-align: center;
  transform: translateY(-92px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 980px;
  margin-inline: auto;
}

.eyebrow,
.section-kicker,
.dossier-meta,
.section-link {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero-alert {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 14px;
  width: auto;
  max-width: min(100%, 760px);
  min-height: 0;
  margin: 24px auto 0;
  padding: 12px 24px;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
  border: none;
  box-shadow: none;
  color: #f2ede2;
  font-family: var(--font-display);
}

.hero-alert::before,
.hero-alert::after {
  display: none;
}

.hero-alert-text {
  position: relative;
  z-index: 1;
  display: block;
  font-size: clamp(0.98rem, 1.45vw, 1.26rem);
  font-weight: 500;
  color: #f6861f;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.hero-alert-dot {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb15f, #f6861f);
  box-shadow:
    0 0 12px rgba(246, 134, 31, 0.5),
    0 0 24px rgba(246, 134, 31, 0.16);
  animation: pulse-glow 2s infinite ease-in-out;
}

.hero-alert-dot::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(255, 176, 96, 0.12);
}

.hero-copy h1 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--font-display);
  max-width: 12ch;
  font-size: clamp(4.15rem, 10.4vw, 7.8rem);
  line-height: 1.2;
  padding-bottom: 0.16em;
  margin-bottom: -0.12em;
  letter-spacing: -0.025em;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 
    0 4px 18px rgba(246, 134, 31, 0.18), 
    0 15px 30px rgba(0, 0, 0, 0.44);
  text-wrap: balance;
}

.hero-copy h1 span {
  color: #f6861f;
}

.hero-subline {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0 0;
  font-size: clamp(1.02rem, 1.6vw, 1.26rem);
  font-weight: 500;
  color: #ffffff;
  padding: 10px 28px;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  line-height: 1.25;
}

.hero-subline::before,
.hero-subline::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10px;
  border-color: rgba(246, 134, 31, 0.65);
  border-style: solid;
  pointer-events: none;
  transition: all 0.3s ease;
}

.hero-subline::before {
  left: 0;
  border-width: 2px 0 2px 2px; /* Opening bracket [ */
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.hero-subline::after {
  right: 0;
  border-width: 2px 2px 2px 0; /* Closing bracket ] */
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.hero-actions {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-actions .button {
  min-width: 212px;
  padding: 15px 28px;
  background: linear-gradient(135deg, #ffab57, #f6861f);
  color: #20140c;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 14px 30px rgba(246, 134, 31, 0.22);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-actions .button::after {
  content: "←";
  margin-inline-start: 10px;
  font-size: 0.95em;
  transition: transform 180ms ease;
}

.hero-actions .button:hover::after {
  transform: translateX(-3px);
}

.hero-radar {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(60vw, 760px);
  aspect-ratio: 1 / 1;
  opacity: 0.52;
  transform: translate(-50%, -42%);
  pointer-events: none;
}

.radar-sphere,
.regions-map {
  position: relative;
  width: 100%;
  height: 100%;
}

.radar-sphere::before,
.radar-sphere::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.radar-sphere::before {
  border: 1px solid rgba(246, 134, 31, 0.12);
}

.radar-sphere::after {
  inset: 6%;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.radar-ring,
.radar-lat,
.radar-lon {
  position: absolute;
  border-radius: 50%;
}

.radar-ring {
  inset: 0;
  border: 1px solid rgba(246, 134, 31, 0.08);
}

.radar-ring-1 { inset: 18%; }
.radar-ring-2 { inset: 32%; }
.radar-ring-3 { inset: 46%; }

.radar-lat {
  left: 6%;
  right: 6%;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.radar-lat-1 { top: 28%; bottom: 28%; }
.radar-lat-2 { top: 42%; bottom: 42%; }

.radar-lon {
  top: 7%;
  bottom: 7%;
  border-left: 1px solid rgba(255, 255, 255, 0.03);
}

.radar-lon-1 { left: 28%; right: 28%; }
.radar-lon-2 { left: 42%; right: 42%; }

.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(246, 134, 31, 0.12), transparent 28%, transparent 100%);
  filter: blur(1px);
  animation: sweep 7s linear infinite;
}

.radar-point {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.radar-node {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(246, 134, 31, 0.8);
  animation: radar-node-pulse 7s ease-in-out infinite;
}

.radar-node::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(246, 134, 31, 0.45);
  opacity: 0;
  animation: radar-node-ring 7s ease-out infinite;
}

.radar-tag {
  padding: 6px 12px;
  border: 1px solid rgba(246, 134, 31, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(240, 239, 232, 0.56);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px) scale(0.96);
  animation: radar-tag-flash 7s ease-in-out infinite;
}

.radar-point-1 { top: 14%; left: 18%; }
.radar-point-2 { top: 30%; right: 14%; }
.radar-point-2,
.radar-point-3,
.radar-point-4,
.radar-point-5 {
  flex-direction: row-reverse;
}
.radar-point-3 { top: 58%; left: 10%; }
.radar-point-4 { bottom: 20%; right: 14%; }
.radar-point-5 { bottom: 4%; left: 54%; }

.radar-point-1 .radar-node,
.radar-point-1 .radar-node::before,
.radar-point-1 .radar-tag {
  animation-delay: 0.2s;
}

.radar-point-2 .radar-node,
.radar-point-2 .radar-node::before,
.radar-point-2 .radar-tag {
  animation-delay: 1.35s;
}

.radar-point-3 .radar-node,
.radar-point-3 .radar-node::before,
.radar-point-3 .radar-tag {
  animation-delay: 2.65s;
}

.radar-point-4 .radar-node,
.radar-point-4 .radar-node::before,
.radar-point-4 .radar-tag {
  animation-delay: 4.1s;
}

.radar-point-5 .radar-node,
.radar-point-5 .radar-node::before,
.radar-point-5 .radar-tag {
  animation-delay: 5.45s;
}

@keyframes sweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse-glow {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(246, 134, 31, 0.7), 0 0 10px rgba(246, 134, 31, 0.3);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(246, 134, 31, 0), 0 0 20px rgba(246, 134, 31, 0.5);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(246, 134, 31, 0), 0 0 10px rgba(246, 134, 31, 0.3);
  }
}

@keyframes radar-node-pulse {
  0%,
  12%,
  100% {
    opacity: 0.26;
    transform: scale(0.72);
    box-shadow: 0 0 0 rgba(246, 134, 31, 0);
  }
  16%,
  24% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 22px rgba(246, 134, 31, 0.88);
  }
  32% {
    opacity: 0.5;
    transform: scale(0.82);
    box-shadow: 0 0 10px rgba(246, 134, 31, 0.35);
  }
}

@keyframes radar-node-ring {
  0%,
  12%,
  100% {
    opacity: 0;
    transform: scale(0.45);
  }
  17% {
    opacity: 0.6;
  }
  27% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes radar-tag-flash {
  0%,
  12%,
  100% {
    opacity: 0;
    transform: translateX(8px) scale(0.96);
  }
  16%,
  24% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  32% {
    opacity: 0;
    transform: translateX(-4px) scale(0.98);
  }
}

.section-shell,
.contact-section {
  padding: 88px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 42px;
}

.section-heading.centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-heading h2,
.contact-copy h2 {
  margin: 10px 0 0;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.98;
  font-weight: 900;
}

.section-heading p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.about-section .section-heading {
  margin-bottom: 42px;
}

.about-section .section-heading h2 {
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  line-height: 1.08;
}

.story-section-heading h2 span {
  color: var(--accent);
}

.about-section .section-heading p {
  max-width: 760px;
  font-size: 1.02rem;
}

.story-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: start;
  direction: ltr;
}

.story-feature-panel {
  margin: 0;
  position: relative;
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 50%), var(--panel);
  overflow: hidden;
}

.story-feature-panel {
  min-height: 720px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 22%),
    linear-gradient(145deg, rgba(42, 35, 64, 0.88), rgba(241, 120, 6, 0.78)),
    #151325;
}

.story-feature-panel img {
  width: 100%;
  height: 100%;
  min-height: 684px;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 8px);
  opacity: 0.18;
  filter: saturate(0.78) contrast(1.05);
}

.story-feature-panel::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: calc(var(--radius-xl) - 8px);
  background:
    linear-gradient(180deg, rgba(11, 10, 30, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(24, 18, 49, 0.16), rgba(236, 119, 9, 0.52));
  pointer-events: none;
}

.story-feature-panel figcaption {
  position: absolute;
  inset: 28px 30px auto 30px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.story-feature-label {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(10, 10, 22, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.story-feature-panel strong {
  max-width: 420px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.35;
}

.story-narrative-panel {
  margin: 0;
  direction: rtl;
  padding: 18px 0 10px;
}

.story-narrative-panel h3 {
  margin: 10px 0 20px;
  color: var(--accent);
  font-size: clamp(1.85rem, 2.55vw, 2.8rem);
  line-height: 1.14;
}

.story-narrative-panel h3 span {
  display: block;
  white-space: nowrap;
}

.story-lead,
.story-narrative-panel p {
  margin: 0 0 20px;
  color: #c3c6d7;
  font-size: 1.08rem;
  line-height: 1.95;
  max-width: 44rem;
}

.story-lead {
  color: var(--hero-ink);
}

.about-grid,
.contact-panel {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 36px;
  align-items: start;
}

.analyst-visual,
.analyst-copy,
.reach-card,
.dossier-card,
.regions-map,
.contact-panel,
.page-hero-inner,
.content-panel {
  position: relative;
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 50%), var(--panel);
  overflow: hidden;
}

.analyst-visual {
  min-height: 760px;
  padding: 22px;
}

.analyst-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 20%, rgba(246, 134, 31, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(246, 134, 31, 0.05), transparent 24%),
    #0d111c;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.analyst-frame::before,
.analyst-frame::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  border-color: rgba(246, 134, 31, 0.58);
}

.analyst-frame::before {
  top: 22px;
  right: 22px;
  border-top: 2px solid;
  border-right: 2px solid;
}

.analyst-frame::after {
  bottom: 22px;
  left: 22px;
  border-bottom: 2px solid;
  border-left: 2px solid;
}

.analyst-screen {
  position: absolute;
  inset: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-radius: 20px;
  background: rgba(8, 8, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.analyst-tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(246, 134, 31, 0.1);
  color: var(--accent-soft);
  font-size: 0.84rem;
  font-weight: 800;
}

.analyst-screen strong {
  display: block;
  margin: 0;
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  line-height: 1.25;
}

.analyst-screen p,
.analyst-copy p,
.dossier-body p,
.contact-copy p,
.content-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.95;
}

.analyst-copy {
  padding: 36px;
}

.analyst-copy h3 {
  margin: 10px 0 22px;
  font-size: clamp(1.8rem, 2.7vw, 2.8rem);
  line-height: 1.2;
}

.analyst-screen-story {
  background:
    linear-gradient(180deg, rgba(246, 134, 31, 0.06), rgba(246, 134, 31, 0.01) 26%, rgba(8, 8, 18, 0.84)),
    rgba(8, 8, 18, 0.78);
}

.story-timeline {
  display: grid;
  gap: 18px;
  margin-top: 4px;
}

.story-timeline-item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.story-timeline-mark {
  position: relative;
  width: 18px;
  height: 18px;
  margin-top: 8px;
  border-radius: 50%;
  border: 2px solid rgba(246, 134, 31, 0.86);
  background: rgba(246, 134, 31, 0.12);
  box-shadow: 0 0 0 6px rgba(246, 134, 31, 0.06);
}

.story-timeline-item:not(:last-child) .story-timeline-mark::after {
  content: "";
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, rgba(246, 134, 31, 0.4), rgba(255, 255, 255, 0.06));
  transform: translateX(-50%);
}

.story-timeline-item small {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--accent-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-timeline-item p {
  font-size: 1rem;
}

.story-quote {
  margin: 0;
  padding-top: 10px;
  border-top: 0;
}

.story-quote-inline {
  margin: 10px 0 0;
  padding-top: 0;
  border-top: 0;
}

.story-quote p {
  margin: 0;
  color: var(--hero-ink);
  font-size: 1.14rem;
  font-weight: 700;
  line-height: 1.7;
}

.story-block {
  height: 100%;
  margin-bottom: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.story-block-accent {
  grid-column: 1 / -1;
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(246, 134, 31, 0.06), rgba(255, 255, 255, 0.01));
}

.story-phase {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-block p {
  color: #b2b5c9;
  font-size: 1.03rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 24px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-stats strong {
  display: block;
  font-size: 2.2rem;
}

.about-stats span {
  color: var(--muted);
}

.text-link,
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-soft);
  font-weight: 800;
}

.reach-section {
  padding-top: 26px;
}

.reach-heading h2 span {
  color: var(--accent);
}

.reach-heading p {
  max-width: 760px;
  font-size: 1.02rem;
}

.reach-grid,
.analysis-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.reach-card {
  min-height: 224px;
  padding: 22px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  border-color: rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 40%),
    rgba(22, 21, 43, 0.92);
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease;
  box-shadow:
    0 18px 38px rgba(5, 6, 14, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.reach-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.12) 50%, transparent 82%);
  opacity: 0;
  transform: translateX(-32%) skewX(-18deg);
  transition:
    opacity 240ms ease,
    transform 420ms ease;
  pointer-events: none;
}

.reach-card::after,
.dossier-card::after,
.contact-panel::after {
  content: "";
  position: absolute;
  inset: auto -8% -10% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 134, 31, 0.16), transparent 72%);
  pointer-events: none;
}

.reach-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  border-radius: 22px;
  background: transparent;
  border: 0;
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    background 240ms ease,
    box-shadow 240ms ease;
}

.reach-icon svg {
  width: 28px;
  height: 28px;
  transition: transform 240ms ease;
}

.reach-label {
  display: block;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 500;
  transition:
    color 220ms ease,
    letter-spacing 220ms ease;
}

.reach-value {
  display: block;
  color: var(--accent);
  font-size: clamp(2.15rem, 3.15vw, 3.15rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.reach-handle {
  margin: 0;
  color: #66697f;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 220ms ease, color 220ms ease;
}

.reach-card.is-featured {
  border-color: rgba(246, 134, 31, 0.46);
  box-shadow:
    0 26px 56px rgba(4, 5, 14, 0.3),
    inset 0 0 0 1px rgba(246, 134, 31, 0.08);
}

.stretched-link {
  position: absolute;
  inset: 0;
}

.reach-card:hover {
  transform: translateY(-8px);
  border-color: rgba(246, 134, 31, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 52%),
    linear-gradient(135deg, rgba(246, 134, 31, 0.06), transparent 34%),
    rgba(22, 21, 43, 0.94);
  box-shadow:
    0 26px 56px rgba(4, 5, 14, 0.32),
    0 0 0 1px rgba(246, 134, 31, 0.06) inset;
}

.reach-card:hover::before {
  opacity: 1;
  transform: translateX(42%) skewX(-18deg);
}

.reach-card:hover::after {
  background: radial-gradient(circle, rgba(246, 134, 31, 0.22), transparent 72%);
}

.reach-card:hover .reach-icon {
  transform: translateY(-4px) scale(1.04);
}

.reach-card:hover .reach-icon svg {
  transform: scale(1.08);
}

.reach-card:hover .reach-label {
  color: var(--accent-soft);
  letter-spacing: 0.2em;
}

.reach-card:hover .reach-handle {
  color: #fff7ef;
  transform: translateY(-1px);
}

.dossier-card {
  display: flex;
  flex-direction: column;
}

.dossier-thumb {
  position: relative;
  min-height: 230px;
  background-size: cover;
  background-position: center;
}

.dossier-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(246, 134, 31, 0.14);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 800;
}

.dossier-body {
  padding: 22px;
}

.dossier-meta {
  display: flex;
  gap: 12px;
  color: var(--muted);
  font-size: 0.76rem;
}

.dossier-body h3 {
  margin: 14px 0 12px;
  font-size: 1.45rem;
  line-height: 1.4;
}

.regions-map {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(246, 134, 31, 0.05), transparent 24%),
    rgba(17, 17, 30, 0.72);
}

.regions-radar {
  position: absolute;
  width: min(68vw, 560px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid rgba(246, 134, 31, 0.16);
}

.regions-radar::before,
.regions-radar::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.regions-radar::after {
  inset: 28%;
}

.regions-radar {
  background:
    radial-gradient(circle, rgba(246, 134, 31, 0.05), transparent 68%),
    conic-gradient(from 0deg, rgba(246, 134, 31, 0.16), transparent 26%, transparent 100%);
  animation: sweep 9s linear infinite;
}

.map-core {
  position: relative;
  z-index: 2;
  width: 94px;
  height: 94px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(246, 134, 31, 0.24);
  background: rgba(9, 9, 18, 0.88);
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0.18em;
}

.map-node {
  position: absolute;
  z-index: 3;
}

.map-node span {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(246, 134, 31, 0.82);
}

.map-node-a { top: 24%; left: 26%; }
.map-node-b { top: 48%; right: 24%; }
.map-node-c { bottom: 24%; left: 38%; }

.map-label {
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(8, 8, 18, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.06);
  white-space: nowrap;
}

.map-label strong {
  display: block;
  font-size: 0.94rem;
}

.map-label small {
  color: var(--muted);
}

.contact-panel {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.contact-panel::after {
  display: none;
}

.contact-form {
  display: flex;
  gap: 10px;
  align-items: center;
}

.contact-cta {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  width: 100%;
}

.contact-whatsapp-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: min(100%, 1100px);
  align-self: stretch;
  margin-inline: auto;
  padding: 26px 30px 24px;
  border-radius: 30px;
  border: 1px solid rgba(89, 224, 142, 0.12);
  background:
    radial-gradient(circle at top left, rgba(37, 211, 102, 0.08), transparent 26%),
    radial-gradient(circle at bottom right, rgba(37, 211, 102, 0.05), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 56%),
    linear-gradient(135deg, rgba(20, 22, 40, 0.98), rgba(10, 12, 24, 0.98));
  box-shadow:
    0 24px 56px rgba(4, 5, 14, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.contact-whatsapp-card:hover {
  transform: translateY(-3px);
  border-color: rgba(89, 224, 142, 0.2);
  background:
    radial-gradient(circle at top left, rgba(37, 211, 102, 0.1), transparent 28%),
    radial-gradient(circle at bottom right, rgba(37, 211, 102, 0.07), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 58%),
    linear-gradient(135deg, rgba(22, 24, 44, 0.98), rgba(11, 13, 26, 0.99));
  box-shadow:
    0 28px 62px rgba(4, 5, 14, 0.28),
    0 0 0 1px rgba(89, 224, 142, 0.06) inset;
}

.contact-whatsapp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-whatsapp-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.1);
  color: #d7f7e2;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.contact-whatsapp-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: rgba(37, 211, 102, 0.18);
  color: #8cf5b5;
}

.contact-whatsapp-mark svg {
  width: 18px;
  height: 18px;
}

.contact-whatsapp-state {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(240, 239, 232, 0.7);
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-whatsapp-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-whatsapp-body strong {
  display: block;
  color: var(--text);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1;
}

.contact-whatsapp-body p {
  margin: 0;
  color: var(--muted);
  max-width: 760px;
  font-size: clamp(0.98rem, 1.35vw, 1.18rem);
  line-height: 1.65;
}

.contact-whatsapp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-whatsapp-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #cfd3e6;
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-whatsapp-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 68px;
  margin-top: 4px;
  padding: 12px 14px 12px 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, #25d366, #67e08c);
  color: #08140d;
  font-size: clamp(1.08rem, 1.5vw, 1.45rem);
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.2);
}

.contact-whatsapp-action-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(8, 20, 13, 0.1);
}

.contact-whatsapp-action-icon svg {
  width: 22px;
  height: 22px;
}

.site-footer {
  padding: 24px 0 40px;
}

.connect-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 8px 0 24px;
  text-align: center;
}

.connect-footer-heading h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.2vw, 4.1rem);
  line-height: 1;
  font-weight: 900;
}

.connect-footer-heading h2 span {
  color: var(--accent);
}

.connect-footer-heading p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(0.94rem, 1.4vw, 1.08rem);
}

.connect-footer-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.connect-icon {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(24, 23, 45, 0.78);
  color: var(--text);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 14px 34px rgba(5, 6, 14, 0.14);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.connect-icon svg {
  width: 24px;
  height: 24px;
}

.connect-icon:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 134, 31, 0.24);
  background: rgba(30, 27, 49, 0.9);
  color: var(--accent-soft);
}

.connect-icon.is-disabled {
  opacity: 0.72;
}

.connect-footer-meta {
  margin: 0;
  color: var(--accent);
  font-size: clamp(0.98rem, 1.8vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

.connect-footer-meta a {
  color: inherit;
}

.connect-footer-meta span {
  display: inline-block;
  margin-inline: 8px;
}

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

.site-footer p {
  color: var(--muted);
}

.footer-bottom {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  margin: 0 auto;
}

.page-hero {
  padding: 120px 0 18px;
}

.page-hero-inner,
.content-panel {
  padding: 28px;
}

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

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-copy h1 {
    font-size: clamp(4rem, 10vw, 7.2rem);
  }

  .story-showcase {
    grid-template-columns: 1fr;
    gap: 24px;
    direction: rtl;
  }

  .story-feature-panel,
  .story-feature-panel img {
    min-height: 520px;
  }

  .about-grid,
  .contact-panel,
  .reach-grid,
  .analysis-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-panel {
    align-items: start;
  }

}

@media (max-width: 820px) {
  .site-header {
    position: relative;
    top: 0;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    min-height: auto;
    margin-top: 10px;
    padding: 14px 18px;
    border-radius: 22px;
  }

  .brand,
  .brand-text,
  .main-nav a,
  .header-cta,
  .button,
  .button-secondary,
  .contact-whatsapp-card,
  .footer-bottom {
    width: 100%;
  }

  .brand {
    justify-content: space-between;
    width: 100%;
  }

  .brand-text {
    align-items: flex-end;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .main-nav,
  .hero-actions,
  .section-heading,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav {
    gap: 8px;
  }

  .main-nav a,
  .header-cta {
    justify-content: center;
    text-align: center;
  }

  .section-heading.centered {
    align-items: stretch;
    text-align: right;
  }

  .about-grid,
  .contact-panel,
  .analysis-grid,
  .grid-2 {
    grid-template-columns: 1fr;
  }

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

  .story-copy-panel,
  .story-body-panel {
    padding: 22px;
  }

  .story-narrative-panel {
    padding: 22px 0 0;
  }

  .story-summary-grid {
    grid-template-columns: 1fr;
  }

  .story-feature-panel {
    justify-self: stretch;
    min-height: 420px;
    padding: 14px;
  }

  .story-feature-panel img {
    min-height: 392px;
  }

  .site-header,
  .section-shell,
  .contact-section,
  .site-footer,
  .hero-grid {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .hero-section {
    min-height: auto;
    padding: 10px 0 18px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 17vw, 4.8rem);
  }

  .hero-alert {
    width: 100%;
    margin-top: 22px;
    gap: 14px;
    padding: 14px 18px 14px 16px;
  }

  .hero-subline {
    margin-top: 14px;
    gap: 10px;
    font-size: 0.92rem;
    line-height: 1.45;
    padding: 10px 14px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions a,
  .contact-whatsapp-card {
    width: 100%;
    min-width: 0;
  }

  .hero-radar {
    inset: 55% auto auto 50%;
    width: min(108vw, 520px);
    opacity: 0.38;
    transform: translate(-50%, -28%);
  }

  .hero-grid {
    transform: translateY(-20px);
  }

  .radar-tag {
    padding: 4px 8px;
    font-size: 0.65rem;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .section-heading h2,
  .contact-copy h2,
  .analyst-copy h3 {
    line-height: 1.06;
  }

  .analyst-visual {
    min-height: 420px;
  }

  .analyst-copy,
  .dossier-body,
  .content-panel,
  .page-hero-inner {
    padding: 22px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 24px 0 20px;
  }

  .analyst-screen {
    inset: 18px;
    padding: 22px;
  }

  .story-timeline-item:not(:last-child) .story-timeline-mark::after {
    height: 38px;
  }

  .story-block {
    padding: 18px;
  }

  .story-block-accent {
    padding: 20px;
  }

  .story-feature-panel figcaption {
    inset: 24px 22px auto 22px;
  }

  .story-narrative-panel h3 {
    font-size: clamp(1.65rem, 8vw, 2.5rem);
  }

  .story-narrative-panel h3 span {
    white-space: normal;
  }

  .story-narrative-panel p,
  .story-quote p {
    max-width: none;
  }

  .reach-card,
  .dossier-card {
    border-radius: 24px;
  }

  .reach-card {
    min-height: 188px;
    padding: 16px 12px 14px;
    gap: 8px;
  }

  .reach-value {
    font-size: clamp(1.95rem, 5.6vw, 2.65rem);
  }

  .dossier-thumb {
    min-height: 210px;
  }

  .regions-map {
    min-height: 380px;
  }

  .regions-radar {
    width: min(100%, 400px);
  }

  .map-node-a { top: 18%; left: 14%; }
  .map-node-b { top: 46%; right: 14%; }
  .map-node-c { bottom: 18%; left: 24%; }

  .contact-panel {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .contact-cta {
    gap: 0;
  }

  .contact-whatsapp-card {
    width: 100%;
    padding: 22px 20px 20px;
    border-radius: 24px;
  }

  .connect-footer {
    gap: 24px;
    padding: 8px 0 24px;
  }

  .connect-icon {
    width: 76px;
    height: 76px;
  }

  .connect-icon svg {
    width: 28px;
    height: 28px;
  }

  .footer-bottom {
    gap: 12px;
    text-align: center;
  }

  .map-label {
    right: auto;
    left: 18px;
  }
}

@media (max-width: 560px) {
  .site-header,
  .section-shell,
  .contact-section,
  .site-footer,
  .hero-grid {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .page-main {
    padding-top: 6px;
  }

  .hero-section {
    overflow: visible;
    padding-bottom: 0;
  }

  .site-header {
    padding: 14px;
    border-radius: 24px;
  }

  .main-nav a,
  .header-cta,
  .button,
  .button-secondary {
    padding: 13px 18px;
  }

  .hero-grid {
    padding-bottom: 210px;
    transform: none;
  }

  .hero-copy h1 {
    margin-top: 14px;
    font-size: clamp(2.7rem, 17vw, 4.1rem);
  }

  .hero-subline {
    font-size: 0.82rem;
    gap: 8px;
    padding: 9px 11px;
  }

  .hero-alert {
    gap: 12px;
    padding: 12px 14px 12px 13px;
  }

  .hero-alert::after {
    right: 42px;
    top: 10px;
    bottom: 10px;
  }

  .hero-alert-text {
    font-size: 0.86rem;
  }

  .hero-alert-dot {
    width: 12px;
    height: 12px;
  }

  .hero-radar {
    inset: 54% auto auto 50%;
    width: min(108vw, 420px);
    opacity: 0.38;
    transform: translate(-50%, 0);
  }

  .eyebrow,
  .section-kicker,
  .dossier-meta,
  .section-link {
    font-size: 0.74rem;
    letter-spacing: 0.12em;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .analyst-frame::before,
  .analyst-frame::after {
    width: 48px;
    height: 48px;
  }

  .analyst-screen {
    inset: auto 16px 16px 16px;
    padding: 18px;
  }

  .analyst-screen strong {
    font-size: 1.45rem;
  }

  .analyst-screen {
    inset: 16px;
  }

  .story-timeline {
    gap: 14px;
  }

  .story-timeline-item {
    gap: 12px;
  }

  .story-timeline-item p,
  .story-quote p {
    font-size: 0.95rem;
  }

  .story-copy-panel h3 {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }

  .story-standfirst,
  .story-summary-card p,
  .story-block p {
    font-size: 0.96rem;
  }

  .story-feature-panel figcaption {
    inset: 20px 18px auto 18px;
  }

  .reach-card p,
  .dossier-body h3,
  .map-label strong {
    font-size: 0.96rem;
  }

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

  .reach-label {
    font-size: 0.7rem;
  }

  .reach-value {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
  }

  .reach-card {
    min-height: 168px;
    padding: 14px 10px 12px;
    gap: 6px;
  }

  .reach-icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
  }

  .reach-icon svg {
    width: 22px;
    height: 22px;
  }

  .reach-handle {
    font-size: 0.78rem;
  }

  .dossier-thumb {
    min-height: 190px;
  }

  .map-core {
    width: 72px;
    height: 72px;
    font-size: 0.86rem;
  }

  .map-label {
    left: 12px;
    padding: 8px 10px;
  }

  .page-hero-inner,
  .content-panel {
    padding: 18px;
    border-radius: 22px;
  }

  .contact-panel {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .contact-whatsapp-body strong {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
    line-height: 1.02;
  }

  .contact-whatsapp-body p {
    font-size: 0.98rem;
  }

  .contact-whatsapp-tags {
    gap: 8px;
  }

  .contact-whatsapp-tags span {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.76rem;
  }

  .contact-whatsapp-action {
    min-height: 58px;
    padding: 10px 12px 10px 16px;
    font-size: 1rem;
    border-radius: 20px;
  }

  .contact-whatsapp-action-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .contact-whatsapp-action-icon svg {
    width: 18px;
    height: 18px;
  }

  .connect-footer-heading h2 {
    font-size: clamp(2.35rem, 13vw, 3.4rem);
  }

  .connect-footer-heading p {
    font-size: 0.96rem;
  }

  .connect-footer-icons {
    gap: 12px;
  }

  .connect-icon {
    width: 62px;
    height: 62px;
  }

  .connect-icon svg {
    width: 24px;
    height: 24px;
  }

  .connect-footer-meta {
    font-size: 1rem;
    line-height: 1.8;
  }

  .connect-footer-meta span {
    margin-inline: 4px;
  }

  .site-footer p {
    font-size: 0.94rem;
  }
}
