/* @import "tailwindcss"; */

:root {
  --navy-950: #03103d;
  --navy-900: #061b59;
  --navy-850: #082363;
  --navy-800: #0a2b6f;
  --blue-700: #0647d8;
  --blue-600: #075dff;
  --blue-500: #0875ff;
  --cyan-500: #00bff3;
  --cyan-300: #73e6ff;
  --violet-600: #6d46e8;
  --green-600: #07946a;
  --green-500: #10b981;
  --amber-500: #f59e0b;
  --ink-900: #0b1739;
  --ink-700: #344363;
  --ink-600: #53617d;
  --ink-500: #69758e;
  --line: #dce5f3;
  --line-strong: #c8d5e8;
  --surface: #ffffff;
  --surface-soft: #f5f8fd;
  --surface-blue: #eef5ff;
  --success-soft: #e8faf3;
  --shadow-sm: 0 8px 30px rgba(7, 27, 78, 0.07);
  --shadow-md: 0 22px 60px rgba(7, 27, 78, 0.12);
  --shadow-lg: 0 34px 90px rgba(3, 16, 61, 0.18);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 38px;
  --shell: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--navy-950);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink-900);
  background: var(--surface);
  font-family: Inter, "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

img,
svg {
  display: block;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(7, 93, 255, 0.34);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  color: white;
  background: var(--navy-950);
  transform: translateY(-150%);
}

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

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

#main-content:focus {
  outline: none;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.section--tight {
  padding: 64px 0;
}

.section--soft {
  background:
    radial-gradient(circle at 90% 5%, rgba(0, 191, 243, 0.08), transparent 28%),
    var(--surface-soft);
}

.section--dark {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 80% 20%, rgba(7, 93, 255, 0.22), transparent 32%),
    radial-gradient(circle at 10% 100%, rgba(0, 191, 243, 0.12), transparent 30%),
    var(--navy-950);
}

.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, transparent, #000 20%, #000 80%, transparent);
}

.eyebrow,
.micro-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--cyan-300);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--cyan-500);
  box-shadow: 0 0 0 5px rgba(0, 191, 243, 0.12);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading h2,
.checkout-copy h2,
.command-copy h2,
.trust-copy h2,
.source-panel h2,
.contact-layout h2,
.company-story h2 {
  margin: 14px 0 0;
  max-width: 760px;
  color: var(--ink-900);
  font-size: clamp(36px, 4.1vw, 56px);
  font-weight: 730;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.section-heading > p,
.checkout-copy > p,
.trust-copy > p,
.contact-layout > div > p {
  margin: 0;
  color: var(--ink-600);
  font-size: 17px;
  line-height: 1.75;
}

.section-heading--center {
  display: block;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center h2 {
  margin-inline: auto;
}

.section-heading--center > p {
  max-width: 700px;
  margin: 22px auto 0;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
}

.button--primary {
  color: white;
  background: linear-gradient(135deg, var(--blue-600), #0642dd);
  box-shadow: 0 12px 26px rgba(7, 93, 255, 0.24), inset 0 1px rgba(255,255,255,0.24);
}

.button--primary:hover {
  box-shadow: 0 16px 34px rgba(7, 93, 255, 0.3), inset 0 1px rgba(255,255,255,0.24);
}

.button--secondary {
  color: var(--blue-700);
  border-color: rgba(7, 93, 255, 0.18);
  background: var(--surface-blue);
}

.button--ghost {
  color: var(--navy-900);
  border-color: var(--line);
  background: rgba(255,255,255,0.75);
}

.button--ghost:hover {
  border-color: rgba(7, 93, 255, 0.3);
}

.button--login {
  color: var(--blue-700);
  border-color: rgba(7, 93, 255, 0.2);
  background: linear-gradient(180deg, #fff, #f1f6ff);
  box-shadow: 0 7px 20px rgba(7, 93, 255, 0.09);
}

.button--login:hover {
  color: white;
  border-color: var(--blue-600);
  background: var(--blue-600);
  box-shadow: 0 12px 28px rgba(7, 93, 255, 0.22);
}

.button--light {
  color: var(--navy-950);
  background: white;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.button--small {
  min-height: 40px;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 13px;
}

.button--large {
  min-height: 54px;
  padding-inline: 23px;
}

.button--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--blue-600);
  font-size: 14px;
  font-weight: 800;
}

.text-link svg,
.button svg,
.source-links a svg,
.related-grid a b svg,
.product-card b svg {
  transition: transform 160ms ease;
}

.text-link:hover svg,
.button:hover svg,
.source-links a:hover svg,
.related-grid a:hover b svg,
.product-card:hover b svg {
  transform: translateX(3px);
}

.text-link--light {
  color: var(--cyan-300);
}

/* Header */

.trust-strip {
  position: relative;
  z-index: 102;
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy-950);
}

.trust-strip__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 11.5px;
}

.trust-strip__contacts {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.trust-strip__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 550;
  letter-spacing: 0.01em;
  transition: color 150ms ease;
}

.trust-strip__link:hover {
  color: var(--cyan-300);
}

.trust-strip__divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
  user-select: none;
}

.trust-strip__compliance {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan-300);
  font-weight: 700;
  transition: opacity 150ms ease;
}

.trust-strip__compliance:hover {
  opacity: 0.85;
}

@media (max-width: 680px) {
  .trust-strip__email,
  .trust-strip__divider {
    display: none !important;
  }

  .trust-strip__inner {
    min-height: 32px;
    font-size: 11px;
    gap: 10px;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(200, 213, 232, 0.78);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px) saturate(160%);
}

.site-header__inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand__mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: paydrion-forward 6.5s ease-in-out infinite;
  transition: filter 180ms ease, transform 180ms ease;
}

.brand:hover .brand__mark img,
.brand:focus-visible .brand__mark img {
  filter: drop-shadow(0 5px 9px rgba(7, 93, 255, 0.24));
  transform: translateX(2px);
}

@keyframes paydrion-forward {
  0%, 82%, 100% { transform: translateX(0); filter: drop-shadow(0 0 0 rgba(7, 93, 255, 0)); }
  88% { transform: translateX(2px); filter: drop-shadow(-3px 3px 7px rgba(7, 93, 255, 0.22)); }
  93% { transform: translateX(0); filter: drop-shadow(0 0 0 rgba(7, 93, 255, 0)); }
}

.brand__name {
  color: var(--navy-900);
  font-size: 25px;
  font-weight: 740;
  line-height: 1;
  letter-spacing: -0.045em;
}

.brand__name strong {
  color: var(--blue-600);
  font-weight: inherit;
}

.brand--compact .brand__mark {
  width: 38px;
  height: 38px;
}

.brand--compact .brand__name {
  font-size: 23px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-popover {
  position: relative;
}

.nav-popover > summary,
.nav-text-link {
  display: inline-flex;
  height: 44px;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  color: var(--ink-700);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 680;
  list-style: none;
  cursor: pointer;
  user-select: none;
  transition: color 150ms ease, background-color 150ms ease;
}

.nav-popover > summary::-webkit-details-marker,
.mobile-nav > summary::-webkit-details-marker {
  display: none;
}

.nav-popover > summary:hover,
.nav-popover[open] > summary,
.nav-popover.is-active > summary,
.nav-text-link:hover {
  color: var(--blue-600);
  background: var(--surface-blue);
}

.nav-popover__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  transform-origin: center;
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-popover[open] > summary .nav-popover__chevron,
.nav-popover.is-active > summary .nav-popover__chevron {
  transform: rotate(180deg);
}

.nav-popover__panel {
  position: absolute;
  top: calc(100% + 13px);
  left: 50%;
  z-index: 120;
  display: grid;
  width: 460px;
  grid-template-columns: 0.85fr 1.15fr;
  padding: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow-lg);
  transform: translateX(-50%);
  animation: navDropdownFadeIn 180ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: opacity, transform;
}

.nav-popover__panel::after {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
  background: transparent;
  pointer-events: auto;
}

@keyframes navDropdownFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -6px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-popover__panel {
    animation: none;
  }
  .nav-popover__chevron {
    transition: none;
  }
}

.nav-popover__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 0 0, rgba(7,93,255,0.1), transparent 36%);
}

.nav-popover__intro {
  position: relative;
  padding: 20px;
  border-radius: 12px;
  background: var(--surface-soft);
}

.nav-popover__intro p {
  margin: 10px 0 0;
  color: var(--ink-700);
  font-size: 14px;
  line-height: 1.55;
}

.nav-popover__links {
  position: relative;
  display: grid;
  gap: 2px;
  padding: 6px;
}

.nav-popover__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  color: var(--ink-700);
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
}

.nav-popover__links a:hover {
  color: var(--blue-600);
  background: var(--surface-blue);
}

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

/* Mobile Navigation Toggle & Slide-over Drawer */
.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  cursor: pointer;
  place-content: center;
  gap: 4px;
  transition: border-color 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.mobile-toggle:hover,
.mobile-toggle:active {
  border-color: var(--blue-600);
  background: var(--surface-blue);
}

.mobile-toggle span {
  display: block;
  width: 17px;
  height: 1.8px;
  border-radius: 2px;
  background: var(--navy-900);
  transition: transform 200ms ease, opacity 200ms ease;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 280ms ease;
}

.mobile-drawer.is-active {
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 16, 61, 0.46);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 280ms ease;
}

.mobile-drawer.is-active .mobile-drawer__backdrop {
  opacity: 1;
}

.mobile-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(390px, 88vw);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: white;
  box-shadow: -8px 0 35px rgba(3, 16, 61, 0.16);
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.mobile-drawer.is-active .mobile-drawer__panel {
  transform: translateX(0);
}

.mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: white;
  flex-shrink: 0;
}

.mobile-drawer__close {
  display: grid;
  place-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: var(--ink-700);
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface-soft);
  cursor: pointer;
  transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.mobile-drawer__close:hover,
.mobile-drawer__close:active {
  color: var(--navy-900);
  border-color: var(--blue-600);
  background: var(--surface-blue);
}

.mobile-drawer__body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 18px 18px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-drawer__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mobile-drawer__section-title {
  margin: 0 0 10px;
  color: var(--blue-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-drawer__categories {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-accordion {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: white;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.mobile-accordion[open] {
  border-color: rgba(7, 93, 255, 0.28);
  box-shadow: 0 4px 16px rgba(7, 93, 255, 0.06);
}

.mobile-accordion__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
  user-select: none;
  background: white;
  transition: background-color 150ms ease, color 150ms ease;
}

.mobile-accordion__summary::-webkit-details-marker {
  display: none;
}

.mobile-accordion__summary:hover {
  background: var(--surface-blue);
  color: var(--blue-600);
}

.mobile-accordion[open] .mobile-accordion__summary {
  color: var(--blue-600);
  background: var(--surface-blue);
}

.mobile-accordion__chevron {
  width: 14px;
  height: 14px;
  color: var(--ink-500);
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.mobile-accordion[open] .mobile-accordion__chevron {
  transform: rotate(180deg);
  color: var(--blue-600);
}

.mobile-accordion__content {
  padding: 10px 12px 14px;
  border-top: 1px solid rgba(220, 229, 243, 0.8);
  background: white;
}

.mobile-accordion__featured {
  margin: 0 0 10px;
  padding: 8px 12px;
  color: var(--ink-700);
  font-size: 12px;
  line-height: 1.45;
  border-radius: 8px;
  background: var(--surface-blue);
  border: 1px solid rgba(7, 93, 255, 0.12);
}

.mobile-accordion__links {
  display: grid;
  gap: 2px;
}

.mobile-accordion__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 10px;
  color: var(--ink-700);
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 140ms ease, color 140ms ease, transform 140ms ease;
}

.mobile-accordion__link:hover,
.mobile-accordion__link:active {
  color: var(--blue-600);
  background: var(--surface-blue);
  transform: translateX(2px);
}

.mobile-accordion__link svg {
  color: var(--ink-500);
  transition: transform 140ms ease, color 140ms ease;
}

.mobile-accordion__link:hover svg {
  color: var(--blue-600);
  transform: translateX(2px);
}

/* Explore Grid */
.mobile-drawer__explore-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mobile-drawer__explore-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  color: var(--ink-700);
  font-size: 13px;
  font-weight: 650;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease;
}

.mobile-drawer__explore-link:hover,
.mobile-drawer__explore-link:active {
  color: var(--blue-600);
  border-color: rgba(7, 93, 255, 0.3);
  background: var(--surface-blue);
}

/* Contact Box */
.mobile-drawer__contact-box {
  margin-top: 4px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fbfdff 0%, #f4f8ff 100%);
}

.mobile-drawer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-drawer__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: white;
  transition: border-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.mobile-drawer__contact-item:hover,
.mobile-drawer__contact-item:active {
  border-color: var(--blue-600);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(7, 93, 255, 0.08);
}

.mobile-drawer__contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-content: center;
  color: var(--blue-600);
  background: var(--surface-blue);
  flex-shrink: 0;
}

.mobile-drawer__contact-icon.is-wa {
  color: #128c7e;
  background: #e8faf3;
}

.mobile-drawer__contact-label {
  display: block;
  color: var(--ink-500);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
}

.mobile-drawer__contact-item strong {
  display: block;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.mobile-drawer__footer-note {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--ink-500);
  font-size: 11px;
}

/* Home hero */

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 0;
  background:
    linear-gradient(180deg, #f8fbff 0%, #fff 72%),
    white;
}

.home-hero__gridlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.48;
  background-image:
    linear-gradient(rgba(6, 71, 216, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 71, 216, 0.055) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.home-hero__orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.home-hero__orb--one {
  top: -180px;
  left: -160px;
  background: radial-gradient(circle, rgba(0,191,243,0.18), transparent 70%);
}

.home-hero__orb--two {
  right: -140px;
  bottom: 20px;
  background: radial-gradient(circle, rgba(7,93,255,0.18), transparent 70%);
}

.home-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(500px, 0.97fr);
  gap: 72px;
  align-items: center;
}

.home-hero__copy h1 {
  margin: 18px 0 24px;
  max-width: 720px;
  color: var(--navy-950);
  font-size: clamp(54px, 6.2vw, 84px);
  font-weight: 760;
  line-height: 0.97;
  letter-spacing: -0.062em;
}

.home-hero__copy h1 span {
  color: transparent;
  background: linear-gradient(100deg, var(--blue-600), #006de9 45%, var(--cyan-500));
  -webkit-background-clip: text;
  background-clip: text;
}

.home-hero__copy > p {
  max-width: 650px;
  margin: 0;
  color: var(--ink-600);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.home-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
  color: var(--ink-600);
  font-size: 12px;
  font-weight: 650;
}

.home-hero__proof span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.home-hero__proof svg {
  color: var(--blue-600);
}

.hero-console {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(162, 185, 217, 0.65);
  border-radius: 26px;
  background: rgba(255,255,255,0.88);
  box-shadow: var(--shadow-lg), inset 0 1px rgba(255,255,255,0.8);
  backdrop-filter: blur(16px);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.hero-console::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0,191,243,0.45), transparent 25%, transparent 70%, rgba(7,93,255,0.3));
  filter: blur(14px);
  opacity: 0.55;
}

