/* ===================================================================
   CAMS Annual Report 2025–26
   Hero Section + Glass Navigation
   Fonts: Myriad Pro → Arial fallback
   =================================================================== */

:root {
  --ink:        #0c1a30;      /* deep institutional navy */
  --brand:      #2d5da9;      /* CAMS blue */
  --brand-lite: #6f9ed6;      /* lighter blue accent */
  --azure:      #14a4e0;      /* bright azure — service card borders */
  --sky-1:      #dbf0fb;      /* light-blue column — top */
  --sky-2:      #bfe3f6;      /* light-blue column — bottom */
  --num-blue:   #2b66bd;      /* performance numbers */
  --teal:       #3fb9bd;      /* timeline accent */
  --gold:       #d8b25a;      /* warm accent — echoes the report's yellow markings */
  --paper:      #ffffff;
  --grey:       #929497;
  --nav-h:      72px;
  --ease:       cubic-bezier(0.4, 0.0, 0.2, 1);

  /* Shared, consistent section-heading size across the site */
  --section-title: clamp(26px, 2.7vw, 38px);

  --font-sans: 'Myriad Pro', Arial, Helvetica, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ===================================================================
   Scroll-snap container
   =================================================================== */
.snap {
  height: 100vh;
  height: 100dvh;
  overflow-y: scroll;
  scroll-snap-type: y proximity;   /* proximity (not mandatory) so the pinned section scrolls freely */
  scroll-behavior: smooth;
}
/* hidden until scroll position is restored on load (avoids top-flash) */
.pre-scroll .snap { visibility: hidden; }
.pre-scroll .nav { transform: translateY(-100%) !important; transition: none !important; }

.snap__section {
  min-height: 100vh;
  min-height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
}

/* ===================================================================
   Navigation — glass band, reveal on scroll-up
   =================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: transform 0.45s var(--ease), background-color 0.4s var(--ease),
              backdrop-filter 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

/* Glass band — frosted white */
.nav[data-state="scrolled"] {
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05),
              0 10px 30px rgba(20, 60, 110, 0.12);
}
/* dark contents on the white glass */
.nav[data-state="scrolled"] .btn-download {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(45, 93, 169, 0.35);
}
.nav[data-state="scrolled"] .btn-download:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.nav[data-state="scrolled"] .btn-menu {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(45, 93, 169, 0.35);
}
.nav[data-state="scrolled"] .btn-menu:hover { background: rgba(45, 93, 169, 0.14); }
.nav[data-state="scrolled"] .btn-menu__bar { background: var(--ink); }

/* At the very top: transparent over the hero video */
.nav[data-state="top"] {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

/* Hidden (scrolling down) */
.nav[data-hidden="true"] {
  transform: translateY(-100%);
}

.nav__inner {
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav__logo { display: inline-flex; align-items: center; }
.nav__logo img {
  height: 48px;
  width: auto;
  border-radius: 4px;
}

/* Right cluster */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Download button */
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease),
              transform 0.25s var(--ease);
              color: var(--ink);
    background: rgba(255, 255, 255, 0.55);
    border-color: rgba(45, 93, 169, 0.35);
}
.btn-download:hover {
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-1px);
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn-download__icon { flex: none; }

/* Menu (hamburger) */
.btn-menu {
  width: 42px;
  height: 42px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: background-color 0.25s var(--ease);
  background: rgba(255, 255, 255, 0.55);
    border-color: rgba(45, 93, 169, 0.35);
}
.btn-menu:hover { background: rgba(255, 255, 255, 0.20); }
.btn-menu__bar {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  background: var(--ink);
}
.btn-menu[aria-expanded="true"] .btn-menu__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.btn-menu[aria-expanded="true"] .btn-menu__bar:nth-child(2) { opacity: 0; }
.btn-menu[aria-expanded="true"] .btn-menu__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================================
   Hero
   =================================================================== */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--ink);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;   /* revised banner is framed centred */
  z-index: 0;
}

/* Readability overlay over the video — soft centred vignette */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(120% 90% at 50% 50%, rgba(12,26,48,0.18) 0%,
                    rgba(12,26,48,0.42) 70%, rgba(12,26,48,0.70) 100%),
    linear-gradient(180deg, rgba(12,26,48,0.35) 0%, rgba(12,26,48,0.0) 35%,
                    rgba(12,26,48,0.0) 70%, rgba(12,26,48,0.55) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 26px;
}
/* hairline flourishes on either side of the eyebrow */
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: "";
  width: clamp(28px, 5vw, 60px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
}

.hero__title {
  font-size: clamp(24px, 3.2vw, 44px);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: 0.005em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.45);
  max-width: 20ch;
}
.hero__title .accent {
  display: block;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(22px, 4vh, 40px);
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.hero__scroll svg { animation: nudge 1.8s var(--ease) infinite; }

@keyframes nudge {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(5px); }
}

/* ===================================================================
   CTA button (reusable — solid for light bg, ghost for dark)
   =================================================================== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;        /* Title Case, not uppercase */
  text-decoration: none;
  cursor: pointer;
  transition: gap 0.25s var(--ease), color 0.2s var(--ease);
}
.btn-cta:hover { gap: 18px; }

/* underline beneath the label */
.btn-cta__label {
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
}

/* arrow enclosed in an outlined circle */
.btn-cta__ic {
  flex: none;
  width: 38px;
  height: 38px;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 1px solid currentColor;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease);
}

