:root {
  color-scheme: light;
  --navy: #0d425f;
  --white: #ffffff;
  --light-gray: #e5e6e7;
  --mint: #90dec1;
  --orange: #f8ae4e;
  --pink: #ecb1d1;
  --numa-purple: #563174;
  --numa-gray-1: #e6e8ea;
  --numa-gray-2: #f3f4f5;
  --numa-mint: #91cfb9;
  --numa-orange: #f4aa4f;
  --numa-pink: #e9accd;
  --bg: #ffffff;
  --bg-muted: #f5f6f7;
  --text: #0d425f;
  --text-muted: rgba(13, 66, 95, 0.68);
  --border: rgba(13, 66, 95, 0.14);
  --panel: rgba(255, 255, 255, 0.75);
  --shadow: 0 18px 40px rgba(13, 66, 95, 0.12);
  --radius: 24px;
  --content-max: 1280px;
  --reading-max: 920px;
  --dot-grid: radial-gradient(rgba(13, 66, 95, 0.06) 1px, transparent 1px);
  --dot-grid-size: 18px 18px;
  --transition: 240ms ease-in-out;
  --reveal-transition: 600ms ease-out;
  --rev-commission: #0d425f;
  --rev-managers: #f8ae4e;
  --rev-subscriptions: #90dec1;
  --rev-expired: #ecb1d1;
  --rev-investments: #1f5c7a;
  --rev-numa-sales: #5aa79f;
  --rev-marketing: #f3c37d;
  --rev-other: #9fb2c1;
  --scale-blue: #2f6f9e;
  --growth-green: #90dec1;
  --quality-purple: #6a4bb9;
  --wiser-accent: var(--navy);
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #07131b;
  --bg-muted: #0c1c27;
  --text: #f4f8fb;
  --text-muted: rgba(219, 231, 244, 0.82);
  --border: rgba(144, 222, 193, 0.32);
  --panel: rgba(10, 22, 32, 0.98);
  --shadow: 0 22px 48px rgba(3, 10, 15, 0.72);
  --dot-grid: radial-gradient(rgba(144, 222, 193, 0.2) 1px, transparent 1px);
  --growth-green: #78e6b1;
  --wiser-accent: var(--mint);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
  padding-bottom: 92px;
  font-size: 18px;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
}

main {
  padding-right: 0;
  position: relative;
  z-index: 1;
}

section {
  position: relative;
  z-index: 1;
}

body.is-locked {
  overflow: hidden;
}

body.is-locked .site-header,
body.is-locked main {
  display: none;
}

.access-gate {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: radial-gradient(circle at top, rgba(144, 222, 193, 0.16), transparent 55%),
    radial-gradient(circle at 30% 80%, rgba(13, 66, 95, 0.14), transparent 60%), var(--bg);
  z-index: 50;
}

.access-gate.is-hidden {
  display: none;
}

.access-card {
  width: min(100%, 480px);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.8));
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(13, 66, 95, 0.12);
  box-shadow: 0 24px 60px rgba(13, 66, 95, 0.18);
  padding: 40px;
  display: grid;
  gap: 18px;
  backdrop-filter: blur(18px);
}

:root[data-theme="dark"] .access-card {
  background: linear-gradient(165deg, rgba(8, 15, 22, 0.92), rgba(8, 15, 22, 0.82));
  border-color: rgba(144, 222, 193, 0.18);
}

.access-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  padding-top: 2px;
}

.access-logo {
  width: 88px;
  height: auto;
  display: block;
}

.access-heading {
  display: grid;
  gap: 14px;
}

.access-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(13, 66, 95, 0.55);
  font-weight: 500;
}

:root[data-theme="dark"] .access-eyebrow {
  color: var(--text-muted);
}

.access-card h1 {
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.25;
  font-weight: 700;
  margin: 0;
}

.access-subhead {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.access-form {
  display: grid;
  gap: 14px;
}

.access-input-wrap {
  position: relative;
}

.access-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(13, 66, 95, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.access-input-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.access-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.access-input {
  border-radius: 14px;
  border: 1px solid transparent;
  padding: 12px 14px 12px 40px;
  font-size: 16px;
  font-family: inherit;
  background: rgba(13, 66, 95, 0.04);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  width: 100%;
}

:root[data-theme="dark"] .access-input {
  background: rgba(7, 12, 18, 0.6);
}

.access-input::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.access-input:focus {
  outline: none;
  border-color: rgba(144, 222, 193, 0.8);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 3px rgba(144, 222, 193, 0.22);
}

:root[data-theme="dark"] .access-input:focus {
  background: rgba(7, 12, 18, 0.9);
}

.access-input:invalid:focus {
  border-color: rgba(144, 222, 193, 0.8);
  box-shadow: 0 0 0 3px rgba(144, 222, 193, 0.22);
}

.access-error {
  font-size: 12px;
  color: rgba(226, 39, 25, 0.85);
  display: none;
  gap: 6px;
  align-items: center;
}

.access-error.is-visible {
  display: inline-flex;
}

.access-error::before {
  content: "!";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(13, 66, 95, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.access-button {
  border: none;
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: var(--growth-green);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: 0 16px 30px rgba(13, 66, 95, 0.2);
}

.access-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(13, 66, 95, 0.24);
  background: #2aa06f;
}

.access-button:active {
  transform: translateY(0);
  box-shadow: 0 10px 20px rgba(13, 66, 95, 0.2);
  background: #248964;
}

.access-button:focus-visible {
  outline: 3px solid rgba(144, 222, 193, 0.5);
  outline-offset: 2px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--dot-grid);
  background-size: var(--dot-grid-size);
  opacity: 0.06;
  pointer-events: none;
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(144, 222, 193, 0.14), transparent 50%),
    radial-gradient(circle at 80% 12%, rgba(248, 174, 78, 0.12), transparent 55%);
  pointer-events: none;
  z-index: -2;
}

.reduced-motion,
.reduced-motion body {
  scroll-behavior: auto;
}

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

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

.container {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding: 0 24px;
}

.reading-width {
  max-width: var(--reading-max);
}

.site-header {
  position: relative;
  z-index: 20;
  background: transparent;
  border-bottom: 1px solid var(--border);
}

:root[data-theme="dark"] .site-header {
  background: rgba(7, 12, 18, 0.92);
}

:root[data-theme="dark"] .market-composition {
  background: radial-gradient(circle at 18% 18%, rgba(123, 230, 180, 0.12), transparent 55%),
    radial-gradient(circle at 78% 12%, rgba(248, 174, 78, 0.14), transparent 55%);
}

:root[data-theme="dark"] .market-composition::before {
  opacity: 0.18;
}

:root[data-theme="dark"] .numa {
  background: var(--numa-bg);
}

:root[data-theme="dark"] .theme-numa {
  --numa-bg: #140f1b;
  --numa-card: #1b1424;
  --numa-border: rgba(233, 172, 205, 0.24);
  --numa-text: #f1eaf7;
  --numa-muted: rgba(241, 234, 247, 0.82);
  --numa-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

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

.brand-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  font-weight: 650;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
}

.logo-wrap img {
  width: 96px;
  height: auto;
}

.logo-wrap.is-missing img {
  opacity: 0.5;
}

.toc {
  position: fixed;
  top: auto;
  right: auto;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: left;
  padding: 10px 16px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(13, 66, 95, 0.08);
  max-width: min(96vw, 980px);
}

.toc-active-label {
  display: none;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  text-align: left;
  white-space: nowrap;
}

.toc-active-label.is-active {
  color: var(--navy);
}

:root[data-theme="dark"] .toc-active-label.is-active {
  color: var(--mint);
}

.toc-items {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.toc a {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 4px 6px;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  color: var(--text-muted);
}

.toc a:not(:last-child)::after {
  display: none;
}

.toc a:hover,
.toc a:focus {
  color: var(--navy);
  transform: translateY(-1px);
}

.toc a.is-active {
  color: var(--navy);
}

.toc-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(13, 66, 95, 0.35);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.toc a:hover .toc-dot,
.toc a:focus .toc-dot {
  background: var(--navy);
}

.toc a.is-active .toc-dot {
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(144, 222, 193, 0.2);
}

.toc-label {
  display: none;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.toc a.is-active .toc-label,
.toc a:hover .toc-label,
.toc a:focus .toc-label {
  display: inline-flex;
}

:root[data-theme="dark"] .toc {
  background: rgba(7, 12, 18, 0.7);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

:root[data-theme="dark"] .toc-dot {
  background: rgba(144, 222, 193, 0.4);
}

:root[data-theme="dark"] .toc a:hover .toc-dot,
:root[data-theme="dark"] .toc a:focus .toc-dot {
  background: var(--mint);
}

:root[data-theme="dark"] .toc a.is-active .toc-dot {
  box-shadow: 0 0 0 4px rgba(144, 222, 193, 0.25);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toc-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  cursor: pointer;
  font-size: 12px;
  font-weight: 650;
  color: var(--text);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  cursor: pointer;
  font-size: 12px;
  font-weight: 650;
  color: var(--text);
}

.toggle-track {
  width: 34px;
  height: 18px;
  border-radius: 999px;
  background: rgba(13, 66, 95, 0.2);
  position: relative;
}

:root[data-theme="dark"] .toggle-track {
  background: rgba(144, 222, 193, 0.3);
}

.toggle-track::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--navy);
  transform: translateY(-50%);
  transition: transform 200ms ease;
}

:root[data-theme="dark"] .toggle-track::after {
  transform: translate(16px, -50%);
  background: var(--mint);
}

.chapter {
  padding: 90px 0;
  scroll-margin-top: 96px;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.chapter.section-highlight {
  outline: 2px solid rgba(144, 222, 193, 0.45);
  outline-offset: -16px;
  transition: outline-color 240ms ease;
}

[data-section] {
  scroll-margin-top: 120px;
}

.page-section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-height: 100vh;
}

.cover {
  padding: 96px 0 110px;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.cover-content {
  text-align: center;
  display: grid;
  gap: 16px;
  justify-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 650;
  color: var(--text-muted);
}

h1 {
  font-size: 56px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 750;
}

h3 {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}

.subhead {
  font-size: 18px;
  font-weight: 450;
  color: var(--text-muted);
}

.chapter-header {
  display: grid;
  gap: 16px;
  margin-bottom: 40px;
}

.chapter-header p {
  font-size: 18px;
}

.direction-statement {
  max-width: none;
  width: 100%;
  margin: 0;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  line-height: 1.6;
  text-wrap: pretty;
  hyphens: auto;
}

.full-width-header {
  max-width: none;
  text-align: center;
}

.full-width-header p {
  max-width: none;
  margin: 0 auto;
}

.editorial-header {
  max-width: none;
  width: 100%;
  text-align: left;
}

.editorial-header p {
  max-width: none;
  margin: 0;
  text-align: justify;
}

.longform-text {
  max-width: 920px;
  width: 100%;
  line-height: 1.5;
  text-align: justify;
  text-align-last: left;
}

.year-section {
  padding: 48px 0;
  --kpi-card-height: 220px;
  --kpi-icon-size: 44px;
  --kpi-icon-gap: 12px;
}

.year-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 32px;
}

.year-header-text {
  grid-column: 1 / -1;
  max-width: none;
  display: grid;
  gap: 16px;
}

.year-intro {
  max-width: none;
  text-align: justify;
  text-align-last: left;
}

.year-subhead {
  font-size: 18px;
  font-weight: 550;
  color: var(--navy);
}

.year-subhead--accent {
  color: var(--text);
  font-weight: 650;
}

:root[data-theme="dark"] .year-subhead--accent {
  color: var(--text);
}

.year-intro strong {
  font-weight: 750;
  color: var(--navy);
}

:root[data-theme="dark"] .year-intro strong {
  color: #f1f6fb;
}

.hero-divider {
  height: 1px;
  margin: 0 0 22px;
  background: linear-gradient(90deg, rgba(13, 66, 95, 0.2), rgba(13, 66, 95, 0.04), transparent);
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.kpi-hero {
  position: relative;
  display: grid;
  gap: 40px;
}

.kpi-hero::before {
  content: "";
  position: absolute;
  inset: -24px -16px;
  border-radius: 36px;
  background: radial-gradient(circle at 20% 20%, rgba(144, 222, 193, 0.1), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(248, 174, 78, 0.06), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.kpi-hero .kpi-grid {
  position: relative;
  z-index: 1;
}

.kpi-group {
  background: var(--kpi-group-bg, rgba(13, 66, 95, 0.04));
  border: 1px solid rgba(13, 66, 95, 0.08);
  border-radius: 22px;
  padding: 22px;
  display: grid;
  gap: 16px;
}

.kpi-group-header {
  display: grid;
  gap: 8px;
  padding-bottom: 4px;
}

.kpi-group-header--center {
  text-align: center;
  justify-items: center;
}

.kpi-group-title {
  font-size: 15px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text);
}

.kpi-group-insight {
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-muted);
  max-width: 520px;
}

.kpi-group-timestamp {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.kpi-section-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(13, 66, 95, 0.2), rgba(13, 66, 95, 0.04), transparent);
  margin: 4px 0;
}

.kpi-group.scale-group {
  --kpi-accent: var(--scale-blue);
  --kpi-accent-rgb: 47, 111, 158;
  --kpi-group-bg: rgba(47, 111, 158, 0.07);
}

.kpi-group.growth-group {
  --kpi-accent: var(--growth-green);
  --kpi-accent-rgb: 47, 158, 119;
  --kpi-group-bg: rgba(47, 158, 119, 0.06);
}

.kpi-group.growth-retention-group {
  --kpi-accent: var(--growth-green);
  --kpi-accent-rgb: 47, 158, 119;
  --kpi-group-bg: rgba(47, 158, 119, 0.1);
}

.kpi-group.quality-group {
  --kpi-accent: var(--quality-purple);
  --kpi-accent-rgb: 106, 75, 185;
  --kpi-group-bg: rgba(106, 75, 185, 0.06);
}

:root[data-theme="dark"] .kpi-group {
  border-color: rgba(144, 222, 193, 0.12);
}

:root[data-theme="dark"] .kpi-group.scale-group {
  --kpi-group-bg: rgba(47, 111, 158, 0.12);
}

:root[data-theme="dark"] .kpi-group.growth-group {
  --kpi-group-bg: rgba(47, 158, 119, 0.12);
}

:root[data-theme="dark"] .kpi-group.growth-retention-group {
  --kpi-group-bg: rgba(47, 158, 119, 0.12);
}

:root[data-theme="dark"] .kpi-group.quality-group {
  --kpi-group-bg: rgba(106, 75, 185, 0.12);
}

.kpi-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 8px 18px rgba(13, 66, 95, 0.08);
  display: grid;
  gap: 12px;
  transition: transform 240ms ease-in-out, box-shadow 240ms ease-in-out, border-color 240ms ease-in-out;
  height: 100%;
  overflow: visible;
}

.year-section .kpi-card {
  min-height: var(--kpi-card-height);
  padding: 20px;
  grid-template-rows: auto auto auto auto;
  align-content: start;
  gap: 10px;
}

.year-section .kpi-head {
  display: flex;
  align-items: center;
  gap: var(--kpi-icon-gap);
  min-height: var(--kpi-icon-size);
}

.year-section .kpi-label {
  display: block;
  line-height: 1.3;
}

.year-section .kpi-context {
  line-height: 1.4;
  min-height: 1.4em;
  display: block;
  overflow: visible;
}

.year-section .kpi-value-row {
  min-height: 52px;
}

.year-section .kpi-value {
  font-size: 56px;
  letter-spacing: -0.02em;
}

.year-section .kpi-growth {
  min-height: 24px;
  margin-top: 2px;
}

.kpi-card.hero-kpi {
  padding: 26px;
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.kpi-card.hero-kpi .kpi-value {
  font-size: 46px;
}

.repeat-card {
  --kpi-accent: var(--quality-purple);
  --kpi-accent-rgb: 106, 75, 185;
}

.kpi-card:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--kpi-accent-rgb, 144, 222, 193), 0.45);
  box-shadow: 0 18px 32px rgba(13, 66, 95, 0.12);
}