.hero-console__top,
.hero-console__top > div,
.mini-brand {
  display: flex;
  align-items: center;
}

.hero-console__top {
  justify-content: space-between;
  padding: 3px 4px 16px;
  border-bottom: 1px solid var(--line);
}

.hero-console__top > div {
  gap: 9px;
}

.hero-console__top img {
  object-fit: contain;
}

.hero-console__top span,
.mini-brand {
  font-size: 12px;
}

.hero-console__top strong,
.hero-console__top small {
  display: block;
}

.hero-console__top strong {
  color: var(--navy-900);
  font-size: 13px;
}

.hero-console__top small {
  margin-top: 3px;
  color: var(--ink-500);
  font-size: 10px;
}

.live-state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-600);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.live-state i,
.api-online i {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(16,185,129,0.12);
}

.hero-console__summary {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  align-items: end;
  margin: 16px 0;
  padding: 18px;
  border-radius: 16px;
  color: white;
  background:
    radial-gradient(circle at 90% 10%, rgba(0,191,243,0.28), transparent 40%),
    linear-gradient(140deg, var(--navy-950), #082b78);
}

.hero-console__summary span,
.hero-console__summary strong,
.hero-console__summary small {
  display: block;
}

.hero-console__summary span {
  color: rgba(255,255,255,0.58);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.hero-console__summary strong {
  margin-top: 7px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.hero-console__summary small {
  margin-top: 4px;
  color: rgba(255,255,255,0.64);
  font-size: 10px;
}

.signal-chart {
  display: flex;
  height: 70px;
  align-items: end;
  gap: 4px;
}

.signal-chart i {
  width: 100%;
  min-height: 10px;
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(to top, rgba(7,93,255,0.4), var(--cyan-300));
}

.transaction-list {
  display: grid;
  gap: 7px;
}

.transaction-list > div {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 11px;
  border: 1px solid #e7edf7;
  border-radius: 12px;
  background: white;
}

.txn-method {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--blue-600);
  border-radius: 10px;
  background: var(--surface-blue);
  font-size: 9px;
  font-weight: 850;
}

.txn-method--upi {
  color: #ffffff;
  background: linear-gradient(135deg, #6d46e8, #075dff);
}

.transaction-list strong,
.transaction-list small {
  display: block;
}

.transaction-list strong {
  color: var(--ink-900);
  font-size: 12px;
}

.transaction-list small {
  margin-top: 3px;
  color: var(--ink-500);
  font-size: 9px;
}

.txn-success,
.txn-auth,
.txn-pending {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 7px;
  border-radius: 99px;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.txn-success {
  color: var(--green-600);
  background: var(--success-soft);
}

.txn-auth {
  color: var(--blue-700);
  background: var(--surface-blue);
}

.txn-pending {
  color: #9a6500;
  background: #fff7df;
}

.txn-pending i {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--amber-500);
}

.route-map {
  display: grid;
  grid-template-columns: 1fr 26px 1.4fr 26px 1fr;
  gap: 5px;
  align-items: center;
  margin-top: 14px;
  padding: 12px;
  border-radius: 14px;
  background: var(--surface-soft);
}

.route-map > i {
  height: 1px;
  background: linear-gradient(90deg, var(--line-strong), var(--blue-500));
}

.route-map > div {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 7px 8px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: white;
  font-size: 9px;
  font-weight: 750;
}

.route-map > div b {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: white;
  border-radius: 50%;
  background: var(--green-500);
}

.route-map .route-map__brand {
  justify-content: flex-start;
  color: var(--navy-900);
  border-color: rgba(7,93,255,0.2);
  background: var(--surface-blue);
}

.route-map__brand span,
.route-map__brand strong {
  display: block;
}

.route-map__brand strong {
  margin-top: 2px;
  color: var(--ink-500);
  font-size: 8px;
}

.route-map .pulse-ring,
.pulse-ring {
  border: 4px solid rgba(7,93,255,0.16);
  background: var(--blue-600);
}

.home-hero__metrics {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 78px;
  border-top: 1px solid var(--line);
}

.home-hero__metrics > div {
  padding: 26px 24px;
  border-right: 1px solid var(--line);
}

.home-hero__metrics > div:first-child {
  padding-left: 0;
}

.home-hero__metrics > div:last-child {
  border-right: 0;
}

.home-hero__metrics strong,
.home-hero__metrics span {
  display: block;
}

.home-hero__metrics strong {
  color: var(--navy-900);
  font-size: 21px;
  letter-spacing: -0.025em;
}

.home-hero__metrics span {
  margin-top: 5px;
  color: var(--ink-500);
  font-size: 11px;
}

.rail-strip {
  color: white;
  background: linear-gradient(100deg, var(--navy-950), #082b75 48%, var(--navy-950));
}

.rail-strip__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  min-height: 74px;
}

.rail-strip p,
.rail-strip small {
  margin: 0;
}

.rail-strip p {
  color: var(--cyan-300);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rail-strip__inner > div {
  display: flex;
  justify-content: center;
  gap: 25px;
  color: rgba(255,255,255,0.84);
  font-size: 13px;
  font-weight: 740;
}

.rail-strip small {
  max-width: 150px;
  color: rgba(255,255,255,0.48);
  font-size: 8px;
  line-height: 1.4;
}

/* Home product sections */

.product-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card {
  position: relative;
  min-height: 400px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7,93,255,0.12), transparent 68%);
}

.product-card--cyan::before {
  background: radial-gradient(circle, rgba(0,191,243,0.16), transparent 68%);
}

.product-card--violet::before {
  background: radial-gradient(circle, rgba(109,70,232,0.14), transparent 68%);
}

.product-card:hover {
  z-index: 1;
  border-color: rgba(7,93,255,0.28);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.product-card__index {
  position: absolute;
  top: 25px;
  right: 28px;
  color: #b8c5d9;
  font-size: 12px;
  font-weight: 750;
}

.product-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 62px;
  color: var(--blue-600);
  border: 1px solid rgba(7,93,255,0.12);
  border-radius: 15px;
  background: var(--surface-blue);
}

.product-card--cyan .product-card__icon {
  color: #007aa2;
  background: #e8faff;
}

.product-card--violet .product-card__icon {
  color: var(--violet-600);
  background: #f1edff;
}

.product-card h3 {
  margin: 11px 0 14px;
  color: var(--ink-900);
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.product-card p {
  margin: 0;
  color: var(--ink-600);
  font-size: 14px;
  line-height: 1.7;
}

.product-card b {
  position: absolute;
  right: 32px;
  bottom: 30px;
  left: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--blue-600);
  font-size: 12px;
}

.command-grid,
.checkout-grid,
.split-section,
.trust-grid,
.company-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(540px, 1.16fr);
  gap: 90px;
  align-items: center;
}

.command-copy h2,
.developer-section h2,
.company-story h2 {
  color: white;
}

.command-copy p,
.developer-section .split-section > div > p,
.company-story p {
  color: rgba(255,255,255,0.64);
  font-size: 16px;
  line-height: 1.75;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-700);
  font-size: 13px;
  font-weight: 650;
}

.check-list li svg {
  flex: 0 0 auto;
  color: var(--green-600);
}

.check-list--light li {
  color: rgba(255,255,255,0.78);
}

.check-list--light li svg {
  color: var(--cyan-300);
}

.command-panel {
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  background: rgba(255,255,255,0.07);
  box-shadow: 0 30px 70px rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
}

.command-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 4px 18px;
  color: rgba(255,255,255,0.68);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 11px;
}

.command-panel__amount {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 20px;
  padding: 22px 8px;
}

.command-panel__amount span,
.command-panel__amount small {
  color: rgba(255,255,255,0.46);
  font-size: 10px;
}

.command-panel__amount strong {
  grid-row: span 2;
  align-self: center;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.timeline {
  display: grid;
  gap: 7px;
}

.timeline > div {
  display: grid;
  grid-template-columns: 31px 1fr auto;
  gap: 11px;
  align-items: center;
  padding: 13px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.045);
}

.timeline > div > b {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--cyan-300);
  border: 1px solid rgba(115,230,255,0.26);
  border-radius: 50%;
}

.timeline > div.is-done > b {
  color: white;
  border-color: var(--green-500);
  background: var(--green-600);
}

.timeline strong,
.timeline small {
  display: block;
}

.timeline strong {
  color: white;
  font-size: 12px;
}

.timeline small {
  margin-top: 3px;
  color: rgba(255,255,255,0.45);
  font-size: 9px;
}

.timeline em {
  color: rgba(255,255,255,0.6);
  font-size: 9px;
  font-style: normal;
}

.checkout-grid {
  grid-template-columns: minmax(0, 0.75fr) minmax(560px, 1.25fr);
}

.checkout-copy > p {
  margin-top: 22px;
}

.mini-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 30px;
}

.mini-feature-grid > div {
  display: flex;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
}

.mini-feature-grid > div > svg {
  flex: 0 0 auto;
  color: var(--blue-600);
}

.mini-feature-grid strong,
.mini-feature-grid small {
  display: block;
}

.mini-feature-grid strong {
  color: var(--ink-900);
  font-size: 12px;
}

.mini-feature-grid small {
  margin-top: 4px;
  color: var(--ink-500);
  font-size: 10px;
  line-height: 1.45;
}

/* Checkout lab */

.checkout-lab {
  overflow: hidden;
  border: 1px solid #cedaea;
  border-radius: 26px;
  background: white;
  box-shadow: var(--shadow-lg);
}

.checkout-lab__top {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  color: white;
  background:
    radial-gradient(circle at 80% 0, rgba(0,191,243,0.22), transparent 35%),
    linear-gradient(110deg, var(--navy-950), #082d7d);
}

.checkout-lab__brand {
  display: flex;
  align-items: center;
  gap: 9px;
}

.checkout-lab__brand img {
  border-radius: 9px;
  animation: paydrion-forward 6.5s ease-in-out infinite;
}

.checkout-lab__brand strong,
.checkout-lab__brand small {
  display: block;
}

.checkout-lab__brand strong {
  font-size: 13px;
}

.checkout-lab__brand small {
  margin-top: 2px;
  color: rgba(255,255,255,0.55);
  font-size: 9px;
}

.secure-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  color: var(--cyan-300);
  border: 1px solid rgba(115,230,255,0.2);
  border-radius: 99px;
  background: rgba(255,255,255,0.06);
  font-size: 9px;
  font-weight: 750;
}

.checkout-lab__progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 9px 18px;
  border-bottom: 1px solid var(--line);
  background: #fbfcff;
}

.checkout-lab__progress span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-500);
  font-size: 8px;
  font-weight: 750;
}

.checkout-lab__progress span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: calc(100% - 62px);
  height: 1px;
  background: var(--line);
}

.checkout-lab__progress span.is-active {
  color: var(--blue-700);
}

.checkout-lab__progress i {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  color: var(--ink-500);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: white;
  font-size: 8px;
  font-style: normal;
}

.checkout-lab__progress .is-active i {
  color: white;
  border-color: var(--blue-600);
  background: var(--blue-600);
}

.checkout-lab__body {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
}

.checkout-lab__merchant {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 0 0, rgba(7,93,255,0.1), transparent 36%),
    var(--surface-soft);
}

.checkout-lab__merchant > div span,
.checkout-lab__merchant > div strong,
.checkout-lab__merchant label {
  display: block;
}

.merchant-order span,
.merchant-order strong,
.merchant-order small {
  display: block;
}

