:root {
  --font-body: "Avenir Next", "Segoe UI", "Helvetica Neue", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --bg: #171d34;
  --bg-elevated: #20274a;
  --bg-panel: #29325f;
  --bg-panel-2: #303c6f;
  --paper: #fbf8f1;
  --paper-2: #f3eee4;
  --ink: #171d34;
  --ink-soft: #5c647d;
  --line: rgba(23, 29, 52, 0.12);
  --line-inverse: rgba(251, 248, 241, 0.14);
  --cyan: #909af1;
  --teal: #2b2c98;
  --lime: #566526;
  --blue: #5a6de4;
  --coral: #ff6f3d;
  --white: #ffffff;
  --shadow-soft: 0 18px 40px rgba(14, 19, 41, 0.1);
  --shadow-strong: 0 28px 60px rgba(8, 11, 27, 0.22);
  --max-width: 1220px;
  --max-width-wide: 1440px;
  --radius-lg: 24px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --transition: 220ms ease;
  --screen-min: calc(100svh - 9rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.68;
  letter-spacing: 0;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

main p,
main li,
.footer-copy,
.footer-links span,
.service-link-list span,
.contact-points li,
.metric-label,
.dashboard-title span,
.surface-header span,
.panel-heading span,
.contact-point span,
.contact-panel p,
.detail-feature span,
.mini-panel p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
h4 {
  overflow-wrap: anywhere;
  text-wrap: balance;
}

:where(
  .hero-inner,
  .subpage-hero-inner,
  .dashboard-grid,
  .surface-grid,
  .split-grid,
  .contact-layout,
  .detail-columns,
  .capability-grid,
  .service-grid,
  .card-grid,
  .faq-grid,
  .route-grid,
  .value-grid,
  .contact-grid,
  .insight-grid,
  .detail-grid,
  .section-grid,
  .compliance-grid,
  .footer-grid,
  .stat-grid,
  .timeline-list,
  .field-grid,
  .operating-model-grid,
  .operating-steps,
  .operating-support,
  .hero-proof-strip
) > * {
  min-width: 0;
}

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

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

button {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  transform: translateY(calc(-100% - 1.25rem));
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-sm);
  z-index: 400;
  transition: transform var(--transition);
}

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

.site-shell {
  min-height: 100svh;
  overflow-x: clip;
}

.announcement-bar {
  max-height: 5rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(90, 109, 228, 0.14), rgba(255, 111, 61, 0.1)),
    var(--bg);
  color: rgba(244, 247, 241, 0.9);
  transition:
    max-height var(--transition),
    opacity var(--transition),
    transform var(--transition);
}

[data-site-header].is-scrolled .announcement-bar {
  max-height: 0;
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.announcement-inner,
.header-inner,
.breadcrumb-inner {
  width: min(calc(100% - 2rem), var(--max-width-wide));
  margin: 0 auto;
}

.section-inner,
.footer-inner {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.announcement-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.58rem 0;
  font-size: 0.78rem;
}

.announcement-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.28rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(144, 154, 241, 0.24);
  background: rgba(144, 154, 241, 0.12);
  color: var(--cyan);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.announcement-copy {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.28rem 0.72rem;
  align-items: center;
  min-width: 0;
  overflow: hidden;
}

.announcement-copy > * {
  min-width: 0;
  max-width: 100%;
}

.announcement-copy > :last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.announcement-chip,
.announcement-link {
  flex: 0 0 auto;
  white-space: nowrap;
}

.announcement-link {
  color: #ffd0be;
  font-size: 0.76rem;
  font-weight: 600;
}

[data-site-header] {
  position: sticky;
  top: 0;
  z-index: 300;
}

.site-header {
  position: relative;
  backdrop-filter: blur(18px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 243, 236, 0.96));
  border-bottom: 1px solid rgba(23, 29, 52, 0.12);
  box-shadow: 0 12px 34px rgba(14, 19, 41, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.4rem, 3vw, 3.2rem);
  padding: 0.62rem 0;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  color: var(--ink);
}

.brand-desktop-lockup,
.brand-mobile-lockup {
  min-width: 0;
}

.brand-desktop-lockup {
  display: block;
  width: min(100%, 13.2rem);
}

.brand-logo-full {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 14px rgba(23, 29, 52, 0.12));
}

.brand-mobile-lockup {
  display: none;
  width: min(100%, 9.4rem);
}

.brand-logo-globe {
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-mobile-copy {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.brand-mark {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 14px;
  background:
    radial-gradient(circle at top left, rgba(201, 255, 109, 0.9), transparent 45%),
    linear-gradient(135deg, rgba(32, 182, 156, 0.95), rgba(106, 166, 255, 0.8));
  box-shadow: inset 0 0 0 1px rgba(244, 247, 241, 0.2);
  position: relative;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
}

.brand-mark::before {
  width: 1.55rem;
  height: 0.14rem;
  left: 0.65rem;
  top: 1.15rem;
  transform: rotate(-28deg);
}

.brand-mark::after {
  width: 0.42rem;
  height: 0.42rem;
  right: 0.48rem;
  bottom: 0.55rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-tagline {
  font-size: 0.82rem;
  color: rgba(244, 247, 241, 0.72);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
  gap: 0.8rem;
  padding-left: clamp(1rem, 2vw, 2.25rem);
}

.nav-wrap nav {
  min-width: 0;
}

.nav-list,
.mobile-nav-list,
.mega-links,
.footer-links,
.service-link-list,
.contact-points,
.stat-list,
.pill-list,
.mini-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.22rem;
}

.nav-link,
.nav-summary {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  padding: 0.48rem 0.62rem;
  color: rgba(23, 29, 52, 0.82);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link[aria-current="page"],
.nav-summary:hover,
.nav-summary:focus-visible {
  color: var(--teal);
  background: rgba(43, 44, 152, 0.08);
}

.nav-summary {
  cursor: pointer;
  list-style: none;
}

.nav-summary::-webkit-details-marker {
  display: none;
}

.nav-summary::after {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.mega-nav {
  position: relative;
}

.mega-panel {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 0.56rem);
  width: min(900px, 92vw);
  border-radius: 20px;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(90, 109, 228, 0.1), rgba(255, 111, 61, 0.06)),
    rgba(23, 29, 52, 0.98);
  border: 1px solid rgba(251, 248, 241, 0.08);
  box-shadow: var(--shadow-strong);
  display: none;
}

.mega-nav details[open] .mega-panel {
  display: block;
}

.mega-panel-grid {
  display: grid;
  grid-template-columns: minmax(15rem, 0.72fr) minmax(0, 1.55fr);
  gap: 0.85rem;
}

.mega-feature {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(251, 248, 241, 0.05);
  border: 1px solid rgba(251, 248, 241, 0.08);
  color: rgba(251, 248, 241, 0.9);
}

.mega-feature h3,
.mega-column h3 {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
}

.mega-feature p,
.mega-column p,
.eyebrow,
.support-copy,
.section-intro p,
.kicker,
.metric-label,
.micro-copy,
.page-intro,
.footer-copy,
.contact-copy,
.timeline-copy,
.disclaimer-box p {
  margin: 0;
}

.mega-column {
  display: grid;
  gap: 1rem;
}

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

.mega-links a {
  display: grid;
  gap: 0.1rem;
  padding: 0.78rem 0.82rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(251, 248, 241, 0.08);
  background: rgba(251, 248, 241, 0.035);
  color: rgba(251, 248, 241, 0.92);
  transition: transform var(--transition), background var(--transition);
}

.mega-links a:hover,
.mega-links a:focus-visible {
  transform: translateY(-2px);
  background: rgba(251, 248, 241, 0.08);
}

.mega-links strong,
.footer-links strong,
.service-link-list strong,
.mini-list strong,
.timeline-list strong {
  font-size: 0.98rem;
}

.mega-links span,
.service-link-list span,
.footer-links span,
.mini-list span {
  font-size: 0.86rem;
  color: rgba(244, 247, 241, 0.68);
}

.header-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  justify-content: flex-end;
  min-width: 2.9rem;
  gap: 0.55rem;
}

.btn,
.secondary-link,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.btn {
  min-height: 3rem;
  padding: 0.72rem 1.25rem;
  border: 1px solid transparent;
  font-weight: 700;
  white-space: nowrap;
}

.btn:hover,
.secondary-link:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral), #ff8b5f);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(255, 111, 61, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, #ff8457, #ff9b74);
}

.btn-secondary,
.secondary-link {
  background: rgba(144, 154, 241, 0.08);
  color: var(--white);
  border: 1px solid rgba(144, 154, 241, 0.24);
}

.btn-secondary:hover,
.btn-secondary:focus-visible,
.secondary-link:hover,
.secondary-link:focus-visible {
  border-color: rgba(144, 154, 241, 0.4);
  background: rgba(144, 154, 241, 0.14);
}

.text-link {
  color: var(--teal);
  font-weight: 700;
}

.icon-button {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(43, 44, 152, 0.18);
  background: rgba(43, 44, 152, 0.07);
  color: var(--ink);
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(23, 29, 52, 0.12);
}

.site-header .brand {
  flex: 0 1 13.2rem;
  max-width: 13.2rem;
}

.site-header .brand-name {
  font-size: 1.12rem;
  letter-spacing: 0.06em;
}

.site-header .brand-tagline {
  font-size: 0.8rem;
  line-height: 1.25;
  color: rgba(23, 29, 52, 0.62);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 1.1rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  display: block;
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -0.35rem;
}

.menu-icon::after {
  top: 0.35rem;
}

.mobile-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(92vw, 380px);
  background:
    linear-gradient(180deg, rgba(90, 109, 228, 0.08), rgba(255, 111, 61, 0.05)),
    rgba(23, 29, 52, 0.98);
  color: var(--white);
  border-left: 1px solid rgba(251, 248, 241, 0.08);
  transform: translateX(102%);
  transition: transform var(--transition);
  z-index: 320;
  padding: 1.15rem;
  overflow-y: auto;
}

body.menu-open .mobile-nav {
  transform: translateX(0);
}

.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.mobile-nav-brand {
  display: flex;
  align-items: center;
  min-width: 0;
  max-width: calc(100% - 3.6rem);
}

.mobile-nav-logo {
  width: min(11rem, 100%);
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(7, 10, 24, 0.2));
}

.mobile-nav-list {
  display: grid;
  gap: 0.35rem;
}

.mobile-nav-list a,
.mobile-nav-list summary {
  display: flex;
  padding: 0.88rem 0.95rem;
  border-radius: 16px;
  background: rgba(251, 248, 241, 0.04);
  border: 1px solid rgba(251, 248, 241, 0.08);
  color: rgba(251, 248, 241, 0.92);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.mobile-nav details > div {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.5rem;
  padding-left: 0.35rem;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23, 29, 52, 0.54);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 310;
}

body.menu-open .mobile-overlay {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  background:
    radial-gradient(circle at top left, rgba(144, 154, 241, 0.2), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(255, 111, 61, 0.12), transparent 22%),
    linear-gradient(180deg, #171d34, #20274a 68%, #232d53);
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto auto 12% -10%;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(86, 101, 38, 0.2), transparent 66%);
  filter: blur(16px);
  pointer-events: none;
}

.hero {
  position: relative;
  min-height: auto;
  display: block;
}

.subpage-hero {
  position: relative;
  min-height: clamp(34rem, 80svh, 50rem);
  display: flex;
}

.hero-inner,
.subpage-hero-inner {
  width: min(calc(100% - 2rem), var(--max-width-wide));
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: stretch;
  min-height: auto;
  padding: clamp(2rem, 5vw, 3.6rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(251, 248, 241, 0.14);
  background: rgba(251, 248, 241, 0.06);
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.eyebrow::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 16px rgba(255, 111, 61, 0.45);
}

.hero-copy {
  display: grid;
  gap: 1.2rem;
  align-content: center;
  min-width: 0;
}

.hero-kicker {
  margin: -0.25rem 0 0;
  color: rgba(251, 248, 241, 0.68);
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-copy h1,
.subpage-hero-copy h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.01;
}

.hero-copy h1 {
  font-size: clamp(2.75rem, 4.5vw, 4.1rem);
  max-width: 11ch;
  text-wrap: balance;
}

.support-copy {
  max-width: 37rem;
  color: rgba(251, 248, 241, 0.76);
  font-size: 1.03rem;
  overflow-wrap: anywhere;
}

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

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.8rem;
  border-radius: 14px;
  background: rgba(251, 248, 241, 0.05);
  border: 1px solid rgba(251, 248, 241, 0.08);
  color: rgba(251, 248, 241, 0.88);
  font-size: 0.92rem;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hero-note strong {
  color: #ffd1bf;
}

.hero-aside {
  position: relative;
  min-width: 0;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-badge {
  display: grid;
  gap: 0.18rem;
  flex: 1 1 12rem;
  min-width: min(100%, 12rem);
  padding: 0.82rem 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(251, 248, 241, 0.08);
  background: rgba(251, 248, 241, 0.05);
  box-shadow: inset 0 1px 0 rgba(251, 248, 241, 0.04);
}

.hero-badge strong {
  color: #ffd1bf;
  font-size: 0.98rem;
}

.hero-badge span {
  color: rgba(251, 248, 241, 0.76);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.hero-showcase {
  display: grid;
  gap: 1rem;
  height: 100%;
  padding: clamp(1.1rem, 2vw, 1.5rem);
  border-radius: 28px;
  border: 1px solid rgba(251, 248, 241, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 111, 61, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(251, 248, 241, 0.05), rgba(251, 248, 241, 0.02)),
    rgba(23, 29, 52, 0.9);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.hero-showcase-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-showcase-copy {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
  max-width: 35rem;
}

.hero-panel-label {
  margin: 0;
  color: #ffd1bf;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-showcase-copy h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
  line-height: 1.08;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hero-showcase-copy p {
  margin: 0;
  color: rgba(251, 248, 241, 0.72);
  font-size: 0.95rem;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hero-brand-stamp {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 100%;
  padding: 0.72rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(251, 248, 241, 0.08);
  background: rgba(86, 101, 38, 0.18);
  color: #dce7bc;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-brand-stamp span {
  overflow-wrap: anywhere;
}

.hero-brand-stamp img {
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(7, 10, 24, 0.22));
}

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

.hero-metric {
  display: grid;
  gap: 0.3rem;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(251, 248, 241, 0.08);
  background: rgba(251, 248, 241, 0.045);
}

.hero-metric strong {
  color: var(--white);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1;
}

.hero-metric span {
  color: rgba(251, 248, 241, 0.74);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.hero-metric-code strong {
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  letter-spacing: 0.03em;
}

.hero-process-card {
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(251, 248, 241, 0.08);
  background: rgba(251, 248, 241, 0.04);
}

.hero-process-head {
  display: grid;
  gap: 0.18rem;
}

.hero-process-head strong {
  color: var(--white);
  font-size: 1rem;
}

.hero-process-head span {
  color: rgba(251, 248, 241, 0.68);
  font-size: 0.9rem;
}

.hero-process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.hero-process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.95rem 0;
  border-top: 1px solid rgba(251, 248, 241, 0.08);
}

.hero-process-step:first-child {
  padding-top: 0;
  border-top: 0;
}

.hero-process-step:last-child {
  padding-bottom: 0;
}

.hero-process-step > div {
  min-width: 0;
}

.hero-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(90, 109, 228, 0.95), rgba(255, 111, 61, 0.9));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(27, 33, 74, 0.24);
}

.hero-process-step strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--white);
  font-size: 0.98rem;
}

.hero-process-step p {
  margin: 0;
  color: rgba(251, 248, 241, 0.72);
  font-size: 0.91rem;
}

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

.hero-side-card {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(251, 248, 241, 0.08);
  background: rgba(251, 248, 241, 0.035);
}

.hero-side-card strong {
  color: var(--white);
  font-size: 1rem;
}

.hero-side-card p {
  margin: 0;
  color: rgba(251, 248, 241, 0.72);
  font-size: 0.92rem;
}

.hero-side-card-accent {
  background:
    linear-gradient(180deg, rgba(90, 109, 228, 0.14), rgba(255, 111, 61, 0.08)),
    rgba(251, 248, 241, 0.04);
}

body[data-page="home"] .hero {
  display: flex;
  min-height: calc(100svh - 9.2rem);
  background:
    radial-gradient(circle at 72% 24%, rgba(144, 154, 241, 0.28), transparent 28rem),
    radial-gradient(circle at 16% 18%, rgba(255, 111, 61, 0.12), transparent 22rem),
    linear-gradient(100deg, rgba(10, 14, 30, 0.97) 0%, rgba(18, 24, 48, 0.95) 46%, rgba(32, 39, 74, 0.9) 100%),
    linear-gradient(180deg, #151b31, #20274a 72%, #242d50);
}

body[data-page="home"] .hero::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background:
    linear-gradient(rgba(251, 248, 241, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 248, 241, 0.03) 1px, transparent 1px);
  background-size: 84px 84px;
  filter: none;
  opacity: 0.68;
  mask-image: linear-gradient(90deg, transparent 0%, #000 28%, #000 100%);
}

body[data-page="home"] .hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10rem;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(5, 8, 20, 0.32));
}