.scale-group .kpi-card:hover,
.growth-retention-group .kpi-card:hover {
  transform: none;
  border-color: var(--border);
  box-shadow: 0 8px 18px rgba(13, 66, 95, 0.08);
}

.kpi-card.is-highlighted {
  box-shadow: 0 0 0 2px rgba(144, 222, 193, 0.5), 0 18px 32px rgba(13, 66, 95, 0.16);
}

.kpi-card .icon-chip {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 240ms ease-in-out, transform 240ms ease-in-out;
}

.kpi-card.reveal.is-visible .icon-chip {
  opacity: 1;
  transform: scale(1);
}

.icon-chip {
  width: var(--kpi-icon-size);
  height: var(--kpi-icon-size);
  border-radius: 50%;
  background: rgba(var(--kpi-accent-rgb, 144, 222, 193), 0.14);
  border: 1px solid rgba(var(--kpi-accent-rgb, 144, 222, 193), 0.28);
  display: grid;
  place-items: center;
  color: var(--kpi-accent, var(--text));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.icon-chip svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.year-section .kpi-icon,
.growth-retention-group .kpi-icon {
  width: var(--kpi-icon-size);
  height: var(--kpi-icon-size);
  align-self: center;
}

.year-section .kpi-icon svg,
.growth-retention-group .kpi-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.1;
}

.kpi-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.kpi-value {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.kpi-value--currency {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
}

.riyal-amount {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  vertical-align: middle;
  flex-direction: row;
}

riyal-amount {
  display: inline-flex;
}

.currency-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  flex-shrink: 0;
}

currency-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

currency-icon[data-size="sm"] {
  width: 0.75em;
  height: 0.75em;
}

currency-icon[data-size="md"] {
  width: 1em;
  height: 1em;
}

currency-icon[data-size="lg"] {
  width: 1.25em;
  height: 1.25em;
}

.sar-icon {
  width: 100%;
  height: 100%;
  display: block;
}

.currency-icon--axis {
  margin-right: 0.3em;
}

.kpi-value-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  padding-top: 4px;
  min-height: 52px;
}

.kpi-description {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 2.8em;
}

.kpi-context {
  font-size: 14px;
  color: var(--text-muted);
  display: block;
  overflow: visible;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: clip;
}

.kpi-support {
  font-size: 12px;
  color: rgba(13, 66, 95, 0.6);
}

:root[data-theme="dark"] .kpi-support {
  color: rgba(240, 244, 248, 0.7);
}

.kpi-benchmark {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: rgba(13, 66, 95, 0.6);
}

:root[data-theme="dark"] .kpi-benchmark {
  color: rgba(240, 244, 248, 0.7);
}

.kpi-sparkline {
  width: 100%;
  height: 24px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  opacity: 0.12;
  pointer-events: none;
}

.kpi-sparkline polyline {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.insight-card {
  background: linear-gradient(135deg, rgba(144, 222, 193, 0.16), rgba(248, 174, 78, 0.16));
  justify-content: center;
  text-align: left;
}

.insight-list {
  margin: 10px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
}

.kpi-insight-row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 20px;
  margin-top: 24px;
  align-items: stretch;
}

.insight-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(13, 66, 95, 0.08);
  color: var(--text);
}

.insight-statement {
  margin-top: 14px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

.kpi-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

.kpi-group.growth-group .kpi-growth,
.kpi-group.growth-retention-group .kpi-growth {
  color: #0f8b4c;
  background: rgba(70, 214, 144, 0.3);
}

.info-bar {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(13, 66, 95, 0.14);
  background: rgba(13, 66, 95, 0.04);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.info-bar svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  margin-top: 2px;
}

.section-block {
  display: grid;
  gap: 28px;
  margin-bottom: 56px;
}

.section-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.section-head.compact {
  margin-bottom: 20px;
}

.section-intro {
  font-size: 16px;
  color: var(--text-muted);
}

.section-paragraph {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 860px;
}

.market-composition {
  position: relative;
  width: 100%;
  min-height: 100%;
  background: radial-gradient(circle at 18% 18%, rgba(144, 222, 193, 0.18), transparent 55%),
    radial-gradient(circle at 78% 12%, rgba(248, 174, 78, 0.18), transparent 55%);
  background-size: cover;
  background-position: center;
}

.market-composition::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--dot-grid);
  background-size: var(--dot-grid-size);
  opacity: 0.08;
  pointer-events: none;
}

.market-composition .container {
  position: relative;
  z-index: 1;
}

.growth-section {
  position: relative;
  background: radial-gradient(circle at 12% 18%, rgba(47, 111, 158, 0.08), transparent 55%),
    radial-gradient(circle at 82% 14%, rgba(144, 222, 193, 0.1), transparent 55%);
}

.growth-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--dot-grid);
  background-size: var(--dot-grid-size);
  opacity: 0.05;
  pointer-events: none;
}

.growth-section .container {
  position: relative;
  z-index: 1;
}

.market-section {
  padding: 24px 0;
  display: grid;
  gap: 20px;
}

.section-header {
  display: grid;
  gap: 12px;
}

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.card-title h3 {
  font-size: 20px;
}

