
:root {
  --bg-main: #050b14;
  --bg-secondary: #07111f;
  --bg-card: rgba(255, 255, 255, 0.045);
  --bg-card-strong: rgba(0, 174, 239, 0.09);
  --bg: #050b14;
  --bg-2: #07111f;
  --bg-3: #0b1628;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(0, 174, 239, 0.09);
  --line: rgba(0, 174, 239, 0.25);
  --line-soft: rgba(255, 255, 255, 0.11);
  --cyan: #00aeef;
  --blue: #1b75bc;
  --icon-accent: #6ae5c4;
  --icon-accent-soft: rgba(106, 229, 196, 0.12);
  --icon-accent-border: rgba(106, 229, 196, 0.44);
  --text: #ffffff;
  --muted: #a7b3c5;
  --muted-2: #d3dbe8;
  --warning: #f5b84b;
  --swissquote-orange: #fa5b35;
  --primary-blue: #00aeef;
  --secondary-blue: #1b75bc;
  --border-soft: rgba(0, 174, 239, 0.22);
  --border-strong: rgba(0, 174, 239, 0.45);
  --max: 1240px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg-main);
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  position: relative;
  width: 100%;
  min-width: 0;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  color: var(--text);
  background-color: var(--bg-main);
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 174, 239, 0.22), transparent 32rem),
    radial-gradient(circle at 90% 10%, rgba(27, 117, 188, 0.16), transparent 34rem),
    linear-gradient(180deg, var(--bg) 0%, #06101d 48%, #050a12 100%);
  font-family: Inter, Manrope, "IBM Plex Sans", Roboto, Arial, sans-serif;
  line-height: 1.55;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(0, 174, 239, 0.09), transparent 36rem);
  background-size: 76px 76px, 76px 76px, auto;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 78%);
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

p { color: var(--muted-2); margin: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 174, 239, 0.18);
  background: rgba(5, 11, 20, 0.82);
  backdrop-filter: blur(18px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.055), transparent);
}

.header-inner {
  width: min(calc(100% - 44px), var(--max));
  margin: 0 auto;
  min-height: 94px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-inner,
.header-compliance-inner {
  position: relative;
}

.header-compliance {
  border-top: 1px solid rgba(255, 255, 255, 0.045);
  background: rgba(4, 10, 18, 0.68);
}

.header-compliance-inner {
  width: min(calc(100% - 44px), var(--max));
  min-height: 30px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.header-compliance strong {
  color: var(--muted-2);
  font-weight: 850;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 220px;
  min-width: 220px;
}

.brand-logo {
  display: block;
  width: 220px;
  height: auto;
  max-height: 82px;
  object-fit: contain;
}

.nav-toggle { display: none; }

.nav-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.nav-button span,
.nav-button span::before,
.nav-button span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
}

.nav-button span::before { position: absolute; top: -6px; }
.nav-button span::after { position: absolute; top: 6px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
  flex-wrap: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3px;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
}

.nav-links a,
.nav-links summary {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 9px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links summary:hover,
.nav-links a.active,
.nav-links summary.active {
  color: var(--text);
  border-color: rgba(0, 174, 239, 0.22);
  background: rgba(0, 174, 239, 0.1);
}

.nav-links details { position: relative; }
.nav-links summary { list-style: none; }
.nav-links summary::-webkit-details-marker { display: none; }

.nav-dropdown {
  position: absolute;
  top: 48px;
  left: 0;
  min-width: 190px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 17, 31, 0.98);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
}

.nav-dropdown a {
  display: flex;
  width: 100%;
  min-height: 36px;
}

.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.nav-actions .btn {
  min-height: 44px;
  padding: 0 18px;
  font-size: 13px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  font-family: inherit;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn:hover { border-color: rgba(0, 174, 239, 0.65); background: rgba(0, 174, 239, 0.09); }
.btn.primary { background: linear-gradient(135deg, var(--cyan), var(--blue)); border-color: transparent; color: #03101d; box-shadow: 0 10px 28px rgba(0, 174, 239, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.18); }
.btn.primary:hover { background: linear-gradient(135deg, #61d9ff, var(--cyan) 44%, var(--blue)); box-shadow: 0 12px 34px rgba(0, 174, 239, 0.2); }
.btn.ghost { background: transparent; }
.btn.small { min-height: 32px; padding: 0 10px; font-size: 11.5px; }
.btn.muted { color: var(--muted-2); border-color: var(--line-soft); }
.nav-actions .btn.ghost { color: #ffffff; border-color: rgba(0, 174, 239, 0.34); }
.nav-actions .btn.muted { color: #c5cfdd; background: rgba(255, 255, 255, 0.025); }

main {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.section {
  padding: 78px 22px;
  position: relative;
}

.section.compact { padding-top: 46px; padding-bottom: 46px; }
.section.alt { background: rgba(255, 255, 255, 0.025); border-top: 1px solid rgba(255, 255, 255, 0.06); border-bottom: 1px solid rgba(255, 255, 255, 0.06); }

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.eyebrow {
  display: none;
}

h1, h2, h3 {
  margin: 0;
  color: var(--text);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: 72px;
  max-width: 980px;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-slide-title {
  max-width: 620px;
  color: var(--text);
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.04;
  font-weight: 900;
}

h2 {
  font-size: 46px;
  max-width: 860px;
}

h3 { font-size: 21px; }

.lead {
  color: var(--muted-2);
  max-width: 780px;
  margin-top: 18px;
  font-size: 18px;
}

.hero .lead {
  max-width: 560px;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.55;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 22px 72px;
  min-height: auto;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(5, 11, 20, 0.68), rgba(5, 11, 20, 0.92)),
    url("../site/institutional-network.png") center right / contain no-repeat;
}

.HeroInstitutional.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.4), transparent);
}

.hero-slider {
  display: block;
}

.hero-slider-shell {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
}

.hero-slides {
  position: relative;
}

.hero-slide {
  display: none;
}

.hero-slide.is-active {
  display: grid;
}

.hero-slider-controls {
  max-width: 620px;
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-slider-arrow,
.hero-slider-dot {
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-2);
  cursor: pointer;
  font-family: inherit;
}

.hero-slider-arrow {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
}

.hero-slider-arrow svg {
  width: 18px;
  height: 18px;
}

.hero-slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-slider-dot {
  width: 34px;
  height: 8px;
  border-radius: 999px;
  padding: 0;
}

.hero-slider-dot.is-active {
  width: 54px;
  border-color: rgba(0, 174, 239, 0.65);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.hero-slider-arrow:hover,
.hero-slider-dot:hover {
  border-color: rgba(0, 174, 239, 0.62);
  background: rgba(0, 174, 239, 0.1);
  color: var(--text);
}

.hero-grid {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.78fr);
  gap: 56px;
  align-items: center;
}

.hero-slider .hero-slide {
  display: none;
}

.hero-slider .hero-slide.is-active {
  display: grid;
}

.hero-actions,
.action-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-actions .btn,
.action-row .btn {
  text-align: center;
  max-width: 100%;
}

.hero-panel,
.flow-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(16, 32, 49, 0.96), rgba(7, 17, 31, 0.93)),
    linear-gradient(180deg, rgba(0, 174, 239, 0.18), rgba(5, 11, 20, 0.92));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 24px;
  backdrop-filter: blur(10px);
}

.hero-panel {
  max-width: 440px;
  justify-self: end;
  width: 100%;
}

.hero-panel::before,
.flow-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.42;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent);
  pointer-events: none;
}

.hero-panel > *,
.flow-panel > * { position: relative; }

.panel-kicker {
  display: none;
}

.mini-stack { display: grid; gap: 12px; }

.mini-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(8, 18, 30, 0.86);
}

.mini-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--icon-accent-border);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--icon-accent);
  font-weight: 900;
  background: var(--icon-accent-soft);
}

.mini-icon svg,
.mini-icon i {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

.mini-title { font-weight: 800; }
.mini-copy { color: var(--muted); font-size: 13px; margin-top: 4px; line-height: 1.45; }

.hero-map {
  display: grid;
  gap: 10px;
}

.map-node {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(8, 18, 30, 0.86);
}

.map-node::after {
  content: "";
  position: absolute;
  left: 32px;
  bottom: -11px;
  width: 1px;
  height: 10px;
  background: linear-gradient(var(--cyan), rgba(0, 174, 239, 0.2));
  box-shadow: 0 0 12px rgba(0, 174, 239, 0.72);
}

.map-node:last-child::after { display: none; }

.map-node.featured {
  border-color: rgba(250, 91, 53, 0.42);
  background:
    radial-gradient(circle at 88% 0%, rgba(250, 91, 53, 0.2), transparent 8rem),
    rgba(18, 20, 27, 0.9);
  box-shadow: inset 0 0 0 1px rgba(250, 91, 53, 0.06), 0 0 30px rgba(250, 91, 53, 0.08);
}

.map-node.featured .map-dot {
  background: linear-gradient(135deg, var(--icon-accent), #bff8e8);
  box-shadow: 0 0 24px rgba(106, 229, 196, 0.22);
}

.map-dot {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #03101d;
  font-size: 12px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--icon-accent), #bff8e8);
  box-shadow: 0 0 24px rgba(106, 229, 196, 0.22);
}

.map-title { font-weight: 900; }
.map-copy { display: none; }

.hero-map .map-copy {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
  margin-top: 3px;
  line-height: 1.35;
}

.review-snapshot {
  display: grid;
  gap: 10px;
}

.prime-console {
  display: grid;
  gap: 14px;
}

.prime-console-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  color: var(--text);
  font-weight: 900;
}

.prime-console-head span:last-child {
  color: var(--cyan);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.review-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: center;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(8, 18, 30, 0.87);
}

.review-label {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.review-value {
  color: var(--text);
  font-weight: 850;
  line-height: 1.3;
}

.prime-console .review-row {
  grid-template-columns: 142px 1fr;
  align-items: start;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.trust-item,
.card,
.kpi,
.document-card,
.office-card,
.identity-card,
.risk-box {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--panel);
}

.trust-item {
  padding: 12px 14px;
  min-height: 50px;
  background:
    linear-gradient(180deg, rgba(0, 174, 239, 0.085), rgba(255, 255, 255, 0.035)),
    var(--panel);
  display: flex;
  align-items: center;
}

.trust-item strong,
.card strong,
.document-card strong { display: block; color: var(--text); }

.trust-item span,
.card span,
.document-card span { display: block; color: var(--muted); margin-top: 6px; font-size: 13px; }

.trust-item span { display: none; }

.market-strip {
  border-top: 1px solid rgba(0, 174, 239, 0.16);
  border-bottom: 1px solid rgba(0, 174, 239, 0.16);
  background: rgba(255, 255, 255, 0.022);
  padding: 22px;
}

.market-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}

.market-strip-title {
  color: var(--text);
  font-weight: 900;
}

.market-strip-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.market-strip-items span {
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted-2);
  padding: 7px 11px;
  font-size: 13px;
  font-weight: 750;
}

.market-strip-note {
  grid-column: 2;
  color: var(--muted);
  font-size: 12.5px;
}

.home-reporting {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 1.14fr);
  gap: 26px;
  align-items: center;
}

.home-reporting-copy {
  display: grid;
  gap: 16px;
}

.home-reporting-list {
  display: grid;
  gap: 10px;
  margin-top: 2px;
}

.home-reporting-list span {
  color: var(--muted-2);
  padding-left: 20px;
  position: relative;
}

.home-reporting-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--icon-accent);
  box-shadow: 0 0 12px rgba(106, 229, 196, 0.34);
}

.section-head {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
  padding-top: 14px;
}

.section-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 74px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 174, 239, 0.52), transparent);
}

.section-head p { max-width: 620px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }

.card {
  padding: 24px;
  min-height: 180px;
}

.trust-item,
.card,
.kpi,
.document-card,
.office-card,
.identity-card,
.risk-box,
.dd-pack,
.important-info,
.notice-box,
.table-wrap,
.cta-band,
.terminal-mockup {
  position: relative;
  overflow: hidden;
}

.trust-item::before,
.card::before,
.kpi::before,
.document-card::before,
.office-card::before,
.identity-card::before,
.risk-box::before,
.dd-pack::before,
.important-info::before,
.notice-box::before,
.table-wrap::before,
.cta-band::before,
.terminal-mockup::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.44), transparent);
  opacity: 0.82;
  pointer-events: none;
}

.trust-item > *,
.card > *,
.kpi > *,
.document-card > *,
.office-card > *,
.identity-card > *,
.risk-box > *,
.dd-pack > *,
.important-info > *,
.notice-box > *,
.table-wrap > *,
.cta-band > *,
.terminal-mockup > * {
  position: relative;
}

.trust-item,
.card,
.kpi,
.document-card,
.office-card,
.identity-card,
.risk-box,
.dd-pack,
.important-info {
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.trust-item:hover,
.card:hover,
.kpi:hover,
.document-card:hover,
.office-card:hover,
.identity-card:hover,
.dd-pack:hover {
  border-color: rgba(0, 174, 239, 0.55);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22), 0 0 26px rgba(0, 174, 239, 0.09);
  transform: translateY(-2px);
}

.flagship-prime {
  padding-top: 56px;
}

.flagship-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 174, 239, 0.35);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 14%, rgba(0, 174, 239, 0.2), transparent 20rem),
    linear-gradient(135deg, rgba(0, 174, 239, 0.14), rgba(255, 255, 255, 0.035) 50%, rgba(27, 117, 188, 0.08));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
  padding: 34px;
}

.flagship-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.36;
  pointer-events: none;
}

.flagship-top,
.feature-pill-grid { position: relative; }

.flagship-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: end;
  margin-bottom: 26px;
}

.flagship-top p { max-width: 760px; margin-top: 14px; font-size: 17px; }

.feature-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-pill {
  min-height: 86px;
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(5, 11, 20, 0.58);
  display: grid;
  gap: 8px;
  align-content: center;
}

.feature-pill span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 800;
}

.feature-pill strong { font-size: 15px; }

.card-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--icon-accent-border);
  border-radius: 8px;
  background: var(--icon-accent-soft);
  margin: 0 auto 18px !important;
  display: grid;
  place-items: center;
  color: var(--icon-accent);
  box-shadow: 0 0 22px rgba(106, 229, 196, 0.07);
}

.card-icon.warning {
  color: var(--icon-accent);
  border-color: var(--icon-accent-border);
  background: var(--icon-accent-soft);
}

.card .card-icon,
.document-card .card-icon,
.office-card .card-icon,
.risk-box .card-icon {
  display: grid;
  color: var(--icon-accent);
}

.card-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.CounterpartyCards .card {
  background:
    linear-gradient(180deg, rgba(0, 174, 239, 0.075), rgba(255, 255, 255, 0.035)),
    var(--panel);
}

.card h3 { margin-bottom: 10px; }
.card p, .card li { color: var(--muted-2); }
.card ul, .risk-box ul { padding-left: 18px; margin: 14px 0 0; }
.card li + li, .risk-box li + li { margin-top: 8px; }

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.kpi {
  padding: 20px;
  min-height: 126px;
  border-color: rgba(0, 174, 239, 0.26);
  background:
    linear-gradient(180deg, rgba(0, 174, 239, 0.095), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
}

.kpi-value {
  font-size: 38px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.05;
}

.kpi-label {
  color: var(--muted);
  margin-top: 8px;
  font-size: 13px;
}

.swissquote-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 174, 239, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 0%, rgba(0, 174, 239, 0.18), transparent 24rem),
    linear-gradient(145deg, rgba(7, 17, 31, 0.98), rgba(5, 11, 20, 0.94));
  padding: 28px;
}

.swissquote-panel::before {
  content: "";
  position: absolute;
  right: -30px;
  top: 18px;
  width: 280px;
  height: 190px;
  border: 1px solid rgba(0, 174, 239, 0.18);
  border-radius: 8px;
  transform: skewX(-10deg);
  background:
    linear-gradient(90deg, transparent 28%, rgba(0, 174, 239, 0.1) 28% 30%, transparent 30% 48%, rgba(0, 174, 239, 0.1) 48% 50%, transparent 50% 68%, rgba(0, 174, 239, 0.1) 68% 70%, transparent 70%),
    linear-gradient(180deg, rgba(0, 174, 239, 0.12), transparent);
  opacity: 0.6;
}

.swissquote-panel > * { position: relative; }

.kpi-note,
.risk-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.flow-step {
  position: relative;
  min-height: 118px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 174, 239, 0.07);
}

.flow-step::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 10px;
  height: 1px;
  background: var(--line);
}

.flow-step:last-child::after { display: none; }
.flow-step span { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; }
.flow-step strong { display: block; margin-top: 8px; }

.custody-flow-wrap {
  display: grid;
  gap: 22px;
}

.custody-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.custody-node {
  position: relative;
  min-height: 148px;
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(0, 174, 239, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(5, 11, 20, 0.72);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.custody-node > * {
  position: relative;
  z-index: 1;
}

.custody-node:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 174, 239, 0.55);
  background:
    linear-gradient(180deg, rgba(0, 174, 239, 0.13), rgba(255, 255, 255, 0.045)),
    rgba(5, 11, 20, 0.82);
  box-shadow: 0 18px 42px rgba(0, 174, 239, 0.12);
}

.custody-node::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  width: 13px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 174, 239, 0.62);
}

.custody-node:last-child::after { display: none; }

.custody-node.swissquote-node {
  border-color: var(--line);
  background:
    radial-gradient(circle at 74% 16%, rgba(250, 91, 53, 0.16), transparent 9rem),
    linear-gradient(180deg, rgba(0, 174, 239, 0.08), rgba(255, 255, 255, 0.032)),
    rgba(5, 11, 20, 0.72);
}

.custody-node.swissquote-node::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 8px;
  background: radial-gradient(circle at 68% 22%, rgba(250, 91, 53, 0.18), transparent 9rem);
  opacity: 0.72;
  pointer-events: none;
}

