:root {
  --bg: oklch(1 0 0);
  --ink: oklch(0.13 0 0);
  --muted: oklch(0.42 0 0);
  --soft: oklch(0.96 0 0);
  --soft-2: oklch(0.91 0.004 255);
  --raised: oklch(1 0 0);
  --primary: oklch(0.66 0.14 60);
  --primary-dark: oklch(0.39 0.095 58);
  --accent: oklch(0.24 0.055 165);
  --accent-soft: oklch(0.89 0.035 165);
  --line: oklch(0.13 0 0 / 0.1);
  --line-strong: oklch(0.13 0 0 / 0.18);
  --white-fog: oklch(1 0 0 / 0.76);
  --max: 1180px;
  --radius: 10px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--ink);
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

::selection {
  color: var(--bg);
  background: var(--accent);
}

.skip-link {
  position: fixed;
  left: 20px;
  top: -90px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}

.skip-link:focus {
  top: 18px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px clamp(24px, 4vw, 56px);
  color: oklch(0.7 0 0);
  background: var(--bg);
  transition: background-color 240ms var(--ease), color 240ms var(--ease), box-shadow 240ms var(--ease);
}

.site-header::after {
  content: "";
  position: absolute;
  left: clamp(24px, 4vw, 56px);
  right: clamp(24px, 4vw, 56px);
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary), var(--accent-soft));
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  transition: transform 90ms linear;
}

.is-loaded .site-header {
  animation: header-drop 560ms var(--ease) both;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: oklch(1 0 0 / 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line);
}

.brand,
.mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: Archivo, Manrope, ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
}

.brand {
  font-size: 22px;
}

.brand-mark {
  display: inline-block;
  width: 18px;
  height: 24px;
  background: currentColor;
  border-radius: 4px 999px 999px 4px;
  transform: rotate(-12deg);
}

.is-loaded .brand-mark {
  animation: mark-settle 760ms var(--ease) both;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
}

.desktop-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: background-color 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.is-active {
  color: var(--ink);
  background: var(--soft);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  transition: transform 180ms var(--ease), opacity 180ms var(--ease);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 76px 16px auto;
  z-index: 60;
  display: grid;
  padding: 12px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px) scale(0.98);
  transition: opacity 220ms var(--ease), transform 260ms var(--ease);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mobile-nav a {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 22px;
  font-weight: 750;
}

.mobile-nav a.is-active {
  color: var(--accent);
  background: var(--soft);
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  justify-items: center;
  overflow: hidden;
  padding: 72px clamp(24px, 4vw, 56px) 24px;
  color: var(--bg);
  background: var(--bg);
}

.hero::after {
  content: none;
}

.hero::before {
  content: none;
}

.is-loaded .hero::before {
  animation: none;
}

.hero-ambient {
  position: absolute;
  inset: 72px clamp(24px, 4vw, 56px) 24px;
  display: block;
  overflow: hidden;
  opacity: 1;
  transform: none;
  background:
    linear-gradient(180deg, oklch(0.05 0 0 / 0.1), oklch(0.04 0 0 / 0.88) 72%, oklch(0.03 0 0)),
    linear-gradient(135deg, oklch(0.12 0.02 165), oklch(0.045 0 0) 58%, oklch(0.11 0.025 58));
  border-radius: 16px;
  box-shadow: 0 28px 80px oklch(0.13 0 0 / 0.16);
}

.is-loaded .hero-ambient {
  animation: ambient-rise 900ms var(--ease) 120ms both;
}

.hero-ambient::before,
.hero-ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-ambient::before {
  opacity: 0.34;
  background:
    linear-gradient(90deg, transparent 0 49.7%, oklch(1 0 0 / 0.18) 49.7% 50%, transparent 50%),
    linear-gradient(0deg, transparent 0 49.7%, oklch(1 0 0 / 0.12) 49.7% 50%, transparent 50%);
  background-size: 86px 86px;
}

.is-loaded .hero-ambient::before {
  animation: ambient-grid-drift 18s linear infinite;
}

.hero-ambient::after {
  background:
    linear-gradient(180deg, transparent 0 38%, oklch(0.02 0 0 / 0.48) 70%, oklch(0.02 0 0 / 0.84)),
    linear-gradient(90deg, oklch(0.02 0 0 / 0.35), transparent 28%, transparent 72%, oklch(0.02 0 0 / 0.35));
}