.card-subtitle {
  margin: 4px 0 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.revenue-metrics {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.metric {
  display: grid;
  gap: 4px;
  font-size: 14px;
  color: var(--text-muted);
}

.metric-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.metric strong {
  font-size: 20px;
  color: var(--text);
}

.pill.growth {
  background: rgba(72, 206, 147, 0.3);
  color: #0b6a46;
  border: 1px solid rgba(72, 206, 147, 0.45);
}

:root[data-theme="dark"] .pill.growth {
  background: rgba(120, 230, 177, 0.2);
  color: #d8ffe9;
  border-color: rgba(120, 230, 177, 0.4);
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 14px 28px rgba(13, 66, 95, 0.12);
}

:root[data-theme="dark"] .card {
  border-color: rgba(144, 222, 193, 0.28);
  box-shadow: 0 18px 36px rgba(2, 8, 14, 0.45);
}

.geo-card {
  position: relative;
  background: linear-gradient(135deg, rgba(144, 222, 193, 0.18), rgba(248, 234, 213, 0.2));
}

.revenue-card {
  display: grid;
  gap: 16px;
}

.revenue-hero {
  display: grid;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.revenue-hero-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.revenue-section-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin: 0;
}

.data-pill {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: rgba(13, 66, 95, 0.08);
  color: var(--text);
}

.revenue-hero-value {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.revenue-hero-value strong {
  font-size: clamp(44px, 5vw, 60px);
  font-weight: 750;
  letter-spacing: -0.02em;
  color: var(--text);
}

.revenue-hero .pill {
  font-size: 11px;
  padding: 3px 8px;
}

.metric-label--below {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.revenue-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
}

.revenue-visual {
  display: grid;
  place-items: center;
}

.revenue-donut {
  width: min(420px, 100%);
  position: relative;
  cursor: pointer;
  margin: 0 auto;
}

.revenue-donut::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  box-shadow: inset 0 -8px 14px rgba(13, 66, 95, 0.1);
  pointer-events: none;
}

.revenue-donut-chart {
  width: 100%;
  height: auto;
  transform: rotate(-90deg);
  filter: drop-shadow(0 14px 20px rgba(13, 66, 95, 0.14));
}

.revenue-donut-track {
  fill: none;
  stroke: rgba(13, 66, 95, 0.08);
  stroke-width: 22;
}

.revenue-donut-segment {
  fill: none;
  stroke-width: 22;
  stroke-linecap: round;
  stroke-dasharray: 0 414.69;
  transition: stroke-dasharray 900ms ease-out, stroke-dashoffset 900ms ease-out, opacity 240ms ease,
    filter 240ms ease, stroke-width 240ms ease;
  pointer-events: visibleStroke;
}

.revenue-donut-segment:hover,
.revenue-donut-segment:focus,
.revenue-donut-segment.is-active {
  opacity: 1;
  filter: drop-shadow(0 4px 10px rgba(13, 66, 95, 0.2));
  stroke-width: 26;
}

.revenue-donut.has-active .revenue-donut-segment {
  opacity: 0.28;
}

.revenue-donut.has-active .revenue-donut-segment.is-active {
  opacity: 1;
  stroke-width: 36;
  filter: drop-shadow(0 8px 16px rgba(13, 66, 95, 0.28));
}

.revenue-donut-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 4px;
  text-align: center;
  background: radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.1) 70%);
  border-radius: 50%;
  transition: transform 200ms ease, color 200ms ease;
}

:root[data-theme="dark"] .revenue-donut-center {
  background: radial-gradient(circle at 40% 30%, rgba(22, 38, 49, 0.78), rgba(0, 0, 0, 0.1) 70%);
}

.revenue-center-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.revenue-center-value {
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.revenue-center-meta {
  font-size: 12px;
  color: var(--text-muted);
}

.revenue-center-meta:empty {
  display: none;
}

.revenue-breakdown-panel {
  display: grid;
  gap: 12px;
}

.revenue-breakdown {
  display: grid;
  gap: 10px;
}

.revenue-breakdown.has-active .revenue-breakdown-row {
  opacity: 0.45;
}

.revenue-breakdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(13, 66, 95, 0.04);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: opacity 200ms ease, border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
  cursor: pointer;
}

.revenue-breakdown-row.is-active {
  opacity: 1;
  border-color: rgba(13, 66, 95, 0.3);
  box-shadow: 0 10px 20px rgba(13, 66, 95, 0.12);
  transform: translateY(-1px);
}

.revenue-breakdown-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.revenue-breakdown-values {
  display: grid;
  gap: 2px;
  text-align: right;
  font-size: 12px;
  color: var(--text-muted);
}

.revenue-breakdown-values strong {
  font-size: 14px;
  color: var(--text);
}

.revenue-breakdown-share {
  font-weight: 700;
  color: var(--text);
}


.revenue-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--rev-color);
  box-shadow: 0 0 0 3px rgba(15, 88, 123, 0.08);
  border: 2px solid color-mix(in srgb, var(--rev-color) 80%, rgba(255, 255, 255, 0.3));
}


.revenue-insight {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}
.revenue-table {
  display: grid;
  gap: 18px;
}

.revenue-row {
  display: grid;
  gap: 8px;
}

.row-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
}

.row-left img {
  width: 18px;
  height: 18px;
}

.row-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.amount {
  font-weight: 700;
}

.pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(13, 66, 95, 0.1);
  font-size: 12px;
  font-weight: 650;
}

.row-note {
  font-size: 13px;
  color: var(--text-muted);
}

.audience-section {
  gap: 16px;
}

.audience-line {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.audience-line .geo-card {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.audience-stack {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  gap: 20px;
  align-content: stretch;
}

.gender-summary {
  display: grid;
  gap: 16px;
  align-items: center;
  height: 100%;
}

.gender-split {
  display: grid;
  gap: 18px;
}

.gender-split-bar {
  height: 14px;
  border-radius: 999px;
  background: rgba(13, 66, 95, 0.08);
  display: flex;
  overflow: hidden;
}

.gender-split-segment {
  height: 100%;
  width: calc(var(--pct, 0) * 1%);
}

.gender-split-segment--female {
  background: linear-gradient(90deg, rgba(144, 222, 193, 0.95), rgba(144, 222, 193, 0.6));
}

.gender-split-segment--male {
  background: linear-gradient(90deg, rgba(13, 66, 95, 0.55), rgba(13, 66, 95, 0.35));
}

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

.gender-stat {
  border-radius: 16px;
  border: 1px solid rgba(13, 66, 95, 0.12);
  padding: 14px 16px;
  display: grid;
  gap: 8px;
  background: rgba(13, 66, 95, 0.04);
}

:root[data-theme="dark"] .gender-stat {
  background: rgba(144, 222, 193, 0.08);
  border-color: rgba(144, 222, 193, 0.22);
}

.gender-stat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.gender-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 66, 95, 0.08);
  color: var(--text);
}

:root[data-theme="dark"] .gender-icon {
  background: rgba(144, 222, 193, 0.18);
}

:root[data-theme="dark"] .gender-stat--male .gender-icon {
  background: rgba(13, 66, 95, 0.35);
}

.gender-stat--female .gender-icon {
  background: rgba(144, 222, 193, 0.2);
  color: rgba(47, 158, 119, 0.9);
}

.gender-stat--male .gender-icon {
  background: rgba(13, 66, 95, 0.12);
  color: rgba(13, 66, 95, 0.85);
}

.gender-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gender-stat-values {
  display: grid;
  gap: 4px;
}

.gender-stat-values strong {
  font-size: 26px;
  font-weight: 750;
  color: var(--text);
}

.gender-stat-count {
  font-size: 12px;
  font-weight: 650;
  color: var(--text);
}

.gender-insight {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.audience-card,
.age-card,
.geo-card {
  display: grid;
  gap: 16px;
  align-content: center;
}

.chart-axis-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bar-chart {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  align-items: end;
  gap: 18px;
  height: 210px;
  margin-top: 0;
  align-self: center;
  position: relative;
  padding-bottom: 6px;
}

.bar-chart::before {
  content: "";
  position: absolute;
  inset: 0;
  border-bottom: 1px solid rgba(13, 66, 95, 0.15);
  background-image: repeating-linear-gradient(
    to top,
    rgba(13, 66, 95, 0.08) 0,
    rgba(13, 66, 95, 0.08) 1px,
    transparent 1px,
    transparent 48px
  );
  pointer-events: none;
  z-index: 0;
}

.bar-item {
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: end;
  justify-items: center;
  height: 100%;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.bar-value {
  position: absolute;
  top: -22px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.bar {
  width: 42px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(
    180deg,
    rgba(13, 66, 95, calc(0.18 + var(--intensity, 0.4) * 0.4)),
    rgba(13, 66, 95, 0.08)
  );
  height: calc(var(--value) * 3.6px);
  position: relative;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 600ms ease, opacity 200ms ease;
  transition-delay: var(--delay, 0s);
  opacity: 0.5;
}

.bar--highlight {
  width: 48px;
  background: linear-gradient(180deg, rgba(144, 222, 193, 0.95), rgba(144, 222, 193, 0.4));
  box-shadow: 0 14px 28px rgba(13, 66, 95, 0.14);
  opacity: 1;
}

.bar-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
}

.bar-chart:hover .bar {
  opacity: 0.3;
}

.bar-chart:hover .bar-item:hover .bar,
.bar-chart:focus-within .bar-item:focus-within .bar {
  opacity: 1;
}

.age-insight {
  font-size: 13px;
  color: var(--text-muted);
}

.section-insight-line {
  font-size: 13px;
  color: var(--text);
  margin-top: 6px;
}

.growth-intro {
  margin-top: 12px;
  max-width: 100%;
  text-align: justify;
}

.growth-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.chart-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(13, 66, 95, 0.06);
  border: 1px solid rgba(13, 66, 95, 0.1);
  position: relative;
  overflow: hidden;
}

.chart-toggle::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  border-radius: 999px;
  background: rgba(144, 222, 193, 0.3);
  transform: translateX(var(--toggle-x, 0%));
  transition: transform 220ms ease, background 220ms ease;
}

.chart-toggle-button {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: color 200ms ease;
  display: grid;
  gap: 2px;
  text-align: left;
}

.chart-toggle-button.is-active {
  color: var(--text);
}

.chart-toggle-button small {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0.02em;
  display: block;
}

:root[data-theme="dark"] .chart-toggle {
  background: rgba(13, 66, 95, 0.2);
  border-color: rgba(144, 222, 193, 0.24);
}

:root[data-theme="dark"] .chart-toggle::before {
  background: rgba(144, 222, 193, 0.24);
}

.chart-toggle-button[disabled] {
  opacity: 0.5;
}

.growth-charts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
  align-items: stretch;
}

.growth-chart-card {
  display: grid;
  gap: 12px;
}

.chart-summary {
  font-size: 13px;
  color: var(--text);
  margin: 0;
}

.chart-annotation {
  margin: 6px 0 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.growth-chart-card[data-chart="gmv"] {
  --line-color: var(--navy);
}

.growth-chart-card[data-chart="orders"] {
  --line-color: var(--growth-green);
}

.line-chart {
  position: relative;
  width: 100%;
  padding-right: 80px;
  transition: opacity 200ms ease, transform 200ms ease;
}

.line-chart-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.line-chart-grid line {
  stroke: rgba(13, 66, 95, 0.04);
  stroke-width: 0.6;
}

.line-chart-tick {
  font-size: 11px;
  fill: rgba(13, 66, 95, 0.6);
  letter-spacing: 0.02em;
}

.line-chart-tick--dense {
  font-size: 10px;
  letter-spacing: 0.02em;
}

.line-path {
  fill: none;
  stroke: var(--line-color);
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dashoffset var(--reveal-transition);
  filter: drop-shadow(0 8px 14px rgba(13, 66, 95, 0.2));
}

.line-area {
  opacity: 0.6;
}

.line-chart-points {
  transform-box: fill-box;
  transform-origin: center;
}

.line-point {
  fill: var(--panel);
  stroke: var(--line-color);
  stroke-width: 3;
  cursor: pointer;
  opacity: 0;
  transform: translateY(6px);
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity 0.6s ease, transform 0.6s ease, fill 0.2s ease, stroke-width 0.2s ease, filter 0.2s ease;
  transition-delay: var(--delay, 0ms);
}

.line-label-group {
  opacity: 0;
  transform: translateY(6px);
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0ms);
  color: var(--text);
}

