:root {
  color-scheme: light;
  --ink: #090f18;
  --muted: #5e6876;
  --line: #dce2f4;
  --paper: #f7f8ff;
  --paper-strong: #ffffff;
  --sand: #eef1ff;
  --blue: #1b2a80;
  --blue-light: #4b63d8;
  --blue-mid: #263a9b;
  --brand-blue: #1b2a80;
  --shadow: 0 28px 80px rgba(33, 40, 52, 0.14);
  --radius-xl: 34px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 4%, rgba(27, 42, 128, 0.13), transparent 26rem),
    radial-gradient(circle at 92% 12%, rgba(75, 99, 216, 0.1), transparent 24rem),
    var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

p,
li {
  overflow-wrap: break-word;
}

h1,
h2 {
  text-wrap: balance;
}

h3,
h4 {
  text-wrap: pretty;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(27, 42, 128, 0.9);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.container > *,
.subpage-hero-grid > *,
.home-services-head > *,
.home-service-showcase > *,
.split-layout > *,
.section-heading > *,
.contact-shell > *,
.contact-layout > *,
.fintech-hero-grid > *,
.payments-grid > *,
.product-card-grid > *,
.interface-grid > *,
.dev-grid > *,
.venture-grid > *,
.trade-secondary-grid > *,
.footer-main > * {
  min-width: 0;
}

.section-padding {
  padding-block: clamp(2.4rem, 4vw, 4.2rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(9, 15, 24, 0.1);
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 40px rgba(9, 15, 24, 0.045);
}

.nav-shell {
  width: min(calc(100% - 3rem), 1120px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 190px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand img {
  width: 100%;
  height: auto;
  filter: contrast(1.08) saturate(1.06);
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.65rem);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.site-nav a {
  position: relative;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 0;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 820;
  color: #435063;
  transition:
    color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  border-radius: 999px;
  content: "";
  background: var(--blue-mid);
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: center;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.nav-cta,
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 1.35rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.nav-cta,
.btn-dark {
  background: var(--ink);
  color: white;
  box-shadow: 0 18px 40px rgba(9, 15, 24, 0.18);
}

.nav-cta {
  min-height: 42px;
  padding-inline: 1.05rem;
  font-size: 0.9rem;
}

.btn-light {
  border-color: rgba(9, 15, 24, 0.12);
  background: white;
  color: var(--ink);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.btn-light:hover {
  border-color: rgba(9, 15, 24, 0.28);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(9, 15, 24, 0.12);
  border-radius: 14px;
  background: white;
  box-shadow: 0 12px 28px rgba(9, 15, 24, 0.08);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
}

.subpage-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.8rem, 5vw, 5rem);
  border-bottom: 1px solid rgba(9, 15, 24, 0.08);
}

.subpage-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(9, 15, 24, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 15, 24, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.subpage-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(260px, 0.66fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: end;
}

.subpage-hero h1 {
  max-width: 840px;
  font-size: clamp(1.9rem, 3.7vw, 3.55rem);
  line-height: 0.98;
}

.subpage-hero p:not(.eyebrow) {
  max-width: 650px;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.64;
}

.subpage-card {
  border: 1px solid rgba(9, 15, 24, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  padding: 1.2rem;
  box-shadow: 0 18px 50px rgba(33, 40, 52, 0.07);
}

.subpage-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1rem;
}

.subpage-card strong {
  display: block;
  margin-bottom: 0.4rem;
}

.page-hero-compact {
  padding-block: clamp(3rem, 5vw, 5rem);
}

.page-hero-compact h1 {
  max-width: 850px;
  font-size: clamp(1.9rem, 3.5vw, 3.3rem);
  line-height: 0.99;
}

.home-services {
  background: var(--paper-strong);
}

.home-services-head {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(260px, 0.5fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: end;
  margin-bottom: 1.05rem;
}

.home-services-head h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(1.55rem, 2.3vw, 2.35rem);
  line-height: 1.06;
}

.home-services-head p:last-child {
  max-width: 440px;
  margin-bottom: 0.15rem;
}

.home-services .service-list {
  gap: 0;
}

.home-services .service-row {
  min-height: 176px;
  padding-block: 0.85rem;
}

.home-services .service-row img {
  height: 126px;
  border-radius: 20px;
}

.home-service-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(260px, 0.66fr) minmax(240px, 0.52fr);
  gap: 1rem;
  align-items: stretch;
}

.home-service-lead,
.home-service-panel,
.home-service-media,
.home-service-rail article {
  border: 1px solid rgba(9, 15, 24, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(33, 40, 52, 0.06);
}

.home-service-lead {
  display: grid;
  align-content: start;
  min-height: 350px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(27, 42, 128, 0.11), transparent 58%),
    white;
  padding: clamp(1.2rem, 3vw, 1.65rem);
}

.home-service-lead h3 {
  max-width: 520px;
  margin-top: 2.2rem;
  margin-bottom: 0.8rem;
  font-size: clamp(1.4rem, 2.05vw, 2.15rem);
  line-height: 1.02;
}

.home-service-lead p {
  max-width: 510px;
}

.home-service-lead ul,
.home-service-panel ul {
  display: grid;
  gap: 0.55rem;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.home-service-lead li,
.home-service-panel li {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  color: #2f3b4d;
  font-weight: 850;
}

.home-service-lead li::before,
.home-service-panel li::before {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  content: "";
  background: var(--blue-mid);
  box-shadow: 0 0 0 5px rgba(27, 42, 128, 0.12);
}

.home-service-stack {
  display: grid;
  gap: 1rem;
}

.home-service-panel {
  display: grid;
  min-height: 186px;
  border-radius: 24px;
  padding: 1.15rem;
}

.home-service-panel h3 {
  margin-top: 1.25rem;
  margin-bottom: 0.55rem;
  font-size: clamp(1.15rem, 1.55vw, 1.45rem);
}

.home-service-panel p {
  margin-bottom: 1rem;
  line-height: 1.55;
}

.home-service-media {
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  border-radius: 28px;
  background: #0a111c;
  color: white;
}

.home-service-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.home-service-media div {
  display: grid;
  gap: 0.55rem;
  padding: 1.15rem;
}

.home-service-media span {
  color: var(--blue-light);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-service-media strong {
  line-height: 1.28;
}

.home-service-media a {
  width: fit-content;
  margin-top: 0.25rem;
  color: white;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(75, 99, 216, 0.75);
  text-underline-offset: 5px;
}

.home-service-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.home-service-rail article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 0.85rem;
  align-items: start;
  border-radius: 20px;
  padding: 1rem;
}

.home-service-rail span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: rgba(27, 42, 128, 0.1);
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 950;
}

.home-service-rail strong {
  color: var(--ink);
  line-height: 1.2;
}

.home-service-rail p {
  margin-bottom: 0;
  line-height: 1.45;
}

.page-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.info-panel {
  border: 1px solid rgba(9, 15, 24, 0.1);
  border-radius: 20px;
  background: var(--paper-strong);
  padding: 1.2rem;
  box-shadow: 0 16px 42px rgba(33, 40, 52, 0.055);
}

.info-panel h3 {
  margin-bottom: 0.65rem;
}

.text-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.text-panel {
  border-top: 1px solid rgba(9, 15, 24, 0.12);
  padding-top: 1.2rem;
}

.text-panel ul {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.8;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  display: grid;
  gap: 0.85rem;
  min-height: 245px;
  border: 1px solid rgba(9, 15, 24, 0.1);
  border-radius: 22px;
  background: var(--paper-strong);
  padding: 1.2rem;
  box-shadow: 0 16px 44px rgba(33, 40, 52, 0.055);
}

.service-card .service-index {
  margin-bottom: 1.4rem;
}

.service-card p {
  margin-bottom: 0;
}

.process-detail-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.process-detail {
  border: 1px solid rgba(9, 15, 24, 0.1);
  border-radius: 22px;
  background: var(--paper-strong);
  padding: 1rem;
  box-shadow: 0 16px 44px rgba(33, 40, 52, 0.055);
}

.process-detail span {
  color: var(--brand-blue);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.process-detail h3 {
  margin-top: 1.4rem;
  margin-bottom: 0.7rem;
}

.page-cta {
  border-radius: 28px;
  background: var(--ink);
  color: white;
  padding: clamp(1.4rem, 4vw, 2.5rem);
}

.page-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.page-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
}

.compact-heading {
  max-width: 820px;
  margin-bottom: 1.2rem;
}

.compact-heading h2 {
  font-size: clamp(1.55rem, 2.25vw, 2.3rem);
  line-height: 1.06;
}

.about-profile {
  background: var(--paper-strong);
}

.about-profile-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 3.2rem);
  align-items: center;
}

.profile-media {
  position: relative;
}

.profile-media img,
.service-context-grid img,
.process-summary img {
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.profile-media img {
  aspect-ratio: 0.95;
  border-radius: 30px;
}

.profile-note {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  border: 1px solid rgba(9, 15, 24, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem;
  box-shadow: 0 16px 40px rgba(9, 15, 24, 0.14);
}

.profile-note span,
.service-focus-grid span,
.premium-service-grid > article > span,
.role-grid span,
.process-timeline article > span,
.process-support-grid article > span {
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-note strong {
  display: block;
  margin-top: 0.35rem;
  line-height: 1.25;
}

.profile-copy h2,
.service-context-grid h2,
.process-summary h2,
.process-checklist-grid h2 {
  max-width: 720px;
  font-size: clamp(1.55rem, 2.25vw, 2.35rem);
  line-height: 1.06;
}

.about-roles,
.process-map,
.service-catalog {
  background: var(--sand);
}

.role-grid,
.premium-service-grid,
.process-support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.role-grid article,
.premium-service-grid article,
.process-support-grid article {
  border: 1px solid rgba(9, 15, 24, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  padding: 1.1rem;
  box-shadow: 0 16px 44px rgba(33, 40, 52, 0.06);
}

.role-grid article {
  min-height: 225px;
}

.role-grid h3,
.premium-service-grid h3,
.process-support-grid h3 {
  margin-top: 1.8rem;
  margin-bottom: 0.65rem;
}

.principles-section,
.service-context,
.process-checklist {
  background: var(--paper-strong);
}

.principles-grid,
.industry-grid,
.service-context-grid,
.process-checklist-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 1fr);
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: start;
}

.principle-list {
  display: grid;
  gap: 0.75rem;
}

.principle-list article {
  display: grid;
  gap: 0.35rem;
  border-top: 1px solid rgba(9, 15, 24, 0.12);
  padding-top: 0.85rem;
}

.principle-list strong {
  font-size: 1.1rem;
}

.principle-list span {
  color: var(--muted);
  line-height: 1.55;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.industry-tags span {
  border: 1px solid rgba(9, 15, 24, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  padding: 0.72rem 0.9rem;
  color: #273344;
  font-size: 0.9rem;
  font-weight: 850;
}

.services-overview {
  background: var(--paper-strong);
}

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

.service-focus-grid article {
  min-height: 285px;
  border: 1px solid rgba(9, 15, 24, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(27, 42, 128, 0.08), transparent 62%),
    white;
  padding: 1.2rem;
  box-shadow: 0 18px 50px rgba(33, 40, 52, 0.07);
}

.service-focus-grid h2 {
  margin-top: 1.7rem;
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  line-height: 1.05;
}

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

.premium-service-grid article {
  display: grid;
  align-content: start;
  min-height: 275px;
}

.premium-service-grid p {
  margin-bottom: 1rem;
}

.premium-service-grid .tags {
  margin-top: auto;
  margin-bottom: 0;
}

.service-context-grid {
  align-items: center;
}

.service-context-grid img {
  aspect-ratio: 1.35;
  border-radius: 30px;
}

.process-map-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.68fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 2.35rem);
  align-items: start;
}

.process-summary {
  position: sticky;
  top: 106px;
}

.process-summary img {
  aspect-ratio: 1.2;
  margin-top: 1.2rem;
  border-radius: 28px;
}

.process-timeline {
  position: relative;
  display: grid;
  gap: 0.85rem;
}

.process-timeline::before {
  position: absolute;
  top: 1.35rem;
  bottom: 1.35rem;
  left: 1.6rem;
  width: 1px;
  content: "";
  background: rgba(9, 15, 24, 0.14);
}

.process-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.process-timeline article > span {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid rgba(9, 15, 24, 0.1);
  border-radius: 999px;
  background: white;
  box-shadow: 0 12px 30px rgba(33, 40, 52, 0.08);
}

.process-timeline article > div {
  border: 1px solid rgba(9, 15, 24, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  padding: 1.15rem;
  box-shadow: 0 16px 44px rgba(33, 40, 52, 0.055);
}

.process-timeline h3 {
  margin-bottom: 0.45rem;
}

.process-timeline p,
.process-support-grid p {
  margin-bottom: 0;
}

.process-support {
  background: var(--paper-strong);
}

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

.process-checklist-grid ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 1.2rem 1.2rem 1.2rem 2.2rem;
  border: 1px solid rgba(9, 15, 24, 0.1);
  border-radius: 24px;
  background: white;
  color: var(--muted);
  line-height: 1.65;
  box-shadow: 0 18px 50px rgba(33, 40, 52, 0.06);
}

.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(9, 15, 24, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 15, 24, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--blue-mid);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 1.4rem;
  font-size: clamp(2.4rem, 4.9vw, 4.3rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(1.55rem, 2.45vw, 2.5rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
}

p {
  color: var(--muted);
  line-height: 1.68;
}

.hero-lede {
  max-width: 630px;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  max-width: 610px;
  margin-top: 2rem;
}

.hero-proof span,
.tags span,
.location-tags span {
  border: 1px solid rgba(9, 15, 24, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.55rem 0.75rem;
  color: #273344;
  font-size: 0.82rem;
  font-weight: 800;
}

.image-stack {
  position: relative;
  min-height: 520px;
}

.image-main {
  width: 100%;
  height: min(54vw, 520px);
  min-height: 360px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
  clip-path: inset(0 round 34px);
}

.floating-panel {
  position: absolute;
  display: grid;
  gap: 0.35rem;
  max-width: 310px;
  border: 1px solid rgba(9, 15, 24, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  padding: 1rem 1.1rem;
  box-shadow: 0 20px 60px rgba(9, 15, 24, 0.16);
  backdrop-filter: blur(14px);
}

.panel-top {
  right: 1.25rem;
  top: 1.25rem;
}

.panel-bottom {
  left: -1rem;
  bottom: 2rem;
  grid-template-columns: auto 1fr;
  align-items: center;
  font-weight: 850;
}

.panel-kicker {
  color: var(--brand-blue);
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--blue-light);
  box-shadow: 0 0 0 7px rgba(27, 42, 128, 0.14);
}

.entity-band {
  border-block: 1px solid rgba(9, 15, 24, 0.07);
  background: rgba(255, 253, 248, 0.68);
  padding-block: 1.4rem;
}

.entity-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.52fr) minmax(0, 1fr);
  gap: clamp(0.9rem, 2vw, 1.8rem);
  align-items: center;
}

.entity-copy .eyebrow {
  margin-bottom: 0.45rem;
}

.entity-copy p:last-child {
  max-width: 420px;
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.entity-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.entity-logos article {
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: 108px;
  border: 1px solid rgba(9, 15, 24, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  padding: 0.85rem;
}

.entity-logos img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
  filter: contrast(1.08) saturate(1.06);
}

.entity-logos span {
  margin-top: 0.55rem;
  color: #465060;
  font-size: 0.76rem;
  font-weight: 850;
  text-align: center;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.68fr);
  gap: clamp(1.2rem, 3vw, 2.35rem);
  align-items: start;
}

.about .section-intro h2 {
  max-width: 780px;
  font-size: clamp(1.55rem, 2.25vw, 2.3rem);
  line-height: 1.06;
}

.section-intro h2 {
  max-width: 760px;
}

.about-copy {
  border-left: 1px solid var(--line);
  padding-left: clamp(1rem, 3vw, 2rem);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.35rem;
}

.feature-card,
.process-card,
.contact-form,
.address-stack address {
  border: 1px solid rgba(9, 15, 24, 0.1);
  border-radius: var(--radius-lg);
  background: var(--paper-strong);
  box-shadow: 0 18px 50px rgba(33, 40, 52, 0.06);
}

.feature-card {
  min-height: 205px;
  padding: 1.2rem;
}

.feature-icon,
.service-index,
.process-card span {
  color: var(--brand-blue);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.feature-card h3 {
  margin-top: 2.1rem;
  margin-bottom: 0.75rem;
}

.scope,
.process {
  background: var(--sand);
}

.scope-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.84fr) minmax(0, 1fr);
  gap: clamp(1.3rem, 3vw, 2.5rem);
  align-items: center;
}

.scope-media img {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.scope-copy p {
  max-width: 640px;
}

.scope-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.scope-facts div {
  min-height: 100px;
  border: 1px solid rgba(9, 15, 24, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.65);
  padding: 1rem;
}

.scope-facts strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--blue);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.scope-facts span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(240px, 0.56fr);
  gap: 1.25rem;
  align-items: end;
  margin-bottom: 1.2rem;
}

.section-heading p:last-child {
  max-width: 480px;
}

.service-list {
  display: grid;
  gap: 0.5rem;
}

.service-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 200px;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  align-items: center;
  min-height: 190px;
  border-top: 1px solid rgba(9, 15, 24, 0.12);
  padding: 1rem 0;
}

.service-row:last-child {
  border-bottom: 1px solid rgba(9, 15, 24, 0.12);
}

.service-row h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.15rem, 1.65vw, 1.65rem);
  line-height: 1.08;
}