/* Solid = light backgrounds (e.g. About) */
.btn-cta--solid { color: var(--brand); }
.btn-cta--solid .btn-cta__ic { color: var(--brand); border-color: rgba(45, 93, 169, 0.45); }
.btn-cta--solid:hover .btn-cta__ic { background: var(--brand); color: #fff; border-color: var(--brand); }

/* Ghost = dark backgrounds (e.g. Hero over video) */
.btn-cta--ghost { color: #fff; }
.btn-cta--ghost .btn-cta__ic { color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.btn-cta--ghost:hover .btn-cta__ic { background: #fff; color: var(--ink); border-color: #fff; }

.hero__cta { margin-top: 30px; }

/* ===================================================================
   About CAMS — half image (left) + content (right), white bg
   =================================================================== */
.about {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: minmax(0, 1fr);
  height: 100vh;
  height: 100dvh;
  background: var(--paper);
  color: var(--ink);
}

.about__media { position: relative; overflow: hidden; }
.about__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about__content {
  display: flex;
  align-items: center;
  padding: clamp(40px, 7vw, 110px);
}
.about__inner { max-width: 560px; }

.about__eyebrow {
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 22px;
}
.about__title {
  font-size: var(--section-title);
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--brand);
  margin-bottom: 26px;
}
.about__text {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.7;
  color: #45556b;
  margin-bottom: 36px;
  max-width: 46ch;
}

/* ===================================================================
   Performance Insights — single background, heading + tabs + stats
   =================================================================== */
.pi {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 100vh;
  height: 100dvh;
  color: var(--ink);
  background:
    url("Assets/performance-insights-bg.webp") center / cover no-repeat,
    linear-gradient(180deg, var(--sky-1), var(--sky-2));
}
.pi__inner {
  width: 100%;
  max-width: 1180px;
  padding: clamp(48px, 8vh, 96px) clamp(24px, 4vw, 64px) clamp(24px, 4vh, 48px);
  text-align: center;
}

.pi__title {
  font-size: var(--section-title);
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--brand);
  margin-bottom: clamp(24px, 4vh, 40px);
}

/* Tabs — horizontal row, centred */
.pi__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: clamp(34px, 5.5vh, 60px);
}
.pi__card {
  padding: 14px 30px;
  border-radius: 14px;
  border: 1px solid rgba(45, 93, 169, 0.28);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--ink);
  font-family: inherit;
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease),
              border-color 0.3s var(--ease), box-shadow 0.3s var(--ease),
              transform 0.2s var(--ease);
}
.pi__card:hover { border-color: var(--brand); background: rgba(255, 255, 255, 0.92); }
.pi__card.is-active {
  background: linear-gradient(135deg, #2d5da9, #1f4e93);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 14px 32px rgba(31, 78, 147, 0.28);
}

/* Stats */
.pi__panels { position: relative; }
.pi__panel[hidden] { display: none; }

/* 3 on the first row, 4 on the second — 12-col grid */
.pi__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  row-gap: clamp(22px, 4vh, 40px);
}
.pi__stat {
  grid-column: span 4;                  /* row 1: 3 × 4 = 12 */
  min-width: 0;
  padding: 4px clamp(14px, 1.6vw, 28px);
  border-left: 1px solid rgba(45, 93, 169, 0.22);
}
.pi__stat:nth-child(n+4) {
  grid-column: span 3;                  /* row 2: 4 × 3 = 12 */
  border-top: 1px solid rgba(45, 93, 169, 0.22);
  padding-top: clamp(22px, 4vh, 40px);
}
/* no divider at the start of each row */
.pi__stat:nth-child(1),
.pi__stat:nth-child(4) { border-left: none; }

.pi__num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: clamp(24px, 2.5vw, 40px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--num-blue);
}
.pi__num--text { font-size: clamp(20px, 1.9vw, 30px); }
.pi__pre { font-size: 0.62em; font-weight: 700; }
.pi__suf { font-size: 0.46em; font-weight: 600; letter-spacing: 0.01em; }
.pi__label {
  margin-top: 8px;
  font-size: clamp(12px, 0.85vw, 14px);
  line-height: 1.4;
  color: #3f5772;
}
.pi__foot {
  margin-top: clamp(20px, 3vh, 34px);
  font-size: 12px;
  font-style: italic;
  color: #5a7088;
}

/* ===================================================================
   Service Offerings — content (left) + carousel (right), white bg
   =================================================================== */
.services {
  display: grid;
  grid-template-columns: 44% 56%;
  height: 100vh;
  height: 100dvh;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(42% 52% at 18% 28%, rgba(20, 164, 224, 0.10), transparent 70%),
    radial-gradient(46% 56% at 84% 72%, rgba(45, 93, 169, 0.09), transparent 70%),
    radial-gradient(40% 48% at 60% 50%, rgba(20, 164, 224, 0.05), transparent 72%);
  background-size: 200% 200%, 220% 220%, 180% 180%;
  background-repeat: no-repeat;
  animation: svc-bg-drift 26s ease-in-out infinite alternate;
}
@keyframes svc-bg-drift {
  0%   { background-position:   0% 0%, 100% 100%,  50%   0%; }
  50%  { background-position:  60% 40%,  40%  60%,  20%  80%; }
  100% { background-position: 100% 100%,   0%   0%,  80%  40%; }
}

.services__content {
  display: flex;
  align-items: center;
  padding: clamp(40px, 6vw, 100px);
}
.services__inner { max-width: 540px; }

.services__eyebrow {
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 22px;
}
.services__title {
  font-size: var(--section-title);
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--brand);
  margin-bottom: 26px;
}
.services__text {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
  color: #45556b;
  margin-bottom: 36px;
}

/* Right column / carousel */
.services__right {
  display: flex;
  align-items: stretch;
  padding: clamp(36px, 4vw, 70px) clamp(36px, 5vw, 80px) clamp(36px, 4vw, 70px) 0;
  min-width: 0;
}
.svc {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}

.svc__viewport { flex: 1; overflow: hidden; min-height: 0; }
.svc__track {
  display: flex;
  height: 100%;
  transition: transform 0.5s var(--ease);
}
.svc__page {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.6vh, 18px);
}