.line-label-text {
  font-size: 12px;
  font-weight: 700;
  fill: var(--text);
  opacity: 0.9;
}

.line-label-quarter {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  fill: var(--text-muted);
}

.line-point--final {
  stroke-width: 4;
}

.line-point.is-selected {
  stroke-width: 5;
  filter: drop-shadow(0 6px 12px rgba(13, 66, 95, 0.2));
}

.line-point.is-hovered {
  fill: var(--line-color);
  stroke-width: 5;
  filter: drop-shadow(0 8px 16px rgba(13, 66, 95, 0.25));
}

.line-point-halo {
  fill: rgba(144, 222, 193, 0.2);
  opacity: 0;
  transform: translateY(6px);
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity var(--reveal-transition), transform var(--reveal-transition);
  transition-delay: var(--delay, 0ms);
}

.chart-selection {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  font-weight: 600;
  min-height: 20px;
}

.line-chart.is-animated .line-point,
.line-chart.is-animated .line-label-group {
  opacity: 1;
  transform: translateY(0);
}

.line-chart.is-animated .line-point-halo {
  opacity: 1;
  transform: translateY(0);
}

.line-chart-axis {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(13, 66, 95, 0.6);
}

.chart-insight {
  font-size: 13px;
  color: rgba(13, 66, 95, 0.7);
  line-height: 1.5;
}

.line-chart.is-refreshing {
  opacity: 0.7;
  transform: translateY(4px);
}

.line-chart-milestone {
  stroke: rgba(13, 66, 95, 0.14);
  stroke-dasharray: 4 4;
}

.line-chart-milestone-label {
  font-size: 10px;
  fill: rgba(13, 66, 95, 0.55);
}

:root[data-theme="dark"] .growth-section {
  background: radial-gradient(circle at 12% 18%, rgba(47, 111, 158, 0.2), transparent 55%),
    radial-gradient(circle at 82% 14%, rgba(144, 222, 193, 0.14), transparent 55%);
}

:root[data-theme="dark"] .growth-chart-card[data-chart="gmv"] {
  --line-color: var(--mint);
}

:root[data-theme="dark"] .line-chart-grid line {
  stroke: rgba(144, 222, 193, 0.08);
}

:root[data-theme="dark"] .line-chart-tick {
  fill: rgba(240, 244, 248, 0.9);
}

:root[data-theme="dark"] .line-chart-axis {
  color: rgba(240, 244, 248, 0.9);
}


:root[data-theme="dark"] .chart-insight {
  color: rgba(240, 244, 248, 0.6);
}

:root[data-theme="dark"] .chart-selection {
  color: rgba(240, 244, 248, 0.75);
}

:root[data-theme="dark"] .line-path {
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.55));
}

:root[data-theme="dark"] .revenue-donut::before {
  box-shadow: inset 0 -8px 14px rgba(0, 0, 0, 0.45);
}

:root[data-theme="dark"] .revenue-donut-track {
  stroke: rgba(144, 222, 193, 0.18);
}

:root[data-theme="dark"] .bar-chart::before {
  border-bottom-color: rgba(144, 222, 193, 0.2);
  background-image: repeating-linear-gradient(
    to top,
    rgba(144, 222, 193, 0.16) 0,
    rgba(144, 222, 193, 0.16) 1px,
    transparent 1px,
    transparent 48px
  );
}

.mapWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}

.geo-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.geo-layout .mapWrap {
  grid-column: 1 / -1;
}

.region-panel {
  grid-column: span 5;
  background: rgba(13, 66, 95, 0.04);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--border);
}

.region-panel-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 650;
}

.region-list {
  list-style: none;
  display: grid;
  gap: 12px;
  font-size: 13px;
}

.region-list li {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  gap: 10px;
  align-items: center;
}

.region-chip {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(144, 222, 193, 0.5);
}

.region-value {
  font-weight: 700;
}

.region-note {
  grid-column: 2 / -1;
  font-size: 11px;
  color: var(--text-muted);
}

.saudiMap {
  width: 100%;
  height: auto;
  max-height: 420px;
  display: block;
  object-fit: contain;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 300ms ease, transform 300ms ease;
}

.country-outline {
  fill: rgba(13, 66, 95, 0.08);
  stroke: rgba(13, 66, 95, 0.25);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
  pointer-events: none;
}

.region {
  fill: rgba(47, 158, 119, var(--region-opacity, 0.14)) !important;
  stroke: rgba(16, 60, 80, 0.4);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
  cursor: pointer;
  opacity: 0;
  transition: opacity 300ms ease, fill 200ms ease, stroke 200ms ease, filter 200ms ease;
}

.region:hover,
.region:focus-visible {
  fill: rgba(47, 158, 119, 0.34);
  stroke: rgba(16, 60, 80, 0.6);
}

.region.is-active {
  fill: rgba(47, 158, 119, 0.42);
  stroke: rgba(16, 60, 80, 0.7);
  filter: drop-shadow(0 10px 18px rgba(16, 60, 80, 0.2));
}

.region.is-default {
  fill: rgba(47, 158, 119, 0.3);
  stroke: rgba(16, 60, 80, 0.55);
  filter: drop-shadow(0 8px 16px rgba(16, 60, 80, 0.12));
}

.map-caption {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.map-footer {
  display: grid;
  gap: 6px;
}

.map-micro {
  font-size: 12px;
  color: var(--text-muted);
}

.map-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.map-legend {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}

.map-legend-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.map-legend-scale {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
}

.map-legend-bar {
  width: 120px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(47, 158, 119, 0.15), rgba(47, 158, 119, 0.6));
  border: 1px solid rgba(13, 66, 95, 0.12);
}

.map-stat {
  font-size: 12px;
  color: var(--text);
}

.map-hint svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-muted);
  stroke-width: 2;
  fill: none;
  animation: pulseHint 2.4s ease-in-out infinite;
}

.map-tooltip {
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(6px);
  max-height: 0;
  overflow: hidden;
  transition: opacity 150ms ease, transform 150ms ease, max-height 150ms ease;
}

.map-tooltip.is-visible {
  opacity: 1;
  transform: translateY(0);
  max-height: 120px;
}

.map-tooltip-title {
  display: block;
  font-weight: 650;
  margin-bottom: 4px;
}

.map-tooltip-value {
  font-size: 13px;
  color: var(--text-muted);
}

.section-insight {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.tooltip-value:empty,
.tooltip-note:empty {
  display: none;
}

.feature-grid {
  position: relative;
  padding: 24px;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(135deg, rgba(144, 222, 193, 0.08), rgba(248, 174, 78, 0.04));
  border: 1px solid rgba(13, 66, 95, 0.08);
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.feature-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  overflow: visible;
  scroll-snap-type: none;
  padding: 8px 0 0;
}

.feature-track::-webkit-scrollbar {
  height: 6px;
}

.feature-track::-webkit-scrollbar-thumb {
  background: rgba(13, 66, 95, 0.2);
  border-radius: 999px;
}

.feature-card {
  --feature-accent: var(--navy);
  display: grid;
  gap: 16px;
  grid-template-rows: auto minmax(0, 1fr) auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-top: 2px solid color-mix(in srgb, var(--feature-accent) 65%, white);
  padding: 22px;
  background: var(--panel);
  box-shadow: var(--shadow);
  height: 100%;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, opacity 240ms ease;
  flex: none;
}

.carousel-btn,
.carousel-dots {
  display: none;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--feature-accent) 35%, var(--border));
  box-shadow: 0 18px 34px rgba(13, 66, 95, 0.16);
  opacity: 1;
}

.feature-card.reveal.is-visible .feature-icon {
  animation: featureIconPulse 600ms ease-out 1;
}

.feature-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  order: 1;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--feature-accent) 30%, white);
  background: linear-gradient(145deg, color-mix(in srgb, var(--feature-accent) 12%, white), #ffffff);
  display: grid;
  place-items: center;
  color: var(--feature-accent);
  flex-shrink: 0;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.feature-card:hover .feature-icon {
  border-color: color-mix(in srgb, var(--feature-accent) 55%, white);
  box-shadow: 0 8px 16px rgba(13, 66, 95, 0.12);
}

.feature-head-copy {
  display: grid;
  gap: 4px;
  flex: 1;
}

.feature-head h3 {
  font-size: 18px;
  font-weight: 650;
  color: var(--text);
}

.feature-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 0;
}

.feature-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--feature-accent) 35%, white);
  background: color-mix(in srgb, var(--feature-accent) 16%, white);
  color: color-mix(in srgb, var(--feature-accent) 70%, var(--text));
  font-weight: 600;
  align-self: flex-start;
}

.feature-card:hover .feature-tag {
  background: color-mix(in srgb, var(--feature-accent) 22%, white);
  border-color: color-mix(in srgb, var(--feature-accent) 45%, white);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--panel);
  display: grid;
  place-items: center;
  font-size: 20px;
  color: var(--text);
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  z-index: 2;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.05);
  border-color: rgba(13, 66, 95, 0.25);
  box-shadow: 0 10px 18px rgba(13, 66, 95, 0.12);
}

.carousel-btn[data-carousel="prev"] {
  left: 8px;
}

.carousel-btn[data-carousel="next"] {
  right: 8px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(13, 66, 95, 0.2);
  cursor: pointer;
}

.carousel-dot.is-active {
  background: var(--mint);
  transform: scale(1.2);
}

.feature-body {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.5;
  order: 2;
}

.feature-impact {
  display: grid;
  gap: 4px;
  padding-left: 12px;
  border-left: 2px solid color-mix(in srgb, var(--feature-accent) 55%, white);
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
  order: 3;
}

.feature-impact span {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.feature-impact p {
  margin: 0;
  color: color-mix(in srgb, var(--text) 80%, white);
  font-weight: 500;
}

.feature-card .image-card {
  margin-top: auto;
  order: 4;
}

.image-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(13, 66, 95, 0.08);
  box-shadow: var(--shadow);
  height: 100%;
}

.image-frame {
  position: relative;
  width: 100%;
  background: rgba(13, 66, 95, 0.06);
  flex: 1;
  min-height: 180px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 800ms ease;
}

.feature-card .image-frame {
  background: rgba(13, 66, 95, 0.04);
  border: 1px solid rgba(13, 66, 95, 0.08);
  border-radius: 16px;
  padding: 8px;
  min-height: 150px;
  position: relative;
}

.feature-card .image-frame::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 20px;
  background: radial-gradient(circle at top, color-mix(in srgb, var(--feature-accent) 12%, transparent), transparent 65%);
  opacity: 0.6;
  z-index: 0;
}