.custody-node.swissquote-node:hover {
  border-color: rgba(250, 91, 53, 0.44);
  background:
    radial-gradient(circle at 74% 16%, rgba(250, 91, 53, 0.24), transparent 10rem),
    linear-gradient(180deg, rgba(0, 174, 239, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(5, 11, 20, 0.82);
  box-shadow: 0 18px 46px rgba(250, 91, 53, 0.12);
}

.custody-node.swissquote-node .node-mini-icon {
  border-color: var(--icon-accent-border);
  color: var(--icon-accent);
  background: var(--icon-accent-soft);
}

.node-step {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: #03101d;
  background: var(--icon-accent);
  font-weight: 900;
  font-size: 12px;
}

.node-title {
  display: block;
  margin-top: 16px;
  font-weight: 900;
  line-height: 1.2;
}

.node-label {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12.5px;
}

.node-mini-icon {
  position: absolute;
  left: 50%;
  right: auto;
  top: 12px;
  transform: translateX(-50%);
  width: 22px;
  height: 22px;
  border: 1px solid var(--icon-accent-border);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: var(--icon-accent);
  background: var(--icon-accent-soft);
}

.node-mini-icon svg {
  width: 14px;
  height: 14px;
  stroke-width: 2;
}

.what-this-means {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.custody-flow-wrap h3 {
  margin: 0 0 18px;
  line-height: 1.12;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.scope-column {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 0%, rgba(0, 174, 239, 0.12), transparent 12rem),
    rgba(255, 255, 255, 0.035);
  padding: 20px;
}

.scope-column h3 { margin-bottom: 14px; }

.scope-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.scope-column li {
  position: relative;
  color: var(--muted-2);
  padding-left: 22px;
  font-size: 14px;
}

.scope-column li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--icon-accent);
  box-shadow: 0 0 12px rgba(106, 229, 196, 0.34);
}

.scope-column.caution li::before {
  background: var(--warning);
  box-shadow: 0 0 12px rgba(217, 164, 65, 0.42);
}

.prime-volume-section {
  padding-top: 46px;
  padding-bottom: 46px;
}

.prime-volume-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1.14fr);
  gap: 36px;
  align-items: center;
  border: 1px solid rgba(106, 229, 196, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 14%, rgba(106, 229, 196, 0.18), transparent 22rem),
    radial-gradient(circle at 18% 86%, rgba(0, 174, 239, 0.16), transparent 18rem),
    linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(5, 11, 20, 0.96));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
  padding: 34px;
}

.prime-volume-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
  opacity: 0.55;
}

.prime-volume-copy,
.prime-volume-metric {
  position: relative;
  z-index: 1;
}

.prime-volume-copy h2 {
  max-width: 620px;
  font-size: clamp(34px, 4vw, 58px);
}

.prime-volume-copy p {
  max-width: 640px;
  margin-top: 16px;
  color: var(--muted-2);
  font-size: 17px;
}

.prime-volume-metric {
  border-left: 1px solid rgba(106, 229, 196, 0.24);
  padding-left: 34px;
}

.volume-label {
  display: block;
  color: var(--icon-accent);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.volume-number {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-size: clamp(62px, 7.6vw, 116px);
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: -0.04em;
  text-shadow: 0 0 32px rgba(106, 229, 196, 0.18);
}

.volume-number span {
  font-size: 0.42em;
  letter-spacing: 0;
  color: var(--muted-2);
}

.volume-caption {
  display: block;
  margin-top: 10px;
  color: var(--muted-2);
  font-size: 20px;
  font-weight: 850;
}

.prime-volume-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.prime-volume-pill {
  min-height: 74px;
  border: 1px solid rgba(106, 229, 196, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 14px;
}

.prime-volume-pill strong {
  display: block;
  color: var(--text);
  font-size: 14px;
}

.prime-volume-pill span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.prime-volume-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
}

.what-this-means .card {
  min-height: 142px;
}

.market-secondary .card {
  min-height: 154px;
  background: rgba(255, 255, 255, 0.032);
}

.profile-split {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
  gap: 22px;
  align-items: start;
}

.profile-copy {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  padding: 26px;
}

.profile-copy p + p { margin-top: 14px; }

.operating-flow {
  margin-top: 22px;
  border: 1px solid rgba(0, 174, 239, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(0, 174, 239, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(5, 11, 20, 0.54);
  padding: 18px;
}

.operating-flow h3 { font-size: 18px; margin-bottom: 14px; }

.flow-mini {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.flow-mini span {
  position: relative;
  min-height: 76px;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 12px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  color: var(--muted-2);
  background: rgba(255, 255, 255, 0.035);
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.28;
  text-align: center;
  overflow-wrap: anywhere;
  min-width: 0;
}

.flow-mini span::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 10px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 174, 239, 0.48);
}

.flow-mini span:last-child::after { display: none; }

.home-reporting .operating-flow {
  max-width: 100%;
}

.home-reporting .flow-mini {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.home-reporting .flow-mini span {
  min-height: 70px;
  padding: 12px 10px;
}

.home-reporting .flow-mini span::after {
  display: none;
}

.crosslink-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.crosslink-card {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 24px;
}

.crosslink-card p { margin: 10px 0 20px; }

.disclaimer-note {
  margin-top: 18px;
  border: 1px solid rgba(245, 184, 75, 0.32);
  border-radius: 8px;
  background: rgba(245, 184, 75, 0.07);
  padding: 16px;
}

.disclaimer-note p {
  color: var(--muted-2);
  font-size: 13px;
}

.document-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(0, 174, 239, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(5, 11, 20, 0.56);
  padding: 22px;
}

.document-checklist span {
  position: relative;
  color: var(--muted-2);
  padding-left: 24px;
  font-size: 14px;
}

.document-checklist span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--icon-accent);
  border-bottom: 2px solid var(--icon-accent);
  transform: rotate(-45deg);
}

.about-page {
  background:
    radial-gradient(circle at 18% 6%, rgba(0, 174, 239, 0.10), transparent 23rem),
    radial-gradient(circle at 86% 18%, rgba(106, 229, 196, 0.08), transparent 20rem);
}

.about-hero {
  padding-bottom: 76px;
}

.about-hero .hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.88fr);
}

.about-status-strip {
  margin-top: 22px;
  max-width: 620px;
  padding: 13px 16px;
  border-left: 2px solid var(--icon-accent);
  background: rgba(106, 229, 196, 0.06);
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.about-snapshot-panel {
  padding: 28px;
}

.about-snapshot-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.about-snapshot-head span:first-child {
  color: var(--text);
  font-weight: 950;
  font-size: 18px;
}

.about-snapshot-head span:last-child {
  color: var(--icon-accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-section .section-head {
  margin-bottom: 34px;
}

.about-two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: 48px;
  align-items: start;
}

.about-copy {
  max-width: 590px;
}

.about-copy h2,
.about-section h2 {
  max-width: 760px;
}

.about-copy p {
  margin-top: 16px;
  color: var(--muted-2);
  font-size: 17px;
  line-height: 1.75;
}

.about-copy .action-row {
  margin-top: 26px;
}

.about-factsheet {
  border-top: 1px solid rgba(106, 229, 196, 0.24);
  border-bottom: 1px solid rgba(106, 229, 196, 0.18);
  background:
    linear-gradient(145deg, rgba(106, 229, 196, 0.045), rgba(0, 174, 239, 0.045)),
    rgba(8, 18, 30, 0.72);
  padding: 8px 0;
}

.about-fact-row {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 22px;
  padding: 15px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.about-fact-row:last-child {
  border-bottom: 0;
}

.about-fact-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-fact-value {
  min-width: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.about-fact-value a {
  color: var(--icon-accent);
}

.about-operating-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
  gap: 52px;
  align-items: start;
}

.about-pillar-list {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.about-pillar {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.about-pillar strong {
  display: block;
  color: var(--text);
  font-size: 18px;
  font-weight: 950;
}

.about-pillar p {
  margin-top: 8px;
  color: var(--muted-2);
}

.about-operating-flow {
  position: relative;
  padding: 8px 0 0 30px;
  border-left: 1px solid rgba(106, 229, 196, 0.36);
}

.about-flow-step {
  position: relative;
  display: grid;
  gap: 7px;
  padding: 0 0 26px;
}

.about-flow-step:last-child {
  padding-bottom: 0;
}

.about-flow-step::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 3px;
  width: 13px;
  height: 13px;
  border: 2px solid var(--icon-accent);
  border-radius: 50%;
  background: var(--bg-main);
  box-shadow: 0 0 0 6px rgba(106, 229, 196, 0.08);
}

.about-flow-step span {
  color: var(--icon-accent);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-flow-step strong {
  color: var(--text);
  font-size: 19px;
  line-height: 1.25;
}

.about-flow-step p {
  max-width: 620px;
  color: var(--muted-2);
  line-height: 1.55;
}

.about-scope-panel,
.about-control-matrix,
.about-document-panel,
.about-review-panel {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(0, 174, 239, 0.035)),
    rgba(8, 18, 30, 0.76);
}

.about-scope-row {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 210px;
  gap: 22px;
  align-items: start;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-scope-row:last-child {
  border-bottom: 0;
}

.about-scope-row strong {
  color: var(--text);
  font-size: 18px;
  font-weight: 950;
}

.about-scope-row p {
  color: var(--muted-2);
  line-height: 1.6;
}

.about-scope-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.about-regulatory-combo {
  display: grid;
  gap: 24px;
}

.about-control-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}

.about-control-group {
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.about-control-group:last-child {
  border-right: 0;
}

.about-control-group h3 {
  color: var(--text);
  font-size: 18px;
  margin-bottom: 16px;
}

.about-control-group ul,
.about-doc-group ul,
.about-review-list,
.about-service-band ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-control-group li,
.about-doc-group li,
.about-review-list li,
.about-service-band li {
  position: relative;
  padding-left: 22px;
  color: var(--muted-2);
  line-height: 1.45;
}

.about-control-group li::before,
.about-doc-group li::before,
.about-review-list li::before,
.about-service-band li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--icon-accent);
  box-shadow: 0 0 12px rgba(106, 229, 196, 0.35);
}

.about-service-architecture {
  display: grid;
  gap: 16px;
}

.about-service-band {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 30px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.about-service-band:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.about-service-band h3 {
  color: var(--text);
  font-size: 22px;
  line-height: 1.15;
}

.about-link-panels {
  display: grid;
  gap: 6px;
  margin-top: 24px;
}

.about-link-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.about-link-panel:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.about-link-panel h3 {
  font-size: 22px;
}

.about-link-panel p {
  max-width: 760px;
  margin-top: 8px;
  color: var(--muted-2);
}

.about-link-cta {
  display: inline-flex;
  margin-top: 14px;
  color: var(--icon-accent);
  font-size: 13px;
  font-weight: 950;
}

.about-link-arrow {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(106, 229, 196, 0.38);
  border-radius: 50%;
  color: var(--icon-accent);
  font-size: 22px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.about-link-panel:hover .about-link-arrow {
  transform: translateX(4px);
  background: rgba(106, 229, 196, 0.08);
}

.about-jurisdiction-rows {
  display: grid;
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.about-review-row {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 26px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.about-review-row strong {
  color: var(--text);
  font-size: 18px;
}

.about-review-row p {
  color: var(--muted-2);
  line-height: 1.6;
}

.about-document-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}

.about-doc-group {
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.about-doc-group:last-child {
  border-right: 0;
}

.about-doc-group h3 {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 18px;
}

.about-document-actions {
  margin-top: 24px;
}

.about-principles-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(106, 229, 196, 0.24);
  border-bottom: 1px solid rgba(106, 229, 196, 0.18);
}

.about-principle {
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.about-principle:last-child {
  border-right: 0;
}

.about-principle strong {
  display: block;
  color: var(--text);
  font-size: 19px;
  margin-bottom: 10px;
}

.about-principle p {
  color: var(--muted-2);
  line-height: 1.55;
}

.about-review-cta .cta-band {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.5fr);
}

.about-review-panel {
  padding: 24px;
}

.about-review-panel h3 {
  margin-bottom: 16px;
  color: var(--text);
}

.about-text-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  color: var(--icon-accent);
  font-weight: 900;
}

.key-fact-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.key-fact {
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(0, 174, 239, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.035);
}

.key-fact span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.key-fact strong {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.25;
}

.product-visual {
  border: 1px solid rgba(0, 174, 239, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 184, 75, 0.09), transparent 12rem),
    radial-gradient(circle at 86% 12%, rgba(0, 174, 239, 0.16), transparent 18rem),
    linear-gradient(145deg, rgba(7, 17, 31, 0.94), rgba(5, 11, 20, 0.92));
  padding: 24px;
}

.spec-checklist {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.spec-item {
  min-height: 86px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  padding: 14px;
  display: grid;
  align-content: center;
  gap: 6px;
}

.spec-item span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.spec-item strong {
  color: var(--text);
  font-size: 14px;
}

.terminal-mockup {
  border: 1px solid rgba(0, 174, 239, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    rgba(5, 11, 20, 0.72);
  background-size: 28px 28px;
  padding: 18px;
}

.terminal-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 800;
}

.terminal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.terminal-cell {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 12px;
}

.terminal-cell span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.terminal-cell strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
}

.commodity-risk .card {
  border-color: rgba(245, 184, 75, 0.22);
}

.related-doc-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
}

.related-doc-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.timeline-item {
  border-left: 2px solid var(--cyan);
  padding: 10px 14px 10px 18px;
  background: rgba(255, 255, 255, 0.035);
  border-radius: 0 8px 8px 0;
}

.timeline-item span { color: var(--cyan); font-weight: 900; font-size: 13px; }
.timeline-item strong { display: block; margin-top: 7px; }

.onboarding-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.onboarding-phase {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 0%, rgba(106, 229, 196, 0.08), transparent 13rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.048), rgba(255, 255, 255, 0.025)),
    rgba(5, 11, 20, 0.58);
  padding: 22px;
}

.onboarding-phase::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--icon-accent), transparent);
  opacity: 0.48;
}

.onboarding-phase-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.phase-number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #03101d;
  background: var(--icon-accent);
  font-size: 13px;
  font-weight: 900;
}

.phase-kicker {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.phase-title {
  display: block;
  color: var(--text);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.12;
}

.phase-items {
  position: relative;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.phase-items li {
  position: relative;
  min-height: 46px;
  padding: 11px 12px 11px 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(8, 18, 30, 0.68);
  color: var(--muted-2);
  font-size: 14px;
  font-weight: 750;
}

.phase-items li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 17px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--icon-accent);
  border-bottom: 2px solid var(--icon-accent);
  transform: rotate(-45deg);
}

.identity-card { overflow: hidden; }
.identity-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  border-bottom: 1px solid var(--line-soft);
}
.identity-row:last-child { border-bottom: 0; }
.identity-row span,
.identity-row strong { padding: 15px 18px; }
.identity-row span { color: var(--muted); background: rgba(255, 255, 255, 0.035); }
.identity-row strong { color: var(--text); font-weight: 700; }
.identity-row strong a { color: var(--text); text-decoration: none; }
.identity-row strong a:hover { color: var(--cyan); }

.document-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.document-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}

.doc-meta {
  margin-top: 14px;
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  padding-left: 12px;
  border-left: 1px solid rgba(0, 174, 239, 0.24);
}

.document-card .btn { margin-top: auto; align-self: flex-start; }

.faq-list {
  display: grid;
  gap: 12px;
}

details.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--panel);
  padding: 0;
}

.faq-item summary {
  padding: 18px 20px;
  cursor: pointer;
  color: var(--text);
  font-weight: 800;
}

.faq-item p {
  padding: 0 20px 20px;
  color: var(--muted-2);
}

.risk-box {
  border-color: rgba(245, 184, 75, 0.38);
  background: rgba(245, 184, 75, 0.08);
  padding: 20px;
}

.risk-box strong { color: var(--warning); }

.notice-box {
  padding: 20px;
  border: 1px solid rgba(217, 164, 65, 0.34);
  border-radius: 8px;
  background: rgba(217, 164, 65, 0.07);
}

.notice-box strong {
  display: block;
  color: var(--text);
  margin-bottom: 8px;
}

.routing-list {
  display: grid;
  gap: 10px;
}

.routing-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--panel);
}

.routing-row span { color: var(--muted); }
.routing-row strong { color: var(--text); }

.document-status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.document-card .doc-purpose {
  color: var(--muted-2);
  margin: 12px 0;
}

.platform-disclaimer {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.035);
}

th, td {
  padding: 15px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted-2);
}

th { color: var(--text); background: rgba(0, 174, 239, 0.08); }
tr:last-child td { border-bottom: 0; }

.cta-band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.18), rgba(27, 117, 188, 0.05)),
    rgba(255, 255, 255, 0.04);
  padding: 34px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.cta-band p { max-width: 640px; margin-top: 10px; }

.dd-cta .cta-band {
  align-items: stretch;
  background:
    radial-gradient(circle at 84% 10%, rgba(0, 174, 239, 0.17), transparent 17rem),
    linear-gradient(135deg, rgba(0, 174, 239, 0.14), rgba(27, 117, 188, 0.04));
}

.dd-cta .cta-band > div:first-child {
  display: grid;
  align-content: center;
}

.dd-pack {
  min-width: 340px;
  border: 1px solid rgba(0, 174, 239, 0.34);
  border-radius: 8px;
  background: rgba(5, 11, 20, 0.72);
  padding: 18px;
}

.dd-pack-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
  font-weight: 900;
  margin-bottom: 14px;
}

.dd-pack-title span:last-child {
  color: var(--cyan);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.checklist {
  display: grid;
  gap: 9px;
}

.checklist span {
  position: relative;
  color: var(--muted-2);
  font-size: 13px;
  padding-left: 24px;
}

.checklist span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--icon-accent);
  border-bottom: 2px solid var(--icon-accent);
  transform: rotate(-45deg);
}