.service-row p {
  max-width: 730px;
  margin-bottom: 0;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tags span {
  padding: 0.42rem 0.65rem;
  color: #384252;
  font-size: 0.72rem;
}

.service-row img {
  width: 200px;
  height: 145px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 15px 45px rgba(33, 40, 52, 0.11);
}

.process-heading {
  max-width: 830px;
  margin-bottom: 1.35rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.process-card {
  min-height: 245px;
  padding: 1rem;
}

.process-card h3 {
  margin-top: 2.15rem;
  margin-bottom: 0.85rem;
}

.locations {
  background: var(--paper-strong);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 1fr);
  gap: clamp(1.3rem, 3vw, 2.6rem);
  align-items: start;
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2rem;
}

.address-stack {
  display: grid;
  gap: 1rem;
}

.address-stack address {
  display: grid;
  gap: 0.75rem;
  padding: 1.2rem;
  font-style: normal;
}

.address-stack strong {
  font-size: 1.1rem;
}

.address-stack span {
  color: var(--muted);
  line-height: 1.6;
}

.address-stack b {
  color: var(--blue-mid);
}

.contact {
  background: var(--ink);
  color: white;
}

.contact p,
.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.contact .eyebrow {
  color: var(--blue-light);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 1fr);
  gap: clamp(1.4rem, 4vw, 3.2rem);
  align-items: start;
}