body[data-page="home"] .hero-inner {
  position: relative;
  flex: 0 1 auto;
  z-index: 1;
  width: min(calc(100% - 5rem), 1320px);
  grid-template-columns: minmax(0, 0.98fr) minmax(24rem, 0.82fr);
  gap: clamp(2.25rem, 5.2vw, 6rem);
  align-items: center;
  min-height: auto;
  padding: clamp(3rem, 6vh, 5.25rem) 0 clamp(3rem, 6vh, 5.25rem);
}

body[data-page="home"] .hero-copy {
  gap: clamp(0.95rem, 1.6vh, 1.25rem);
  max-width: 54rem;
  position: relative;
  z-index: 1;
}

body[data-page="home"] .hero-copy::before {
  content: "";
  width: clamp(3.8rem, 7vw, 6.6rem);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral), rgba(144, 154, 241, 0.92));
  box-shadow: 0 0 28px rgba(255, 111, 61, 0.26);
}

body[data-page="home"] .hero-copy h1 {
  max-width: 20ch;
  font-size: clamp(2.5rem, 3.65vw, 3.55rem);
  font-weight: 780;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

body[data-page="home"] .support-copy {
  max-width: 56ch;
  font-size: clamp(1.03rem, 1.22vw, 1.18rem);
  line-height: 1.72;
  color: rgba(251, 248, 241, 0.78);
  overflow-wrap: normal;
}

body[data-page="home"] .hero-actions {
  margin-top: 0.45rem;
  gap: 0.9rem;
}

.hero-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  width: min(100%, 41rem);
  max-width: 100%;
  margin-top: 0.85rem;
  padding: 0;
}

.hero-proof-item {
  display: grid;
  gap: 0.32rem;
  min-width: 0;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(251, 248, 241, 0.12);
  background: linear-gradient(180deg, rgba(251, 248, 241, 0.08), rgba(251, 248, 241, 0.035));
  box-shadow: inset 0 1px 0 rgba(251, 248, 241, 0.08);
}

.hero-proof-item:first-child {
  border-left: 0;
}

.hero-proof-item strong {
  color: var(--white);
  font-size: clamp(1.12rem, 1.6vw, 1.45rem);
  line-height: 1;
}

.hero-proof-item span {
  color: rgba(251, 248, 241, 0.68);
  font-size: 0.79rem;
  font-weight: 700;
  text-transform: uppercase;
}

body[data-page="home"] .hero-aside {
  align-self: center;
  min-height: clamp(31rem, 58vh, 39rem);
}

.hero-infrastructure {
  position: relative;
  height: 100%;
  min-height: inherit;
  border-radius: 28px;
  border: 1px solid rgba(251, 248, 241, 0.12);
  background:
    radial-gradient(circle at 72% 28%, rgba(144, 154, 241, 0.26), transparent 16rem),
    radial-gradient(circle at 20% 78%, rgba(255, 111, 61, 0.14), transparent 15rem),
    linear-gradient(rgba(144, 154, 241, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(144, 154, 241, 0.1) 1px, transparent 1px),
    rgba(24, 31, 60, 0.66);
  background-size: auto, auto, 58px 58px, 58px 58px, auto;
  overflow: hidden;
  box-shadow:
    0 34px 90px rgba(4, 7, 18, 0.36),
    inset 0 1px 0 rgba(251, 248, 241, 0.1);
}

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

.hero-infrastructure::before {
  inset: 1.2rem;
  border-radius: 22px;
  border: 1px solid rgba(251, 248, 241, 0.08);
}

.hero-infrastructure::after {
  width: clamp(19rem, 33vw, 28rem);
  height: clamp(19rem, 33vw, 28rem);
  right: -4.5rem;
  top: -3rem;
  border-radius: 50%;
  border: 1px solid rgba(144, 154, 241, 0.24);
  box-shadow:
    0 0 0 3.2rem rgba(144, 154, 241, 0.035),
    0 0 0 6.4rem rgba(255, 111, 61, 0.025);
  animation: heroOrbitDrift 18s linear infinite;
}

.trade-globe {
  position: absolute;
  top: 8%;
  right: 5%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(16rem, 28vw, 25rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(251, 248, 241, 0.13), rgba(251, 248, 241, 0.035) 56%, transparent 61%),
    rgba(23, 29, 52, 0.26);
  box-shadow:
    0 28px 86px rgba(7, 10, 24, 0.42),
    0 0 70px rgba(144, 154, 241, 0.18),
    inset 0 0 0 1px rgba(251, 248, 241, 0.1);
  animation: heroGlobeFloat 7.5s ease-in-out infinite;
}

.trade-globe::before,
.trade-globe::after {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  pointer-events: none;
}

.trade-globe::before {
  border: 1px solid rgba(144, 154, 241, 0.34);
  transform: rotateX(64deg) rotateZ(-18deg);
  box-shadow: 0 0 30px rgba(144, 154, 241, 0.2);
  animation: heroOrbitSpin 12s linear infinite;
}

.trade-globe::after {
  inset: 15%;
  border: 1px solid rgba(255, 111, 61, 0.28);
  transform: rotateX(68deg) rotateZ(24deg);
  animation: heroOrbitSpinReverse 16s linear infinite;
}

.trade-globe img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 52%;
  object-fit: contain;
  filter:
    drop-shadow(0 18px 30px rgba(7, 10, 24, 0.32))
    drop-shadow(0 0 22px rgba(144, 154, 241, 0.18));
}

.trade-route {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(144, 154, 241, 0.78), rgba(255, 111, 61, 0.72), transparent);
  transform-origin: left center;
  animation: heroRoutePulse 4.8s ease-in-out infinite;
}

.trade-route-one {
  width: 62%;
  top: 36%;
  left: 13%;
  transform: rotate(-13deg);
}

.trade-route-two {
  width: 60%;
  top: 60%;
  left: 14%;
  transform: rotate(17deg);
  animation-delay: 1.2s;
}

.trade-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 8px rgba(255, 111, 61, 0.12);
  animation: heroNodePulse 3.4s ease-in-out infinite;
}

.trade-node span {
  position: absolute;
  top: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.trade-node-one {
  top: 34%;
  left: 19%;
}

.trade-node-two {
  top: 53%;
  left: 45%;
  animation-delay: 0.8s;
}

.trade-node-three {
  top: 69%;
  left: 74%;
  animation-delay: 1.6s;
}

.trade-terminal {
  position: absolute;
  left: 8%;
  bottom: 8%;
  display: grid;
  gap: 0.38rem;
  width: min(80%, 27rem);
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(251, 248, 241, 0.1);
  border-left: 3px solid var(--coral);
  background:
    linear-gradient(90deg, rgba(18, 24, 48, 0.92), rgba(23, 29, 52, 0.58)),
    rgba(23, 29, 52, 0.7);
  box-shadow:
    0 20px 50px rgba(4, 7, 18, 0.28),
    inset 0 1px 0 rgba(251, 248, 241, 0.08);
}

.trade-terminal span {
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trade-terminal strong {
  color: var(--white);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  line-height: 1.2;
}

@keyframes heroGlobeFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-0.35rem, -0.7rem, 0);
  }
}

@keyframes heroOrbitSpin {
  from {
    transform: rotateX(64deg) rotateZ(-18deg);
  }

  to {
    transform: rotateX(64deg) rotateZ(342deg);
  }
}

@keyframes heroOrbitSpinReverse {
  from {
    transform: rotateX(68deg) rotateZ(24deg);
  }

  to {
    transform: rotateX(68deg) rotateZ(-336deg);
  }
}

@keyframes heroOrbitDrift {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes heroRoutePulse {
  0%,
  100% {
    opacity: 0.42;
  }

  50% {
    opacity: 1;
  }
}

@keyframes heroNodePulse {
  0%,
  100% {
    box-shadow: 0 0 0 8px rgba(255, 111, 61, 0.12);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(144, 154, 241, 0.12);
  }
}

.hero-visual {
  display: grid;
  gap: 1rem;
}

.dashboard-shell,
.phone-shell,
.subpage-surface,
.contact-card,
.insight-card,
.workflow-card,
.trust-card,
.compliance-card,
.detail-panel,
.contact-panel {
  border-radius: 22px;
  border: 1px solid rgba(251, 248, 241, 0.08);
  background:
    linear-gradient(180deg, rgba(251, 248, 241, 0.05), rgba(251, 248, 241, 0.02)),
    rgba(23, 29, 52, 0.88);
  box-shadow: var(--shadow-strong);
  min-width: 0;
  max-width: 100%;
}

.dashboard-shell {
  padding: 1.2rem;
  min-height: 20.5rem;
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.dashboard-title {
  display: grid;
  gap: 0.15rem;
}

.dashboard-title strong,
.surface-header strong,
.panel-heading strong,
.contact-point strong,
.footer-heading,
.detail-feature strong {
  font-size: 1rem;
}

.dashboard-title span,
.surface-header span,
.panel-heading span,
.contact-point span,
.footer-copy,
.timeline-copy,
.stat-label,
.metric-label,
.page-intro,
.kicker,
.service-note,
.contact-panel p {
  color: rgba(251, 248, 241, 0.7);
  font-size: 0.9rem;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(86, 101, 38, 0.2);
  color: #dce7bc;
  font-size: 0.82rem;
  font-weight: 700;
}

.status-indicator::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #dce7bc;
}

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

.metric-card,
.signal-card,
.code-card,
.ledger-card,
.bullet-panel,
.value-card,
.capability-card,
.service-card,
.mini-panel,
.contact-tile,
.faq-card,
.process-card,
.route-card {
  border-radius: 18px;
  padding: 1rem;
  border: 1px solid rgba(244, 247, 241, 0.08);
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}

.metric-card {
  background: rgba(244, 247, 241, 0.045);
}

.metric-value {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--white);
}

.metric-label {
  margin-top: 0.35rem;
}

.mini-chart {
  margin-top: 0.9rem;
  height: 4rem;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(97, 225, 218, 0.14), transparent 80%),
    linear-gradient(90deg, rgba(244, 247, 241, 0.08) 1px, transparent 1px);
  background-size: 100% 100%, 18% 100%;
  position: relative;
  overflow: hidden;
}

.mini-chart::after {
  content: "";
  position: absolute;
  inset: 18% 8% 18% 8%;
  border-radius: 999px;
  border-bottom: 3px solid var(--cyan);
  border-right: 3px solid transparent;
  transform: skewX(-20deg);
}

.signal-card {
  background:
    radial-gradient(circle at 20% 20%, rgba(144, 154, 241, 0.18), transparent 35%),
    rgba(251, 248, 241, 0.045);
}

.signal-stack {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.8rem;
}

.signal-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(6.5rem, 8.75rem);
  align-items: center;
  gap: 0.85rem;
}

.ledger-row,
.timeline-row,
.process-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 0.85rem;
}

.signal-label,
.ledger-row span:first-child,
.timeline-row span:first-child,
.process-row span:first-child {
  color: rgba(251, 248, 241, 0.72);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.signal-bar {
  height: 0.5rem;
  width: 100%;
  border-radius: 999px;
  background: rgba(251, 248, 241, 0.1);
  overflow: hidden;
}

.signal-bar::after {
  content: "";
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--coral));
}

.signal-bar[data-width="72"]::after { width: 72%; }
.signal-bar[data-width="81"]::after { width: 81%; }
.signal-bar[data-width="64"]::after { width: 64%; }
.signal-bar[data-width="92"]::after { width: 92%; }
.signal-bar[data-width="58"]::after { width: 58%; }