.important-info {
  border: 1px solid rgba(245, 184, 75, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(245, 184, 75, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(5, 11, 20, 0.62);
  padding: 24px;
}

.important-info h2 { font-size: 32px; }
.important-info p { margin-top: 12px; color: var(--muted-2); }

.office-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.office-card { padding: 24px; }
.office-card h3 { margin-bottom: 10px; }

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  min-height: 44px;
  padding: 10px 12px;
  font: inherit;
}

.contact-form textarea { min-height: 134px; resize: vertical; }
.contact-form .wide { grid-column: 1 / -1; }
.consent { display: flex; align-items: flex-start; gap: 10px; color: var(--muted-2); font-size: 13px; }
.consent input { width: 18px; min-height: 18px; margin-top: 3px; }

.site-footer {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid rgba(0, 174, 239, 0.2);
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 174, 239, 0.11), transparent 30rem),
    linear-gradient(180deg, rgba(5, 11, 20, 0.94), #030812);
  padding: 54px 22px 28px;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.34;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent);
}

.footer-grid {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.footer-brand .brand-logo {
  width: 200px;
  max-height: 70px;
}
.footer-title { font-weight: 900; margin-bottom: 12px; color: var(--text); }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: var(--muted-2); font-size: 14px; }
.footer-links a:hover { color: var(--cyan); }
.footer-small { color: var(--muted); font-size: 12px; margin-top: 16px; }
.footer-small a { color: var(--muted-2); text-decoration: none; }
.footer-small a:hover { color: var(--cyan); }

.legal-block {
  position: relative;
  max-width: var(--max);
  margin: 30px auto 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  display: grid;
  gap: 12px;
}

.legal-block p { color: var(--muted); font-size: 12px; }

@media (max-width: 1400px) and (min-width: 1181px) {
  .header-inner { gap: 12px; }
  .brand { flex-basis: 196px; min-width: 196px; }
  .brand-logo { width: 196px; max-height: 74px; }
  .nav-links a,
  .nav-links summary { padding: 0 7px; font-size: 12.2px; }
  .nav-actions { gap: 6px; }
  .nav-actions .btn { min-height: 40px; padding: 0 13px; font-size: 12.4px; }
  .nav-actions .btn.small { display: none; }
}

@media (max-width: 1180px) {
  .header-inner { width: min(calc(100% - 36px), var(--max)); }
  .header-compliance-inner { width: min(calc(100% - 36px), var(--max)); }
  .header-inner { align-items: flex-start; flex-wrap: wrap; }
  .nav-button { display: flex; }
  .site-nav {
    display: none;
    flex-basis: 100%;
    align-items: flex-start;
    padding-top: 12px;
  }
  .nav-toggle:checked ~ .site-nav { display: grid; gap: 14px; }
  .nav-links, .nav-actions { width: 100%; justify-content: flex-start; flex-wrap: wrap; }
  .nav-links a, .nav-links summary { width: 100%; }
  .nav-links details { width: 100%; }
  .nav-dropdown { position: static; box-shadow: none; margin: 4px 0 8px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-panel { justify-self: stretch; max-width: none; }
  .hero { min-height: auto; padding-top: 78px; }
  .trust-grid, .grid-4, .kpi-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-pill-grid, .what-this-means, .profile-split, .flow-mini, .key-fact-grid, .spec-checklist, .scope-grid, .home-reporting { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .market-strip-inner { grid-template-columns: 1fr; }
  .market-strip-note { grid-column: auto; }
  .custody-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .custody-node::after { display: none; }
  .flow-mini span::after { display: none; }
  .onboarding-process { grid-template-columns: 1fr; }
  .prime-volume-shell { grid-template-columns: 1fr; }
  .prime-volume-metric { border-left: 0; border-top: 1px solid rgba(106, 229, 196, 0.24); padding-left: 0; padding-top: 26px; }
  .about-hero .hero-grid,
  .about-two-col,
  .about-operating-layout,
  .about-review-cta .cta-band { grid-template-columns: 1fr; }
  .about-control-matrix,
  .about-document-panel,
  .about-principles-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-control-group:nth-child(2),
  .about-doc-group:nth-child(2),
  .about-principle:nth-child(2) { border-right: 0; }
  .about-control-group:nth-child(3),
  .about-doc-group:nth-child(3),
  .about-principle:nth-child(3),
  .about-principle:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, 0.08); }
  .about-service-band { grid-template-columns: 240px minmax(0, 1fr); }
  .flow { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .flow-step::after { display: none; }
  h1 { font-size: 58px; }
  h2 { font-size: 40px; }
}

@media (max-width: 760px) {
  .brand { min-width: 0; }
  .brand-mark { display: none; }
  .header-compliance-inner {
    min-height: 0;
    padding: 7px 0;
    display: grid;
    gap: 2px;
    font-size: 11px;
  }
  .section { padding: 58px 18px; }
  .hero { padding: 62px 18px 46px; background-size: 760px auto; }
  .hero h1 { font-size: 36px; }
  .hero-slide-title { font-size: 36px; }
  .hero-slider-controls { margin-top: 20px; }
  .hero .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .hero .trust-item { min-height: 58px; padding: 11px; }
  .hero .trust-item strong { font-size: 13.5px; line-height: 1.25; }
  h1 { font-size: 40px; }
  h2 { font-size: 30px; }
  .lead { font-size: 16px; }
  .section-head, .cta-band { display: grid; }
  .flagship-shell { padding: 24px; }
  .flagship-top { grid-template-columns: 1fr; align-items: start; }
  .feature-pill-grid, .trust-grid, .grid-2, .grid-3, .grid-4, .kpi-grid, .document-grid, .document-status-grid, .timeline, .office-grid, .footer-grid, .contact-form, .custody-flow, .what-this-means, .profile-split, .flow-mini, .crosslink-grid, .document-checklist, .key-fact-grid, .spec-checklist, .terminal-grid, .routing-row, .scope-grid { grid-template-columns: 1fr; }
  .onboarding-process { grid-template-columns: 1fr; }
  .home-reporting { grid-template-columns: 1fr; }
  .prime-volume-section { padding: 32px 18px; }
  .prime-volume-shell { padding: 24px; }
  .prime-volume-grid { grid-template-columns: 1fr; }
  .volume-caption { font-size: 17px; }
  .about-status-strip { font-size: 12px; }
  .about-two-col,
  .about-operating-layout,
  .about-scope-row,
  .about-control-matrix,
  .about-service-band,
  .about-link-panel,
  .about-review-row,
  .about-document-panel,
  .about-principles-band,
  .about-review-cta .cta-band { grid-template-columns: 1fr; }
  .about-fact-row { grid-template-columns: 1fr; gap: 6px; padding: 14px 16px; }
  .about-snapshot-head { display: grid; }
  .about-control-group,
  .about-doc-group,
  .about-principle {
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .about-control-group:first-child,
  .about-doc-group:first-child,
  .about-principle:first-child { border-top: 0; }
  .about-service-band { gap: 14px; }
  .about-link-panel { gap: 14px; }
  .about-link-arrow { width: 38px; height: 38px; }
  .review-row { grid-template-columns: 1fr; gap: 4px; }
  .dd-pack { min-width: 0; }
  .flow { grid-template-columns: 1fr; }
  .identity-row { grid-template-columns: 1fr; }
  .identity-row span { padding-bottom: 4px; }
  .identity-row strong { padding-top: 6px; }
  .contact-form .wide { grid-column: auto; }
  .custody-flow-wrap h3 { margin-bottom: 22px; }
}

/* =====================================================================
   MOTION LAYER — entrance reveals, ambient drift, hover micro-interactions
   ===================================================================== */

@keyframes dm-fade-up {
  from { opacity: 0; transform: translate3d(0, 26px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes dm-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes dm-fade-right {
  from { opacity: 0; transform: translate3d(-22px, 0, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes dm-fade-left {
  from { opacity: 0; transform: translate3d(22px, 0, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes dm-pop-in {
  0%   { opacity: 0; transform: scale(0.92); }
  60%  { opacity: 1; transform: scale(1.02); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes dm-pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(106, 229, 196, 0.55), 0 0 24px rgba(106, 229, 196, 0.22); }
  70%  { box-shadow: 0 0 0 14px rgba(106, 229, 196, 0), 0 0 26px rgba(106, 229, 196, 0.18); }
  100% { box-shadow: 0 0 0 0 rgba(106, 229, 196, 0), 0 0 24px rgba(106, 229, 196, 0.22); }
}

@keyframes dm-pulse-ring-orange {
  0%   { box-shadow: 0 0 0 0 rgba(250, 91, 53, 0.5), 0 0 26px rgba(250, 91, 53, 0.22); }
  70%  { box-shadow: 0 0 0 16px rgba(250, 91, 53, 0), 0 0 28px rgba(250, 91, 53, 0.18); }
  100% { box-shadow: 0 0 0 0 rgba(250, 91, 53, 0), 0 0 26px rgba(250, 91, 53, 0.22); }
}

@keyframes dm-flow-line {
  0%   { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

@keyframes dm-shimmer-sweep {
  0%   { transform: translateX(-120%) skewX(-22deg); }
  60%  { transform: translateX(220%) skewX(-22deg); }
  100% { transform: translateX(220%) skewX(-22deg); }
}

@keyframes dm-gradient-drift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes dm-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -6px, 0); }
}

@keyframes dm-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes dm-bg-drift {
  0%   { transform: translate3d(0, 0, 0); }
  50%  { transform: translate3d(-14px, 6px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

@keyframes dm-blink-soft {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 1; }
}

/* Body ambient backdrop drift */
body::before {
  animation: dm-bg-drift 22s ease-in-out infinite;
  will-change: transform;
}

/* Header sweep */
.site-header::before {
  background-size: 200% 100%;
  animation: dm-flow-line 14s linear infinite;
}

/* Nav link underline animation */
.nav-links a,
.nav-links summary {
  position: relative;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease;
}

.nav-links a::after,
.nav-links summary::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--icon-accent));
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 200ms ease;
  pointer-events: none;
}

.nav-links a:hover::after,
.nav-links summary:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  opacity: 1;
}

/* Buttons: shimmer sweep + lift */
.btn {
  position: relative;
  overflow: hidden;
  transition: transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 240ms ease,
              background 220ms ease,
              border-color 220ms ease,
              color 220ms ease;
  isolation: isolate;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.28) 45%, rgba(255, 255, 255, 0.04) 55%, transparent 70%);
  transform: translateX(-120%) skewX(-22deg);
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::after {
  animation: dm-shimmer-sweep 900ms ease forwards;
}

.btn:active { transform: translateY(0); }

.btn.primary {
  background-size: 220% 220%;
  background-position: 0% 50%;
  animation: dm-gradient-drift 9s ease-in-out infinite;
}

.btn.primary:hover {
  box-shadow: 0 18px 44px rgba(0, 174, 239, 0.32),
              0 0 0 1px rgba(0, 174, 239, 0.35),
              inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

/* Hero entrance — staggered reveal on the active slide (homepage slider)
   AND on static heros (every other page). */
.hero-slide.is-active > div > .eyebrow,
.hero-slide.is-active > div > h1,
.hero-slide.is-active > div > .hero-slide-title,
.hero-slide.is-active > div > .lead,
.hero-slide.is-active > div > .hero-actions,
.hero-slide.is-active > div > .trust-grid,
.hero-slide.is-active > div > .hero-slider-controls,
.hero:not(.hero-slider) > .hero-grid > div > .eyebrow,
.hero:not(.hero-slider) > .hero-grid > div > h1,
.hero:not(.hero-slider) > .hero-grid > div > .hero-slide-title,
.hero:not(.hero-slider) > .hero-grid > div > .lead,
.hero:not(.hero-slider) > .hero-grid > div > .hero-actions,
.hero:not(.hero-slider) > .hero-grid > div > .trust-grid {
  opacity: 0;
  animation: dm-fade-up 720ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-slide.is-active > div > .eyebrow,
.hero:not(.hero-slider) > .hero-grid > div > .eyebrow { animation-delay: 80ms; }
.hero-slide.is-active > div > h1,
.hero-slide.is-active > div > .hero-slide-title,
.hero:not(.hero-slider) > .hero-grid > div > h1,
.hero:not(.hero-slider) > .hero-grid > div > .hero-slide-title { animation-delay: 160ms; }
.hero-slide.is-active > div > .lead,
.hero:not(.hero-slider) > .hero-grid > div > .lead { animation-delay: 260ms; }
.hero-slide.is-active > div > .hero-actions,
.hero:not(.hero-slider) > .hero-grid > div > .hero-actions { animation-delay: 360ms; }
.hero-slide.is-active > div > .trust-grid,
.hero:not(.hero-slider) > .hero-grid > div > .trust-grid { animation-delay: 440ms; }
.hero-slide.is-active > div > .hero-slider-controls { animation-delay: 540ms; }

.hero-slide.is-active .trust-grid .trust-item,
.hero:not(.hero-slider) .trust-grid .trust-item {
  opacity: 0;
  animation: dm-fade-up 600ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-slide.is-active .trust-grid .trust-item:nth-child(1),
.hero:not(.hero-slider) .trust-grid .trust-item:nth-child(1) { animation-delay: 500ms; }
.hero-slide.is-active .trust-grid .trust-item:nth-child(2),
.hero:not(.hero-slider) .trust-grid .trust-item:nth-child(2) { animation-delay: 580ms; }
.hero-slide.is-active .trust-grid .trust-item:nth-child(3),
.hero:not(.hero-slider) .trust-grid .trust-item:nth-child(3) { animation-delay: 660ms; }
.hero-slide.is-active .trust-grid .trust-item:nth-child(4),
.hero:not(.hero-slider) .trust-grid .trust-item:nth-child(4) { animation-delay: 740ms; }

/* Hero panel — float drift + entrance (slider + static) */
.hero-slide.is-active .hero-panel,
.hero:not(.hero-slider) > .hero-grid > .hero-panel {
  opacity: 0;
  animation: dm-fade-left 760ms cubic-bezier(0.22, 1, 0.36, 1) 200ms forwards,
             dm-float 8s ease-in-out 1.2s infinite;
}

.hero-panel {
  will-change: transform;
}

/* Hero map nodes — sequential reveal + connection line glow flow */
.hero-slide.is-active .hero-map .map-node,
.hero:not(.hero-slider) .hero-map .map-node {
  opacity: 0;
  animation: dm-fade-right 560ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-slide.is-active .hero-map .map-node:nth-child(1),
.hero:not(.hero-slider) .hero-map .map-node:nth-child(1) { animation-delay: 640ms; }
.hero-slide.is-active .hero-map .map-node:nth-child(2),
.hero:not(.hero-slider) .hero-map .map-node:nth-child(2) { animation-delay: 760ms; }
.hero-slide.is-active .hero-map .map-node:nth-child(3),
.hero:not(.hero-slider) .hero-map .map-node:nth-child(3) { animation-delay: 880ms; }
.hero-slide.is-active .hero-map .map-node:nth-child(4),
.hero:not(.hero-slider) .hero-map .map-node:nth-child(4) { animation-delay: 1000ms; }

.map-node {
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 240ms ease,
              background 240ms ease,
              box-shadow 240ms ease;
}

.map-node:hover {
  transform: translateX(4px);
  border-color: rgba(0, 174, 239, 0.55);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32), 0 0 22px rgba(0, 174, 239, 0.18);
}

.map-node::after {
  background: linear-gradient(180deg, var(--cyan), rgba(0, 174, 239, 0.2));
  background-size: 100% 200%;
  animation: dm-flow-line 2.6s linear infinite;
}

.map-dot {
  animation: dm-pulse-ring 2.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.map-node.featured .map-dot {
  animation: dm-pulse-ring-orange 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Hero slide transition — smooth cross-fade */
.hero-slide {
  transition: opacity 600ms ease;
}

/* Scroll-revealed elements (added via JS observer) */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

[data-reveal].in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

[data-reveal="left"] { transform: translate3d(-30px, 0, 0); }
[data-reveal="right"] { transform: translate3d(30px, 0, 0); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal="left"].in-view,
[data-reveal="right"].in-view { transform: translate3d(0, 0, 0); }
[data-reveal="scale"].in-view { transform: scale(1); }

/* Stagger child reveals when parent has [data-reveal-stagger] */
[data-reveal-stagger].in-view > * {
  animation: dm-fade-up 640ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
[data-reveal-stagger].in-view > *:nth-child(1)  { animation-delay: 60ms; }
[data-reveal-stagger].in-view > *:nth-child(2)  { animation-delay: 140ms; }
[data-reveal-stagger].in-view > *:nth-child(3)  { animation-delay: 220ms; }
[data-reveal-stagger].in-view > *:nth-child(4)  { animation-delay: 300ms; }
[data-reveal-stagger].in-view > *:nth-child(5)  { animation-delay: 380ms; }
[data-reveal-stagger].in-view > *:nth-child(6)  { animation-delay: 460ms; }
[data-reveal-stagger].in-view > *:nth-child(7)  { animation-delay: 540ms; }
[data-reveal-stagger].in-view > *:nth-child(8)  { animation-delay: 620ms; }
[data-reveal-stagger].in-view > *:nth-child(9)  { animation-delay: 700ms; }
[data-reveal-stagger].in-view > *:nth-child(10) { animation-delay: 780ms; }
[data-reveal-stagger].in-view > *:nth-child(11) { animation-delay: 860ms; }
[data-reveal-stagger].in-view > *:nth-child(12) { animation-delay: 940ms; }

/* Section-head accent line — animated stretch on reveal */
.section-head::before {
  width: 0;
  transition: width 900ms cubic-bezier(0.22, 1, 0.36, 1) 120ms;
}
.section-head.in-view::before { width: 74px; }

/* Section heading character-ish reveal via gradient sweep */
.section-head h2 {
  background: linear-gradient(90deg, var(--text) 30%, rgba(0, 174, 239, 0.9) 50%, var(--text) 70%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: dm-gradient-drift 9s ease-in-out infinite;
}

/* Cards — shine sweep on hover */
.card,
.kpi,
.document-card,
.office-card,
.identity-card,
.risk-box,
.dd-pack,
.feature-pill,
.custody-node,
.trust-item,
.terminal-cell {
  position: relative;
  isolation: isolate;
}

.card::after,
.kpi::after,
.document-card::after,
.office-card::after,
.identity-card::after,
.feature-pill::after,
.custody-node::after,
.trust-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 55%;
  height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.06) 45%, rgba(0, 174, 239, 0.16) 50%, rgba(255, 255, 255, 0.06) 55%, transparent 100%);
  transform: skewX(-18deg);
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms ease;
  z-index: 0;
}

.card:hover::after,
.kpi:hover::after,
.document-card:hover::after,
.office-card:hover::after,
.identity-card:hover::after,
.feature-pill:hover::after,
.trust-item:hover::after {
  opacity: 1;
  animation: dm-shimmer-sweep 1100ms ease forwards;
}

/* Don't override custody-node's connection line ::after */
.custody-node::after {
  background: var(--cyan);
  left: auto;
  width: 13px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  animation: none;
  box-shadow: 0 0 16px rgba(0, 174, 239, 0.62);
}

.custody-node:hover::after {
  animation: dm-blink-soft 1.2s ease-in-out infinite;
}

/* Card icon hover bloom */
.card-icon,
.node-mini-icon,
.mini-icon {
  transition: transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 280ms ease,
              background 240ms ease,
              color 240ms ease;
}

.card:hover .card-icon,
.document-card:hover .card-icon,
.office-card:hover .card-icon,
.risk-box:hover .card-icon {
  transform: translateY(-3px) scale(1.08) rotate(-3deg);
  box-shadow: 0 0 28px rgba(106, 229, 196, 0.34),
              0 8px 24px rgba(0, 0, 0, 0.28);
}

.custody-node:hover .node-mini-icon {
  transform: translateX(-50%) scale(1.12);
  box-shadow: 0 0 18px rgba(106, 229, 196, 0.4);
}

/* KPI value count-in support */
.kpi-value {
  background: linear-gradient(90deg, var(--text) 40%, var(--cyan) 50%, var(--text) 60%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: dm-gradient-drift 7s ease-in-out infinite;
}

.kpi.in-view .kpi-value {
  animation: dm-pop-in 700ms cubic-bezier(0.22, 1, 0.36, 1) both,
             dm-gradient-drift 7s ease-in-out 700ms infinite;
}

/* Flagship feature pills — number badge glow */
.feature-pill {
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 240ms ease,
              background 240ms ease,
              box-shadow 240ms ease;
}

.feature-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 174, 239, 0.55);
  background: rgba(0, 174, 239, 0.08);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32),
              0 0 22px rgba(0, 174, 239, 0.18);
}

.feature-pill span {
  position: relative;
  display: inline-block;
}

.feature-pill span::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

.feature-pill:hover span::before {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}

/* Flagship-shell — animated gradient glow */
.flagship-shell {
  background:
    radial-gradient(circle at 86% 14%, rgba(0, 174, 239, 0.2), transparent 20rem),
    linear-gradient(135deg, rgba(0, 174, 239, 0.14), rgba(255, 255, 255, 0.035) 50%, rgba(27, 117, 188, 0.08), rgba(0, 174, 239, 0.14));
  background-size: 100% 100%, 220% 220%;
  animation: dm-gradient-drift 16s ease-in-out infinite;
}

/* Market strip — ticker marquee */
.market-strip {
  overflow: hidden;
}

.market-strip-items {
  position: relative;
  flex-wrap: nowrap;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.market-strip-items::before,
.market-strip-items::after {
  content: "";
  flex: 0 0 auto;
}

.market-strip-items.ticker-on {
  flex-wrap: nowrap;
}

.market-strip-items.ticker-on > .ticker-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  width: max-content;
  animation: dm-marquee 26s linear infinite;
}

.market-strip-items.ticker-on > .ticker-track > span {
  flex: 0 0 auto;
  white-space: nowrap;
}

.market-strip:hover .ticker-track {
  animation-play-state: paused;
}

.market-strip-items span {
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.market-strip-items span:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 174, 239, 0.55);
  background: rgba(0, 174, 239, 0.12);
  color: var(--text);
}

/* Custody flow nodes — sequential entrance when parent reveals */
.custody-flow.in-view .custody-node {
  animation: dm-fade-up 640ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.custody-flow.in-view .custody-node:nth-child(1) { animation-delay: 60ms; }
.custody-flow.in-view .custody-node:nth-child(2) { animation-delay: 180ms; }
.custody-flow.in-view .custody-node:nth-child(3) { animation-delay: 300ms; }
.custody-flow.in-view .custody-node:nth-child(4) { animation-delay: 420ms; }
.custody-flow.in-view .custody-node:nth-child(5) { animation-delay: 540ms; }
.custody-flow.in-view .custody-node:nth-child(6) { animation-delay: 660ms; }

/* Custody connection lines animated draw */
.custody-flow .custody-node::after {
  background: linear-gradient(90deg, var(--cyan), rgba(0, 174, 239, 0.2));
  background-size: 200% 100%;
  animation: dm-flow-line 2.4s linear infinite;
}

.custody-flow .custody-node.swissquote-node::after {
  background: linear-gradient(90deg, var(--swissquote-orange), rgba(250, 91, 53, 0.2));
  background-size: 200% 100%;
}

/* Node step badge pulse */
.node-step {
  position: relative;
}

.custody-node:hover .node-step {
  animation: dm-pulse-ring 1.6s ease-out 1;
}

/* Home reporting list bullets — staggered shimmer */
.home-reporting-list span::before {
  animation: dm-blink-soft 2.4s ease-in-out infinite;
}
.home-reporting-list span:nth-child(2)::before { animation-delay: 0.4s; }
.home-reporting-list span:nth-child(3)::before { animation-delay: 0.8s; }

/* Operating flow steps connector animation */
.flow-mini span {
  position: relative;
  transition: transform 220ms ease, color 220ms ease;
}

.flow-mini span:hover { transform: translateY(-2px); color: var(--text); }

/* Terminal mockup — soft scanline animation */
.terminal-mockup {
  position: relative;
}

.terminal-mockup::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.55), transparent);
  filter: blur(1px);
  animation: dm-terminal-scan 4.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes dm-terminal-scan {
  0%   { transform: translateY(0); opacity: 0.2; }
  50%  { transform: translateY(120px); opacity: 0.8; }
  100% { transform: translateY(240px); opacity: 0; }
}

.terminal-cell {
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 220ms ease,
              background 220ms ease;
}

.terminal-cell:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 174, 239, 0.5);
  background: rgba(0, 174, 239, 0.06);
}

/* CTA band — animated ambient glow (extended to other large panels) */
.cta-band,
.prime-volume-shell,
.product-visual,
.about-snapshot-panel,
.about-service-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.cta-band::after,
.prime-volume-shell::after,
.product-visual::after,
.about-snapshot-panel::after,
.about-service-band::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0, 174, 239, 0.22), transparent 42%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 320ms ease;
  z-index: 0;
}

.cta-band:hover::after,
.prime-volume-shell:hover::after,
.product-visual:hover::after,
.about-snapshot-panel:hover::after,
.about-service-band:hover::after { opacity: 1; }

.cta-band > *,
.prime-volume-shell > *,
.product-visual > *,
.about-snapshot-panel > *,
.about-service-band > * { position: relative; z-index: 1; }

/* Important info — gentle pulse on warning border */
.important-info {
  animation: dm-info-pulse 4.8s ease-in-out infinite;
}

@keyframes dm-info-pulse {
  0%, 100% { box-shadow: inset 0 0 0 1px rgba(245, 184, 75, 0); }
  50%      { box-shadow: inset 0 0 0 1px rgba(245, 184, 75, 0.22), 0 0 28px rgba(245, 184, 75, 0.08); }
}

/* Footer links hover lift */
.footer-links a {
  position: relative;
  display: inline-block;
  transition: color 220ms ease, transform 220ms ease, letter-spacing 220ms ease;
}

.footer-links a::before {
  content: "→";
  position: absolute;
  left: -16px;
  opacity: 0;
  color: var(--cyan);
  transition: opacity 220ms ease, left 220ms ease;
}

.footer-links a:hover {
  color: var(--cyan);
  transform: translateX(8px);
}

.footer-links a:hover::before {
  opacity: 1;
  left: -14px;
}

/* Brand logo subtle entrance */
.brand-logo {
  animation: dm-fade-in 600ms ease 60ms both;
}

/* Hero slider dots — emphasized active */
.hero-slider-dot {
  transition: width 360ms cubic-bezier(0.22, 1, 0.36, 1),
              background 280ms ease,
              border-color 280ms ease;
}

.hero-slider-dot.is-active {
  position: relative;
}

.hero-slider-dot.is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(0, 174, 239, 0.45);
  animation: dm-dot-pulse 2.6s ease-out infinite;
  pointer-events: none;
}

@keyframes dm-dot-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0, 174, 239, 0.45); }
  70%  { box-shadow: 0 0 0 10px rgba(0, 174, 239, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 174, 239, 0); }
}