.feature-card .image-frame img {
  object-fit: contain;
  position: relative;
  z-index: 1;
  border-radius: 12px;
  border: 1px solid rgba(13, 66, 95, 0.12);
}

.feature-card.reveal.is-visible .image-frame img {
  transform: scale(1);
}

.feature-card:hover .image-frame img {
  transform: scale(1.04);
}

.image-card figcaption {
  padding: 10px 12px 12px;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 650;
}

.image-card.is-missing img {
  display: none;
}

.image-card.is-missing .image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 66, 95, 0.08) 0%, rgba(13, 66, 95, 0.16) 50%, rgba(13, 66, 95, 0.08) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.6s ease-in-out infinite;
}

.ratio-16-9 {
  aspect-ratio: 16 / 9;
}

.feature-close {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
}

.wiser-section {
  --wiser-radius: 18px;
  background: var(--bg);
}

.wiser-section .container {
  max-width: 1200px;
}

.wiser-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: start;
}

.wiser-hero-copy {
  display: grid;
  gap: 16px;
}

.wiser-hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.wiser-logo {
  width: 48px;
  height: 20px;
  object-fit: contain;
}

.wiser-hero-copy h1 {
  margin-bottom: 0;
}

.wiser-hero-narrative {
  display: grid;
  gap: 8px;
  color: var(--text-muted);
  font-size: 16px;
}

.wiser-cta-pill {
  align-self: flex-start;
  border-radius: 999px;
  border: 1px solid rgba(13, 66, 95, 0.2);
  background: rgba(13, 66, 95, 0.08);
  color: var(--navy);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 12px 24px rgba(13, 66, 95, 0.12);
  animation: wiserGlowPulse 3.8s ease-in-out infinite;
}

.wiser-kpi-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.wiser-kpi-chip {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--panel);
  display: grid;
  gap: 6px;
  box-shadow: var(--shadow);
}

.wiser-kpi-chip span {
  font-size: 12px;
  color: var(--text-muted);
}

.wiser-kpi-chip strong {
  font-size: 18px;
  color: var(--text);
}

.wiser-deliver-block {
  border-top: 1px solid var(--border);
  padding-top: 12px;
  display: grid;
  gap: 8px;
}

.wiser-deliver-block h2 {
  font-size: 18px;
  margin: 0;
}

.wiser-deliver-block ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
  display: grid;
  gap: 6px;
  font-size: 14px;
}

.wiser-deliver-block strong {
  color: var(--text);
}

.wiser-cta-buttons {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wiser-btn {
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.wiser-btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 14px 26px rgba(13, 66, 95, 0.18);
}

.wiser-btn-secondary {
  border: 1px solid rgba(13, 66, 95, 0.2);
  color: var(--navy);
  background: rgba(13, 66, 95, 0.04);
}

.wiser-btn:hover {
  transform: translateY(-2px);
}

.wiser-hero-media {
  display: grid;
  gap: 12px;
  align-content: start;
}

.wiser-device-frame {
  position: relative;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(13, 66, 95, 0.2);
  background: linear-gradient(135deg, rgba(13, 66, 95, 0.12), rgba(144, 222, 193, 0.22));
  box-shadow: 0 18px 32px rgba(13, 66, 95, 0.16);
  display: grid;
  place-items: center;
}

.wiser-device-frame.is-missing::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(13, 66, 95, 0.1) 0%, rgba(13, 66, 95, 0.2) 50%, rgba(13, 66, 95, 0.1) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.6s ease-in-out infinite;
}

.wiser-live-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(13, 66, 95, 0.2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}

.wiser-hero-gif,
.wiser-secondary-gif {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  image-rendering: auto;
}

.wiser-hero-caption {
  font-size: 13px;
  color: var(--text-muted);
}

.wiser-secondary-demo {
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(13, 66, 95, 0.16);
  background: rgba(13, 66, 95, 0.04);
}

.wiser-secondary-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.wiser-capabilities {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.wiser-block-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}

.wiser-block-heading p {
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 6px;
}

.wiser-tabs {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.wiser-tabs-controls {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
}

.wiser-tab {
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: border-color 220ms ease, background 220ms ease, color 220ms ease, transform 220ms ease;
}

.wiser-tab.is-active {
  border-color: color-mix(in srgb, var(--navy) 40%, var(--border));
  background: rgba(13, 66, 95, 0.08);
  color: var(--navy);
}

.wiser-tab:focus-visible,
.wiser-cta-pill:focus-visible,
.wiser-ask-pill:focus-visible,
.wiser-accordion-toggle:focus-visible,
.wiser-ask-lang:focus-visible {
  outline: 2px solid rgba(13, 66, 95, 0.4);
  outline-offset: 2px;
}

.wiser-tab-panels {
  display: grid;
  position: relative;
}

.wiser-tab-panel {
  grid-area: 1 / 1;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border-radius: var(--wiser-radius);
  border: 1px solid rgba(13, 66, 95, 0.16);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 24px rgba(13, 66, 95, 0.08);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 360ms ease, transform 360ms ease;
  pointer-events: none;
  visibility: hidden;
}

.wiser-tab-panel.is-active {
  display: grid;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.wiser-tab-media {
  border-radius: 14px;
  border: 1px solid rgba(13, 66, 95, 0.18);
  background: rgba(13, 66, 95, 0.04);
  padding: 10px;
  display: grid;
  place-items: center;
}

.wiser-tab-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.wiser-tab-copy ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
  line-height: 1.5;
  font-size: 14px;
  display: grid;
  gap: 6px;
}

.wiser-tab-outcome {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.wiser-tab-outcome span {
  display: inline-block;
  margin-right: 6px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  color: var(--text-muted);
}

@keyframes wiserTabFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wiser-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.wiser-capability-card {
  padding: 18px;
  border-radius: var(--wiser-radius);
  border: 1px solid rgba(13, 66, 95, 0.16);
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  gap: 10px;
  box-shadow: 0 12px 24px rgba(13, 66, 95, 0.08);
  min-height: 210px;
  align-content: start;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.wiser-capability-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(13, 66, 95, 0.14);
}

.wiser-capability-card h3 {
  font-size: 18px;
  margin: 0;
}

.wiser-capability-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(13, 66, 95, 0.2);
  background: rgba(13, 66, 95, 0.06);
  display: grid;
  place-items: center;
  color: var(--navy);
}

.wiser-capability-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wiser-capability-media {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(13, 66, 95, 0.18);
  background: rgba(13, 66, 95, 0.04);
  padding: 8px;
  box-shadow: 0 8px 18px rgba(13, 66, 95, 0.12);
}

.wiser-capability-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.wiser-capability-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
  line-height: 1.5;
  font-size: 14px;
  display: grid;
  gap: 4px;
}

.wiser-capability-outcome {
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(13, 66, 95, 0.12);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.wiser-capability-outcome span {
  display: inline-block;
  margin-right: 6px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  color: var(--text-muted);
}

.wiser-ask-block {
  margin-top: 26px;
  padding: 20px;
  border-radius: var(--wiser-radius);
  border: 1px solid rgba(13, 66, 95, 0.2);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 30px rgba(13, 66, 95, 0.1);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.wiser-ask-copy,
.wiser-ask-visual {
  min-width: 0;
}

.wiser-ask-visual {
  display: grid;
  gap: 16px;
}

.wiser-ask-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-top: 12px;
}

.wiser-gif-card {
  display: grid;
  gap: 10px;
  width: min(420px, 100%);
}

.wiser-gif-media {
  background: rgba(13, 66, 95, 0.06);
  border-radius: var(--wiser-radius);
  padding: 12px;
  border: 1px solid rgba(13, 66, 95, 0.16);
  display: grid;
  place-items: center;
}

.wiser-gif-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.wiser-gif-card {
  margin: 0;
  width: 100%;
}

.wiser-gif-media {
  width: 100%;
  max-width: 100%;
  max-height: none;
  border-radius: 16px;
  border: 1px solid rgba(13, 66, 95, 0.18);
  background: rgba(13, 66, 95, 0.04);
  overflow: hidden;
  position: relative;
  display: grid;
  place-items: center;
}

.wiser-gif-media img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.wiser-gif-caption {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

.wiser-gif-card.is-missing img {
  display: none;
}

.wiser-gif-card.is-missing .wiser-gif-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 66, 95, 0.08) 0%, rgba(13, 66, 95, 0.16) 50%, rgba(13, 66, 95, 0.08) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.6s ease-in-out infinite;
}

.wiser-ask-subtitle {
  font-size: 17px;
  font-weight: 600;
  margin: 8px 0 8px;
}

.wiser-ask-toggle {
  display: inline-flex;
  gap: 8px;
  margin: 8px 0 12px;
}