.code-card {
  background: rgba(251, 248, 241, 0.035);
  font-family: "SF Mono", "Menlo", "Consolas", monospace;
  font-size: 0.85rem;
  color: rgba(251, 248, 241, 0.84);
  white-space: pre-wrap;
}

.phone-shell {
  padding: 0.8rem;
  width: min(14rem, 42%);
  justify-self: end;
  margin-top: -1.5rem;
}

.phone-frame {
  border-radius: 28px;
  background: rgba(244, 247, 241, 0.05);
  border: 1px solid rgba(244, 247, 241, 0.1);
  padding: 1rem 0.9rem;
  min-height: 16rem;
}

.phone-notch {
  width: 35%;
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(244, 247, 241, 0.25);
  margin: 0 auto 1rem;
}

.phone-screen {
  display: grid;
  gap: 0.9rem;
}

.phone-balance {
  padding: 0.95rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(43, 44, 152, 0.92), rgba(90, 109, 228, 0.86));
  color: var(--white);
}

.phone-actions,
.workflow-nodes,
.capability-grid,
.service-grid,
.contact-grid,
.faq-grid,
.process-grid,
.route-grid,
.card-grid,
.footer-grid,
.detail-grid,
.stat-grid,
.logo-strip,
.insight-grid,
.timeline-list,
.section-grid,
.split-grid,
.value-grid,
.compliance-grid {
  display: grid;
  gap: 1rem;
}

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

.phone-action {
  padding: 0.7rem 0.5rem;
  border-radius: 14px;
  background: rgba(251, 248, 241, 0.06);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(251, 248, 241, 0.84);
}

.section-band {
  padding: clamp(3.8rem, 7vw, 5.25rem) 0;
}

.section-band.light {
  background: var(--paper);
  color: var(--ink);
}

.section-band.soft {
  background: var(--paper-2);
}

.section-band.dark {
  background:
    radial-gradient(circle at top left, rgba(144, 154, 241, 0.12), transparent 24%),
    linear-gradient(180deg, #1d2548, #161c33);
  color: var(--white);
}

.section-band.highlight {
  background:
    linear-gradient(180deg, rgba(90, 109, 228, 0.06), rgba(255, 111, 61, 0.04)),
    var(--paper);
}

.section-band.slim {
  padding: 3rem 0;
}

.section-intro {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 2.15rem;
  max-width: 48rem;
}

.section-intro h2,
.section-intro h3,
.split-copy h2,
.cta-panel h2,
.subpage-hero-copy h1,
.detail-content h2,
.route-card h3,
.faq-card h3,
.service-card h3,
.value-card h3,
.process-card h3,
.contact-card h3,
.contact-panel h3 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.04;
}

.section-intro h2 {
  font-size: clamp(1.82rem, 2.95vw, 2.64rem);
  max-width: 14ch;
}

.section-intro p,
.split-copy p,
.kicker {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.section-band.dark .section-intro p,
.section-band.dark .split-copy p,
.section-band.dark .kicker,
.section-band.dark .stat-label {
  color: rgba(244, 247, 241, 0.72);
}

.section-tag {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--teal);
}

.section-band.dark .section-tag {
  color: var(--cyan);
}

.capability-grid,
.service-grid,
.card-grid,
.faq-grid,
.route-grid,
.value-grid,
.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.capability-card,
.service-card,
.value-card,
.route-card,
.faq-card,
.process-card,
.contact-card,
.contact-tile,
.mini-panel {
  background: var(--white);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.section-band.dark .capability-card,
.section-band.dark .service-card,
.section-band.dark .route-card,
.section-band.dark .faq-card,
.section-band.dark .process-card,
.section-band.dark .contact-card,
.section-band.dark .mini-panel,
.section-band.dark .contact-tile {
  background: rgba(244, 247, 241, 0.04);
  border-color: rgba(244, 247, 241, 0.08);
  box-shadow: none;
}

.capability-card h3,
.service-card h3,
.value-card h3,
.route-card h3,
.faq-card h3,
.process-card h3,
.contact-card h3,
.contact-tile h3 {
  font-size: 1.24rem;
  margin-bottom: 0.45rem;
}

.capability-card p,
.service-card p,
.value-card p,
.route-card p,
.faq-card p,
.process-card p,
.contact-card p,
.contact-tile p,
.bullet-panel p {
  margin: 0;
  color: var(--ink-soft);
}

.section-band.dark .capability-card p,
.section-band.dark .service-card p,
.section-band.dark .route-card p,
.section-band.dark .faq-card p,
.section-band.dark .process-card p,
.section-band.dark .contact-card p,
.section-band.dark .contact-tile p {
  color: rgba(244, 247, 241, 0.72);
}

.card-icon,
.metric-badge,
.step-index,
.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.card-icon,
.step-index,
.contact-icon {
  background:
    linear-gradient(135deg, rgba(90, 109, 228, 0.14), rgba(255, 111, 61, 0.12));
  color: var(--teal);
  box-shadow: inset 0 0 0 1px rgba(43, 44, 152, 0.08);
}

.metric-badge {
  background: rgba(86, 101, 38, 0.16);
  color: #48541d;
}

.pill-list,
.mini-list,
.service-link-list,
.footer-links,
.timeline-list {
  display: grid;
  gap: 0.65rem;
}

.mini-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.22rem 0.68rem;
  align-items: start;
}

.mini-list li::before {
  margin-top: 0.55rem;
  flex: 0 0 auto;
}

.mini-list li strong {
  color: inherit;
  line-height: 1.32;
}

.mini-list li span {
  grid-column: 2;
  color: inherit;
  line-height: 1.56;
}

.pill-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(43, 44, 152, 0.08);
  color: #26288f;
  font-size: 0.9rem;
  font-weight: 700;
  width: fit-content;
}

.pill-list li::before,
.mini-list li::before,
.service-link-list li::before,
.footer-links li::before,
.timeline-list li::before,
.contact-points li::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: currentColor;
}

.split-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 2rem;
}

.split-copy {
  display: grid;
  gap: 1rem;
}

.split-copy h2 {
  font-size: clamp(1.86rem, 3.05vw, 2.72rem);
}

.subpage-hero {
  background:
    radial-gradient(circle at top right, rgba(144, 154, 241, 0.16), transparent 32%),
    linear-gradient(180deg, #171d34, #212b4f);
  color: var(--white);
}

.subpage-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
  gap: 1.75rem;
  min-height: calc(var(--screen-min) - 1rem);
  padding: 2.25rem 0 2.35rem;
}

.subpage-hero-copy {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.subpage-hero-copy h1 {
  font-size: clamp(2.35rem, 4.1vw, 3.95rem);
  max-width: 11ch;
  text-wrap: balance;
}

.subpage-hero-copy p {
  color: rgba(251, 248, 241, 0.76);
  margin: 0;
  max-width: 35rem;
  overflow-wrap: anywhere;
}

.subpage-surface {
  padding: 1.1rem;
}

.surface-header,
.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.surface-header > div,
.panel-heading > div {
  display: grid;
  gap: 0.15rem;
}

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

.mini-panel {
  min-height: 8.5rem;
}

.mini-panel h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.mini-panel p {
  margin: 0;
  font-size: 0.88rem;
}

.subpage-surface .mini-panel {
  background: rgba(251, 248, 241, 0.05);
  border-color: rgba(251, 248, 241, 0.08);
  box-shadow: none;
}

.subpage-surface .mini-panel p,
.subpage-surface .mini-panel h3 {
  color: var(--white);
}

.subpage-surface .mini-panel p {
  color: rgba(244, 247, 241, 0.72);
}

.breadcrumb {
  display: none;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.breadcrumb span[aria-hidden="true"] {
  color: rgba(68, 96, 90, 0.4);
}

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

.insight-card,
.workflow-card,
.trust-card,
.compliance-card,
.detail-panel,
.contact-panel {
  padding: 1.2rem;
}

.detail-panel,
.contact-panel,
.trust-card {
  color: var(--white);
}

.detail-feature {
  display: grid;
  gap: 0.35rem;
}

.detail-feature span {
  color: rgba(251, 248, 241, 0.74);
  font-size: 0.9rem;
}

.timeline-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.timeline-step {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.step-index {
  margin-bottom: 0;
}

.timeline-copy {
  color: var(--ink-soft);
}

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

.stat-item {
  padding: 1.25rem 1rem;
  border-top: 1px solid var(--line);
}

.section-band.dark .stat-item {
  border-top-color: rgba(244, 247, 241, 0.12);
}

.stat-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  margin-top: 0.5rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 111, 61, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(23, 29, 52, 0.96), rgba(35, 45, 83, 0.93));
  color: var(--white);
  border: 1px solid rgba(251, 248, 241, 0.08);
}

.cta-panel h2 {
  font-size: clamp(1.86rem, 3.5vw, 2.82rem);
  margin-bottom: 0.8rem;
}

.cta-panel p {
  margin: 0;
  color: rgba(244, 247, 241, 0.72);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

body[data-page="home"] .home-section {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(4.8rem, 7.5vw, 7rem) 0;
}

body[data-page="home"] .home-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

body[data-page="home"] .home-payments,
body[data-page="home"] .home-compliance {
  background:
    linear-gradient(180deg, rgba(251, 248, 241, 0.88), rgba(251, 248, 241, 0.98)),
    radial-gradient(circle at 8% 0%, rgba(144, 154, 241, 0.18), transparent 26%),
    var(--paper);
}

body[data-page="home"] .home-ecosystem {
  color: var(--white);
  background:
    linear-gradient(rgba(144, 154, 241, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(144, 154, 241, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 18% 20%, rgba(255, 111, 61, 0.16), transparent 24rem),
    radial-gradient(circle at 82% 12%, rgba(144, 154, 241, 0.24), transparent 26rem),
    linear-gradient(135deg, #11172c 0%, #1c2548 52%, #11182f 100%);
  background-size: 72px 72px, 72px 72px, auto, auto, auto;
}

body[data-page="home"] .home-ecosystem .section-tag,
body[data-page="home"] .home-ecosystem .section-intro h2 {
  color: var(--white);
}

body[data-page="home"] .home-ecosystem .section-intro p {
  color: rgba(251, 248, 241, 0.76);
}

.ecosystem-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(18rem, 0.46fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: clamp(1.7rem, 3vw, 2.45rem);
}

body[data-page="home"] .home-ecosystem .ecosystem-intro-grid .section-intro {
  margin-bottom: 0;
}

.ecosystem-constellation {
  position: relative;
  min-height: 21rem;
  overflow: visible;
}

.ecosystem-constellation::before {
  content: "";
  position: absolute;
  inset: 6% 2% 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(144, 154, 241, 0.15), transparent 54%),
    radial-gradient(circle at 65% 35%, rgba(255, 111, 61, 0.12), transparent 34%);
  filter: blur(2px);
  opacity: 0.95;
  pointer-events: none;
}

.ecosystem-globe {
  position: absolute;
  top: 50%;
  right: 3%;
  width: min(92%, 27rem);
  transform: translateY(-50%);
  opacity: 0.34;
  filter:
    drop-shadow(0 34px 70px rgba(4, 7, 18, 0.36))
    drop-shadow(0 0 36px rgba(144, 154, 241, 0.2));
}

.ecosystem-globe::before,
.ecosystem-globe::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  pointer-events: none;
}

.ecosystem-globe::before {
  width: 72%;
  height: 108%;
  border: 1px solid rgba(144, 154, 241, 0.28);
  transform: translate(-50%, -50%) rotate(-20deg);
}

.ecosystem-globe::after {
  width: 92%;
  height: 46%;
  border: 1px solid rgba(255, 111, 61, 0.22);
  transform: translate(-50%, -50%) rotate(14deg);
}

.ecosystem-globe img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.ecosystem-path {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(144, 154, 241, 0.65), rgba(255, 111, 61, 0.52), transparent);
  transform-origin: right center;
  animation: ecosystemPathGlow 5.8s ease-in-out infinite;
}

.ecosystem-path-one {
  top: 38%;
  right: 16%;
  width: 74%;
  transform: rotate(-12deg);
}

.ecosystem-path-two {
  top: 62%;
  right: 14%;
  width: 70%;
  transform: rotate(14deg);
  animation-delay: 1.4s;
}

.ecosystem-point {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.9rem;
  min-height: 2.75rem;
  padding: 0.62rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(251, 248, 241, 0.14);
  background:
    linear-gradient(135deg, rgba(251, 248, 241, 0.1), rgba(251, 248, 241, 0.045)),
    rgba(16, 22, 46, 0.72);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow:
    0 16px 40px rgba(4, 7, 18, 0.22),
    0 0 0 0.45rem rgba(144, 154, 241, 0.045);
  backdrop-filter: blur(14px);
}

.ecosystem-point::before {
  content: "";
  width: 0.46rem;
  height: 0.46rem;
  margin-right: 0.46rem;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0.32rem rgba(255, 111, 61, 0.12);
}

.ecosystem-point-credit {
  left: 5%;
  top: 20%;
}

.ecosystem-point-docs {
  left: 30%;
  top: 8%;
}

.ecosystem-point-compliance {
  left: 13%;
  bottom: 13%;
}

.ecosystem-point-trade {
  right: 5%;
  bottom: 21%;
}

@keyframes ecosystemPathGlow {
  0%,
  100% {
    opacity: 0.38;
  }

  50% {
    opacity: 0.95;
  }
}

body[data-page="home"] .home-software,
body[data-page="home"] .home-tradetech,
body[data-page="home"] .home-final-cta {
  background:
    linear-gradient(135deg, rgba(243, 238, 228, 0.96), rgba(251, 248, 241, 0.78)),
    var(--paper-2);
}

body[data-page="home"] .home-software .section-intro {
  max-width: 100%;
}

.software-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(18rem, 0.46fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: clamp(1.7rem, 3vw, 2.45rem);
}

body[data-page="home"] .home-software .software-intro-grid .section-intro {
  margin-bottom: 0;
}

.software-interface {
  position: relative;
  min-height: 19rem;
}

.software-interface::before {
  content: "";
  position: absolute;
  inset: 10% 3% 4% 14%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(90, 109, 228, 0.2), transparent 62%),
    radial-gradient(circle at 78% 20%, rgba(255, 111, 61, 0.14), transparent 38%);
  filter: blur(2px);
}

.software-window {
  position: absolute;
  left: 2%;
  right: 22%;
  top: 8%;
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(43, 44, 152, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(251, 248, 241, 0.78));
  box-shadow:
    0 28px 70px rgba(23, 29, 52, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.software-window-bar {
  display: flex;
  gap: 0.36rem;
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid rgba(23, 29, 52, 0.08);
  background: rgba(255, 255, 255, 0.48);
}

.software-window-bar span {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: rgba(43, 44, 152, 0.24);
}

.software-window-bar span:first-child {
  background: rgba(255, 111, 61, 0.72);
}

.software-screen {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
}

.software-screen-header {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
}

.software-screen-header strong {
  color: var(--ink);
  font-size: 1rem;
}

.software-screen-header span {
  padding: 0.32rem 0.52rem;
  border-radius: 999px;
  background: rgba(86, 101, 38, 0.1);
  color: #48541d;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.software-screen-row {
  height: 0.72rem;
  width: 68%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(43, 44, 152, 0.18), rgba(255, 111, 61, 0.14));
}

.software-screen-row-wide {
  width: 92%;
}

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

.software-module-grid span {
  display: grid;
  place-items: center;
  min-height: 3.9rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(43, 44, 152, 0.08), rgba(255, 111, 61, 0.08)),
    rgba(255, 255, 255, 0.68);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.software-phone {
  position: absolute;
  right: 2%;
  bottom: 1rem;
  display: grid;
  place-items: center;
  gap: 0.16rem;
  width: 6.4rem;
  min-height: 8.7rem;
  padding: 0.8rem;
  border-radius: 1.45rem;
  border: 1px solid rgba(251, 248, 241, 0.16);
  background:
    radial-gradient(circle at 50% 18%, rgba(144, 154, 241, 0.24), transparent 38%),
    linear-gradient(180deg, #20294f, #11172c);
  box-shadow: 0 22px 54px rgba(23, 29, 52, 0.28);
}

.software-phone span {
  width: 2.2rem;
  height: 0.22rem;
  border-radius: 999px;
  background: rgba(251, 248, 241, 0.28);
}

.software-phone strong {
  color: var(--white);
  margin-top: auto;
  font-size: 0.9rem;
}

.software-phone small {
  color: rgba(251, 248, 241, 0.66);
  font-size: 0.72rem;
  font-weight: 700;
}

body[data-page="home"] .home-tradetech .section-intro {
  max-width: 100%;
}

.tradetech-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(18rem, 0.48fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: clamp(1.7rem, 3vw, 2.45rem);
}

body[data-page="home"] .home-tradetech .tradetech-intro-grid .section-intro {
  margin-bottom: 0;
}

.tradetech-flow {
  position: relative;
  min-height: 19rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(43, 44, 152, 0.12);
  background:
    radial-gradient(circle at 22% 24%, rgba(90, 109, 228, 0.18), transparent 28%),
    radial-gradient(circle at 86% 76%, rgba(255, 111, 61, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(246, 242, 234, 0.64));
  box-shadow:
    0 28px 70px rgba(23, 29, 52, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.tradetech-flow::before {
  content: "";
  position: absolute;
  inset: 12% 10%;
  border-radius: 999px;
  border: 1px solid rgba(43, 44, 152, 0.14);
  transform: rotate(-11deg);
}

.tradetech-flow::after {
  content: "";
  position: absolute;
  right: -8%;
  top: -16%;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(43, 44, 152, 0.08) 0,
      rgba(43, 44, 152, 0.08) 1px,
      transparent 1px,
      transparent 18px
    );
  opacity: 0.58;
}

.trade-document-stack {
  position: absolute;
  left: 9%;
  top: 18%;
  width: 11rem;
  height: 12rem;
}

.trade-document {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding: 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(43, 44, 152, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 248, 241, 0.82));
  box-shadow: 0 18px 44px rgba(23, 29, 52, 0.13);
}

.trade-document-front {
  z-index: 2;
}

.trade-document-back {
  transform: translate(1.05rem, 0.9rem) rotate(4deg);
  opacity: 0.62;
}

.trade-document strong {
  color: var(--ink);
  font-size: 0.84rem;
}

.trade-document i {
  display: block;
  height: 0.52rem;
  border-radius: 999px;
  background: rgba(43, 44, 152, 0.12);
}

.trade-document i:nth-child(3) {
  width: 78%;
}

.trade-document i:nth-child(4) {
  width: 58%;
  background: linear-gradient(90deg, rgba(90, 109, 228, 0.5), rgba(255, 111, 61, 0.52));
}

.trade-route-line {
  position: absolute;
  left: 42%;
  right: 11%;
  top: 50%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(43, 44, 152, 0.18), rgba(90, 109, 228, 0.62), rgba(255, 111, 61, 0.55));
}

.trade-route-line::before,
.trade-route-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: #2b2c98;
  transform: translateY(-50%);
  box-shadow: 0 0 0 0 rgba(43, 44, 152, 0.22);
  animation: tradeRoutePulse 2.8s ease-in-out infinite;
}

.trade-route-line::before {
  left: 0;
}

.trade-route-line::after {
  right: 0;
  background: #ff6f3d;
  animation-delay: 1.1s;
}

.trade-node-card {
  position: absolute;
  display: grid;
  place-items: center;
  width: 4.9rem;
  min-height: 3.6rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(43, 44, 152, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(251, 248, 241, 0.72));
  color: #2b2c98;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  box-shadow: 0 16px 36px rgba(23, 29, 52, 0.12);
}

.trade-node-lc {
  right: 18%;
  top: 16%;
}

.trade-node-bg {
  right: 8%;
  top: 42%;
}

.trade-node-sblc {
  right: 24%;
  bottom: 14%;
}

@keyframes tradeRoutePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(43, 44, 152, 0.22);
  }

  50% {
    box-shadow: 0 0 0 0.75rem rgba(43, 44, 152, 0);
  }
}