.merchant-order span {
  color: var(--ink-500);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.merchant-order strong {
  margin-top: 5px;
  color: var(--navy-900);
  font-size: 12px;
}

.merchant-order small {
  margin-top: 4px;
  color: var(--green-600);
  font-size: 8px;
  font-weight: 700;
}

.checkout-lab__merchant > div span {
  color: var(--ink-500);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.checkout-lab__merchant > div strong {
  margin-top: 5px;
  color: var(--navy-900);
  font-size: 14px;
}

.checkout-lab__merchant label {
  color: var(--ink-600);
  font-size: 10px;
  font-weight: 700;
}

.amount-input {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 7px;
  padding-bottom: 8px;
  color: var(--navy-900);
  border-bottom: 1px solid var(--line-strong);
}

.amount-input b {
  font-size: 22px;
}

.amount-input input {
  width: 100%;
  min-width: 0;
  padding: 0;
  color: var(--navy-900);
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 27px;
  font-weight: 750;
  letter-spacing: -0.04em;
}

.amount-input:focus-within {
  border-bottom-color: var(--blue-500);
  box-shadow: 0 2px 0 rgba(7, 93, 255, 0.16);
}

.demo-note {
  margin: 0;
  color: var(--ink-500);
  font-size: 9px;
  line-height: 1.45;
}

.checkout-lab__payment {
  min-height: 430px;
  padding: 24px;
}

.checkout-label {
  margin: 0 0 12px;
  color: var(--ink-700);
  font-size: 11px;
  font-weight: 750;
}

.method-list {
  display: grid;
  gap: 8px;
}

.method-option {
  display: grid;
  width: 100%;
  grid-template-columns: 38px 1fr 24px;
  gap: 10px;
  align-items: center;
  padding: 11px;
  color: var(--ink-700);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  text-align: left;
  cursor: pointer;
}

.method-option.is-active {
  color: var(--navy-900);
  border-color: rgba(7,93,255,0.4);
  background: var(--surface-blue);
  box-shadow: 0 0 0 3px rgba(7,93,255,0.06);
}

.method-option:hover {
  color: var(--navy-900);
  border-color: rgba(7,93,255,0.32);
  transform: translateY(-1px);
}

.method-option__icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--blue-600);
  border-radius: 9px;
  background: white;
  font-size: 8px;
  font-weight: 850;
  box-shadow: 0 3px 10px rgba(7,27,78,0.08);
}

.method-option strong,
.method-option small {
  display: block;
}

.method-option strong {
  font-size: 11px;
}

.method-option small {
  margin-top: 3px;
  color: var(--ink-500);
  font-size: 9px;
}

.method-option__go {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--blue-600);
  border-radius: 50%;
  background: white;
  box-shadow: 0 4px 12px rgba(7, 27, 78, 0.08);
}

.payment-context {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 2px 10px;
  color: var(--ink-500);
  font-size: 9px;
}

.payment-context span:last-child {
  color: var(--green-600);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.method-helper,
.credential-note {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: 0;
  color: var(--ink-500);
  font-size: 8px;
  line-height: 1.45;
}

.method-helper svg,
.credential-note svg {
  flex: 0 0 auto;
  color: var(--blue-600);
}

.payment-detail {
  display: grid;
  gap: 13px;
}

.payment-detail__head {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 9px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line);
}

.payment-detail__head > button {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  color: var(--ink-700);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  cursor: pointer;
}

.payment-detail__head > button svg {
  transform: rotate(180deg);
}

.payment-detail__head span small,
.payment-detail__head span strong {
  display: block;
}

.payment-detail__head span small {
  color: var(--ink-500);
  font-size: 8px;
}

.payment-detail__head span strong,
.payment-detail__head > b {
  margin-top: 2px;
  color: var(--navy-900);
  font-size: 11px;
}

.detail-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 4px;
  border-radius: 10px;
  background: var(--surface-soft);
}

.detail-tabs button {
  min-height: 30px;
  color: var(--ink-600);
  border: 0;
  border-radius: 7px;
  background: transparent;
  font-size: 9px;
  font-weight: 750;
  cursor: pointer;
}

.detail-tabs button.is-active {
  color: var(--blue-700);
  background: white;
  box-shadow: 0 4px 14px rgba(7,27,78,0.08);
}

.upi-detail,
.card-detail,
.bank-detail {
  display: grid;
  gap: 11px;
}

.upi-qr-panel {
  display: grid;
  grid-template-columns: 122px 1fr;
  align-items: center;
  gap: 16px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface-soft);
}

.demo-qr {
  position: relative;
  display: grid;
  width: 122px;
  height: 122px;
  grid-template-columns: repeat(21, 1fr);
  grid-template-rows: repeat(21, 1fr);
  gap: 0;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  box-shadow: 0 8px 20px rgba(7,27,78,0.08);
}

.demo-qr i {
  background: transparent;
}

.demo-qr i.is-dark {
  background: var(--navy-950);
}

.demo-qr img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  padding: 3px;
  border-radius: 6px;
  background: white;
  transform: translate(-50%, -50%);
}

.upi-qr-panel h4,
.bank-detail h4 {
  margin: 5px 0 4px;
  color: var(--navy-900);
  font-size: 13px;
}

.upi-qr-panel p,
.bank-detail p {
  margin: 0;
  color: var(--ink-500);
  font-size: 8px;
  line-height: 1.5;
}

.detail-field {
  display: grid;
  gap: 5px;
  color: var(--ink-600);
  font-size: 8px;
  font-weight: 750;
}

.detail-field input,
.detail-field select {
  width: 100%;
  min-height: 38px;
  padding: 9px 10px;
  color: var(--navy-900);
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  outline: none;
  background: white;
  font-size: 10px;
  font-weight: 650;
}

.detail-field input:focus,
.detail-field select:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(7,93,255,0.08);
}

.detail-field small {
  color: var(--ink-500);
  font-size: 7px;
  font-weight: 500;
}

.detail-field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.demo-card-preview {
  display: grid;
  min-height: 112px;
  align-content: space-between;
  padding: 14px;
  overflow: hidden;
  color: white;
  border-radius: 14px;
  background:
    radial-gradient(circle at 90% 10%, rgba(115,230,255,0.28), transparent 32%),
    linear-gradient(135deg, var(--navy-950), #0b4cc4);
  box-shadow: 0 12px 24px rgba(3,16,61,0.18);
}

.demo-card-preview > span,
.demo-card-preview > small {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 7px;
  letter-spacing: 0.08em;
}

.demo-card-preview > span {
  justify-content: flex-start;
  color: var(--cyan-300);
  font-weight: 800;
}

.demo-card-preview > strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.demo-card-preview > small {
  color: rgba(255,255,255,0.64);
}

.demo-card-preview > small b {
  color: white;
}

.bank-detail {
  place-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
  text-align: center;
}

.bank-detail__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--blue-600);
  border-radius: 14px;
  background: white;
  box-shadow: 0 7px 20px rgba(7,27,78,0.09);
}

.bank-detail .detail-field {
  width: 100%;
  text-align: left;
}

.checkout-error {
  margin: 0;
  padding: 8px 10px;
  color: #a51d35;
  border: 1px solid rgba(227,60,82,0.2);
  border-radius: 8px;
  background: rgba(227,60,82,0.06);
  font-size: 8px;
  line-height: 1.4;
}

.spinner {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255,255,255,0.38);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.demo-success {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.demo-processing {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.demo-processing__ring {
  position: relative;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(7,93,255,0.15);
  border-radius: 50%;
  background: var(--surface-blue);
}

.demo-processing__ring .spinner {
  position: absolute;
  inset: -1px;
  width: 78px;
  height: 78px;
  border-width: 2px;
  border-color: rgba(7,93,255,0.1);
  border-top-color: var(--blue-600);
}

.demo-processing h3 {
  margin: 8px 0 5px;
  color: var(--navy-900);
  font-size: 18px;
}

.demo-processing > p {
  max-width: 280px;
  margin: 0;
  color: var(--ink-500);
  font-size: 9px;
  line-height: 1.5;
}

.demo-processing > div {
  display: grid;
  grid-template-columns: 18px auto 18px auto;
  align-items: center;
  gap: 7px;
  margin-top: 24px;
  color: var(--ink-500);
  font-size: 8px;
}

.demo-processing > div i {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-soft);
}

.demo-processing > div i.is-done {
  color: white;
  background: var(--green-600);
}

.demo-processing > div i.is-current {
  border: 5px solid var(--blue-600);
  background: white;
  box-shadow: 0 0 0 4px rgba(7,93,255,0.09);
}

.demo-success__icon {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  margin-bottom: 18px;
  color: white;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--green-500), var(--green-600));
  box-shadow: 0 12px 28px rgba(16,185,129,0.25);
}

.approval-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
  padding: 5px 9px;
  color: var(--green-600);
  border: 1px solid rgba(7,148,106,0.18);
  border-radius: 99px;
  background: var(--success-soft);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.demo-success h3 {
  margin: 9px 0 4px;
  color: var(--navy-900);
  font-size: 21px;
}

.demo-success p {
  margin: 0 0 14px;
  color: var(--ink-500);
  font-size: 11px;
}

.approval-receipt {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--line);
  text-align: left;
}

.approval-receipt span {
  display: grid;
  min-width: 0;
  gap: 4px;
  padding: 9px;
  background: white;
}

.approval-receipt small {
  color: var(--ink-500);
  font-size: 7px;
}

.approval-receipt strong {
  overflow: hidden;
  color: var(--navy-900);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checkout-lab__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 18px;
  color: var(--ink-500);
  border-top: 1px solid var(--line);
  background: #fbfcff;
  font-size: 9px;
}

.checkout-lab__footer span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--blue-700);
  font-weight: 700;
}

/* TSP / PSP map */

.module-map {
  position: relative;
  display: grid;
  width: min(100%, 900px);
  min-height: 450px;
  place-items: center;
  margin: 52px auto 0;
}

.module-map::before,
.module-map::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(7,93,255,0.28), transparent);
}

.module-map::before {
  width: 76%;
  height: 1px;
}

.module-map::after {
  width: 1px;
  height: 76%;
  background: linear-gradient(transparent, rgba(7,93,255,0.28), transparent);
}

.module-map__core {
  position: relative;
  z-index: 3;
  display: flex;
  width: 230px;
  height: 230px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  border: 12px solid rgba(255,255,255,0.85);
  border-radius: 50%;
  background:
    radial-gradient(circle at 65% 25%, rgba(0,191,243,0.55), transparent 35%),
    linear-gradient(145deg, #083a9a, var(--navy-950));
  box-shadow: 0 25px 60px rgba(6,27,89,0.25), 0 0 0 1px rgba(7,93,255,0.15);
}

.module-map__core strong {
  margin-top: 11px;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.module-map__core span {
  max-width: 150px;
  margin-top: 6px;
  color: rgba(255,255,255,0.58);
  font-size: 9px;
  line-height: 1.4;
  text-align: center;
}

.module-card {
  position: absolute;
  z-index: 2;
  display: flex;
  width: 245px;
  align-items: center;
  gap: 12px;
  padding: 16px;
  color: var(--blue-600);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.module-card span,
.module-card strong,
.module-card small {
  display: block;
}

.module-card strong {
  color: var(--ink-900);
  font-size: 12px;
}

.module-card small {
  margin-top: 3px;
  color: var(--ink-500);
  font-size: 9px;
}

.module-card--one { top: 16px; left: 0; }
.module-card--two { top: 16px; right: 0; }
.module-card--three { bottom: 16px; left: 0; }
.module-card--four { right: 0; bottom: 16px; }

.center-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.api-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.api-product-grid a {
  position: relative;
  min-height: 245px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(238,245,255,0.6), white 48%);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.api-product-grid a:hover {
  border-color: rgba(7,93,255,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.api-product-grid a > span {
  color: var(--blue-600);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.api-product-grid h3 {
  margin: 46px 0 10px;
  color: var(--navy-900);
  font-size: 27px;
  letter-spacing: -0.035em;
}

.api-product-grid p {
  margin: 0;
  color: var(--ink-600);
  font-size: 12px;
  line-height: 1.6;
}

.api-product-grid b {
  position: absolute;
  right: 22px;
  bottom: 20px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--blue-600);
  border-radius: 50%;
  background: var(--surface-blue);
}

.boundary-callout {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  padding: 24px;
  color: var(--blue-700);
  border: 1px solid rgba(7,93,255,0.2);
  border-radius: 18px;
  background: linear-gradient(130deg, var(--surface-blue), #f8fcff);
}

.boundary-callout > svg {
  flex: 0 0 auto;
}

.boundary-callout h3 {
  margin: 5px 0 7px;
  color: var(--navy-900);
  font-size: 18px;
  letter-spacing: -0.02em;
}

.boundary-callout p {
  margin: 0;
  color: var(--ink-600);
  font-size: 12px;
  line-height: 1.65;
}

.boundary-callout--inline {
  align-items: center;
  margin-top: 18px;
}

.boundary-callout--inline > div {
  flex: 1;
}

.boundary-callout--inline > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

/* API console */

.split-section--code {
  grid-template-columns: minmax(0, 0.7fr) minmax(600px, 1.3fr);
}

.developer-points {
  display: grid;
  gap: 10px;
  margin: 26px 0 30px;
}

.developer-points > div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.72);
  font-size: 12px;
}

.developer-points strong {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--cyan-300);
  border: 1px solid rgba(115,230,255,0.2);
  border-radius: 9px;
  background: rgba(255,255,255,0.06);
  font-size: 9px;
}

.api-console {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  color: #dfeaff;
  background: #06143d;
  box-shadow: 0 30px 70px rgba(0,0,0,0.32);
}

.api-console__chrome {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 11px 14px;
  color: rgba(255,255,255,0.46);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: #081a4b;
  font-size: 9px;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fb7185;
}

.window-dots i:nth-child(2) { background: #fbbf24; }
.window-dots i:nth-child(3) { background: #34d399; }

.api-online {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 5px;
  color: #74eac2;
  font-weight: 750;
}

.api-online i {
  width: 6px;
  height: 6px;
}

.api-console__tabs {
  display: flex;
  gap: 3px;
  padding: 9px 10px 0;
}

.api-console__tabs button {
  padding: 8px 10px;
  color: rgba(255,255,255,0.48);
  border: 0;
  border-radius: 7px 7px 0 0;
  background: transparent;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}

.api-console__tabs button.is-active {
  color: white;
  background: rgba(255,255,255,0.08);
}

.api-console__endpoint {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  color: var(--cyan-300);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.035);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.api-console__endpoint button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 7px;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  font-size: 8px;
  cursor: pointer;
}

.api-console pre {
  min-height: 300px;
  max-height: 390px;
  margin: 0;
  padding: 20px;
  overflow: auto;
  color: #dbe7ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  line-height: 1.75;
  tab-size: 2;
}

.api-console--compact pre {
  min-height: 320px;
}

/* Trust home */

.trust-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
}

.trust-copy > p {
  margin-top: 22px;
}

.trust-stack {
  display: grid;
  gap: 10px;
}

.trust-stack > div {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.trust-stack__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--blue-600);
  border-radius: 12px;
  background: var(--surface-blue);
}

.trust-stack strong,
.trust-stack small {
  display: block;
}

.trust-stack strong {
  color: var(--ink-900);
  font-size: 13px;
}

.trust-stack small {
  margin-top: 4px;
  color: var(--ink-500);
  font-size: 10px;
}

.trust-stack > div > b {
  color: #c2cee0;
  font-size: 11px;
}

/* Service pages */

.service-hero {
  position: relative;
  overflow: hidden;
  padding: 38px 0 92px;
  background:
    linear-gradient(180deg, #f7faff 0%, #fff 88%);
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.48;
  background-image:
    linear-gradient(rgba(7,93,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,93,255,0.045) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.service-hero__glow {
  position: absolute;
  top: -260px;
  right: -120px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7,93,255,0.16), transparent 67%);
}

.accent-cyan .service-hero__glow { background: radial-gradient(circle, rgba(0,191,243,0.18), transparent 67%); }
.accent-violet .service-hero__glow { background: radial-gradient(circle, rgba(109,70,232,0.16), transparent 67%); }
.accent-green .service-hero__glow { background: radial-gradient(circle, rgba(16,185,129,0.14), transparent 67%); }
.accent-amber .service-hero__glow { background: radial-gradient(circle, rgba(245,158,11,0.13), transparent 67%); }

.breadcrumbs {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 50px;
  color: var(--ink-500);
  font-size: 10px;
}

.breadcrumbs a:hover {
  color: var(--blue-600);
}

.breadcrumbs strong {
  color: var(--ink-700);
  font-weight: 650;
}

.service-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(450px, 0.78fr);
  gap: 90px;
  align-items: center;
}

.service-hero__copy h1 {
  margin: 18px 0 24px;
  max-width: 790px;
  color: var(--navy-950);
  font-size: clamp(48px, 5.3vw, 72px);
  font-weight: 750;
  line-height: 1.01;
  letter-spacing: -0.058em;
}

.service-hero__copy > p {
  max-width: 690px;
  margin: 0;
  color: var(--ink-600);
  font-size: 18px;
  line-height: 1.72;
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 25px;
  color: var(--ink-500);
  font-size: 10px;
  font-weight: 680;
}

.hero-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.hero-assurance svg {
  color: var(--green-600);
}

.service-visual {
  position: relative;
  padding: 17px;
  border: 1px solid rgba(175,194,220,0.7);
  border-radius: 24px;
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-lg);
}

.service-visual::after {
  content: "";
  position: absolute;
  inset: 20% -24px -24px 18%;
  z-index: -1;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(7,93,255,0.13), rgba(0,191,243,0.1));
  filter: blur(18px);
}