.wiser-ask-lang {
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.wiser-ask-lang.is-active {
  border-color: rgba(13, 66, 95, 0.4);
  background: rgba(13, 66, 95, 0.08);
  color: var(--navy);
}

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

.wiser-ask-pill {
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.wiser-ask-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(13, 66, 95, 0.12);
}

.wiser-ask-pill.is-active {
  border-color: rgba(13, 66, 95, 0.4);
  box-shadow: 0 10px 18px rgba(13, 66, 95, 0.12);
}

.wiser-answer-card {
  border-radius: 16px;
  border: 1px solid rgba(13, 66, 95, 0.18);
  background: rgba(13, 66, 95, 0.04);
  padding: 16px;
  display: grid;
  gap: 8px;
}

.wiser-answer-card[dir="rtl"] {
  text-align: right;
}

.wiser-answer-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.wiser-answer-prompt {
  font-weight: 600;
  margin: 0;
}

.wiser-answer-text {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.wiser-ask-preview {
  margin: 0;
  border-radius: 16px;
  border: 1px solid rgba(13, 66, 95, 0.18);
  background: rgba(13, 66, 95, 0.04);
  padding: 10px;
}

.wiser-ask-preview img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.wiser-ask-pills[dir="rtl"] {
  text-align: right;
}

.wiser-accordion {
  margin-top: 26px;
  display: grid;
  gap: 12px;
}

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

.wiser-accordion-item {
  border-radius: var(--wiser-radius);
  border: 1px solid rgba(13, 66, 95, 0.16);
  background: rgba(255, 255, 255, 0.92);
  overflow: hidden;
}

.wiser-accordion-toggle {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  background: transparent;
  cursor: pointer;
}

.wiser-accordion-item.is-open .wiser-accordion-toggle {
  color: var(--navy);
  background: rgba(13, 66, 95, 0.04);
}

.wiser-accordion-panel {
  display: none;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 16px;
  padding: 0 16px 16px;
  color: var(--text-muted);
  font-size: 14px;
}

.wiser-accordion-item.is-open .wiser-accordion-panel {
  display: grid;
}

.wiser-accordion-panel ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.wiser-accordion-preview {
  border-radius: 14px;
  border: 1px solid rgba(13, 66, 95, 0.18);
  background: rgba(13, 66, 95, 0.04);
  padding: 8px;
}

.wiser-accordion-preview img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.wiser-ask-note {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.wiser-ask-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
  display: grid;
  gap: 6px;
  font-size: 14px;
}

.wiser-insights,
.wiser-support {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

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

.wiser-insight-card {
  border-radius: var(--wiser-radius);
  border: 1px solid rgba(13, 66, 95, 0.16);
  background: rgba(255, 255, 255, 0.92);
  padding: 16px;
  display: grid;
  gap: 10px;
  box-shadow: 0 12px 24px rgba(13, 66, 95, 0.08);
}

.wiser-insight-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.wiser-insight-media {
  border-radius: 14px;
  border: 1px solid rgba(13, 66, 95, 0.18);
  background: rgba(13, 66, 95, 0.04);
  padding: 10px;
  box-shadow: 0 8px 18px rgba(13, 66, 95, 0.12);
}

.wiser-insight-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.wiser-support-media {
  width: min(520px, 100%);
  border-radius: 16px;
  border: 1px solid rgba(13, 66, 95, 0.18);
  background: rgba(13, 66, 95, 0.04);
  padding: 12px;
  box-shadow: 0 12px 24px rgba(13, 66, 95, 0.12);
}

.wiser-support-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 12px;
}

.wiser-flow {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}

.wiser-flow-header {
  display: grid;
  gap: 6px;
}

.wiser-flow-header p {
  color: var(--text-muted);
  margin: 0;
}

.wiser-gallery {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.wiser-gallery-header {
  display: grid;
  gap: 6px;
}

.wiser-gallery-header p {
  color: var(--text-muted);
  margin: 0;
}

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

.wiser-gallery-card {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 16px;
  display: grid;
  gap: 12px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.wiser-gallery-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--wiser-accent) 45%, var(--border));
  box-shadow: 0 18px 32px rgba(13, 66, 95, 0.18), 0 0 18px rgba(144, 222, 193, 0.2);
}

.wiser-gallery-media {
  border-radius: 14px;
  border: 1px solid rgba(13, 66, 95, 0.12);
  background: rgba(13, 66, 95, 0.05);
  padding: 10px;
  display: grid;
  place-items: center;
}

.wiser-gallery-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.wiser-gallery-body h3 {
  margin: 0;
  font-size: 16px;
}

.wiser-gallery-body p {
  margin: 4px 0 0;
  color: var(--text-muted);
  font-size: 13px;
}

.wiser-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 24, 33, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
  z-index: 40;
}

.wiser-lightbox.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.wiser-lightbox-content {
  background: var(--panel);
  border-radius: 20px;
  padding: 20px;
  max-width: 880px;
  width: min(92vw, 880px);
  box-shadow: 0 24px 48px rgba(13, 66, 95, 0.2);
  display: grid;
  gap: 16px;
}

.wiser-lightbox-close {
  justify-self: flex-end;
  border: none;
  background: rgba(13, 66, 95, 0.1);
  color: var(--navy);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
}

.wiser-lightbox-figure {
  margin: 0;
  display: grid;
  gap: 12px;
}

.wiser-lightbox-figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.wiser-lightbox-figure figcaption {
  color: var(--text-muted);
  font-size: 13px;
}

.reveal.reveal-scale {
  transform: scale(0.96);
}

.reveal.reveal-scale.is-visible {
  transform: scale(1);
}

.print-only {
  display: none;
}

@keyframes wiserGlowPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(13, 66, 95, 0.2);
  }
  50% {
    box-shadow: 0 0 18px rgba(144, 222, 193, 0.35);
  }
}

@keyframes signalPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(13, 66, 95, 0.16);
  }
  50% {
    box-shadow: 0 0 12px rgba(13, 66, 95, 0.2);
  }
}

@keyframes flowDots {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 40px 0;
  }
}

@keyframes featureIconPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes pulseHint {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.ratio-4-3 {
  aspect-ratio: 4 / 3;
}

.ratio-3-2 {
  aspect-ratio: 3 / 2;
}

.ratio-1-1 {
  aspect-ratio: 1 / 1;
}

.storybook {
  display: grid;
  gap: 28px;
}

.story-section {
  display: grid;
  gap: 18px;
  border-radius: 0;
  border: none;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.story-copy {
  display: grid;
  gap: 12px;
}

.story-copy h3 {
  font-size: 16px;
}

.story-subhead {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.story-media {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  align-items: stretch;
}

.story-media--partners {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.story-media--partners .image-card {
  height: 100%;
}

.story-media .image-card {
  position: relative;
}

.story-media .image-card::before {
  content: "Example";
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(13, 66, 95, 0.08);
  color: var(--text-muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  z-index: 2;
}

.partner-card .image-frame {
  background: rgba(13, 66, 95, 0.04);
}

.partner-card img {
  object-fit: contain;
}

.partner-card {
  display: grid;
  gap: 10px;
  height: 100%;
  grid-template-rows: auto 1fr;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.program-card {
  display: grid;
  gap: 12px;
  align-items: start;
  height: 100%;
  grid-template-rows: auto 1fr;
}

.program-text {
  display: grid;
  gap: 8px;
}

.program-card .image-card {
  width: 100%;
}

.exhibitions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.exhibition-card {
  display: grid;
  gap: 12px;
  align-items: start;
  height: 100%;
  grid-template-rows: auto 1fr;
}

.exhibition-card .image-card {
  min-height: 240px;
  height: 100%;
}

.exhibition-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.exhibition-copy h3 {
  min-height: 2.4em;
}

.exhibition-copy p {
  margin-top: 0;
  max-width: none;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.45;
}

.kpi-growth {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 140px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #158f56;
  background: rgba(72, 207, 138, 0.25);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 240ms ease, transform 240ms ease;
  align-self: end;
  justify-self: start;
}

:root[data-theme="dark"] .kpi-growth {
  color: #7fe7b9;
  background: rgba(127, 231, 185, 0.22);
}

.reveal.is-visible .kpi-growth {
  opacity: 0.9;
  transform: translateY(0);
}

.kpi-growth--placeholder {
  opacity: 0 !important;
  transform: translateY(0);
}

.kpi-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(13, 66, 95, 0.2);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  margin-left: 8px;
  cursor: pointer;
  background: transparent;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}

.kpi-info:hover,
.kpi-info:focus-visible {
  color: var(--text);
  border-color: rgba(13, 66, 95, 0.4);
  background: rgba(13, 66, 95, 0.06);
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.numa {
  background: var(--numa-bg);
}

.theme-numa {
  --numa-primary: #563174;
  --numa-accent: #e9accd;
  --numa-bg: #f8f6fb;
  --numa-card: #ffffff;
  --numa-border: rgba(86, 49, 116, 0.18);
  --numa-text: #2f1b41;
  --numa-muted: rgba(47, 27, 65, 0.78);
  --numa-shadow: 0 16px 32px rgba(86, 49, 116, 0.12);
  color: var(--numa-text);
}

.theme-numa .chapter-header {
  position: relative;
  padding-left: 18px;
}

.theme-numa .chapter-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--numa-primary), rgba(86, 49, 116, 0.2));
}

.numa-logo img {
  width: 200px;
}

.theme-numa .kpi-card {
  background: var(--numa-card);
  border-color: var(--numa-border);
  text-align: left;
  box-shadow: var(--numa-shadow);
}

.theme-numa .kpi-card:hover {
  border-color: var(--numa-border);
  transform: none;
  box-shadow: var(--numa-shadow);
}

.theme-numa .kpi-card:focus-within {
  outline: none;
  box-shadow: 0 0 0 3px rgba(86, 49, 116, 0.35), var(--numa-shadow);
}

.theme-numa .numa-chip {
  background: color-mix(in srgb, var(--numa-accent) 20%, white);
  border-color: color-mix(in srgb, var(--numa-accent) 40%, white);
}

.numa-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.numa-kpis .kpi-card {
  padding: 24px;
  gap: 18px;
  min-height: 220px;
  align-items: start;
  height: 100%;
  cursor: default;
}

.numa-kpi-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.numa-kpis .kpi-value-row {
  justify-content: flex-start;
  padding-top: 0;
  margin-bottom: 8px;
}

.theme-numa .kpi-value {
  color: var(--numa-text);
}

.numa-kpis .kpi-label {
  color: var(--numa-text);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
}

.numa-kpis .kpi-context {
  color: var(--numa-muted);
  -webkit-line-clamp: unset;
  min-height: 0;
}

.theme-numa .icon-chip {
  width: 40px;
  height: 40px;
  box-shadow: none;
  background: color-mix(in srgb, var(--numa-accent) 18%, white);
  border: 1px solid color-mix(in srgb, var(--numa-accent) 40%, white);
  color: var(--numa-primary);
}

.theme-numa .kpi-value--currency .riyal-amount {
  align-items: baseline;
}

.theme-numa .kpi-value--currency .currency-icon {
  opacity: 0.65;
}

.theme-numa .kpi-value--currency .sar-icon {
  width: 18px;
  height: 18px;
}

.theme-numa .kpi-value--currency .riyal-amount-value {
  letter-spacing: -0.02em;
}

.theme-numa .icon-chip svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.6;
}

.theme-numa .kpi-card--monetary {
  background: var(--numa-card);
  border-color: var(--numa-border);
}

.theme-numa .kpi-growth {
  color: var(--numa-primary);
  background: color-mix(in srgb, var(--numa-accent) 30%, white);
}

.numa-meta {
  margin: 4px 0 18px;
  font-size: 13px;
  color: var(--text-muted);
}

.numa-gallery-header {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.numa-gallery-header p {
  font-size: 13px;
  color: var(--numa-muted);
}

.numa-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.numa-gallery-feature {
  grid-column: span 2;
}

.numa-gallery .image-card {
  transition: transform 240ms ease, box-shadow 240ms ease;
  height: 100%;
}

.numa-gallery .image-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 18px 36px rgba(13, 66, 95, 0.18);
}

.numa-gallery .image-frame {
  flex: none;
}

.numa-gallery .image-frame img {
  object-position: center;
}

.logo-card img {
  object-fit: contain;
  padding: 12px;
}

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

.focus-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.partner-logo {
  display: flex;
  align-items: center;
  margin: 16px 0 6px;
}

.partner-logo img {
  height: 24px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.7;
}

.closing-line {
  margin-top: 32px;
  font-size: 18px;
  font-weight: 600;
}

.site-footer {
  padding: 40px 0 80px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.tooltip {
  --tooltip-accent: var(--navy);
  position: absolute;
  background: #ffffff;
  border: 1px solid rgba(13, 66, 95, 0.16);
  border-left: 4px solid var(--tooltip-accent);
  border-radius: 14px;
  padding: 10px 12px;
  max-width: 260px;
  box-shadow: var(--shadow);
  color: var(--text);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 40;
}

.tooltip[aria-hidden="false"] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.tooltip-content {
  display: grid;
  gap: 4px;
}

.tooltip-title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 650;
  margin-bottom: 4px;
}

.tooltip-title::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tooltip-accent);
}

.tooltip-value {
  font-size: 13px;
  margin-bottom: 4px;
}

.tooltip-note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.toc-sheet {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
  z-index: 45;
}