.contact-copy h2 {
  max-width: 690px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.8rem;
}

.contact-links a,
.site-footer a {
  color: var(--blue-light);
  font-weight: 800;
}

.contact-links a {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.7rem 1rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  background: white;
  padding: clamp(1rem, 3vw, 1.5rem);
  color: var(--ink);
}

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

label {
  display: grid;
  gap: 0.45rem;
}

label span {
  font-size: 0.84rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(9, 15, 24, 0.14);
  border-radius: 15px;
  background: #f9faff;
  color: var(--ink);
  padding: 0.9rem 1rem;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 4px rgba(27, 42, 128, 0.14);
}

.field-error {
  border-color: #b42318;
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  color: var(--muted);
  line-height: 1.5;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  accent-color: var(--blue-mid);
}

.contact-form .btn {
  width: fit-content;
}

.form-status {
  min-height: 1.5rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status.error {
  color: #b42318;
}

.form-status.success {
  color: var(--blue);
}

.contact-page {
  background:
    linear-gradient(135deg, rgba(24, 45, 132, 0.07), transparent 36rem),
    var(--paper-strong);
}

.contact-hero-card ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.55;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.74fr) minmax(320px, 1.02fr);
  gap: clamp(1.2rem, 3vw, 2.2rem);
  align-items: start;
}