.service-visual__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 3px 14px;
  border-bottom: 1px solid var(--line);
}

.mini-brand {
  gap: 8px;
  color: var(--navy-900);
  font-weight: 780;
}

.service-visual__metric {
  margin: 14px 0;
  padding: 19px;
  color: white;
  border-radius: 15px;
  background:
    radial-gradient(circle at 90% 10%, rgba(0,191,243,0.25), transparent 38%),
    linear-gradient(140deg, var(--navy-950), #082d7e);
}

.service-visual__metric span,
.service-visual__metric strong,
.service-visual__metric small {
  display: block;
}

.service-visual__metric span {
  color: rgba(255,255,255,0.54);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-visual__metric strong {
  margin: 8px 0 4px;
  font-size: 27px;
  letter-spacing: -0.035em;
}

.service-visual__metric small {
  color: rgba(255,255,255,0.58);
  font-size: 9px;
}

.service-flow {
  display: grid;
  gap: 7px;
}

.service-flow > div {
  display: grid;
  grid-template-columns: 38px 1fr 23px;
  gap: 10px;
  align-items: center;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}

.flow-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--blue-600);
  border-radius: 10px;
  background: var(--surface-blue);
}

.service-flow small,
.service-flow strong {
  display: block;
}

.service-flow small {
  color: var(--ink-500);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-flow strong {
  margin-top: 3px;
  color: var(--ink-900);
  font-size: 11px;
}

.state-check {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: white;
  border-radius: 50%;
  background: var(--green-500);
}

.state-pulse {
  width: 11px;
  height: 11px;
  justify-self: center;
  border: 3px solid rgba(7,93,255,0.16);
  border-radius: 50%;
  background: var(--blue-600);
  box-shadow: 0 0 0 5px rgba(7,93,255,0.07);
}

.service-visual__foot {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 3px 2px;
  color: var(--ink-500);
  font-size: 8px;
  font-weight: 700;
}

/* Product-specific page experiences */

.service-product-id {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--ink-500);
  font-size: 9px;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-product-id img {
  border-radius: 7px;
  box-shadow: 0 5px 14px rgba(7,93,255,0.17);
}

.product-experience {
  position: relative;
  min-width: 0;
  min-height: 530px;
  padding: 17px;
  overflow: hidden;
  color: white;
  border: 1px solid rgba(115,230,255,0.16);
  border-radius: 27px;
  background:
    radial-gradient(circle at 90% 0, rgba(0,191,243,0.19), transparent 36%),
    radial-gradient(circle at 0 100%, rgba(7,93,255,0.24), transparent 42%),
    linear-gradient(145deg, #020a21, #071b4b 66%, #061334);
  box-shadow: 0 34px 90px rgba(3,16,61,0.25);
  isolation: isolate;
}

.product-experience::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.product-experience--checkout {
  background:
    radial-gradient(circle at 14% 0, rgba(0,191,243,0.2), transparent 38%),
    linear-gradient(145deg, #03103d, #073084);
}

.product-experience--ledger {
  background:
    radial-gradient(circle at 80% 0, rgba(16,185,129,0.16), transparent 34%),
    linear-gradient(145deg, #02112f, #062e61);
}

.product-experience--lifecycle {
  background:
    radial-gradient(circle at 72% 10%, rgba(109,70,232,0.22), transparent 38%),
    linear-gradient(145deg, #080d30, #102b6c);
}

.product-experience--terminal {
  background:
    radial-gradient(circle at 88% 10%, rgba(0,191,243,0.14), transparent 34%),
    linear-gradient(145deg, #010718, #061b46);
}

.product-experience--governance {
  background:
    radial-gradient(circle at 50% 0, rgba(245,158,11,0.13), transparent 36%),
    linear-gradient(145deg, #050b24, #0a2459);
}

.product-experience--identity {
  background:
    radial-gradient(circle at 20% 0, rgba(0,191,243,0.2), transparent 37%),
    linear-gradient(145deg, #031037, #092866);
}

.xp-head {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 3px 4px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}

.xp-brand {
  display: grid;
  grid-template-columns: 30px auto;
  gap: 1px 8px;
  align-items: center;
}

.xp-brand img {
  grid-row: span 2;
  border-radius: 8px;
}

.xp-brand b {
  color: white;
  font-size: 11px;
}

.xp-brand small {
  color: rgba(255,255,255,0.42);
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.xp-signal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan-300);
  font-size: 7px;
  font-weight: 780;
  letter-spacing: 0.05em;
  text-align: right;
  text-transform: uppercase;
}

.xp-signal i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(16,185,129,0.11);
}

.xp-title {
  display: grid;
  gap: 5px;
  padding: 18px 4px 13px;
}

.xp-title > span {
  color: rgba(255,255,255,0.37);
  font-size: 7px;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.xp-title > strong {
  max-width: 470px;
  color: white;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.xp-states {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 13px 4px 2px;
}

.xp-states span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.52);
  font-size: 7px;
  font-weight: 700;
}

.xp-states i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(115,230,255,0.6);
}

.xp-states i.is-live {
  background: var(--green-500);
}

/* Directory scene */

.xp-directory {
  position: relative;
  display: grid;
  min-height: 330px;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 13px;
  align-items: stretch;
}

.xp-directory__core {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid rgba(115,230,255,0.17);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(7,93,255,0.23), rgba(0,191,243,0.07));
  text-align: center;
}

.xp-directory__core img {
  margin-bottom: 14px;
  border-radius: 13px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}

.xp-directory__core strong {
  font-size: 13px;
}

.xp-directory__core small {
  margin-top: 5px;
  color: rgba(255,255,255,0.43);
  font-size: 7px;
}

.xp-directory__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.xp-directory__grid > div {
  position: relative;
  display: grid;
  min-height: 130px;
  align-content: space-between;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 15px;
  background: rgba(255,255,255,0.055);
}

.xp-directory__grid span {
  color: var(--cyan-300);
  font-size: 7px;
  font-weight: 850;
}

.xp-directory__grid strong {
  max-width: 80%;
  font-size: 11px;
}

.xp-directory__grid svg {
  position: absolute;
  right: 14px;
  bottom: 14px;
  color: var(--cyan-300);
}

/* Network scene */

.xp-network {
  position: relative;
  min-height: 330px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: rgba(0,0,0,0.12);
}

.xp-network__core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: flex;
  width: 132px;
  height: 132px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(115,230,255,0.25);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7,93,255,0.34), rgba(3,16,61,0.92) 70%);
  box-shadow: 0 0 0 14px rgba(7,93,255,0.06), 0 20px 46px rgba(0,0,0,0.28);
  transform: translate(-50%, -50%);
}

.xp-network__core span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 14px;
  background: white;
}

.xp-network__core strong {
  font-size: 10px;
}

.xp-network__core small {
  margin-top: 3px;
  color: rgba(255,255,255,0.42);
  font-size: 6px;
}

.xp-network__node {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 128px;
  min-height: 68px;
  grid-template-columns: 24px 1fr 8px;
  gap: 7px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 13px;
  background: rgba(255,255,255,0.065);
  backdrop-filter: blur(12px);
}

.xp-network__node--1 { top: 24px; left: 20px; }
.xp-network__node--2 { top: 24px; right: 20px; }
.xp-network__node--3 { bottom: 24px; left: 20px; }
.xp-network__node--4 { right: 20px; bottom: 24px; }

.xp-network__node > span {
  color: var(--cyan-300);
  font-size: 7px;
  font-weight: 850;
}

.xp-network__node strong {
  font-size: 8px;
  line-height: 1.3;
}

.xp-network__node > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(7,93,255,0.1);
}

.xp-network__node > i.is-ready {
  background: var(--green-500);
}

.xp-network__rail {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  opacity: 0.55;
  background: linear-gradient(90deg, transparent, var(--cyan-500), transparent);
}

.xp-network__rail--x {
  width: 72%;
  height: 1px;
  transform: translate(-50%, -50%);
}

.xp-network__rail--y {
  width: 1px;
  height: 72%;
  background: linear-gradient(transparent, var(--blue-500), transparent);
  transform: translate(-50%, -50%);
}

/* Checkout scene */

.xp-checkout {
  min-height: 330px;
  padding: 14px;
  color: var(--ink-900);
  border: 1px solid rgba(255,255,255,0.54);
  border-radius: 18px;
  background: #f8fbff;
  box-shadow: inset 0 1px white;
}

.xp-checkout__merchant {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line);
}

.xp-checkout__merchant > span,
.xp-checkout__merchant > small {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.xp-checkout__merchant img {
  border-radius: 7px;
}

.xp-checkout__merchant strong {
  font-size: 9px;
}

.xp-checkout__merchant small {
  color: var(--blue-700);
  font-size: 6px;
  font-weight: 750;
}

.xp-checkout__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 11px;
  padding: 13px;
  color: white;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--navy-950), #093889);
}

.xp-checkout__summary small,
.xp-checkout__summary strong {
  display: block;
}

.xp-checkout__summary small {
  color: rgba(255,255,255,0.47);
  font-size: 6px;
  text-transform: uppercase;
}

.xp-checkout__summary strong {
  margin-top: 3px;
  font-size: 15px;
}

.xp-checkout__summary b {
  color: var(--cyan-300);
  font-size: 6px;
  text-transform: uppercase;
}

.xp-checkout__methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  margin-top: 10px;
}

.xp-checkout__methods > div {
  display: grid;
  grid-template-columns: 27px 1fr 9px;
  gap: 7px;
  align-items: center;
  padding: 9px;
  color: var(--ink-700);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
}

.xp-checkout__methods > div.is-selected {
  color: var(--navy-950);
  border-color: rgba(7,93,255,0.3);
  background: var(--surface-blue);
}

.xp-checkout__methods span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--blue-600);
  border-radius: 7px;
  background: var(--surface-blue);
  font-size: 7px;
  font-weight: 850;
}