.toc-sheet.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.toc-sheet-content {
  background: var(--panel);
  border-radius: 18px 18px 0 0;
  width: min(100%, 560px);
  padding: 20px 24px 28px;
  box-shadow: var(--shadow);
}

.toc-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 16px;
}

.toc-sheet-close {
  border: none;
  background: rgba(13, 66, 95, 0.1);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
}

.toc-sheet-links {
  display: grid;
  gap: 12px;
}

.toc-sheet-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.toc-sheet-links a:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.toc-sheet-links a.is-active {
  color: var(--navy);
  font-weight: 700;
}

body.toc-sheet-open {
  overflow: hidden;
}

.mobile-sheet {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
  z-index: 50;
}

.mobile-sheet.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.sheet-content {
  background: var(--panel);
  border-radius: 18px 18px 0 0;
  width: 100%;
  padding: 20px 24px 32px;
  box-shadow: var(--shadow);
}

.sheet-close {
  border: none;
  background: rgba(13, 66, 95, 0.1);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  margin-bottom: 12px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--reveal-transition), transform var(--reveal-transition);
  transition-delay: var(--delay, 0ms);
}

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

.reveal.is-visible .bar {
  transform: scaleY(1);
}

.reveal.is-visible .region {
  opacity: 1;
}

.reveal.is-visible .saudiMap {
  opacity: 1;
  transform: scale(1);
}

.wiser-section {
  --wiser-accent: var(--mint);
  padding: 34px 0 32px;
  color: #f4f8fb;
  background: radial-gradient(circle at 20% 0%, rgba(144, 222, 193, 0.18), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(144, 222, 193, 0.12), transparent 50%),
    linear-gradient(135deg, #071a27 0%, #0c2c40 45%, #123a4b 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

:root[data-theme="dark"] .wiser-section {
  background: radial-gradient(circle at 20% 0%, rgba(144, 222, 193, 0.2), transparent 46%),
    radial-gradient(circle at 80% 20%, rgba(144, 222, 193, 0.15), transparent 52%),
    linear-gradient(135deg, #06131d 0%, #0a2434 45%, #102f3c 100%);
}

.wiser-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.2'/%3E%3C/svg%3E");
  opacity: 0.1;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.wiser-section::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--bg) 80%);
  pointer-events: none;
}

.wiser-section .container {
  position: relative;
  z-index: 1;
}

.wiser-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  gap: 32px;
  align-items: start;
}

.wiser-header {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.wiser-hero-left {
  display: grid;
  gap: 16px;
  grid-column: 1 / 2;
  grid-row: 3 / 4;
  align-self: start;
}

.wiser-header {
  display: grid;
  gap: 10px;
  max-width: 720px;
}

.wiser-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(244, 248, 251, 0.72);
}

.wiser-header h1 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.02;
  font-weight: 800;
}

.wiser-tagline {
  font-size: 18px;
  color: rgba(244, 248, 251, 0.78);
}

.wiser-divider {
  height: 1px;
  width: min(640px, 100%);
  background: linear-gradient(90deg, transparent, rgba(144, 222, 193, 0.35), transparent);
}

.wiser-divider--hero {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.wiser-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  position: relative;
  isolation: isolate;
}

.wiser-pillars::before {
  content: "";
  position: absolute;
  inset: -24px -12px;
  background: linear-gradient(120deg, rgba(144, 222, 193, 0.12), transparent 50%),
    radial-gradient(circle at 60% 40%, rgba(144, 222, 193, 0.12), transparent 60%);
  opacity: 0.6;
  filter: blur(8px);
  animation: wiserWaveBg 8s ease-in-out infinite;
  z-index: 0;
}

.wiser-card {
  position: relative;
  padding: 20px 22px;
  border-radius: 18px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(8, 22, 32, 0.95), rgba(8, 22, 32, 0.75), rgba(9, 30, 42, 0.82));
  background-size: 200% 200%;
  backdrop-filter: blur(14px);
  display: grid;
  gap: 10px;
  min-height: 190px;
  box-shadow: 0 18px 34px rgba(5, 18, 26, 0.38), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 400ms ease, box-shadow 400ms ease, border-color 400ms ease, background 400ms ease;
  animation: wiserCardFlow 18s ease-in-out infinite;
  cursor: pointer;
  z-index: 1;
}

.wiser-card:hover {
  transform: translateY(-6px);
  border-color: rgba(144, 222, 193, 0.55);
  box-shadow: 0 24px 46px rgba(5, 18, 26, 0.55), inset 0 0 0 1px rgba(144, 222, 193, 0.2),
    inset 0 0 22px rgba(144, 222, 193, 0.18);
  background: linear-gradient(140deg, rgba(16, 38, 52, 0.9), rgba(11, 30, 42, 0.7));
}

.wiser-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(120deg, rgba(144, 222, 193, 0.4), rgba(65, 135, 172, 0.25), transparent 70%);
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
}

.wiser-card:hover::before {
  opacity: 1;
}

.wiser-card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(144, 222, 193, 0.45), 0 24px 46px rgba(5, 18, 26, 0.5);
}

.wiser-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(144, 222, 193, 0.3);
  background: rgba(12, 36, 52, 0.6);
  display: grid;
  place-items: center;
  transition: transform 400ms ease, box-shadow 400ms ease, background 400ms ease;
  position: relative;
}

.wiser-card:hover .wiser-card-icon {
  transform: translateY(-2px);
  box-shadow: 0 0 14px rgba(144, 222, 193, 0.4);
  background: rgba(16, 46, 64, 0.75);
}

.wiser-card-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: rgba(244, 248, 251, 0.9);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 400ms ease;
}

.wiser-card:hover .wiser-card-icon svg {
  transform: rotate(-8deg) scale(1.08);
}

.wiser-card-icon::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 14px;
  background: radial-gradient(circle, rgba(144, 222, 193, 0.28), transparent 70%);
  opacity: 0;
  transition: opacity 400ms ease;
  z-index: -1;
}

.wiser-card:hover .wiser-card-icon::after {
  opacity: 1;
}

.wiser-card--signal .wiser-icon--signal path {
  stroke-dasharray: 18;
  animation: wiserWave 3.2s ease-in-out infinite;
}

.wiser-card--signal .wiser-icon--signal path:nth-of-type(2) {
  animation-delay: 200ms;
}

.wiser-card--signal .wiser-icon--signal path:nth-of-type(3) {
  animation-delay: 400ms;
}

.wiser-card--guided .wiser-icon--guided {
  animation: wiserNudge 2.6s ease-in-out infinite;
}

.wiser-card--impact .wiser-icon--impact {
  animation: wiserLoop 4s ease-in-out infinite;
  transform-origin: 50% 50%;
}

.wiser-card h3 {
  font-size: 18px;
}

.wiser-card-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(144, 222, 193, 0.85);
}


.wiser-card p {
  font-size: 14px;
  color: rgba(244, 248, 251, 0.84);
}

.wiser-card-insight {
  font-size: 12px;
  color: rgba(244, 248, 251, 0.78);
  opacity: 0;
  transform: translateY(6px);
  max-height: 0;
  transition: opacity 300ms ease, transform 300ms ease, max-height 300ms ease;
}

.wiser-card:hover .wiser-card-insight,
.wiser-card:focus-visible .wiser-card-insight {
  opacity: 1;
  transform: translateY(0);
  max-height: 40px;
}

.wiser-card-progress {
  margin-top: auto;
  height: 4px;
  border-radius: 999px;
  background: rgba(144, 222, 193, 0.2);
  overflow: hidden;
}

.wiser-card-progress span {
  display: block;
  height: 100%;
  border-radius: 999px;
  width: 40%;
  background: linear-gradient(90deg, rgba(144, 222, 193, 0.9), rgba(144, 222, 193, 0.4));
  animation: wiserProgress 2.4s ease-in-out infinite;
}

.wiser-cta-stack {
  display: grid;
  gap: 12px;
}

.wiser-hero-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(144, 222, 193, 0.82);
}

.wiser-hero-line {
  font-size: 18px;
  font-weight: 600;
  color: rgba(244, 248, 251, 0.88);
}

.wiser-cta-pill {
  justify-self: start;
  border-radius: 999px;
  border: 1px solid rgba(144, 222, 193, 0.55);
  background: radial-gradient(circle at 20% 20%, rgba(144, 222, 193, 0.3), rgba(7, 24, 34, 0.6));
  color: #eafaf2;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 26px;
  min-width: 220px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 18px 32px rgba(6, 24, 34, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  transition: transform 400ms ease, box-shadow 400ms ease, border-color 400ms ease;
}

.wiser-cta-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(144, 222, 193, 0.85);
  box-shadow: 0 24px 40px rgba(6, 24, 34, 0.6);
}

.wiser-cta-pill::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -60%;
  width: 120%;
  height: 180%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  opacity: 0;
  transform: translateX(-30%);
  transition: opacity 300ms ease;
}

.wiser-cta-pill:hover::after {
  opacity: 1;
  animation: wiserShimmer 1.2s ease-in-out;
}

.wiser-cta-live {
  display: inline-block;
  margin-right: 10px;
  color: rgba(144, 222, 193, 0.95);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  animation: wiserLivePulse 2.4s ease-in-out infinite;
}

.wiser-cta-hint {
  display: inline-block;
  font-size: 12px;
  color: rgba(244, 248, 251, 0.7);
}

.wiser-cta-secondary {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(144, 222, 193, 0.9);
  text-decoration: none;
  transition: color 300ms ease;
}

.wiser-cta-secondary:hover {
  color: #eafaf2;
}

.wiser-hero-media {
  display: grid;
  justify-items: center;
  position: relative;
  margin-top: 0;
  grid-column: 2 / 3;
  grid-row: 3 / 4;
  align-self: start;
}

.wiser-hero-media::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(144, 222, 193, 0.35), transparent 70%);
  top: -30px;
  right: -40px;
  z-index: 0;
  filter: blur(10px);
}

.wiser-device-frame {
  position: relative;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(144, 222, 193, 0.4);
  background: linear-gradient(140deg, rgba(8, 24, 34, 0.9), rgba(17, 58, 77, 0.8));
  box-shadow: 0 22px 40px rgba(6, 24, 34, 0.45);
  display: grid;
  place-items: center;
  max-width: 470px;
  overflow: hidden;
  z-index: 1;
}

.wiser-device-frame > * {
  position: relative;
  z-index: 1;
}

.wiser-device-frame::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(144, 222, 193, 0.18), transparent 60%);
  animation: wiserAmbient 6s ease-in-out infinite;
  pointer-events: none;
}

.wiser-device-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid rgba(144, 222, 193, 0.2);
  opacity: 0.4;
  animation: wiserDevicePulse 5s ease-in-out infinite;
  pointer-events: none;
}

.wiser-hero-gif {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
}

.wiser-live-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(9, 30, 40, 0.9);
  border: 1px solid rgba(144, 222, 193, 0.55);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #eafaf2;
}

.wiser-typing-indicator {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(9, 30, 40, 0.75);
  border: 1px solid rgba(144, 222, 193, 0.4);
  z-index: 1;
}