.contact-command {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 1.35rem;
}

.contact-command h2 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.55rem, 2.35vw, 2.35rem);
  line-height: 1.06;
}

.contact-command p {
  max-width: 560px;
  margin-bottom: 0;
}

.contact-route-grid {
  display: grid;
  gap: 0.75rem;
}

.route-card,
.contact-guidance,
.contact-step-grid article,
.office-card {
  border: 1px solid rgba(9, 15, 24, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(33, 40, 52, 0.065);
}

.route-card {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.route-card:hover {
  border-color: rgba(27, 42, 128, 0.35);
  box-shadow: 0 20px 55px rgba(33, 40, 52, 0.11);
  transform: translateY(-2px);
}

.route-card span,
.form-note {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.route-card strong {
  color: var(--blue);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  overflow-wrap: anywhere;
}

.contact-guidance {
  padding: 1.1rem;
}

.contact-guidance h3 {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.contact-guidance ul,
.contact-step-grid p {
  margin: 0;
}

.contact-guidance ul {
  display: grid;
  gap: 0.55rem;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.55;
}

.contact-form-large {
  gap: 1.15rem;
  padding: clamp(1.1rem, 3vw, 1.8rem);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(27, 42, 128, 0.08), transparent 15rem),
    white;
}

.form-heading {
  max-width: 680px;
  padding-bottom: 0.45rem;
}

.form-heading h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.08;
}

.form-heading p:not(.eyebrow) {
  margin-bottom: 0;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.form-actions .btn {
  flex: 0 0 auto;
}

.form-note {
  max-width: 380px;
  margin: 0;
  line-height: 1.45;
}

.contact-form .btn[disabled] {
  cursor: progress;
  opacity: 1;
  pointer-events: none;
}

.contact-form.is-submitting {
  opacity: 0.98;
}

.contact-process {
  background: var(--sand);
}

.contact-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-step-grid article {
  min-height: 230px;
  padding: 1.15rem;
}

.contact-step-grid span {
  color: var(--brand-blue);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-step-grid h3 {
  margin-top: 2.15rem;
  margin-bottom: 0.75rem;
}

.contact-offices {
  background: var(--paper-strong);
}

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

.office-card {
  display: grid;
  gap: 0.75rem;
  min-height: 230px;
  padding: 1.15rem;
  font-style: normal;
}

.office-card strong {
  font-size: 1.06rem;
}

.office-card span {
  color: var(--muted);
  line-height: 1.55;
}

.office-card b {
  color: var(--blue-mid);
}

.entity-card {
  align-content: start;
}

.entity-card img {
  width: min(180px, 100%);
  height: auto;
  margin-bottom: 1rem;
  object-fit: contain;
}

.entity-card strong {
  display: block;
}

.site-footer {
  background:
    radial-gradient(circle at 14% 0%, rgba(75, 99, 216, 0.12), transparent 26rem),
    linear-gradient(180deg, #09111c, #050910 68%);
  color: white;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1.12fr) minmax(130px, 0.42fr) minmax(180px, 0.76fr) minmax(220px, 0.92fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  padding-block: clamp(2.3rem, 4vw, 3.5rem);
}

.footer-logo {
  width: 238px;
  margin-bottom: 1.35rem;
  border-radius: 0;
  background: transparent;
  padding: 0;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.footer-brand p {
  max-width: 480px;
  margin-bottom: 1.2rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.footer-badges span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.45rem 0.65rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
}

.footer-column {
  display: grid;
  gap: 0.72rem;
  align-content: start;
}

.footer-column h2 {
  margin: 0 0 0.35rem;
  color: white;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
  font-weight: 750;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.footer-column a:hover {
  color: white;
  transform: translateX(2px);
}

.footer-column .footer-email {
  color: var(--blue-light);
  font-weight: 850;
}

.footer-contact address {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
  color: rgba(255, 255, 255, 0.68);
  font-style: normal;
  line-height: 1.55;
}

.footer-contact strong {
  color: white;
}

.footer-contact span {
  font-size: 0.9rem;
}

.footer-affiliate-logos {
  grid-column: 1 / 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  margin-top: -0.25rem;
  padding-top: 0.1rem;
  opacity: 1;
}

.footer-affiliate-logo {
  display: flex;
  min-height: 42px;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 0.36rem 0.48rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
  overflow: hidden;
}

.footer-affiliate-logo--association {
  flex: 0 1 148px;
}

.footer-affiliate-logo--company {
  flex: 0 1 82px;
}

.footer-affiliate-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.footer-affiliate-logo--association img {
  max-width: 136px;
  max-height: 34px;
}

.footer-affiliate-logo--company img {
  max-width: 70px;
  max-height: 52px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 1rem;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  font-size: 0.84rem;
}

.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
    width: min(calc(100% - 2rem), 1120px);
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav,
  .nav-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 82px 1rem auto;
    z-index: 60;
    justify-self: stretch;
    border-radius: 24px;
    padding: 0.8rem;
    background: white;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    justify-content: center;
    border-radius: 16px;
    white-space: normal;
  }

  .hero-grid,
  .scope-grid,
  .location-grid,
  .contact-shell,
  .contact-layout,
  .split-layout,
  .section-heading,
  .home-services-head,
  .entity-panel,
  .subpage-hero-grid,
  .about-profile-grid,
  .principles-grid,
  .industry-grid,
  .service-context-grid,
  .process-map-grid,
  .process-checklist-grid,
  .text-columns,
  .page-cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    align-items: start;
  }

  .about-copy {
    border-left: 0;
    padding-left: 0;
  }

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

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

  .service-card-grid,
  .page-panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-command {
    position: static;
  }

  .process-summary {
    position: static;
  }

  .home-service-showcase {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.82fr);
  }

  .home-service-media {
    grid-column: 1 / -1;
    grid-template-columns: minmax(240px, 0.72fr) 1fr;
    grid-template-rows: auto;
  }

  .home-service-media img {
    min-height: 240px;
  }

  .office-grid,
  .contact-step-grid,
  .role-grid,
  .service-focus-grid,
  .premium-service-grid,
  .process-support-grid,
  .home-service-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .fintech-hero-copy h1 {
    font-size: clamp(2.2rem, 5.3vw, 3.85rem);
  }

  .subpage-hero h1,
  .page-hero-compact h1 {
    font-size: clamp(1.8rem, 4.6vw, 3rem);
  }

  .compact-heading h2,
  .section-heading h2,
  .about .section-intro h2,
  .profile-copy h2,
  .service-context-grid h2,
  .process-summary h2,
  .process-checklist-grid h2,
  .home-services-head h2,
  .contact-command h2,
  .form-heading h2 {
    font-size: clamp(1.38rem, 3.2vw, 2.05rem);
  }
}

@media (max-width: 780px) {
  .section-padding {
    padding-block: 2.85rem;
  }

  .brand {
    width: 152px;
  }

  .nav-shell {
    min-height: 72px;
  }

  .site-nav {
    inset: 72px 1rem auto;
  }

  h1 {
    font-size: clamp(2.05rem, 10vw, 3.05rem);
  }

  h2 {
    font-size: clamp(1.42rem, 6.5vw, 2.05rem);
  }

  .about .section-intro h2 {
    font-size: clamp(1.38rem, 6vw, 1.95rem);
  }

  .image-stack {
    min-height: auto;
  }

  .image-main {
    height: 420px;
    min-height: 320px;
    border-radius: 30px;
    clip-path: inset(0 round 30px);
  }

  .floating-panel {
    position: static;
    max-width: none;
    margin-top: 0.75rem;
  }

  .entity-band {
    padding-block: 1rem;
  }

  .entity-logos {
    grid-template-columns: 1fr;
  }

  .entity-logos article {
    min-height: 84px;
    justify-items: start;
  }

  .entity-logos img {
    max-height: 36px;
  }

  .feature-grid,
  .scope-facts,
  .form-grid,
  .process-grid,
  .service-card-grid,
  .page-panel-grid,
  .process-detail-grid,
  .office-grid,
  .contact-step-grid,
  .role-grid,
  .service-focus-grid,
  .premium-service-grid,
  .process-support-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-affiliate-logos {
    align-items: center;
    flex-direction: row;
    margin-top: 0.3rem;
    padding-top: 0;
  }

  .footer-affiliate-logo {
    min-height: 40px;
  }

  .footer-affiliate-logo--company {
    flex-basis: auto;
  }

  .footer-affiliate-logo--association img {
    max-height: 30px;
  }

  .footer-affiliate-logo--company img {
    max-height: 48px;
  }

  .service-row {
    grid-template-columns: 1fr;
    min-height: unset;
    padding: 1.1rem 0;
  }

  .service-row img {
    width: 100%;
    height: 180px;
  }

  .process-card {
    min-height: 230px;
  }

  .home-services .service-row {
    min-height: unset;
  }

  .home-service-showcase,
  .home-service-media,
  .home-service-rail {
    grid-template-columns: 1fr;
  }

  .home-service-lead {
    min-height: unset;
  }

  .home-service-lead h3 {
    margin-top: 1.55rem;
  }

  .home-service-lead ul,
  .home-service-panel ul {
    margin-top: 1rem;
  }

  .home-service-media img {
    min-height: 190px;
    aspect-ratio: 1.45;
  }

  .profile-media img {
    aspect-ratio: 1.15;
  }

  .profile-note {
    position: static;
    margin-top: 0.75rem;
  }

  .service-focus-grid article,
  .premium-service-grid article,
  .role-grid article {
    min-height: unset;
  }

  .process-timeline::before {
    left: 1.35rem;
  }

  .process-timeline article {
    grid-template-columns: 2.7rem minmax(0, 1fr);
    gap: 0.8rem;
  }

  .process-timeline article > span {
    width: 2.7rem;
    height: 2.7rem;
    font-size: 0.72rem;
  }

  .contact-step-grid article,
  .office-card {
    min-height: unset;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--max));
  }

  .hero-actions,
  .contact-links {
    display: grid;
  }

  .btn,
  .nav-cta,
  .contact-form .btn {
    width: 100%;
  }

  .form-actions {
    display: grid;
  }

  .feature-card,
  .process-card,
  .contact-form,
  .address-stack address,
  .office-card,
  .contact-step-grid article,
  .role-grid article,
  .premium-service-grid article,
  .service-focus-grid article,
  .process-support-grid article,
  .home-service-lead,
  .home-service-panel,
  .home-service-media,
  .home-service-rail article,
  .process-timeline article > div,
  .process-checklist-grid ul,
  .route-card,
  .contact-guidance {
    border-radius: 18px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Fintech-first redesign layer */
.fintech-site {
  --electric: #18b8ff;
  --electric-2: #6d5cff;
  --aqua: #22d3ee;
  --lime: #b6f05a;
  --dark-1: #050914;
  --dark-2: #09152a;
  --dark-3: #0d1d38;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-line: rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 8% 0%, rgba(24, 184, 255, 0.18), transparent 24rem),
    radial-gradient(circle at 88% 5%, rgba(109, 92, 255, 0.13), transparent 24rem),
    #f7f9ff;
}

.fintech-header {
  border-bottom-color: rgba(14, 32, 74, 0.12);
  background: rgba(247, 250, 255, 0.88);
}

.fintech-header .nav-shell {
  width: min(calc(100% - 2rem), 1380px);
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(0.7rem, 1.5vw, 1.4rem);
}

.fintech-header .brand {
  width: clamp(190px, 13.8vw, 218px);
}

.fintech-header .nav-toggle {
  justify-self: end;
  border-color: rgba(11, 21, 48, 0.18);
  background: #0b1530;
  box-shadow: 0 14px 30px rgba(9, 15, 24, 0.16);
}

.fintech-header .nav-toggle span:not(.sr-only) {
  background: white;
}

.fintech-nav {
  gap: clamp(0.55rem, 1vw, 1rem);
}

.fintech-nav a {
  min-height: 42px;
  font-size: clamp(0.72rem, 0.78vw, 0.86rem);
  white-space: nowrap;
}

.nav-feature {
  color: var(--blue) !important;
  font-weight: 950 !important;
}

.nav-mega-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.mega-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 0.75rem);
  z-index: 100;
  width: min(680px, calc(100vw - 2rem));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.25rem;
  border: 1px solid rgba(27, 42, 128, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.85rem;
  box-shadow: 0 28px 80px rgba(9, 15, 24, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-mega-wrap:hover .mega-menu,
.nav-mega-wrap:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu a {
  min-height: 38px;
  border-radius: 14px;
  padding: 0.6rem 0.72rem;
  background: rgba(27, 42, 128, 0.04);
  color: #263a9b;
  white-space: normal;
}

.mega-menu a::after {
  display: none;
}

.btn-electric {
  background: linear-gradient(135deg, var(--electric), var(--electric-2));
  color: white;
  box-shadow: 0 22px 60px rgba(24, 184, 255, 0.28);
}

.btn-glass {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  box-shadow: none;
}

.fintech-hero {
  position: relative;
  overflow: hidden;
  min-height: min(860px, calc(100vh - 1rem));
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 15% 15%, rgba(24, 184, 255, 0.2), transparent 26rem),
    radial-gradient(circle at 88% 25%, rgba(109, 92, 255, 0.22), transparent 25rem),
    linear-gradient(135deg, var(--dark-1), var(--dark-2) 48%, #0b1740);
  color: white;
  padding-block: clamp(4.6rem, 7vw, 7rem) clamp(2.8rem, 5vw, 4.8rem);
}

.fintech-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.fintech-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(380px, 1fr);
  gap: clamp(1.5rem, 4vw, 3.25rem);
  align-items: center;
}

.fintech-hero-copy h1 {
  max-width: 760px;
  color: white;
  font-size: clamp(2.45rem, 4.55vw, 4.35rem);
  line-height: 0.94;
}

.fintech-hero-copy .hero-lede {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.7;
}

.fintech-hero .eyebrow,
.tech-heading .eyebrow,
.payments-copy .eyebrow,
.automation-section .eyebrow,
.custom-dev .eyebrow,
.venture-section .eyebrow,
.trade-secondary .eyebrow {
  color: var(--aqua);
}

.tech-signal,
.stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.6rem;
}

.tech-signal span,
.stack-tags span {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 850;
}

.product-hero-visual {
  position: relative;
  min-height: 560px;
  min-width: 0;
}

.screen-shell,
.routing-console,
.interface-panel,
.product-card,
.dev-stack article {
  border: 1px solid rgba(27, 42, 128, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 80px rgba(9, 15, 24, 0.16);
}

.screen-shell {
  overflow: hidden;
  width: 100%;
  min-width: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 245, 255, 0.9));
}

.screen-topbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  border-bottom: 1px solid rgba(27, 42, 128, 0.12);
  padding: 0.8rem 1rem;
  color: #17224e;
  font-size: 0.84rem;
  font-weight: 900;
}