/* Strip card */
.svc__card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  background: #fff;
  border: 1px solid var(--azure);
  border-radius: 10px;
  min-height: 0;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.svc__card:hover {
  box-shadow: 0 10px 28px rgba(20, 164, 224, 0.16);
  transform: translateY(-2px);
}

.svc__logo {
  flex: none;
  width: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 20px;
  border-right: 1px solid rgba(20, 164, 224, 0.30);
  align-self: stretch;
}
.svc__logo img { max-width: 100%; max-height: 56px; object-fit: contain; }

.svc__copy { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.svc__name {
  font-size: clamp(12px, 0.85vw, 13.5px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--ink);
}
.svc__sub {
  font-size: 11.5px;
  line-height: 1.4;
  color: #7a8699;
}

/* Controls (bottom-right) */
.svc__controls {
  display: flex;
  align-items: center;
  gap: 14px;
  align-self: flex-end;
  margin-top: clamp(18px, 2.4vh, 28px);
}
.svc__counter {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #8a97a8;
  margin-right: 4px;
}
.svc__arrow {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--azure);
  background: #fff;
  color: var(--azure);
  cursor: pointer;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease),
              transform 0.2s var(--ease);
}
.svc__arrow svg { width: 18px; height: 18px; }
.svc__arrow--prev svg { transform: scaleX(-1); }
.svc__arrow:hover { background: var(--azure); color: #fff; }
.svc__arrow:active { transform: scale(0.94); }

/* ===================================================================
   Chairman's Communique — full-bleed bg, photo left, content right
   =================================================================== */
.chair {
  display: grid;
  grid-template-columns: 44% 56%;
  grid-template-rows: minmax(0, 1fr);
  height: 100vh;
  height: 100dvh;
  color: var(--ink);
  background: url("Assets/chairman-background.webp") center / cover no-repeat;
}

.chair__photo {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding-left: clamp(20px, 3vw, 56px);
}
.chair__photo img {
  height: auto;
  max-height: 94%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.chair__content {
  display: flex;
  align-items: center;
  padding: clamp(40px, 5vw, 96px) clamp(36px, 6vw, 110px) clamp(40px, 5vw, 96px) clamp(20px, 2vw, 40px);
}
.chair__inner { max-width: 560px; }

.chair__title {
  font-size: var(--section-title);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--brand);
  margin-bottom: 26px;
}

/* dots + line marker (replaces a quote glyph) */
.chair__marker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
}
.chair__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--brand);
}
.chair__rule {
  width: 54px; height: 2px;
  margin-left: 4px;
  background: var(--azure);
}

.chair__quote {
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 1.45;
  font-weight: 500;
  color: #16263d;
  margin-bottom: 30px;
}

.chair__by { margin-bottom: 34px; }
.chair__name {
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 700;
  color: var(--brand);
}
.chair__role {
  margin-top: 4px;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #5a6c82;
}

/* reveal animation (generic — used by any section with .is-in) */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.is-in .reveal { opacity: 1; transform: none; }
.reveal:nth-child(1) { transition-delay: 0.05s; }
.reveal:nth-child(2) { transition-delay: 0.15s; }
.reveal:nth-child(3) { transition-delay: 0.26s; }
.reveal:nth-child(4) { transition-delay: 0.38s; }
.reveal:nth-child(5) { transition-delay: 0.50s; }
.reveal:nth-child(6) { transition-delay: 0.60s; }

/* ===================================================================
   From the MD's Desk — same style as Chairman, photo on the right
   =================================================================== */
.md {
  display: grid;
  grid-template-columns: 56% 44%;
  grid-template-rows: minmax(0, 1fr);
  height: 100vh;
  height: 100dvh;
  color: var(--ink);
  background: url("Assets/md-background.webp") center / cover no-repeat;
}

.md__photo {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding-right: clamp(20px, 3vw, 56px);
}
.md__photo img {
  height: auto;
  max-height: 94%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.md__content {
  display: flex;
  align-items: center;
  padding: clamp(40px, 5vw, 96px) clamp(20px, 2vw, 40px) clamp(40px, 5vw, 96px) clamp(36px, 6vw, 110px);
}
.md__inner { max-width: 560px; }

.md__title {
  font-size: var(--section-title);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--brand);
  margin-bottom: 26px;
}

.md__marker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
}
.md__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--brand);
}
.md__rule {
  width: 54px; height: 2px;
  margin-left: 4px;
  background: var(--azure);
}

.md__quote {
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 1.45;
  font-weight: 500;
  color: #16263d;
  margin-bottom: 30px;
}

.md__by { margin-bottom: 34px; }
.md__name {
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 700;
  color: var(--brand);
}
.md__role {
  margin-top: 4px;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #5a6c82;
}

/* ===================================================================
   Key Business Highlights — arc timeline over a blurred bg
   =================================================================== */
.kbh {
  position: relative;
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
  background: #0a1322;
  color: #fff;
}
.kbh__bg {
  position: absolute;
  inset: -24px;
  background: url("Assets/key-highlights-background.webp") center / cover no-repeat;
  filter: blur(6px) brightness(0.55);
  z-index: 0;
}
.kbh__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 7vh, 84px) clamp(20px, 4vw, 60px) clamp(36px, 6vh, 70px);
}

.kbh__title {
  font-size: var(--section-title);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
  margin-bottom: clamp(48px, 9vh, 104px);
}

/* Timeline / arc */
.kbh__timeline {
  position: relative;
  width: 100%;
  max-width: 1560px;
  height: clamp(300px, 46vh, 400px);
  flex: none;
  overflow: hidden;
}
.kbh__arc {
  position: absolute;
  border: 2px dotted rgba(255, 255, 255, 0.30);
  border-radius: 50%;
  pointer-events: none;
}
.kbh__connector {
  position: absolute;
  left: 50%;
  top: 70px;
  height: 116px;
  border-left: 2px dotted rgba(255, 255, 255, 0.4);
}