body[data-page="home"] .home-industries .section-intro {
  max-width: 100%;
}

.industries-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(18rem, 0.48fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: clamp(1.7rem, 3vw, 2.45rem);
}

body[data-page="home"] .home-industries .industries-intro-grid .section-intro {
  margin-bottom: 0;
}

.industries-map {
  position: relative;
  min-height: 19rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(251, 248, 241, 0.12);
  background:
    radial-gradient(circle at 50% 46%, rgba(144, 154, 241, 0.24), transparent 35%),
    radial-gradient(circle at 84% 18%, rgba(255, 111, 61, 0.16), transparent 26%),
    linear-gradient(145deg, rgba(251, 248, 241, 0.08), rgba(251, 248, 241, 0.025));
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.industries-map::before {
  content: "";
  position: absolute;
  inset: 13%;
  border-radius: 50%;
  border: 1px solid rgba(251, 248, 241, 0.12);
  box-shadow:
    0 0 0 2.5rem rgba(144, 154, 241, 0.035),
    0 0 0 5rem rgba(251, 248, 241, 0.025);
}

.industries-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 248, 241, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(251, 248, 241, 0.04) 1px, transparent 1px);
  background-size: 3.2rem 3.2rem;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 74%);
  opacity: 0.62;
}

.industry-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  gap: 0.3rem;
  width: 11.6rem;
  padding: 1.05rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(251, 248, 241, 0.14);
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 111, 61, 0.18), transparent 38%),
    linear-gradient(145deg, rgba(31, 39, 76, 0.96), rgba(17, 23, 44, 0.92));
  transform: translate(-50%, -50%);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.22);
}

.industry-hub span {
  color: #cdd3ff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.industry-hub strong {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.2;
}

.industry-rail {
  position: absolute;
  left: 15%;
  right: 15%;
  top: 50%;
  z-index: 1;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(144, 154, 241, 0.62), rgba(255, 111, 61, 0.52), transparent);
  transform: rotate(-18deg);
}

.industry-rail-two {
  transform: rotate(18deg);
  opacity: 0.72;
}

.industry-segment {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  min-width: 6.8rem;
  min-height: 2.9rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(251, 248, 241, 0.13);
  background: rgba(251, 248, 241, 0.09);
  color: rgba(251, 248, 241, 0.9);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
}

.industry-segment-import {
  left: 8%;
  top: 18%;
}

.industry-segment-project {
  right: 7%;
  top: 20%;
}

.industry-segment-cross {
  right: 9%;
  bottom: 18%;
}

.industry-segment-docs {
  left: 10%;
  bottom: 17%;
}

body[data-page="home"] .home-capabilities {
  background:
    linear-gradient(135deg, rgba(251, 248, 241, 0.92), rgba(251, 248, 241, 0.7)),
    repeating-linear-gradient(
      -35deg,
      rgba(43, 44, 152, 0.08) 0,
      rgba(43, 44, 152, 0.08) 1px,
      transparent 1px,
      transparent 18px
    ),
    radial-gradient(circle at 10% 16%, rgba(86, 101, 38, 0.16), transparent 20rem),
    radial-gradient(circle at 88% 80%, rgba(255, 111, 61, 0.12), transparent 22rem),
    #f2efe6;
  background-size: auto, auto, auto, auto, auto;
}

body[data-page="home"] .home-credittech,
body[data-page="home"] .home-automation,
body[data-page="home"] .home-industries {
  background:
    radial-gradient(circle at 12% 10%, rgba(144, 154, 241, 0.18), transparent 28%),
    radial-gradient(circle at 88% 0%, rgba(255, 111, 61, 0.12), transparent 24%),
    linear-gradient(180deg, #20294f, #151b31);
}

body[data-page="home"] .home-proof {
  padding: clamp(3.1rem, 5vw, 4.4rem) 0;
  background:
    linear-gradient(90deg, rgba(23, 29, 52, 0.045), rgba(90, 109, 228, 0.08), rgba(23, 29, 52, 0.035)),
    var(--paper);
}

body[data-page="home"] .home-operating-model {
  padding: clamp(3.6rem, 6vw, 5rem) 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(144, 154, 241, 0.22), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(255, 111, 61, 0.12), transparent 24rem),
    linear-gradient(135deg, #f8f9ff 0%, #eef1fb 48%, #f6f2ea 100%);
}

body[data-page="home"] .operating-model-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.45fr);
  gap: clamp(1.4rem, 3vw, 2.2rem);
  align-items: start;
}

body[data-page="home"] .home-operating-model .section-intro {
  max-width: 58rem;
  margin-bottom: 0;
}

.operating-orbit {
  position: relative;
  align-self: center;
  min-height: 19rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(43, 44, 152, 0.12);
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.28) 42%, transparent 66%),
    radial-gradient(circle at 80% 12%, rgba(255, 111, 61, 0.13), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.46), rgba(238, 241, 251, 0.58));
  box-shadow:
    0 28px 70px rgba(23, 29, 52, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  overflow: hidden;
}

.operating-orbit::before,
.operating-orbit::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.operating-orbit::before {
  inset: 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(144, 154, 241, 0.16);
}

.operating-orbit::after {
  left: 10%;
  right: 10%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(90, 109, 228, 0.34), rgba(255, 111, 61, 0.28), transparent);
}

.operating-orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 0.45rem;
  width: 9.6rem;
  height: 9.6rem;
  padding: 1.2rem;
  border-radius: 50%;
  color: var(--ink);
  text-align: center;
  background:
    radial-gradient(circle at 42% 28%, rgba(255, 255, 255, 0.96), rgba(242, 244, 255, 0.72) 62%, rgba(255, 229, 219, 0.52));
  box-shadow:
    0 18px 46px rgba(23, 29, 52, 0.16),
    0 0 0 0.8rem rgba(255, 255, 255, 0.42),
    inset 0 0 0 1px rgba(43, 44, 152, 0.1);
  transform: translate(-50%, -50%);
}

.operating-orbit-core img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.operating-orbit-core span {
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.15;
}

.operating-orbit-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16.5rem;
  height: 11rem;
  border-radius: 50%;
  border: 1px solid rgba(90, 109, 228, 0.26);
  box-shadow:
    0 0 0 2.4rem rgba(144, 154, 241, 0.045),
    inset 0 0 30px rgba(255, 111, 61, 0.06);
  transform: translate(-50%, -50%) rotate(-14deg);
  animation: operatingOrbitSpin 18s linear infinite;
}

.operating-orbit-node {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 0.02rem;
  min-width: 7.4rem;
  padding: 0.72rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(43, 44, 152, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(23, 29, 52, 0.11);
}

.operating-orbit-node strong {
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.1;
}

.operating-orbit-node span {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.operating-orbit-node-one {
  left: 8%;
  top: 18%;
}

.operating-orbit-node-two {
  right: 7%;
  top: 20%;
}

.operating-orbit-node-three {
  right: 8%;
  bottom: 18%;
}

.operating-orbit-node-four {
  left: 9%;
  bottom: 16%;
}

@keyframes operatingOrbitSpin {
  from {
    transform: translate(-50%, -50%) rotate(-14deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(346deg);
  }
}

.workflow-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  margin-top: 0.45rem;
  padding: 0.58rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(86, 101, 38, 0.18);
  background: rgba(86, 101, 38, 0.08);
  color: #48541d;
  font-size: 0.86rem;
  font-weight: 800;
}

.workflow-status img {
  width: 1.55rem;
  height: 1.55rem;
  object-fit: contain;
}

.operating-process {
  display: grid;
  gap: 1rem;
  grid-column: 1 / -1;
}

.operating-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.operating-steps::before {
  content: "";
  position: absolute;
  top: 1.4rem;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(90, 109, 228, 0.35), rgba(255, 111, 61, 0.28));
}

.operating-steps li {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.8rem;
  min-width: 0;
  padding: 1.05rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(23, 29, 52, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 36px rgba(23, 29, 52, 0.08);
}

.operating-steps li::before {
  content: none;
}

.operating-steps strong,
.operating-support strong {
  color: var(--ink);
  font-size: 1rem;
}

.operating-steps p,
.operating-support p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

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

.operating-support article {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(43, 44, 152, 0.12);
  background:
    linear-gradient(180deg, rgba(90, 109, 228, 0.08), rgba(255, 111, 61, 0.04)),
    rgba(255, 255, 255, 0.7);
}

body[data-page="home"] .home-section .section-inner {
  position: relative;
}

body[data-page="home"] .home-section .section-intro {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 0.85rem;
  max-width: 54rem;
  margin-bottom: clamp(1.7rem, 3vw, 2.45rem);
}

body[data-page="home"] .home-section .section-intro h2 {
  max-width: 20ch;
  font-size: clamp(1.62rem, 2.28vw, 2.42rem);
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

body[data-page="home"] .home-software .section-intro h2 {
  max-width: 100%;
  width: 100%;
  text-wrap: normal;
}

body[data-page="home"] .home-tradetech .section-intro h2 {
  max-width: 100%;
  width: 100%;
  text-wrap: normal;
}

body[data-page="home"] .home-industries .section-intro h2 {
  max-width: 100%;
  width: 100%;
  text-wrap: normal;
}

body[data-page="home"] .home-section .section-intro p {
  max-width: 45rem;
  justify-self: start;
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
}

body[data-page="home"] .home-section .section-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.55rem;
}

body[data-page="home"] .home-section .section-tag::before {
  content: "";
  width: 1.85rem;
  height: 1px;
  background: currentColor;
  opacity: 0.42;
}

body[data-page="home"] .home-section :is(.value-card, .capability-card, .service-card, .route-card, .timeline-step) {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  padding: clamp(1.15rem, 2vw, 1.45rem);
  border-color: rgba(23, 29, 52, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 248, 241, 0.9));
  box-shadow: 0 18px 42px rgba(23, 29, 52, 0.09);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

body[data-page="home"] .home-section :is(.value-card, .capability-card, .service-card, .route-card, .timeline-step)::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), rgba(255, 111, 61, 0.75));
  opacity: 0.8;
}