.screen-topbar span {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: #9aa6c9;
}

.screen-topbar span:first-child {
  background: var(--electric);
}

.screen-topbar span:nth-child(2) {
  background: var(--electric-2);
}

.screen-layout {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  min-height: 390px;
  min-width: 0;
}

.screen-nav {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  border-right: 1px solid rgba(27, 42, 128, 0.1);
  padding: 1rem;
  background: rgba(9, 21, 42, 0.04);
}

.screen-nav span {
  border-radius: 12px;
  padding: 0.62rem 0.7rem;
  color: #4b587a;
  font-size: 0.78rem;
  font-weight: 850;
}

.screen-nav .is-active {
  background: #162065;
  color: white;
}

.screen-main {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  min-width: 0;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.metric-strip article,
.api-card,
.rule-builder,
.wallet-ui {
  border: 1px solid rgba(27, 42, 128, 0.12);
  border-radius: 18px;
  background: white;
  padding: 0.8rem;
}

.metric-strip span,
.api-card span,
.mobile-wallet span,
.routing-row span,
.rule-builder span,
.panel-title span,
.wallet-ui span,
.sample-note {
  color: #64708a;
  font-size: 0.75rem;
  font-weight: 850;
}

.metric-strip strong,
.api-card code,
.mobile-wallet strong,
.routing-row b,
.rule-builder strong {
  display: block;
  margin-top: 0.25rem;
  color: #111b42;
  font-weight: 950;
}

.payment-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0.55rem;
  align-items: center;
}