.hero-board {
  position: absolute;
  top: 9%;
  left: 50%;
  width: min(1020px, 82vw);
  min-height: 500px;
  padding: clamp(14px, 2vw, 22px);
  background: oklch(1 0 0 / 0.12);
  border: 1px solid oklch(1 0 0 / 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  filter: saturate(0.82);
  opacity: 0.52;
  transform: translate(-50%, 22px) rotate(-2deg);
  will-change: transform;
}

.is-loaded .hero-board {
  animation: board-arrive 900ms var(--ease) 80ms both, board-drift 9s ease-in-out 1300ms infinite;
}

.board-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 4px 16px;
  color: oklch(1 0 0 / 0.72);
  font-size: 12px;
  font-weight: 700;
}

.board-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.72fr 0.72fr;
  grid-auto-rows: minmax(138px, auto);
  gap: 12px;
}

.board-card,
.route-map {
  padding: 18px;
  background: oklch(1 0 0 / 0.16);
  border: 1px solid oklch(1 0 0 / 0.15);
  border-radius: var(--radius);
}

.board-card {
  transition: background-color 260ms var(--ease), border-color 260ms var(--ease), transform 260ms var(--ease);
}

.board-card.is-live {
  background: oklch(1 0 0 / 0.22);
  border-color: oklch(1 0 0 / 0.34);
  transform: translateY(-3px);
}

.board-card.is-live strong {
  animation: number-brighten 900ms var(--ease) both;
}

.is-loaded .board-card,
.is-loaded .route-map {
  animation: card-lift 720ms var(--ease) both;
}

.is-loaded .board-card:nth-child(1) { animation-delay: 360ms; }
.is-loaded .board-card:nth-child(2) { animation-delay: 430ms; }
.is-loaded .board-card:nth-child(3) { animation-delay: 500ms; }
.is-loaded .route-map { animation-delay: 570ms; }

.board-card {
  display: grid;
  align-content: space-between;
}

.board-card.is-large {
  grid-row: span 2;
}

.card-kicker {
  color: oklch(1 0 0 / 0.72);
  font-size: 13px;
  font-weight: 700;
}

.board-card strong {
  margin-top: 18px;
  font-size: 78px;
  line-height: 0.9;
}

.board-card small {
  color: oklch(1 0 0 / 0.7);
  font-size: 13px;
}

.route-map {
  position: relative;
  grid-column: span 2;
  min-height: 170px;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49%, oklch(1 0 0 / 0.12) 49% 50%, transparent 50%),
    linear-gradient(0deg, transparent 49%, oklch(1 0 0 / 0.12) 49% 50%, transparent 50%),
    oklch(1 0 0 / 0.12);
  background-size: 52px 52px;
}

.route-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, oklch(1 0 0 / 0.18), transparent);
  transform: translateX(-100%);
}

.is-loaded .route-map::after {
  animation: map-sweep 4.4s var(--ease) 1.1s infinite;
}

.pin {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--primary);
  border: 3px solid var(--bg);
  border-radius: 50%;
}

.pin::after {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px solid oklch(1 0 0 / 0.46);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.6);
}

.is-loaded .pin::after {
  animation: pin-pulse 2.8s ease-out infinite;
}

.p2::after { animation-delay: 420ms; }
.p3::after { animation-delay: 820ms; }
.p4::after { animation-delay: 1240ms; }

.p1 { left: 18%; top: 34%; }
.p2 { left: 42%; top: 58%; }
.p3 { left: 66%; top: 28%; }
.p4 { left: 78%; top: 68%; }

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(880px, 100%);
  margin: 0 0 clamp(54px, 8vh, 86px);
  text-align: center;
}

.hero-copy::before {
  content: none;
}

.is-loaded .hero-copy {
  animation: hero-copy-in 820ms var(--ease) 260ms both;
}

.hero-label,
.section-note {
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: 86px;
  font-family: Archivo, Manrope, ui-sans-serif, system-ui, sans-serif;
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: 72px;
  font-family: Archivo, Manrope, ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 34px;
  font-family: Archivo, Manrope, ui-sans-serif, system-ui, sans-serif;
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-copy p:not(.hero-label),
.section-heading p,
.compliance-copy p,
.cta p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: color-mix(in oklch, currentColor 74%, transparent);
  font-size: 21px;
  line-height: 1.45;
  text-wrap: pretty;
}