body[data-page="home"] .home-section :is(.value-card, .capability-card, .service-card, .route-card, .timeline-step):hover {
  transform: translateY(-3px);
  border-color: rgba(90, 109, 228, 0.22);
  box-shadow: 0 24px 54px rgba(23, 29, 52, 0.13);
}

body[data-page="home"] .home-section.dark :is(.service-card, .route-card, .capability-card) {
  background: linear-gradient(180deg, rgba(251, 248, 241, 0.075), rgba(251, 248, 241, 0.035));
  border-color: rgba(251, 248, 241, 0.11);
  box-shadow: 0 24px 56px rgba(7, 10, 24, 0.16);
}

body[data-page="home"] .home-section .card-icon,
body[data-page="home"] .home-section .step-index {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(90, 109, 228, 0.18), rgba(255, 111, 61, 0.13));
  box-shadow:
    inset 0 0 0 1px rgba(43, 44, 152, 0.08),
    0 10px 24px rgba(90, 109, 228, 0.12);
}

body[data-page="home"] .home-section.dark .card-icon {
  background: rgba(144, 154, 241, 0.14);
  color: var(--cyan);
  box-shadow: inset 0 0 0 1px rgba(144, 154, 241, 0.18);
}

body[data-page="home"] .home-section.dark .text-link {
  color: #c7cef9;
}

body[data-page="home"] .home-section.dark .text-link:hover,
body[data-page="home"] .home-section.dark .text-link:focus-visible {
  color: var(--white);
}

body[data-page="home"] .home-ecosystem .value-grid {
  gap: 1.15rem;
}

body[data-page="home"] .home-ecosystem .value-card {
  min-height: 15rem;
  border-color: rgba(251, 248, 241, 0.13);
  background:
    linear-gradient(180deg, rgba(251, 248, 241, 0.1), rgba(251, 248, 241, 0.045)),
    rgba(23, 29, 52, 0.56);
  box-shadow: 0 24px 58px rgba(6, 9, 22, 0.22);
}

body[data-page="home"] .home-ecosystem .value-card h3 {
  color: var(--white);
}

body[data-page="home"] .home-ecosystem .value-card p {
  color: rgba(251, 248, 241, 0.72);
}

body[data-page="home"] .home-ecosystem .card-icon {
  color: var(--white);
  background: linear-gradient(135deg, rgba(144, 154, 241, 0.2), rgba(255, 111, 61, 0.15));
  box-shadow: inset 0 0 0 1px rgba(251, 248, 241, 0.13);
}

body[data-page="home"] .home-capabilities .capability-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.05rem;
}

body[data-page="home"] .home-capabilities .section-intro {
  max-width: 100%;
}

body[data-page="home"] .home-capabilities .section-intro h2 {
  max-width: 100%;
  text-wrap: balance;
}

body[data-page="home"] .home-capabilities .section-intro p {
  max-width: 100%;
  width: 100%;
}

body[data-page="home"] .home-capabilities .capability-card {
  min-height: 15.25rem;
  border-color: rgba(43, 44, 152, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(251, 248, 241, 0.72)),
    rgba(255, 255, 255, 0.66);
  box-shadow: 0 22px 52px rgba(23, 29, 52, 0.1);
}

body[data-page="home"] .home-capabilities .capability-card:first-child,
body[data-page="home"] .home-capabilities .capability-card:nth-child(2) {
  grid-column: span 2;
}

body[data-page="home"] .home-capabilities .capability-card:first-child {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 111, 61, 0.16), transparent 32%),
    linear-gradient(135deg, #20294f, #171d34);
  color: var(--white);
  border-color: rgba(251, 248, 241, 0.11);
}

body[data-page="home"] .home-capabilities .capability-card:first-child p {
  color: rgba(251, 248, 241, 0.74);
}

body[data-page="home"] .home-capabilities .capability-card:first-child .card-icon {
  color: var(--white);
  background: rgba(144, 154, 241, 0.16);
  box-shadow: inset 0 0 0 1px rgba(251, 248, 241, 0.14);
}

body[data-page="home"] .home-software .service-grid,
body[data-page="home"] .home-industries .card-grid,
body[data-page="home"] .home-tradetech .route-grid {
  gap: 1.1rem;
}

body[data-page="home"] .home-credittech .split-grid,
body[data-page="home"] .home-automation .split-grid,
body[data-page="home"] .home-payments .section-grid,
body[data-page="home"] .home-compliance .section-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

body[data-page="home"] .home-section .split-copy h2,
body[data-page="home"] .home-section .cta-panel h2 {
  max-width: 18ch;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

body[data-page="home"] .home-section .split-copy h2 {
  font-size: clamp(1.68rem, 2.28vw, 2.46rem);
}

body[data-page="home"] .home-section .text-link {
  justify-self: start;
  width: fit-content;
  text-align: left;
}

body[data-page="home"] .home-credittech .split-copy > .text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.35rem;
  min-height: 3.15rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid rgba(251, 248, 241, 0.2);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(251, 248, 241, 0.98), rgba(224, 228, 255, 0.92)),
    var(--white);
  color: #171d34;
  font-weight: 760;
  box-shadow:
    0 18px 42px rgba(4, 7, 18, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body[data-page="home"] .home-credittech .split-copy > .text-link::after {
  content: "\2192";
  font-size: 1rem;
  line-height: 1;
  transform: translateY(1px);
  transition: transform 180ms ease;
}

body[data-page="home"] .home-credittech .split-copy > .text-link:hover,
body[data-page="home"] .home-credittech .split-copy > .text-link:focus-visible {
  color: #11172c;
  background:
    linear-gradient(135deg, var(--white), rgba(255, 229, 219, 0.96)),
    var(--white);
  transform: translateY(-2px);
  box-shadow:
    0 22px 52px rgba(4, 7, 18, 0.3),
    0 0 0 4px rgba(144, 154, 241, 0.16);
}

body[data-page="home"] .home-credittech .split-copy > .text-link:hover::after,
body[data-page="home"] .home-credittech .split-copy > .text-link:focus-visible::after {
  transform: translate(0.18rem, 1px);
}

body[data-page="home"] .home-automation .split-copy > .text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.35rem;
  min-height: 3.15rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid rgba(251, 248, 241, 0.2);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(251, 248, 241, 0.98), rgba(224, 228, 255, 0.92)),
    var(--white);
  color: #171d34;
  font-weight: 760;
  box-shadow:
    0 18px 42px rgba(4, 7, 18, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body[data-page="home"] .home-automation .split-copy > .text-link::after {
  content: "\2192";
  font-size: 1rem;
  line-height: 1;
  transform: translateY(1px);
  transition: transform 180ms ease;
}

body[data-page="home"] .home-automation .split-copy > .text-link:hover,
body[data-page="home"] .home-automation .split-copy > .text-link:focus-visible {
  color: #11172c;
  background:
    linear-gradient(135deg, var(--white), rgba(255, 229, 219, 0.96)),
    var(--white);
  transform: translateY(-2px);
  box-shadow:
    0 22px 52px rgba(4, 7, 18, 0.3),
    0 0 0 4px rgba(144, 154, 241, 0.16);
}

body[data-page="home"] .home-automation .split-copy > .text-link:hover::after,
body[data-page="home"] .home-automation .split-copy > .text-link:focus-visible::after {
  transform: translate(0.18rem, 1px);
}

body[data-page="home"] .home-section .section-grid .section-intro {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 1rem;
  margin-bottom: 0;
}

body[data-page="home"] .home-section .section-grid .section-intro h2 {
  max-width: 20ch;
  font-size: clamp(1.62rem, 2.18vw, 2.35rem);
}

body[data-page="home"] .home-section .section-grid .section-intro p {
  justify-self: start;
  max-width: 42rem;
}

body[data-page="home"] .home-credittech .workflow-card,
body[data-page="home"] .home-automation .insight-card,
body[data-page="home"] .home-payments .insight-card,
body[data-page="home"] .home-compliance .compliance-card {
  border-radius: var(--radius-lg);
  padding: clamp(1.1rem, 2.5vw, 1.6rem);
  border: 1px solid rgba(251, 248, 241, 0.12);
  background:
    linear-gradient(180deg, rgba(251, 248, 241, 0.075), rgba(251, 248, 241, 0.035)),
    rgba(23, 29, 52, 0.92);
  box-shadow: 0 28px 70px rgba(8, 11, 27, 0.22);
}

body[data-page="home"] .home-payments .insight-card,
body[data-page="home"] .home-compliance .compliance-card {
  color: var(--white);
}

body[data-page="home"] .home-section .panel-heading {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(251, 248, 241, 0.1);
}

body[data-page="home"] .home-section .mini-list {
  gap: 0.75rem;
}

body[data-page="home"] .home-section .mini-list li,
body[data-page="home"] .home-section .process-row,
body[data-page="home"] .home-section .signal-row {
  min-width: 0;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  background: rgba(251, 248, 241, 0.055);
  border: 1px solid rgba(251, 248, 241, 0.08);
}

body[data-page="home"] .home-section .mini-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.25rem 0.7rem;
}

body[data-page="home"] .home-section .mini-list li::before {
  margin-top: 0.55rem;
  color: var(--cyan);
}

body[data-page="home"] .home-section .mini-list li span {
  grid-column: 2;
}

body[data-page="home"] .home-section .pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

body[data-page="home"] .home-section .pill-list li {
  width: auto;
  color: inherit;
  background: rgba(144, 154, 241, 0.13);
  border: 1px solid rgba(144, 154, 241, 0.18);
}

body[data-page="home"] .home-section.light .pill-list li,
body[data-page="home"] .home-section.soft .pill-list li,
body[data-page="home"] .home-section.highlight .pill-list li {
  color: #26288f;
  background: rgba(43, 44, 152, 0.075);
}

body[data-page="home"] .home-tradetech .route-card {
  min-height: 17rem;
}

body[data-page="home"] .home-tradetech .route-card .text-link,
body[data-page="home"] .home-section .service-card .text-link {
  margin-top: auto;
  padding-top: 1.1rem;
}

body[data-page="home"] .home-proof .stat-grid {
  gap: 0;
  border: 1px solid rgba(23, 29, 52, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 20px 46px rgba(23, 29, 52, 0.08);
  overflow: hidden;
}

body[data-page="home"] .home-proof .stat-item {
  border-top: 0;
  border-right: 1px solid rgba(23, 29, 52, 0.09);
  padding: clamp(1.1rem, 2.2vw, 1.5rem);
}

body[data-page="home"] .home-proof .stat-item:last-child {
  border-right: 0;
}

body[data-page="home"] .home-proof .stat-value {
  color: var(--teal);
  font-size: clamp(2rem, 4vw, 3.25rem);
}

body[data-page="home"] .home-proof .stat-label {
  color: var(--ink-soft);
  font-size: 0.93rem;
}

body[data-page="home"] .home-final-cta .cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.8rem);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 111, 61, 0.2), transparent 28%),
    radial-gradient(circle at 20% 0%, rgba(144, 154, 241, 0.22), transparent 30%),
    linear-gradient(135deg, #20294f, #12172b);
}

body[data-page="home"] .home-final-cta .cta-panel .section-tag {
  color: var(--cyan);
}

body[data-page="home"] .home-final-cta .cta-actions {
  align-items: center;
  justify-self: end;
  justify-content: flex-end;
}