.wiser-typing-indicator span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(144, 222, 193, 0.9);
  animation: wiserTyping 1.4s ease-in-out infinite;
}

.wiser-typing-indicator span:nth-child(2) {
  animation-delay: 200ms;
}

.wiser-typing-indicator span:nth-child(3) {
  animation-delay: 400ms;
}

.wiser-loop-strip {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(144, 222, 193, 0.2);
  background: rgba(8, 24, 34, 0.55);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.wiser-loop-strip::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1px;
  background: linear-gradient(90deg, rgba(144, 222, 193, 0.1), rgba(144, 222, 193, 0.5), rgba(144, 222, 193, 0.1));
  top: 50%;
  transform: translateY(-50%);
}

.wiser-loop-strip::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(144, 222, 193, 0.9);
  box-shadow: 0 0 10px rgba(144, 222, 193, 0.7);
  top: 50%;
  transform: translate(-50%, -50%);
  animation: wiserLoopDot 4.8s linear infinite;
}

.wiser-loop-step {
  position: relative;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(144, 222, 193, 0.35);
  background: rgba(9, 28, 40, 0.75);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 1;
}

.wiser-loop-caption {
  margin-left: auto;
  font-size: 12px;
  color: rgba(244, 248, 251, 0.7);
  z-index: 1;
}

.wiser-proof-bar {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: rgba(244, 248, 251, 0.9);
}

.wiser-proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.wiser-proof-icon {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  border: 1px solid rgba(144, 222, 193, 0.3);
  display: grid;
  place-items: center;
  background: rgba(9, 28, 40, 0.6);
}

.wiser-proof-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: rgba(244, 248, 251, 0.8);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wiser-proof-label {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 248, 251, 0.65);
  opacity: 0;
  transition: opacity 200ms ease;
  white-space: nowrap;
  pointer-events: none;
}

.wiser-proof-item:hover .wiser-proof-label {
  opacity: 1;
}

.wiser-proof-item strong {
  font-size: 22px;
  color: #eafaf2;
  line-height: 1;
}

.wiser-proof-divider {
  width: 1px;
  height: 28px;
  background: rgba(144, 222, 193, 0.35);
}

@keyframes wiserGlow {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.02);
  }
}

@keyframes wiserWave {
  0%,
  100% {
    stroke-dashoffset: 24;
    opacity: 0.6;
  }
  50% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes wiserNudge {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(2px);
  }
}

@keyframes wiserLoop {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(8deg);
  }
}

@keyframes wiserAmbient {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.02);
  }
}

@keyframes wiserDevicePulse {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.65;
  }
}

@keyframes wiserTyping {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-2px);
    opacity: 1;
  }
}

@keyframes wiserLivePulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes wiserProgress {
  0%,
  100% {
    width: 35%;
    opacity: 0.7;
  }
  50% {
    width: 80%;
    opacity: 1;
  }
}

@keyframes wiserDotPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes wiserLoopDot {
  0% {
    left: 12%;
  }
  50% {
    left: 88%;
  }
  100% {
    left: 12%;
  }
}

@keyframes wiserWaveBg {
  0%,
  100% {
    opacity: 0.45;
    transform: translateY(0);
  }
  50% {
    opacity: 0.7;
    transform: translateY(-6px);
  }
}

@keyframes wiserCardFlow {
  0%,
  100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
}

@keyframes wiserLoopFlow {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -72;
  }
}

@keyframes wiserShimmer {
  0% {
    transform: translateX(-40%);
  }
  100% {
    transform: translateX(40%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wiser-card--signal .wiser-icon--signal path,
  .wiser-card--guided .wiser-icon--guided,
  .wiser-card--impact .wiser-icon--impact,
  .wiser-card,
  .wiser-cta-pill::after,
  .wiser-cta-live,
  .wiser-device-frame::before,
  .wiser-device-frame::after,
  .wiser-typing-indicator span,
  .wiser-card-progress span,
  .wiser-loop-strip::after,
  .wiser-pillars::before {
    animation: none;
  }
}

@media (max-width: 1200px) {
  .feature-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 8px 0 0;
  }

  .feature-card {
    flex: none;
  }
}

@media (max-width: 1024px) {
  .container {
    width: 92vw;
  }

  main {
    padding-right: 0;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 24px;
  }

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

  .year-header {
    grid-template-columns: 1fr;
  }

  .year-header-text {
    grid-column: 1 / -1;
  }

  .year-header-visual {
    grid-column: 1 / -1;
  }

  .kpi-insight-row {
    grid-template-columns: 1fr;
  }

  .audience-line {
    grid-template-columns: 1fr;
  }

  .wiser-hero-grid {
    gap: 24px;
  }

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

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

  .audience-line .geo-card {
    grid-column: 1;
    grid-row: auto;
  }

  .audience-stack {
    grid-column: 1;
    grid-row: auto;
  }

  .revenue-layout {
    grid-template-columns: 1fr;
  }

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

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .program-card .image-card {
    max-width: 100%;
  }

  .exhibition-copy p {
    max-width: none;
  }

  .numa-kpis {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .geo-layout {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .geo-layout .mapWrap {
    grid-column: span 8;
  }

  .region-panel {
    grid-column: span 8;
  }

  .feature-track {
    grid-template-columns: 1fr;
    padding-inline: 0;
  }

  .feature-card {
    flex-basis: auto;
  }

  .wiser-hero-block {
    grid-template-columns: 1fr;
  }

  .wiser-ask-block {
    grid-template-columns: 1fr;
  }

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

  .wiser-tab-panel {
    grid-template-columns: 1fr;
  }

  .wiser-accordion-panel {
    grid-template-columns: 1fr;
  }

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

  .numa-gallery {
    grid-template-columns: 1fr;
  }

  .numa-gallery-feature {
    grid-column: auto;
  }

  .line-chart {
    padding-right: 0;
  }

  .toc {
    bottom: 16px;
    top: auto;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    padding: 8px 12px;
    gap: 10px;
    border-radius: 999px;
    flex-direction: row;
    align-items: center;
    min-width: unset;
  }

  .toc-toggle {
    display: inline-flex;
  }

  .toc-active-label {
    display: none;
  }

  .toc-items {
    gap: 10px;
    justify-content: center;
  }

  .toc a:not(:last-child)::after {
    width: 18px;
  }
}

@media (max-width: 768px) {
  .chapter {
    padding: 60px 0;
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 20px;
  }

  .chapter-header {
    margin-bottom: 32px;
  }

  .chapter-header p {
    font-size: 16px;
  }

  .kpi-card {
    padding: 18px;
  }

  .kpi-group {
    padding: 22px;
    gap: 18px;
  }

  .year-section {
    --kpi-card-height: 200px;
    --kpi-icon-size: 38px;
  }

  .kpi-group-insight {
    font-size: 13px;
  }

  .insight-statement {
    font-size: 18px;
  }

  .card,
  .feature-card,
  .focus-card {
    padding: 18px;
  }

  .feature-card .image-card {
    order: 3;
  }

  .feature-impact {
    order: 4;
  }

  .wiser-hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .wiser-hero-media {
    grid-column: 1 / -1;
    grid-row: 1 / 2;
    margin-top: 0;
  }

  .wiser-header {
    grid-column: 1 / -1;
    grid-row: 2 / 3;
  }

  .wiser-divider--hero {
    grid-column: 1 / -1;
    grid-row: 3 / 4;
  }

  .wiser-hero-left {
    grid-column: 1 / -1;
    grid-row: 4 / 5;
  }

  .wiser-hero-media::before {
    width: 240px;
    height: 240px;
    top: 0;
    right: 0;
  }

  .wiser-kpi-chips {
    grid-template-columns: 1fr;
  }

  .wiser-tab-panel {
    grid-template-columns: 1fr;
  }

  .wiser-gallery-grid {
    grid-template-columns: 1fr;
  }

  .wiser-section {
    padding: 48px 0;
  }

  .wiser-pillars {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 6px;
  }

  .wiser-loop-strip {
    flex: 0 0 100%;
  }

  .wiser-pillars::-webkit-scrollbar {
    display: none;
  }

  .wiser-card {
    min-width: 240px;
    scroll-snap-align: start;
  }

  .wiser-proof-bar {
    flex-wrap: wrap;
  }

  .wiser-device-frame {
    max-width: 320px;
  }

  .wiser-ask-block {
    padding: 20px;
  }

  .wiser-ask-pills {
    grid-template-columns: 1fr;
  }

  .wiser-accordion-toggle {
    font-size: 14px;
  }

  .saudiMap {
    width: min(100%, 520px);
    max-height: 320px;
  }

  .kpi-value {
    font-size: 34px;
  }

  .year-section .kpi-icon svg,
  .growth-retention-group .kpi-icon svg {
    width: 20px;
    height: 20px;
  }

  .kpi-info {
    width: 16px;
    height: 16px;
    font-size: 10px;
  }

  .site-header {
    position: static;
  }

  .header-inner {
    padding: 12px 0;
  }

  .brand-title {
    display: none;
  }

  .story-media {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

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

  .exhibitions-grid {
    grid-template-columns: 1fr;
  }

  .growth-charts {
    grid-template-columns: 1fr;
  }

  .gender-compare {
    grid-template-columns: 1fr;
  }

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

  .audience-line {
    grid-template-columns: 1fr;
  }

  .wiser-pillars {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (min-width: 768px) {
  .map-tooltip {
    display: none;
  }
}

@media (max-width: 640px) {
  .market-section {
    padding: 18px 0;
  }

  .card,
  .feature-card,
  .focus-card {
    padding: 18px;
  }

  .numa-kpis .kpi-card {
    padding: 20px;
  }

  .wiser-ask-block {
    padding: 18px;
  }

  .bar-chart {
    height: 180px;
    gap: 10px;
  }

  .bar {
    width: 22px;
  }

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

  .reveal.is-visible .bar {
    transform: scaleY(1);
  }
}

@media (max-width: 520px) {
  .chapter {
    padding: 54px 0;
  }

  body {
    font-size: 16px;
  }

  .chapter-header p {
    font-size: 16px;
  }

  .kpi-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .kpi-value {
    font-size: 30px;
  }

  .kpi-card {
    padding: 18px;
  }

  .year-section {
    --kpi-card-height: 190px;
    --kpi-icon-size: 34px;
  }

  .card,
  .feature-card,
  .focus-card {
    padding: 18px;
  }

  .progress-dock {
    width: calc(100% - 20px);
  }
}

@media (max-width: 480px) {
  .wiser-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .wiser-cta-pill {
    width: 100%;
    text-align: center;
  }

  .wiser-device-frame {
    padding: 12px;
  }

  .wiser-live-badge {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .wiser-secondary-demo {
    padding: 10px;
  }
}

@media print {
  .gif,
  video,
  .motion,
  .hover-only {
    display: none !important;
  }

  .print-only {
    display: block !important;
  }

  .wiser-gallery {
    break-inside: avoid;
  }

  section {
    page-break-inside: avoid;
  }

  .wiser-lightbox {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}