.payment-flow div {
  min-height: 108px;
  border-radius: 20px;
  background: linear-gradient(160deg, #111b42, #1a2a80);
  padding: 1rem;
  color: white;
}

.payment-flow b,
.payment-flow span {
  display: block;
}

.payment-flow span {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.payment-flow i,
.automation-flow > i,
.node-ui i {
  width: 2.2rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--electric), var(--electric-2));
}

.api-card {
  display: grid;
  gap: 0.35rem;
}

.api-card,
.api-card span,
.api-card code,
.api-mini code,
.panel-title,
.route-card strong,
.footer-email {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.api-card code,
.api-mini code {
  color: #2439b8;
  font-family: "SFMono-Regular", Consolas, monospace;
}

.mobile-wallet {
  position: absolute;
  right: -1rem;
  bottom: 1.4rem;
  width: 210px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(18, 33, 88, 0.92), rgba(5, 9, 20, 0.94));
  padding: 1rem;
  color: white;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.wallet-lines {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

.wallet-lines i,
.wallet-ui i {
  display: block;
  height: 0.7rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--electric), var(--electric-2));
}

.mobile-wallet small {
  display: block;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.54);
  font-weight: 800;
}

.finance-hero-visual {
  display: grid;
  align-items: center;
  margin: 0;
  isolation: isolate;
}

.hero-photo-frame {
  position: relative;
  overflow: hidden;
  justify-self: end;
  width: min(100%, 640px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  background: #08111f;
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.36);
}

.hero-photo-frame::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 9, 20, 0.04) 28%, rgba(5, 9, 20, 0.78) 100%),
    linear-gradient(120deg, rgba(24, 184, 255, 0.18), transparent 48%);
}

.hero-photo-frame img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  object-position: center;
}

.hero-photo-caption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  display: grid;
  gap: 0.35rem;
  color: white;
}