.site-footer {
  background:
    linear-gradient(180deg, #151b31, #101426);
  color: rgba(244, 247, 241, 0.82);
  padding: clamp(2rem, 3.2vw, 2.6rem) 0 1.1rem;
}

.footer-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(9rem, 0.48fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(1rem, 2.4vw, 2rem);
}

.footer-brand {
  display: grid;
  gap: 0.62rem;
}

.footer-logo-link {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
}

.footer-logo {
  width: min(100%, 12.75rem);
  height: auto;
}

.footer-wordmark {
  display: grid;
  width: fit-content;
  max-width: 100%;
  gap: 0.1rem;
  color: var(--white);
}

.footer-wordmark strong {
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.footer-wordmark span {
  color: rgba(251, 248, 241, 0.66);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-heading {
  color: var(--white);
  margin-bottom: 0.65rem;
}

.footer-copy {
  max-width: 29rem;
  color: rgba(251, 248, 241, 0.72);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-links li,
.service-link-list li,
.contact-points li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.site-footer .footer-links li::before,
.site-footer .service-link-list li::before,
.site-footer .contact-points li::before {
  content: none;
}

.footer-links a,
.service-link-list a {
  display: inline-flex;
  width: fit-content;
  color: rgba(251, 248, 241, 0.78);
  font-size: 0.92rem;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-links a:focus-visible,
.service-link-list a:hover,
.service-link-list a:focus-visible {
  color: var(--white);
}

.contact-points li {
  color: rgba(244, 247, 241, 0.78);
  font-size: 0.9rem;
}

.footer-bottom {
  margin-top: 1.25rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(244, 247, 241, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.1rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-weight: 700;
  font-size: 0.92rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0.9rem 0.95rem;
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(43, 44, 152, 0.03);
}

.field textarea {
  resize: vertical;
  min-height: 8rem;
}

.form-note,
.form-status {
  font-size: 0.9rem;
}

.form-note {
  color: var(--ink-soft);
}

.form-status {
  min-height: 1.4rem;
  color: #a23318;
}

.form-status[data-state="success"] {
  color: #1b6c58;
}

.contact-meta {
  display: grid;
  gap: 1rem;
}

.contact-tile a {
  display: inline-block;
  max-width: 100%;
  color: var(--teal);
  font-weight: 700;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-tile p {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-tile p + p {
  margin-top: 0.55rem;
}

body[data-page="contact"] .contact-tile a[href^="mailto:"] {
  font-size: clamp(0.74rem, 0.84vw, 0.82rem);
  line-height: 1.22;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

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

body[data-page="contact"] .contact-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(26rem, 1.18fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

body[data-page="contact"] .contact-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.48rem;
  align-content: start;
}

body[data-page="contact"] .contact-tile {
  min-height: 0;
  height: auto;
  padding: 0.66rem 0.78rem;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(23, 29, 52, 0.065);
}

body[data-page="contact"] .contact-icon {
  width: 1.78rem;
  height: 1.78rem;
  margin-bottom: 0.34rem;
  border-radius: 8px;
  font-size: 0.74rem;
}

body[data-page="contact"] .contact-tile h3 {
  margin-bottom: 0.18rem;
  font-size: 1rem;
  line-height: 1.08;
}

body[data-page="contact"] .contact-tile p {
  font-size: 0.88rem;
  line-height: 1.3;
}

body[data-page="contact"] .contact-tile p + p {
  margin-top: 0.22rem;
}

body[data-page="contact"] .inquiry-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.25rem, 2.8vw, 1.9rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(43, 44, 152, 0.13);
  background:
    radial-gradient(circle at 88% 6%, rgba(255, 111, 61, 0.13), transparent 25%),
    radial-gradient(circle at 12% 92%, rgba(90, 109, 228, 0.15), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(251, 248, 241, 0.9));
  box-shadow:
    0 28px 70px rgba(23, 29, 52, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

body[data-page="contact"] .inquiry-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), rgba(255, 111, 61, 0.82));
}

body[data-page="contact"] .inquiry-card::after {
  content: "";
  position: absolute;
  right: -4rem;
  top: -5rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  border: 1px solid rgba(43, 44, 152, 0.1);
  box-shadow: 0 0 0 2.4rem rgba(90, 109, 228, 0.045);
  pointer-events: none;
}

.inquiry-card-header {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.65rem;
  max-width: 48rem;
  margin-bottom: 1.35rem;
}

.inquiry-card-header h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.52rem, 2.22vw, 2.15rem);
  line-height: 1;
  letter-spacing: 0;
}

body[data-page="contact"] .inquiry-card .section-tag {
  width: fit-content;
}

body[data-page="contact"] .inquiry-card .contact-copy {
  max-width: 42rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}

body[data-page="contact"] .contact-form {
  position: relative;
  z-index: 1;
  gap: 1.05rem;
}

body[data-page="contact"] .field {
  gap: 0.42rem;
}

body[data-page="contact"] .field label {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

body[data-page="contact"] .field input,
body[data-page="contact"] .field textarea,
body[data-page="contact"] .field select {
  min-height: 3.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(43, 44, 152, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 248, 241, 0.78)),
    var(--white);
  color: var(--ink);
  font: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 24px rgba(23, 29, 52, 0.045);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

body[data-page="contact"] .field textarea {
  min-height: 10.5rem;
}

body[data-page="contact"] .field input:focus,
body[data-page="contact"] .field textarea:focus,
body[data-page="contact"] .field select:focus {
  outline: none;
  border-color: rgba(90, 109, 228, 0.55);
  background: var(--white);
  box-shadow:
    0 0 0 4px rgba(144, 154, 241, 0.18),
    0 16px 34px rgba(23, 29, 52, 0.08);
}

body[data-page="contact"] .field input::placeholder,
body[data-page="contact"] .field textarea::placeholder {
  color: rgba(92, 100, 125, 0.76);
}

body[data-page="contact"] .contact-form .btn {
  justify-self: start;
  min-height: 3.35rem;
  padding-inline: 1.35rem;
  border: 0;
  background:
    linear-gradient(135deg, #2b2c98, #5a6de4 55%, #ff6f3d);
  box-shadow:
    0 18px 40px rgba(43, 44, 152, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

body[data-page="contact"] .contact-form .btn:hover,
body[data-page="contact"] .contact-form .btn:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 24px 54px rgba(43, 44, 152, 0.28),
    0 0 0 4px rgba(144, 154, 241, 0.18);
}

body[data-page="contact"] .contact-form .btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

body[data-page="contact"] .form-status {
  min-height: 1.35rem;
  font-weight: 750;
}

body[data-page="contact"] .form-note {
  margin: 0;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(23, 29, 52, 0.08);
  font-size: 0.86rem;
  line-height: 1.58;
}

body[data-page="contact"] .form-note a {
  color: var(--teal);
  font-weight: 800;
}

.route-card .text-link,
.service-card .text-link {
  margin-top: 1rem;
}

body:not([data-page="home"]) .subpage-hero,
body:not([data-page="home"]) .hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 18%, rgba(144, 154, 241, 0.26), transparent 28rem),
    radial-gradient(circle at 18% 12%, rgba(255, 111, 61, 0.12), transparent 22rem),
    linear-gradient(104deg, #10172b 0%, #1b2446 54%, #242d50 100%);
  color: var(--white);
}

body:not([data-page="home"]) .subpage-hero::before,
body:not([data-page="home"]) .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background:
    linear-gradient(rgba(251, 248, 241, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 248, 241, 0.028) 1px, transparent 1px);
  background-size: 82px 82px;
  filter: none;
  opacity: 0.68;
  pointer-events: none;
  mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 100%);
}

body:not([data-page="home"]) .subpage-hero::after,
body:not([data-page="home"]) .hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8rem;
  background: linear-gradient(180deg, transparent, rgba(4, 7, 18, 0.32));
  pointer-events: none;
}

body:not([data-page="home"]) .subpage-hero-inner,
body:not([data-page="home"]) .hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 5rem), 1320px);
}

body:not([data-page="home"]) .subpage-hero-inner {
  grid-template-columns: minmax(0, 0.96fr) minmax(24rem, 0.9fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: clamp(31rem, 72svh, 43rem);
  padding: clamp(3rem, 6vh, 4.8rem) 0;
}

body:not([data-page="home"]) .hero-inner {
  min-height: clamp(25rem, 56svh, 36rem);
  padding: clamp(3rem, 6vh, 4.8rem) 0;
}

body:not([data-page="home"]) .subpage-hero-copy,
body:not([data-page="home"]) .hero-copy {
  gap: 1.05rem;
  max-width: 58rem;
}

body:not([data-page="home"]) .subpage-hero-copy::before,
body:not([data-page="home"]) .hero-copy::before {
  content: "";
  width: clamp(3.8rem, 7vw, 6.4rem);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral), rgba(144, 154, 241, 0.92));
  box-shadow: 0 0 28px rgba(255, 111, 61, 0.26);
}

body:not([data-page="home"]) .subpage-hero-copy h1,
body:not([data-page="home"]) .hero-copy h1 {
  max-width: 16ch;
  font-size: clamp(2.28rem, 3.65vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

body:not([data-page="home"]) .subpage-hero-copy p,
body:not([data-page="home"]) .support-copy {
  max-width: 58ch;
  font-size: clamp(1.02rem, 1.22vw, 1.16rem);
  line-height: 1.72;
  color: rgba(251, 248, 241, 0.78);
}

body:not([data-page="home"]) .subpage-surface {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(1.1rem, 2.4vw, 1.55rem);
  border: 1px solid rgba(251, 248, 241, 0.12);
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 111, 61, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(251, 248, 241, 0.08), rgba(251, 248, 241, 0.035)),
    rgba(23, 29, 52, 0.76);
  box-shadow: 0 28px 70px rgba(4, 7, 18, 0.26);
  backdrop-filter: blur(14px);
}

body:not([data-page="home"]) .surface-header {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(251, 248, 241, 0.1);
}

body:not([data-page="home"]) .subpage-surface .mini-panel {
  min-height: 8rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(251, 248, 241, 0.09), rgba(251, 248, 241, 0.045)),
    rgba(251, 248, 241, 0.02);
  border-color: rgba(251, 248, 241, 0.11);
}

body:not([data-page="home"]) .breadcrumb {
  background: rgba(251, 248, 241, 0.88);
  backdrop-filter: blur(12px);
}

body:not([data-page="home"]) .section-band {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(4.6rem, 7.2vw, 6.6rem) 0;
}

body:not([data-page="home"]) .section-band.light {
  background:
    linear-gradient(135deg, rgba(251, 248, 241, 0.96), rgba(251, 248, 241, 0.78)),
    repeating-linear-gradient(145deg, rgba(43, 44, 152, 0.035) 0 1px, transparent 1px 32px),
    var(--paper);
}

body:not([data-page="home"]) .section-band.soft {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 111, 61, 0.11), transparent 24rem),
    linear-gradient(135deg, rgba(243, 238, 228, 0.96), rgba(251, 248, 241, 0.78)),
    var(--paper-2);
}

body:not([data-page="home"]) .section-band.dark {
  background:
    linear-gradient(rgba(144, 154, 241, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(144, 154, 241, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 18% 20%, rgba(255, 111, 61, 0.16), transparent 24rem),
    radial-gradient(circle at 82% 12%, rgba(144, 154, 241, 0.22), transparent 26rem),
    linear-gradient(135deg, #11172c 0%, #1c2548 54%, #11182f 100%);
  background-size: 72px 72px, 72px 72px, auto, auto, auto;
}

body:not([data-page="home"]) .section-intro {
  max-width: 100%;
  gap: 0.9rem;
  margin-bottom: clamp(1.7rem, 3vw, 2.45rem);
}

body:not([data-page="home"]) .section-intro h2 {
  max-width: 100%;
  width: 100%;
  font-size: clamp(1.64rem, 2.25vw, 2.48rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: normal;
  overflow-wrap: normal;
  word-break: normal;
}

body:not([data-page="home"]) .section-intro p {
  max-width: 52rem;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
}

body:not([data-page="home"]) .section-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.55rem;
}

body:not([data-page="home"]) .section-tag::before {
  content: "";
  width: 1.85rem;
  height: 1px;
  background: currentColor;
  opacity: 0.42;
}

body:not([data-page="home"]) :is(.capability-grid, .service-grid, .route-grid, .value-grid, .card-grid) {
  gap: 1.05rem;
}

body:not([data-page="home"]) :is(.capability-card, .service-card, .route-card, .value-card, .contact-tile, .contact-card) {
  position: relative;
  display: grid;
  align-content: start;
  overflow: hidden;
  min-height: 14.75rem;
  border-radius: var(--radius-md);
  padding: clamp(1.15rem, 2vw, 1.45rem);
  border: 1px solid rgba(23, 29, 52, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 248, 241, 0.9)),
    var(--white);
  box-shadow: 0 18px 42px rgba(23, 29, 52, 0.09);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

body:not([data-page="home"]) :is(.capability-card, .service-card, .route-card, .value-card, .contact-tile)::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), rgba(255, 111, 61, 0.75));
  opacity: 0.8;
}

body:not([data-page="home"]) :is(.capability-card, .service-card, .route-card, .value-card, .contact-tile):hover {
  transform: translateY(-3px);
  border-color: rgba(90, 109, 228, 0.22);
  box-shadow: 0 24px 54px rgba(23, 29, 52, 0.13);
}

body:not([data-page="home"]) .section-band.dark :is(.capability-card, .service-card, .route-card, .value-card, .workflow-card, .trust-card, .insight-card) {
  border-color: rgba(251, 248, 241, 0.12);
  background:
    linear-gradient(180deg, rgba(251, 248, 241, 0.075), rgba(251, 248, 241, 0.035)),
    rgba(23, 29, 52, 0.9);
  box-shadow: 0 24px 56px rgba(7, 10, 24, 0.16);
}

body:not([data-page="home"]) .card-icon,
body:not([data-page="home"]) .contact-icon,
body:not([data-page="home"]) .step-index {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(90, 109, 228, 0.18), rgba(255, 111, 61, 0.13));
  box-shadow:
    inset 0 0 0 1px rgba(43, 44, 152, 0.08),
    0 10px 24px rgba(90, 109, 228, 0.12);
}

body:not([data-page="home"]) .split-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}

body:not([data-page="home"]) .split-copy h2 {
  max-width: 20ch;
  font-size: clamp(1.64rem, 2.25vw, 2.48rem);
  line-height: 0.98;
  overflow-wrap: normal;
  word-break: normal;
}

body:not([data-page="home"]) :is(.workflow-card, .trust-card, .insight-card, .compliance-card, .detail-panel, .contact-panel) {
  border-radius: var(--radius-lg);
  padding: clamp(1.15rem, 2.5vw, 1.65rem);
  border: 1px solid rgba(23, 29, 52, 0.1);
  box-shadow: 0 28px 70px rgba(8, 11, 27, 0.14);
}

body:not([data-page="home"]) :is(.workflow-card, .trust-card, .insight-card, .compliance-card, .detail-panel, .contact-panel),
body[data-page="home"] :is(.workflow-card, .trust-card, .insight-card, .compliance-card) {
  color: var(--white);
}

body:not([data-page="home"]) :is(.workflow-card, .trust-card, .insight-card, .compliance-card, .detail-panel, .contact-panel) .panel-heading strong,
body:not([data-page="home"]) :is(.workflow-card, .trust-card, .insight-card, .compliance-card, .detail-panel, .contact-panel) .mini-list strong,
body[data-page="home"] :is(.workflow-card, .trust-card, .insight-card, .compliance-card) .panel-heading strong,
body[data-page="home"] :is(.workflow-card, .trust-card, .insight-card, .compliance-card) .mini-list strong {
  color: var(--white);
}