.kbh__point {
  position: absolute;
  transform: translate(-50%, -50%);
}
.kbh__year {
  position: absolute;
  left: 0;
  bottom: 20px;
  transform-origin: bottom center;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: 'Arial Narrow', 'Helvetica Neue Condensed', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: clamp(26px, 2.6vw, 42px);    /* large, like the reference; JS tilts + scales */
  color: #fff;
  will-change: transform, opacity;
}
.kbh__dot {
  position: absolute;
  left: -6px;
  top: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  transition: background-color 0.35s var(--ease), transform 0.35s var(--ease),
              box-shadow 0.35s var(--ease);
}
.kbh__point--active .kbh__dot {
  background: var(--teal);
  transform: scale(1.5);
  box-shadow: 0 0 0 7px rgba(63, 185, 189, 0.18);
}

/* Detail + arrows nested within the arc */
.kbh__stage {
  position: absolute;
  top: 196px;
  left: 50%;
  transform: translateX(-50%);
  width: min(860px, 94%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 48px);
}
.kbh__detail {
  text-align: center;
  width: min(560px, 60%);
  min-height: 86px;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.kbh__detail.is-swapping { opacity: 0; transform: translateY(8px); }
.kbh__date {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.kbh__desc {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* Arrows + CTA */
.kbh__arrow {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease), transform 0.2s var(--ease);
}
.kbh__arrow svg { width: 18px; height: 18px; }
.kbh__arrow--prev svg { transform: scaleX(-1); }
.kbh__arrow:hover { background: var(--teal); border-color: var(--teal); }
.kbh__arrow:active { transform: scale(0.94); }

.kbh__cta { margin-top: clamp(22px, 3.5vh, 36px); }

/* ===================================================================
   Business Model — 3-strip horizontal accordion
   =================================================================== */
.bm {
  position: relative;
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
  color: var(--ink);
}
.bm__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(120deg, #eaf5fc 0%, #cfe8f8 28%, #d8eefb 52%, #c2e2f6 76%, #e9f5fd 100%);
  background-size: 300% 300%;
  animation: bm-drift 24s ease-in-out infinite alternate;
}
@keyframes bm-drift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.bm__strips {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
}

.bm__strip {
  position: relative;
  flex: none;
  width: 92px;
  overflow: hidden;
  border-left: 1px solid rgba(45, 93, 169, 0.16);
  transition: width 0.55s var(--ease);
}
.bm__strip:first-child { border-left: none; }
.bm__strip.is-open { width: calc(100% - 184px); }

/* Vertical tab (collapsed state) */
.bm__tab {
  position: absolute;
  inset: 0;
  width: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.3s var(--ease), background-color 0.3s var(--ease);
}
.bm__tab:hover { background: rgba(255, 255, 255, 0.6); }
.bm__tab-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: clamp(14px, 1.1vw, 18px);
  color: var(--brand);
  white-space: nowrap;
}
.bm__strip.is-open .bm__tab { opacity: 0; pointer-events: none; }

/* Panel (open state) */
.bm__panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s var(--ease) 0.1s;
  overflow: hidden;
}
.bm__strip.is-open .bm__panel { opacity: 1; }
.bm__panel-inner {
  width: calc(100vw - 184px);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.4vh, 48px) clamp(30px, 3vw, 60px);
}

.bm__head { flex: none; margin-bottom: clamp(16px, 2.4vh, 28px); }
.bm__eyebrow {
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.bm__heading {
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--brand);
  line-height: 1.1;
}
.bm__striptitle {
  margin-top: 14px;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--azure);
  padding-top: 12px;
  border-top: 1px solid rgba(45, 93, 169, 0.2);
}

.bm__body { flex: 1; min-height: 0; overflow-y: auto; padding-right: 10px; }
.bm__body::-webkit-scrollbar { width: 8px; }
.bm__body::-webkit-scrollbar-thumb { background: rgba(45, 93, 169, 0.28); border-radius: 8px; }
.bm__body::-webkit-scrollbar-track { background: rgba(45, 93, 169, 0.08); border-radius: 8px; }

/* Capital blocks — balanced multi-column flow */
.bm__grid {
  column-count: 3;
  column-gap: clamp(24px, 2.6vw, 48px);
}
.bm__cap {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin-bottom: clamp(16px, 2vh, 24px);
  padding-bottom: clamp(14px, 1.8vh, 22px);
  border-bottom: 1px solid rgba(45, 93, 169, 0.28);   /* divider after each capital */
}
.bm__cap-head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 11px;
}
.bm__cap-icon {
  flex: none;
  width: 40px; height: 40px;
  object-fit: contain;
}
.bm__cap-title {
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
  line-height: 1.2;
}

/* bulleted point list per capital */
.bm__points { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.bm__pt {
  position: relative;
  padding-left: 18px;
  font-size: clamp(12px, 0.92vw, 14px);
  line-height: 1.45;
  color: #34465c;
}
.bm__pt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  background: var(--azure);
}
.bm__pt-num { font-weight: 700; color: var(--num-blue); }
.bm__pre { font-weight: 700; }
.bm__suf { font-weight: 600; }

/* SDG linkage */
.bm__sdg { margin-top: 12px; }
.bm__sdg-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5a6c82;
  margin-bottom: 8px;
}
.bm__sdg-row { display: flex; flex-wrap: wrap; gap: 6px; }
.bm__sdg-row img {
  width: clamp(42px, 3.1vw, 56px);
  height: clamp(42px, 3.1vw, 56px);
  border-radius: 3px;
}