/* Hero slider arrows hover */
.hero-slider-arrow {
  transition: transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1),
              background 220ms ease,
              border-color 220ms ease,
              color 220ms ease;
}

.hero-slider-arrow:hover {
  transform: translateY(-2px) scale(1.06);
}

.hero-slider-arrow[data-hero-prev]:hover { transform: translateY(-2px) translateX(-2px) scale(1.06); }
.hero-slider-arrow[data-hero-next]:hover { transform: translateY(-2px) translateX(2px) scale(1.06); }

/* Checklist tick reveal */
.checklist.in-view span {
  animation: dm-fade-right 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.checklist.in-view span:nth-child(1) { animation-delay: 80ms; }
.checklist.in-view span:nth-child(2) { animation-delay: 160ms; }
.checklist.in-view span:nth-child(3) { animation-delay: 240ms; }
.checklist.in-view span:nth-child(4) { animation-delay: 320ms; }
.checklist.in-view span:nth-child(5) { animation-delay: 400ms; }
.checklist.in-view span:nth-child(6) { animation-delay: 480ms; }
.checklist.in-view span:nth-child(7) { animation-delay: 560ms; }
.checklist.in-view span:nth-child(8) { animation-delay: 640ms; }

/* Subtle glow ring on swissquote panel */
.swissquote-panel::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.18), transparent 70%);
  pointer-events: none;
  animation: dm-float 9s ease-in-out infinite;
}

/* Accessibility — respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero-slide.is-active *,
  .hero:not(.hero-slider) > .hero-grid * { opacity: 1 !important; animation: none !important; }
  .market-strip-items.ticker-on > .ticker-track { animation: none !important; transform: none !important; }
  body::before { animation: none !important; }
}

/* =====================================================================
   VISUAL DEPTH LAYER — backgrounds, color depth, glassmorphism, blooms
   Content is not modified — only paint surfaces are upgraded.
   ===================================================================== */

:root {
  --accent-violet: #8b6dff;
  --accent-violet-soft: rgba(139, 109, 255, 0.18);
  --accent-mint: #6ae5c4;
  --accent-deep: #073047;
  --aurora-1: rgba(0, 174, 239, 0.22);
  --aurora-2: rgba(27, 117, 188, 0.16);
  --aurora-3: rgba(106, 229, 196, 0.12);
  --aurora-4: rgba(139, 109, 255, 0.10);
  --aurora-5: rgba(250, 91, 53, 0.08);
  --glass-bg: rgba(11, 22, 38, 0.62);
  --glass-bg-strong: rgba(13, 26, 44, 0.78);
  --glass-border: rgba(255, 255, 255, 0.085);
  --glass-highlight: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0) 40%);
}

/* Body — multi-layer aurora field */
body {
  background:
    radial-gradient(ellipse 800px 520px at 12% -4%, var(--aurora-1), transparent 60%),
    radial-gradient(ellipse 720px 480px at 92% 8%, var(--aurora-2), transparent 60%),
    radial-gradient(ellipse 540px 360px at 50% 38%, var(--aurora-4), transparent 65%),
    radial-gradient(ellipse 640px 420px at 8% 64%, var(--aurora-3), transparent 60%),
    radial-gradient(ellipse 700px 460px at 96% 86%, var(--aurora-5), transparent 60%),
    linear-gradient(180deg, #03080f 0%, #060f1d 32%, #050b18 64%, #03070e 100%);
  background-attachment: fixed;
}

/* Ambient drifting blobs behind everything */
body::after {
  content: "";
  position: fixed;
  inset: -10vh -10vw;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle 320px at 18% 22%, rgba(0, 174, 239, 0.14), transparent 70%),
    radial-gradient(circle 360px at 82% 28%, rgba(139, 109, 255, 0.10), transparent 72%),
    radial-gradient(circle 380px at 28% 78%, rgba(106, 229, 196, 0.10), transparent 70%),
    radial-gradient(circle 340px at 88% 82%, rgba(250, 91, 53, 0.07), transparent 70%);
  filter: blur(40px);
  animation: dm-aurora-drift 26s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes dm-aurora-drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(-2%, 2%, 0) scale(1.06); }
  100% { transform: translate3d(2%, -1%, 0) scale(1.02); }
}

/* Refined grid overlay */
body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(0, 174, 239, 0.12), transparent 40rem);
  background-size: 84px 84px, 84px 84px, auto;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 85%);
}

/* Header — glassmorphism with neon underline */
.site-header {
  background: linear-gradient(180deg, rgba(4, 9, 16, 0.86), rgba(5, 11, 20, 0.72));
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border-bottom: 1px solid rgba(0, 174, 239, 0.18);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.65) 25%, rgba(139, 109, 255, 0.5) 50%, rgba(0, 174, 239, 0.65) 75%, transparent);
  filter: blur(0.4px);
  pointer-events: none;
}

.site-header::before {
  background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.10), rgba(139, 109, 255, 0.08), rgba(0, 174, 239, 0.10), transparent);
  background-size: 220% 100%;
}

.header-compliance {
  background: linear-gradient(180deg, rgba(3, 8, 14, 0.65), rgba(4, 10, 18, 0.78));
}

/* Nav active/hover — richer */
.nav-links a:hover,
.nav-links summary:hover,
.nav-links a.active,
.nav-links summary.active {
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.18), rgba(139, 109, 255, 0.10));
  border-color: rgba(0, 174, 239, 0.45);
  box-shadow: 0 6px 20px rgba(0, 174, 239, 0.12);
}

/* Nav dropdown — frosted glass */
.nav-dropdown {
  background: linear-gradient(180deg, rgba(8, 18, 32, 0.96), rgba(5, 11, 20, 0.96));
  border: 1px solid rgba(0, 174, 239, 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Hero — atmospheric backdrop */
.hero {
  background:
    radial-gradient(ellipse 900px 520px at 20% 30%, rgba(0, 174, 239, 0.20), transparent 60%),
    radial-gradient(ellipse 780px 480px at 88% 24%, rgba(139, 109, 255, 0.14), transparent 60%),
    radial-gradient(ellipse 640px 420px at 50% 90%, rgba(106, 229, 196, 0.12), transparent 60%),
    linear-gradient(rgba(5, 11, 20, 0.55), rgba(5, 11, 20, 0.92)),
    url("../site/institutional-network.png") center right / contain no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle 320px at 8% 14%, rgba(0, 174, 239, 0.18), transparent 70%),
    radial-gradient(circle 280px at 92% 84%, rgba(139, 109, 255, 0.14), transparent 70%);
  mix-blend-mode: screen;
  opacity: 0.85;
}

.HeroInstitutional.hero::after {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.6) 30%, rgba(139, 109, 255, 0.5) 50%, rgba(0, 174, 239, 0.6) 70%, transparent);
  filter: blur(0.5px);
}

/* Hero panel — deeper glass, gradient border, ambient ring */
.hero-panel,
.flow-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 38%),
    linear-gradient(145deg, rgba(18, 36, 56, 0.92), rgba(8, 18, 32, 0.92));
  border: 1px solid transparent;
  background-clip: padding-box, padding-box;
  position: relative;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(0, 174, 239, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
}

.hero-panel,
.flow-panel { isolation: isolate; }

.hero-panel::after,
.flow-panel::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.55), rgba(139, 109, 255, 0.40) 40%, rgba(106, 229, 196, 0.45) 70%, rgba(0, 174, 239, 0.30));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0.85;
  z-index: 0;
}

.hero-panel > *,
.flow-panel > * { z-index: 1; }

/* Map nodes — frosted */
.map-node {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 50%),
    linear-gradient(180deg, rgba(8, 20, 34, 0.78), rgba(6, 14, 24, 0.86));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 6px 18px rgba(0, 0, 0, 0.32);
}

.map-node.featured {
  background:
    radial-gradient(circle at 88% 0%, rgba(250, 91, 53, 0.26), transparent 9rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 50%),
    linear-gradient(180deg, rgba(22, 14, 16, 0.92), rgba(14, 10, 14, 0.92));
  border-color: rgba(250, 91, 53, 0.45);
  box-shadow:
    inset 0 0 0 1px rgba(250, 91, 53, 0.08),
    0 0 38px rgba(250, 91, 53, 0.14),
    0 8px 22px rgba(0, 0, 0, 0.4);
}

/* Sections — alternating depth */
.section {
  position: relative;
  z-index: 1;
}

.section.alt {
  background:
    radial-gradient(ellipse 900px 360px at 50% 0%, rgba(0, 174, 239, 0.08), transparent 60%),
    radial-gradient(ellipse 700px 320px at 0% 100%, rgba(139, 109, 255, 0.06), transparent 60%),
    linear-gradient(180deg, rgba(5, 11, 20, 0.45), rgba(255, 255, 255, 0.03));
  border-top: 1px solid rgba(0, 174, 239, 0.12);
  border-bottom: 1px solid rgba(0, 174, 239, 0.12);
}

.section.alt::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.45) 30%, rgba(139, 109, 255, 0.35) 50%, rgba(0, 174, 239, 0.45) 70%, transparent);
}