.hero-photo-caption span,
.hero-focus-card span,
.hero-capability-strip span {
  color: var(--aqua);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-photo-caption strong {
  max-width: 18ch;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-focus-card {
  position: absolute;
  top: clamp(1.2rem, 8vw, 5rem);
  left: 0;
  z-index: 3;
  width: min(270px, 46%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  padding: 1rem;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.hero-focus-card span {
  color: var(--blue);
}

.hero-focus-card strong {
  display: block;
  margin-top: 0.3rem;
  color: #111b42;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.08;
}

.hero-focus-card p {
  margin: 0.55rem 0 0;
  color: #526078;
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-capability-strip {
  position: absolute;
  right: clamp(0.75rem, 3vw, 2rem);
  bottom: -1.25rem;
  z-index: 3;
  width: min(560px, 88%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.hero-capability-strip article {
  border: 1px solid rgba(27, 42, 128, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.85rem;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.hero-capability-strip span {
  color: var(--blue);
  font-size: 0.7rem;
}

.hero-capability-strip strong {
  display: block;
  margin-top: 0.35rem;
  color: #111b42;
  line-height: 1.16;
}

.tech-ecosystem,
.automation-section,
.custom-dev {
  background: var(--dark-1);
  color: white;
}

.tech-ecosystem p,
.automation-section p,
.custom-dev p,
.venture-section p,
.trade-secondary p {
  color: rgba(255, 255, 255, 0.72);
}

.tech-heading h2,
.automation-section h2,
.custom-dev h2,
.venture-section h2,
.trade-secondary h2 {
  color: white;
}

.ecosystem-map,
.product-card-grid,
.interface-grid,
.automation-flow,
.dev-grid,
.venture-grid,
.trade-secondary-grid,
.payments-grid {
  display: grid;
  gap: 1rem;
}

.ecosystem-map {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ecosystem-map article,
.automation-flow article,
.partner-orbit {
  border: 1px solid var(--panel-line);
  border-radius: 24px;
  background: var(--panel);
  padding: 1.1rem;
}

.ecosystem-map span,
.automation-flow span,
.product-card h3,
.interface-panel strong {
  color: var(--aqua);
}

.ecosystem-map h3,
.automation-flow h3 {
  margin-top: 2rem;
  color: white;
}

.product-card-grid,
.interface-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  min-height: 270px;
  padding: 1rem;
}

.product-card-media {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  border-radius: 20px;
  background: #0d1d38;
}

.product-card-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 9, 20, 0.02), rgba(5, 9, 20, 0.2)),
    linear-gradient(120deg, rgba(27, 42, 128, 0.16), transparent 54%);
}

.product-card-media img {
  width: 100%;
  height: 100%;
  min-height: 132px;
  aspect-ratio: 2.35;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.mini-interface {
  min-height: 130px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0d1d38, #1b2a80);
  padding: 1rem;
}

.dashboard-mini {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.dashboard-mini span {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
}

.phone-mini {
  width: 98px;
  margin-inline: auto;
  border-radius: 28px;
  display: grid;
  gap: 0.45rem;
  align-content: end;
}

.phone-mini i {
  height: 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.api-mini {
  display: grid;
  align-content: center;
  gap: 0.65rem;
}

.api-mini code {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.65rem;
  font-size: 0.8rem;
}

.subpage-card .dashboard-mini,
.subpage-card .api-mini,
.subpage-card .node-ui {
  margin-top: 1rem;
}

.business-snapshot-list,
.business-snapshot-grid {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

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

.business-snapshot-list span,
.business-snapshot-grid span {
  border: 1px solid rgba(27, 42, 128, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.7rem 0.78rem;
  color: #14214b;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.25;
  box-shadow: 0 10px 28px rgba(33, 40, 52, 0.045);
}

.payments-section,
.interface-lab {
  background:
    radial-gradient(circle at 16% 20%, rgba(24, 184, 255, 0.16), transparent 24rem),
    #f7f9ff;
}

.interface-showcase-shell {
  display: grid;
  gap: 1.1rem;
}

.interface-showcase-head {
  max-width: 900px;
  margin-bottom: 0;
}

.interface-showcase-head p:not(.eyebrow):not(.sample-note) {
  max-width: 760px;
}

.interface-demo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.interface-demo-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(27, 42, 128, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 70px rgba(9, 15, 24, 0.11);
}

.interface-demo-media {
  position: relative;
  overflow: hidden;
  min-height: 188px;
  background: #0d1d38;
}

.interface-demo-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 9, 20, 0.02), rgba(5, 9, 20, 0.28)),
    linear-gradient(120deg, rgba(24, 184, 255, 0.12), transparent 58%);
}

.interface-demo-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 188px;
  aspect-ratio: 1.7;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.04);
}

.interface-demo-copy {
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding: 1.05rem;
}

.interface-demo-copy > span {
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.interface-demo-copy h3 {
  margin: 0;
  color: #111b42;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.15;
}

.interface-demo-copy ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.interface-demo-copy li {
  position: relative;
  padding-left: 1rem;
  color: #546179;
  font-size: 0.92rem;
  line-height: 1.45;
}

.interface-demo-copy li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--electric);
  content: "";
}

@media (max-width: 980px) {
  .interface-demo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .interface-demo-grid {
    grid-template-columns: 1fr;
  }

  .interface-demo-media,
  .interface-demo-media img {
    min-height: 164px;
  }

  .interface-demo-copy {
    padding: 0.95rem;
  }
}

.payments-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.68fr);
  align-items: center;
}

.payments-copy .stack-tags span {
  border-color: rgba(27, 42, 128, 0.14);
  background: rgba(27, 42, 128, 0.06);
  color: #243159;
}

.routing-console {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
}

.console-header,
.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.routing-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.45rem;
  border-radius: 16px;
  background: #f5f7ff;
  padding: 0.85rem;
}

.routing-row i {
  grid-column: 1 / -1;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--electric), var(--electric-2));
}

.automation-flow {
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
}

.automation-flow > i {
  align-self: center;
}

.interface-panel {
  display: grid;
  gap: 1rem;
  min-height: 230px;
  padding: 1rem;
}

.table-ui {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
}

.table-ui span,
.table-ui b {
  border-radius: 12px;
  background: #f3f6ff;
  padding: 0.62rem;
  font-size: 0.78rem;
}

.table-ui span {
  color: #65708a;
  font-weight: 900;
}

.table-ui b {
  color: #15224c;
  font-weight: 850;
}

.node-ui {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0.45rem;
}

.node-ui span {
  border-radius: 16px;
  background: linear-gradient(135deg, #101b40, #2439b8);
  padding: 1rem 0.6rem;
  color: white;
  text-align: center;
  font-weight: 850;
  font-size: 0.8rem;
}

.process-operations-card {
  align-content: start;
}

.process-operations-visual {
  position: relative;
  display: grid;
  align-content: end;
  overflow: hidden;
  min-height: 136px;
  border-radius: 18px;
  background: #0d1d38;
  padding: 0.82rem;
}

.process-operations-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 9, 20, 0.05), rgba(5, 9, 20, 0.56)),
    linear-gradient(120deg, rgba(24, 184, 255, 0.12), transparent 58%);
}

.process-operations-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.04);
}

.process-operations-visual div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.22rem;
  max-width: 240px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(9, 16, 38, 0.72);
  padding: 0.68rem;
  box-shadow: 0 12px 30px rgba(5, 9, 20, 0.2);
}

.process-operations-visual strong {
  color: white;
  line-height: 1.15;
}

.process-operations-visual span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.3;
}

.process-step-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.process-step-strip span {
  min-height: 3.1rem;
  border: 1px solid rgba(27, 42, 128, 0.09);
  border-radius: 12px;
  background: #f3f6ff;
  padding: 0.58rem;
  color: #14214b;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.22;
}

.wallet-ui {
  display: grid;
  gap: 0.7rem;
}