.xp-checkout__methods strong {
  font-size: 7px;
  line-height: 1.25;
}

.xp-checkout__methods i {
  width: 8px;
  height: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.xp-checkout__methods .is-selected i {
  border: 2px solid var(--blue-600);
}

.xp-checkout__action {
  display: flex;
  width: 100%;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 10px;
  color: white;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-600), #0643dc);
  font-size: 8px;
  font-weight: 800;
  pointer-events: none;
}

.xp-checkout > p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 8px 0 0;
  color: var(--ink-500);
  font-size: 6px;
}

/* Ledger scene */

.xp-ledger {
  min-height: 330px;
  padding: 13px;
  color: var(--ink-900);
  border: 1px solid rgba(255,255,255,0.46);
  border-radius: 18px;
  background: #f8fbff;
}

.xp-ledger__summary {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 15px;
  align-items: end;
  padding: 13px;
  color: white;
  border-radius: 13px;
  background: linear-gradient(135deg, #03103d, #0a377b);
}

.xp-ledger__summary small,
.xp-ledger__summary strong {
  display: block;
}

.xp-ledger__summary small {
  color: rgba(255,255,255,0.48);
  font-size: 6px;
  text-transform: uppercase;
}

.xp-ledger__summary strong {
  margin-top: 4px;
  font-size: 16px;
}

.xp-ledger__summary > div {
  display: flex;
  height: 42px;
  align-items: flex-end;
  gap: 5px;
}

.xp-ledger__summary > div i {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(var(--cyan-300), var(--blue-500));
}

.xp-ledger__table {
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}

.xp-ledger__thead,
.xp-ledger__row {
  display: grid;
  grid-template-columns: 1fr 0.65fr 0.7fr;
  gap: 8px;
  align-items: center;
}

.xp-ledger__thead {
  padding: 8px 10px;
  color: var(--ink-500);
  background: var(--surface-soft);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.xp-ledger__row {
  min-height: 47px;
  padding: 8px 10px;
  border-top: 1px solid var(--line);
}

.xp-ledger__row > span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
}

.xp-ledger__row > span i {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue-600);
  border-radius: 6px;
  background: var(--surface-blue);
  font-size: 6px;
  font-style: normal;
  font-weight: 850;
}

.xp-ledger__row strong {
  overflow: hidden;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.xp-ledger__row > b {
  font-size: 7px;
}

.xp-ledger__row > em {
  justify-self: start;
  padding: 4px 6px;
  color: var(--green-600);
  border-radius: 99px;
  background: var(--success-soft);
  font-size: 5px;
  font-style: normal;
  font-weight: 800;
}

.xp-ledger__row > em.needs-review {
  color: #9a6200;
  background: #fff4d6;
}

/* Lifecycle scene */

.xp-lifecycle {
  display: grid;
  min-height: 330px;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 10px;
}

.xp-lifecycle__track {
  display: grid;
  gap: 7px;
  padding: 13px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 17px;
  background: rgba(255,255,255,0.045);
}

.xp-lifecycle__track > div {
  position: relative;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 3px 10px;
  align-items: center;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 11px;
  background: rgba(255,255,255,0.045);
}

.xp-lifecycle__track > div > span {
  display: grid;
  width: 30px;
  height: 30px;
  grid-row: span 2;
  place-items: center;
  color: var(--cyan-300);
  border: 1px solid rgba(115,230,255,0.18);
  border-radius: 9px;
  background: rgba(0,191,243,0.06);
  font-size: 7px;
  font-weight: 850;
}

.xp-lifecycle__track > div > span.is-done {
  color: white;
  border-color: rgba(16,185,129,0.32);
  background: rgba(16,185,129,0.18);
}

.xp-lifecycle__track strong {
  font-size: 8px;
}

.xp-lifecycle__track small {
  color: rgba(255,255,255,0.42);
  font-size: 6px;
}

.xp-lifecycle__track > div > i {
  position: absolute;
  bottom: -8px;
  left: 23px;
  width: 1px;
  height: 8px;
  background: rgba(115,230,255,0.35);
}

.xp-lifecycle__focus {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  border: 1px solid rgba(115,230,255,0.14);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(109,70,232,0.18), rgba(7,93,255,0.08));
}

.xp-lifecycle__focus span {
  color: var(--cyan-300);
  font-size: 6px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.xp-lifecycle__focus strong {
  margin: 11px 0 8px;
  font-size: 17px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.xp-lifecycle__focus small {
  color: rgba(255,255,255,0.46);
  font-size: 7px;
  line-height: 1.5;
}

/* Terminal scene */

.xp-terminal {
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 17px;
  background: rgba(0,0,0,0.25);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.xp-terminal__bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.045);
}

.xp-terminal__bar > span {
  display: flex;
  gap: 4px;
}

.xp-terminal__bar > span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
}

.xp-terminal__bar b {
  color: rgba(255,255,255,0.55);
  font-size: 6px;
}

.xp-terminal__bar em {
  color: var(--cyan-300);
  font-size: 5px;
  font-style: normal;
}

.xp-terminal__request {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 9px;
  align-items: center;
  margin: 11px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
}

.xp-terminal__request span {
  padding: 4px 6px;
  color: white;
  border-radius: 5px;
  background: var(--blue-600);
  font-size: 6px;
  font-weight: 850;
}

.xp-terminal__request code {
  overflow: hidden;
  color: rgba(255,255,255,0.68);
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.xp-terminal__request b {
  color: var(--green-500);
  font-size: 7px;
}

.xp-terminal__code {
  display: grid;
  gap: 7px;
  margin: 0 11px;
  padding: 14px;
  color: rgba(255,255,255,0.42);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  background: #020817;
}

.xp-terminal__code code {
  font-size: 7px;
}

.xp-terminal__code span {
  color: var(--cyan-300);
}

.xp-terminal__code b {
  color: #b7c7ff;
  font-weight: 500;
}

.xp-terminal__events {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 10px 11px 11px;
}

.xp-terminal__events > div {
  display: grid;
  gap: 7px;
  padding: 9px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 9px;
  background: rgba(255,255,255,0.035);
}

.xp-terminal__events span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.66);
  font-size: 6px;
}

.xp-terminal__events span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-500);
}

.xp-terminal__events span i.is-pending {
  background: var(--amber-500);
}

.xp-terminal__events strong {
  color: rgba(255,255,255,0.38);
  font-size: 5px;
}

/* Governance scene */

.xp-governance {
  display: grid;
  min-height: 330px;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 9px;
}

.xp-governance__decision {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 1px solid rgba(115,230,255,0.14);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(7,93,255,0.2), rgba(255,255,255,0.035));
  text-align: center;
}

.xp-governance__decision > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 13px;
  color: var(--cyan-300);
  border: 1px solid rgba(115,230,255,0.2);
  border-radius: 17px;
  background: rgba(0,191,243,0.07);
}

.xp-governance__decision small {
  color: rgba(255,255,255,0.4);
  font-size: 6px;
  text-transform: uppercase;
}

.xp-governance__decision strong {
  margin: 8px 0 5px;
  color: var(--green-500);
  font-size: 15px;
}

.xp-governance__decision em {
  color: var(--cyan-300);
  font-size: 6px;
  font-style: normal;
}

.xp-governance__rules {
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
}

.xp-governance__rules > div {
  display: grid;
  grid-template-columns: 1fr 0.7fr 44px;
  gap: 8px;
  align-items: center;
  padding: 9px;
  border: 1px solid rgba(255,255,255,0.065);
  border-radius: 10px;
  background: rgba(255,255,255,0.035);
}

.xp-governance__rules > div > span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
}

.xp-governance__rules i {
  color: var(--cyan-300);
  font-size: 6px;
  font-style: normal;
  font-weight: 850;
}

.xp-governance__rules strong {
  overflow: hidden;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.xp-governance__rules > div > b {
  position: relative;
  height: 4px;
  overflow: hidden;
  border-radius: 9px;
  background: rgba(255,255,255,0.08);
}

.xp-governance__rules > div > b::after {
  content: "";
  display: block;
  width: var(--rule-width);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-300));
}

.xp-governance__rules em {
  justify-self: end;
  color: var(--green-500);
  font-size: 5px;
  font-style: normal;
  font-weight: 800;
}

.xp-governance__foot {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: rgba(255,255,255,0.48);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  font-size: 6px;
}

.xp-governance__foot svg {
  color: var(--cyan-300);
}

/* Identity scene */

.xp-identity {
  min-height: 330px;
  padding: 13px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 17px;
  background: rgba(255,255,255,0.04);
}

.xp-identity__profile {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border: 1px solid rgba(115,230,255,0.14);
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(7,93,255,0.17), rgba(0,191,243,0.055));
}

.xp-identity__profile > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--cyan-300);
  border-radius: 14px;
  background: rgba(255,255,255,0.07);
}

.xp-identity__profile small,
.xp-identity__profile strong,
.xp-identity__profile em {
  display: block;
}

.xp-identity__profile small {
  color: rgba(255,255,255,0.38);
  font-size: 6px;
  text-transform: uppercase;
}

.xp-identity__profile strong {
  margin-top: 4px;
  font-size: 11px;
}

.xp-identity__profile em {
  margin-top: 6px;
  color: var(--green-500);
  font-size: 6px;
  font-style: normal;
  font-weight: 800;
}

.xp-identity__profile em i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--green-500);
}

.xp-identity__checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  margin-top: 9px;
}

.xp-identity__checks > div {
  display: grid;
  min-height: 72px;
  grid-template-columns: 25px 1fr 22px;
  gap: 7px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 11px;
  background: rgba(255,255,255,0.035);
}

.xp-identity__checks span {
  color: var(--cyan-300);
  font-size: 6px;
  font-weight: 850;
}

.xp-identity__checks strong {
  font-size: 7px;
  line-height: 1.3;
}

.xp-identity__checks b {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  color: var(--green-500);
  border-radius: 50%;
  background: rgba(16,185,129,0.08);
}

.xp-identity__evidence {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  background: rgba(0,0,0,0.1);
}

.xp-identity__evidence span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.48);
  font-size: 6px;
}

.xp-identity__evidence svg {
  color: var(--cyan-300);
}

.xp-identity__evidence strong {
  color: var(--cyan-300);
  font-size: 6px;
}

/* Six page-composition archetypes */