.section.alt::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.35), transparent);
}

/* Section head accent — gradient bar instead of flat cyan */
.section-head::before {
  background: linear-gradient(90deg, rgba(0, 174, 239, 0.85), rgba(139, 109, 255, 0.55) 60%, transparent);
  height: 2px;
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(0, 174, 239, 0.45);
}

/* Market strip — neon rail */
.market-strip {
  background:
    linear-gradient(180deg, rgba(0, 174, 239, 0.05), transparent),
    linear-gradient(90deg, rgba(11, 22, 38, 0.85), rgba(7, 16, 28, 0.92));
  border-top: 1px solid rgba(0, 174, 239, 0.22);
  border-bottom: 1px solid rgba(0, 174, 239, 0.22);
  position: relative;
  overflow: hidden;
}

.market-strip::before,
.market-strip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
}

.market-strip::before {
  top: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.65), rgba(139, 109, 255, 0.5), rgba(0, 174, 239, 0.65), transparent);
}

.market-strip::after {
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.3), transparent);
}

.market-strip-items span,
.market-strip-items.ticker-on > .ticker-track > span {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    linear-gradient(180deg, rgba(11, 22, 38, 0.72), rgba(7, 16, 28, 0.72));
  border: 1px solid rgba(0, 174, 239, 0.20);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Cards — glass surface with gradient hairline border */
.card,
.kpi,
.document-card,
.office-card,
.identity-card,
.risk-box,
.dd-pack,
.trust-item,
.feature-pill,
.scope-column {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 40%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.62), rgba(7, 16, 28, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.trust-item {
  background:
    linear-gradient(180deg, rgba(0, 174, 239, 0.10), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(11, 22, 38, 0.72), rgba(7, 16, 28, 0.78));
}

.CounterpartyCards .card {
  background:
    linear-gradient(180deg, rgba(0, 174, 239, 0.10), transparent 38%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.72), rgba(7, 16, 28, 0.78));
}

/* Card top neon line — already exists, enhance */
.trust-item::before,
.card::before,
.kpi::before,
.document-card::before,
.office-card::before,
.identity-card::before,
.risk-box::before,
.dd-pack::before,
.important-info::before,
.notice-box::before,
.table-wrap::before,
.cta-band::before,
.terminal-mockup::before {
  background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.6) 30%, rgba(139, 109, 255, 0.45) 50%, rgba(0, 174, 239, 0.6) 70%, transparent);
  height: 1px;
  opacity: 0.9;
  filter: blur(0.5px);
}

/* Hover — neon border via gradient mask */
.card:hover,
.kpi:hover,
.document-card:hover,
.office-card:hover,
.identity-card:hover,
.dd-pack:hover,
.trust-item:hover {
  border-color: transparent;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 18px 46px rgba(0, 0, 0, 0.38),
    0 0 36px rgba(0, 174, 239, 0.14),
    0 0 0 1px rgba(0, 174, 239, 0.45);
}

/* Card icon — gradient surface */
.card-icon,
.node-mini-icon,
.mini-icon {
  background:
    linear-gradient(135deg, rgba(106, 229, 196, 0.22), rgba(0, 174, 239, 0.16));
  border-color: rgba(106, 229, 196, 0.55);
  box-shadow:
    0 0 24px rgba(106, 229, 196, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

/* KPI — premium surface */
.kpi {
  background:
    radial-gradient(circle 200px at 100% 0%, rgba(0, 174, 239, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(0, 174, 239, 0.10), rgba(255, 255, 255, 0.03) 40%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.72), rgba(7, 16, 28, 0.82));
  border: 1px solid rgba(0, 174, 239, 0.28);
}

.kpi-label {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 700;
}

/* Flagship shell — premium gradient stage */
.flagship-shell {
  background:
    radial-gradient(circle 480px at 92% 8%, rgba(0, 174, 239, 0.28), transparent 60%),
    radial-gradient(circle 380px at 8% 92%, rgba(139, 109, 255, 0.16), transparent 60%),
    radial-gradient(circle 320px at 50% 50%, rgba(106, 229, 196, 0.06), transparent 70%),
    linear-gradient(135deg, rgba(8, 22, 38, 0.88), rgba(5, 14, 26, 0.88));
  background-size: auto, auto, auto, 220% 220%;
  border: 1px solid rgba(0, 174, 239, 0.4);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(0, 174, 239, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(139, 109, 255, 0.10);
}

.flagship-shell::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 80%);
}

.flagship-shell { isolation: isolate; }
.flagship-shell::before { z-index: 0; }
.flagship-top,
.feature-pill-grid { z-index: 1; }

.flagship-shell::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -120px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.22), transparent 70%);
  pointer-events: none;
  filter: blur(30px);
  animation: dm-float 11s ease-in-out infinite;
  z-index: 0;
}

.feature-pill {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 35%),
    linear-gradient(180deg, rgba(5, 11, 20, 0.72), rgba(3, 8, 14, 0.78));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.feature-pill span {
  background: linear-gradient(135deg, var(--cyan), var(--accent-violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.1em;
}

/* Swissquote panel — premium kpi stage */
.swissquote-panel {
  background:
    radial-gradient(circle 460px at 92% 0%, rgba(0, 174, 239, 0.22), transparent 60%),
    radial-gradient(circle 360px at 0% 100%, rgba(250, 91, 53, 0.10), transparent 60%),
    linear-gradient(145deg, rgba(8, 22, 38, 0.92), rgba(5, 14, 26, 0.92));
  border: 1px solid rgba(0, 174, 239, 0.30);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(0, 174, 239, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Custody flow nodes — tiered colors so the path reads */
.custody-node {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 40%),
    linear-gradient(180deg, rgba(0, 174, 239, 0.10), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(11, 22, 38, 0.78), rgba(7, 16, 28, 0.85));
  border-color: rgba(0, 174, 239, 0.30);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 32px rgba(0, 0, 0, 0.32);
}

.custody-node.swissquote-node {
  background:
    radial-gradient(circle at 50% 14%, rgba(250, 91, 53, 0.24), transparent 9rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 40%),
    linear-gradient(180deg, rgba(22, 14, 16, 0.88), rgba(14, 10, 14, 0.92));
  border-color: rgba(250, 91, 53, 0.50);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 36px rgba(250, 91, 53, 0.12),
    0 14px 32px rgba(0, 0, 0, 0.42);
}

.custody-node.swissquote-node .node-step {
  background: linear-gradient(135deg, var(--swissquote-orange), #ffb796);
  color: #1a0a06;
  box-shadow: 0 0 18px rgba(250, 91, 53, 0.5);
}

.node-step {
  background: linear-gradient(135deg, var(--accent-mint), #bff8e8);
  box-shadow:
    0 0 18px rgba(106, 229, 196, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* CTA band — premium gradient surface */
.cta-band {
  background:
    radial-gradient(circle 380px at 88% 6%, rgba(0, 174, 239, 0.24), transparent 60%),
    radial-gradient(circle 320px at 6% 90%, rgba(139, 109, 255, 0.14), transparent 60%),
    linear-gradient(145deg, rgba(8, 22, 38, 0.88), rgba(5, 14, 26, 0.92));
  border: 1px solid rgba(0, 174, 239, 0.32);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Terminal mockup — glass with subtle glow */
.terminal-mockup {
  background:
    linear-gradient(180deg, rgba(0, 174, 239, 0.07), rgba(255, 255, 255, 0.02) 40%),
    linear-gradient(180deg, rgba(7, 16, 28, 0.92), rgba(4, 10, 18, 0.95));
  border: 1px solid rgba(0, 174, 239, 0.28);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.terminal-cell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 40%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.55), rgba(7, 16, 28, 0.65));
  border: 1px solid rgba(0, 174, 239, 0.18);
}

/* Important info — premium warning surface */
.important-info {
  background:
    radial-gradient(circle 320px at 100% 0%, rgba(245, 184, 75, 0.16), transparent 65%),
    linear-gradient(135deg, rgba(245, 184, 75, 0.09), rgba(255, 255, 255, 0.025) 40%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.72), rgba(7, 16, 28, 0.82));
  border: 1px solid rgba(245, 184, 75, 0.42);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.notice-box,
.risk-box {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 40%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.7), rgba(7, 16, 28, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* DD pack — glass card */
.dd-pack {
  background:
    radial-gradient(circle 280px at 100% 0%, rgba(0, 174, 239, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.78), rgba(7, 16, 28, 0.85));
  border: 1px solid rgba(0, 174, 239, 0.42);
}

/* Checklist tick — soft glow */
.checklist span::before {
  filter: drop-shadow(0 0 6px rgba(106, 229, 196, 0.55));
}

/* Home reporting list bullets — gradient glow */
.home-reporting-list span::before {
  background: linear-gradient(135deg, var(--accent-mint), var(--cyan));
  box-shadow: 0 0 14px rgba(106, 229, 196, 0.5);
}

/* Operating flow mini chips */
.flow-mini span {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 40%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.7), rgba(7, 16, 28, 0.78));
  border-color: rgba(0, 174, 239, 0.24);
}

/* Hero slider dots — gradient when active */
.hero-slider-dot.is-active {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--accent-violet) 60%, var(--blue));
  border-color: rgba(0, 174, 239, 0.7);
  box-shadow:
    0 0 14px rgba(0, 174, 239, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hero-slider-arrow,
.hero-slider-dot {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
    linear-gradient(180deg, rgba(11, 22, 38, 0.5), rgba(7, 16, 28, 0.6));
  border-color: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Footer — atmospheric depth */
.site-footer {
  background:
    radial-gradient(ellipse 760px 420px at 8% 0%, rgba(0, 174, 239, 0.16), transparent 60%),
    radial-gradient(ellipse 640px 360px at 92% 30%, rgba(139, 109, 255, 0.10), transparent 60%),
    radial-gradient(ellipse 500px 320px at 50% 100%, rgba(0, 174, 239, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(5, 11, 20, 0.96) 0%, #020610 100%);
  border-top: 1px solid rgba(0, 174, 239, 0.22);
}

.site-footer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.8) 30%, rgba(139, 109, 255, 0.6) 50%, rgba(0, 174, 239, 0.8) 70%, transparent);
  filter: blur(1px);
}

.legal-block {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 40%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.5), rgba(7, 16, 28, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Primary button — richer gradient */
.btn.primary {
  background:
    linear-gradient(135deg, #21c5ff 0%, var(--cyan) 35%, var(--blue) 75%, #5b86c4 100%);
  background-size: 220% 220%;
  color: #021420;
  box-shadow:
    0 12px 32px rgba(0, 174, 239, 0.30),
    0 0 0 1px rgba(0, 174, 239, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18);
}

.btn.primary:hover {
  box-shadow:
    0 18px 44px rgba(0, 174, 239, 0.42),
    0 0 0 1px rgba(0, 174, 239, 0.5),
    0 0 30px rgba(0, 174, 239, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn.ghost {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 50%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.45), rgba(7, 16, 28, 0.55));
  border-color: rgba(0, 174, 239, 0.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn.ghost:hover {
  background:
    linear-gradient(180deg, rgba(0, 174, 239, 0.14), rgba(0, 174, 239, 0.04)),
    linear-gradient(180deg, rgba(11, 22, 38, 0.5), rgba(7, 16, 28, 0.6));
  border-color: rgba(0, 174, 239, 0.6);
}

/* Form fields — glass */
.contact-form input,
.contact-form select,
.contact-form textarea {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 40%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.55), rgba(7, 16, 28, 0.65));
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(0, 174, 239, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 3px rgba(0, 174, 239, 0.14),
    0 0 24px rgba(0, 174, 239, 0.12);
}

/* Trust grid — cyan-tinted glass */
.trust-grid .trust-item strong {
  background: linear-gradient(135deg, #ffffff 30%, rgba(0, 174, 239, 0.95));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Eyebrow — small gradient label (when visible) */
.eyebrow {
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
  background: linear-gradient(90deg, var(--cyan), var(--accent-violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Scrollbar styling */
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: rgba(3, 8, 14, 0.6); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(0, 174, 239, 0.4), rgba(139, 109, 255, 0.35));
  border-radius: 12px;
  border: 3px solid rgba(3, 8, 14, 0.6);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(0, 174, 239, 0.6), rgba(139, 109, 255, 0.5));
}

/* Selection */
::selection { background: rgba(0, 174, 239, 0.35); color: #ffffff; }
::-moz-selection { background: rgba(0, 174, 239, 0.35); color: #ffffff; }

/* Reduced motion respects depth backgrounds without animations */
@media (prefers-reduced-motion: reduce) {
  body::after { animation: none !important; }
  .flagship-shell::after,
  .swissquote-panel::after { animation: none !important; }
}

/* =====================================================================
   PAGE-SPECIFIC SURFACES — extend the glass/neon layer to every page
   ===================================================================== */

/* Universal glass surface — applies to every panel/card-like component
   across about, prime-services, market and other pages */
.about-snapshot-panel,
.about-factsheet,
.about-fact-row,
.about-pillar,
.about-flow-step,
.about-service-band,
.about-scope-panel,
.about-control-group,
.about-link-panel,
.about-principle,
.about-review-panel,
.about-review-list,
.prime-volume-shell,
.prime-volume-metric,
.prime-volume-pill,
.prime-console,
.onboarding-phase,
.flow-panel,
.flow-step,
.key-fact,
.spec-item,
.table-wrap,
.routing-row,
.faq-item,
.product-visual,
.mini-row {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 40%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.65), rgba(7, 16, 28, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 240ms ease,
              box-shadow 240ms ease,
              background 240ms ease;
}

/* Top neon line for every glass surface */
.about-snapshot-panel::before,
.about-factsheet::before,
.about-pillar::before,
.about-flow-step::before,
.about-service-band::before,
.about-scope-panel::before,
.about-control-group::before,
.about-link-panel::before,
.about-principle::before,
.about-review-panel::before,
.prime-volume-shell::before,
.prime-volume-metric::before,
.prime-volume-pill::before,
.prime-console::before,
.onboarding-phase::before,
.flow-panel::before,
.flow-step::before,
.key-fact::before,
.spec-item::before,
.routing-row::before,
.faq-item::before,
.product-visual::before,
.mini-row::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.6) 30%, rgba(139, 109, 255, 0.45) 50%, rgba(0, 174, 239, 0.6) 70%, transparent);
  opacity: 0.85;
  filter: blur(0.5px);
  pointer-events: none;
  z-index: 1;
}

/* Hover — neon ring + lift */
.about-snapshot-panel:hover,
.about-pillar:hover,
.about-flow-step:hover,
.about-scope-panel:hover,
.about-control-group:hover,
.about-link-panel:hover,
.about-principle:hover,
.about-review-panel:hover,
.prime-volume-pill:hover,
.onboarding-phase:hover,
.flow-panel:hover,
.flow-step:hover,
.key-fact:hover,
.spec-item:hover,
.routing-row:hover,
.faq-item:hover,
.mini-row:hover {
  transform: translateY(-2px);
  border-color: transparent;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 18px 40px rgba(0, 0, 0, 0.36),
    0 0 32px rgba(0, 174, 239, 0.12),
    0 0 0 1px rgba(0, 174, 239, 0.42);
}

/* About — snapshot panel is a hero-tier surface */
.about-snapshot-panel {
  background:
    radial-gradient(circle 380px at 92% 0%, rgba(0, 174, 239, 0.18), transparent 60%),
    radial-gradient(circle 300px at 0% 100%, rgba(139, 109, 255, 0.10), transparent 60%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.78), rgba(7, 16, 28, 0.85));
  border-color: rgba(0, 174, 239, 0.34);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 0 50px rgba(0, 174, 239, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* About — review snapshot rows */
.review-row {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 50%),
    linear-gradient(180deg, rgba(8, 18, 32, 0.88), rgba(5, 11, 20, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: border-color 220ms ease, background 220ms ease;
}

.review-row:hover {
  border-color: rgba(0, 174, 239, 0.45);
  background:
    linear-gradient(180deg, rgba(0, 174, 239, 0.08), transparent 50%),
    linear-gradient(180deg, rgba(8, 18, 32, 0.92), rgba(5, 11, 20, 0.92));
}

.review-label {
  background: linear-gradient(90deg, var(--cyan), var(--accent-violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* About — fact rows */
.about-fact-row {
  background:
    linear-gradient(90deg, rgba(0, 174, 239, 0.06), transparent 50%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.5), rgba(7, 16, 28, 0.62));
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.about-fact-label {
  background: linear-gradient(90deg, var(--cyan), var(--accent-violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* About — pillar list */
.about-pillar {
  background:
    radial-gradient(circle 220px at 100% 0%, rgba(0, 174, 239, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.68), rgba(7, 16, 28, 0.78));
}

/* About — operating flow steps */
.about-flow-step {
  background:
    linear-gradient(180deg, rgba(0, 174, 239, 0.08), rgba(255, 255, 255, 0.02) 40%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.72), rgba(7, 16, 28, 0.82));
  border-color: rgba(0, 174, 239, 0.22);
}

/* About — service architecture band */
.about-service-band {
  background:
    radial-gradient(circle 420px at 92% 0%, rgba(139, 109, 255, 0.14), transparent 60%),
    radial-gradient(circle 320px at 0% 100%, rgba(0, 174, 239, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.7), rgba(7, 16, 28, 0.82));
  border-color: rgba(0, 174, 239, 0.28);
}

/* About — scope panel + control group + link panel */
.about-scope-panel,
.about-control-group,
.about-link-panel,
.about-review-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 40%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.7), rgba(7, 16, 28, 0.78));
}

.about-link-arrow {
  background: linear-gradient(135deg, var(--cyan), var(--accent-violet));
  border-radius: 999px;
  color: #021420;
  box-shadow:
    0 0 22px rgba(0, 174, 239, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 240ms ease;
}

.about-link-panel:hover .about-link-arrow {
  transform: translateX(6px) scale(1.08);
  box-shadow:
    0 0 30px rgba(0, 174, 239, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* About — principle cells */
.about-principle {
  background:
    radial-gradient(circle 220px at 50% 0%, rgba(0, 174, 239, 0.10), transparent 60%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.62), rgba(7, 16, 28, 0.72));
}

/* About — review list */
.about-review-list {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 40%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.62), rgba(7, 16, 28, 0.72));
}

/* About — section anchor backgrounds */
.about-page,
.about-section,
.about-identity,
.about-operating-model,
.about-service-architecture-section,
.about-regulatory-scope,
.about-infrastructure {
  position: relative;
}

/* Prime services — volume shell is hero-tier */
.prime-volume-shell {
  background:
    radial-gradient(circle 480px at 92% 8%, rgba(0, 174, 239, 0.26), transparent 60%),
    radial-gradient(circle 380px at 8% 92%, rgba(106, 229, 196, 0.14), transparent 60%),
    radial-gradient(circle 320px at 50% 50%, rgba(139, 109, 255, 0.10), transparent 70%),
    linear-gradient(135deg, rgba(8, 22, 38, 0.92), rgba(5, 14, 26, 0.92));
  border-color: rgba(0, 174, 239, 0.42);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(0, 174, 239, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.prime-volume-metric {
  background:
    radial-gradient(circle 240px at 100% 0%, rgba(106, 229, 196, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.65), rgba(7, 16, 28, 0.78));
  border-color: rgba(106, 229, 196, 0.32);
}

.prime-volume-pill {
  background:
    linear-gradient(180deg, rgba(0, 174, 239, 0.08), transparent 40%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.62), rgba(7, 16, 28, 0.72));
}

.volume-number {
  background: linear-gradient(90deg, var(--text) 40%, var(--cyan) 50%, var(--text) 60%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: dm-gradient-drift 7s ease-in-out infinite;
}

.volume-label {
  background: linear-gradient(90deg, var(--accent-mint), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Prime services — console */
.prime-console {
  background:
    linear-gradient(180deg, rgba(0, 174, 239, 0.06), transparent 40%),
    linear-gradient(180deg, rgba(8, 18, 32, 0.82), rgba(5, 11, 20, 0.88));
  border-color: rgba(0, 174, 239, 0.28);
  padding: 22px;
  border-radius: 10px;
}

/* Prime services — onboarding phases */
.onboarding-phase {
  background:
    radial-gradient(circle 220px at 100% 0%, rgba(0, 174, 239, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.7), rgba(7, 16, 28, 0.8));
  border-color: rgba(0, 174, 239, 0.26);
}

.phase-number {
  background: linear-gradient(135deg, var(--cyan), var(--accent-violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.phase-kicker {
  background: linear-gradient(90deg, var(--accent-mint), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Custody-safety — flow panel (extends hero-panel treatment if not already) */
.flow-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 38%),
    linear-gradient(145deg, rgba(18, 36, 56, 0.92), rgba(8, 18, 32, 0.92));
  border-color: rgba(0, 174, 239, 0.34);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(0, 174, 239, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Flow steps — gradient surface, neon connector */
.flow-step {
  background:
    linear-gradient(180deg, rgba(0, 174, 239, 0.10), rgba(255, 255, 255, 0.02) 40%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.72), rgba(7, 16, 28, 0.82));
  border-color: rgba(0, 174, 239, 0.28);
}

.flow-step::after {
  background: linear-gradient(90deg, var(--cyan), rgba(0, 174, 239, 0.25));
  background-size: 200% 100%;
  animation: dm-flow-line 2.4s linear infinite;
  height: 2px;
  filter: blur(0.5px);
}

/* Market pages (forex/commodities/indices) — key fact, spec item */
.key-fact {
  background:
    radial-gradient(circle 200px at 100% 0%, rgba(0, 174, 239, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.68), rgba(7, 16, 28, 0.78));
  border-color: rgba(0, 174, 239, 0.24);
}

.spec-item {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 40%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.62), rgba(7, 16, 28, 0.72));
  border-color: rgba(0, 174, 239, 0.20);
}

/* Tables */
.table-wrap {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 40%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.62), rgba(7, 16, 28, 0.72));
  border: 1px solid rgba(0, 174, 239, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 40px rgba(0, 0, 0, 0.34);
}

.table-wrap table { background: transparent; }
.table-wrap th {
  background: linear-gradient(180deg, rgba(0, 174, 239, 0.16), rgba(0, 174, 239, 0.06));
  color: var(--text);
  border-bottom: 1px solid rgba(0, 174, 239, 0.32);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 12px;
}

.table-wrap td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 200ms ease;
}

.table-wrap tr:hover td {
  background: rgba(0, 174, 239, 0.05);
}

/* Operating flow mini-line (markets, home) */
.operating-flow {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 40%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.55), rgba(7, 16, 28, 0.65));
  border: 1px solid rgba(0, 174, 239, 0.20);
  border-radius: 10px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.operating-flow::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.5), rgba(139, 109, 255, 0.4), rgba(0, 174, 239, 0.5), transparent);
  pointer-events: none;
}

.flow-mini span {
  background:
    linear-gradient(180deg, rgba(0, 174, 239, 0.10), transparent 40%),
    linear-gradient(180deg, rgba(8, 18, 32, 0.7), rgba(5, 11, 20, 0.78));
  border: 1px solid rgba(0, 174, 239, 0.22);
}

/* Contact page — routing rows, notice */
.routing-row {
  background:
    linear-gradient(90deg, rgba(0, 174, 239, 0.08), transparent 50%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.62), rgba(7, 16, 28, 0.72));
  border: 1px solid rgba(0, 174, 239, 0.22);
}

.notice-box {
  background:
    radial-gradient(circle 320px at 100% 0%, rgba(245, 184, 75, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.7), rgba(7, 16, 28, 0.8));
  border: 1px solid rgba(245, 184, 75, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 42px rgba(0, 0, 0, 0.32);
}

/* FAQ — items as glass cards */
.faq-item {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 40%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.6), rgba(7, 16, 28, 0.7));
  border: 1px solid rgba(0, 174, 239, 0.20);
  border-radius: 10px;
  padding: 16px 20px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  position: relative;
  transition: color 200ms ease;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cyan);
  font-size: 20px;
  font-weight: 300;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), color 200ms ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  color: var(--accent-violet);
}

.faq-item[open] {
  border-color: rgba(0, 174, 239, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 32px rgba(0, 174, 239, 0.12);
}

/* Platform — product visual */
.product-visual {
  background:
    radial-gradient(circle 420px at 92% 8%, rgba(0, 174, 239, 0.22), transparent 60%),
    radial-gradient(circle 320px at 8% 92%, rgba(139, 109, 255, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.78), rgba(7, 16, 28, 0.88));
  border: 1px solid rgba(0, 174, 239, 0.32);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(0, 174, 239, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Platform — mini stack rows already styled, ensure glow */
.mini-row {
  background:
    linear-gradient(90deg, rgba(0, 174, 239, 0.06), transparent 50%),
    linear-gradient(180deg, rgba(8, 18, 30, 0.85), rgba(5, 11, 20, 0.9));
  border: 1px solid rgba(0, 174, 239, 0.22);
}

/* Identity card (regulation page) — already glass; tighten */
.identity-card {
  background:
    radial-gradient(circle 280px at 100% 0%, rgba(0, 174, 239, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.7), rgba(7, 16, 28, 0.8));
  border: 1px solid rgba(0, 174, 239, 0.30);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 40px rgba(0, 0, 0, 0.32);
}

.identity-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 200ms ease;
}

.identity-row:hover {
  background: rgba(0, 174, 239, 0.05);
}

.identity-row span {
  background: linear-gradient(90deg, var(--cyan), var(--accent-violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: 12px;
}

/* Scope column extra emphasis */
.scope-column {
  background:
    radial-gradient(circle 260px at 100% 0%, rgba(0, 174, 239, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.62), rgba(7, 16, 28, 0.74));
  border: 1px solid rgba(0, 174, 239, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.scope-column.caution {
  background:
    radial-gradient(circle 260px at 100% 0%, rgba(245, 184, 75, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.62), rgba(7, 16, 28, 0.74));
  border-color: rgba(245, 184, 75, 0.36);
}

.scope-column li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--accent-mint);
  border-bottom: 2px solid var(--accent-mint);
  transform: rotate(-45deg);
  filter: drop-shadow(0 0 5px rgba(106, 229, 196, 0.6));
}

/* Phase number — already styled via gradient; add hover */
.onboarding-phase:hover .phase-number {
  filter: drop-shadow(0 0 14px rgba(0, 174, 239, 0.4));
}

/* Reveal targets for new page-specific shells */
.about-snapshot-panel,
.about-factsheet,
.about-pillar-list,
.about-operating-flow,
.about-service-band,
.about-scope-panel,
.about-control-matrix,
.about-link-panels,
.about-link-panel,
.about-principles-band,
.about-review-panel,
.prime-volume-shell,
.prime-volume-metric,
.prime-volume-grid,
.prime-console,
.onboarding-process,
.flow-panel,
.flow,
.key-fact-grid,
.spec-checklist,
.table-wrap,
.operating-flow,
.routing-list,
.faq-list,
.product-visual,
.mini-stack {
  /* Mark these so the JS observer can add fade-in once visible */
  /* (animations.js auto-tags many of these via selector list) */
}

/* Stagger child reveal for newly listed parents */
.about-pillar-list,
.about-operating-flow,
.prime-volume-grid,
.spec-checklist,
.key-fact-grid,
.onboarding-process,
.flow,
.faq-list,
.routing-list,
.mini-stack,
.about-control-matrix,
.about-principles-band,
.about-link-panels {
  /* picked up by JS via [data-reveal-stagger] when added */
}

/* =====================================================================
   DESIGN POLISH LAYER — typography, badges, ornaments, density
   Visible upgrades beyond just animation.
   ===================================================================== */

/* Bring back eyebrow as a visible premium badge */
.eyebrow {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 10px;
  margin-bottom: 18px;
  border: 1px solid rgba(0, 174, 239, 0.35);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.16), rgba(139, 109, 255, 0.10));
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  -webkit-text-fill-color: var(--cyan);
  position: relative;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 6px 18px rgba(0, 174, 239, 0.10);
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--accent-violet));
  box-shadow: 0 0 10px var(--cyan);
  animation: dm-blink-soft 2.4s ease-in-out infinite;
}

/* Hero eyebrow placement — sits at top */
.hero .eyebrow,
.hero-slide .eyebrow,
.about-hero .eyebrow {
  margin-bottom: 22px;
}

/* Section head — eyebrow inline with title */
.section-head .eyebrow {
  margin-bottom: 14px;
}

/* Typography upgrades */
h1, h2, h3 {
  font-feature-settings: "ss01", "ss02", "tnum", "kern";
  letter-spacing: -0.015em;
}

.hero h1,
.hero-slide-title {
  font-size: clamp(42px, 4.8vw, 68px);
  font-weight: 950;
  letter-spacing: -0.025em;
  line-height: 1.02;
  text-shadow: 0 0 36px rgba(0, 174, 239, 0.12);
}

h1 {
  font-weight: 950;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.022em;
  line-height: 1.05;
}

h3 {
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -0.015em;
  line-height: 1.18;
}

.lead {
  font-size: 19px;
  line-height: 1.6;
  color: #c9d3e1;
}

/* Section rhythm — more breathing room */
.section { padding: 96px 22px; }
.section.compact { padding: 60px 22px; }

/* Section head — accent stripe to the left of title, eyebrow visible */
.section-head {
  padding-top: 8px;
  margin-bottom: 40px;
  position: relative;
}

.section-head h2 {
  position: relative;
  padding-left: 22px;
}

.section-head h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8%;
  bottom: 16%;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--cyan), var(--accent-violet));
  box-shadow: 0 0 14px rgba(0, 174, 239, 0.5);
}

/* Section dividers between alt/non-alt sections */
.section + .section.alt::before,
.section.alt + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.32), rgba(139, 109, 255, 0.25), rgba(0, 174, 239, 0.32), transparent);
  pointer-events: none;
}

/* Hero — larger, more cinematic */
.hero { padding: 110px 22px 90px; min-height: 620px; }
.hero-grid { gap: 64px; }

/* Hero h1 — bolder weight + slight gradient sweep on last word optional */
.hero h1 {
  background: linear-gradient(180deg, #ffffff 0%, #e4f3fb 70%, #b8d6e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 18px rgba(0, 174, 239, 0.18));
}

.hero-slide-title {
  background: linear-gradient(180deg, #ffffff 0%, #e4f3fb 70%, #b8d6e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 18px rgba(0, 174, 239, 0.18));
}

/* Hero panel — corner version stamp */
.hero-panel::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 70%);
}

.panel-kicker {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  margin-bottom: 14px;
  border: 1px solid rgba(0, 174, 239, 0.42);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.18), rgba(139, 109, 255, 0.12));
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  position: relative;
  z-index: 2;
}

.panel-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: dm-blink-soft 1.8s ease-in-out infinite;
}