.hero-actions,
.cta-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 820px;
  margin: 34px auto 0;
}

.button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  min-height: 62px;
  padding: 18px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  transition: transform 180ms var(--ease), background-color 180ms var(--ease), color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0 34%, oklch(1 0 0 / 0.28) 48%, transparent 62% 100%);
  transform: translateX(-120%);
  transition: transform 480ms var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(120%);
}

.button:active {
  transform: translateY(0) scale(0.985);
}

.button.is-pressing {
  animation: button-press 260ms var(--ease);
}

.button-light {
  color: var(--ink);
  background: oklch(1 0 0 / 0.9);
}

.button-light:hover,
.button-light:focus-visible {
  box-shadow: 0 8px 0 oklch(1 0 0 / 0.18);
}

.button-dark {
  color: var(--bg);
  background: oklch(0.06 0 0 / 0.68);
  border-color: oklch(1 0 0 / 0.13);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: oklch(0.09 0 0 / 0.82);
}

.quote-section,
.banks,
.operations,
.services,
.leaders {
  padding: clamp(88px, 12vw, 148px) clamp(20px, 5vw, 56px);
}

.quote-section {
  background: var(--bg);
}

.quote-shell,
.section-heading,
.compliance,
.coverage,
.cta-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.quote-shell h2 {
  max-width: 1080px;
  font-size: 84px;
}

.mini-brand {
  margin-bottom: 44px;
  color: var(--ink);
  font-size: 20px;
}

.section-note {
  color: var(--muted);
}

.quote-meta {
  display: grid;
  gap: 3px;
  margin-top: 32px;
  font-size: 13px;
  font-weight: 800;
}

.quote-meta span {
  color: var(--muted);
  font-weight: 600;
}

.stats-grid {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 92px auto 0;
}

.stat-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  padding: clamp(22px, 4vw, 40px);
  background: var(--raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.stat-card span {
  max-width: 260px;
  color: var(--muted);
  font-size: 17px;
}

.stat-card strong {
  width: 100%;
  align-self: center;
  text-align: center;
  font-size: 78px;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.banks {
  background: var(--soft);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  margin-bottom: clamp(46px, 7vw, 78px);
}

.section-heading.centered {
  display: block;
  max-width: 860px;
  text-align: center;
}

.bank-grid {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
}

.bank-mark {
  --logo-w: 170px;
  --logo-h: 58px;
  position: relative;
  min-height: 142px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 22px 18px 18px;
  overflow: hidden;
  color: var(--ink);
  background: var(--bg);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
  transition: transform 220ms var(--ease), background-color 220ms var(--ease);
}

.bank-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 38%, color-mix(in oklch, currentColor 18%, transparent) 50%, transparent 62% 100%);
  opacity: 0;
  transform: translateX(-80%);
  transition: opacity 220ms var(--ease), transform 520ms var(--ease);
}

.bank-mark:hover,
.bank-mark:focus-within {
  background: oklch(0.985 0 0);
  transform: translateY(-3px);
}

.bank-mark:hover::after,
.bank-mark:focus-within::after {
  opacity: 1;
  transform: translateX(80%);
}

.bank-logo-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 210px);
  height: 62px;
  display: grid;
  place-items: center;
}

.bank-mark img {
  display: block;
  width: auto;
  max-width: min(100%, var(--logo-w));
  max-height: var(--logo-h);
  object-fit: contain;
  filter: saturate(0.96) contrast(1.01);
  transition: transform 260ms var(--ease), filter 260ms var(--ease);
}

.bank-mark figcaption {
  position: relative;
  z-index: 1;
  max-width: 20ch;
  margin: 0;
  color: color-mix(in oklch, var(--ink) 68%, transparent);
}

.bank-mark:hover img,
.bank-mark:focus-within img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.035);
}

.bank-mark.is-visible img {
  animation: bank-logo-arrive 640ms var(--ease) both;
}