/* Key Strengths panel */
.bm__body--ks {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;   /* image left (smaller), activities right */
  gap: clamp(28px, 3.5vw, 64px);
  align-items: center;
  overflow: visible;                       /* no inner scroll — everything visible */
}
.bm__ks-hero { display: flex; justify-content: center; }
.bm__ks-circle {
  border-radius: 18px;
  background: radial-gradient(130% 130% at 50% 45%, #2f7fc4 0%, #1d5ca5 55%, #123f7e 100%);
  padding: clamp(16px, 1.8vw, 32px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}
.bm__ks-circle img {
  height: clamp(220px, 34vh, 340px);   /* smaller */
  width: auto;
  max-width: 100%;
  display: block;
}
.bm__act-title {
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}
.bm__act-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 1.4vw, 24px) clamp(16px, 2vw, 32px);
}
.bm__act-grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.bm__act-grid img { width: clamp(40px, 3vw, 54px); height: clamp(40px, 3vw, 54px); object-fit: contain; }
.bm__act-grid span {
  font-size: clamp(11px, 0.82vw, 13px);
  font-weight: 600;
  line-height: 1.3;
  color: #33455c;
}

/* Read More CTA — centred, lifted up a little from the bottom */
.bm__cta {
  flex: none;
  align-self: center;
  margin-top: clamp(12px, 2vh, 20px);
  margin-bottom: clamp(20px, 5vh, 56px);
}
/* Key Strengths tab: shift CTA down so everything fits without an inner scroll */
[data-strip="strengths"] .bm__cta { margin-top: clamp(8px, 1.4vh, 14px); margin-bottom: clamp(6px, 1.4vh, 14px); }

/* ===================================================================
   Strategic Review — 3 navy gradient cards
   =================================================================== */
.sr {
  display: flex;
  align-items: center;
  height: 100vh;
  height: 100dvh;
  background: #eef3f9;
  padding: clamp(40px, 6vh, 84px) clamp(24px, 4vw, 72px);
}
.sr__grid {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 1.8vw, 32px);
}
.sr__card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  padding: clamp(28px, 2.4vw, 48px);
  color: #fff;
  min-height: clamp(420px, 62vh, 560px);
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(63, 185, 189, 0.16), transparent 55%),
    linear-gradient(158deg, #1c4886 0%, #143864 35%, #0f2a50 65%, #0a1830 100%);
  box-shadow: 0 24px 50px rgba(12, 26, 48, 0.22);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.sr__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 36px 70px rgba(12, 26, 48, 0.34);
}

/* decorative corner illustration */
.sr__illus {
  position: absolute;
  right: -2%;
  bottom: -2%;
  width: clamp(230px, 26vw, 400px);
  opacity: 0.85;
  pointer-events: none;
  transform-origin: bottom right;
  transition: transform 0.55s var(--ease), opacity 0.45s var(--ease);
}
.sr__card:hover .sr__illus { transform: scale(1.08); opacity: 1; }

/* keep text above the illustration */
.sr__eyebrow, .sr__title, .sr__intro, .sr__cta { position: relative; z-index: 1; }

.sr__eyebrow {
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-lite);
  margin-bottom: 20px;
}
.sr__title {
  font-size: clamp(22px, 1.9vw, 30px);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.sr__intro {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}
.sr__cta { margin-top: auto; padding-top: 32px; }

/* ===================================================================
   Value Creation Across Six Capitals — scroll-pinned, 6 crossfading capitals
   =================================================================== */
.vc {
  position: relative;
  height: 600vh;                 /* 6 × 100vh of scroll */
  background: var(--paper);
  scroll-snap-align: start;      /* one snap point at the top (Financial Capital); capitals scroll freely */
}
.vc__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}
.vc__inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* LEFT — content layers crossfade */
.vc__left {
  position: relative;
  background: var(--paper);
}
.vc__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 110px);
  max-width: 680px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  pointer-events: none;
}
.vc__content.is-active { opacity: 1; transform: none; pointer-events: auto; }

.vc__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 22px;
}
.vc__icon { width: 38px; height: 38px; object-fit: contain; flex: none; }
.vc__title {
  font-size: var(--section-title);
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 22px;
}
.vc__intro {
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.7;
  color: #45556b;
  margin-bottom: 32px;
}

/* RIGHT — image layers crossfade */
.vc__right {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #16335f, #0a1830);   /* placeholder until images load */
}
.vc__media {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s var(--ease);
}
.vc__media.is-active { opacity: 1; }
.vc__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* progress dots */
.vc__nav {
  position: absolute;
  right: clamp(20px, 2vw, 40px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 2;
}
.vc__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.vc__dot.is-active { background: #fff; transform: scale(1.3); }

/* ===================================================================
   ESG Overview — full-bleed image + centred glass box
   =================================================================== */
.esg {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  padding: clamp(24px, 5vw, 80px);
  background: url("Assets/esg-overview.webp") center / cover no-repeat;
}
.esg__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 100% at 50% 50%, rgba(6, 24, 14, 0.25), rgba(5, 18, 11, 0.6)),
    linear-gradient(180deg, rgba(5, 18, 11, 0.45), rgba(5, 18, 11, 0.35));
}