/* Trust grid items — bigger, premium */
.trust-grid {
  gap: 12px;
  margin-top: 32px;
}

.trust-item {
  padding: 14px 16px;
  min-height: 64px;
  border-radius: 10px;
}

.trust-item strong {
  font-size: 14px;
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* Card — chunkier, icon larger */
.card {
  padding: 28px;
  min-height: 200px;
  border-radius: 12px;
}

.card h3 {
  margin-top: 4px;
  margin-bottom: 12px;
  font-size: 19px;
}

.card p {
  font-size: 14.5px;
  line-height: 1.6;
}

.card-icon,
.mini-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 22px !important;
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.16), transparent 60%),
    linear-gradient(135deg, rgba(106, 229, 196, 0.28), rgba(0, 174, 239, 0.22));
  border-color: rgba(106, 229, 196, 0.55);
  box-shadow:
    0 0 28px rgba(106, 229, 196, 0.22),
    0 8px 22px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.card-icon svg,
.mini-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.85;
  filter: drop-shadow(0 0 8px rgba(106, 229, 196, 0.5));
}

.card-icon.warning {
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.16), transparent 60%),
    linear-gradient(135deg, rgba(245, 184, 75, 0.28), rgba(250, 91, 53, 0.18));
  border-color: rgba(245, 184, 75, 0.55);
  box-shadow:
    0 0 28px rgba(245, 184, 75, 0.22),
    0 8px 22px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.card-icon.warning svg {
  filter: drop-shadow(0 0 8px rgba(245, 184, 75, 0.55));
  color: #ffd58a;
}

/* Card hover — icon rotates + scales */
.card:hover .card-icon {
  transform: translateY(-3px) scale(1.10) rotate(-6deg);
}

/* KPI — larger, more premium */
.kpi {
  padding: 24px;
  min-height: 140px;
  border-radius: 12px;
}

.kpi-value {
  font-size: clamp(34px, 3vw, 44px);
  font-weight: 950;
  letter-spacing: -0.025em;
  line-height: 1.0;
}

.kpi-label {
  margin-top: 12px;
  font-size: 11.5px;
  letter-spacing: 0.1em;
}

/* Feature pills — bigger, gradient number, gradient ring badge */
.feature-pill {
  min-height: 110px;
  padding: 20px;
  border-radius: 12px;
  gap: 10px;
}

.feature-pill span {
  display: inline-block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.feature-pill strong {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* Buttons — chunkier and more premium */
.btn {
  min-height: 46px;
  padding: 0 22px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: 10px;
}

.btn.small {
  min-height: 36px;
  padding: 0 14px;
  font-size: 12px;
}

.nav-actions .btn {
  min-height: 46px;
  padding: 0 22px;
  font-size: 13px;
}

.btn.primary {
  background:
    linear-gradient(135deg, #34d2ff 0%, var(--cyan) 30%, var(--blue) 75%, #6a98d2 100%);
  background-size: 220% 220%;
  color: #021420;
  box-shadow:
    0 14px 36px rgba(0, 174, 239, 0.34),
    0 0 0 1px rgba(0, 174, 239, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn.primary::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.5), rgba(139, 109, 255, 0.45), rgba(0, 174, 239, 0.5));
  z-index: -2;
  filter: blur(8px);
  opacity: 0;
  transition: opacity 280ms ease;
}

.btn.primary:hover::before { opacity: 1; }

/* Action row spacing */
.hero-actions,
.action-row {
  gap: 14px;
  margin-top: 34px;
}

/* Market strip — premium ticker rail */
.market-strip {
  padding: 18px 22px;
}

.market-strip-title {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.market-strip-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--accent-violet));
  box-shadow: 0 0 12px var(--cyan);
  animation: dm-blink-soft 1.8s ease-in-out infinite;
}

.market-strip-items span,
.market-strip-items.ticker-on > .ticker-track > span {
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 999px;
}

/* Custody flow nodes — bigger, more elegant */
.custody-node {
  min-height: 170px;
  padding: 22px 18px;
  border-radius: 14px;
}

.node-title {
  margin-top: 22px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.node-step {
  width: 34px;
  height: 34px;
  font-size: 13px;
}

.node-mini-icon {
  top: 14px;
  width: 26px;
  height: 26px;
  border-radius: 8px;
}

.node-mini-icon svg {
  width: 16px;
  height: 16px;
}

/* Section head — eyebrow + h2 + lead grouped */
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: end;
}

.section-head > div:first-child {
  display: flex;
  flex-direction: column;
}

.section-head p {
  max-width: 440px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* Bigger main heading on flagship sections */
.flagship-shell h2 {
  font-size: clamp(36px, 3.8vw, 56px);
}

/* Logo — soft glow on dark backdrop */
.brand-logo {
  filter: drop-shadow(0 0 20px rgba(0, 174, 239, 0.18));
}

.footer-brand .brand-logo {
  filter: drop-shadow(0 0 24px rgba(0, 174, 239, 0.22));
}

/* Nav links — taller, more refined */
.nav-links a,
.nav-links summary {
  min-height: 44px;
  padding: 0 13px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.01em;
  border-radius: 10px;
}

.nav-links a.active {
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.22), rgba(139, 109, 255, 0.14));
  border-color: rgba(0, 174, 239, 0.55);
  box-shadow:
    0 6px 22px rgba(0, 174, 239, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: var(--text);
}