body:not([data-page="home"]) :is(.workflow-card, .trust-card, .insight-card, .compliance-card, .detail-panel, .contact-panel) .panel-heading span,
body:not([data-page="home"]) :is(.workflow-card, .trust-card, .insight-card, .compliance-card, .detail-panel, .contact-panel) .mini-list span,
body:not([data-page="home"]) :is(.workflow-card, .trust-card, .insight-card, .compliance-card, .detail-panel, .contact-panel) .kicker,
body[data-page="home"] :is(.workflow-card, .trust-card, .insight-card, .compliance-card) .panel-heading span,
body[data-page="home"] :is(.workflow-card, .trust-card, .insight-card, .compliance-card) .mini-list span,
body[data-page="home"] :is(.workflow-card, .trust-card, .insight-card, .compliance-card) .kicker {
  color: rgba(251, 248, 241, 0.76);
}

body:not([data-page="home"]) .pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

body:not([data-page="home"]) .pill-list li {
  width: auto;
  border: 1px solid rgba(43, 44, 152, 0.1);
}

body:not([data-page="home"]) :is(.route-card, .service-card) .text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: fit-content;
  margin-top: auto;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(43, 44, 152, 0.12);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(43, 44, 152, 0.08), rgba(255, 111, 61, 0.08));
  color: var(--teal);
  font-weight: 760;
  box-shadow: 0 12px 28px rgba(23, 29, 52, 0.08);
}

body:not([data-page="home"]) :is(.route-card, .service-card) .text-link::after {
  content: "\2192";
  line-height: 1;
  transition: transform 180ms ease;
}

body:not([data-page="home"]) :is(.route-card, .service-card) .text-link:hover,
body:not([data-page="home"]) :is(.route-card, .service-card) .text-link:focus-visible {
  color: #11172c;
  background: linear-gradient(135deg, var(--white), rgba(255, 229, 219, 0.96));
  transform: translateY(-2px);
  box-shadow:
    0 18px 42px rgba(23, 29, 52, 0.14),
    0 0 0 4px rgba(144, 154, 241, 0.16);
}

body[data-page="fintech-services"] .section-band.dark .route-card .text-link {
  position: relative;
  z-index: 2;
  color: #11172c;
  border-color: rgba(251, 248, 241, 0.68);
  background: linear-gradient(135deg, var(--white), rgba(251, 248, 241, 0.92));
  box-shadow:
    0 16px 34px rgba(4, 7, 18, 0.22),
    0 0 0 1px rgba(251, 248, 241, 0.22);
}

body[data-page="fintech-services"] .section-band.dark .route-card .text-link:hover,
body[data-page="fintech-services"] .section-band.dark .route-card .text-link:focus-visible {
  color: var(--white);
  border-color: rgba(255, 111, 61, 0.78);
  background: linear-gradient(135deg, var(--coral), #ff8b5f);
  box-shadow:
    0 18px 42px rgba(4, 7, 18, 0.3),
    0 0 0 4px rgba(255, 111, 61, 0.16);
}

body:not([data-page="home"]) :is(.route-card, .service-card) .text-link:hover::after,
body:not([data-page="home"]) :is(.route-card, .service-card) .text-link:focus-visible::after {
  transform: translateX(0.18rem);
}

body[data-page="tradetech"] .section-band.dark .split-copy > .text-link {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin-top: 0.4rem;
  min-height: 3rem;
  padding: 0.82rem 1.18rem;
  color: #11172c;
  border: 1px solid rgba(251, 248, 241, 0.68);
  background: linear-gradient(135deg, var(--white), rgba(251, 248, 241, 0.92));
  font-weight: 760;
  box-shadow:
    0 16px 34px rgba(4, 7, 18, 0.24),
    0 0 0 1px rgba(251, 248, 241, 0.22);
}

body[data-page="tradetech"] .section-band.dark .split-copy > .text-link::after {
  content: "\2192";
  line-height: 1;
  transition: transform 180ms ease;
}

body[data-page="tradetech"] .section-band.dark .split-copy > .text-link:hover,
body[data-page="tradetech"] .section-band.dark .split-copy > .text-link:focus-visible {
  color: var(--white);
  border-color: rgba(255, 111, 61, 0.78);
  background: linear-gradient(135deg, var(--coral), #ff8b5f);
  box-shadow:
    0 18px 42px rgba(4, 7, 18, 0.3),
    0 0 0 4px rgba(255, 111, 61, 0.16);
}

body[data-page="tradetech"] .section-band.dark .split-copy > .text-link:hover::after,
body[data-page="tradetech"] .section-band.dark .split-copy > .text-link:focus-visible::after {
  transform: translateX(0.18rem);
}

body[data-page="about"] .about-network {
  background:
    radial-gradient(circle at 82% 16%, rgba(90, 109, 228, 0.18), transparent 26rem),
    radial-gradient(circle at 12% 78%, rgba(255, 111, 61, 0.11), transparent 24rem),
    linear-gradient(135deg, rgba(243, 238, 228, 0.97), rgba(251, 248, 241, 0.8)),
    var(--paper-2);
}

body[data-page="about"] .about-network .split-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(22rem, 0.72fr);
  align-items: center;
}

body[data-page="about"] .about-network .split-copy {
  max-width: 58rem;
}

body[data-page="about"] .about-network .split-copy h2 {
  max-width: 100%;
  width: 100%;
  text-wrap: normal;
}

body[data-page="about"] .about-network .split-copy p {
  max-width: 54rem;
}

.network-panel {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.network-map {
  position: relative;
  min-height: 19.5rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(43, 44, 152, 0.12);
  background:
    radial-gradient(circle at 50% 48%, rgba(144, 154, 241, 0.22), transparent 34%),
    radial-gradient(circle at 86% 14%, rgba(255, 111, 61, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(246, 242, 234, 0.68));
  box-shadow:
    0 28px 70px rgba(23, 29, 52, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.network-map::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(43, 44, 152, 0.13);
  box-shadow:
    0 0 0 2.4rem rgba(90, 109, 228, 0.045),
    0 0 0 5rem rgba(255, 111, 61, 0.035);
}

.network-map::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(251, 248, 241, 0.76));
  pointer-events: none;
}

.network-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 0.18rem;
  width: 8.8rem;
  min-height: 8.8rem;
  padding: 1rem;
  border-radius: 50%;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 111, 61, 0.22), transparent 34%),
    linear-gradient(145deg, #20294f, #11172c);
  transform: translate(-50%, -50%);
  box-shadow:
    0 24px 52px rgba(23, 29, 52, 0.24),
    inset 0 0 0 1px rgba(251, 248, 241, 0.12);
}

.network-core span {
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}

.network-core strong {
  color: rgba(251, 248, 241, 0.76);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.network-line {
  position: absolute;
  left: 16%;
  right: 16%;
  top: 50%;
  z-index: 1;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(43, 44, 152, 0.38), rgba(255, 111, 61, 0.42), transparent);
}

.network-line-one {
  transform: rotate(-28deg);
}

.network-line-two {
  transform: rotate(18deg);
}

.network-line-three {
  opacity: 0.66;
  transform: rotate(84deg);
}

.network-region {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.6rem;
  min-height: 2.5rem;
  padding: 0.46rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(43, 44, 152, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: #26288f;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  box-shadow: 0 16px 36px rgba(23, 29, 52, 0.11);
}

.network-region::before {
  content: "";
  flex: 0 0 auto;
  width: 0.48rem;
  height: 0.48rem;
  margin-right: 0.42rem;
  border-radius: 50%;
  background: #ff6f3d;
}

.network-region-uk {
  left: 8%;
  top: 17%;
}

.network-region-sg {
  right: 8%;
  top: 18%;
}

.network-region-in {
  right: 12%;
  bottom: 19%;
}

.network-region-th {
  left: 9%;
  bottom: 20%;
}

.network-region-eu {
  left: 50%;
  top: 7%;
  transform: translateX(-50%);
}

body[data-page="about"] .about-network .insight-card {
  color: var(--ink);
  border-color: rgba(43, 44, 152, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(251, 248, 241, 0.82)),
    var(--white);
  box-shadow: 0 22px 54px rgba(23, 29, 52, 0.11);
}

body[data-page="about"] .about-network .insight-card .panel-heading strong,
body[data-page="about"] .about-network .insight-card .mini-list strong {
  color: var(--ink);
}

body[data-page="about"] .about-network .insight-card .panel-heading span,
body[data-page="about"] .about-network .insight-card .mini-list span {
  color: var(--ink-soft);
}

.disclaimer-box {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 138, 107, 0.08);
  border: 1px solid rgba(255, 138, 107, 0.18);
}

.detail-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
}

.detail-content {
  display: grid;
  gap: 1.4rem;
}

.detail-content section {
  display: grid;
  gap: 0.85rem;
}

.detail-content h2 {
  font-size: clamp(1.66rem, 2.65vw, 2.38rem);
}

.detail-content h3 {
  margin: 0;
  font-size: 1.15rem;
}

.detail-content p,
.detail-content li,
.page-content p,
.page-content li {
  color: var(--ink-soft);
}

.detail-content ul,
.page-content ul {
  padding-left: 1.2rem;
  margin: 0;
}