.esg__box {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: clamp(34px, 4vw, 64px);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  color: #fff;
  /* reveal animation (overrides generic .reveal) */
  opacity: 0;
  transform: translateY(48px) scale(0.96);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.esg.is-in .esg__box { opacity: 1; transform: none; }

.esg__eyebrow {
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #bff0cb;
  margin-bottom: 20px;
}
.esg__title {
  font-size: var(--section-title);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.esg__intro {
  font-size: clamp(14px, 1.05vw, 16.5px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 34px;
  text-align: left;            /* flows left-to-right, same column as the heading */
}

/* staggered text reveal inside the glass box */
.esg__box > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.esg.is-in .esg__box > * { opacity: 1; transform: none; }
.esg.is-in .esg__eyebrow { transition-delay: 0.30s; }
.esg.is-in .esg__title   { transition-delay: 0.45s; }
.esg.is-in .esg__intro   { transition-delay: 0.62s; }
.esg.is-in .esg__cta     { transition-delay: 0.80s; }

/* ===================================================================
   Corporate Governance — content left, diagram right
   =================================================================== */
.cg {
  display: grid;
  grid-template-columns: 46% 54%;
  height: 100vh;
  height: 100dvh;
  background: var(--paper);
  color: var(--ink);
}
.cg__content {
  display: flex;
  align-items: center;
  padding: clamp(40px, 6vw, 110px);
}
.cg__inner { max-width: 560px; }
.cg__eyebrow {
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 22px;
}
.cg__title {
  font-size: var(--section-title);
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 22px;
}
.cg__intro {
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.7;
  color: #45556b;
  margin-bottom: 34px;
}
.cg__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(30px, 4vw, 70px);
  background: #fff;
}
.cg__media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border: 1.5px solid var(--azure);   /* thin blue border around the diagram */
  border-radius: 12px;
  padding: clamp(14px, 1.6vw, 26px);
  background: #fff;
}

/* ===================================================================
   Awards and Accolades — auto-scrolling marquee of cards
   =================================================================== */
.aw {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  height: 100dvh;
  color: var(--ink);
}
.aw__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(120deg, #eaf5fc 0%, #cfe8f8 28%, #d8eefb 52%, #c2e2f6 76%, #e9f5fd 100%);
  background-size: 300% 300%;
  animation: aw-drift 22s ease-in-out infinite alternate;
}
@keyframes aw-drift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.aw__title {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: var(--section-title);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--brand);
  margin-bottom: clamp(34px, 6vh, 64px);
}

.aw__marquee {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.aw__track {
  display: flex;
  gap: clamp(20px, 1.8vw, 32px);
  width: max-content;
  animation: aw-marquee 60s linear infinite;   /* slow, right-to-left */
}
/* pause only on devices that truly hover (mouse) — avoids sticky-hover freeze on touch */
@media (hover: hover) {
  .aw__marquee:hover .aw__track { animation-play-state: paused; }   /* readable on hover */
}
@keyframes aw-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* mobile prev/next controls — hidden on desktop where the CSS marquee runs */
.aw__controls { display: none; }
.aw__arrow {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--azure);
  background: #fff;
  color: var(--azure);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease),
              transform 0.2s var(--ease);
}
.aw__arrow svg { width: 18px; height: 18px; }
.aw__arrow--prev svg { transform: scaleX(-1); }
.aw__arrow:active { background: var(--azure); color: #fff; transform: scale(0.94); }

.aw__card {
  position: relative;
  flex: none;
  width: clamp(210px, 17vw, 250px);
  padding: 14px 16px 18px;
  /* line-and-dot frame (right + bottom), like the reference */
  border-right: 1.5px solid var(--azure);
  border-bottom: 1.5px solid var(--azure);
}
.aw__card::before,
.aw__card::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--azure);
}
.aw__card::before { top: -4px; right: -4.5px; }      /* dot at top of the right line */
.aw__card::after  { bottom: -4.5px; right: -4.5px; } /* dot at the bottom-right corner */

.aw__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #dceefb, #bfe0f6);   /* placeholder until images load */
  overflow: hidden;
}
.aw__img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.aw__text {
  display: flex;
  gap: 9px;
  margin-top: 16px;
  font-size: clamp(12.5px, 0.92vw, 14.5px);
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
}
.aw__text::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  margin-top: 5px;
  background: var(--azure);   /* square bullet */
}

/* ===================================================================
   Download Centre — 6 download tabs (3 left, 3 right)
   =================================================================== */
.dc {
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  background: #eef3f9;
}
.dc__body {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(36px, 5vh, 72px) clamp(24px, 5vw, 90px);
}
.dc__inner { width: 100%; max-width: 1180px; }
.dc__title {
  text-align: center;
  font-size: var(--section-title);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--brand);
  margin-bottom: clamp(32px, 5vh, 56px);
}
.dc__grid {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  grid-auto-flow: column;            /* fill down the left column first, then the right */
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 1.6vw, 24px);
}