.hdfc { --logo-w: 176px; --logo-h: 50px; color: oklch(0.38 0.14 260); }
.axis { --logo-w: 168px; --logo-h: 52px; color: oklch(0.35 0.16 20); }
.icici { --logo-w: 166px; --logo-h: 48px; color: oklch(0.52 0.14 52); }
.kotak { --logo-w: 172px; --logo-h: 54px; color: oklch(0.36 0.13 255); }
.yes { --logo-w: 156px; --logo-h: 54px; color: oklch(0.42 0.15 260); }
.idfc { --logo-w: 174px; --logo-h: 56px; color: oklch(0.42 0.15 25); }
.au { --logo-w: 164px; --logo-h: 58px; color: oklch(0.47 0.11 45); }
.rbl { --logo-w: 142px; --logo-h: 54px; color: oklch(0.34 0.09 238); }
.psb { --logo-w: 178px; --logo-h: 58px; color: oklch(0.38 0.09 155); }
.bob { --logo-w: 176px; --logo-h: 62px; color: oklch(0.61 0.16 54); }
.union { --logo-w: 176px; --logo-h: 58px; color: oklch(0.42 0.16 30); }
.sbi { --logo-w: 170px; --logo-h: 58px; color: oklch(0.48 0.14 245); }

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

.ops-panel {
  position: relative;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: clamp(18px, 3vw, 32px);
  background: var(--soft-2);
  border-radius: var(--radius);
  overflow: hidden;
}

.ops-panel::before {
  content: "";
  display: block;
  height: 3px;
  margin: calc(clamp(18px, 3vw, 32px) * -1) calc(clamp(18px, 3vw, 32px) * -1) clamp(18px, 3vw, 32px);
  background: linear-gradient(90deg, var(--accent), var(--primary), var(--accent));
  transform: translateX(-100%);
}

.ops-panel.is-visible::before {
  animation: panel-progress 1100ms var(--ease) 180ms both;
}

.ops-panel::after {
  content: "";
  position: absolute;
  inset: 3px 0 auto;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(180deg, oklch(1 0 0 / 0.28), transparent);
  opacity: 0;
  transform: translateY(-100%);
}

.ops-panel.is-visible::after {
  animation: ops-scan 3600ms var(--ease) 700ms infinite;
}

.ops-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.ops-toolbar button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  color: var(--bg);
  background: var(--accent);
  border: 0;
  border-radius: 999px;
  font-weight: 800;
}

.ops-toolbar button::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 oklch(0.66 0.14 60 / 0.35);
  animation: live-dot 1700ms ease-out infinite;
}

.ops-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 14px;
}