.service-hero--dark-split {
  color: white;
  background:
    radial-gradient(circle at 9% 16%, rgba(7,93,255,0.3), transparent 30%),
    radial-gradient(circle at 92% 70%, rgba(0,191,243,0.13), transparent 34%),
    linear-gradient(145deg, #020a20, #061642 60%, #071c4f);
}

.service-hero--dark-split::before {
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
}

.service-hero--dark-split .breadcrumbs,
.service-hero--dark-split .breadcrumbs strong,
.service-hero--dark-split .service-product-id,
.service-hero--dark-split .hero-assurance {
  color: rgba(255,255,255,0.5);
}

.service-hero--dark-split .service-hero__copy h1 {
  color: white;
}

.service-hero--dark-split .service-hero__copy > p {
  color: rgba(255,255,255,0.63);
}

.service-hero--dark-split .eyebrow {
  color: var(--cyan-300);
}

.service-hero--dark-split .button--ghost {
  color: white;
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
}

.service-hero--light-reverse .service-hero__grid {
  grid-template-columns: minmax(470px, 1.04fr) minmax(0, 0.96fr);
  gap: 78px;
}

.service-hero--light-reverse .product-experience {
  order: -1;
}

.service-hero--light-reverse {
  background:
    radial-gradient(circle at 0 12%, rgba(0,191,243,0.11), transparent 31%),
    linear-gradient(180deg, #f3f8ff, white 90%);
}

.service-hero--wide-console .service-hero__grid,
.service-hero--stacked .service-hero__grid {
  grid-template-columns: 1fr;
  gap: 48px;
}

.service-hero--wide-console .service-hero__copy,
.service-hero--stacked .service-hero__copy {
  max-width: 900px;
}

.service-hero--wide-console .product-experience,
.service-hero--stacked .product-experience {
  width: 100%;
  min-height: 500px;
}

.service-hero--wide-console {
  background:
    radial-gradient(circle at 92% 8%, rgba(109,70,232,0.11), transparent 26%),
    linear-gradient(180deg, #f7f9ff, #fff);
}

.service-hero--wide-console .xp-title > strong,
.service-hero--stacked .xp-title > strong {
  max-width: 760px;
  font-size: 19px;
}

.service-hero--centered-signal .service-hero__grid {
  grid-template-columns: 1fr;
  gap: 48px;
  text-align: center;
}

.service-hero--centered-signal .service-hero__copy {
  max-width: 920px;
  margin: 0 auto;
}

.service-hero--centered-signal .service-product-id,
.service-hero--centered-signal .eyebrow {
  justify-content: center;
}

.service-hero--centered-signal .service-hero__copy h1,
.service-hero--centered-signal .service-hero__copy > p {
  margin-inline: auto;
}

.service-hero--centered-signal .hero-actions,
.service-hero--centered-signal .hero-assurance {
  justify-content: center;
}

.service-hero--centered-signal .product-experience {
  width: min(100%, 970px);
  min-height: 500px;
  margin: 0 auto;
  text-align: left;
}

.service-hero--centered-signal {
  background:
    radial-gradient(circle at 50% 12%, rgba(7,93,255,0.16), transparent 32%),
    linear-gradient(180deg, #f4f8ff, #fff 92%);
}

.service-hero--editorial .service-hero__grid {
  grid-template-columns: minmax(0, 0.76fr) minmax(520px, 1.24fr);
  gap: 64px;
  align-items: stretch;
}

.service-hero--editorial .service-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 30px;
  border-left: 3px solid var(--blue-600);
}

.service-hero--editorial .service-hero__copy h1 {
  font-size: clamp(44px, 4.5vw, 64px);
}

.service-hero--editorial .product-experience {
  min-height: 570px;
}

.service-hero--stacked {
  background:
    linear-gradient(90deg, rgba(7,93,255,0.04) 1px, transparent 1px),
    linear-gradient(#f6f9ff, white);
  background-size: 64px 100%, auto;
}

/* Product signature sections */

.product-signature {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 10% 0, rgba(7,93,255,0.25), transparent 34%),
    radial-gradient(circle at 96% 100%, rgba(0,191,243,0.12), transparent 28%),
    linear-gradient(145deg, #020a20, #061743 62%, #071c4f);
}

.product-signature--checkout { background: radial-gradient(circle at 15% 0, rgba(0,191,243,0.23), transparent 34%), linear-gradient(145deg, #020b24, #072b70); }
.product-signature--ledger { background: radial-gradient(circle at 88% 0, rgba(16,185,129,0.16), transparent 32%), linear-gradient(145deg, #02102e, #063061); }
.product-signature--lifecycle { background: radial-gradient(circle at 12% 0, rgba(109,70,232,0.2), transparent 34%), linear-gradient(145deg, #050a27, #102c6b); }
.product-signature--terminal { background: radial-gradient(circle at 90% 0, rgba(0,191,243,0.14), transparent 30%), linear-gradient(145deg, #010716, #061b43); }
.product-signature--governance { background: radial-gradient(circle at 16% 0, rgba(245,158,11,0.12), transparent 30%), linear-gradient(145deg, #040a22, #092456); }
.product-signature--identity { background: radial-gradient(circle at 90% 0, rgba(0,191,243,0.16), transparent 32%), linear-gradient(145deg, #03103a, #092965); }

.product-signature::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000, transparent 84%);
}

.product-signature__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(540px, 1.22fr);
  gap: 78px;
  align-items: center;
}

.product-signature__copy h2 {
  margin: 18px 0 20px;
  color: white;
  font-size: clamp(38px, 4.3vw, 57px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.product-signature__copy > p {
  margin: 0;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.8;
}

.product-signature__brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 28px;
  padding: 10px 14px 10px 10px;
  color: var(--ink-900);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 14px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.product-signature__brand img {
  width: 118px;
  height: auto;
}

.product-signature__brand > span {
  padding-left: 12px;
  border-left: 1px solid var(--line);
}

.product-signature__brand strong,
.product-signature__brand small {
  display: block;
}

.product-signature__brand strong {
  font-size: 9px;
}

.product-signature__brand small {
  max-width: 190px;
  margin-top: 3px;
  color: var(--ink-500);
  font-size: 6px;
  line-height: 1.35;
}

.product-signature__system {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 22px;
  background: rgba(255,255,255,0.055);
  box-shadow: 0 28px 70px rgba(0,0,0,0.23);
  backdrop-filter: blur(14px);
}

.product-signature__system-head {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}

.product-signature__system-head span {
  color: rgba(255,255,255,0.45);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-signature__system-head b {
  color: var(--cyan-300);
  font-size: 7px;
}

.product-signature__modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.product-signature__modules article {
  display: grid;
  min-height: 158px;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-content: start;
  padding: 18px;
  background: rgba(3,16,61,0.84);
}

.product-signature__modules article > span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--cyan-300);
  border: 1px solid rgba(115,230,255,0.15);
  border-radius: 8px;
  font-size: 6px;
  font-weight: 850;
}

.product-signature__modules strong,
.product-signature__modules small {
  display: block;
}

.product-signature__modules strong {
  font-size: 10px;
}

.product-signature__modules small {
  margin-top: 7px;
  color: rgba(255,255,255,0.43);
  font-size: 7px;
  line-height: 1.55;
}

.product-signature__modules article > b {
  grid-column: 2;
  align-self: end;
  justify-self: start;
  padding: 4px 7px;
  color: var(--green-500);
  border-radius: 99px;
  background: rgba(16,185,129,0.08);
  font-size: 5px;
  text-transform: uppercase;
}

.product-signature__evidence {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.product-signature__evidence svg {
  color: var(--cyan-300);
}

.product-signature__evidence strong,
.product-signature__evidence small {
  display: block;
}

.product-signature__evidence strong {
  font-size: 8px;
}

.product-signature__evidence small {
  margin-top: 3px;
  color: rgba(255,255,255,0.4);
  font-size: 6px;
}

/* Layout-dependent feature cards and section order */

.feature-grid.feature-grid--light-reverse {
  grid-template-columns: 1.25fr 0.75fr;
}

.feature-grid--light-reverse .feature-card:first-child {
  grid-row: span 2;
  min-height: 430px;
}

.feature-grid--light-reverse .feature-card:not(:first-child) {
  min-height: 205px;
}

.feature-grid--light-reverse .feature-card:first-child .feature-card__icon {
  margin-bottom: 120px;
}

.feature-grid--light-reverse .feature-card:not(:first-child) .feature-card__icon {
  margin-bottom: 25px;
}

.feature-grid.feature-grid--wide-console {
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, 1fr);
}

.feature-grid--wide-console .feature-card:first-child {
  grid-row: 1 / -1;
  min-height: 470px;
}

.feature-grid--wide-console .feature-card:not(:first-child) {
  min-height: 225px;
}

.feature-grid.feature-grid--centered-signal .feature-card:nth-child(2) {
  transform: translateY(28px);
}

.feature-grid.feature-grid--editorial {
  grid-template-columns: 0.82fr 1.18fr;
}

.feature-grid--editorial .feature-card:nth-child(3) {
  grid-column: 1 / -1;
  min-height: 230px;
}

.feature-grid--editorial .feature-card:nth-child(3) .feature-card__icon {
  margin-bottom: 30px;
}

.feature-grid.feature-grid--stacked {
  grid-template-columns: 1fr;
}

.feature-grid--stacked .feature-card {
  display: grid;
  min-height: 190px;
  grid-template-columns: 70px 1fr;
  column-gap: 24px;
  align-content: center;
}

.feature-grid--stacked .feature-card__icon {
  grid-row: span 2;
  margin: 0;
}

.feature-grid--stacked .feature-card h3 {
  align-self: end;
}

.experience-content {
  display: flex;
  flex-direction: column;
}

.experience-content > .section--feature { order: 10; }
.experience-content > .product-signature { order: 20; }
.experience-content > .section--directory { order: 25; }
.experience-content > .section--operating { order: 30; }
.experience-content > .section--usecases { order: 40; }
.experience-content > .section--trust-detail,
.experience-content > .section--company-detail,
.experience-content > .section--boundary { order: 45; }
.experience-content > .section--faq { order: 50; }
.experience-content > .section--related { order: 60; }

.experience-content--light-reverse > .product-signature { order: 10; }
.experience-content--light-reverse > .section--feature { order: 20; }
.experience-content--light-reverse > .section--usecases { order: 30; }
.experience-content--light-reverse > .section--operating { order: 40; }

.experience-content--wide-console > .section--operating { order: 10; }
.experience-content--wide-console > .section--feature { order: 20; }
.experience-content--wide-console > .product-signature { order: 30; }

.experience-content--centered-signal > .product-signature { order: 10; }
.experience-content--centered-signal > .section--usecases { order: 20; }
.experience-content--centered-signal > .section--feature { order: 30; }
.experience-content--centered-signal > .section--operating { order: 40; }

.experience-content--editorial > .section--feature { order: 10; }
.experience-content--editorial > .section--usecases { order: 20; }
.experience-content--editorial > .product-signature { order: 30; }
.experience-content--editorial > .section--operating { order: 40; }

.experience-content--stacked > .section--operating { order: 10; }
.experience-content--stacked > .product-signature { order: 20; }
.experience-content--stacked > .section--feature { order: 30; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  position: relative;
  min-height: 330px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.feature-card__number {
  position: absolute;
  top: 25px;
  right: 26px;
  color: #bcc8da;
  font-size: 10px;
  font-weight: 750;
}

.feature-card__icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 68px;
  color: var(--blue-600);
  border-radius: 14px;
  background: var(--surface-blue);
}

.accent-bg-cyan { color: #007da2; background: #e7faff; }
.accent-bg-violet { color: var(--violet-600); background: #f1edff; }
.accent-bg-green { color: var(--green-600); background: var(--success-soft); }
.accent-bg-amber { color: #a46a00; background: #fff6de; }

.feature-card h3 {
  margin: 0 0 14px;
  color: var(--ink-900);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.feature-card p {
  margin: 0;
  color: var(--ink-600);
  font-size: 14px;
  line-height: 1.7;
}

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

.steps-grid article {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}

.steps-grid article > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--blue-600);
  border-radius: 10px;
  background: var(--surface-blue);
  font-size: 10px;
  font-weight: 850;
}

.steps-grid h3 {
  margin: 42px 0 11px;
  color: var(--ink-900);
  font-size: 20px;
  letter-spacing: -0.025em;
}

.steps-grid p {
  margin: 0;
  color: var(--ink-600);
  font-size: 13px;
  line-height: 1.65;
}

.steps-grid article > i {
  position: absolute;
  top: 34px;
  right: -31px;
  z-index: 2;
  display: grid;
  width: 40px;
  height: 26px;
  place-items: center;
  color: var(--blue-600);
  background: var(--surface-soft);
}

.use-case-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.use-case-layout h2 {
  margin: 14px 0 18px;
  color: var(--ink-900);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.use-case-layout > div > p {
  margin: 0;
  color: var(--ink-600);
  font-size: 15px;
  line-height: 1.75;
}

.use-case-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.use-case-list > div {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 92px;
  border-bottom: 1px solid var(--line);
}

.use-case-list > div > span {
  color: var(--blue-600);
  font-size: 10px;
  font-weight: 850;
}

.use-case-list strong {
  color: var(--ink-900);
  font-size: 18px;
}

.use-case-list svg {
  color: var(--blue-600);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}

.faq-layout h2 {
  margin: 14px 0 18px;
  color: var(--ink-900);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.faq-layout > div:first-child p {
  color: var(--ink-600);
  font-size: 14px;
  line-height: 1.7;
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
}

.faq-list summary {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 20px;
  color: var(--ink-900);
  font-size: 13px;
  font-weight: 730;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span {
  color: var(--blue-600);
  font-size: 20px;
  font-weight: 400;
  transition: transform 160ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -3px 20px 20px;
  padding-top: 15px;
  color: var(--ink-600);
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.7;
}

.section--faq {
  background: var(--surface-soft);
}

.section--related {
  border-top: 1px solid var(--line);
}

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

.related-grid a {
  position: relative;
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: white;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.related-grid a:hover {
  border-color: rgba(7,93,255,0.28);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.related-grid a > span {
  color: var(--blue-600);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.related-grid h3 {
  margin: 45px 0 12px;
  color: var(--ink-900);
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.related-grid p {
  margin: 0;
  color: var(--ink-600);
  font-size: 12px;
  line-height: 1.65;
}

.related-grid b {
  position: absolute;
  right: 25px;
  bottom: 23px;
  left: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--blue-600);
  font-size: 11px;
}

/* Branded service stories and complete directory */

.section--brand-story {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 12% 10%, rgba(7,93,255,0.28), transparent 34%),
    radial-gradient(circle at 90% 88%, rgba(0,191,243,0.14), transparent 30%),
    linear-gradient(145deg, #020b22, #071b48 58%, #061334);
}

.section--brand-story::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 74%);
}

.service-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(410px, 0.92fr);
  gap: 76px;
  align-items: center;
}

.service-story__visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 27px;
  background: #061338;
  box-shadow: 0 38px 90px rgba(0,0,0,0.34);
}

.service-story__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.035);
}

.service-story__visual > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-story__visual figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 14px;
  color: var(--ink-600);
  border: 1px solid rgba(255,255,255,0.58);
  border-radius: 15px;
  background: rgba(255,255,255,0.91);
  box-shadow: 0 14px 40px rgba(2,11,34,0.28);
  backdrop-filter: blur(18px);
}

.service-story__visual figcaption img {
  width: 132px;
  height: auto;
}

.service-story__visual figcaption span {
  max-width: 260px;
  font-size: 9px;
  font-weight: 720;
  line-height: 1.45;
  text-align: right;
}

.service-story__copy .eyebrow {
  color: var(--cyan-300);
  border-color: rgba(115,230,255,0.22);
  background: rgba(0,191,243,0.07);
}

.service-story__copy h2 {
  margin: 18px 0 20px;
  color: white;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.service-story__copy > p {
  margin: 0;
  color: rgba(255,255,255,0.61);
  font-size: 14px;
  line-height: 1.78;
}

.service-module-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-top: 30px;
}

.service-module-list > div {
  display: grid;
  min-height: 76px;
  grid-template-columns: 28px 1fr 18px;
  gap: 8px;
  align-items: center;
  padding: 13px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 13px;
  background: rgba(255,255,255,0.05);
}

.service-module-list > div > span {
  color: var(--cyan-300);
  font-size: 9px;
  font-weight: 850;
}

.service-module-list strong {
  color: rgba(255,255,255,0.86);
  font-size: 10px;
  line-height: 1.35;
}

.service-module-list svg {
  color: var(--green-500);
}

.brand-signature {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 9px 13px 9px 9px;
  border: 1px solid rgba(115,230,255,0.14);
  border-radius: 13px;
  background: rgba(0,191,243,0.055);
}

.brand-signature img {
  border-radius: 9px;
}

.brand-signature strong,
.brand-signature small {
  display: block;
}

.brand-signature strong {
  color: white;
  font-size: 10px;
}

.brand-signature small {
  margin-top: 3px;
  color: rgba(255,255,255,0.47);
  font-size: 8px;
}

.section--directory,
.section--home-directory {
  background:
    radial-gradient(circle at 92% 4%, rgba(7,93,255,0.1), transparent 26%),
    var(--surface-soft);
}

.directory-intro > p {
  margin: 0 0 16px;
  color: var(--ink-600);
  font-size: 14px;
  line-height: 1.7;
}

.capability-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin: 42px 0 24px;
}

.capability-mosaic > a {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 20px;
  background: var(--navy-950);
  box-shadow: var(--shadow-md);
  isolation: isolate;
}

.capability-mosaic img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 320ms ease, opacity 320ms ease;
}

.capability-mosaic > a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(2,11,34,0.9), rgba(2,11,34,0.03) 72%);
}

.capability-mosaic a:hover img {
  opacity: 0.92;
  transform: scale(1.025);
}

.capability-mosaic span {
  position: absolute;
  right: 19px;
  bottom: 18px;
  left: 19px;
  z-index: 2;
}

.capability-mosaic small,
.capability-mosaic strong {
  display: block;
}

.capability-mosaic small {
  margin-bottom: 5px;
  color: var(--cyan-300);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.capability-mosaic strong {
  color: white;
  font-size: 12px;
  line-height: 1.45;
}

.service-directory {
  display: grid;
  gap: 10px;
}

.service-directory details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255,255,255,0.91);
  box-shadow: var(--shadow-sm);
}

.service-directory summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 21px;
  color: var(--ink-900);
  list-style: none;
  cursor: pointer;
}

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

.service-directory summary > span {
  display: grid;
  grid-template-columns: 40px auto;
  gap: 2px 12px;
  align-items: center;
}

.service-directory summary > span > svg {
  grid-row: span 2;
  color: var(--blue-600);
}

.service-directory summary strong {
  font-size: 15px;
}

.service-directory summary small {
  color: var(--ink-500);
  font-size: 9px;
}

.service-directory summary > b {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-600);
  font-size: 9px;
}

.service-directory summary i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface-blue);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  transition: transform 180ms ease;
}

.service-directory details[open] summary i {
  transform: rotate(45deg);
}

.service-directory__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.service-directory__links a {
  position: relative;
  display: grid;
  min-height: 154px;
  align-content: start;
  padding: 22px;
  background: white;
  transition: background 160ms ease;
}

.service-directory__links a:hover {
  background: var(--surface-blue);
}

.service-directory__links a > span {
  color: var(--blue-600);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-directory__links a > strong {
  max-width: 88%;
  margin-top: 14px;
  color: var(--ink-900);
  font-size: 14px;
  line-height: 1.34;
  letter-spacing: -0.015em;
}

.service-directory__links a > svg {
  position: absolute;
  right: 19px;
  bottom: 19px;
  color: var(--blue-600);
}

.service-directory--full {
  margin-top: 42px;
}

/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(560px, 1.3fr);
  gap: 90px;
  align-items: start;
}

.contact-layout > div > p {
  margin-top: 20px;
}

.contact-office-card {
  margin-top: 30px;
  padding: 20px;
  border: 1px solid rgba(7,93,255,0.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(0,191,243,0.09), transparent 34%),
    white;
  box-shadow: var(--shadow-sm);
}

.contact-office-card__head,
.contact-office-card > a,
.contact-office-card__links,
.contact-office-card__links a {
  display: flex;
  align-items: center;
}

.contact-office-card__head {
  gap: 11px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.contact-office-card__head > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: white;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
  box-shadow: 0 10px 22px rgba(7,93,255,0.2);
}

.contact-office-card__head small,
.contact-office-card__head strong {
  display: block;
}

.contact-office-card__head small,
.contact-office-card > a,
.contact-office-card__links a {
  color: var(--ink-600);
  font-size: 10px;
  line-height: 1.55;
}

.contact-office-card__head strong {
  margin-top: 3px;
  color: var(--navy-900);
  font-size: 12px;
  letter-spacing: 0.015em;
}

.contact-office-card > a {
  gap: 9px;
  margin-top: 15px;
}

.contact-office-card > a svg,
.contact-office-card__links svg {
  flex: 0 0 auto;
  color: var(--blue-600);
}

.contact-office-card__links {
  flex-wrap: wrap;
  gap: 9px 16px;
  margin-top: 13px;
}

.contact-office-card__links a {
  gap: 6px;
  color: var(--blue-700);
  font-weight: 750;
}

.contact-form {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.contact-form label {
  display: block;
  margin-bottom: 14px;
  color: var(--ink-700);
  font-size: 11px;
  font-weight: 720;
}

.contact-form label > span:first-of-type {
  margin-left: 2px;
  color: #e33c52;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px 13px;
  color: var(--ink-900);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  outline: none;
  background: white;
  font-size: 13px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(7,93,255,0.08);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .consent-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--ink-600);
  font-size: 10px;
  font-weight: 550;
  line-height: 1.5;
}

.contact-form .consent-check input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin: 0;
}

.form-status {
  margin: 12px 0 0;
  color: var(--ink-500);
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

/* Trust matrix and sources */

.trust-matrix {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.trust-matrix__header,
.trust-matrix__row {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr 0.8fr;
  gap: 28px;
  align-items: center;
  padding: 18px 22px;
}

.trust-matrix__header {
  color: rgba(255,255,255,0.6);
  background: var(--navy-950);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.trust-matrix__row {
  min-height: 78px;
  color: var(--ink-600);
  border-bottom: 1px solid var(--line);
  background: white;
  font-size: 12px;
  line-height: 1.5;
}

.trust-matrix__row:last-child {
  border-bottom: 0;
}

.trust-matrix__row strong {
  color: var(--blue-700);
}

.source-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  padding: 42px;
  color: white;
  border-radius: 26px;
  background:
    radial-gradient(circle at 0 100%, rgba(0,191,243,0.2), transparent 35%),
    linear-gradient(135deg, var(--navy-950), #082d78);
}

.source-panel h2 {
  color: white;
  font-size: clamp(30px, 3.5vw, 44px);
}

.source-panel p {
  margin: 18px 0 0;
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  line-height: 1.7;
}

.source-links {
  display: grid;
  gap: 8px;
}

.source-links a {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 13px;
  background: rgba(255,255,255,0.06);
}

.source-links a:hover {
  border-color: rgba(115,230,255,0.28);
  background: rgba(255,255,255,0.09);
}

.source-links a span {
  color: var(--cyan-300);
  font-size: 10px;
  font-weight: 850;
}

.source-links a strong {
  color: rgba(255,255,255,0.85);
  font-size: 11px;
}

.company-facts {
  display: grid;
  gap: 10px;
}

.company-facts > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 20px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
}

.company-facts span,
.company-facts small {
  color: rgba(255,255,255,0.48);
  font-size: 9px;
}

.company-facts strong {
  grid-row: span 2;
  align-self: center;
  color: var(--cyan-300);
  font-size: 19px;
}

/* Legal */

.legal-layout {
  display: grid;
  width: min(calc(100% - 48px), 1060px);
  grid-template-columns: 250px 1fr;
  gap: 80px;
  margin-inline: auto;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 2px;
}

.legal-sidebar > .micro-label {
  margin-bottom: 12px;
}

.legal-sidebar > a {
  padding: 8px 10px;
  color: var(--ink-600);
  border-left: 2px solid var(--line);
  font-size: 11px;
  line-height: 1.4;
}

.legal-sidebar > a:hover {
  color: var(--blue-600);
  border-left-color: var(--blue-600);
  background: var(--surface-blue);
}

.legal-help {
  margin-top: 24px;
  padding: 15px;
  color: var(--blue-700);
  border-radius: 12px;
  background: var(--surface-blue);
}

.legal-help p {
  margin: 8px 0 0;
  color: var(--ink-600);
  font-size: 9px;
  line-height: 1.5;
}

.legal-document {
  min-width: 0;
}

.legal-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 46px;
  padding: 18px;
  color: var(--blue-700);
  border: 1px solid rgba(7,93,255,0.18);
  border-radius: 14px;
  background: var(--surface-blue);
}

.legal-notice svg {
  flex: 0 0 auto;
}

.legal-notice p {
  margin: 0;
  color: var(--ink-700);
  font-size: 11px;
  line-height: 1.6;
}

.legal-document > section {
  scroll-margin-top: 120px;
  padding: 0 0 42px;
  margin: 0 0 42px;
  border-bottom: 1px solid var(--line);
}

.legal-document > section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.legal-document h2 {
  margin: 0 0 18px;
  color: var(--ink-900);
  font-size: 25px;
  letter-spacing: -0.03em;
}

.legal-document p {
  margin: 0 0 14px;
  color: var(--ink-600);
  font-size: 14px;
  line-height: 1.85;
}

/* Footer */

.site-footer {
  color: white;
  background:
    radial-gradient(circle at 15% 0, rgba(0,191,243,0.14), transparent 27%),
    var(--navy-950);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 99px;
  background: #0b9e65;
  box-shadow: 0 14px 34px rgba(3,16,61,0.3);
  font-size: 11px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.floating-whatsapp:hover {
  background: #087f52;
  box-shadow: 0 17px 38px rgba(3,16,61,0.38);
  transform: translateY(-2px);
}

.footer-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  padding: 76px 0 62px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-cta h2 {
  max-width: 760px;
  margin: 14px 0 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.security-assurance {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 40px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.security-assurance__intro strong,
.security-assurance__intro small {
  display: block;
}

.security-assurance__intro strong {
  margin-top: 8px;
  font-size: 15px;
}

.security-assurance__intro small {
  margin-top: 5px;
  color: rgba(255,255,255,0.45);
  font-size: 9px;
}

.security-assurance__marks {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.security-assurance__marks article {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  padding: 11px;
  border: 1px solid rgba(115,230,255,0.12);
  border-radius: 11px;
  background: rgba(255,255,255,0.045);
}

.security-assurance__marks article > span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--cyan-300);
  border: 1px solid rgba(115,230,255,0.16);
  border-radius: 9px;
  background: rgba(0,191,243,0.08);
}

.security-assurance__marks strong,
.security-assurance__marks small {
  display: block;
}

.security-assurance__marks strong {
  overflow: hidden;
  color: rgba(255,255,255,0.88);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.security-assurance__marks small {
  margin-top: 3px;
  color: rgba(255,255,255,0.42);
  font-size: 7px;
  line-height: 1.35;
}

.security-assurance__marks .is-startup {
  border-color: rgba(255,153,51,0.24);
  background: linear-gradient(135deg, rgba(255,153,51,0.09), rgba(19,136,8,0.07));
}

.security-assurance__marks .is-startup > span {
  color: #ffb067;
  border-color: rgba(255,153,51,0.2);
  background: rgba(255,153,51,0.09);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 0.75fr);
  gap: 48px;
  padding: 60px 0 48px;
}

.footer-brand .brand__name {
  color: white;
}

.footer-brand > p {
  max-width: 330px;
  margin: 22px 0 0;
  color: rgba(255,255,255,0.52);
  font-size: 12px;
  line-height: 1.7;
}

.footer-trust {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  color: var(--cyan-300);
  font-size: 9px;
  font-weight: 750;
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.footer-socials a,
.footer-socials > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
}

.footer-socials a:hover {
  color: white;
  border-color: rgba(115,230,255,0.35);
  background: rgba(0,191,243,0.11);
  transform: translateY(-2px);
}

.footer-socials .is-whatsapp {
  color: #72f0b7;
}

.footer-socials .is-map {
  color: var(--cyan-300);
}

.footer-socials > span[aria-disabled="true"] {
  color: rgba(255,255,255,0.26);
  cursor: not-allowed;
}

.social-status {
  display: block;
  max-width: 320px;
  margin-top: 8px;
  color: rgba(255,255,255,0.34);
  font-size: 7px;
  line-height: 1.45;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-column > p {
  margin: 0 0 8px;
  color: white;
  font-size: 11px;
  font-weight: 800;
}

.footer-column a {
  color: rgba(255,255,255,0.54);
  font-size: 10px;
}

.footer-column a:hover {
  color: var(--cyan-300);
}

.company-contact-panel {
  display: grid;
  grid-template-columns: 1.25fr 1.45fr 0.75fr 0.9fr;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px;
  border: 1px solid rgba(115,230,255,0.13);
  border-radius: 17px;
  background: linear-gradient(110deg, rgba(0,191,243,0.08), rgba(255,255,255,0.035));
}

.company-contact-panel__identity,
.company-contact-panel > a {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  padding: 14px;
  border-radius: 11px;
}

.company-contact-panel__identity {
  background: rgba(255,255,255,0.055);
}

.company-contact-panel__identity > span {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--cyan-300);
  border: 1px solid rgba(115,230,255,0.18);
  border-radius: 10px;
  background: rgba(0,191,243,0.08);
}

.company-contact-panel small,
.company-contact-panel strong {
  display: block;
}

.company-contact-panel small {
  color: rgba(255,255,255,0.42);
  font-size: 7px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.company-contact-panel strong {
  margin-top: 4px;
  overflow-wrap: anywhere;
  color: rgba(255,255,255,0.84);
  font-size: 9px;
  line-height: 1.45;
}

.company-contact-panel > a {
  color: var(--cyan-300);
  transition: background 160ms ease, transform 160ms ease;
}

.company-contact-panel > a:hover {
  background: rgba(255,255,255,0.055);
  transform: translateY(-1px);
}

.company-contact-panel > a > svg {
  flex: 0 0 auto;
}

.footer-disclosure {
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 13px;
  background: rgba(255,255,255,0.04);
}

.footer-disclosure p {
  margin: 0;
  color: rgba(255,255,255,0.48);
  font-size: 9px;
  line-height: 1.65;
}

.footer-disclosure strong {
  color: rgba(255,255,255,0.72);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 36px;
  color: rgba(255,255,255,0.4);
  font-size: 9px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  gap: 18px;
}

.footer-bottom a:hover {
  color: white;
}

/* Not found */

.not-found {
  display: flex;
  min-height: 72vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(7,93,255,0.12), transparent 35%),
    var(--surface-soft);
}

.not-found__mark {
  margin-bottom: 22px;
}

.not-found h1 {
  max-width: 680px;
  margin: 15px 0;
  color: var(--navy-950);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.not-found p {
  color: var(--ink-600);
}

/* Responsive */

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 0;
  }

  .nav-popover > summary,
  .nav-text-link {
    padding-inline: 7px;
    font-size: 12px;
  }

  .home-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.9fr);
    gap: 42px;
  }

  .command-grid,
  .checkout-grid,
  .split-section,
  .trust-grid,
  .company-story,
  .contact-layout {
    gap: 54px;
  }

  .split-section--code {
    grid-template-columns: minmax(0, 0.7fr) minmax(500px, 1.3fr);
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(4, 0.8fr);
    gap: 28px;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .hide-tablet {
    display: none;
  }

  .mobile-toggle {
    display: grid;
  }

  .home-hero {
    padding-top: 64px;
  }

  .home-hero__grid,
  .service-hero__grid,
  .service-story,
  .command-grid,
  .checkout-grid,
  .split-section,
  .trust-grid,
  .company-story,
  .contact-layout,
  .source-panel {
    grid-template-columns: 1fr;
  }

  .home-hero__copy {
    max-width: 800px;
  }

  .hero-console {
    max-width: 700px;
    transform: none;
  }

  .home-hero__metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-hero__metrics > div:nth-child(2) {
    border-right: 0;
  }

  .home-hero__metrics > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .home-hero__metrics > div:nth-child(3) {
    padding-left: 0;
  }

  .rail-strip__inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 20px;
    text-align: center;
  }

  .rail-strip__inner > div {
    flex-wrap: wrap;
    gap: 14px 22px;
  }

  .rail-strip small {
    max-width: none;
  }

  .product-card-grid,
  .feature-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .service-story {
    gap: 48px;
  }

  .service-story__visual {
    max-width: 760px;
  }

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

  .capability-mosaic > a:first-child {
    grid-column: 1 / -1;
  }

  .service-directory__links {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card,
  .feature-card {
    min-height: 310px;
  }

  .checkout-copy {
    max-width: 720px;
  }

  .api-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section--code {
    gap: 44px;
  }

  .api-console {
    max-width: 760px;
  }

  .service-hero__grid {
    gap: 54px;
  }

  .service-visual {
    max-width: 600px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading > p {
    max-width: 700px;
  }

  .use-case-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .legal-sidebar {
    position: static;
    grid-template-columns: repeat(3, 1fr);
  }

  .legal-sidebar > .micro-label,
  .legal-help {
    grid-column: 1 / -1;
  }

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

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

  .security-assurance {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .company-contact-panel {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .shell,
  .legal-layout {
    width: min(calc(100% - 32px), var(--shell));
  }

  .section {
    padding: 80px 0;
  }

  .section--tight {
    padding: 50px 0;
  }

  .trust-strip__inner {
    justify-content: center;
  }

  .trust-strip__inner > span {
    display: none;
  }

  .site-header__inner {
    min-height: 64px;
  }

  .brand--compact .brand__mark {
    width: 34px;
    height: 34px;
  }

  .brand--compact .brand__name {
    font-size: 21px;
  }

  .header-actions .button {
    display: none;
  }

  .header-actions .button--login {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: auto;
    min-height: 38px;
    height: 38px;
    padding: 7px 13px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
  }

  .header-actions .button--login span {
    display: inline !important;
    font-size: 13px;
    font-weight: 700;
  }

  .home-hero__copy h1 {
    font-size: clamp(46px, 13vw, 66px);
  }

  .home-hero__copy > p,
  .service-hero__copy > p {
    font-size: 16px;
  }

  .home-hero__proof {
    display: grid;
  }

  .hero-console {
    padding: 12px;
    border-radius: 20px;
  }

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

  .signal-chart {
    height: 48px;
  }

  .transaction-list > div {
    grid-template-columns: 34px 1fr;
  }

  .transaction-list > div > b {
    grid-column: 2;
    justify-self: start;
  }

  .route-map {
    grid-template-columns: 1fr;
  }

  .route-map > i {
    width: 1px;
    height: 12px;
    justify-self: center;
    background: var(--line-strong);
  }

  .home-hero__metrics > div {
    padding: 20px 14px;
  }

  .home-hero__metrics strong {
    font-size: 17px;
  }

  .section-heading h2,
  .checkout-copy h2,
  .command-copy h2,
  .trust-copy h2,
  .contact-layout h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .product-card {
    min-height: 360px;
    padding: 26px;
  }

  .product-card b {
    right: 26px;
    left: 26px;
  }

  .command-panel {
    padding: 13px;
  }

  .timeline > div {
    grid-template-columns: 28px 1fr;
  }

  .timeline em {
    grid-column: 2;
  }

  .mini-feature-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .service-story__visual figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-story__visual figcaption span {
    max-width: none;
    text-align: left;
  }

  .service-module-list,
  .capability-mosaic,
  .service-directory__links {
    grid-template-columns: 1fr;
  }

  .capability-mosaic > a:first-child {
    grid-column: auto;
  }

  .service-directory summary {
    align-items: flex-start;
  }

  .service-directory summary > b {
    white-space: nowrap;
  }

  .checkout-lab__body {
    grid-template-columns: 1fr;
  }

  .checkout-lab__merchant {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .checkout-lab__merchant {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .checkout-lab__merchant .demo-note {
    grid-column: 1 / -1;
  }

  .module-map {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 10px;
  }

  .module-map::before,
  .module-map::after {
    display: none;
  }

  .module-map__core {
    width: 200px;
    height: 200px;
    margin-bottom: 14px;
  }

  .module-card {
    position: static;
    width: 100%;
  }

  .api-product-grid {
    grid-template-columns: 1fr;
  }

  .boundary-callout--inline {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .api-console__chrome {
    grid-template-columns: 1fr 1fr;
  }

  .api-console__chrome > span:nth-child(2) {
    display: none;
  }

  .api-console__tabs {
    overflow-x: auto;
  }

  .api-console__tabs button {
    white-space: nowrap;
  }

  .api-console pre {
    font-size: 9px;
  }

  .service-hero {
    padding: 28px 0 70px;
  }

  .breadcrumbs {
    margin-bottom: 36px;
  }

  .service-hero__copy h1 {
    font-size: clamp(42px, 12vw, 60px);
  }

  .hero-assurance {
    display: grid;
  }

  .service-visual__foot {
    flex-wrap: wrap;
  }

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

  .steps-grid article > i {
    top: auto;
    right: 50%;
    bottom: -24px;
    transform: rotate(90deg) translateY(-50%);
  }

  .use-case-list > div {
    grid-template-columns: 38px 1fr auto;
  }

  .trust-matrix {
    overflow-x: auto;
  }

  .trust-matrix__header,
  .trust-matrix__row {
    width: 720px;
  }

  .source-panel {
    gap: 35px;
    padding: 28px;
  }

  .source-links a {
    grid-template-columns: 48px 1fr auto;
  }

  .legal-sidebar {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-cta {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 20px;
  }

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

  .footer-bottom > div {
    flex-wrap: wrap;
  }

  .security-assurance__marks {
    grid-template-columns: repeat(2, 1fr);
  }

  .security-assurance__marks .is-startup {
    grid-column: span 2;
  }

  .company-contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .home-hero__metrics {
    grid-template-columns: 1fr;
  }

  .home-hero__metrics > div {
    padding-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-actions {
    display: grid;
  }

  .service-directory summary {
    min-height: 0;
    flex-direction: column;
  }

  .service-directory summary > b {
    width: 100%;
    justify-content: space-between;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .checkout-lab__merchant {
    grid-template-columns: 1fr;
  }

  .checkout-lab__merchant .demo-note {
    grid-column: auto;
  }

  .checkout-lab__payment {
    min-height: 0;
    padding: 18px;
  }

  .checkout-lab__progress {
    padding-inline: 12px;
  }

  .checkout-lab__progress span:not(:last-child)::after {
    display: none;
  }

  .upi-qr-panel {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .security-assurance__marks {
    grid-template-columns: 1fr;
  }

  .security-assurance__marks .is-startup {
    grid-column: auto;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
    min-height: 50px;
    justify-content: center;
    padding: 0;
  }

  .floating-whatsapp span {
    display: none;
  }
}

@media (max-width: 980px) {
  .service-hero--dark-split .service-hero__grid,
  .service-hero--light-reverse .service-hero__grid,
  .service-hero--wide-console .service-hero__grid,
  .service-hero--centered-signal .service-hero__grid,
  .service-hero--editorial .service-hero__grid,
  .service-hero--stacked .service-hero__grid,
  .product-signature__grid {
    grid-template-columns: 1fr;
  }

  .service-hero--light-reverse .product-experience {
    order: 0;
  }

  .service-hero--editorial .service-hero__copy {
    padding-left: 24px;
  }

  .product-experience {
    width: min(100%, 760px);
  }

  .service-hero--centered-signal .product-experience,
  .service-hero--wide-console .product-experience,
  .service-hero--stacked .product-experience {
    width: 100%;
  }

  .product-signature__grid {
    gap: 48px;
  }

  .product-signature__copy {
    max-width: 760px;
  }

  .feature-grid.feature-grid--light-reverse,
  .feature-grid.feature-grid--wide-console,
  .feature-grid.feature-grid--centered-signal,
  .feature-grid.feature-grid--editorial,
  .feature-grid.feature-grid--stacked {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .feature-grid--light-reverse .feature-card:first-child,
  .feature-grid--wide-console .feature-card:first-child,
  .feature-grid--editorial .feature-card:nth-child(3) {
    grid-row: auto;
    grid-column: auto;
    min-height: 310px;
  }

  .feature-grid--light-reverse .feature-card:first-child .feature-card__icon {
    margin-bottom: 68px;
  }

  .feature-grid.feature-grid--centered-signal .feature-card:nth-child(2) {
    transform: none;
  }
}

@media (max-width: 720px) {
  .service-product-id {
    margin-bottom: 14px;
  }

  .service-hero--editorial .service-hero__copy {
    padding-left: 18px;
  }

  .product-experience,
  .service-hero--wide-console .product-experience,
  .service-hero--centered-signal .product-experience,
  .service-hero--editorial .product-experience,
  .service-hero--stacked .product-experience {
    min-height: 0;
    padding: 12px;
    border-radius: 21px;
  }

  .xp-head {
    align-items: flex-start;
  }

  .xp-signal {
    max-width: 118px;
  }

  .xp-title > strong {
    font-size: 14px;
  }

  .xp-directory,
  .xp-lifecycle,
  .xp-governance {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .xp-directory__core {
    min-height: 160px;
  }

  .xp-directory__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .xp-governance__decision {
    min-height: 190px;
  }

  .xp-governance__foot {
    grid-column: auto;
  }

  .xp-checkout__methods,
  .xp-identity__checks,
  .product-signature__modules {
    grid-template-columns: 1fr;
  }

  .xp-terminal__events {
    grid-template-columns: 1fr;
  }

  .xp-ledger__thead,
  .xp-ledger__row {
    grid-template-columns: 1fr 0.65fr;
  }

  .xp-ledger__thead span:last-child,
  .xp-ledger__row > em {
    display: none;
  }

  .product-signature__brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-signature__brand > span {
    padding-top: 9px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .product-signature__modules article {
    min-height: 140px;
  }

  .feature-grid--stacked .feature-card {
    display: block;
    min-height: 310px;
  }

  .feature-grid--stacked .feature-card__icon {
    margin-bottom: 68px;
  }
}

@media (max-width: 460px) {
  .xp-network {
    min-height: 360px;
  }

  .xp-network__core {
    width: 104px;
    height: 104px;
  }

  .xp-network__core span {
    width: 40px;
    height: 40px;
  }

  .xp-network__core span img {
    width: 34px;
    height: 34px;
  }

  .xp-network__node {
    width: 104px;
    min-height: 62px;
    grid-template-columns: 18px 1fr 7px;
    padding: 8px;
  }

  .xp-network__node--1,
  .xp-network__node--3 {
    left: 7px;
  }

  .xp-network__node--2,
  .xp-network__node--4 {
    right: 7px;
  }

  .xp-directory__grid {
    grid-template-columns: 1fr;
  }

  .xp-checkout__merchant,
  .xp-checkout__summary,
  .xp-identity__evidence,
  .product-signature__system-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .xp-checkout__summary {
    display: grid;
  }

  .xp-governance__rules > div {
    grid-template-columns: 1fr 50px;
  }

  .xp-governance__rules > div > b {
    display: none;
  }

  .product-signature__copy h2 {
    font-size: 35px;
  }
}

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