/* Header heightens for breathing room */
.header-inner { min-height: 100px; }
.brand-logo { max-height: 86px; }

/* Footer — bigger logo, denser brand block */
.site-footer { padding: 78px 22px 36px; }

.footer-title {
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--cyan), var(--accent-violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-links a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.005em;
}

/* Eyebrow override — keep gradient text effect only on specific labels */
.eyebrow {
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.18), rgba(139, 109, 255, 0.12));
  -webkit-text-fill-color: var(--cyan);
  color: var(--cyan);
}

/* Important info — bigger title */
.important-info h2 {
  font-size: clamp(26px, 2.4vw, 34px);
}

/* Important info — warning icon prefix */
.important-info h2 {
  display: flex;
  align-items: center;
  gap: 14px;
}

.important-info h2::before {
  content: "!";
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245, 184, 75, 0.4), rgba(250, 91, 53, 0.3));
  border: 1px solid rgba(245, 184, 75, 0.55);
  color: #ffd58a;
  font-size: 22px;
  font-weight: 950;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 22px rgba(245, 184, 75, 0.25);
  flex: 0 0 auto;
}

/* DD pack title — more prominent */
.dd-pack-title {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 174, 239, 0.2);
}

.dd-pack-title span:first-child {
  font-size: 14px;
  font-weight: 900;
}

/* Checklist items — taller, with checkmark in a circle */
.checklist span {
  padding-left: 32px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.5;
}

.checklist span::before {
  width: 11px;
  height: 6px;
  top: 8px;
  left: 6px;
  filter: drop-shadow(0 0 5px rgba(106, 229, 196, 0.7));
}

.checklist span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(106, 229, 196, 0.4);
  background: rgba(106, 229, 196, 0.08);
  z-index: -1;
}

/* Home reporting list — circle bullets become check-style */
.home-reporting-list span {
  padding-left: 28px;
  font-size: 14.5px;
}

.home-reporting-list span::before {
  width: 9px;
  height: 9px;
}

/* Terminal — slightly more premium header */
.terminal-header {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(0, 174, 239, 0.22);
  background: linear-gradient(180deg, rgba(0, 174, 239, 0.10), transparent);
}

.terminal-header span:first-child {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--text);
}

.terminal-header span:last-child {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}

/* Terminal cells — bigger labels */
.terminal-cell {
  padding: 14px 16px;
  min-height: 70px;
}

.terminal-cell span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.terminal-cell strong {
  margin-top: 6px;
  font-size: 14.5px;
  font-weight: 900;
  letter-spacing: -0.005em;
  color: var(--text);
}

/* Onboarding phases — bigger numbers */
.phase-number {
  font-size: 38px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.04em;
}

.phase-kicker {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.phase-title {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--text);
}

/* Map nodes (hero) — slightly more padding */
.map-node {
  padding: 14px;
  min-height: 64px;
  border-radius: 12px;
}

.map-title {
  font-size: 14.5px;
  font-weight: 900;
}

.map-dot {
  width: 42px;
  height: 42px;
  font-size: 13px;
  background: linear-gradient(135deg, var(--accent-mint), #d6ffec);
}

/* Review row (about/prime console) */
.review-row,
.prime-console .review-row {
  padding: 14px 16px;
  border-radius: 10px;
}

.review-label {
  font-size: 11px;
  letter-spacing: 0.12em;
}

.review-value {
  font-size: 14.5px;
  font-weight: 850;
}

/* Subtle gradient line at the start of every non-alt section
   (alt sections already have their own top/bottom neon rails from
   the visual depth layer — don't override them) */
.section:not(.compact):not(.alt):not(.hero)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  max-width: 460px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.22), rgba(139, 109, 255, 0.18), rgba(0, 174, 239, 0.22), transparent);
  opacity: 0.6;
  pointer-events: none;
}

/* Hero map's outermost frame — gentle inner bevel */
.hero-map {
  gap: 12px;
}

/* Make custom panel-kicker visible everywhere */
.panel-kicker { display: inline-flex !important; }

/* Document checklist items */
.document-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.document-checklist span {
  position: relative;
  padding: 12px 14px 12px 38px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 50%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.55), rgba(7, 16, 28, 0.7));
  border: 1px solid rgba(0, 174, 239, 0.22);
  color: var(--muted-2);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.45;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.document-checklist span::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 11px;
  height: 7px;
  border-left: 2px solid var(--accent-mint);
  border-bottom: 2px solid var(--accent-mint);
  transform: rotate(-45deg);
  filter: drop-shadow(0 0 6px rgba(106, 229, 196, 0.55));
}

.document-checklist span:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 174, 239, 0.55);
  background:
    linear-gradient(180deg, rgba(0, 174, 239, 0.08), transparent 50%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.62), rgba(7, 16, 28, 0.78));
}

/* Spec checklist & key fact grid — match style */
.spec-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.spec-item {
  padding: 14px 16px 14px 38px;
  position: relative;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
}

.spec-item::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 11px;
  height: 7px;
  border-left: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(-45deg);
  filter: drop-shadow(0 0 6px rgba(0, 174, 239, 0.55));
}

.key-fact {
  padding: 22px;
  border-radius: 12px;
  display: grid;
  gap: 8px;
  align-content: center;
}

.key-fact strong {
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.022em;
  background: linear-gradient(90deg, var(--text) 40%, var(--cyan) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.key-fact span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--muted);
}

/* Mini stack & mini row — breathing room between stacked cards */
.mini-stack { gap: 16px; }

.mini-row {
  padding: 18px 20px;
  border-radius: 12px;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}

.mini-row .mini-icon {
  margin-bottom: 0 !important;
  width: 48px;
  height: 48px;
}

.mini-row .mini-icon svg {
  width: 22px;
  height: 22px;
}