.case-table,
.ops-side article {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.case-table {
  padding: 12px;
}

.table-row {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.72fr 0.58fr;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  transition: background-color 180ms var(--ease), transform 180ms var(--ease);
}

.table-row:not(.table-head):hover,
.table-row.is-active {
  background: var(--soft);
  transform: translateX(4px);
}

.table-row.is-active {
  background: oklch(0.97 0.014 165);
}

.table-row:last-child {
  border-bottom: 0;
}

.table-head {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.status {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.is-loaded .status {
  animation: status-breathe 3.2s ease-in-out infinite;
}

.approved {
  color: var(--accent);
  background: var(--accent-soft);
}

.pending {
  color: var(--primary-dark);
  background: oklch(0.92 0.06 70);
}

.flagged {
  color: oklch(0.38 0.12 28);
  background: oklch(0.9 0.04 30);
}

.ops-side {
  display: grid;
  gap: 14px;
}

.ops-side article {
  min-height: 126px;
  display: grid;
  align-content: space-between;
  padding: 20px;
  transition: background-color 220ms var(--ease), transform 220ms var(--ease);
}

.ops-side article:hover {
  background: oklch(0.985 0 0);
  transform: translateY(-3px);
}

.ops-side span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.ops-side strong {
  font-size: 26px;
  line-height: 1;
}

.services {
  background: var(--soft);
}

.service-list {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(24px, 3.5vw, 34px);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 220ms var(--ease), background-color 220ms var(--ease), border-color 220ms var(--ease);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms var(--ease);
}

.service-card:hover,
.service-card:focus-within {
  background: oklch(0.985 0 0);
  border-color: var(--line-strong);
  transform: translateY(-5px);
}

.service-card:hover::before,
.service-card:focus-within::before {
  transform: scaleX(1);
}

.service-card span {
  width: fit-content;
  min-width: 58px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  padding: 0 13px;
  color: var(--bg);
  background: var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 220ms var(--ease), background-color 220ms var(--ease);
}

.service-card:hover span,
.service-card:focus-within span {
  background: var(--accent);
  transform: translateY(-3px);
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.compliance {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  padding: clamp(92px, 12vw, 148px) clamp(20px, 5vw, 56px);
}

.compliance-copy h2,
.compliance-copy p {
  margin-left: 0;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.credential-grid div {
  min-height: 154px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  background: var(--bg);
}

dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.1;
}

.coverage {
  padding: clamp(88px, 12vw, 148px) clamp(20px, 5vw, 56px);
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.coverage-map {
  position: relative;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: clamp(14px, 2vw, 22px);
  overflow: hidden;
  color: var(--bg);
  background:
    linear-gradient(115deg, oklch(0.66 0.14 60 / 0.16), transparent 38%),
    linear-gradient(295deg, oklch(0.24 0.055 165 / 0.68), transparent 42%),
    linear-gradient(135deg, oklch(0.13 0 0), oklch(0.055 0 0));
  border: 1px solid oklch(1 0 0 / 0.1);
  border-radius: var(--radius);
}

.map-toolbar,
.map-footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: oklch(1 0 0 / 0.68);
  font-size: 12px;
  font-weight: 800;
}

.map-toolbar {
  margin-bottom: 14px;
}

.map-footer {
  margin-top: 14px;
}

.map-canvas {
  position: relative;
  min-height: clamp(680px, 64vw, 820px);
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 0 49%, oklch(1 0 0 / 0.08) 49% 50%, transparent 50%),
    linear-gradient(0deg, transparent 0 49%, oklch(1 0 0 / 0.08) 49% 50%, transparent 50%),
    linear-gradient(135deg, oklch(1 0 0 / 0.1), transparent 48%);
  background-size: 64px 64px, 64px 64px, auto;
  border: 1px solid oklch(1 0 0 / 0.12);
  border-radius: var(--radius);
}

.map-canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0 44%, oklch(1 0 0 / 0.12) 50%, transparent 56% 100%);
  opacity: 0;
  transform: translateX(-72%);
}

.js .coverage-map.is-visible .map-canvas::after {
  animation: map-scan 3400ms var(--ease) 850ms both;
}

.coverage-map::after {
  content: none;
}

.map-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.india-outline {
  fill: oklch(1 0 0 / 0.08);
  stroke: oklch(1 0 0 / 0.34);
  stroke-width: 0.42;
  vector-effect: non-scaling-stroke;
}

.map-belt {
  fill: oklch(0.66 0.14 60 / 0.24);
  stroke: oklch(0.66 0.14 60 / 0.64);
  stroke-width: 0.5;
  stroke-dasharray: 1.2 1.2;
  vector-effect: non-scaling-stroke;
}

.js .coverage-map.is-visible .map-belt {
  animation: belt-pulse 2600ms ease-in-out 900ms infinite;
}

.route-start {
  stop-color: var(--primary);
}

.route-end {
  stop-color: var(--accent-soft);
}

.map-route {
  fill: none;
  stroke: url(#routeGlow);
  stroke-width: 0.72;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 0;
  vector-effect: non-scaling-stroke;
}

.secondary-route {
  opacity: 0.74;
  stroke-width: 0.56;
  stroke-dasharray: 180;
  stroke-dashoffset: 0;
}

.map-nameplate {
  position: absolute;
  right: clamp(18px, 4vw, 46px);
  bottom: clamp(18px, 4vw, 42px);
  z-index: 3;
  display: grid;
  gap: 4px;
  max-width: 260px;
  padding: 14px 16px;
  color: var(--ink);
  background: oklch(1 0 0 / 0.9);
  border: 1px solid oklch(1 0 0 / 0.24);
  border-radius: var(--radius);
}

.map-nameplate strong {
  font-size: 26px;
  line-height: 1;
}

.map-nameplate span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.js .map-route {
  stroke-dashoffset: 220;
}

.js .secondary-route {
  stroke-dashoffset: 180;
}

.js .coverage-map.is-visible .map-route {
  animation: route-draw 1500ms var(--ease) 220ms both;
}

.js .coverage-map.is-visible .secondary-route {
  animation-delay: 460ms;
}

.map-node {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 3;
  width: 0;
  height: 0;
  color: var(--bg);
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}

.js .map-node {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
}

.js .coverage-map.is-visible .map-node {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.map-node:nth-of-type(2) { transition-delay: 50ms; }
.map-node:nth-of-type(3) { transition-delay: 100ms; }
.map-node:nth-of-type(4) { transition-delay: 150ms; }
.map-node:nth-of-type(5) { transition-delay: 200ms; }
.map-node:nth-of-type(6) { transition-delay: 250ms; }
.map-node:nth-of-type(7) { transition-delay: 300ms; }
.map-node:nth-of-type(8) { transition-delay: 350ms; }
.map-node:nth-of-type(9) { transition-delay: 400ms; }
.map-node:nth-of-type(10) { transition-delay: 450ms; }
.map-node:nth-of-type(11) { transition-delay: 500ms; }
.map-node:nth-of-type(12) { transition-delay: 550ms; }
.map-node:nth-of-type(13) { transition-delay: 600ms; }
.map-node:nth-of-type(14) { transition-delay: 650ms; }
.map-node:nth-of-type(15) { transition-delay: 700ms; }

.map-node i {
  position: absolute;
  left: 0;
  top: 0;
  width: 13px;
  height: 13px;
  background: var(--primary);
  border: 3px solid var(--bg);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.map-node i::after {
  content: "";
  position: absolute;
  inset: -11px;
  border: 1px solid oklch(1 0 0 / 0.42);
  border-radius: 50%;
  opacity: 0;
}

.js .coverage-map.is-visible .map-node i::after {
  animation: map-node-pulse 3s ease-out infinite;
}

.map-node.hq i {
  width: 18px;
  height: 18px;
  background: var(--bg);
  border-color: var(--primary);
}

.node-label {
  position: absolute;
  left: var(--lx, 18px);
  top: var(--ly, -34px);
  min-width: max-content;
  padding: 8px 10px;
  color: var(--ink);
  background: oklch(1 0 0 / 0.92);
  border: 1px solid oklch(1 0 0 / 0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.node-label b,
.node-label em {
  display: block;
}

.node-label em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.map-node.hq .node-label,
.map-node.ncr .node-label,
.map-node:hover .node-label,
.map-node:focus-within .node-label {
  opacity: 1;
  transform: translateY(0);
}

.leaders {
  background: var(--soft);
}

.leader-grid {
  width: min(940px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.leader-grid article {
  min-height: 290px;
  display: grid;
  align-content: space-between;
  padding: clamp(24px, 4vw, 40px);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.leader-grid span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--bg);
  background: var(--ink);
  border-radius: 50%;
  font-weight: 800;
}

.leader-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.cta {
  padding: clamp(20px, 4vw, 42px);
  color: var(--bg);
  background: var(--ink);
}

.cta-inner {
  min-height: 88svh;
  display: grid;
  place-items: center;
  align-content: center;
  padding: clamp(70px, 12vw, 140px) 0;
  text-align: center;
}

.cta h2 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cta address {
  max-width: 760px;
  margin: 42px auto 0;
  color: oklch(1 0 0 / 0.66);
  font-style: normal;
  font-size: 16px;
}

.reveal,
.bank-mark,
.table-row:not(.table-head),
.credential-grid div,
.ops-side article,
.leader-grid article {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal,
.js .bank-mark,
.js .table-row:not(.table-head),
.js .credential-grid div,
.js .ops-side article,
.js .leader-grid article {
  opacity: 0.88;
  transform: translateY(14px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.js .reveal.is-visible,
.js .bank-mark.is-visible,
.js .table-row.is-visible,
.js .credential-grid div.is-visible,
.js .ops-side article.is-visible,
.js .leader-grid article.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .bank-mark.is-visible:hover,
.js .bank-mark.is-visible:focus-within {
  transform: translateY(-3px);
}

.js .table-row.is-visible.is-active,
.js .table-row.is-visible:not(.table-head):hover {
  transform: translateX(4px);
}

.js .ops-side article.is-visible:hover {
  transform: translateY(-3px);
}

.js .service-card.reveal.is-visible:hover,
.js .service-card.reveal.is-visible:focus-within {
  transform: translateY(-5px);
}

.js .bank-mark:nth-child(2n),
.js .service-card:nth-child(2),
.js .stat-card:nth-child(2),
.js .ops-side article:nth-child(2),
.js .leader-grid article:nth-child(2) {
  transition-delay: 70ms;
}

.js .bank-mark:nth-child(3n),
.js .service-card:nth-child(3),
.js .stat-card:nth-child(3),
.js .ops-side article:nth-child(3) {
  transition-delay: 140ms;
}

@keyframes header-drop {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mark-settle {
  0% {
    opacity: 0;
    transform: rotate(-30deg) scale(0.76);
  }
  100% {
    opacity: 1;
    transform: rotate(-12deg) scale(1);
  }
}

@keyframes hero-scan {
  0% {
    opacity: 0;
    transform: translateX(-28%);
  }
  22% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(34%);
  }
}

@keyframes ambient-rise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes ambient-grid-drift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 86px 0, 0 86px;
  }
}

@keyframes board-arrive {
  from {
    opacity: 0;
    transform: translate(-50%, 36px) rotate(-4deg) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 22px) rotate(-2deg) scale(1);
  }
}

@keyframes board-drift {
  0%,
  100% {
    transform: translate(-50%, 22px) rotate(-2deg);
  }
  50% {
    transform: translate(-50%, 10px) rotate(-1.4deg);
  }
}

@keyframes card-lift {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes number-brighten {
  0% {
    filter: brightness(0.92);
  }
  45% {
    filter: brightness(1.2);
  }
  100% {
    filter: brightness(1);
  }
}

@keyframes map-sweep {
  0%,
  32% {
    transform: translateX(-100%);
  }
  70%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes pin-pulse {
  0% {
    opacity: 0.7;
    transform: scale(0.6);
  }
  72%,
  100% {
    opacity: 0;
    transform: scale(1.9);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes button-press {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(0.965);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes panel-progress {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes ops-scan {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  18%,
  46% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
    transform: translateY(260%);
  }
}

@keyframes live-dot {
  0% {
    box-shadow: 0 0 0 0 oklch(0.66 0.14 60 / 0.38);
  }
  70%,
  100% {
    box-shadow: 0 0 0 9px oklch(0.66 0.14 60 / 0);
  }
}

@keyframes status-breathe {
  0%,
  100% {
    filter: saturate(1);
  }
  50% {
    filter: saturate(1.25);
  }
}

@keyframes route-draw {
  from {
    stroke-dashoffset: 220;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes belt-pulse {
  0%,
  100% {
    fill: oklch(0.66 0.14 60 / 0.18);
    stroke-opacity: 0.58;
  }
  50% {
    fill: oklch(0.66 0.14 60 / 0.3);
    stroke-opacity: 0.95;
  }
}

@keyframes map-node-pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.55);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.9);
  }
}

@keyframes map-scan {
  0% {
    opacity: 0;
    transform: translateX(-72%);
  }
  18%,
  62% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(72%);
  }
}

@keyframes bank-logo-arrive {
  from {
    opacity: 0;
    transform: scale(0.82);
    filter: blur(8px) saturate(0.72);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0) saturate(0.96) contrast(1.01);
  }
}

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 4px;
}

@media (max-width: 960px) {
  h1 {
    font-size: 68px;
  }

  h2,
  .quote-shell h2 {
    font-size: 54px;
  }

  h3 {
    font-size: 30px;
  }

  .hero-copy p:not(.hero-label),
  .section-heading p,
  .compliance-copy p,
  .cta p {
    font-size: 19px;
  }

  .board-card strong {
    font-size: 56px;
  }

  .stat-card strong {
    font-size: 62px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header {
    color: var(--ink);
  }

  .site-header.is-scrolled,
  body.menu-open .site-header {
    color: var(--ink);
    background: oklch(1 0 0 / 0.94);
  }

  .hero {
    align-items: end;
    padding-top: 72px;
  }

  .hero-ambient {
    inset: 72px 16px 16px;
  }

  .hero-board {
    top: 8%;
    width: min(760px, 94vw);
    min-height: 430px;
  }

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

  .board-card.is-large,
  .route-map {
    grid-column: span 2;
  }

  .hero-copy {
    margin-bottom: 52px;
  }

  .stats-grid,
  .service-list,
  .ops-layout,
  .section-heading,
  .compliance {
    grid-template-columns: 1fr;
  }

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

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

  .compliance {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 42px;
    line-height: 1.05;
  }

  h2,
  .quote-shell h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 27px;
  }

  .hero-copy p:not(.hero-label),
  .section-heading p,
  .compliance-copy p,
  .cta p {
    font-size: 17px;
  }

  .hero {
    min-height: 100svh;
    padding: 72px 16px 16px;
  }

  .hero-copy {
    position: absolute;
    left: 50vw;
    bottom: 44px;
    width: calc(100vw - 48px);
    max-width: 350px;
    margin: 0;
    padding: 0 8px;
    justify-self: center;
    text-align: center;
    transform: translateX(-50%);
  }

  .is-loaded .hero-copy {
    animation: hero-copy-in-mobile 820ms var(--ease) 260ms both;
  }

  .hero-label {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    font-size: 10px;
    line-height: 1.35;
    white-space: normal;
  }

  .hero-copy p:not(.hero-label) {
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: break-word;
  }

  .hero-actions,
  .cta-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .button {
    width: 100%;
    min-height: 58px;
    padding: 16px 20px;
  }

  .hero-board {
    top: 11%;
    width: calc(100vw - 32px);
    max-width: 390px;
    min-height: 430px;
    opacity: 0.08;
    filter: saturate(0.62) blur(1px);
    transform: translate(-50%, 8px) rotate(-2deg);
  }

  .is-loaded .hero-board {
    animation: board-arrive-mobile 900ms var(--ease) 80ms both, board-drift-mobile 9s ease-in-out 1300ms infinite;
  }

  .board-grid {
    gap: 8px;
  }

  .board-card,
  .route-map {
    padding: 14px;
  }

  .quote-section,
  .banks,
  .operations,
  .services,
  .leaders,
  .coverage {
    padding-left: 20px;
    padding-right: 20px;
  }

  .stats-grid {
    margin-top: 54px;
  }

  .stat-card {
    min-height: 220px;
  }

  .stat-card strong {
    font-size: 54px;
  }

  .bank-grid,
  .leader-grid,
  .credential-grid,
  .ops-side {
    grid-template-columns: 1fr;
  }

  .bank-mark {
    min-height: 96px;
    justify-content: center;
    gap: 12px;
  }

  .ops-panel {
    padding: 12px;
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 6px;
    align-items: start;
    padding: 14px;
  }

  .table-head {
    display: none;
  }

  .coverage-map {
    padding: 12px;
  }

  .map-toolbar,
  .map-footer {
    display: grid;
    gap: 5px;
  }

  .map-canvas {
    min-height: 560px;
  }

  .node-label {
    font-size: 12px;
    white-space: nowrap;
  }

  .map-node:not(.priority) .node-label {
    display: none;
  }
}

@keyframes board-arrive-mobile {
  from {
    opacity: 0;
    transform: translate(-50%, 34px) rotate(-4deg) scale(0.97);
  }
  to {
    opacity: 0.08;
    transform: translate(-50%, 8px) rotate(-2deg) scale(1);
  }
}

@keyframes board-drift-mobile {
  0%,
  100% {
    transform: translate(-50%, 8px) rotate(-2deg);
  }
  50% {
    transform: translate(-50%, -4px) rotate(-1.4deg);
  }
}

@keyframes hero-copy-in-mobile {
  from {
    opacity: 0;
    transform: translate(-50%, 18px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
    filter: blur(0);
  }
}

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

  .js .reveal,
  .js .bank-mark,
  .js .table-row:not(.table-head),
  .js .credential-grid div,
  .js .ops-side article,
  .js .leader-grid article,
  .js .map-node {
    opacity: 1;
    transform: none;
  }

  .js .map-route,
  .js .secondary-route {
    stroke-dashoffset: 0;
  }

  .is-loaded .hero-board,
  .is-loaded .hero-ambient,
  .is-loaded .hero-copy,
  .is-loaded .brand-mark,
  .is-loaded .site-header,
  .is-loaded .board-card,
  .is-loaded .route-map,
  .is-loaded .pin::after,
  .is-loaded .status,
  .board-card.is-live strong,
  .bank-mark.is-visible img,
  .ops-toolbar button::before,
  .map-node i::after,
  .coverage-map.is-visible .map-belt,
  .hero-ambient::before,
  .map-canvas::after,
  .ops-panel.is-visible::after,
  .coverage-map.is-visible .map-route,
  .hero::before,
  .route-map::after,
  .ops-panel.is-visible::before {
    animation: none !important;
  }
}
