:root {
  --ink: #050611;
  --muted: #686d7a;
  --paper: #f4f4f4;
  --white: #fff;
  --blue: #2F44FF;
  --navy: #02063a;
  --line: rgba(5, 6, 17, .1);
  --shadow: 0 26px 80px rgba(2, 6, 58, .12);
  --font: Inter, "ABC Diatype", "Helvetica Neue", "Noto Sans SC", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, button, a, p, h1, h2, h3, strong, small, b, span, li { overflow-wrap: anywhere; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 64px;
  padding: 0 clamp(20px, 5vw, 92px);
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(5,6,17,.06);
  backdrop-filter: blur(18px);
}
.brand img { display: block; width: 82px; height: auto; }
.nav-links { display: flex; gap: 26px; justify-content: center; color: rgba(5,6,17,.68); font-size: 13px; font-weight: 720; }
.nav-links a.active, .nav-links a:hover { color: var(--blue); }
.nav-actions { display: flex; justify-content: flex-end; align-items: center; gap: 10px; }
.language-menu { position: relative; }
.language-trigger {
  min-width: 76px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid rgba(5,6,17,.1);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 11px;
  font-weight: 820;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(2,6,58,.04);
}
.language-trigger > svg:first-child { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.35; }
.language-chevron { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 1.5; transition: transform .18s ease; }
.language-trigger[aria-expanded="true"] .language-chevron { transform: rotate(180deg); }
.language-options {
  position: absolute;
  z-index: 50;
  top: calc(100% + 8px);
  right: 0;
  width: 164px;
  padding: 6px;
  border: 1px solid rgba(5,6,17,.09);
  border-radius: 14px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 18px 48px rgba(2,6,58,.14);
}
.language-options[hidden] { display: none; }
.language-options button {
  width: 100%;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 11px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
}
.language-options button:hover { background: #f3f4f7; color: var(--ink); }
.language-options button.active { background: var(--ink); color: #fff; }
.language-options b { font-size: 10px; letter-spacing: .04em; }
.login-button { height: 34px; min-height: 34px; display: inline-flex; align-items: center; justify-content: center; padding: 0 16px; border: 0; border-radius: 999px; background: var(--blue); color: white; font-size: 12px; line-height: 1; font-weight: 800; text-decoration: none; white-space: nowrap; cursor: pointer; }

.view { display: none; }
.view.active { display: block; }
.section { position: relative; padding: clamp(64px, 7vw, 104px) clamp(20px, 7vw, 140px); background: #fff; }
.section-heading { max-width: 620px; margin-bottom: 38px; }
.section-heading.inverted { color: white; }
.eyebrow { margin: 0 0 14px; color: var(--blue); font-size: 12px; font-weight: 820; letter-spacing: 0; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 650px; margin-bottom: 20px; font-size: clamp(42px, 5.4vw, 74px); line-height: .96; letter-spacing: 0; font-weight: 880; }
h2 { max-width: 720px; margin-bottom: 16px; font-size: clamp(30px, 3.6vw, 52px); line-height: 1.02; letter-spacing: 0; font-weight: 860; }
h3 { margin-bottom: 10px; font-size: clamp(20px, 1.65vw, 25px); line-height: 1.12; font-weight: 850; }
.section-heading p, .hero-copy p { max-width: 580px; color: var(--muted); font-size: clamp(15px, 1vw, 16px); line-height: 1.58; }
html[lang="es"] .hero:not(.subhero) h1 { font-size: clamp(40px, 4.55vw, 62px); line-height: .98; }
html[lang="zh-CN"] h1, html[lang="zh-CN"] h2 { line-height: 1.08; }

.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
  padding: clamp(70px, 8vw, 110px) clamp(20px, 7vw, 140px);
  overflow: hidden;
  background: #fff;
}
.subhero { min-height: 560px; }
.hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -20vw;
  width: 48vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(48,72,255,.08);
  pointer-events: none;
}
.hero-copy { position: relative; z-index: 2; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 30px; }
.primary-button { min-height: 44px; padding: 0 22px; border: 0; border-radius: 999px; background: var(--blue); color: white; font-size: 12px; font-weight: 850; cursor: pointer; }
.secondary-link { color: var(--ink); font-size: 12px; font-weight: 820; border-bottom: 1px solid currentColor; }

.brand-mosaic {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  aspect-ratio: 1.18 / 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 0;
}
.brand-mosaic span { display: block; background: var(--blue); }
.brand-mosaic span:nth-child(1) { grid-area: 1 / 1 / 3 / 3; border-radius: 100% 0 0 0; background: conic-gradient(from 90deg, #050611 0 25%, white 0 50%, var(--blue) 0 75%, white 0); }
.brand-mosaic span:nth-child(2) { grid-area: 1 / 3 / 2 / 6; border-radius: 0 999px 999px 0; }
.brand-mosaic span:nth-child(3) { grid-area: 2 / 3 / 4 / 5; background: url("./assets/figma-payment-laptop.jpg") center / cover; }
.brand-mosaic span:nth-child(4) { grid-area: 3 / 1 / 5 / 3; border-radius: 0 0 0 100%; background: conic-gradient(from 180deg, var(--blue) 0 25%, #050611 0 50%, white 0 75%, var(--blue) 0); }
.brand-mosaic span:nth-child(5) { grid-area: 3 / 5 / 5 / 6; border-radius: 999px; }
.brand-mosaic span:nth-child(6) { grid-area: 4 / 3 / 5 / 5; background: #050611; }

.partner-strip { padding: 34px 20px 44px; background: #fff; text-align: center; }
.partner-strip p { margin: 0 0 20px; color: rgba(5,6,17,.42); font-size: 12px; }
.logo-grid {
  width: min(1200px, 100%);
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto;
}
.logo {
  width: 100%;
  min-width: 0;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  overflow: hidden;
  border: 1px solid rgba(5,6,17,.055);
  border-radius: 999px;
  background: #f3f3f4;
}
.logo img { width: 100%; height: 100%; display: block; object-fit: contain; }
.logo:hover { background: #fff; box-shadow: 0 10px 30px rgba(2,6,58,.08); }

.problem-section { padding-top: 82px; }
.issue-switcher { display: grid; grid-template-columns: minmax(340px, .9fr) minmax(480px, 1.1fr); gap: clamp(52px, 8vw, 112px); align-items: center; max-width: 1180px; }
.issue-list { display: grid; gap: 16px; }
.issue-tab { position: relative; min-height: 58px; display: grid; grid-template-columns: 40px 1fr; align-items: center; gap: 12px; padding: 16px 22px; border: 1px solid rgba(5,6,17,.08); border-radius: 18px; background: #fff; box-shadow: 0 16px 50px rgba(2,6,58,0); color: var(--ink); text-align: left; cursor: pointer; transition: .28s ease; }
.issue-tab::after { content: ""; position: absolute; right: -12px; top: 50%; width: 24px; height: 24px; border-top: 1px solid rgba(5,6,17,.08); border-right: 1px solid rgba(5,6,17,.08); background: #fff; opacity: 0; transform: translateY(-50%) rotate(45deg); }
.issue-tab span { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--ink); color: white; font-size: 12px; font-weight: 850; }
.issue-tab strong { font-size: 19px; line-height: 1.15; }
.issue-tab p { grid-column: 2; max-height: 0; margin: 0; overflow: hidden; color: var(--ink); opacity: 0; transition: .28s ease; }
.issue-tab.active { min-height: 176px; padding: 24px; box-shadow: 0 20px 60px rgba(2,6,58,.11); }
.issue-tab.active::after { opacity: 1; }
.issue-tab.active span { background: var(--blue); }
.issue-tab.active strong { color: var(--blue); }
.issue-tab.active p { max-height: 140px; opacity: 1; }
.issue-detail { position: relative; min-height: 430px; }
.issue-panel { position: absolute; inset: 0; display: grid; align-content: center; gap: 20px; opacity: 0; transform: translateX(24px); pointer-events: none; transition: opacity .3s ease, transform .38s ease; }
.issue-panel.active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.issue-panel > span { width: fit-content; padding: 10px 24px; border-radius: 0 999px 0 999px; background: var(--blue); color: white; font-weight: 850; }
.issue-panel p { max-width: 620px; color: var(--muted); font-size: clamp(18px, 1.55vw, 22px); line-height: 1.46; }
.issue-panel small { display: block; width: min(620px, 100%); min-height: 138px; padding: 26px 30px; border-radius: 16px; background: var(--navy); color: white; font-size: clamp(16px, 1.45vw, 22px); line-height: 1.44; box-shadow: 0 24px 70px rgba(2,6,58,.22); }

.globe-section { background: var(--navy); color: white; overflow: hidden; }
.globe-section .section-heading p { color: rgba(255,255,255,.64); }
.coverage-pills { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 48px; }
.coverage-pills button { min-height: 48px; padding: 0 24px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.62); cursor: pointer; }
.coverage-pills button.active, .coverage-pills button:hover { color: white; border-color: rgba(80,103,255,.7); background: rgba(48,72,255,.22); }
.map-stage { position: relative; min-height: 600px; }
.dot-map { position: absolute; inset: 0; opacity: .82; filter: drop-shadow(0 0 28px rgba(48,72,255,.4)); }
.land { position: absolute; display: block; background-image: radial-gradient(circle, #233cff 0 3px, transparent 3.8px); background-size: 16px 16px; background-position: center; opacity: .76; }
.north { left: 6%; top: 16%; width: 34%; height: 35%; clip-path: polygon(0 40%,15% 15%,48% 4%,78% 18%,88% 44%,70% 58%,42% 52%,30% 82%,10% 70%); }
.south { left: 28%; top: 46%; width: 18%; height: 45%; clip-path: polygon(22% 0,74% 8%,86% 28%,66% 52%,58% 100%,28% 76%,8% 42%); }
.europe { left: 47%; top: 22%; width: 14%; height: 15%; clip-path: polygon(6% 28%,34% 0,86% 20%,74% 78%,18% 70%); }
.africa { left: 47%; top: 39%; width: 20%; height: 38%; clip-path: polygon(28% 0,74% 8%,92% 48%,55% 100%,22% 70%,6% 28%); }
.asia { right: 7%; top: 23%; width: 38%; height: 35%; clip-path: polygon(6% 22%,28% 0,62% 6%,100% 34%,78% 68%,44% 72%,20% 52%); }
.australia { right: 10%; bottom: 15%; width: 16%; height: 16%; clip-path: polygon(12% 38%,58% 18%,92% 48%,68% 78%,18% 72%); }
.map-card { position: absolute; left: var(--map-x, 8%); top: var(--map-y, 50%); width: min(360px, 84vw); padding: 22px; border: 1px solid rgba(255,255,255,.32); border-radius: 16px; background: rgba(8,12,52,.72); backdrop-filter: blur(14px); transform: translateY(-50%); transition: left .32s ease, top .32s ease, opacity .24s ease; }
.map-card strong, .map-card small, .map-card b { display: block; }
.map-card strong { margin-bottom: 12px; color: white; font-size: 18px; }
.map-card small { margin-bottom: 14px; color: rgba(255,255,255,.68); font-size: 14px; line-height: 1.45; }
.map-card b { color: #5067ff; font-size: 13px; line-height: 1.45; }

.case-grid, .layer-grid, .corridor-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.corridor-grid article { min-height: 250px; padding: 24px; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: 0 18px 56px rgba(2,6,58,.06); }
.corridor-grid span { display: block; margin-bottom: 28px; color: var(--blue); font-size: 12px; font-weight: 850; }
.corridor-grid p { color: var(--muted); font-size: 14px; line-height: 1.56; }
.product-heading { max-width: 760px; }
.product-heading p + p { margin-top: -6px; }
.architecture-note {
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: -10px 0 34px;
}
.architecture-note p {
  min-height: 112px;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8f8f8;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}
.product-tabs { display: flex; justify-content: center; gap: 8px; margin: 0 0 24px; }
.product-tabs button { min-height: 34px; padding: 0 16px; border: 0; border-radius: 999px; background: transparent; color: rgba(5,6,17,.62); font-size: 12px; font-weight: 820; cursor: pointer; }
.product-tabs button.active { background: var(--blue); color: white; }
.product-showcase { display: grid; grid-template-columns: minmax(330px, .86fr) minmax(520px, 1.14fr); gap: clamp(34px, 6vw, 76px); align-items: start; max-width: 1180px; }
.product-copy-panel { position: relative; min-height: 690px; }
.product-panel { position: absolute; inset: 0; opacity: 0; transform: translateY(14px); pointer-events: none; transition: opacity .28s ease, transform .34s ease; }
.product-panel.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.product-panel span { display: block; margin-bottom: 16px; color: var(--blue); font-size: 12px; font-weight: 850; }
.product-panel h4 {
  margin: -2px 0 16px;
  font-size: 20px;
  line-height: 1.18;
  font-weight: 520;
}
.product-panel h5 {
  margin: 22px 0 12px;
  font-size: 15px;
  line-height: 1.2;
}
.product-panel p, .product-panel li { color: var(--muted); font-size: 13.5px; line-height: 1.56; }
.strategic-line {
  padding: 16px;
  border-radius: 12px;
  background: rgba(48,72,255,.07);
  color: #28305f !important;
}
.product-panel ul { display: grid; gap: 9px; margin: 18px 0 0; padding-left: 18px; }
.product-panel b {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}
.product-visual {
  position: sticky;
  top: 92px;
  min-height: 640px;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 12%, rgba(255,255,255,.9), transparent 28%),
    #eef6ff;
}
.product-screen {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(26px);
  pointer-events: none;
  transition: opacity .3s ease, transform .38s ease;
}
.product-screen.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.checkout-card {
  position: absolute;
  left: 7%;
  top: 10%;
  width: min(520px, 72%);
  min-height: 520px;
  padding: 38px;
  border: 5px solid #e5ecf8;
  border-radius: 34px;
  background: rgba(255,255,255,.74);
  box-shadow: 0 28px 80px rgba(69,96,140,.12);
}
.shot-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 42px;
}
.shot-header i {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--blue);
}
.shot-header strong { font-size: 25px; }
.shot-header span {
  margin-left: auto;
  color: #6b7280;
  font-size: 24px;
}
.balance-card {
  padding: 26px 28px;
  border: 1px solid #dfe9f6;
  border-radius: 12px;
  background: linear-gradient(180deg, #bfe0ff, #fff);
}
.balance-card small { display: block; color: #466386; font-size: 18px; }
.balance-card b { display: block; margin-top: 12px; font-size: 32px; }
.checkout-card h4 { margin: 32px 0 14px; font-size: 22px; }
.coin-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.coin-row span,
.network-select {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  border: 1px solid #dfe9f6;
  border-radius: 12px;
  background: white;
  font-size: 20px;
  font-weight: 760;
}
.coin-row .selected { border-color: #1588f6; box-shadow: inset -34px 0 0 #1588f6; }
.network-select i { width: 28px; height: 28px; border-radius: 50%; background: #f2bf19; }
.network-select em { margin-left: auto; width: 12px; height: 12px; border-right: 3px solid #1588f6; border-bottom: 3px solid #1588f6; transform: rotate(45deg); }
.blue-action {
  min-height: 72px;
  display: grid;
  place-items: center;
  margin-top: 52px;
  border-radius: 12px;
  background: linear-gradient(90deg, #087cf8, #44c7ef);
  color: white;
  font-size: 24px;
  font-weight: 850;
}
.asset-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0;
}
.asset-grid span {
  min-height: 76px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: white;
  color: var(--blue);
  font-size: 22px;
  font-weight: 850;
}
.receipt-card {
  position: absolute;
  right: 5%;
  top: 28%;
  width: min(380px, 44%);
  min-height: 350px;
  padding: 34px;
  border: 5px solid #e5ecf8;
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 24px 70px rgba(69,96,140,.13);
  text-align: center;
}
.receipt-card i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #18bf8f;
  color: white;
  font-style: normal;
  font-size: 28px;
  font-weight: 900;
}
.receipt-card strong { display: block; margin-bottom: 22px; font-size: 20px; }
.receipt-card p { font-size: 22px; font-weight: 850; }
.receipt-card div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid #edf1f6;
  color: var(--muted);
  font-size: 13px;
  text-align: left;
}
.receipt-card div b { color: var(--ink); text-align: right; }
.product-closing {
  max-width: 860px;
  margin-top: 50px;
  padding: 34px;
  border-radius: 18px;
  background: var(--navy);
  color: white;
}
.product-closing h3 { max-width: 780px; color: white; }
.product-closing p { max-width: 720px; margin-bottom: 0; color: rgba(255,255,255,.72); }
.story-orbit { position: relative; min-height: 560px; display: grid; place-items: center; overflow: visible; }
.orbit-ring { position: absolute; width: min(940px, 84vw); height: 320px; border: 1px solid rgba(48,72,255,.18); border-radius: 999px; }
.ring-two { width: min(760px, 68vw); height: 210px; }
.story-avatar { position: absolute; z-index: 6; width: 64px; height: 64px; padding: 0; border: 3px solid white; border-radius: 50%; overflow: hidden; background: white; box-shadow: 0 14px 34px rgba(2,6,58,.18); cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, outline-color .25s ease; }
.story-avatar img { width: 100%; height: 100%; object-fit: cover; }
.story-avatar.active { z-index: 7; outline: 3px solid var(--blue); outline-offset: 3px; transform: scale(1.08); box-shadow: 0 20px 46px rgba(48,72,255,.24); }
.story-avatar:nth-of-type(1) { left: 10%; top: 39%; }
.story-avatar:nth-of-type(2) { right: 15%; top: 31%; }
.story-avatar:nth-of-type(3) { left: 21%; bottom: 22%; }
.story-avatar:nth-of-type(4) { right: 23%; bottom: 25%; }
.orbit-dot {
  position: absolute;
  z-index: 1;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
}
.dot-one { left: 28%; top: 14%; }
.dot-two { right: 10%; top: 35%; background: #ff8b55; }
.dot-three { right: 18%; bottom: 25%; background: #00d0a0; }
.story-card { position: absolute; z-index: 3; width: min(620px, 82vw); min-height: 210px; display: grid; align-content: center; justify-items: center; gap: 10px; padding: 34px 48px; border-radius: 999px; background: rgba(255,255,255,.94); text-align: center; opacity: 0; transform: translateY(14px); pointer-events: none; transition: opacity .28s ease, transform .34s ease; }
.story-card.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.story-card h3 { margin: 0; font-size: 24px; line-height: 1.1; }
.story-card p { max-width: 470px; margin: 16px 0 14px; color: var(--ink); font-size: 18px; font-weight: 760; line-height: 1.38; }
.story-card b { font-size: 14px; color: var(--muted); }
.story-route {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--blue);
  color: white !important;
  font-size: 13px;
  font-weight: 850;
}
.story-dots {
  position: absolute;
  z-index: 8;
  left: 50%;
  bottom: 24px;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}
.story-dots button {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: transparent;
  cursor: pointer;
}
.story-dots button::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 99px;
  background: #d8d8d8;
  transform: translate(-50%, -50%);
  transition: width .2s ease, background-color .2s ease;
}
.story-dots button.active { width: 72px; }
.story-dots button.active::before { width: 62px; background: var(--blue); }
.story-dots button:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }
.corridors-hero {
  min-height: 660px;
  grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
  background: linear-gradient(180deg, #fff 0%, #fafbff 100%);
}
.corridors-hero::after { display: none; }
.corridors-hero h1 { max-width: 610px; }
.corridor-visual {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  min-height: 470px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 34px 90px rgba(2, 6, 58, .2);
}
.corridor-visual-grid {
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, #000, transparent);
}
.corridor-origin {
  position: absolute;
  left: 54px;
  top: 178px;
  display: grid;
  gap: 2px;
}
.corridor-origin i {
  position: absolute;
  left: -8px;
  top: -8px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 0 0 22px rgba(48,72,255,.12), 0 0 0 44px rgba(48,72,255,.06);
}
.corridor-origin strong { position: relative; font-size: 23px; letter-spacing: -.03em; }
.corridor-origin small { position: relative; color: rgba(255,255,255,.55); font-size: 10px; text-transform: uppercase; }
.corridor-route {
  position: absolute;
  left: 215px;
  width: 290px;
  height: 1px;
  border-top: 1px solid rgba(118,135,255,.72);
  transform-origin: left center;
}
.corridor-route::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}
.corridor-route span {
  position: absolute;
  right: 0;
  top: -7px;
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 8px rgba(48,72,255,.2);
}
.corridor-route b {
  position: absolute;
  right: 22px;
  bottom: 13px;
  color: #fff;
  font-size: 12px;
  line-height: 1.15;
  text-align: right;
}
.corridor-route-hk { top: 105px; transform: rotate(-17deg); }
.corridor-route-hk b, .corridor-route-hk span { transform: rotate(17deg); }
.corridor-route-sea { top: 190px; transform: rotate(-3deg); }
.corridor-route-sea b, .corridor-route-sea span { transform: rotate(3deg); }
.corridor-route-me { top: 275px; transform: rotate(10deg); }
.corridor-route-me b, .corridor-route-me span { transform: rotate(-10deg); }
.corridor-route-africa { top: 350px; transform: rotate(20deg); }
.corridor-route-africa b, .corridor-route-africa span { transform: rotate(-20deg); }
.corridor-visual > p {
  position: absolute;
  left: 54px;
  bottom: 34px;
  margin: 0;
  color: rgba(255,255,255,.48);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}
.corridor-matrix-section { background: #fff; }
.corridor-table-wrap {
  max-width: 1180px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(2,6,58,.07);
}
.corridor-table {
  width: 100%;
  min-width: 1480px;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.45;
}
.corridor-table th {
  padding: 18px 16px;
  background: var(--navy);
  color: white;
  font-size: 12px;
  text-align: left;
  font-weight: 850;
}
.corridor-table td {
  padding: 18px 16px;
  border-top: 1px solid rgba(5,6,17,.08);
  color: var(--muted);
  vertical-align: top;
}
.corridor-table td:first-child {
  color: var(--ink);
  font-weight: 850;
}
.corridor-matrix-heading { max-width: 800px; }
.corridor-matrix-heading > p:last-child { max-width: 720px; color: var(--muted); font-size: 16px; line-height: 1.6; }
.corridor-note {
  max-width: 980px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.playbooks-section { background: #f7f8fb; }
.playbook-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1180px;
  border-top: 1px solid rgba(5,6,17,.12);
}
.playbook-grid article {
  min-height: 0;
  display: grid;
  grid-template-columns: 68px 230px minmax(0, 1fr);
  gap: 28px;
  padding: 38px 0 42px;
  border: 0;
  border-bottom: 1px solid rgba(5,6,17,.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.playbook-grid article span {
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--blue);
  font-size: 14px;
  font-weight: 850;
}
.playbook-grid header small { color: var(--muted); font-size: 11px; font-weight: 800; }
.playbook-grid header h3 { margin: 6px 0 0; font-size: 27px; }
.playbook-grid dl { margin: 0; }
.playbook-grid dt {
  margin-top: 16px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}
.playbook-grid dt:first-child { margin-top: 0; }
.playbook-grid dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.controls-section { background: #fff; }
.control-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 980px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.control-list li {
  position: relative;
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 16px 18px 16px 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-size: 15px;
  font-weight: 760;
}
.control-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(47,68,255,.1);
}
.corridor-closing {
  max-width: 980px;
  margin-top: 46px;
  padding: 46px 54px;
  border-radius: 16px;
  background: var(--blue);
  color: white;
}
.corridor-closing h2 { color: white; }
.resources {
  display: block;
  min-height: 520px;
  background: var(--navy);
  color: white;
  overflow: hidden;
}
.resources::after {
  content: "";
  position: absolute;
  right: 13%;
  top: 10%;
  width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(47,68,255,.14);
  box-shadow: 0 0 0 46px rgba(47,68,255,.025), 0 0 0 92px rgba(47,68,255,.018);
}
.resources h2 { max-width: 720px; color: white; }
.resource-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  max-width: 1120px;
  margin-top: 56px;
}
.resource-cards article {
  min-height: 140px;
  padding: 34px 42px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
}
.resource-cards h3 {
  margin-bottom: 8px;
  color: white;
  font-size: 24px;
  line-height: 1.2;
}
.resource-cards p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.42;
}
.final-cta-section {
  padding-top: clamp(72px, 8vw, 112px);
  padding-bottom: clamp(72px, 8vw, 112px);
  background: #fff;
}
.cta-card {
  position: relative;
  width: min(1120px, 100%);
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0 auto;
  padding: 58px 64px;
  border-radius: 16px;
  background: linear-gradient(118deg, #3048ff 0%, #263be9 58%, #2033d6 100%);
  color: white;
  box-shadow: 0 24px 58px rgba(48,72,255,.18);
}
.cta-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -78px;
  width: 310px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255,255,255,.075);
}
.cta-copy { position: relative; z-index: 2; max-width: 760px; }
.cta-card .eyebrow { margin-bottom: 14px; color: rgba(255,255,255,.72); }
.cta-card h2 {
  max-width: 760px;
  margin-bottom: 14px;
  color: white;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.04;
}
.cta-card p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 26px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.55;
}
.cta-card .primary-button {
  position: relative;
  z-index: 2;
  min-width: 132px;
  background: rgba(255,255,255,.14);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16);
}
.cta-mark {
  position: absolute;
  z-index: 1;
  right: 64px;
  bottom: 40px;
  width: 190px;
  color: rgba(255,255,255,.1);
  fill: currentColor;
}

.product-layer {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(520px, 1.18fr);
  gap: clamp(42px, 7vw, 86px);
  align-items: start;
  max-width: 1180px;
  padding: 76px 0;
  border-top: 1px solid var(--line);
}
.product-layer:first-of-type { margin-top: 28px; }
.layer-copy { min-width: 0; }
.layer-index {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}
.layer-copy h3 {
  margin-bottom: 8px;
  font-size: 34px;
  line-height: 1;
}
.layer-copy h4 {
  margin: 0 0 20px;
  font-size: 24px;
  line-height: 1.22;
  font-weight: 520;
}
.layer-copy h5 {
  margin: 30px 0 14px;
  font-size: 16px;
  line-height: 1.2;
}
.layer-copy p,
.layer-copy li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}
.layer-copy ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}
.layer-copy li::marker { color: var(--blue); }
.layer-demo {
  position: relative;
  min-width: 0;
}
.financial-coming-visual {
  min-height: 500px;
  display: grid;
  place-content: center;
  overflow: hidden;
  padding: 54px;
  border-radius: 18px;
  background: linear-gradient(145deg, #02063a 0%, #101c87 56%, #3048ff 100%);
  color: #fff;
  box-shadow: 0 30px 76px rgba(2,6,58,.2);
  text-align: center;
}
.financial-coming-visual::before { display: none; }
.financial-coming-visual > *:not(.coming-grid):not(.coming-orbit):not(.coming-brand) { position: relative; z-index: 2; }
.financial-coming-visual p { margin: 0 0 10px; color: rgba(255,255,255,.62); font-size: 11px; font-weight: 850; letter-spacing: .13em; }
.financial-coming-visual h4 { margin: 0 0 16px; color: #fff; font-size: clamp(42px,5vw,70px); line-height: .95; }
.financial-coming-visual > span { max-width: 460px; color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.55; }
.coming-grid { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.18) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.18) 1px,transparent 1px); background-size: 42px 42px; }
.coming-orbit { position: absolute; inset: 12% -12%; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; transform: rotate(-14deg); }
.coming-orbit-two { inset: 24% -4%; transform: rotate(18deg); }
.coming-brand { position: absolute; right: 7%; bottom: 7%; width: 120px; height: 104px; opacity: .12; }
.coming-brand i { position: absolute; inset: 0 18px 0 0; border: 24px solid #fff; border-right: 0; border-radius: 50% 0 0 50%; }
.coming-brand b { position: absolute; right: 0; top: 32px; width: 40px; height: 40px; background: #fff; transform: rotate(45deg); }
.layer-demo::before {
  content: "";
  position: absolute;
  inset: 54px -4% -8%;
  z-index: 0;
  border-radius: 36px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255,255,255,.85), transparent 30%),
    linear-gradient(135deg, #eef7ff 0%, #f6faff 48%, #edf5ff 100%);
  filter: blur(.2px);
}
.layer-tabs {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.layer-tabs button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 820;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}
.layer-tabs button.active {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
  box-shadow: 0 12px 28px rgba(47,68,255,.18);
}
.layer-tabs button:active { transform: translateY(1px); }
.layer-shot {
  position: relative;
  z-index: 1;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: transparent;
  box-shadow: 0 34px 90px rgba(32,58,112,.16);
  opacity: 0;
  transform: translateY(10px);
}
.layer-shot.active {
  display: flex;
  animation: productShotIn .34s ease both;
}
.layer-shot img {
  width: 112%;
  height: 112%;
  object-fit: cover;
  object-position: top center;
  transform: translateY(-3%) scale(1.02);
  filter: saturate(1.03) contrast(1.01);
}
#payment-crypto-fiat img,
#payment-fiat-crypto img {
  width: 122%;
  height: 122%;
  transform: translateY(-7%) scale(1.04);
}
@keyframes productShotIn {
  to { opacity: 1; transform: translateY(0); }
}
.product-closing {
  max-width: 1120px;
  margin-top: 28px;
  padding: 54px 60px;
  border-radius: 16px;
  background: var(--navy);
  color: white;
}
.product-closing h3 { max-width: 860px; color: white; }
.product-closing p { max-width: 720px; margin-bottom: 0; color: rgba(255,255,255,.72); }

.footer { display: grid; grid-template-columns: repeat(2, minmax(220px, 1fr)); gap: clamp(80px, 14vw, 220px); padding: 70px max(clamp(28px, 7.5vw, 120px), calc((100vw - 1100px) / 2)); color: var(--muted); background: #fff; border-top: 1px solid rgba(5,6,17,.06); }
.footer-column { display: grid; gap: 22px; align-content: start; }
.footer-column h3 { margin: 0 0 4px; color: var(--ink); font-size: 28px; }
.footer-column a { width: fit-content; color: #747b8d; font-size: 28px; line-height: 1.1; font-weight: 760; }
.footer-column a:hover { color: var(--blue); }

.modal { position: fixed; inset: 0; z-index: 50; display: none; }
.modal.open { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(5,6,17,.58); backdrop-filter: blur(8px); }
.modal-card { position: relative; z-index: 1; width: min(460px, calc(100vw - 32px)); margin: 9vh auto; padding: 30px; border-radius: 18px; background: white; box-shadow: 0 30px 90px rgba(0,0,0,.26); }
.close-button { position: absolute; right: 14px; top: 14px; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; background: white; cursor: pointer; }
label { display: grid; gap: 8px; margin-top: 16px; color: var(--muted); }
input, select { width: 100%; min-height: 44px; padding: 0 12px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.modal-card .primary-button { width: 100%; margin-top: 20px; }

@media (max-width: 960px) {
  .topbar { grid-template-columns: 1fr auto; gap: 10px; padding: 12px 20px; }
  .nav-links { grid-column: 1 / -1; justify-content: flex-start; overflow-x: auto; order: 3; }
  .hero, .issue-switcher, .product-layer { grid-template-columns: 1fr; }
  .corridors-hero { grid-template-columns: 1fr; }
  .corridor-visual { max-width: 620px; }
  .brand-mosaic { max-width: 420px; }
  .case-grid, .layer-grid, .corridor-grid { grid-template-columns: 1fr; }
  .layer-grid article:nth-child(2) { transform: none; }
  .issue-tab::after { display: none; }
  .resource-cards { grid-template-columns: 1fr; }
  .product-layer { gap: 26px; padding: 54px 0; }
  .control-list { grid-template-columns: 1fr; }
  .playbook-grid article { grid-template-columns: 50px 180px minmax(0, 1fr); gap: 20px; }
}
@media (max-width: 640px) {
  .section { padding: 58px 18px; }
  .login-button { display: none; }
  h1 { font-size: clamp(34px, 11vw, 48px); line-height: 1; }
  h2 { font-size: clamp(27px, 8.8vw, 38px); line-height: 1.05; }
  h3 { font-size: 20px; }
  .hero { min-height: auto; padding: 58px 18px; }
  .issue-tab { padding: 14px 16px; grid-template-columns: 34px 1fr; }
  .issue-tab.active { min-height: 210px; }
  .issue-tab strong { font-size: 16px; }
  .issue-tab p { font-size: 13px; }
  .issue-detail { min-height: 470px; }
  .issue-panel p { font-size: 17px; }
  .issue-panel small { padding: 22px; font-size: 16px; }
  .map-stage { min-height: 460px; }
  .map-card { left: 18px !important; right: 18px; top: auto !important; bottom: 18px; width: auto; transform: none; }
  .coverage-pills { gap: 10px; }
  .coverage-pills button { max-width: 100%; min-height: 40px; padding: 0 14px; font-size: 12px; }
  .story-orbit { min-height: 560px; }
  .story-card { border-radius: 26px; padding: 22px; }
  .story-avatar:nth-of-type(1) { left: 4%; top: 12%; }
  .story-avatar:nth-of-type(2) { right: 6%; top: 18%; }
  .story-avatar:nth-of-type(3) { left: 8%; bottom: 14%; }
  .story-avatar:nth-of-type(4) { right: 10%; bottom: 12%; }
  .metric-row, .route-lane { grid-template-columns: 1fr; }
  .route-lane em { display: none; }
  .architecture-note { grid-template-columns: 1fr; }
  .layer-copy h3 { font-size: 28px; }
  .layer-copy h4 { font-size: 20px; }
  .layer-copy p, .layer-copy li { font-size: 14px; }
  .layer-tabs { justify-content: flex-start; }
  .layer-tabs button { min-height: 38px; padding: 0 16px; font-size: 12px; }
  .layer-shot { border-radius: 14px; }
  .resource-cards article { padding: 24px; }
  .cta-card { min-height: 360px; padding: 38px 28px; }
  .cta-mark { right: -12px; bottom: 26px; width: 170px; }
  .footer span { width: 100%; }
  .footer { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 28px; }
  .footer-column h3, .footer-column a { font-size: 22px; }
  .corridor-visual { min-height: 390px; border-radius: 20px; transform: scale(.92); transform-origin: left top; width: 109%; margin-bottom: -32px; }
  .playbook-grid article { grid-template-columns: 42px 1fr; gap: 14px; }
  .playbook-grid article header { grid-column: 2; }
  .playbook-grid article dl { grid-column: 2; }
}

/* Resources, engagement flow, and original-site footer */
.secondary-button {
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(5,6,17,.16);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}
.docs-hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
  padding: 90px clamp(20px, 7vw, 140px);
  background: #f7f8fb;
}
.docs-hero > div:first-child > p:not(.eyebrow) { max-width: 590px; color: var(--muted); font-size: 17px; line-height: 1.6; }
.docs-hero-panel {
  position: relative;
  min-height: 390px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-content: start;
  overflow: hidden;
  border-radius: 26px;
  background: var(--navy);
  box-shadow: 0 30px 90px rgba(2,6,58,.18);
}
.docs-hero-panel > span { padding: 22px 8px; border-right: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.68); font-size: 11px; font-weight: 850; text-align: center; }
.docs-hero-panel > span:nth-child(2) { background: #c88b0a; color: #fff; }
.docs-hero-panel > span:nth-child(3) { background: #39a49a; color: #fff; }
.docs-hero-panel i { position: absolute; left: 10%; right: 10%; top: 52%; height: 1px; background: linear-gradient(90deg, #3048ff, #c88b0a, #39a49a); }
.docs-hero-panel i::before, .docs-hero-panel i::after { content: ""; position: absolute; top: -6px; width: 13px; height: 13px; border: 3px solid #fff; border-radius: 50%; background: var(--blue); }
.docs-hero-panel i::after { right: 0; background: #39a49a; }
.docs-hero-panel strong { position: absolute; left: 10%; bottom: 40px; color: #fff; font-size: clamp(24px, 2.5vw, 36px); line-height: 1.05; letter-spacing: -.03em; }
.docs-quickstart { background: #fff; }
.quickstart-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; max-width: 1180px; }
.quickstart-grid > * {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.quickstart-grid > *:hover { border-color: rgba(48,72,255,.45); box-shadow: 0 18px 45px rgba(2,6,58,.08); transform: translateY(-3px); }
.quickstart-grid span { color: var(--blue); font-size: 12px; font-weight: 850; }
.quickstart-grid h3 { margin-top: 44px; font-size: 22px; }
.quickstart-grid p { color: var(--muted); font-size: 14px; }
.quickstart-grid b { margin-top: auto; color: var(--blue); font-size: 12px; }
.docs-shell { display: grid; grid-template-columns: 240px minmax(0, 820px); gap: 70px; justify-content: center; padding: 80px clamp(20px, 7vw, 140px) 120px; background: #f7f8fb; }
.docs-sidebar { position: sticky; top: 100px; height: fit-content; display: grid; gap: 12px; padding: 24px 0; border-right: 1px solid rgba(5,6,17,.1); }
.docs-sidebar p { margin: 20px 0 2px; color: var(--ink); font-size: 11px; font-weight: 880; letter-spacing: .1em; }
.docs-sidebar p:first-child { margin-top: 0; }
.docs-sidebar a, .docs-sidebar span { padding-right: 20px; color: var(--muted); font-size: 13px; }
.docs-sidebar a:hover { color: var(--blue); }
.docs-sidebar span { display: grid; gap: 3px; }
.docs-sidebar > button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 20px 0 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  text-align: left;
  cursor: pointer;
}
.docs-sidebar > button:hover { color: var(--blue); }
.docs-sidebar > button span { padding: 0; color: inherit; }
.docs-sidebar em { color: #a4a8b3; font-size: 9px; font-style: normal; font-weight: 850; text-transform: uppercase; }
.docs-content { min-width: 0; }
.docs-intro { padding-bottom: 50px; border-bottom: 1px solid rgba(5,6,17,.1); }
.docs-intro h2 { max-width: 760px; }
.docs-intro > p:last-child { max-width: 730px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.phase-strip { display: grid; grid-template-columns: repeat(4,1fr); margin: 42px 0 74px; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.phase-strip span { min-height: 96px; display: flex; flex-direction: column; gap: 8px; justify-content: center; padding: 16px; border-right: 1px solid var(--line); color: var(--muted); font-size: 11px; line-height: 1.35; }
.phase-strip span:last-child { border-right: 0; }
.phase-strip b { color: var(--ink); font-size: 13px; text-transform: uppercase; }
.phase-strip i, .readiness-grid i, .docs-sidebar > span > i { color: inherit; font-size: inherit; font-style: normal; line-height: inherit; }
.docs-chapter { padding: 0 0 70px; scroll-margin-top: 90px; }
.docs-chapter > small { color: #c58a0b; font-size: 11px; font-weight: 880; letter-spacing: .08em; }
.docs-chapter > h3 { margin: 8px 0 28px; font-size: 32px; }
.docs-step { display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 26px 0; border-top: 1px solid var(--line); }
.docs-step > b, .activation-list > div > b { color: var(--blue); font-size: 13px; }
.docs-step h4, .activation-list h4, .path-comparison h4 { margin: 0 0 8px; color: var(--ink); font-size: 18px; }
.docs-step p, .activation-list p, .path-comparison p { margin: 0; color: var(--muted); line-height: 1.62; }
.docs-step aside { margin-top: 14px; padding: 15px 18px; border-left: 3px solid var(--blue); background: rgba(48,72,255,.05); color: var(--ink); font-size: 13px; }
.path-comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.path-comparison > div { padding: 28px; border-radius: 14px; background: #fff; border: 1px solid var(--line); }
.path-comparison > div:first-child { border-top: 4px solid #c88b0a; }
.path-comparison > div:last-child { border-top: 4px solid #39a49a; }
.path-comparison span { display: block; margin-bottom: 24px; color: var(--muted); font-size: 10px; font-weight: 880; }
.docs-note { margin-top: 14px; color: var(--muted); font-size: 12px; }
.activation-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.activation-list > div { display: grid; grid-template-columns: 48px minmax(190px,.7fr) 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.activation-list > div h4, .activation-list > div p { margin: 0; }
.activation-list.two-up { grid-template-columns: 1fr 1fr; gap: 14px; border: 0; }
.activation-list.two-up > div { display: block; padding: 26px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.activation-list.two-up h4 { margin: 20px 0 10px; }
.readiness-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.readiness-grid span { min-height: 120px; display: flex; flex-direction: column; gap: 8px; padding: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.readiness-grid b { color: var(--ink); font-size: 13px; text-transform: uppercase; }
.developer-coming { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; padding: 44px; border-radius: 18px; background: var(--navy); color: #fff; }
.developer-coming h3 { color: #fff; font-size: 30px; }
.developer-coming p:not(.eyebrow) { max-width: 580px; color: rgba(255,255,255,.65); }
.developer-coming > span { padding: 10px 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: rgba(255,255,255,.7); font-size: 10px; font-weight: 850; }

.site-footer { padding: 72px clamp(24px,7vw,120px) 32px; background: #fff; border-top: 1px solid rgba(5,6,17,.08); }
.footer-main { display: grid; grid-template-columns: minmax(300px,1.7fr) repeat(3,minmax(120px,.55fr)); gap: clamp(30px,6vw,90px); max-width: 1200px; margin: 0 auto; }
.footer-brand img { width: 118px; }
.footer-brand p { max-width: 370px; margin-top: 26px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.footer-links { display: grid; gap: 15px; align-content: start; }
.footer-links h3 { margin-bottom: 8px; font-size: 15px; }
.footer-links a, .footer-links button { width: fit-content; padding: 0; border: 0; background: transparent; color: var(--muted); font-size: 14px; cursor: pointer; }
.footer-links a:hover, .footer-links button:hover { color: var(--blue); }
.footer-bottom { max-width: 1200px; display: grid; grid-template-columns: auto minmax(0,650px); gap: 30px; justify-content: space-between; margin: 58px auto 0; padding-top: 24px; border-top: 1px solid var(--line); color: #9296a2; font-size: 11px; }
.footer-bottom p { margin: 0; text-align: right; }

.engagement-modal.open { display: block; }
.engagement-card { position: relative; z-index: 1; width: min(1180px,calc(100vw - 36px)); height: min(820px,calc(100vh - 36px)); display: grid; grid-template-columns: 390px 1fr; margin: 18px auto; overflow: hidden; border-radius: 22px; background: #fff; box-shadow: 0 30px 100px rgba(0,0,0,.3); }
.engagement-card .close-button { z-index: 3; }
.engagement-intro { padding: 46px 36px; background: #f6f7fb; border-right: 1px solid var(--line); }
.engagement-intro > img { width: 110px; margin-bottom: 58px; }
.engagement-intro h2 { font-size: 38px; }
.engagement-intro > p:not(.eyebrow) { color: var(--muted); line-height: 1.6; }
.engagement-tabs { display: grid; gap: 10px; margin-top: 28px; }
.engagement-tabs button { display: grid; grid-template-columns: 36px 1fr; gap: 3px 8px; padding: 18px; border: 1px solid var(--line); border-radius: 12px; background: #fff; color: var(--ink); text-align: left; cursor: pointer; }
.engagement-tabs button.active { border-color: var(--blue); box-shadow: inset 3px 0 0 var(--blue); }
.engagement-tabs span { grid-row: 1 / 3; color: var(--blue); font-size: 11px; font-weight: 850; }
.engagement-tabs b { font-size: 14px; }
.engagement-tabs small { color: var(--muted); }
.engagement-note { margin-top: 26px; font-size: 11px; }
.engagement-embed { min-width: 0; height: 100%; background: #fff; }
.engagement-panel { display: none; height: 100%; padding: 32px; }
.engagement-panel.active { display: flex; flex-direction: column; }
.embed-heading { padding-right: 40px; }
.embed-heading > span { color: var(--blue); font-size: 10px; font-weight: 850; }
.embed-heading h3 { margin: 5px 0; }
.embed-heading p { margin-bottom: 16px; color: var(--muted); font-size: 12px; }
.engagement-panel iframe { width: 100%; flex: 1; min-height: 560px; border: 0; }
body.modal-open { overflow: hidden; }
.coming-soon-popup { position: fixed; inset: 0; z-index: 90; display: none; padding: 24px; }
.coming-soon-popup.open { display: grid; place-items: center; }
.coming-soon-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(5,6,17,.55); backdrop-filter: blur(8px); cursor: pointer; }
.coming-soon-popup > section { position: relative; z-index: 1; width: min(520px,100%); padding: 46px; overflow: hidden; border-radius: 20px; background: #fff; box-shadow: 0 34px 100px rgba(2,6,58,.26); }
.coming-soon-popup > section::after { content: ""; position: absolute; right: -70px; bottom: -90px; width: 220px; aspect-ratio: 1; border-radius: 50%; background: rgba(48,72,255,.08); pointer-events: none; }
.coming-soon-popup section > span { color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.coming-soon-popup h2 { margin: 12px 0 14px; font-size: 42px; }
.coming-soon-popup p { max-width: 400px; margin-bottom: 28px; color: var(--muted); font-size: 15px; line-height: 1.6; }
.coming-soon-popup .primary-button { position: relative; z-index: 2; }

@media (max-width: 960px) {
  .docs-hero { grid-template-columns: 1fr; }
  .quickstart-grid { grid-template-columns: repeat(2,1fr); }
  .docs-shell { grid-template-columns: 190px minmax(0,1fr); gap: 34px; }
  .footer-main { grid-template-columns: 1.5fr repeat(3,1fr); gap: 28px; }
  .engagement-card { grid-template-columns: 320px 1fr; }
}
@media (max-width: 700px) {
  .docs-hero { min-height: auto; padding: 64px 20px; }
  .docs-hero-panel { min-height: 320px; }
  .quickstart-grid { grid-template-columns: 1fr; }
  .docs-shell { display: block; padding: 54px 20px 80px; }
  .docs-sidebar { position: static; display: none; }
  .phase-strip, .path-comparison, .readiness-grid { grid-template-columns: 1fr; }
  .phase-strip span { border-right: 0; border-bottom: 1px solid var(--line); }
  .activation-list > div { grid-template-columns: 42px 1fr; }
  .activation-list > div p { grid-column: 2; }
  .activation-list.two-up { grid-template-columns: 1fr; }
  .developer-coming { grid-template-columns: 1fr; padding: 30px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom p { text-align: left; }
  .engagement-card { height: calc(100vh - 20px); grid-template-columns: 1fr; grid-template-rows: auto 1fr; margin: 10px; overflow-y: auto; }
  .engagement-intro { padding: 30px 22px 20px; }
  .engagement-intro > img { margin-bottom: 26px; }
  .engagement-intro h2 { font-size: 30px; }
  .engagement-tabs { grid-template-columns: 1fr 1fr; }
  .engagement-tabs button { grid-template-columns: 1fr; }
  .engagement-tabs span { grid-row: auto; }
  .engagement-tabs small, .engagement-note { display: none; }
  .engagement-panel { padding: 22px; min-height: 650px; }
}

/* Product screenshot framing: crop Portal chrome and blend UI into the page */
.product-section .product-layer {
  grid-template-columns: minmax(300px, .72fr) minmax(560px, 1.28fr);
  gap: clamp(38px, 5vw, 68px);
  max-width: 1260px;
}
.product-section .layer-tabs {
  justify-content: flex-start;
  margin-bottom: 18px;
  padding-left: 8px;
}
.product-section .layer-demo::before {
  inset: 42px -5% -7%;
  border-radius: 44px;
  background:
    radial-gradient(circle at 78% 12%, rgba(255,255,255,.94), transparent 34%),
    linear-gradient(145deg, #f0f5ff 0%, #f8faff 52%, #eef4ff 100%);
  filter: blur(10px);
}
.product-section .layer-shot {
  --product-shot-surface: #eef1f6;
  aspect-ratio: 10 / 7;
  overflow: hidden;
  border: 1px solid rgba(101,113,144,.12);
  border-radius: 24px;
  background: var(--product-shot-surface);
  box-shadow:
    0 36px 80px rgba(29,45,93,.15),
    0 12px 30px rgba(29,45,93,.09);
  isolation: isolate;
}
.product-section .layer-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(219,227,241,.12);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.product-section .layer-shot::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 3;
  border-radius: inherit;
  box-shadow:
    inset 0 0 28px rgba(238,241,246,.94),
    inset 0 0 8px rgba(238,241,246,.78);
  pointer-events: none;
}
.product-section .layer-shot img {
  position: absolute;
  left: 0;
  top: 0;
  width: 121.6%;
  height: auto;
  max-width: none;
  object-fit: initial;
  object-position: initial;
  transform: translate(-17.7%, -7.5%);
  filter: saturate(.9) contrast(.95) brightness(1.02);
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,.86) 0%, #000 3.5%, #000 96.5%, rgba(0,0,0,.86) 100%);
  mask-image: linear-gradient(90deg, rgba(0,0,0,.86) 0%, #000 3.5%, #000 96.5%, rgba(0,0,0,.86) 100%);
}
#account-payin img,
#account-payout img,
#payment-collection img,
#financial-liquidity img {
  transform: translate(-17.7%, -7.5%);
}
#payment-crypto-fiat img,
#payment-fiat-crypto img {
  width: 117.8%;
  height: auto;
  transform: translate(-15.1%, -3.8%);
}
#payment-crypto-fiat.supplied-payment-shot img,
#payment-fiat-crypto.supplied-payment-shot img,
#payment-fiat-fiat.supplied-payment-shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: none;
  filter: saturate(.9) contrast(.95) brightness(1.02);
}
#payment-fiat-crypto.supplied-payment-wide img {
  object-fit: contain;
  background: var(--product-shot-surface);
}
#account-payin.popup-centered-shot img,
#account-payout.popup-centered-shot img,
#payment-collection.popup-centered-shot img,
#payment-crypto-fiat.popup-centered-shot img,
#payment-fiat-fiat.popup-centered-shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  transform: none;
  filter: saturate(.9) contrast(.95) brightness(1.02);
}
#financial-fx img {
  transform: translate(-17.7%, -7.5%);
}
#financial-treasury img {
  transform: translate(-17.7%, -7.5%);
}
@media (max-width: 960px) {
  .product-section .product-layer { grid-template-columns: 1fr; }
  .product-section .layer-demo { max-width: 820px; }
}
@media (max-width: 640px) {
  .product-section .layer-shot { border-radius: 16px; }
  .product-section .layer-shot::after { box-shadow: inset 0 0 16px rgba(247,248,251,.9); }
}

/* Start with Consenso: use the same blue, navy, white, and soft-gray system as the main site */
.resources-page {
  background: #fff;
}
.resources-page .docs-hero {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.resources-page .docs-hero::after {
  content: "";
  position: absolute;
  right: -14vw;
  bottom: -22vw;
  width: 48vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(48,72,255,.07);
  pointer-events: none;
}
.resources-page .docs-hero > * {
  position: relative;
  z-index: 1;
}
.resources-page .secondary-button {
  border-color: rgba(48,72,255,.22);
  color: var(--blue);
  box-shadow: 0 8px 24px rgba(2,6,58,.06);
}
.resources-page .docs-hero-panel {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: linear-gradient(145deg, var(--navy) 0%, #101c87 58%, var(--blue) 100%);
  box-shadow: 0 34px 90px rgba(2,6,58,.2);
}
.resources-page .docs-hero-panel > span {
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.72);
}
.resources-page .docs-hero-panel > span:nth-child(2) {
  background: rgba(48,72,255,.54);
  color: #fff;
}
.resources-page .docs-hero-panel > span:nth-child(3) {
  background: rgba(255,255,255,.1);
  color: #fff;
}
.resources-page .docs-hero-panel i {
  background: linear-gradient(90deg, rgba(255,255,255,.28), #fff, rgba(255,255,255,.28));
}
.resources-page .docs-hero-panel i::before,
.resources-page .docs-hero-panel i::after {
  background: var(--blue);
}
.resources-page .docs-shell {
  align-items: start;
  background: #f7f8fb;
}
.resources-page .docs-sidebar {
  padding: 24px;
  border: 1px solid rgba(5,6,17,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 20px 56px rgba(2,6,58,.08);
}
.resources-page .docs-sidebar a,
.resources-page .docs-sidebar span,
.resources-page .docs-sidebar > button {
  padding-right: 0;
}
.resources-page .docs-sidebar a:hover,
.resources-page .docs-sidebar > button:hover {
  color: var(--blue);
}
.resources-page .docs-content {
  padding: clamp(30px,4vw,48px);
  border: 1px solid rgba(5,6,17,.07);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(2,6,58,.07);
}
.resources-page .phase-strip {
  border-color: rgba(48,72,255,.14);
  background: #f7f8ff;
}
.resources-page .phase-strip span {
  position: relative;
  border-color: rgba(48,72,255,.11);
}
.resources-page .phase-strip span::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  width: 38px;
  height: 3px;
  border-radius: 0 0 99px 99px;
  background: var(--blue);
}
.resources-page .docs-chapter > small,
.resources-page .path-comparison span {
  color: var(--blue);
}
.resources-page .path-comparison > div {
  border-color: rgba(48,72,255,.12);
  background: #f8f9ff;
  box-shadow: 0 12px 34px rgba(2,6,58,.05);
}
.resources-page .path-comparison > div:first-child {
  border-top-color: var(--blue);
}
.resources-page .path-comparison > div:last-child {
  border-top-color: #8290ff;
}
.resources-page .activation-list.two-up > div {
  border-color: rgba(48,72,255,.12);
  background: #f8f9ff;
}
.resources-page .readiness-grid {
  border-color: rgba(48,72,255,.12);
  background: #f8f9ff;
}
.resources-page .readiness-grid span {
  border-color: rgba(48,72,255,.1);
}
.resources-page .developer-coming {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, var(--navy), #101c87 62%, var(--blue));
  box-shadow: 0 28px 76px rgba(2,6,58,.18);
}
@media (max-width: 720px) {
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .story-orbit { overflow: hidden; }
  .resources-page .docs-content { padding: 26px 20px; border-radius: 18px; }
}

/* 2026-07 design adjustment pack */
.brand img {
  width: 104px;
}

.home-hero-title em {
  display: inline;
  color: var(--blue);
  font-style: normal;
}

.hero-design-asset {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100%, 560px);
  height: auto;
  justify-self: end;
}

.hero:not(.subhero)::after,
.product-hero::after,
.corridors-hero::after {
  display: none;
}

.logo {
  border: 0;
  background: transparent;
}

.logo:hover {
  background: transparent;
  box-shadow: none;
}

.issue-switcher {
  gap: 55px;
}

.issue-list,
.issue-panel {
  gap: 18px;
}

.issue-tab {
  column-gap: 18px;
}

.issue-tab:not(.active) {
  align-items: center;
}

.issue-tab.active {
  row-gap: 18px;
}

.issue-panel > span {
  border-radius: 0 30px 0 30px;
}

.map-design-asset {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  filter: none;
}

.story-orbit {
  min-height: clamp(440px, 44vw, 560px);
  background: none;
}

.story-orbit.case-art-ready {
  background: url("./assets/design/operating-cases.svg?v=portrait-cleanup-1") center / contain no-repeat;
}

.story-orbit .orbit-ring,
.story-orbit .orbit-dot {
  visibility: hidden;
  pointer-events: none;
}

.story-orbit .story-avatar,
.orbit-profile {
  position: absolute;
  z-index: 6;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 22px rgba(2,6,58,.15);
  transform: translate(-50%, -50%);
}

.story-orbit .story-avatar {
  visibility: visible;
  pointer-events: auto;
}

.story-orbit .story-avatar img,
.orbit-profile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.story-avatar:nth-of-type(1) { left: 2.75%; top: 36.2%; width: 61px; height: 61px; }
.story-avatar:nth-of-type(2) { left: 81.2%; top: 15.4%; width: 48px; height: 48px; }
.story-avatar:nth-of-type(3) { left: 13.2%; top: 73.6%; width: 50px; height: 50px; }
.story-avatar:nth-of-type(4) { left: 86.6%; top: 51.9%; width: 36px; height: 36px; }
.story-avatar.active { transform: translate(-50%, -50%) scale(1.08); }

.orbit-profile-five { left: 17%; top: 19.7%; width: 28px; height: 28px; }
.orbit-profile-six { left: 93.5%; top: 84.7%; width: 45px; height: 45px; }

.story-card {
  width: min(620px, 74vw);
  min-height: 220px;
  box-shadow: none;
}

.story-card .story-route {
  border-radius: 0 30px 0 30px;
}

.cta-card {
  border-radius: 30px;
  background: #2F44FF url("./assets/design/request-access.svg") center / cover no-repeat;
  box-shadow: none;
}

.cta-card::after,
.cta-mark {
  display: none;
}

.cta-card .primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.42);
}

.product-hero h1,
.corridors-hero h1,
.resources-page .docs-hero h1 {
  font-size: 56px;
}

.product-section .layer-demo::before,
.product-section .layer-shot::before,
.product-section .layer-shot::after {
  display: none;
}

.product-section .layer-shot {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-section .layer-shot img,
#payment-crypto-fiat.supplied-payment-shot img,
#payment-fiat-crypto.supplied-payment-shot img,
#payment-fiat-fiat.supplied-payment-shot img,
#account-payin.popup-centered-shot img,
#account-payout.popup-centered-shot img,
#payment-collection.popup-centered-shot img,
#payment-crypto-fiat.popup-centered-shot img,
#payment-fiat-fiat.popup-centered-shot img {
  filter: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.product-closing {
  width: 100%;
  max-width: 1260px;
  border-radius: 18px;
}

.corridor-design-asset,
.resources-design-asset {
  width: min(100%, 520px);
}

.corridor-table-wrap {
  width: 100%;
  max-width: none;
}

.corridor-table th:first-child,
.corridor-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  min-width: 190px;
  padding-left: 50px;
  background: #fff;
  box-shadow: 10px 0 18px rgba(2,6,58,.055);
}

.corridor-table th:first-child {
  z-index: 3;
  background: var(--navy);
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 960px) {
  .hero-design-asset {
    justify-self: start;
    width: min(100%, 520px);
  }
}

/* Corridor profiles — visual route dossiers */
.corridor-cards {
  grid-template-columns: 1fr;
  gap: 22px;
}

.corridor-card,
.corridor-card-featured {
  display: grid;
  grid-template-columns: minmax(250px, .32fr) minmax(0, 1fr);
  gap: 0 34px;
  padding: 32px;
}

.corridor-card {
  background: #fff;
  box-shadow: 0 18px 48px rgba(2, 6, 58, .055);
}

.corridor-card:nth-child(2n + 1):not(.corridor-card-featured) {
  background: #fbfcff;
}

.corridor-card header {
  grid-column: 1 / -1;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(5, 6, 17, .08);
}

.corridor-card-featured header {
  border-color: rgba(255, 255, 255, .13);
}

.matrix-route-visual {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 214px;
  margin-top: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 27px;
  border: 1px solid rgba(47, 68, 255, .1);
  background: #f2f4ff;
}

.matrix-route-visual::before,
.matrix-route-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.matrix-route-visual::before {
  top: -62px;
  right: -62px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(47, 68, 255, .12);
}

.matrix-route-visual::after {
  right: 22px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border-radius: 48px 0 0;
  background: rgba(47, 68, 255, .1);
}

.matrix-route-visual > div {
  display: grid;
  grid-template-columns: auto minmax(50px, 1fr) auto;
  align-items: center;
  gap: 13px;
}

.matrix-route-visual > div span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 880;
  letter-spacing: .05em;
}

.matrix-route-visual > div i {
  position: relative;
  height: 1px;
  background: rgba(47, 68, 255, .35);
}

.matrix-route-visual > div i::before,
.matrix-route-visual > div i::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: #f2f4ff;
  transform: translateY(-50%);
}

.matrix-route-visual > div i::before {
  left: 0;
}

.matrix-route-visual > div i::after {
  right: 0;
  background: var(--blue);
}

.matrix-route-visual p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(47, 68, 255, .12);
}

.matrix-route-visual p b,
.matrix-route-visual p small {
  display: block;
}

.matrix-route-visual p b {
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.matrix-route-visual p small {
  max-width: 240px;
  color: #606678;
  font-size: 12px;
  line-height: 1.5;
}

.corridor-card-featured .matrix-route-visual {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .075);
}

.corridor-card-featured .matrix-route-visual::before {
  background: rgba(118, 133, 255, .16);
}

.corridor-card-featured .matrix-route-visual::after {
  background: rgba(255, 255, 255, .1);
}

.corridor-card-featured .matrix-route-visual > div span {
  color: #fff;
}

.corridor-card-featured .matrix-route-visual > div i {
  background: rgba(158, 171, 255, .55);
}

.corridor-card-featured .matrix-route-visual > div i::before,
.corridor-card-featured .matrix-route-visual > div i::after {
  border-color: #9eabff;
  background: #111b68;
}

.corridor-card-featured .matrix-route-visual > div i::after {
  background: #9eabff;
}

.corridor-card-featured .matrix-route-visual p {
  border-color: rgba(255, 255, 255, .13);
}

.corridor-card-featured .matrix-route-visual p b {
  color: #aeb8ff;
}

.corridor-card-featured .matrix-route-visual p small {
  color: rgba(255, 255, 255, .72);
}

.corridor-card dl,
.corridor-card-featured dl {
  grid-column: 2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
  gap: 0 24px;
  padding-top: 28px;
}

.corridor-card dl > div {
  padding: 0 0 20px;
  border-top: 0;
}

.corridor-card dl > div:nth-child(n + 4) {
  padding-top: 20px;
  border-top: 1px solid rgba(5, 6, 17, .075);
}

.corridor-card-featured dl > div:nth-child(n + 4) {
  border-color: rgba(255, 255, 255, .13);
}

@media (max-width: 1100px) {
  .corridor-card dl,
  .corridor-card-featured dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .corridor-card dl > div:nth-child(3) {
    padding-top: 20px;
    border-top: 1px solid rgba(5, 6, 17, .075);
  }

  .corridor-card-featured dl > div:nth-child(3) {
    border-color: rgba(255, 255, 255, .13);
  }
}

@media (max-width: 760px) {
  .corridor-card,
  .corridor-card-featured {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 24px;
  }

  .matrix-route-visual {
    min-height: 190px;
    margin-top: 24px;
    padding: 22px;
  }

  .corridor-card dl,
  .corridor-card-featured dl {
    grid-column: 1;
    grid-template-columns: 1fr;
    padding-top: 25px;
  }

  .corridor-card dl > div,
  .corridor-card dl > div:nth-child(n + 3) {
    padding: 18px 0;
    border-top: 1px solid rgba(5, 6, 17, .075);
  }

  .corridor-card-featured dl > div,
  .corridor-card-featured dl > div:nth-child(n + 3) {
    border-color: rgba(255, 255, 255, .13);
  }
}

/* Corridors final presentation: white boards with compact content modules */
.corridor-matrix-section {
  background: #fff;
}

.corridor-card,
.corridor-card-featured,
.corridor-card:nth-child(2n + 1):not(.corridor-card-featured) {
  grid-template-columns: 1fr;
  gap: 0;
  padding: 30px;
  border: 1px solid rgba(5, 6, 17, .09);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 14px 36px rgba(2, 6, 58, .045);
}

.corridor-card::before {
  display: none;
}

.corridor-card:hover {
  transform: none;
  border-color: rgba(5, 6, 17, .14);
  box-shadow: 0 18px 44px rgba(2, 6, 58, .06);
}

.corridor-card header,
.corridor-card-featured header {
  padding-bottom: 24px;
  border-color: rgba(5, 6, 17, .09);
}

.corridor-card h3,
.corridor-card-featured h3 {
  color: var(--ink);
  font-size: clamp(24px, 2.2vw, 32px);
}

.corridor-card header small,
.corridor-card-featured header small {
  color: var(--blue);
}

.corridor-number,
.corridor-card-featured .corridor-number {
  background: rgba(47, 68, 255, .08);
  color: var(--blue);
  box-shadow: none;
}

.corridor-timing,
.corridor-card-featured .corridor-timing {
  border-color: rgba(5, 6, 17, .1);
  background: #fff;
  color: #545a6b;
}

.corridor-card dl,
.corridor-card-featured dl {
  grid-column: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-top: 24px;
}

.corridor-card dl > div,
.corridor-card dl > div:nth-child(n + 3),
.corridor-card dl > div:nth-child(n + 4),
.corridor-card-featured dl > div,
.corridor-card-featured dl > div:nth-child(n + 3),
.corridor-card-featured dl > div:nth-child(n + 4) {
  min-height: 126px;
  padding: 18px;
  border: 1px solid rgba(5, 6, 17, .075);
  border-radius: 12px;
  background: #fafbff;
}

.corridor-card dt,
.corridor-card-featured dt {
  color: var(--blue);
}

.corridor-card dd,
.corridor-card-featured dd {
  color: #62677a;
}

@media (max-width: 900px) {
  .corridor-card dl,
  .corridor-card-featured dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .corridor-card,
  .corridor-card-featured {
    padding: 22px;
  }

  .corridor-card dl,
  .corridor-card-featured dl {
    grid-template-columns: 1fr;
  }

  .corridor-card dl > div,
  .corridor-card dl > div:nth-child(n + 3),
  .corridor-card dl > div:nth-child(n + 4),
  .corridor-card-featured dl > div,
  .corridor-card-featured dl > div:nth-child(n + 3),
  .corridor-card-featured dl > div:nth-child(n + 4) {
    min-height: 0;
  }
}

/* Corridor matrix — plain white regional boards */
.corridor-matrix-section {
  background: #fff;
}

.corridor-card,
.corridor-card-featured,
.corridor-card:nth-child(2n + 1):not(.corridor-card-featured) {
  grid-template-columns: 1fr;
  gap: 0;
  padding: 30px;
  border: 1px solid rgba(5, 6, 17, .09);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 14px 36px rgba(2, 6, 58, .045);
}

.corridor-card::before {
  display: none;
}

.corridor-card:hover {
  transform: none;
  border-color: rgba(5, 6, 17, .14);
  box-shadow: 0 18px 44px rgba(2, 6, 58, .06);
}

.corridor-card header,
.corridor-card-featured header {
  padding-bottom: 24px;
  border-color: rgba(5, 6, 17, .09);
}

.corridor-card h3,
.corridor-card-featured h3 {
  color: var(--ink);
  font-size: clamp(24px, 2.2vw, 32px);
}

.corridor-card header small,
.corridor-card-featured header small {
  color: var(--blue);
}

.corridor-number,
.corridor-card-featured .corridor-number {
  background: rgba(47, 68, 255, .08);
  color: var(--blue);
  box-shadow: none;
}

.corridor-timing,
.corridor-card-featured .corridor-timing {
  border-color: rgba(5, 6, 17, .1);
  background: #fff;
  color: #545a6b;
}

.corridor-card dl,
.corridor-card-featured dl {
  grid-column: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-top: 24px;
}

.corridor-card dl > div,
.corridor-card dl > div:nth-child(n + 3),
.corridor-card dl > div:nth-child(n + 4),
.corridor-card-featured dl > div,
.corridor-card-featured dl > div:nth-child(n + 3),
.corridor-card-featured dl > div:nth-child(n + 4) {
  min-height: 126px;
  padding: 18px;
  border: 1px solid rgba(5, 6, 17, .075);
  border-radius: 12px;
  background: #fafbff;
}

.corridor-card dt,
.corridor-card-featured dt {
  color: var(--blue);
}

.corridor-card dd,
.corridor-card-featured dd {
  color: #62677a;
}

@media (max-width: 900px) {
  .corridor-card dl,
  .corridor-card-featured dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .corridor-card,
  .corridor-card-featured {
    padding: 22px;
  }

  .corridor-card dl,
  .corridor-card-featured dl {
    grid-template-columns: 1fr;
  }

  .corridor-card dl > div,
  .corridor-card dl > div:nth-child(n + 3),
  .corridor-card dl > div:nth-child(n + 4),
  .corridor-card-featured dl > div,
  .corridor-card-featured dl > div:nth-child(n + 3),
  .corridor-card-featured dl > div:nth-child(n + 4) {
    min-height: 0;
  }
}

/* Corridor matrix — route cards */
.corridor-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1260px;
}

.corridor-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 30px;
  border: 1px solid rgba(5, 6, 17, .09);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(47, 68, 255, .075), transparent 34%),
    linear-gradient(180deg, #fff 0%, #fafbff 100%);
  box-shadow: 0 22px 56px rgba(2, 6, 58, .07);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.corridor-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 30px;
  width: 52px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: var(--blue);
}

.corridor-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 68, 255, .22);
  box-shadow: 0 30px 70px rgba(2, 6, 58, .11);
}

.corridor-card-featured {
  grid-column: 1 / -1;
  padding: 36px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 14%, rgba(81, 102, 255, .42), transparent 29%),
    linear-gradient(135deg, #02063a 0%, #071052 62%, #111e78 100%);
  border-color: transparent;
  box-shadow: 0 28px 72px rgba(2, 6, 58, .2);
}

.corridor-card-featured::before {
  left: 36px;
  width: 68px;
  background: #7685ff;
}

.corridor-card header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 16px;
}

.corridor-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: rgba(47, 68, 255, .1);
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
}

.corridor-card-featured .corridor-number {
  background: rgba(255, 255, 255, .13);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
}

.corridor-card header small {
  display: block;
  margin: 1px 0 7px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.corridor-card-featured header small {
  color: #9eabff;
}

.corridor-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 29px);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.corridor-card-featured h3 {
  color: #fff;
  font-size: clamp(26px, 2.5vw, 36px);
}

.corridor-timing {
  max-width: 190px;
  padding: 9px 12px;
  border: 1px solid rgba(47, 68, 255, .12);
  border-radius: 999px;
  background: rgba(47, 68, 255, .075);
  color: #263bdc;
  font-size: 11px;
  line-height: 1.35;
  text-align: center;
}

.corridor-card-featured .corridor-timing {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.corridor-route-line {
  display: grid;
  grid-template-columns: 8px 1fr 8px;
  align-items: center;
  gap: 0;
  margin: 25px 0 5px;
}

.corridor-route-line span {
  height: 1px;
  background: linear-gradient(90deg, var(--blue), rgba(47, 68, 255, .12));
}

.corridor-route-line i {
  width: 8px;
  height: 8px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: #fff;
}

.corridor-route-line i:last-child {
  background: var(--blue);
}

.corridor-card-featured .corridor-route-line span {
  background: linear-gradient(90deg, #8f9bff, rgba(143, 155, 255, .18));
}

.corridor-card-featured .corridor-route-line i {
  border-color: #8f9bff;
  background: #071052;
}

.corridor-card-featured .corridor-route-line i:last-child {
  background: #8f9bff;
}

.corridor-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  margin: 0;
}

.corridor-card-featured dl {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 30px;
}

.corridor-card dl > div {
  min-width: 0;
  padding: 18px 0 2px;
  border-top: 1px solid rgba(5, 6, 17, .075);
}

.corridor-card-featured dl > div {
  border-color: rgba(255, 255, 255, .13);
}

.corridor-card dt {
  margin: 0 0 7px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.corridor-card-featured dt {
  color: #9eabff;
}

.corridor-card dd {
  margin: 0;
  color: #62677a;
  font-size: 14px;
  line-height: 1.55;
}

.corridor-card-featured dd {
  color: rgba(255, 255, 255, .78);
}

@media (max-width: 960px) {
  .corridor-card-featured dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .corridor-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .corridor-card-featured {
    grid-column: auto;
  }

  .corridor-card,
  .corridor-card-featured {
    padding: 24px;
    border-radius: 20px;
  }

  .corridor-card::before,
  .corridor-card-featured::before {
    left: 24px;
  }

  .corridor-card header {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 13px;
  }

  .corridor-timing {
    grid-column: 2;
    justify-self: start;
    max-width: none;
    text-align: left;
  }

  .corridor-card dl,
  .corridor-card-featured dl {
    grid-template-columns: 1fr;
  }

  .corridor-route-line {
    margin-top: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .corridor-card {
    transition: none;
  }
}

/* Start with Consenso — unified editorial layout */
.resources-page .docs-shell {
  grid-template-columns: 248px minmax(0, 1fr);
  gap: 0;
  width: min(calc(100% - 48px), 1260px);
  margin: 0 auto;
  padding: 0;
  border-top: 1px solid rgba(5, 6, 17, .09);
  background: #fff;
}

.resources-page .docs-sidebar {
  top: 88px;
  padding: 54px 34px 84px 0;
  border: 0;
  border-right: 1px solid rgba(5, 6, 17, .1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.resources-page .docs-sidebar p {
  margin: 34px 0 9px;
  color: var(--ink);
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.resources-page .docs-sidebar p:first-child {
  margin-top: 0;
}

.resources-page .docs-sidebar a,
.resources-page .docs-sidebar > span,
.resources-page .docs-sidebar > button {
  min-height: 30px;
  padding: 5px 0;
  color: #686d7c;
  font-size: 14px;
  line-height: 1.45;
}

.resources-page .docs-sidebar a {
  position: relative;
}

.resources-page .docs-sidebar a::before {
  content: "";
  position: absolute;
  top: 9px;
  right: -35px;
  width: 2px;
  height: 18px;
  background: transparent;
}

.resources-page .docs-sidebar a:hover {
  color: var(--ink);
}

.resources-page .docs-sidebar a:hover::before {
  background: var(--blue);
}

.resources-page .docs-sidebar em {
  color: #9ca0ad;
  font-size: 8px;
  letter-spacing: .06em;
}

.resources-page .docs-content {
  padding: 56px 0 110px 64px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.resources-page .docs-intro {
  padding-bottom: 54px;
}

.resources-page .docs-intro .eyebrow,
.resources-page .docs-chapter > small {
  color: var(--blue);
}

.resources-page .docs-intro h2 {
  max-width: 780px;
  margin: 14px 0 24px;
  font-size: clamp(42px, 4.3vw, 62px);
  line-height: .98;
  letter-spacing: -.052em;
}

.resources-page .docs-intro > p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: #626776;
  font-size: 17px;
  line-height: 1.68;
}

.resources-page .phase-strip {
  margin: 38px 0 82px;
  overflow: visible;
  border: 0;
  border-top: 1px solid rgba(5, 6, 17, .1);
  border-bottom: 1px solid rgba(5, 6, 17, .1);
  border-radius: 0;
  background: transparent;
}

.resources-page .phase-strip span {
  min-height: 104px;
  padding: 20px 18px;
  border-color: rgba(5, 6, 17, .08);
  background: transparent;
}

.resources-page .phase-strip span::before {
  display: none;
}

.resources-page .phase-strip b {
  color: var(--ink);
  font-size: 12px;
  letter-spacing: .055em;
}

.resources-page .phase-strip i {
  color: #747988;
  font-size: 11px;
}

.resources-page .docs-chapter {
  padding-bottom: 86px;
}

.resources-page .docs-chapter > h3 {
  max-width: 760px;
  margin: 10px 0 34px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.06;
  letter-spacing: -.038em;
}

.resources-page .docs-step {
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 22px;
  padding: 28px 0;
}

.resources-page .docs-step > b,
.resources-page .activation-list > div > b {
  padding-top: 2px;
  color: var(--blue);
  font-size: 11px;
  letter-spacing: .08em;
}

.resources-page .docs-step h4,
.resources-page .activation-list h4,
.resources-page .path-comparison h4 {
  font-size: 18px;
  line-height: 1.28;
  letter-spacing: -.018em;
}

.resources-page .docs-step p,
.resources-page .activation-list p,
.resources-page .path-comparison p {
  max-width: 720px;
  color: #686d7c;
  font-size: 14px;
  line-height: 1.68;
}

.resources-page .docs-step aside {
  margin-top: 18px;
  padding: 14px 0 14px 18px;
  border-left-width: 2px;
  background: transparent;
  color: #454a59;
  line-height: 1.6;
}

.resources-page .path-comparison {
  gap: 0;
  border-top: 1px solid rgba(5, 6, 17, .1);
  border-bottom: 1px solid rgba(5, 6, 17, .1);
}

.resources-page .path-comparison > div {
  padding: 30px 34px 34px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.resources-page .path-comparison > div:first-child,
.resources-page .path-comparison > div:last-child {
  border-top: 0;
}

.resources-page .path-comparison > div + div {
  padding-left: 34px;
  border-left: 1px solid rgba(5, 6, 17, .09);
}

.resources-page .path-comparison span {
  margin-bottom: 18px;
  font-size: 9px;
  letter-spacing: .09em;
}

.resources-page .activation-list.two-up {
  gap: 0;
  border-top: 1px solid rgba(5, 6, 17, .1);
  border-bottom: 1px solid rgba(5, 6, 17, .1);
}

.resources-page .activation-list.two-up > div {
  padding: 30px 34px 32px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.resources-page .activation-list.two-up > div + div {
  padding-left: 34px;
  border-left: 1px solid rgba(5, 6, 17, .09);
}

.resources-page .readiness-grid {
  border-color: rgba(5, 6, 17, .1);
  border-radius: 0;
  background: transparent;
}

.resources-page .readiness-grid span {
  border-color: rgba(5, 6, 17, .08);
  background: transparent;
}

.resources-page .developer-coming {
  padding: 42px 0;
  border: 0;
  border-top: 1px solid rgba(5, 6, 17, .1);
  border-bottom: 1px solid rgba(5, 6, 17, .1);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.resources-page .developer-coming h3 {
  color: var(--ink);
}

.resources-page .developer-coming p:not(.eyebrow) {
  color: #686d7c;
}

.resources-page .developer-coming > span {
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--blue);
  letter-spacing: .1em;
}

@media (max-width: 960px) {
  .resources-page .docs-shell {
    grid-template-columns: 200px minmax(0, 1fr);
  }

  .resources-page .docs-sidebar {
    padding-right: 24px;
  }

  .resources-page .docs-sidebar a::before {
    right: -25px;
  }

  .resources-page .docs-content {
    padding-left: 40px;
  }
}

@media (max-width: 700px) {
  .resources-page .docs-shell {
    display: block;
    width: 100%;
    border-top: 0;
  }

  .resources-page .docs-sidebar {
    position: sticky;
    top: 78px;
    z-index: 5;
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding: 13px 20px;
    border-right: 0;
    border-top: 1px solid rgba(5, 6, 17, .08);
    border-bottom: 1px solid rgba(5, 6, 17, .08);
    background: rgba(255, 255, 255, .96);
    scrollbar-width: none;
  }

  .resources-page .docs-sidebar::-webkit-scrollbar {
    display: none;
  }

  .resources-page .docs-sidebar p,
  .resources-page .docs-sidebar > button,
  .resources-page .docs-sidebar > span {
    display: none;
  }

  .resources-page .docs-sidebar a {
    flex: 0 0 auto;
    min-height: 0;
    padding: 0;
    font-size: 12px;
  }

  .resources-page .docs-sidebar a::before {
    display: none;
  }

  .resources-page .docs-content {
    padding: 48px 20px 82px;
  }

  .resources-page .docs-intro h2 {
    font-size: clamp(40px, 12vw, 52px);
  }

  .resources-page .phase-strip,
  .resources-page .path-comparison,
  .resources-page .activation-list.two-up {
    grid-template-columns: 1fr;
  }

  .resources-page .phase-strip span {
    min-height: 78px;
    border-right: 0;
  }

  .resources-page .path-comparison > div,
  .resources-page .activation-list.two-up > div {
    padding: 26px 0;
  }

  .resources-page .path-comparison > div + div,
  .resources-page .activation-list.two-up > div + div {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(5, 6, 17, .08);
  }

  .resources-page .readiness-grid {
    grid-template-columns: 1fr;
  }

  .resources-page .developer-coming {
    padding: 34px 0;
  }
}

@media (max-width: 640px) {
  .product-hero h1,
  .corridors-hero h1,
  .resources-page .docs-hero h1 {
    font-size: clamp(38px, 12.5vw, 48px);
  }

  .issue-switcher {
    display: block;
  }

  .issue-list {
    gap: 18px;
  }

  .issue-detail {
    display: none;
  }

  .issue-panel.mobile-issue-panel {
    position: relative;
    inset: auto;
    display: grid;
    min-height: 0;
    margin: 30px 0;
    padding: 0;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .issue-tab.active {
    min-height: 0;
  }

  .issue-panel.mobile-issue-panel > span {
    margin-top: 0;
  }

  .story-orbit {
    min-height: 560px;
    background-size: auto 100%;
  }

  .story-avatar:nth-of-type(1) { left: 8%; top: 36%; }
  .story-avatar:nth-of-type(2) { left: 84%; top: 16%; }
  .story-avatar:nth-of-type(3) { left: 15%; top: 74%; }
  .story-avatar:nth-of-type(4) { left: 88%; top: 52%; }
  .orbit-profile-five { left: 22%; top: 20%; }
  .orbit-profile-six { left: 90%; top: 85%; }

  .story-card {
    width: calc(100% - 36px);
  }

  .corridor-table th:first-child,
  .corridor-table td:first-child {
    min-width: 176px;
    padding-left: 26px;
  }
}

/* Final corridor layout: white regional boards and compact modules */
.corridor-matrix-section { background: #fff; }
.corridor-cards { grid-template-columns: 1fr; gap: 18px; }
.corridor-card,
.corridor-card-featured,
.corridor-card:nth-child(2n + 1):not(.corridor-card-featured) {
  grid-column: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 30px;
  border: 1px solid rgba(5,6,17,.09);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 14px 36px rgba(2,6,58,.045);
}
.corridor-card::before { display: none; }
.corridor-card:hover { transform: none; border-color: rgba(5,6,17,.14); box-shadow: 0 18px 44px rgba(2,6,58,.06); }
.corridor-card header,
.corridor-card-featured header { grid-column: 1; padding-bottom: 24px; border-bottom: 1px solid rgba(5,6,17,.09); }
.corridor-card h3,
.corridor-card-featured h3 { color: var(--ink); font-size: clamp(24px,2.2vw,32px); }
.corridor-card header small,
.corridor-card-featured header small,
.corridor-card dt,
.corridor-card-featured dt { color: var(--blue); }
.corridor-number,
.corridor-card-featured .corridor-number { background: rgba(47,68,255,.08); color: var(--blue); box-shadow: none; }
.corridor-timing,
.corridor-card-featured .corridor-timing { border-color: rgba(5,6,17,.1); background: #fff; color: #545a6b; }
.corridor-card dl,
.corridor-card-featured dl {
  grid-column: 1;
  grid-template-columns: repeat(3,minmax(0,1fr));
  align-content: start;
  gap: 12px;
  padding-top: 24px;
}
.corridor-card dl > div,
.corridor-card dl > div:nth-child(n + 3),
.corridor-card dl > div:nth-child(n + 4),
.corridor-card-featured dl > div,
.corridor-card-featured dl > div:nth-child(n + 3),
.corridor-card-featured dl > div:nth-child(n + 4) {
  min-height: 126px;
  padding: 18px;
  border: 1px solid rgba(5,6,17,.075);
  border-radius: 12px;
  background: #fafbff;
}
.corridor-card dd,
.corridor-card-featured dd { color: #62677a; }

@media (max-width: 900px) {
  .corridor-card dl,
  .corridor-card-featured dl { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 620px) {
  .corridor-card,
  .corridor-card-featured { padding: 22px; }
  .corridor-card dl,
  .corridor-card-featured dl { grid-template-columns: 1fr; }
  .corridor-card dl > div,
  .corridor-card dl > div:nth-child(n + 3),
  .corridor-card dl > div:nth-child(n + 4),
  .corridor-card-featured dl > div,
  .corridor-card-featured dl > div:nth-child(n + 3),
  .corridor-card-featured dl > div:nth-child(n + 4) { min-height: 0; }
}

/* Problem / solution content structure */
.problem-section .issue-switcher {
  grid-template-columns: minmax(400px,.88fr) minmax(0,1.12fr);
  align-items: center;
}
.problem-section .issue-list { gap: 12px; }
.problem-section .issue-tab {
  min-height: 82px;
  align-items: center;
  border-radius: 18px;
  box-shadow: none;
}
.problem-section .issue-tab:not(.active) strong { align-self: center; }
.problem-section .issue-tab:not(.active) p { display: none; }
.problem-section .issue-tab.active {
  min-height: 228px;
  align-content: center;
  row-gap: 13px;
  box-shadow: 0 16px 42px rgba(2,6,58,.07);
}
.problem-section .issue-tab p { color: #5f6473; font-size: 14px; line-height: 1.6; }
.problem-section .issue-detail { min-height: 660px; }
.problem-section .issue-panel {
  align-content: center;
  gap: 0;
  padding: 12px 0;
}
.problem-section .issue-panel > span {
  width: fit-content;
  padding: 11px 24px;
  border-radius: 0 30px 0 30px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}
.problem-section .issue-panel > p {
  max-width: 700px;
  margin: 18px 0 55px;
  color: #626776;
  font-size: clamp(18px,1.55vw,22px);
  line-height: 1.55;
}
.problem-section .advantages-box {
  width: min(700px,100%);
  padding: 26px 30px 24px;
  border-radius: 16px;
  background: var(--navy);
  box-shadow: 0 24px 70px rgba(2,6,58,.2);
}
.problem-section .advantages-box h3 {
  margin: 0;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0;
}
.problem-section .advantages-box ul {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 0 26px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.problem-section .advantages-box li {
  position: relative;
  padding: 13px 0 13px 17px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.5;
}
.problem-section .advantages-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 6px;
  height: 2px;
  background: #8290ff;
}
@media (max-width: 960px) {
  .problem-section .issue-switcher { grid-template-columns: minmax(330px,.9fr) minmax(0,1.1fr); gap: 34px; }
  .problem-section .advantages-box ul { grid-template-columns: 1fr; }
  .problem-section .issue-detail { min-height: 760px; }
}
@media (max-width: 640px) {
  .problem-section .issue-switcher { display: block; }
  .problem-section .issue-tab.active { min-height: 0; }
  .problem-section .issue-panel.mobile-issue-panel { padding: 30px 0 10px; }
  .problem-section .advantages-box { padding: 24px 22px 20px; }
  .problem-section .advantages-box ul { grid-template-columns: 1fr; }
}

/* Corridor matrix restored as a compact data table */
.corridor-table-compact {
  width: 100%;
  max-width: 1260px;
  overflow-x: auto;
  border: 1px solid rgba(5,6,17,.09);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(2,6,58,.065);
}
.corridor-table-compact .corridor-table {
  width: 100%;
  min-width: 1160px;
  table-layout: fixed;
  font-size: 13px;
  line-height: 1.5;
}
.corridor-table-compact .corridor-table th {
  padding: 18px;
  border-right: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(135deg,#02063a 0%,#0a155f 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .025em;
  vertical-align: middle;
}
.corridor-table-compact .corridor-table th:last-child { border-right: 0; }
.corridor-table-compact .corridor-table td {
  padding: 20px 18px;
  border-top: 1px solid rgba(5,6,17,.075);
  background: #fff;
  color: #686d7c;
  vertical-align: top;
}
.corridor-table-compact .corridor-table tbody tr:first-child td { border-top: 0; }
.corridor-table-compact .corridor-table tbody tr:hover td { background: #fafbff; }
.corridor-table-compact .corridor-table th:nth-child(1),
.corridor-table-compact .corridor-table td:nth-child(1) { width: 17%; }
.corridor-table-compact .corridor-table th:nth-child(2),
.corridor-table-compact .corridor-table td:nth-child(2) { width: 17%; }
.corridor-table-compact .corridor-table th:nth-child(3),
.corridor-table-compact .corridor-table td:nth-child(3) { width: 20%; }
.corridor-table-compact .corridor-table th:nth-child(4),
.corridor-table-compact .corridor-table td:nth-child(4) { width: 18%; }
.corridor-table-compact .corridor-table th:nth-child(5),
.corridor-table-compact .corridor-table td:nth-child(5) { width: 12%; }
.corridor-table-compact .corridor-table th:nth-child(6),
.corridor-table-compact .corridor-table td:nth-child(6) { width: 16%; }
.corridor-table-compact .corridor-table th:first-child,
.corridor-table-compact .corridor-table td:first-child {
  min-width: 0;
  padding-left: 22px;
}
.corridor-table-compact .corridor-table th:first-child {
  background: linear-gradient(135deg,#02063a 0%,#0a155f 100%);
}
.corridor-table-compact .corridor-table td:first-child {
  color: var(--ink);
  font-weight: 800;
}
@media (max-width: 640px) {
  .corridor-table-compact { border-radius: 14px; }
  .corridor-table-compact .corridor-table { min-width: 1040px; }
  .corridor-table-compact .corridor-table th { padding: 16px 14px; }
  .corridor-table-compact .corridor-table td { padding: 18px 14px; }
  .corridor-table-compact .corridor-table th:first-child,
  .corridor-table-compact .corridor-table td:first-child { padding-left: 16px; }
}

/* Design adjustments 2.0 — source artwork, typography and responsive calibration */
.eyebrow,
.cta-card .eyebrow,
.globe-section .section-heading .eyebrow {
  color: #2F44FF !important;
}

h1,
h2,
h3,
.hero-copy p,
.section-heading p {
  text-wrap: balance;
}

.hero-design-asset {
  width: auto;
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.hero:not(.subhero) .hero-design-asset {
  width: 667px;
}

.product-hero .hero-design-asset,
.corridors-hero .hero-design-asset,
.resources-page .docs-hero .hero-design-asset {
  width: 477px;
}

.hero:not(.subhero) {
  grid-template-columns: minmax(0, 1fr) 667px;
  gap: clamp(34px, 5vw, 76px);
}

.product-hero,
.corridors-hero {
  grid-template-columns: minmax(0, 1fr) 477px;
}

.resources-page .docs-hero {
  grid-template-columns: minmax(0, 1fr) 477px;
}

.resources-page .docs-hero::after {
  display: none;
}

.home-hero-title {
  font-size: clamp(50px, 5vw, 68px);
}

.cases .section-heading {
  max-width: 820px;
}

.cases .section-heading h2,
.globe-section .section-heading h2 {
  max-width: 820px;
}

.logo img {
  width: auto;
  max-width: 148px;
  height: auto;
  max-height: 38px;
}

.layer-tabs,
.product-section .layer-tabs {
  padding-bottom: 0;
}

.layer-tabs button,
.layer-tabs button.active,
.product-section .layer-tabs button,
.product-section .layer-tabs button.active {
  box-shadow: none;
}

.cta-card .primary-button {
  border: 0;
  box-shadow: none;
}

.story-card {
  z-index: 8;
  width: min(650px, 68vw);
}

.story-orbit .story-avatar,
.story-orbit .story-avatar.active,
.story-orbit .orbit-profile {
  z-index: 6;
}

@media (max-width: 1360px) {
  .hero:not(.subhero) {
    grid-template-columns: minmax(0, 1fr) minmax(520px, 600px);
    gap: 36px;
  }

  .hero:not(.subhero) .hero-design-asset {
    width: 100%;
    max-width: 600px;
    object-fit: contain;
  }
}

@media (max-width: 1180px) {
  .hero:not(.subhero),
  .product-hero,
  .corridors-hero,
  .resources-page .docs-hero {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 48vw);
  }

  .hero:not(.subhero) .hero-design-asset,
  .product-hero .hero-design-asset,
  .corridors-hero .hero-design-asset,
  .resources-page .docs-hero .hero-design-asset {
    width: 100%;
    max-width: 100%;
    object-fit: contain;
  }
}

@media (max-width: 760px) {
  .hero,
  .hero:not(.subhero),
  .product-hero,
  .corridors-hero,
  .resources-page .docs-hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
    min-height: auto;
  }

  .hero .hero-design-asset,
  .hero:not(.subhero) .hero-design-asset,
  .product-hero .hero-design-asset,
  .corridors-hero .hero-design-asset,
  .resources-page .docs-hero .hero-design-asset {
    order: -1;
    align-self: center;
    width: 100%;
    max-width: 100%;
    object-fit: contain;
  }

  .hero .hero-copy,
  .resources-page .docs-hero > div:first-child {
    order: 1;
  }

  .globe-section .coverage-pills {
    margin-bottom: 30px;
  }

  .globe-section .map-stage {
    min-height: auto;
  }

  .globe-section .map-design-asset {
    display: none;
  }

  .globe-section .map-card {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    transform: none;
  }

  .story-card {
    z-index: 8;
    width: calc(100% - 64px);
    min-height: 250px;
    padding: 32px 34px;
  }

  .story-avatar:nth-of-type(1) { left: 5%; top: 19%; }
  .story-avatar:nth-of-type(2) { left: 91%; top: 17%; }
  .story-avatar:nth-of-type(3) { left: 7%; top: 78%; }
  .story-avatar:nth-of-type(4) { left: 92%; top: 73%; }
  .orbit-profile-five { left: 12%; top: 9%; }
  .orbit-profile-six { left: 90%; top: 90%; }
}

/* Round 7 approved Home implementation gates */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.topbar {
  background: rgba(255, 255, 255, .02);
  border-bottom-color: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition: background-color .2s ease, border-color .2s ease, backdrop-filter .2s ease;
}
.topbar.is-scrolled,
.topbar.menu-open {
  background: rgba(252, 252, 253, .92);
  border-bottom-color: rgba(18, 21, 31, .12);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.header-menu { display: contents; }
.menu-toggle { display: none; }

.partner-strip p { color: #5f6470; }

.view[data-page="home"] h2 { font-weight: 800; }
.section-heading p,
.hero-copy p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}
.hero .primary-button,
.cta-card .primary-button { min-height: 54px; }
.product-hero h1,
.corridors-hero h1,
.resources-page .docs-hero h1 { font-weight: 800; }

@media (min-width: 1200px) {
  .view > .hero,
  .view > .section {
    padding-right: max(120px, calc((100vw - 1200px) / 2));
    padding-left: max(120px, calc((100vw - 1200px) / 2));
  }
  .view[data-page="home"] .home-hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
  }
  .view[data-page="home"] .section-heading h2 {
    font-size: 56px;
    font-weight: 800;
  }
}
.globe-section .section-heading .eyebrow { color: #aeb8ff !important; }
.map-card b { color: #aeb8ff; }

.cta-card .eyebrow { color: rgba(255, 255, 255, .82) !important; }
.site-footer .footer-bottom { color: #6f7481; }

@media (max-width: 760px) {
  .topbar {
    grid-template-columns: 1fr auto;
    min-height: 68px;
    padding: 0 18px;
  }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(5, 6, 17, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
  }
  .menu-icon { position: relative; width: 16px; height: 12px; }
  .menu-icon span {
    position: absolute;
    left: 0;
    width: 16px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform .18s ease, top .18s ease;
  }
  .menu-icon span:first-child { top: 2px; }
  .menu-icon span:last-child { top: 8px; }
  .menu-open .menu-icon span:first-child { top: 5px; transform: rotate(45deg); }
  .menu-open .menu-icon span:last-child { top: 5px; transform: rotate(-45deg); }
  .header-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    gap: 18px;
    padding: 18px;
    border-bottom: 1px solid rgba(18, 21, 31, .12);
    background: rgba(252, 252, 253, .98);
    box-shadow: 0 18px 34px rgba(2, 6, 58, .12);
  }
  .topbar.menu-open .header-menu { display: flex; }
  .header-menu .nav-links {
    display: grid;
    grid-column: auto;
    gap: 0;
    order: initial;
    overflow: visible;
  }
  .header-menu .nav-links a {
    min-height: 46px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(5, 6, 17, .08);
  }
  .header-menu .nav-actions { justify-content: flex-start; }

  .coverage-pills { display: grid; grid-template-columns: 1fr; gap: 10px; margin-inline: 18px; }
  .coverage-pills button { width: 100%; min-height: 48px; text-align: left; }
  .globe-section .map-card { left: 18px !important; right: auto; width: calc(100% - 36px); box-sizing: border-box; }

  .story-orbit,
  .story-orbit.case-art-ready {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: auto auto auto;
    gap: 24px 12px;
    padding: 12px 0 0;
    overflow: visible;
    background: none;
    touch-action: pan-y;
  }
  .story-orbit .orbit-profile,
  .story-orbit .orbit-ring,
  .story-orbit .orbit-dot { display: none; }
  .story-orbit .story-avatar,
  .story-orbit .story-avatar.active {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    grid-row: 1;
    justify-self: center;
    width: 58px;
    height: 58px;
    transform: none;
  }
  .story-avatar:nth-of-type(1) { grid-column: 1; }
  .story-avatar:nth-of-type(2) { grid-column: 2; }
  .story-avatar:nth-of-type(3) { grid-column: 3; }
  .story-avatar:nth-of-type(4) { grid-column: 4; }
  .story-orbit .story-card {
    position: relative;
    inset: auto;
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    min-height: 300px;
    display: none;
    padding: 30px 24px;
    border-radius: 26px;
    opacity: 0;
    transform: none;
  }
  .story-orbit .story-card.active { display: grid; opacity: 1; }
  .story-orbit .story-dots {
    position: relative;
    left: auto;
    bottom: auto;
    grid-column: 1 / -1;
    grid-row: 3;
    align-self: center;
    transform: none;
  }
}

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