.detail-sidebar {
  display: grid;
  gap: 1rem;
  align-self: start;
  position: sticky;
  top: 7rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

@media (max-width: 1360px) {
  .header-inner {
    gap: 0.9rem;
  }

  .nav-link,
  .nav-summary {
    padding: 0.42rem 0.5rem;
    font-size: 0.8rem;
  }

  .site-header .brand {
    max-width: 12.2rem;
  }

  .site-header .brand-tagline {
    font-size: 0.76rem;
  }

  .header-actions .btn {
    padding-inline: 1rem;
  }
}

@media (min-width: 1121px) and (max-width: 1360px) {
  body[data-page="home"] .hero {
    min-height: calc(100svh - 8.95rem);
  }

  body[data-page="home"] .hero-inner {
    padding-top: clamp(2.35rem, 4.6vh, 3.15rem);
    padding-bottom: clamp(2.35rem, 4.6vh, 3.15rem);
  }
}

@media (max-width: 1160px) {
  .hero-metric-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

@media (max-width: 1120px) {
  .nav-list {
    display: none;
  }

  .icon-button {
    display: inline-flex;
  }

  .nav-wrap {
    flex: 0 0 auto;
  }
}

@media (max-width: 1260px) {
  .header-actions .btn-secondary {
    display: none;
  }
}

@media (max-width: 1080px) {

  .hero-inner,
  .subpage-hero-inner,
  .split-grid,
  .cta-panel,
  .contact-layout,
  .detail-columns {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    align-content: start;
  }

  .hero-aside {
    max-width: 52rem;
  }

  body:not([data-page="home"]) .subpage-hero-inner,
  body:not([data-page="home"]) .hero-inner {
    width: min(calc(100% - 3rem), var(--max-width));
  }

  body:not([data-page="home"]) .subpage-hero-inner {
    min-height: auto;
    padding: clamp(2.6rem, 6vw, 3.8rem) 0;
  }

  .phone-shell {
    width: min(20rem, 100%);
    justify-self: start;
    margin-top: 0.15rem;
  }

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

  .detail-sidebar {
    position: static;
  }

  body[data-page="home"] .hero-inner,
  body[data-page="home"] .operating-model-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .hero-aside {
    min-height: 23rem;
    width: min(100%, 42rem);
  }

  body[data-page="home"] .hero-infrastructure {
    min-height: inherit;
  }

  body[data-page="home"] .operating-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .operating-steps::before {
    content: none;
  }
}

@media (min-width: 901px) and (max-width: 1080px) {
  body[data-page="home"] .hero-inner {
    grid-template-columns: minmax(0, 0.56fr) minmax(18rem, 0.44fr);
    min-height: auto;
  }
}

@media (max-width: 900px) {
  .hero-metric-strip,
  .hero-side-grid {
    grid-template-columns: 1fr;
  }

  .capability-grid,
  .service-grid,
  .card-grid,
  .faq-grid,
  .route-grid,
  .value-grid,
  .contact-grid,
  .insight-grid,
  .detail-grid,
  .section-grid,
  .compliance-grid,
  .footer-grid,
  .stat-grid,
  .surface-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  body[data-page="home"] .hero-inner {
    min-height: auto;
    gap: 1.6rem;
  }

  body[data-page="home"] .hero-copy h1 {
    max-width: 16ch;
    font-size: clamp(2.35rem, 6.8vw, 3.1rem);
  }

  body[data-page="home"] .hero-proof-strip {
    width: 100%;
    grid-template-columns: 1fr;
    padding: 0;
  }

  body[data-page="home"] .hero-proof-item {
    padding: 0.75rem 0;
    border-left: 0;
    border-top: 1px solid rgba(251, 248, 241, 0.14);
  }

  body[data-page="home"] .hero-proof-item:first-child {
    border-top: 0;
  }

  body[data-page="home"] .hero-aside {
    position: absolute;
    top: 7.5rem;
    right: 1rem;
    bottom: auto;
    left: auto;
    width: min(13rem, 34vw);
    height: 13rem;
    min-height: 0;
    z-index: 0;
    opacity: 0.34;
    pointer-events: none;
  }

  body[data-page="home"] .hero-infrastructure {
    height: 100%;
    min-height: 0;
    border-radius: 22px;
    border: 1px solid rgba(251, 248, 241, 0.08);
  }

  body[data-page="home"] .trade-terminal,
  body[data-page="home"] .trade-node {
    display: none;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .surface-header,
  .panel-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .status-indicator,
  .metric-badge {
    align-self: flex-start;
  }

  .signal-row {
    grid-template-columns: minmax(0, 1fr) minmax(5.5rem, 7rem);
  }
}

@media (max-width: 680px) {
  body[data-page="home"] .hero {
    min-height: calc(100svh - 15.4rem);
  }

  .announcement-inner,
  .header-inner,
  .hero-inner,
  .subpage-hero-inner,
  .section-inner,
  .footer-inner,
  .breadcrumb-inner {
    width: min(calc(100% - 1.75rem), var(--max-width));
  }

  .announcement-inner {
    flex-direction: row;
    align-items: center;
    gap: 0.42rem;
    padding: 0.34rem 0;
    font-size: 0.68rem;
  }

  .announcement-copy {
    display: flex;
    flex-wrap: nowrap;
    width: auto;
    min-width: 0;
  }

  .announcement-copy > :last-child {
    display: inline-block;
    width: auto;
  }

  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 2.9rem;
    align-items: center;
    gap: 0.5rem;
  }

  .nav-wrap {
    justify-content: flex-end;
    gap: 0.75rem;
  }

  .announcement-copy {
    display: flex;
  }

  .site-header .brand {
    width: 100%;
    max-width: 9.4rem;
    min-width: 0;
  }

  .brand-desktop-lockup {
    display: none;
  }

  .brand-mobile-lockup {
    display: block;
    width: min(100%, 9.4rem);
  }

  .header-actions {
    width: 2.9rem;
    justify-self: end;
  }

  .header-actions .icon-button {
    display: inline-flex;
    background: rgba(43, 44, 152, 0.07);
    border-color: rgba(43, 44, 152, 0.18);
    color: var(--ink);
  }

  .signal-row,
  .ledger-row,
  .timeline-row,
  .process-row {
    grid-template-columns: 1fr;
  }

  .signal-bar,
  .ledger-row strong,
  .timeline-row strong,
  .process-row strong {
    justify-self: start;
  }

  .site-header .brand-name {
    font-size: 1.02rem;
  }

  .site-header .brand-tagline {
    display: none;
  }

  .hero-inner {
    min-height: auto;
    padding: 2.2rem 0 2rem;
    gap: 1.35rem;
  }

  body[data-page="home"] .hero-inner {
    width: min(calc(100% - 1.75rem), var(--max-width));
    padding: 1.7rem 0 1.8rem;
    gap: 1.5rem;
  }

  body[data-page="home"] .hero::before {
    opacity: 0.42;
    mask-image: none;
  }

  body[data-page="home"] .hero-copy {
    gap: 0.9rem;
  }

  body[data-page="home"] .hero-copy::before {
    width: 3.5rem;
  }

  body[data-page="home"] .hero-copy h1 {
    max-width: 12.5ch;
    font-size: clamp(1.95rem, 8.6vw, 2.48rem);
    line-height: 0.98;
  }

  body[data-page="home"] .support-copy {
    max-width: 34ch;
  }

  body[data-page="home"] .hero-infrastructure {
    min-height: 0;
    height: 100%;
    border-top: 0;
    opacity: 0.42;
    background-size: auto, 46px 46px, 46px 46px;
  }

  body[data-page="home"] .hero-aside {
    position: absolute;
    top: 9rem;
    right: 0.875rem;
    bottom: auto;
    left: auto;
    width: min(9rem, 36vw);
    height: 9rem;
    min-height: 0;
    z-index: 0;
    pointer-events: none;
  }

  body[data-page="home"] .trade-terminal,
  body[data-page="home"] .trade-node {
    display: none;
  }

  body[data-page="home"] .trade-route {
    opacity: 0.28;
  }

  body[data-page="home"] .hero-proof-item {
    padding-top: 0.52rem;
    padding-bottom: 0.52rem;
  }

  body[data-page="home"] .trade-globe {
    top: 14%;
    right: -8%;
    width: 13rem;
  }

  body[data-page="home"] .trade-globe::before,
  body[data-page="home"] .trade-globe::after {
    display: none;
  }

  .ecosystem-constellation {
    min-height: 18rem;
  }

  .ecosystem-globe {
    right: -14%;
    width: 25rem;
    opacity: 0.26;
  }

  .ecosystem-point {
    min-width: 0;
    min-height: 2.35rem;
    padding: 0.5rem 0.62rem;
    font-size: 0.66rem;
  }

  .ecosystem-point-credit {
    left: 0;
  }

  .ecosystem-point-docs {
    left: 38%;
  }

  .ecosystem-point-compliance {
    left: 0;
  }

  .ecosystem-point-trade {
    right: 0;
  }

  .network-map {
    min-height: 18rem;
    border-radius: var(--radius-md);
  }

  .network-core {
    width: 7.2rem;
    min-height: 7.2rem;
  }

  .network-region {
    min-width: 5.8rem;
    min-height: 2.2rem;
    padding: 0.4rem 0.52rem;
    font-size: 0.62rem;
  }

  .network-region::before {
    width: 0.38rem;
    height: 0.38rem;
    margin-right: 0.32rem;
  }

  .network-region-uk {
    left: 4%;
  }

  .network-region-sg {
    right: 4%;
  }

  .network-region-in {
    right: 6%;
  }

  .network-region-th {
    left: 5%;
  }

  .software-interface {
    min-height: 17rem;
  }

  .software-window {
    right: 5%;
  }

  .software-phone {
    display: none;
    width: 6.2rem;
    min-height: 8.4rem;
  }

  .software-module-grid {
    grid-template-columns: 1fr;
  }

  .software-module-grid span {
    min-height: 2.2rem;
  }

  body[data-page="home"] .trade-terminal {
    left: 0;
    bottom: 0;
    width: 88%;
  }

  body[data-page="home"] .trade-node span {
    display: none;
  }

  body[data-page="home"] .operating-steps,
  body[data-page="home"] .operating-support {
    grid-template-columns: 1fr;
  }

  .operating-orbit {
    min-height: 18rem;
  }

  .operating-orbit-core {
    width: 7.6rem;
    height: 7.6rem;
  }

  .operating-orbit-ring {
    width: 13rem;
    height: 9rem;
  }

  .operating-orbit-node {
    min-width: 6.5rem;
    padding: 0.62rem 0.72rem;
  }

  .subpage-hero-inner {
    min-height: auto;
    padding: 2.35rem 0 2rem;
    gap: 1.25rem;
  }

  .section-band {
    padding: 4rem 0;
  }

  .capability-grid,
  .service-grid,
  .card-grid,
  .faq-grid,
  .route-grid,
  .value-grid,
  .contact-grid,
  .insight-grid,
  .detail-grid,
  .section-grid,
  .compliance-grid,
  .footer-grid,
  .stat-grid,
  .surface-grid,
  .field-grid,
  .timeline-list {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .contact-form .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-badge-row,
  .hero-metric-strip,
  .hero-side-grid {
    grid-template-columns: 1fr;
  }

  .hero-badge-row {
    display: grid;
  }

  .hero-badge {
    min-width: 0;
  }

  .hero-showcase,
  .hero-process-card {
    padding: 1rem;
  }

  .hero-showcase-top {
    display: grid;
  }

  .hero-showcase-copy h2 {
    font-size: clamp(1.35rem, 7vw, 1.85rem);
  }

  .hero-kicker {
    font-size: 0.82rem;
  }

  .hero-brand-stamp {
    width: fit-content;
  }

  .hero-process-step {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .dashboard-shell,
  .cta-panel,
  .subpage-surface {
    padding: 1rem;
  }

  .hero-copy,
  .subpage-hero-copy,
  .hero-actions,
  .hero-notes,
  .hero-badge-row,
  .hero-aside,
  .hero-showcase,
  .hero-visual,
  .dashboard-grid,
  .dashboard-top,
  .signal-row,
  .panel-heading {
    min-width: 0;
  }

  .hero-copy h1,
  .section-intro h2,
  .split-copy h2,
  .cta-panel h2,
  .detail-content h2 {
    max-width: none;
  }

  .hero-copy h1 {
    font-size: clamp(1.72rem, 8.3vw, 2.35rem);
    max-width: 11ch;
  }

  .subpage-hero-copy h1 {
    font-size: clamp(1.58rem, 7.7vw, 2.05rem);
    max-width: 12ch;
  }

  body:not([data-page="home"]) .subpage-hero-copy h1,
  body:not([data-page="home"]) .hero-copy h1 {
    max-width: 16ch;
    font-size: clamp(2rem, 8.8vw, 2.72rem);
  }

  .support-copy,
  .subpage-hero-copy p {
    max-width: 34ch;
    font-size: 0.94rem;
  }

  body:not([data-page="home"]) .support-copy,
  body:not([data-page="home"]) .subpage-hero-copy p {
    max-width: 38ch;
  }

  body:not([data-page="home"]) .section-band {
    padding: 3.7rem 0;
  }

  body:not([data-page="home"]) :is(.capability-card, .service-card, .route-card, .value-card, .contact-tile, .contact-card) {
    min-height: 0;
    padding: 1rem;
  }

  body:not([data-page="home"]) :is(.route-card, .service-card) .text-link {
    width: 100%;
    min-height: 2.9rem;
  }

  .hero-note,
  .metric-label,
  .signal-label {
    overflow-wrap: anywhere;
  }

  .mobile-nav {
    width: 100%;
    padding: 1rem 0.95rem 1.2rem;
  }

  .mobile-nav-brand {
    max-width: calc(100% - 3.25rem);
  }

  .mobile-nav-logo {
    width: min(10.4rem, 100%);
  }
}

@media (max-width: 1160px) {
  body[data-page="home"] .home-capabilities .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .home-capabilities .capability-card:first-child,
  body[data-page="home"] .home-capabilities .capability-card:nth-child(2) {
    grid-column: auto;
  }
}

@media (max-width: 1080px) {
  body[data-page="home"] .home-section .section-intro,
  .ecosystem-intro-grid,
  .software-intro-grid,
  .tradetech-intro-grid,
  .industries-intro-grid,
  body[data-page="home"] .home-credittech .split-grid,
  body[data-page="home"] .home-automation .split-grid,
  body[data-page="home"] .home-payments .section-grid,
  body[data-page="home"] .home-compliance .section-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .home-section .section-intro p {
    justify-self: start;
  }
}

@media (max-width: 900px) {
  body[data-page="home"] .home-section {
    padding: clamp(4rem, 9vw, 5.4rem) 0;
  }

  body[data-page="home"] .home-section .section-intro h2 {
    max-width: 18ch;
  }

  body[data-page="home"] .home-capabilities .section-intro h2 {
    max-width: none;
  }

  body[data-page="home"] .home-capabilities .capability-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .home-capabilities .capability-card,
  body[data-page="home"] .home-tradetech .route-card,
  body[data-page="home"] .home-ecosystem .value-card {
    min-height: 0;
  }

  body[data-page="home"] .home-proof .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .home-proof .stat-item:nth-child(2) {
    border-right: 0;
  }

  body[data-page="home"] .home-proof .stat-item:nth-child(n+3) {
    border-top: 1px solid rgba(23, 29, 52, 0.09);
  }
}

@media (max-width: 680px) {
  .site-footer {
    padding: 1.65rem 0 1rem;
  }

  .footer-grid {
    gap: 1.15rem;
  }

  .footer-brand {
    gap: 0.45rem;
  }

  .footer-heading {
    margin-bottom: 0.42rem;
  }

  .footer-links,
  .contact-points {
    gap: 0.34rem;
  }

  .footer-copy,
  .contact-points li {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .footer-bottom {
    margin-top: 1rem;
    padding-top: 0.8rem;
  }

  body[data-page="contact"] .contact-meta {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .home-section {
    padding: 3.6rem 0;
  }

  body[data-page="home"] .home-section .section-intro {
    gap: 0.9rem;
    margin-bottom: 1.55rem;
  }

  body[data-page="home"] .home-section .section-intro h2 {
    font-size: clamp(1.5rem, 6.5vw, 2.02rem);
    max-width: none;
  }

  body[data-page="home"] .home-section .section-intro p {
    font-size: 0.96rem;
  }

  body[data-page="home"] .home-section .section-tag {
    max-width: 100%;
    flex-wrap: wrap;
    line-height: 1.35;
  }

  body[data-page="home"] .home-section :is(.value-card, .capability-card, .service-card, .route-card, .timeline-step) {
    padding: 1rem;
  }

  .tradetech-flow {
    min-height: 17rem;
    border-radius: var(--radius-md);
  }

  .trade-document-stack {
    left: 6%;
    top: 20%;
    width: 8.7rem;
    height: 9.8rem;
  }

  .trade-document {
    padding: 0.9rem;
  }

  .trade-route-line {
    left: 39%;
    right: 8%;
  }

  .trade-node-card {
    width: 4.1rem;
    min-height: 3rem;
    font-size: 0.76rem;
  }

  .trade-node-lc {
    right: 18%;
    top: 17%;
  }

  .trade-node-bg {
    right: 5%;
  }

  .trade-node-sblc {
    right: 20%;
    bottom: 12%;
  }

  .industries-map {
    min-height: 17rem;
    border-radius: var(--radius-md);
  }

  .industry-hub {
    width: 10rem;
    padding: 0.9rem;
  }

  .industry-segment {
    min-width: 5.7rem;
    min-height: 2.45rem;
    padding: 0.48rem 0.62rem;
    font-size: 0.66rem;
  }

  .industry-segment-import {
    left: 5%;
  }

  .industry-segment-project {
    right: 4%;
  }

  .industry-segment-cross {
    right: 5%;
  }

  .industry-segment-docs {
    left: 5%;
  }

  body[data-page="home"] .home-credittech .workflow-card,
  body[data-page="home"] .home-automation .insight-card,
  body[data-page="home"] .home-payments .insight-card,
  body[data-page="home"] .home-compliance .compliance-card {
    border-radius: var(--radius-md);
    padding: 1rem;
  }

  body[data-page="home"] .home-section .mini-list li,
  body[data-page="home"] .home-section .process-row,
  body[data-page="home"] .home-section .signal-row {
    padding: 0.75rem;
  }

  body[data-page="home"] .home-proof .stat-grid {
    grid-template-columns: 1fr;
    border-radius: var(--radius-md);
  }

  body[data-page="home"] .home-proof .stat-item {
    border-right: 0;
  }

  body[data-page="home"] .home-proof .stat-item + .stat-item {
    border-top: 1px solid rgba(23, 29, 52, 0.09);
  }

body[data-page="home"] .home-final-cta .cta-panel {
    border-radius: var(--radius-md);
  }
}

body[data-page="ai"] .subpage-hero {
  min-height: 100svh;
  display: flex;
}

body[data-page="ai"] .subpage-hero-inner {
  min-height: 100svh;
  align-items: center;
  padding-top: clamp(3.2rem, 7vh, 5.4rem);
  padding-bottom: clamp(3.2rem, 7vh, 5.4rem);
}

@media (max-width: 1080px) {
  body[data-page="ai"] .subpage-hero-inner {
    min-height: 100svh;
    align-content: center;
  }
}

@media (max-width: 680px) {
  body[data-page="ai"] .subpage-hero-inner {
    min-height: 100svh;
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }
}