.wallet-ui div {
  display: grid;
  gap: 0.45rem;
}

.dev-grid,
.venture-grid,
.trade-secondary-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.62fr);
  align-items: center;
}

.dev-stack {
  display: grid;
  gap: 0.75rem;
}

.dev-stack article {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.09);
}

.dev-stack span {
  color: var(--lime);
  font-weight: 950;
}

.dev-stack strong {
  color: white;
}

.venture-section,
.trade-secondary {
  background: linear-gradient(135deg, #101b40, #1b2a80);
  color: white;
}

.partner-orbit {
  min-height: 300px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.partner-orbit span {
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--blue);
  font-weight: 950;
}

.partner-orbit i {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 850;
}

.partner-orbit i:nth-child(2) { top: 1rem; left: 1rem; }
.partner-orbit i:nth-child(3) { top: 1rem; right: 1rem; }
.partner-orbit i:nth-child(4) { bottom: 1rem; left: 1rem; }
.partner-orbit i:nth-child(5) { bottom: 1rem; right: 1rem; }

.tech-tags span {
  background: rgba(24, 184, 255, 0.11);
  color: #162c8f;
}

.trade-secondary-grid .btn {
  justify-self: end;
}

.fintech-footer {
  background:
    radial-gradient(circle at 15% 0%, rgba(24, 184, 255, 0.18), transparent 22rem),
    #050914;
}

@media (max-width: 1280px) {
  .fintech-header .nav-shell {
    grid-template-columns: auto auto;
  }

  .fintech-header .nav-toggle {
    position: relative;
    z-index: 70;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

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

  .fintech-header .site-nav {
    position: fixed;
    inset: 82px 1rem auto;
    z-index: 60;
    justify-self: stretch;
    border-radius: 24px;
    padding: 0.8rem;
    background: white;
    box-shadow: var(--shadow);
  }

  .fintech-header .site-nav.is-open {
    display: grid;
  }

  .nav-mega-wrap {
    display: grid;
  }

  .mega-menu {
    position: static;
    width: auto;
    grid-template-columns: 1fr;
    margin-top: 0.4rem;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .fintech-hero-grid,
  .payments-grid,
  .dev-grid,
  .venture-grid,
  .trade-secondary-grid {
    grid-template-columns: 1fr;
  }

  .product-hero-visual {
    min-height: unset;
  }

  .finance-hero-visual {
    max-width: 760px;
  }

  .hero-photo-frame {
    justify-self: stretch;
    width: 100%;
  }

  .hero-focus-card {
    left: 1rem;
  }

  .hero-capability-strip {
    right: 1rem;
    width: min(580px, calc(100% - 2rem));
  }

  .mobile-wallet {
    right: 1rem;
  }

  .ecosystem-map,
  .automation-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .automation-flow > i {
    display: none;
  }
}

@media (max-width: 840px) {
  .fintech-hero {
    min-height: unset;
    padding-top: 4.6rem;
  }

  .fintech-hero-copy h1 {
    font-size: clamp(1.8rem, 7.4vw, 2.55rem);
    line-height: 0.98;
  }

  .subpage-hero h1,
  .page-hero-compact h1 {
    font-size: clamp(1.5rem, 6.8vw, 2.1rem);
    line-height: 1.02;
  }

  .compact-heading h2,
  .about .section-intro h2,
  .profile-copy h2,
  .service-context-grid h2,
  .process-summary h2,
  .process-checklist-grid h2,
  .home-services-head h2,
  .contact-command h2,
  .form-heading h2,
  .home-service-lead h3 {
    font-size: clamp(1.18rem, 5.8vw, 1.65rem);
    line-height: 1.08;
  }

  .screen-layout,
  .metric-strip,
  .payment-flow,
  .product-card-grid,
  .interface-grid,
  .ecosystem-map,
  .automation-flow,
  .dev-grid,
  .venture-grid,
  .trade-secondary-grid,
  .payments-grid {
    grid-template-columns: 1fr;
  }

  .screen-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid rgba(27, 42, 128, 0.1);
  }

  .screen-topbar,
  .screen-main,
  .routing-console,
  .interface-panel,
  .product-card,
  .metric-strip article,
  .api-card,
  .rule-builder,
  .wallet-ui,
  .subpage-card {
    padding: 0.9rem;
  }

  .fintech-header .brand {
    width: 164px;
  }

  .payment-flow i,
  .node-ui i {
    display: none;
  }

  .payment-flow,
  .node-ui {
    grid-template-columns: 1fr;
  }

  .mobile-wallet {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .hero-photo-frame {
    border-radius: 24px;
  }

  .hero-photo-frame img {
    aspect-ratio: 1.08;
  }

  .hero-photo-caption {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .hero-photo-caption strong {
    max-width: 20ch;
    font-size: clamp(1.08rem, 4.8vw, 1.35rem);
  }

  .hero-focus-card,
  .hero-capability-strip {
    position: static;
    width: 100%;
  }

  .hero-focus-card,
  .hero-capability-strip {
    margin-top: 0.85rem;
  }

  .hero-capability-strip {
    grid-template-columns: 1fr;
  }

  .partner-orbit {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    padding: 1rem;
    place-items: stretch;
  }

  .partner-orbit span {
    width: 100%;
    height: auto;
    min-height: 96px;
    border-radius: 22px;
  }

  .partner-orbit i {
    position: static;
    text-align: center;
  }

  .trade-secondary-grid .btn {
    justify-self: start;
  }

  .fintech-hero-copy h1,
  .subpage-hero h1,
  .page-hero-compact h1,
  .compact-heading h2,
  .section-heading h2,
  .about .section-intro h2,
  .profile-copy h2,
  .service-context-grid h2,
  .process-summary h2,
  .process-checklist-grid h2,
  .home-services-head h2,
  .contact-command h2,
  .form-heading h2 {
    max-width: 11ch;
  }

  .interface-showcase-head h2 {
    max-width: min(100%, 760px);
  }

  .fintech-hero-copy .hero-lede,
  .subpage-hero p:not(.eyebrow),
  .contact-command p,
  .section-heading p:last-child {
    max-width: 33ch;
  }

  .process-step-strip {
    grid-template-columns: 1fr;
  }

  .business-snapshot-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .contact-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .contact-links a {
    width: 100%;
  }

  .tech-signal,
  .stack-tags {
    gap: 0.45rem;
  }

  .container {
    width: min(calc(100% - 1.5rem), var(--max));
  }
}

@media (max-width: 430px) {
  .fintech-header .nav-shell {
    width: min(calc(100% - 1.25rem), 1380px);
    gap: 0.75rem;
    min-height: 68px;
  }

  .fintech-header .brand {
    width: 142px;
  }
}