.dc__tab {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(18px, 2vw, 26px) clamp(22px, 2.4vw, 32px);
  border-radius: 12px;
  border: 1px solid rgba(45, 93, 169, 0.30);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease);
}
/* navy fill slides in on hover */
.dc__tab::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #1c4886, #0c1c38);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.dc__tab:hover::before { transform: scaleX(1); }
.dc__tab:hover { color: #fff; border-color: transparent; }

.dc__tab-label {
  position: relative;
  z-index: 1;
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 600;
  line-height: 1.3;
}
.dc__tab-ic {
  position: relative;
  z-index: 1;
  flex: none;
  width: 22px;
  height: 22px;
  color: var(--brand);
  transition: color 0.35s var(--ease), transform 0.35s var(--ease);
}
.dc__tab:hover .dc__tab-ic { color: #fff; transform: translateY(2px); }

/* ===================================================================
   Footer — dark blue, white text (SRF-style)
   =================================================================== */
.footer {
  scroll-snap-align: none;
  color: #fff;
  background: linear-gradient(100deg, #0a1830 0%, #16386a 55%, #0d2549 100%);
}
.footer__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(16px, 1.8vw, 24px) clamp(24px, 4vw, 70px);
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: clamp(12px, 1.4vw, 16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.footer__links { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.footer__links a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(14px, 1vw, 16px);
  letter-spacing: 0.01em;
}
.footer__links a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer__sep { color: rgba(255, 255, 255, 0.45); }

.footer__social { display: flex; align-items: center; gap: 16px; }
.footer__connect { font-weight: 700; font-size: clamp(14px, 1vw, 16px); margin-right: 4px; }
.footer__social a {
  color: #fff;
  display: inline-flex;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.footer__social a:hover { transform: translateY(-2px); opacity: 0.78; }
.footer__social svg { height: 19px; width: auto; fill: currentColor; display: block; }
.pi .mobimg
{
  display: none;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px 24px;
  padding-top: clamp(10px, 1.2vw, 14px);
  font-size: clamp(12px, 0.85vw, 14px);
  color: rgba(255, 255, 255, 0.7);
}
.footer__bottom p { margin: 0; }

@media (max-width: 760px) {
  .footer__top { flex-direction: column; align-items: flex-start; }
  .footer__bottom { flex-direction: column; }
}

/* ===================================================================
   Side Menu (slide-in drawer)
   =================================================================== */
.menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}
.menu.is-open { visibility: visible; pointer-events: auto; }

.menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 14, 28, 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.menu.is-open .menu__backdrop { opacity: 1; }

.menu__panel {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: min(460px, 92vw);
  background:
    linear-gradient(205deg, #12294a 0%, var(--ink) 60%, #081223 100%);
  border-left: 1px solid rgba(111, 158, 214, 0.22);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.45);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  will-change: transform;
}
.menu.is-open .menu__panel { transform: translateX(0); }

/* Header */
.menu__head {
  flex: none;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 26px;
  border-bottom: 1px solid rgba(111, 158, 214, 0.16);
}
.menu__head-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.menu__close {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.menu__close:hover { background: rgba(255, 255, 255, 0.16); border-color: rgba(255,255,255,0.4); }

/* Scrollable body */
.menu__body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 26px 26px 40px;
  -webkit-overflow-scrolling: touch;
}
.menu__body::-webkit-scrollbar { width: 8px; }
.menu__body::-webkit-scrollbar-thumb {
  background: rgba(111, 158, 214, 0.3); border-radius: 8px;
}

.menu__group {
  border-bottom: 1px solid rgba(111, 158, 214, 0.16);
}

/* Accordion header (button) */
.menu__title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 2px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s var(--ease);
}
.menu__title:hover,
.menu__title[aria-expanded="true"] { color: var(--brand-lite); }

.menu__chev {
  flex: none;
  width: 18px; height: 18px;
  color: var(--brand-lite);
  transition: transform 0.35s var(--ease);
}
.menu__title[aria-expanded="true"] .menu__chev { transform: rotate(180deg); }

/* Collapsible region — animated via grid-template-rows */
.menu__collapse {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s var(--ease);
}
.menu__group.is-expanded .menu__collapse { grid-template-rows: 1fr; }

.menu__list {
  list-style: none;
  overflow: hidden;
  min-height: 0;
}
.menu__group.is-expanded .menu__list { padding-bottom: 12px; }

.menu__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  margin: 0 -12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 14.5px;
  line-height: 1.3;
  letter-spacing: 0.005em;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease),
              padding-left 0.2s var(--ease);
}
.menu__link:hover,
.menu__link:focus-visible {
  background: rgba(111, 158, 214, 0.12);
  color: #fff;
  padding-left: 18px;
  outline: none;
}

/* Download (yellow-marked) items */
.menu__link--dl { color: rgba(255, 255, 255, 0.92); }
.menu__dl-ic {
  flex: none;
  width: 16px; height: 16px;
  margin-left: auto;
  color: var(--gold);
  transition: transform 0.2s var(--ease);
}
.menu__link--dl:hover .menu__dl-ic { transform: translateY(2px); }

/* ===================================================================
   Responsive
   =================================================================== */

/* Tablet & below — stack the About section (image on top, content below) */
@media (max-width: 900px) {
  /* Variable-height stacked sections: don't force-snap, avoid scroll trapping */
  .snap { scroll-snap-type: y proximity; }
  .snap__section { scroll-snap-stop: normal; }

  .about {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: 100vh;
    min-height: 100dvh;
    height: auto;
  }
  .about__media { height: 42vh; min-height: 260px; }
  .about__content { padding: clamp(32px, 7vw, 56px); }
  .about__inner { max-width: none; }

  /* Service Offerings — stack */
  .services {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
  }
  .services__content { padding: clamp(32px, 7vw, 56px); }
  .services__inner { max-width: none; }
  .services__right {
    padding: 0 clamp(24px, 6vw, 48px) clamp(36px, 8vw, 56px);
  }
  .svc__viewport { height: auto; }
  .svc__page { height: auto; }
  .svc__card { flex: none; min-height: 88px; }

  /* Performance Insights — stack stats to 2 per row */
  .pi {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    background-attachment: scroll;
  }
  .pi__grid { grid-template-columns: repeat(6, 1fr); }
  .pi__stat,
  .pi__stat:nth-child(n+4) { grid-column: span 3; }   /* 2 per row */
  .pi__stat { border-top: 1px solid rgba(45, 93, 169, 0.22); padding-top: 18px; }
  .pi__stat:nth-child(odd) { border-left: none; }
  .pi__stat:nth-child(even) { border-left: 1px solid rgba(45, 93, 169, 0.22); }
  .pi__stat:nth-child(1),
  .pi__stat:nth-child(2) { border-top: none; padding-top: 4px; }

  /* Business Model — vertical accordion */
  .bm { height: auto; min-height: 100vh; min-height: 100dvh; }
  .bm__strips { flex-direction: column; height: auto; }
  .bm__strip,
  .bm__strip.is-open { width: 100%; border-left: none; border-top: 1px solid rgba(45, 93, 169, 0.18); transition: none; overflow: visible; }
  .bm__strip:first-child { border-top: none; }
  .bm__tab {
    position: relative;
    width: 100%;
    height: 60px;
    justify-content: flex-start;
    padding: 0 22px;
  }
  .bm__tab-text { writing-mode: horizontal-tb; transform: none; }
  .bm__strip.is-open .bm__tab { display: none; }
  .bm__panel { position: relative; opacity: 1; }
  .bm__strip:not(.is-open) .bm__panel { display: none; }
  .bm__panel-inner { width: 100%; height: auto; padding: clamp(24px, 6vw, 40px); }
  .bm__body { overflow: visible; padding-right: 0; }
  .bm__grid { column-count: 1; }
  .bm__act-grid { grid-template-columns: repeat(2, 1fr); }
  .bm__ks-circle img { height: auto; width: 100%; }

  /* Strategic Review — stack cards */
  .sr { height: auto; min-height: 100vh; min-height: 100dvh; }
  .sr__grid { grid-template-columns: 1fr; max-width: 560px; }
  .sr__card { min-height: 0; }

  /* Value Creation — un-pin, stack image+content per capital */
  .vc { height: auto; }
  .vc__anchors { display: none; }
  .vc__sticky { position: static; height: auto; overflow: visible; }
  .vc__inner { display: flex; flex-direction: column; }
  .vc__left, .vc__right { display: contents; }
  .vc__content {
    position: relative; inset: auto; opacity: 1; transform: none; pointer-events: auto;
    max-width: none; padding: clamp(28px, 7vw, 44px);
  }
  .vc__media { position: relative; inset: auto; opacity: 1; height: 46vh; min-height: 280px; }
  .vc__nav { display: none; }
  .vc__media:nth-of-type(1) { order: 1; }  .vc__content:nth-of-type(1) { order: 2; }
  .vc__media:nth-of-type(2) { order: 3; }  .vc__content:nth-of-type(2) { order: 4; }
  .vc__media:nth-of-type(3) { order: 5; }  .vc__content:nth-of-type(3) { order: 6; }
  .vc__media:nth-of-type(4) { order: 7; }  .vc__content:nth-of-type(4) { order: 8; }
  .vc__media:nth-of-type(5) { order: 9; }  .vc__content:nth-of-type(5) { order: 10; }
  .vc__media:nth-of-type(6) { order: 11; } .vc__content:nth-of-type(6) { order: 12; }

  /* Corporate Governance — stack (diagram on top, content below) */
  .cg {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
  }
  .cg__media { order: -1; min-height: 40vh; }
  .cg__content { padding: clamp(28px, 7vw, 56px); }
  .cg__inner { max-width: none; }

  /* Download Centre — single column */
  .dc { height: auto; min-height: 100vh; min-height: 100dvh; }
  .dc__grid { grid-auto-flow: row; grid-template-columns: 1fr; grid-template-rows: none; }

  /* Awards — JS-driven auto-scroll + manual prev/next (CSS marquee off) */
  .aw__marquee {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;                 /* Firefox */
    /* wider fade at the edges reads cleaner on a narrow screen */
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }
  .aw__marquee::-webkit-scrollbar { display: none; }   /* Chrome/Safari */
  .aw__track {
    animation: none;                       /* JS drives scrollLeft instead */
    width: max-content;
    padding: 0 4px;
  }
  .aw__controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: clamp(24px, 5vh, 40px);
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 560px) {
  .pi__grid { grid-template-columns: 1fr; }
  .pi__stat,
  .pi__stat:nth-child(n+4) { grid-column: span 1; border-left: none; }
  .pi__stat:nth-child(1) { border-top: none; }
  .pi__stat:not(:nth-child(1)) { border-top: 1px solid rgba(45, 93, 169, 0.22); padding-top: 18px; }

  /* Key Highlights — tighter so the arrows aren't clipped */
  .kbh__stage { gap: 8px; width: 96%; }
  .kbh__detail { width: 62vw; }
  .kbh__arrow { width: 42px; height: 42px; }
  .kbh__year { font-size: 21px; }
}

/* Chairman — stack (image on top, content below) */
@media (max-width: 900px) {
  .chair {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    background-attachment: scroll;
  }
  .chair__photo { height: 44vh; min-height: 300px; padding-left: 0; align-items: flex-end; }
  .chair__photo img { height: 100%; }
  .chair__content { padding: clamp(28px, 7vw, 56px); }
  .chair__inner { max-width: none; }

  /* MD — stack (image on top, content below) */
  .md {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    background-attachment: scroll;
  }
  .md__photo { order: -1; height: 44vh; min-height: 300px; padding-right: 0; }
  .md__photo img { height: 100%; }
  .md__content { padding: clamp(28px, 7vw, 56px); }
  .md__inner { max-width: none; }
}

@media (max-width: 640px) {
  :root { --nav-h: 64px; }
  .btn-download__label { display: none; }       /* icon-only on mobile */
  .btn-download { padding: 0; width: 42px; justify-content: center; }
  .nav__logo img { height: 40px; }
  .menu__panel { width: 100vw; }

  .hero__content { padding: 0 22px; }
  .hero__cta { margin-top: 26px; }
  .btn-cta { height: 46px; padding: 0 22px; font-size: 13.5px; }
  .pi
  {
    background: linear-gradient(180deg, var(--sky-1), var(--sky-2));
    padding-bottom: 0;
  }
   .pi .mobimg
   {
    margin-top: 20px;
    display: block;
   }
   .pi__inner
   {
    padding-bottom: 0;
   }
}

/* ===================================================================
   Reduced motion
   =================================================================== */
@media (prefers-reduced-motion: reduce) {
  html, .snap { scroll-behavior: auto; }
  .hero__scroll svg { animation: none; }
  .nav { transition: none; }
  .services, .bm__bg, .aw__bg { animation: none; }
  .aw__track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .esg__box > * { opacity: 1; transform: none; transition: none; }
}