.mini-title {
  font-size: 15.5px;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.mini-copy {
  margin-top: 6px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* Hero panel uses mini-stack often — give it a bit more breathing room */
.hero-panel .mini-stack { gap: 14px; }
.hero-panel .panel-kicker { margin-bottom: 18px; }

/* Volume number — bigger, premium */
.volume-number {
  font-size: clamp(72px, 8.4vw, 132px);
  font-weight: 950;
  letter-spacing: -0.05em;
  text-shadow: 0 0 48px rgba(106, 229, 196, 0.22);
  background:
    linear-gradient(180deg, #ffffff 0%, #e5fff4 65%, #6ae5c4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.volume-number span {
  font-size: 0.42em;
  -webkit-text-fill-color: var(--muted-2);
  background: none;
}

.volume-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.volume-caption {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.55;
}

/* Trust grid 4-up gap and item heights — responsive */
@media (max-width: 1180px) {
  .section { padding: 78px 18px; }
  .section.compact { padding: 50px 18px; }
  .hero { padding: 80px 18px 60px; min-height: 0; }
  .hero h1, .hero-slide-title { font-size: clamp(36px, 5vw, 50px); }
  h2 { font-size: clamp(28px, 3.4vw, 40px); }
  .section-head { grid-template-columns: 1fr; gap: 18px; }
  .section-head p { max-width: 100%; }
  .important-info h2::before { width: 36px; height: 36px; font-size: 18px; }
  .volume-number { font-size: clamp(58px, 11vw, 96px); }
}

@media (max-width: 760px) {
  .eyebrow { font-size: 10.5px; padding: 4px 10px 4px 8px; }
  .section { padding: 56px 18px; }
  .section.compact { padding: 40px 18px; }
  .hero { padding: 56px 18px 40px; }
  .hero h1, .hero-slide-title { font-size: clamp(30px, 8vw, 42px); }
  h2 { font-size: clamp(24px, 5.5vw, 32px); }
  .card { padding: 22px; min-height: 0; }
  .kpi { padding: 18px; min-height: 0; }
  .kpi-value { font-size: 28px; }
  .feature-pill { min-height: 92px; padding: 16px; }
  .volume-number { font-size: clamp(48px, 14vw, 72px); }
  .section-head h2 { padding-left: 16px; }
  .section-head h2::before { width: 3px; }
  .header-inner { min-height: 78px; }
  .brand-logo { max-height: 64px; }
}

/* =====================================================================
   SPACING POLISH — fix tight gaps that show up across pages
   ===================================================================== */

/* Card grids — give cards breathing room */
.grid-2 { gap: 22px; }
.grid-3 { gap: 22px; }
.grid-4 { gap: 20px; }

/* Hero map — slightly more space between map nodes */
.hero-map { gap: 12px; }

/* Trust grid (hero) */
.trust-grid { gap: 14px; }

/* Checklist items vertical rhythm */
.checklist { gap: 14px; }
.document-checklist { gap: 14px; }
.spec-checklist { gap: 14px; }
.key-fact-grid { gap: 16px; }

/* Footer link columns */
.footer-links { gap: 11px; }

/* FAQ list — each item gets vertical breathing */
.faq-list { display: grid; gap: 14px; }

/* Onboarding phases */
.onboarding-process { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }

/* Routing list */
.routing-list { display: grid; gap: 14px; }

/* Office / scope / about-grid variants */
.office-grid { gap: 22px; }
.scope-grid { gap: 22px; }
.what-this-means { gap: 18px; }

/* About page — multi-column bands */
.about-control-matrix { gap: 0; }
.about-document-panel { gap: 0; }
.about-principles-band { gap: 0; }
.about-pillar-list { display: grid; gap: 16px; }
.about-operating-flow { display: grid; gap: 16px; }
.about-jurisdiction-rows { display: grid; gap: 12px; }
.about-link-panels { display: grid; gap: 18px; }

/* Identity rows — separate each row visually */
.identity-row { padding: 14px 0; }

/* Section head: when the right paragraph is missing, don't reserve empty space */
.section-head:not(:has(> p)) { grid-template-columns: 1fr; }

/* Stack flow-mini chips with breathing room */
.flow-mini { gap: 10px 14px; }

/* Custody flow — bit more space between nodes */
.custody-flow { gap: 16px; }

/* Operating flow chips */
.operating-flow { padding: 22px 22px 22px; }
.operating-flow .flow-mini { margin-top: 4px; }

/* Volume metric — let the giant number breathe */
.prime-volume-metric { padding-left: 38px; }
.volume-caption { margin-top: 12px; font-size: 16px; line-height: 1.55; }
.prime-volume-grid { display: grid; gap: 12px; margin-top: 26px; }
.prime-volume-pill { padding: 14px 16px; border-radius: 10px; }

/* CTA band internal spacing */
.cta-band { padding: 32px; gap: 28px; }
.cta-band p { margin-top: 10px; }

/* DD pack checklist */
.dd-pack .checklist { gap: 12px; }

/* About fact row internal rhythm */
.about-fact-row { padding: 14px 16px; }
.about-factsheet { display: grid; gap: 12px; padding: 16px; }

/* Prime console rows — pad each row a bit more */
.prime-console .review-row { padding: 14px 16px; }
.prime-console { gap: 12px; }
.prime-console .review-snapshot { display: grid; gap: 10px; }

/* Hero panel inner stacks generic */
.hero-panel .review-snapshot { display: grid; gap: 10px; }

/* Document checklist text wrapping */
.document-checklist span { min-height: 50px; display: flex; align-items: center; }

/* Spec item baseline */
.spec-item { min-height: 50px; display: flex; align-items: center; }

@media (max-width: 1180px) {
  .grid-2, .grid-3 { gap: 18px; }
  .grid-4 { gap: 16px; }
  .onboarding-process { grid-template-columns: 1fr; gap: 16px; }
  .custody-flow { gap: 12px; }
  .cta-band { padding: 24px; gap: 18px; }
}

@media (max-width: 760px) {
  .grid-2, .grid-3, .grid-4 { gap: 14px; }
  .hero-map { gap: 10px; }
  .trust-grid { gap: 10px; }
  .checklist, .document-checklist, .spec-checklist { gap: 10px; }
  .footer-links { gap: 9px; }
  .cta-band { padding: 22px; gap: 16px; }
}

/* =====================================================================
   MOBILE POLISH — sweep through likely tight/overflow points
   ===================================================================== */

@media (max-width: 1180px) {
  /* Hero — kill the big min-height so the panel stacks naturally */
  .hero { min-height: 0; padding: 80px 22px 60px; }
  .hero-grid { gap: 40px; }
  .hero-panel { padding: 22px; }
  .hero-actions, .action-row { gap: 12px; }

  /* Headline scale-back for tablet */
  .hero h1, .hero-slide-title { font-size: clamp(34px, 5vw, 50px); }
  h2 { font-size: clamp(28px, 3.6vw, 40px); }

  /* Eyebrow + section head sit cleanly when wrapped */
  .section-head { display: grid; grid-template-columns: 1fr; gap: 18px; }
  .section-head p { max-width: 100%; }

  /* Custody node — smaller on tablet */
  .custody-node { min-height: 140px; padding: 18px 14px; }

  /* Onboarding phase tablet stacking */
  .onboarding-phase { padding: 22px; }

  /* Important info badge */
  .important-info h2 { font-size: clamp(24px, 2.6vw, 30px); gap: 12px; }
  .important-info h2::before { width: 38px; height: 38px; font-size: 19px; border-radius: 10px; }

  /* Footer compresses to two columns */
  .footer-grid { grid-template-columns: 1.4fr 1fr; gap: 28px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  /* Hero — leaner padding, tighter panel */
  .hero { padding: 56px 18px 40px; }
  .hero-grid { gap: 26px; }
  .hero-panel { padding: 18px; border-radius: 12px; }
  .hero-panel .panel-kicker { margin-bottom: 14px; }

  /* Headline scale-back for phone */
  .hero h1, .hero-slide-title { font-size: clamp(28px, 8vw, 38px); line-height: 1.05; }
  h2 { font-size: clamp(22px, 6vw, 30px); }
  h3 { font-size: 18px; }
  .lead { font-size: 15.5px; line-height: 1.55; }

  /* Eyebrow compact */
  .eyebrow { font-size: 10px; letter-spacing: 0.15em; margin-bottom: 14px; padding: 4px 10px 4px 8px; }
  .panel-kicker { font-size: 10px; letter-spacing: 0.15em; }

  /* Action row — full-width stacked buttons */
  .hero-actions,
  .action-row { flex-direction: column; align-items: stretch; gap: 10px; margin-top: 22px; }
  .hero-actions .btn,
  .action-row .btn { width: 100%; max-width: 100%; }

  /* Card chunk down */
  .card { padding: 22px; border-radius: 12px; }
  .card-icon { width: 46px; height: 46px; margin-bottom: 18px !important; border-radius: 12px; }
  .card-icon svg { width: 22px; height: 22px; }

  /* KPI more compact */
  .kpi { padding: 18px; min-height: 0; }
  .kpi-value { font-size: clamp(26px, 7vw, 36px); }

  /* Hero map nodes stack tighter */
  .map-node { min-height: 0; padding: 12px; }
  .map-title { font-size: 13.5px; }
  .map-copy { font-size: 12px; }

  /* Mini stack inside hero panel */
  .hero-panel .mini-stack { gap: 10px; }
  .mini-row { padding: 14px 16px; grid-template-columns: 40px 1fr; gap: 12px; }
  .mini-row .mini-icon { width: 40px; height: 40px; }
  .mini-row .mini-icon svg { width: 18px; height: 18px; }
  .mini-title { font-size: 14px; }
  .mini-copy { font-size: 13px; }

  /* Custody flow becomes single column on phone */
  .custody-flow { grid-template-columns: 1fr; gap: 12px; }
  .custody-node { min-height: 0; padding: 16px; }

  /* Feature pill */
  .feature-pill { min-height: 0; padding: 16px; gap: 6px; }
  .feature-pill strong { font-size: 14.5px; }

  /* Custody node mini icon repositioned center-top on stacked column */
  .node-mini-icon { top: 12px; }

  /* Section padding tighter */
  .section { padding: 52px 18px; }
  .section.compact { padding: 36px 18px; }

  /* Section head accent stripe smaller */
  .section-head { margin-bottom: 26px; }
  .section-head h2 { padding-left: 14px; }
  .section-head h2::before { width: 3px; }

  /* Header logo + nav */
  .header-inner { min-height: 72px; padding: 8px 0; }
  .brand-logo { max-height: 60px; width: auto; }
  .nav-actions .btn { min-height: 42px; padding: 0 16px; font-size: 12.5px; }

  /* Header compliance bar — wrap nicely */
  .header-compliance-inner { font-size: 10.5px; gap: 4px; }

  /* Important info — chip smaller */
  .important-info { padding: 20px; }
  .important-info h2 { font-size: 22px; gap: 10px; align-items: center; }
  .important-info h2::before { width: 32px; height: 32px; font-size: 16px; border-radius: 9px; }

  /* DD pack & CTA band content gaps */
  .cta-band { padding: 22px; gap: 16px; }
  .cta-band h2 { font-size: 24px; }
  .dd-pack { padding: 18px; }

  /* Flagship shell + prime volume shell — tighter padding */
  .flagship-shell { padding: 22px; }
  .prime-volume-shell { padding: 22px; }
  .prime-volume-metric { padding-left: 0; padding-top: 22px; border-left: 0; border-top: 1px solid rgba(106, 229, 196, 0.24); }
  .volume-label { font-size: 11px; }
  .volume-caption { font-size: 14px; }

  /* Tables — enable horizontal scroll */
  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .table-wrap table { min-width: 520px; }
  .table-wrap th, .table-wrap td { padding: 10px 12px; font-size: 13px; }

  /* Footer — single column, breathing */
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-brand .brand-logo { width: 160px; max-height: 56px; }
  .footer-title { font-size: 12px; }
  .footer-links a { font-size: 13.5px; }
  .legal-block { padding: 16px; }
  .legal-block p { font-size: 11.5px; line-height: 1.55; }

  /* Trust grid — accept 2 col on phone but with breathing */
  .hero .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .hero .trust-item { padding: 10px 12px; min-height: 54px; }
  .hero .trust-item strong { font-size: 13px; }

  /* Hero slider controls compact */
  .hero-slider-arrow { width: 34px; height: 34px; }
  .hero-slider-dot { width: 28px; }
  .hero-slider-dot.is-active { width: 44px; }

  /* Phase number compact */
  .phase-number { font-size: 30px; }
  .phase-title { font-size: 18px; }

  /* Document/spec checklist span min-height looser */
  .document-checklist span,
  .spec-item { min-height: 44px; padding: 10px 12px 10px 36px; font-size: 13px; }

  /* Terminal cells */
  .terminal-cell { padding: 12px 14px; min-height: 60px; }
  .terminal-cell strong { font-size: 13.5px; }

  /* About link panel arrow */
  .about-link-arrow { width: 36px; height: 36px; }

  /* Body horizontal margin guard */
  html, body { overflow-x: hidden; }

  /* Disable expensive blur on smallest screens for performance */
  body::after { filter: blur(28px); opacity: 0.7; }
}

/* Very narrow phones — extra tighten */
@media (max-width: 380px) {
  .section { padding: 44px 14px; }
  .hero { padding: 48px 14px 32px; }
  .container { padding: 0; }
  .card { padding: 18px; }
  .kpi { padding: 16px; }
  .hero-panel { padding: 16px; }
  .flagship-shell { padding: 18px; }
  .cta-band { padding: 18px; }
  .hero h1, .hero-slide-title { font-size: 26px; }
  h2 { font-size: 22px; }
  .eyebrow { font-size: 9.5px; }
}

/* =====================================================================
   PERFORMANCE LIGHTENING — keep the look, just less work per frame
   Strategy: slow down infinite loops (less paint per second), shrink the
   biggest blur values, drop a few redundant compositor layers. No animation
   is fully turned off here — just made cheaper.
   ===================================================================== */

/* 1. Cheapest: drop the full-screen ambient blob layer's blur (was 40px,
      forced a real-time GPU re-blur on every scroll frame). 14px is much
      lighter and visually almost identical at this opacity. Also slow the
      drift cycle 26s → 60s so the GPU sleeps between frames. */
body::after {
  filter: blur(14px) !important;
  animation-duration: 60s !important;
  opacity: 0.7;
}

/* Background grid drift — slow + reduce its size */
body::before { animation-duration: 60s !important; }

/* 2. Backdrop-filter is the single most expensive style. Lower the radius
      so paint cost drops sharply, keep the glass look. */
.hero-panel,
.flow-panel { backdrop-filter: blur(6px) saturate(120%) !important; -webkit-backdrop-filter: blur(6px) saturate(120%) !important; }
.nav-dropdown { backdrop-filter: blur(10px) !important; -webkit-backdrop-filter: blur(10px) !important; }
.card,
.kpi,
.document-card,
.office-card,
.identity-card,
.risk-box,
.dd-pack,
.trust-item,
.feature-pill,
.scope-column,
.about-snapshot-panel,
.about-factsheet,
.about-pillar,
.about-flow-step,
.about-service-band,
.about-scope-panel,
.about-control-group,
.about-link-panel,
.about-principle,
.about-review-panel,
.about-review-list,
.prime-volume-shell,
.prime-volume-metric,
.prime-volume-pill,
.prime-console,
.onboarding-phase,
.flow-step,
.key-fact,
.spec-item,
.table-wrap,
.routing-row,
.faq-item,
.product-visual,
.mini-row,
.legal-block {
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
}
.hero-slider-arrow,
.hero-slider-dot,
.btn.ghost,
.contact-form input,
.contact-form select,
.contact-form textarea,
.eyebrow,
.panel-kicker {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Header stays crisp (sticky, single visible) — but trimmed */
.site-header {
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
}

/* 3. Slow down infinite gradient drift loops (7–16s → 24–40s). Visual sheen
      still drifts subtly; paint work drops by ~3–5×. */
.section-head h2 { animation-duration: 30s !important; }
.kpi-value { animation-duration: 24s !important; }
.kpi.in-view .kpi-value { animation: dm-pop-in 700ms cubic-bezier(0.22, 1, 0.36, 1) both, dm-gradient-drift 28s ease-in-out 700ms infinite !important; }
.volume-number { animation-duration: 22s !important; }
.btn.primary { animation-duration: 32s !important; }
.flagship-shell { animation-duration: 40s !important; }

/* 4. Pulse rings on map dots — still alive, just much slower */
.map-dot { animation-duration: 12s !important; }
.map-node.featured .map-dot {
  animation: dm-pulse-ring-orange 8s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
}

/* 5. Hero panel float — slow 8s → 18s and reduce the displacement so the
      composited layer settles between frames. */
@keyframes dm-float-slow {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -3px, 0); }
}

.hero-slide.is-active .hero-panel,
.hero:not(.hero-slider) > .hero-grid > .hero-panel {
  animation: dm-fade-left 760ms cubic-bezier(0.22, 1, 0.36, 1) 200ms forwards,
             dm-float-slow 18s ease-in-out 2s infinite !important;
}

/* 6. Connection line flow shimmer — slow 2.4–2.6s → 7s. Eye still catches
      the movement but paint frequency drops. */
.map-node::after { animation-duration: 7s !important; }
.custody-flow .custody-node::after { animation-duration: 7s !important; }
.flow-step::after { animation-duration: 7s !important; }

/* 7. Header sweep — slow 14s → 36s */
.site-header::before { animation-duration: 36s !important; }

/* 8. Big decorative blobs — slow + lower blur (still floats softly) */
.flagship-shell::after { animation-duration: 22s !important; filter: blur(20px) !important; }
.swissquote-panel::after { animation-duration: 18s !important; filter: blur(18px) !important; }

/* 9. Important info border pulse — slow 4.8s → 14s (very subtle) */
.important-info { animation-duration: 14s !important; }

/* 10. Terminal scan — slow 4.2s → 11s. Still readable but quieter. */
.terminal-mockup::after { animation-duration: 11s !important; opacity: 0.55; }

/* 11. Home reporting bullet blink — slow 2.4s → 8s */
.home-reporting-list span::before { animation-duration: 8s !important; }

/* 12. Eyebrow/panel-kicker/market-strip dot blink — slow 1.8–2.4s → 6s.
       Many of these run at once; slowing them is more efficient than
       removing them. */
.eyebrow::before,
.market-strip-title::before,
.panel-kicker::before { animation-duration: 6s !important; }

/* 13. Hero h1 / hero-slide-title — keep static gradient (was already
       static, just guarantee no inherited drift). */
.hero h1,
.hero-slide-title { animation: none !important; }

/* 14. Body background — collapse 6 stacked radials to 3. Same atmosphere,
       ~half the paint cost. */
body {
  background:
    radial-gradient(ellipse 900px 600px at 18% 0%, rgba(0, 174, 239, 0.18), transparent 60%),
    radial-gradient(ellipse 700px 480px at 90% 12%, rgba(27, 117, 188, 0.14), transparent 60%),
    radial-gradient(ellipse 600px 420px at 50% 96%, rgba(106, 229, 196, 0.10), transparent 60%),
    linear-gradient(180deg, #03080f 0%, #06101d 48%, #040a14 100%) !important;
  background-attachment: scroll !important;
}

/* 15. Body grid overlay — wider grid (less lines = less paint) */
body::before {
  background-size: 96px 96px, 96px 96px, auto;
  opacity: 0.55;
}

/* 16. Cards — collapse stacked box-shadows into one cheaper shadow */
.card,
.kpi,
.document-card,
.office-card,
.identity-card,
.feature-pill,
.scope-column,
.mini-row,
.faq-item,
.routing-row,
.about-pillar,
.about-flow-step,
.about-scope-panel,
.about-control-group,
.about-link-panel,
.about-principle,
.about-review-panel,
.prime-volume-pill,
.onboarding-phase,
.flow-step,
.key-fact,
.spec-item {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 26px rgba(0, 0, 0, 0.28) !important;
}

.card:hover,
.kpi:hover,
.document-card:hover,
.office-card:hover,
.identity-card:hover,
.dd-pack:hover,
.trust-item:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 34px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(0, 174, 239, 0.42) !important;
}

/* 17. Card-icon background — simpler gradient (single linear, no radial) */
.card-icon,
.mini-icon {
  background: linear-gradient(135deg, rgba(106, 229, 196, 0.26), rgba(0, 174, 239, 0.18)) !important;
}
.card-icon.warning {
  background: linear-gradient(135deg, rgba(245, 184, 75, 0.28), rgba(250, 91, 53, 0.18)) !important;
}

/* 18. Hero ::before screen-blend overlay — keep but lighten */
.hero::before { opacity: 0.5; mix-blend-mode: normal; }

/* 19. Card shimmer ::after — keep, only fires on hover (transition-driven),
       no longer continuously paints when idle. */
.card::after,
.kpi::after,
.document-card::after,
.office-card::after,
.identity-card::after,
.feature-pill::after,
.trust-item::after {
  opacity: 0;
  transition: opacity 200ms ease;
}

.card:hover::after,
.kpi:hover::after,
.document-card:hover::after,
.office-card:hover::after,
.identity-card:hover::after,
.feature-pill:hover::after,
.trust-item:hover::after { opacity: 1; }

/* 20. Will-change cleanup — remove from elements with no live animations
       so they don't permanently occupy GPU layers. */
.hero-panel { will-change: auto !important; }
body::before { will-change: auto !important; }

/* =====================================================================
   HOME MOBILE TOUCH-UP — keep long stacks compact on phones
   ===================================================================== */

@media (max-width: 760px) and (min-width: 481px) {
  /* On phones with enough width keep 2 columns instead of 1 — much shorter
     scrolls and better visual rhythm for: custody flow, KPI grid, feature
     pill grid, scope grid, what-this-means, key fact grid, spec checklist,
     office grid, and document checklist. */
  .custody-flow,
  .kpi-grid,
  .feature-pill-grid,
  .scope-grid,
  .what-this-means,
  .key-fact-grid,
  .spec-checklist,
  .office-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .document-checklist,
  .trust-grid,
  .hero .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  /* Cards in 2-col mobile are narrow — tighten padding */
  .card,
  .feature-pill,
  .kpi,
  .custody-node {
    padding: 16px !important;
  }
  .card h3 { font-size: 16px; }
  .card p { font-size: 13px; line-height: 1.5; }
  .kpi-value { font-size: clamp(20px, 5.4vw, 28px) !important; }
  .kpi-label { font-size: 10.5px; }
  .feature-pill strong { font-size: 13.5px; }

  /* Custody node mini icon stays centered top, slim node */
  .custody-node { min-height: 0; padding: 18px 12px 14px; }
  .node-title { font-size: 13.5px; margin-top: 18px; }
  .node-label { font-size: 11.5px; }
  .node-step { width: 28px; height: 28px; font-size: 11px; }
  .node-mini-icon { top: 10px; width: 22px; height: 22px; }
  .node-mini-icon svg { width: 14px; height: 14px; }
  .custody-node::after { display: none; }

  /* Document/spec checklist 2-col — let chips be flexible */
  .document-checklist span,
  .spec-item { min-height: 40px; font-size: 12.5px; padding: 8px 10px 8px 30px; }
  .document-checklist span::before,
  .spec-item::after { left: 10px; top: 14px; }
}

/* Hero home page — couple of touches that read better on phone */
@media (max-width: 760px) {
  /* Slightly larger headline so the brand line reads */
  .hero h1, .hero-slide-title { font-size: clamp(30px, 8.4vw, 40px) !important; }

  /* Hero map nodes narrower icon column so titles don't truncate */
  .hero-map .map-node { grid-template-columns: 36px 1fr; gap: 10px; padding: 10px 12px; }
  .map-dot { width: 36px; height: 36px; font-size: 12px; }
  .hero-map .map-title { font-size: 13.5px; }
  .hero-map .map-copy { font-size: 11.5px; line-height: 1.35; margin-top: 2px; }

  /* Hero slider controls compact — arrows + dots on one line, no overflow */
  .hero-slider-controls { gap: 8px; margin-top: 18px; flex-wrap: wrap; }
  .hero-slider-dots { gap: 6px; }

  /* Trust items in hero — 2-col with comfortable padding */
  .hero .trust-item { min-height: 48px; padding: 9px 11px; }
  .hero .trust-item strong { font-size: 12.5px; line-height: 1.25; }

  /* Market strip — vertical stack with title above */
  .market-strip { padding: 14px 16px; }
  .market-strip-inner { gap: 8px; }
  .market-strip-title { padding-left: 14px; font-size: 11.5px; }
  .market-strip-items.ticker-on > .ticker-track { gap: 6px; }
  .market-strip-items span,
  .market-strip-items.ticker-on > .ticker-track > span {
    padding: 6px 12px;
    font-size: 11.5px;
  }
  .market-strip-note { font-size: 11.5px; }

  /* Flagship shell — flagship-top reflows; gap and padding tighter */
  .flagship-shell { padding: 20px; }
  .flagship-top { gap: 16px; margin-bottom: 18px; }
  .flagship-top .btn { width: 100%; }

  /* Home reporting — terminal mockup not too tall */
  .home-reporting { gap: 22px; }
  .terminal-grid { gap: 8px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .terminal-cell { padding: 10px 12px; min-height: 54px; }
  .terminal-cell strong { font-size: 12.5px; }
  .terminal-cell span { font-size: 10px; letter-spacing: 0.1em; }

  /* DD pack — fit checklist 2-col */
  .dd-pack .checklist { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .dd-pack .checklist span { padding-left: 26px; font-size: 12px; }

  /* Important info — paragraph density */
  .important-info p { font-size: 13.5px; line-height: 1.55; }
}

/* Phones too narrow for 2 columns — go single but keep visual density tight */
@media (max-width: 480px) {
  .custody-flow,
  .kpi-grid,
  .feature-pill-grid,
  .scope-grid,
  .key-fact-grid,
  .grid-3,
  .grid-4,
  .document-checklist,
  .terminal-grid {
    grid-template-columns: 1fr !important;
  }
  .hero .trust-grid,
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .dd-pack .checklist { grid-template-columns: 1fr; }
}

/* =====================================================================
   ONBOARDING FORM — Request for Institutional Onboarding (Prime Services)
   ===================================================================== */

.onboarding-form {
  margin-top: 28px;
  padding: 30px;
  border: 1px solid rgba(0, 174, 239, 0.32);
  border-radius: 14px;
  background:
    radial-gradient(circle 420px at 88% 6%, rgba(0, 174, 239, 0.16), transparent 60%),
    radial-gradient(circle 320px at 8% 92%, rgba(139, 109, 255, 0.10), transparent 60%),
    linear-gradient(145deg, rgba(8, 22, 38, 0.92), rgba(5, 14, 26, 0.92));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.onboarding-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.onboarding-field {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12.5px;
  letter-spacing: 0.04em;
}

.onboarding-field.full { grid-column: 1 / -1; }

.onboarding-field > span {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11.5px;
  color: var(--muted-2);
}

.onboarding-field input,
.onboarding-field select,
.onboarding-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 50%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.55), rgba(7, 16, 28, 0.65));
  color: var(--text);
  font: inherit;
  font-size: 14px;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.onboarding-field textarea {
  min-height: 140px;
  resize: vertical;
  font-family: inherit;
}

.onboarding-field input:focus,
.onboarding-field select:focus,
.onboarding-field textarea:focus {
  outline: none;
  border-color: rgba(0, 174, 239, 0.55);
  box-shadow:
    0 0 0 3px rgba(0, 174, 239, 0.16),
    0 0 22px rgba(0, 174, 239, 0.10);
}

.onboarding-field input::placeholder,
.onboarding-field textarea::placeholder {
  color: rgba(167, 179, 197, 0.55);
}

/* CRITICAL — dark-theme <select> fix.
   Without these rules, native browser dropdown renders option text in white
   on white background. Force dark bg + white text for readability. */
.onboarding-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 50%),
    linear-gradient(180deg, rgba(11, 22, 38, 0.55), rgba(7, 16, 28, 0.65)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2300aeef' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: 0 0, 0 0, right 14px center;
  background-size: 100% 100%, 100% 100%, 14px 14px;
  padding-right: 38px;
  cursor: pointer;
}

.onboarding-field select option,
.onboarding-field select optgroup {
  background-color: #0a1227;
  color: #ffffff;
  padding: 8px 10px;
}

/* Consent checkbox row */
.onboarding-consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(11, 22, 38, 0.5);
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.55;
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease;
}

.onboarding-consent:hover {
  border-color: rgba(0, 174, 239, 0.32);
  background: rgba(11, 22, 38, 0.6);
}

.onboarding-consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(0, 174, 239, 0.5);
  background: rgba(11, 22, 38, 0.6);
  cursor: pointer;
  flex: 0 0 18px;
  margin-top: 2px;
  position: relative;
  transition: background 200ms ease, border-color 200ms ease;
}

.onboarding-consent input[type="checkbox"]:checked {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  border-color: var(--cyan);
}

.onboarding-consent input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border-right: 2px solid #021420;
  border-bottom: 2px solid #021420;
  transform: rotate(45deg);
}

.onboarding-consent input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.22);
}

/* Action row */
.onboarding-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.onboarding-actions .btn {
  min-width: 180px;
}

.onboarding-helper {
  color: var(--muted);
  font-size: 12.5px;
  margin: 0;
}

/* Section anchor target offset (sticky header) */
#institutional-request {
  scroll-margin-top: 100px;
}

/* Responsive */
@media (max-width: 760px) {
  .onboarding-form { padding: 22px; border-radius: 12px; }
  .onboarding-grid { grid-template-columns: 1fr; gap: 14px; }
  .onboarding-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .onboarding-actions .btn { width: 100%; min-width: 0; }
  .onboarding-helper { text-align: center; }
}
