@font-face {
  font-family: "Inter Display";
  src: url("assets/original/fonts/inter-display.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("assets/original/fonts/satoshi-variable.woff2") format("woff2");
  font-weight: 300 900;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk Local";
  src: url("assets/fonts/space-grotesk-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk Local";
  src: url("assets/fonts/space-grotesk-600.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk Local";
  src: url("assets/fonts/space-grotesk-700.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono Local";
  src: url("assets/fonts/ibm-plex-mono-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono Local";
  src: url("assets/fonts/ibm-plex-mono-500.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono Local";
  src: url("assets/fonts/ibm-plex-mono-600.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #000000;
  --surface: #0b0d0e;
  --surface-2: #121416;
  --surface-3: #191c1e;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.78);
  --text-muted: rgba(255, 255, 255, 0.56);
  --text-faint: rgba(255, 255, 255, 0.36);
  --gold: #a99c7e;
  --gold-2: #cfc19f;
  --green: #96b5a7;
  --blue: #a2b0be;
  --red: #c7a7a2;
  --platinum: #d9dde0;
  --ice: #9aa8b3;
  --cold-line: rgba(205, 216, 224, 0.14);
  --max: 1280px;
  --header: 72px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 76% 4%, rgba(207, 193, 159, 0.09), transparent 30%),
    radial-gradient(circle at 20% 16%, rgba(205, 216, 224, 0.045), transparent 26%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.36), #000000 720px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.014), rgba(0, 0, 0, 0) 440px),
    #000000;
  color: var(--text);
  font-family: "Inter Display", "Satoshi", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    url("assets/exsat-ambient-lines.svg") center top / min(1700px, 150vw) auto no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0) 520px);
  opacity: 0.18;
}

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

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

button {
  font: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

table {
  border-collapse: collapse;
}

:focus-visible {
  outline: 2px solid rgba(207, 193, 159, 0.86);
  outline-offset: 4px;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.button-icon,
.mini-icon,
.card-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-icon {
  width: 22px;
  height: 22px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--header);
  margin: 0;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.14) 56%, rgba(0, 0, 0, 0));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 188px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
}

.brand img {
  width: 112px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--text-muted);
  font-size: 14px;
}

.main-nav a,
.site-footer a,
.text-link {
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.site-footer a:hover,
.text-link:hover {
  color: var(--text);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.header-cta,
.button-primary {
  background: #ffffff;
  color: #050505;
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.button-dark {
  background: #0b0b0b;
  color: var(--text);
}

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

.button:active,
.header-cta:active {
  transform: translateY(0);
}

.mobile-label {
  display: none;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.menu-toggle:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.09);
}

.menu-toggle:active {
  transform: scale(0.98);
}

.menu-toggle .close-icon {
  display: none;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(6px);
}

.mobile-menu {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 80;
  display: none;
  width: min(360px, calc(100vw - 24px));
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 18px;
  background:
    radial-gradient(circle at 84% 0%, rgba(205, 216, 224, 0.12), transparent 36%),
    rgba(11, 11, 11, 0.94);
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.62);
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms var(--ease);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}

.mobile-menu-head img {
  width: 98px;
}

.mobile-menu nav {
  display: grid;
  gap: 4px;
  padding: 16px 0;
}

.mobile-menu nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  border-radius: 8px;
  padding: 0 12px;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.mobile-menu nav a:hover,
.mobile-menu nav a:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.mobile-menu .button {
  width: 100%;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .mobile-menu,
body.nav-open .mobile-menu-backdrop {
  display: block;
}

body.nav-open .mobile-menu {
  opacity: 1;
  transform: translateY(0);
}

body.nav-open .menu-toggle .menu-icon {
  display: none;
}

body.nav-open .menu-toggle .close-icon {
  display: block;
}

.home-hero {
  position: relative;
  isolation: isolate;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 46px;
}

.home-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -140px -72px 14%;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.045), transparent 24%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.28) 62%, rgba(0, 0, 0, 0.78)),
    url("assets/generated/exsat-cosmic-wall-4k.jpg") center top / cover no-repeat;
  opacity: 0.24;
  filter: saturate(0.92);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 74%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 74%, transparent 100%);
}

.home-hero .eyebrow,
.home-hero h1,
.home-hero .hero-lede,
.home-hero .hero-actions,
.home-hero .hero-proof,
.hero-console {
  animation: hero-fade-up 760ms var(--ease) both;
}

.home-hero h1 {
  animation-delay: 90ms;
}

.home-hero .hero-lede {
  animation-delay: 180ms;
}

.home-hero .hero-actions {
  animation-delay: 270ms;
}

.home-hero .hero-proof {
  animation-delay: 360ms;
}

.hero-console {
  animation-delay: 460ms;
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero-copy {
  display: block;
  max-width: 900px;
  margin-bottom: 34px;
}

.eyebrow,
.pill {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.home-hero h1,
.detail-hero h1,
.infra-hero h1 {
  margin-top: 18px;
  font-size: 68px;
  line-height: 1.02;
  font-weight: 560;
  letter-spacing: 0;
}

.home-hero h1 {
  max-width: 880px;
}

.hero-lede,
.detail-hero > p,
.infra-hero-copy > p,
.section-heading > p,
.tech-copy > p,
.contact-section > p {
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.5;
}

.hero-lede {
  max-width: 760px;
  margin-top: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-end;
  justify-content: flex-start;
  max-width: 760px;
  margin-top: 28px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  border: 1px solid var(--cold-line);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(205, 216, 224, 0.038);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 650;
}

.hero-console {
  position: relative;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.82) 88%),
    radial-gradient(circle at 58% 18%, rgba(218, 224, 229, 0.16), transparent 26%),
    radial-gradient(circle at 76% 48%, rgba(154, 168, 179, 0.08), transparent 28%),
    url("assets/generated/exsat-cosmic-wall-4k.jpg") center 42% / cover no-repeat,
    linear-gradient(236deg, #191b1d 0%, #2a2d30 30%, #151719 72%, #020303 100%);
  perspective: 1200px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 34px 110px rgba(0, 0, 0, 0.5);
}

.console-topbar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--text-muted);
  font-size: 13px;
}

.console-topbar strong {
  color: var(--platinum);
  font-size: 12px;
  text-transform: uppercase;
}

.console-stage {
  position: absolute;
  inset: 58px 0 0;
  transform: rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
  transform-style: preserve-3d;
  transition: transform 220ms ease-out;
}

.console-stage::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: -30% 6% 8%;
  background:
    radial-gradient(circle at 56% 30%, rgba(230, 236, 240, 0.22), transparent 18%),
    radial-gradient(circle at 72% 46%, rgba(154, 168, 179, 0.14), transparent 26%),
    linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.12), transparent 48%);
  filter: blur(42px);
  opacity: 0.3;
  mix-blend-mode: screen;
  animation: console-light-sweep 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.console-stage::after {
  content: "";
  position: absolute;
  z-index: 8;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), #000000 76%);
  pointer-events: none;
}

@keyframes console-light-sweep {
  from {
    transform: translate3d(-3%, 2%, 0) rotate(-4deg);
    opacity: 0.32;
  }
  to {
    transform: translate3d(4%, -1%, 0) rotate(4deg);
    opacity: 0.48;
  }
}

.console-phone {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: -38px;
  width: 300px;
  height: auto;
  transform: translateX(-50%) rotate(-2deg) translate3d(var(--layer-x, 0), var(--layer-y, 0), 0);
  filter: drop-shadow(0 34px 58px rgba(0, 0, 0, 0.62));
  transition: transform 220ms ease-out;
}

.console-card {
  position: absolute;
  z-index: 4;
  height: auto;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.45));
  transform: translate3d(var(--layer-x, 0), var(--layer-y, 0), 0);
  transition: transform 220ms ease-out;
}

.console-card-ai {
  top: 72px;
  left: 12%;
  width: 300px;
}

.console-card-yield {
  right: 11%;
  bottom: 94px;
  width: 306px;
}

.console-ledger,
.console-status {
  position: absolute;
  z-index: 5;
  width: 216px;
  border: 1px solid var(--cold-line);
  border-radius: 8px;
  padding: 16px;
  background: rgba(5, 7, 8, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
  transform: translate3d(var(--layer-x, 0), var(--layer-y, 0), 0);
  transition: transform 220ms ease-out, border-color 180ms ease;
}

.console-ledger {
  left: 7%;
  bottom: 72px;
}

.console-status {
  right: 6%;
  top: 92px;
}

.console-ledger span,
.console-status span,
.console-ledger small,
.console-status small {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
}

.console-ledger strong,
.console-status strong {
  display: block;
  margin: 7px 0 5px;
  color: var(--text);
  font-size: 20px;
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(var(--max), calc(100% - 48px));
  margin: 48px auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metrics-strip article {
  display: grid;
  place-items: center;
  min-height: 118px;
  border-right: 1px solid var(--line);
}

.metrics-strip article:last-child {
  border-right: 0;
}

.metrics-strip strong {
  font-family: "Satoshi", "Inter Display", sans-serif;
  font-size: 44px;
  line-height: 1;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
  transition: color 240ms ease, text-shadow 240ms ease;
}

.metrics-strip.is-counting strong,
.metrics-strip.has-counted strong {
  color: #ffffff;
  text-shadow: 0 0 24px rgba(205, 216, 224, 0.12);
}

.metrics-strip span {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 14px;
}

.partner-section {
  display: grid;
  align-content: center;
  gap: 16px;
  width: 100%;
  min-height: 138px;
  margin: 24px 0 0;
  padding: 22px 0 18px;
  overflow: hidden;
}

.partner-section p {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

.partner-original-strip {
  display: grid;
  place-items: center;
  width: 100%;
  overflow: visible;
}

.partner-original-strip img {
  width: min(100%, 2596px);
  height: auto;
  max-width: none;
  opacity: 0.34;
  filter: grayscale(1) contrast(0.94);
  transform: translateZ(0);
  transition: opacity 180ms ease, filter 180ms ease;
}

.partner-original-strip:hover img {
  opacity: 0.68;
  filter: grayscale(0.35) contrast(1.02);
}

.section,
.detail-section,
.detail-hero,
.infra-hero,
.bridge-band,
.network-snapshot {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 112px 0 0;
}

.partner-section + .product-section {
  padding-top: 48px;
}

.section-heading {
  max-width: 760px;
}

.section-heading.centered,
.compact-heading {
  margin: 0 auto;
  text-align: center;
}

.section-heading.centered .pill,
.compact-heading .pill {
  margin-inline: auto;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  align-items: end;
  gap: 56px;
  max-width: none;
}

.section-heading h2,
.tech-copy h2,
.contact-section h2,
.detail-section h2,
.network-snapshot h2,
.snapshot-copy h2 {
  margin-top: 18px;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 560;
  letter-spacing: 0;
}

.compact-heading h2 {
  max-width: 900px;
}

.section-heading > p,
.compact-heading > p {
  margin-top: 18px;
}

.product-grid,
.control-grid,
.why-grid,
.integration-grid,
.infra-grid,
.snapshot-grid,
.resource-grid {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.product-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  grid-template-rows: repeat(3, minmax(132px, auto));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 23% 24%, rgba(205, 216, 224, 0.09), rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018));
}

.product-card,
.strategy-card,
.feature-card,
.why-card,
.control-grid article,
.integration-grid article,
.infra-card,
.resource-card,
.bridge-band article,
.snapshot-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 64px rgba(0, 0, 0, 0.24);
}

.product-card {
  min-height: 188px;
  border: 0;
  border-radius: 0;
  padding: 30px;
  background: transparent;
  transition: transform 180ms var(--ease), border-color 180ms ease, background 180ms ease;
}

.product-card:first-child {
  display: grid;
  align-content: space-between;
  grid-row: 1 / 4;
  min-height: 540px;
  padding: 44px;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 32% 20%, rgba(205, 216, 224, 0.12), rgba(255, 255, 255, 0) 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.01));
}

.product-card:not(:first-child) {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.product-card:last-child {
  border-bottom: 0;
}

.product-card:hover,
.product-card:focus-within,
.strategy-card:hover,
.strategy-card.is-focused,
.feature-card:hover,
.why-card:hover,
.resource-card:hover {
  transform: translateY(-2px);
  border-color: rgba(205, 216, 224, 0.24);
}

.product-card .card-icon,
.system-panel .card-icon {
  color: var(--gold-2);
}

.product-card:first-child .card-icon {
  width: 38px;
  height: 38px;
}

.product-card > span,
.control-grid span,
.integration-grid span,
.infra-card span,
.feature-copy span {
  display: inline-flex;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 800;
}

.product-card > span {
  margin-top: 20px;
}

.product-card:not(:first-child) > span,
.product-card:not(:first-child) .card-icon {
  grid-column: 1;
}

.product-card:not(:first-child) h3,
.product-card:not(:first-child) p {
  grid-column: 2;
}

.product-card h3,
.strategy-card h3,
.feature-card h3,
.why-card h3,
.control-grid h3,
.integration-grid strong,
.infra-card h3,
.resource-card strong,
.bridge-band strong {
  margin-top: 12px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.18;
  font-weight: 700;
}

.product-card:first-child h3 {
  max-width: 560px;
  margin-top: 34px;
  font-size: 48px;
  line-height: 1.04;
  font-weight: 560;
}

.product-card:first-child p {
  max-width: 520px;
  font-size: 18px;
}

.product-card-visual {
  width: min(100%, 560px);
  margin: 46px auto 0;
  opacity: 0.92;
  filter: drop-shadow(0 34px 58px rgba(0, 0, 0, 0.46));
}

.product-card-thumb {
  grid-column: 2;
  width: min(100%, 250px);
  height: 88px;
  object-fit: contain;
  justify-self: start;
  margin-top: 18px;
  opacity: 0.72;
  filter: grayscale(1) drop-shadow(0 18px 34px rgba(0, 0, 0, 0.26));
  transition: opacity 180ms ease, filter 180ms ease, transform 180ms ease;
}

.product-card:hover .product-card-thumb,
.product-card:focus-within .product-card-thumb {
  opacity: 0.94;
  filter: grayscale(0.4) drop-shadow(0 22px 42px rgba(205, 216, 224, 0.1));
  transform: translateY(-2px);
}

.product-card p,
.strategy-card p,
.feature-card p,
.why-card p,
.control-grid p,
.integration-grid p,
.infra-card p,
.resource-card p,
.bridge-band p {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
}

.yield-section {
  position: relative;
  isolation: isolate;
}

.yield-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 88px max(-72px, calc((var(--max) - 100vw) / 2)) auto;
  height: 820px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.86) 78%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2) 52%, rgba(0, 0, 0, 0.74)),
    url("assets/generated/exsat-strategy-integrated-4k.jpg") center / cover no-repeat;
  opacity: 0.24;
  filter: saturate(0.86) contrast(1.04);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 72%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 72%, transparent 100%);
}

.system-section {
  position: relative;
  isolation: isolate;
}

.system-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -90px max(-72px, calc((var(--max) - 100vw) / 2)) auto;
  height: 760px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.88) 78%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.28) 56%, rgba(0, 0, 0, 0.7)),
    url("assets/generated/exsat-banking-stack-integrated-4k.jpg") center / cover no-repeat;
  opacity: 0.22;
  filter: saturate(0.82) contrast(1.08);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 76%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 76%, transparent 100%);
}

.section-anchor {
  position: absolute;
  top: -96px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

.strategy-tabs,
.system-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 30px auto 0;
}

.tab-button,
.system-tab {
  min-width: 132px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.tab-button:hover,
.system-tab:hover {
  color: var(--text);
  border-color: var(--line-strong);
}

.tab-button.active,
.system-tab.active {
  background: #ffffff;
  color: #050505;
  border-color: #ffffff;
}

.tab-button:active,
.system-tab:active {
  transform: translateY(1px);
}

.strategy-workbench {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
  gap: 0;
  overflow: hidden;
  margin-top: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    radial-gradient(circle at 18% 18%, rgba(205, 216, 224, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018));
  background-size: 96px 100%, auto, auto;
}

.strategy-spotlight {
  position: sticky;
  top: 96px;
  align-self: start;
  min-height: 600px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  padding: 42px;
  background:
    radial-gradient(circle at 40% 0%, rgba(205, 216, 224, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.005));
}

.strategy-spotlight::before {
  content: "";
  position: absolute;
  left: 42px;
  right: 42px;
  top: 96px;
  height: 1px;
  background: linear-gradient(90deg, rgba(207, 193, 159, 0.44), rgba(205, 216, 224, 0.08), transparent);
}

.strategy-spotlight > * {
  transition: opacity 180ms ease, transform 180ms ease;
}

.strategy-spotlight.is-updating > * {
  opacity: 0.34;
  transform: translateY(4px);
}

.spotlight-kicker,
.system-panel > span,
.resource-card span,
.bridge-band span,
.console-kicker {
  color: var(--platinum);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.spotlight-head {
  margin-top: 42px;
}

.spotlight-head h3 {
  font-size: 48px;
  line-height: 1;
}

.strategy-position {
  display: inline-flex;
  margin-top: 12px;
  border: 1px solid rgba(205, 216, 224, 0.18);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--ice);
  font-size: 12px;
  font-weight: 800;
}

.spotlight-head strong {
  display: block;
  margin-top: 14px;
  color: var(--gold);
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
}

.strategy-spotlight p {
  margin-top: 22px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.55;
}

.spotlight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.spotlight-meta span {
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--text-soft);
  font-size: 12px;
}

.risk-scale {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 26px;
}

.risk-scale span {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.risk-scale span.active {
  background: linear-gradient(90deg, var(--gold), var(--platinum));
}

.strategy-spotlight .text-link {
  display: inline-flex;
  margin-top: 34px;
}

.strategy-panel {
  display: none;
  grid-template-columns: 1fr;
  gap: 0;
}

.strategy-panel.active {
  display: grid;
}

.strategy-card {
  display: grid;
  grid-template-columns: minmax(120px, 0.62fr) minmax(0, 1fr) minmax(110px, auto);
  grid-template-areas:
    "tag copy yield"
    "name copy term";
  column-gap: 24px;
  align-items: center;
  min-height: 150px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 28px 34px;
  background: transparent;
  cursor: pointer;
  transition: transform 190ms var(--ease), border-color 190ms ease, background 190ms ease;
}

.strategy-card:hover,
.strategy-card.is-focused {
  transform: translateX(2px);
  background:
    linear-gradient(90deg, rgba(207, 193, 159, 0.07), rgba(205, 216, 224, 0.034) 42%, transparent 78%);
}

.strategy-card-detail {
  grid-column: 1 / -1;
  display: none;
}

.strategy-card:last-child {
  border-bottom: 0;
}

.risk-tag {
  grid-area: tag;
  justify-self: start;
  display: inline-flex;
  min-height: 30px;
  border: 1px solid var(--cold-line);
  border-radius: 999px;
  padding: 6px 11px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 750;
}

.risk-tag.lowest {
  color: var(--green);
  background: rgba(150, 181, 167, 0.08);
}

.risk-tag.low {
  color: var(--blue);
  background: rgba(162, 176, 190, 0.08);
}

.risk-tag.medium {
  color: var(--gold-2);
  background: rgba(207, 193, 159, 0.08);
}

.risk-tag.higher {
  color: var(--red);
  background: rgba(199, 167, 162, 0.08);
}

.strategy-card h3 {
  grid-area: name;
  margin-top: 14px;
  font-size: 34px;
}

.strategy-card strong {
  grid-area: yield;
  display: block;
  position: relative;
  z-index: 1;
  margin-top: 0;
  color: var(--gold-2);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  justify-self: end;
  text-align: right;
}

#btc-panel .strategy-card strong {
  color: var(--platinum);
}

#btc-panel .risk-scale span.active,
#btc-panel .strategy-card.is-focused .risk-tag {
  border-color: rgba(205, 216, 224, 0.28);
}

.strategy-card small {
  grid-area: term;
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 13px;
  justify-self: end;
  text-align: right;
}

.strategy-card p {
  grid-area: copy;
  margin-top: 0;
  padding-right: 24px;
}

.yield-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.03);
}

.yield-note p {
  max-width: 820px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.text-link {
  color: var(--gold-2);
  font-weight: 800;
}

.system-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
  gap: 44px;
}

.system-heading {
  position: sticky;
  top: 96px;
}

.system-tabs {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.system-tab {
  min-width: auto;
  padding: 0 16px;
}

.system-stage {
  position: relative;
  --system-scale: 0.94;
  --system-node-opacity: 0.18;
  --system-core-y: 12px;
  --system-core-opacity: 0.35;
  --orbit-rotation: 0deg;
  min-height: 560px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 24px;
  background:
    radial-gradient(circle at 70% 0%, rgba(205, 216, 224, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    #0d0d0d;
}

.system-orbit {
  position: relative;
  height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(6, 8, 9, 0.12), rgba(0, 0, 0, 0.64)),
    radial-gradient(circle at 56% 46%, rgba(205, 216, 224, 0.055), rgba(0, 0, 0, 0) 40%),
    url("assets/exsat-cosmic-settlement.png") center / cover no-repeat;
  box-shadow:
    inset 0 -42px 90px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: scale(var(--system-scale));
  transform-origin: center;
  transition: transform 120ms linear, filter 120ms linear;
}

.system-orbit::before {
  content: none;
}

.system-orbit::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.46)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0) 34%);
}

.orbit-core {
  display: none;
}

.orbit-core img {
  width: 58px;
}

.orbit-core span {
  color: var(--text-muted);
  font-size: 12px;
}

.orbit-node {
  display: none;
}

.orbit-node:nth-child(1) {
  top: 28px;
  left: 55%;
  transform: translateX(-50%);
}

.orbit-node:nth-child(2) {
  top: 42%;
  right: 42px;
  transform: translateY(-50%);
}

.orbit-node:nth-child(3) {
  bottom: 28px;
  left: 46%;
  transform: translateX(-50%);
}

.orbit-node:nth-child(4) {
  top: 58%;
  left: 42px;
  transform: translateY(-50%);
}

.orbit-node.active {
  border-color: rgba(226, 231, 235, 0.82);
  color: var(--platinum);
  background: rgba(205, 216, 224, 0.085);
  box-shadow:
    0 0 0 1px rgba(205, 216, 224, 0.04),
    0 0 18px rgba(205, 216, 224, 0.08);
}

.system-panel {
  display: none;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(205, 216, 224, 0.045), rgba(255, 255, 255, 0.022)),
    rgba(5, 6, 7, 0.68);
  backdrop-filter: blur(18px);
}

.system-panel.active {
  display: block;
  animation: panel-in 260ms var(--ease);
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.system-panel h3 {
  margin-top: 14px;
  font-size: 28px;
  line-height: 1.2;
}

.system-panel p {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
}

.system-panel ul {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.system-panel li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
  font-size: 14px;
}

.system-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--platinum);
}

.control-grid {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(205, 216, 224, 0.08), rgba(255, 255, 255, 0.025) 40%, rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.026);
}

.control-grid::before {
  content: "";
  position: absolute;
  left: 72px;
  right: 72px;
  top: 78px;
  height: 1px;
  background: linear-gradient(90deg, rgba(207, 193, 159, 0), rgba(207, 193, 159, 0.42), rgba(205, 216, 224, 0));
}

.control-grid article {
  min-height: 320px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  padding: 46px 34px 34px;
  background: transparent;
}

.control-grid article:last-child {
  border-right: 0;
}

.control-grid span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0 0 54px;
  border: 1px solid rgba(207, 193, 159, 0.3);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.54);
  color: var(--gold-2);
}

.control-icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.control-grid h3 {
  max-width: 280px;
  font-size: 28px;
}

.control-grid p {
  max-width: 320px;
}

.feature-stack {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  grid-template-rows: repeat(3, minmax(154px, auto));
  gap: 0;
  overflow: hidden;
  margin-top: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 28% 12%, rgba(255, 255, 255, 0.1), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.015));
}

.feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  align-items: center;
  gap: 24px;
  min-height: 180px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 28px 30px;
  background: transparent;
}

.feature-card:first-child {
  grid-row: 1 / 4;
  grid-template-columns: 1fr;
  align-content: space-between;
  min-height: 620px;
  border-right: 1px solid var(--line);
  border-bottom: 0;
  padding: 44px;
  background:
    radial-gradient(circle at 46% 58%, rgba(205, 216, 224, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.012));
}

.feature-card:last-child {
  border-bottom: 0;
}

.feature-card img {
  width: 100%;
  height: 136px;
  object-fit: contain;
  margin-top: 0;
  opacity: 0.82;
}

.feature-card:first-child img {
  height: 340px;
  object-fit: contain;
  opacity: 0.94;
}

.feature-card:first-child h3 {
  max-width: 520px;
  font-size: 42px;
  line-height: 1.05;
  font-weight: 560;
}

.feature-card:first-child p {
  max-width: 520px;
  font-size: 17px;
}

.why-grid {
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014)),
    rgba(255, 255, 255, 0.02);
}

.why-card {
  display: grid;
  grid-template-rows: 180px auto auto;
  min-height: 430px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  padding: 32px;
  background: transparent;
}

.why-card:last-child {
  border-right: 0;
}

.why-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 0;
  opacity: 0.78;
}

.why-card h3 {
  margin-top: 28px;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 560;
}

.why-card p {
  max-width: 340px;
  font-size: 16px;
}

.tech-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 56px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 48px;
  background:
    radial-gradient(circle at 78% 34%, rgba(205, 216, 224, 0.11), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.014));
}

.tech-copy p:not(.pill) {
  margin-top: 18px;
}

.tech-actions {
  margin-top: 28px;
}

.tech-section > img {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 34px 60px rgba(0, 0, 0, 0.42));
}

.roadmap-section {
  position: relative;
}

.roadmap-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  margin-top: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at calc(var(--roadmap-progress, 0) * 100%) 0%, rgba(205, 216, 224, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.056), rgba(255, 255, 255, 0.014));
}

.roadmap-line {
  position: absolute;
  left: 42px;
  right: 42px;
  top: 86px;
  height: 1px;
  background: rgba(255, 255, 255, 0.13);
}

.roadmap-line::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(var(--roadmap-progress, 0));
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), rgba(205, 216, 224, 0.16));
  box-shadow: 0 0 24px rgba(205, 216, 224, 0.12);
}

.roadmap-step {
  position: relative;
  min-height: 320px;
  border-right: 1px solid var(--line);
  padding: 52px 30px 34px;
  color: var(--text-muted);
  transition: color 220ms ease, background 220ms ease;
}

.roadmap-step:last-child {
  border-right: 0;
}

.roadmap-step::before {
  content: "";
  position: absolute;
  top: 77px;
  left: 30px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: #050505;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.roadmap-step.active {
  color: var(--text);
  background: linear-gradient(180deg, rgba(205, 216, 224, 0.055), rgba(255, 255, 255, 0));
}

.roadmap-step.active::before {
  border-color: var(--gold-2);
  background: var(--gold-2);
  box-shadow: 0 0 28px rgba(205, 216, 224, 0.16);
}

.roadmap-step span {
  display: block;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 850;
}

.roadmap-step strong {
  display: block;
  margin-top: 86px;
  color: currentColor;
  font-size: 26px;
  line-height: 1.12;
  font-weight: 650;
}

.roadmap-step p {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
}

.contact-section {
  display: grid;
  justify-items: center;
  max-width: 860px;
  text-align: center;
}

.contact-section .pill {
  margin-inline: auto;
}

.contact-section p:not(.pill) {
  max-width: 640px;
  margin-top: 18px;
}

.contact-section .hero-actions {
  justify-content: center;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(320px, auto) minmax(180px, auto);
  gap: 36px;
  width: min(var(--max), calc(100% - 48px));
  margin: 112px auto 0;
  padding: 36px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
}

.site-footer img {
  width: 104px;
}

.site-footer p {
  margin-top: 14px;
  max-width: 330px;
  font-size: 14px;
  line-height: 1.5;
}

.site-footer nav,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-content: flex-start;
  font-size: 14px;
}

.legal {
  grid-column: 1 / -1;
  max-width: none !important;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.detail-hero,
.infra-hero {
  padding: 92px 0 56px;
}

.detail-hero {
  max-width: 920px;
}

.detail-hero > p:last-child {
  margin-top: 20px;
}

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

.data-section .section-heading {
  margin-bottom: 24px;
}

.strategy-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.strategy-principles article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background:
    radial-gradient(circle at 16% 0%, rgba(205, 216, 224, 0.09), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022));
}

.strategy-principles span {
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 850;
}

.strategy-principles h2 {
  max-width: 520px;
  margin-top: 18px;
  font-size: 34px;
}

.strategy-principles p {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.data-board {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background:
    radial-gradient(circle at 18% 0%, rgba(205, 216, 224, 0.09), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.018));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.data-board::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 96px 100%;
  opacity: 0.18;
}

.data-toolbar,
.data-pagination {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.data-eyebrow {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.data-toolbar strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.1;
}

.data-toolbar p {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 14px;
}

.data-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.data-filters button,
.data-pagination button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(0, 0, 0, 0.26);
  color: var(--text-muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.data-filters button:hover,
.data-pagination button:hover:not(:disabled),
.data-filters button.active,
.data-pagination button.active {
  border-color: rgba(207, 193, 159, 0.42);
  background: rgba(207, 193, 159, 0.1);
  color: var(--text);
}

.data-filters button:active,
.data-pagination button:active:not(:disabled) {
  transform: translateY(1px);
}

.data-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.advanced-table-wrap {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  overflow: visible;
}

.advanced-table {
  display: block;
  width: 100%;
  min-width: 0;
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
}

.advanced-table thead,
.advanced-table tbody,
.advanced-table tr {
  display: block;
}

.advanced-table thead tr,
.advanced-table tbody tr {
  display: grid;
  grid-template-columns: minmax(120px, 0.78fr) minmax(180px, 1.08fr) minmax(230px, 1.25fr) minmax(136px, 0.65fr) minmax(110px, 0.56fr) minmax(124px, 0.64fr) 86px;
  align-items: center;
  gap: 14px;
}

.advanced-table thead tr {
  width: calc(100% - 18px);
  margin: 0 auto 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 10px 18px;
  background: rgba(0, 0, 0, 0.32);
}

.advanced-table th {
  padding: 0;
  border: 0;
  color: var(--text-faint);
  font-size: 11px;
  font-weight: 850;
  text-align: left;
  text-transform: uppercase;
}

.advanced-table tbody {
  display: grid;
  gap: 12px;
  padding: 6px 0 10px;
}

.advanced-table tbody tr {
  position: relative;
  width: 100%;
  min-height: 104px;
  margin-top: 0;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 8px;
  padding: 20px 18px;
  background:
    radial-gradient(circle at var(--mx, 12%) 0%, rgba(255, 255, 255, 0.11), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.069), rgba(255, 255, 255, 0.03)),
    rgba(0, 0, 0, 0.22);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  transition: transform 180ms var(--ease), border-color 180ms ease, background 180ms ease, opacity 180ms ease;
}

.advanced-table tbody tr:hover,
.advanced-table tbody tr.is-selected,
.advanced-table tbody tr.is-active,
.advanced-table tbody tr:focus-within {
  z-index: 2;
  border-color: rgba(207, 193, 159, 0.34);
  background:
    radial-gradient(circle at var(--mx, 12%) 0%, rgba(205, 216, 224, 0.11), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.28);
  transform: translateY(-4px);
}

.advanced-table tbody tr.is-hidden {
  display: none;
}

.advanced-table td {
  min-width: 0;
  padding: 0;
  border: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.45;
}

.advanced-table td strong {
  display: block;
  color: var(--text);
  font-size: 18px;
  line-height: 1.1;
}

.advanced-table td span:not(.risk-pill) {
  display: block;
  margin-top: 7px;
  color: var(--text-faint);
}

.metric-cell {
  color: var(--gold-2) !important;
  font-family: "Satoshi", "Inter Display", sans-serif;
  font-size: 24px !important;
  font-weight: 850;
  letter-spacing: 0;
  white-space: nowrap;
}

.risk-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 12px;
  font-weight: 800;
}

.risk-low {
  color: var(--green);
}

.risk-medium-low {
  color: var(--blue);
}

.risk-medium {
  color: var(--gold-2);
}

.risk-high {
  color: var(--red);
}

.table-action-cell {
  justify-self: end;
}

.row-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0 13px;
  background: #ffffff;
  color: #050505;
  font-size: 12px;
  font-weight: 850;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.advanced-table tbody tr:hover .row-action,
.advanced-table tbody tr.is-selected .row-action,
.advanced-table tbody tr.is-active .row-action,
.advanced-table tbody tr:focus-within .row-action {
  opacity: 1;
  transform: translateX(0);
}

.table-state {
  display: none;
  min-height: 180px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  place-items: center;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.18);
}

.data-board.is-loading .advanced-table,
.data-board.is-empty .advanced-table {
  display: none;
}

.data-board.is-loading .table-loading,
.data-board.is-empty .table-empty {
  display: grid;
}

.table-loading::before {
  content: "";
  width: 26px;
  height: 26px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-top-color: var(--gold-2);
  border-radius: 50%;
  animation: table-spin 820ms linear infinite;
}

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

.data-pagination {
  margin-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
  color: var(--text-muted);
  font-size: 13px;
}

.data-pagination > div {
  display: flex;
  gap: 8px;
}

@media (max-width: 920px) {
  .data-toolbar,
  .data-pagination {
    align-items: flex-start;
    flex-direction: column;
  }

  .data-filters {
    justify-content: flex-start;
  }

  .advanced-table thead {
    display: none;
  }

  .advanced-table tbody {
    gap: 12px;
    padding: 0;
  }

  .advanced-table tbody tr,
  .advanced-table tbody tr:nth-child(odd),
  .advanced-table tbody tr:nth-child(even) {
    display: grid;
    grid-template-columns: 1fr;
    justify-self: stretch;
    width: 100%;
    min-height: auto;
    margin-top: 0;
    padding: 18px;
    transform: none;
  }

  .advanced-table tbody tr:hover,
  .advanced-table tbody tr.is-selected,
  .advanced-table tbody tr.is-active,
  .advanced-table tbody tr:focus-within {
    transform: none;
  }

  .advanced-table td {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
  }

  .advanced-table td + td {
    margin-top: 13px;
  }

  .advanced-table td::before {
    content: attr(data-label);
    color: var(--text-faint);
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
  }

  .metric-cell {
    font-size: 21px !important;
  }

  .table-action-cell {
    justify-self: stretch;
  }

  .row-action {
    width: max-content;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 520px) {
  .data-board {
    padding: 14px;
  }

  .data-toolbar strong {
    font-size: 21px;
  }

  .data-filters {
    width: 100%;
  }

  .data-filters button {
    flex: 1 1 auto;
  }

  .advanced-table td {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

.disclosure {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  margin-top: 64px;
  background: rgba(255, 255, 255, 0.04);
}

.disclosure p:not(.pill) {
  margin-top: 14px;
  color: var(--text-soft);
  line-height: 1.55;
}

.disclosure .button {
  margin-top: 22px;
}

.infra-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: 56px;
}

.infra-hero-copy .hero-actions {
  margin-top: 28px;
}

.infra-console,
.network-snapshot,
.bridge-band,
.infra-support,
.campaign-band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.infra-console {
  padding: 24px;
}

.infra-console-top strong {
  display: block;
  margin-top: 12px;
  font-size: 24px;
}

.infra-layers {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.infra-layers article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.34);
}

.infra-layers span,
.snapshot-grid span {
  color: var(--text-muted);
  font-size: 13px;
}

.infra-layers strong {
  display: block;
  margin-top: 8px;
}

.bridge-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 24px;
}

.bridge-band article {
  border: 0;
  border-radius: 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.035);
}

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

.infra-card,
.resource-card {
  min-height: 210px;
  padding: 22px;
}

.infra-support {
  padding: 28px;
}

.infra-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.infra-flow article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.infra-flow span {
  color: var(--gold-2);
  font-weight: 800;
}

.infra-flow h3 {
  margin-top: 12px;
  font-size: 20px;
}

.infra-flow p {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.network-snapshot {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  padding: 30px;
  margin-top: 96px;
}

.snapshot-copy p {
  margin-top: 18px;
  color: var(--text-soft);
  line-height: 1.55;
}

.snapshot-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 0;
}

.snapshot-grid article {
  min-height: 116px;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 16px;
}

.snapshot-grid strong {
  font-size: 24px;
}

.campaign-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  margin-top: 96px;
}

.campaign-band h2 {
  margin-top: 12px;
  font-size: 34px;
}

.campaign-band p:not(.pill) {
  max-width: 760px;
  margin-top: 12px;
  color: var(--text-muted);
}

[data-reveal] {
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}

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

/* Stitch synthesis: stronger product visuals, shorter copy, larger operating modules. */
.advantage-showcase {
  display: grid;
  grid-template-columns: 1.35fr 0.88fr 0.88fr 0.88fr;
  gap: 14px;
  width: min(var(--max), calc(100% - 48px));
  margin: 34px auto 0;
}

.advantage-card {
  position: relative;
  min-height: 292px;
  overflow: hidden;
  border: 1px solid rgba(205, 216, 224, 0.13);
  border-radius: 10px;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 10%), rgba(205, 216, 224, 0.13), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(2, 3, 3, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 70px rgba(0, 0, 0, 0.26);
  transition: transform 190ms var(--ease), border-color 190ms ease, background 190ms ease;
}

.advantage-card:hover,
.advantage-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(207, 193, 159, 0.32);
}

.advantage-card::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.82) 72%);
  pointer-events: none;
}

.advantage-card img {
  width: 100%;
  height: 188px;
  object-fit: contain;
  padding: 22px 18px 0;
  opacity: 0.86;
  filter: grayscale(0.72) contrast(1.05) drop-shadow(0 22px 44px rgba(0, 0, 0, 0.36));
  transform: scale(1.04);
  transition: opacity 190ms ease, filter 190ms ease, transform 190ms ease;
}

.advantage-card:hover img {
  opacity: 0.98;
  filter: grayscale(0.35) contrast(1.08) drop-shadow(0 26px 52px rgba(205, 216, 224, 0.11));
  transform: scale(1.07) translateY(-2px);
}

.advantage-card div {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 20px;
}

.advantage-card span {
  display: inline-flex;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
}

.advantage-card h2,
.advantage-card h3 {
  margin-top: 8px;
  color: var(--text);
  line-height: 1.02;
  letter-spacing: 0;
}

.advantage-card h2 {
  font-size: 56px;
  font-weight: 600;
}

.advantage-card h3 {
  max-width: 280px;
  font-size: 25px;
  font-weight: 600;
}

.advantage-card p {
  max-width: 430px;
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.45;
}

.advantage-card-large {
  min-height: 342px;
}

.advantage-card-large img {
  height: 230px;
  object-fit: contain;
  padding: 20px 28px 0;
}

.strategy-workbench {
  position: relative;
  isolation: isolate;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  border-radius: 12px;
  background:
    radial-gradient(circle at 16% 8%, rgba(207, 193, 159, 0.09), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(154, 168, 179, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018));
}

.strategy-workbench::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18) 50%, rgba(0, 0, 0, 0.72)),
    url("assets/generated/exsat-strategy-integrated-4k.jpg") center / cover no-repeat;
  opacity: 0.2;
  filter: saturate(0.84);
}

.strategy-workbench > * {
  position: relative;
  z-index: 1;
}

.strategy-spotlight {
  display: grid;
  align-content: start;
  padding: 46px;
}

.spotlight-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
}

.spotlight-detail-grid div {
  border: 1px solid rgba(205, 216, 224, 0.12);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(0, 0, 0, 0.22);
}

.spotlight-detail-grid dt {
  color: var(--text-faint);
  font-size: 11px;
  font-weight: 850;
}

.spotlight-detail-grid dd {
  margin: 7px 0 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.35;
}

.spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.strategy-panels {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
}

.strategy-terminal-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(205, 216, 224, 0.12);
  border-radius: 10px;
  padding: 18px 20px;
  background: rgba(0, 0, 0, 0.28);
}

.strategy-terminal-head span,
.terminal-stats span {
  display: block;
  color: var(--text-faint);
  font-size: 11px;
  font-weight: 850;
}

.strategy-terminal-head strong {
  display: block;
  margin-top: 7px;
  color: var(--platinum);
  font-size: 18px;
}

.strategy-terminal-head p {
  max-width: 360px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.45;
  text-align: right;
}

.strategy-curve {
  position: relative;
  overflow: hidden;
  min-height: 178px;
  border: 1px solid rgba(205, 216, 224, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.56)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), transparent 42%, rgba(0, 0, 0, 0.22)),
    url("assets/generated/exsat-strategy-integrated-4k.jpg") center 52% / cover no-repeat,
    radial-gradient(circle at 74% 28%, rgba(207, 193, 159, 0.13), transparent 34%),
    rgba(0, 0, 0, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -54px 90px rgba(0, 0, 0, 0.62);
}

.strategy-curve::before {
  content: none;
}

.strategy-curve span {
  display: none;
}

.strategy-curve span:nth-child(1) { left: 16%; bottom: 50px; opacity: 0.4; }
.strategy-curve span:nth-child(2) { left: 32%; bottom: 66px; opacity: 0.55; }
.strategy-curve span:nth-child(3) { left: 50%; bottom: 86px; }
.strategy-curve span:nth-child(4) { left: 68%; bottom: 102px; opacity: 0.72; }
.strategy-curve span:nth-child(5) { left: 84%; bottom: 124px; opacity: 0.5; }

.terminal-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.terminal-stats div {
  border: 1px solid rgba(205, 216, 224, 0.12);
  border-radius: 8px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.24);
}

.terminal-stats strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.25;
}

.strategy-card {
  grid-template-columns: minmax(120px, 0.55fr) minmax(0, 1fr) minmax(128px, auto);
  grid-template-areas:
    "tag copy yield"
    "name copy term"
    "action copy term";
  min-height: 134px;
  border: 1px solid transparent;
  border-bottom-color: var(--line);
  border-radius: 8px;
  margin-top: 8px;
  padding: 22px 24px;
}

.strategy-card:hover,
.strategy-card.is-focused {
  border-color: rgba(207, 193, 159, 0.28);
  transform: translateX(0) translateY(-2px);
}

.strategy-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.strategy-action {
  grid-area: action;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-top: 12px;
  border: 1px solid rgba(207, 193, 159, 0.28);
  border-radius: 999px;
  padding: 0 11px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 850;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.strategy-card:hover .strategy-action,
.strategy-card.is-focused .strategy-action,
.strategy-card:focus-within .strategy-action {
  opacity: 1;
  transform: translateY(0);
}

.system-layout {
  grid-template-columns: minmax(300px, 0.55fr) minmax(0, 1.45fr);
  gap: 34px;
}

.system-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 16px;
  min-height: 610px;
  border-radius: 12px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.76)),
    radial-gradient(circle at 28% 24%, rgba(207, 193, 159, 0.08), transparent 28%),
    url("assets/generated/exsat-banking-stack-integrated-4k.jpg") center / cover no-repeat;
}

.system-orbit {
  height: 100%;
  min-height: 568px;
  background:
    linear-gradient(180deg, rgba(6, 8, 9, 0.02), rgba(0, 0, 0, 0.5)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent 52%, rgba(0, 0, 0, 0.18)),
    url("assets/generated/exsat-banking-stack-integrated-4k.jpg") center / cover no-repeat;
}

.system-panel {
  display: none;
  align-content: center;
  align-self: stretch;
  min-height: 568px;
  margin-top: 0;
  padding: clamp(30px, 4vw, 48px);
  background:
    radial-gradient(circle at 80% 18%, rgba(207, 193, 159, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(205, 216, 224, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(5, 6, 7, 0.74);
}

.system-panel.active {
  display: grid;
}

.system-panel h3 {
  max-width: 430px;
  font-size: clamp(28px, 3.1vw, 42px);
  line-height: 1.12;
}

.tech-section {
  min-height: 440px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.26)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at 82% 28%, rgba(207, 193, 159, 0.12), transparent 32%),
    url("assets/generated/exsat-settlement-integrated-4k.jpg") center / cover no-repeat;
}

.tech-section > img {
  max-height: 320px;
  object-fit: contain;
}

@media (max-width: 1180px) {
  .site-header {
    width: 100%;
    padding-inline: 16px;
  }

  .main-nav {
    gap: 14px;
    font-size: 13px;
  }

  .home-hero,
  .section,
  .detail-section,
  .detail-hero,
  .infra-hero,
  .bridge-band,
  .network-snapshot,
  .site-footer,
  .metrics-strip {
    width: calc(100% - 32px);
  }

  .hero-copy,
  .split-heading,
  .system-layout,
  .infra-hero,
  .tech-section,
  .network-snapshot {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    justify-content: flex-start;
  }

  .hero-console {
    min-height: 560px;
  }

  .strategy-workbench {
    grid-template-columns: 1fr;
  }

  .strategy-spotlight,
  .system-heading {
    position: relative;
    top: auto;
  }

  .strategy-spotlight {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(205, 216, 224, 0.16);
  }

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

  .product-grid,
  .feature-stack {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .product-card:first-child,
  .feature-card:first-child {
    grid-row: auto;
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-card:first-child img {
    height: 260px;
  }

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

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

  .roadmap-step:nth-child(3) {
    border-right: 0;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 66px;
    gap: 10px;
    justify-content: flex-start;
    padding-inline: 12px;
  }

  .brand {
    min-width: auto;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 100px;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .desktop-label {
    display: none;
  }

  .mobile-label {
    display: inline;
  }

  .header-cta {
    margin-left: auto;
  }

  .home-hero {
    padding-top: 38px;
  }

  .home-hero h1,
  .detail-hero h1,
  .infra-hero h1 {
    font-size: 44px;
    line-height: 1.05;
  }

  .hero-lede,
  .detail-hero > p,
  .infra-hero-copy > p,
  .section-heading > p,
  .tech-copy > p,
  .contact-section > p {
    font-size: 16px;
  }

  .hero-console {
    min-height: 470px;
  }

  .console-topbar {
    padding: 0 16px;
  }

  .console-phone {
    width: 224px;
    left: 52%;
  }

  .console-card-ai {
    left: 5%;
    top: 70px;
    width: 176px;
  }

  .console-card-yield {
    right: 3%;
    bottom: 88px;
    width: 202px;
  }

  .console-ledger,
  .console-status {
    width: 180px;
    padding: 12px;
  }

  .console-ledger {
    left: 4%;
    bottom: 50px;
  }

  .console-status {
    right: 4%;
    top: 46px;
  }

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

  .metrics-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics-strip article:last-child {
    border-bottom: 0;
  }

  .section {
    padding-top: 78px;
  }

  .section-heading h2,
  .tech-copy h2,
  .contact-section h2,
  .detail-section h2,
  .network-snapshot h2,
  .snapshot-copy h2 {
    font-size: 34px;
    line-height: 1.12;
  }

  .strategy-panel,
  .strategy-principles,
  .control-grid,
  .why-grid,
  .bridge-band,
  .infra-grid,
  .resource-grid,
  .snapshot-grid,
  .infra-flow {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .feature-stack {
    grid-template-columns: 1fr;
  }

  .product-card:first-child {
    padding: 30px;
  }

  .product-card:first-child h3 {
    font-size: 34px;
  }

  .product-card:not(:first-child) {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 24px;
  }

  .strategy-card {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "tag yield"
      "name yield"
      "copy copy"
      "term term";
    row-gap: 12px;
    padding: 24px;
  }

  .strategy-spotlight {
    display: none;
  }

  .strategy-card-detail {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    opacity: 0;
    transition: grid-template-rows 240ms var(--ease), opacity 180ms ease, margin-top 180ms ease;
  }

  .strategy-card.is-focused .strategy-card-detail {
    grid-template-rows: 1fr;
    margin-top: 8px;
    opacity: 1;
  }

  .strategy-detail-inner {
    min-height: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 14px;
  }

  .strategy-detail-inner p {
    margin-top: 0;
    color: var(--text-soft);
  }

  .strategy-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
  }

  .strategy-detail-meta span {
    min-height: 28px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 5px 9px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 750;
  }

  .strategy-card strong {
    font-size: 28px;
  }

  .strategy-card small {
    justify-self: start;
    text-align: left;
  }

  .strategy-card p {
    padding-right: 0;
  }

  .strategy-card:not(.is-focused) p {
    display: none;
  }

  .control-grid::before {
    display: none;
  }

  .control-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 28px;
  }

  .control-grid article:last-child {
    border-bottom: 0;
  }

  .control-grid span {
    margin-bottom: 24px;
  }

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

  .feature-card:first-child {
    padding: 30px;
  }

  .feature-card:first-child h3 {
    font-size: 34px;
  }

  .why-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .why-card:last-child {
    border-bottom: 0;
  }

  .tech-section {
    padding: 28px;
  }

  .roadmap-track {
    grid-template-columns: 1fr;
  }

  .roadmap-line {
    top: 38px;
    bottom: 38px;
    left: 38px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .roadmap-line::before {
    transform: scaleY(var(--roadmap-progress, 0));
    transform-origin: top;
    background: linear-gradient(180deg, var(--gold), rgba(205, 216, 224, 0.16));
  }

  .roadmap-step,
  .roadmap-step:nth-child(3) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 30px 24px 30px 72px;
  }

  .roadmap-step:last-child {
    border-bottom: 0;
  }

  .roadmap-step::before {
    top: 35px;
    left: 29px;
  }

  .roadmap-step strong {
    margin-top: 18px;
    font-size: 24px;
  }

  .strategy-spotlight {
    min-height: auto;
  }

  .spotlight-head {
    margin-top: 24px;
  }

  .spotlight-head h3 {
    font-size: 40px;
  }

  .spotlight-head strong {
    font-size: 42px;
  }

  .system-stage {
    padding: 16px;
  }

  .system-orbit {
    height: 236px;
  }

  .orbit-node {
    min-width: 50px;
    min-height: 30px;
    padding: 0 10px;
    font-size: 11px;
  }

  .orbit-node:nth-child(1) {
    top: 16px;
    left: 58%;
  }

  .orbit-node:nth-child(2) {
    top: 42%;
    right: 12px;
  }

  .orbit-node:nth-child(3) {
    right: 24px;
    bottom: 18px;
    left: auto;
    transform: none;
  }

  .orbit-node:nth-child(4) {
    top: 56%;
    left: 16px;
  }

  .orbit-core {
    left: 14px;
    bottom: 14px;
    min-height: 30px;
    padding: 0 10px;
  }

  .orbit-core img {
    width: 48px;
  }

  .system-orbit {
    height: 230px;
  }

  .system-panel {
    padding: 20px;
  }

  .tech-section > img {
    order: -1;
  }

  .site-footer {
    grid-template-columns: 1fr;
    margin-top: 78px;
  }

  .campaign-band {
    display: grid;
  }
}

@media (max-width: 520px) {
  .home-hero,
  .section,
  .detail-section,
  .detail-hero,
  .infra-hero,
  .bridge-band,
  .network-snapshot,
  .site-footer,
  .metrics-strip {
    width: calc(100% - 24px);
  }

  .site-header {
    position: sticky;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    gap: 8px;
    justify-content: space-between;
    padding-inline: 12px;
  }

  .header-cta,
  .button {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: fixed;
    top: 13px;
    right: 12px;
    z-index: 92;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    margin-left: auto;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.11);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .home-hero h1,
  .detail-hero h1,
  .infra-hero h1 {
    font-size: 40px;
  }

  .hero-actions,
  .strategy-tabs,
  .system-tabs {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
    flex: 1 1 100%;
  }

  .tab-button {
    flex: 1 1 0;
    min-width: 0;
  }

  .hero-proof span {
    width: 100%;
  }

  .hero-console {
    min-height: 410px;
    border-radius: 12px;
  }

  .console-phone {
    width: 184px;
    top: 4px;
  }

  .console-card-ai {
    width: 132px;
  }

  .console-card-yield {
    width: 158px;
    bottom: 72px;
  }

  .console-ledger,
  .console-status {
    display: none;
  }

  .strategy-card h3 {
    font-size: 30px;
  }

  .strategy-card strong {
    font-size: 30px;
  }

  .yield-note {
    display: grid;
  }

  .partner-original-strip img {
    width: 100%;
    opacity: 0.42;
  }
}

@media (max-width: 1180px) {
  .advantage-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 32px);
  }

  .strategy-panels {
    padding: 20px;
  }

  .system-stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .system-orbit,
  .system-panel {
    min-height: 420px;
  }
}

@media (max-width: 860px) {
  .advantage-showcase {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
  }

  .advantage-card,
  .advantage-card-large {
    min-height: 260px;
  }

  .advantage-card img,
  .advantage-card-large img {
    height: 170px;
  }

  .advantage-card h2 {
    font-size: 42px;
  }

  .strategy-terminal-head {
    align-items: start;
    flex-direction: column;
  }

  .strategy-terminal-head p {
    max-width: none;
    text-align: left;
  }

  .strategy-curve {
    min-height: 132px;
  }

  .terminal-stats {
    grid-template-columns: 1fr;
  }

  .strategy-action {
    grid-area: auto;
    grid-column: 1 / -1;
    opacity: 1;
    transform: none;
  }

  .system-orbit,
  .system-panel {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .advantage-showcase {
    width: calc(100% - 24px);
  }

  .advantage-card div {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .advantage-card p {
    display: none;
  }

  .advantage-card h3 {
    font-size: 22px;
  }

  .strategy-panels {
    padding: 14px;
  }
}

@media (max-width: 860px) {
  body {
    background:
      radial-gradient(circle at 72% 0%, rgba(151, 169, 184, 0.08), transparent 30%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.34), #000000 580px),
      #000000;
  }

  .home-hero::before {
    inset: -110px -12px 36%;
    opacity: 0.26;
    background-position: 54% top;
  }

  .yield-section::before,
  .system-section::before {
    inset-inline: -12px;
    height: 560px;
    opacity: 0.2;
  }

  .strategy-workbench::before {
    opacity: 0.16;
    background-position: 58% center;
  }

  .system-stage {
    background-position: center;
  }

  .system-orbit {
    background-position: center;
  }

  .tech-section {
    background-position: 58% center;
  }
}

@media (max-width: 520px) {
  .menu-toggle {
    display: inline-flex !important;
    visibility: visible;
    opacity: 1;
  }

  .menu-toggle .button-icon {
    display: none;
  }

  .menu-toggle::before {
    content: "";
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow:
      0 -6px 0 #ffffff,
      0 6px 0 #ffffff;
  }

  body.nav-open .menu-toggle::before {
    width: 17px;
    height: 17px;
    background:
      linear-gradient(45deg, transparent 45%, #ffffff 45% 55%, transparent 55%),
      linear-gradient(-45deg, transparent 45%, #ffffff 45% 55%, transparent 55%);
    box-shadow: none;
  }
}

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

/* Stitch loop institutional redesign: fewer scenes, larger surfaces, tighter product fit. */
:root {
  --bg: #050505;
  --surface: #0b0c0c;
  --surface-2: #111213;
  --surface-3: #171819;
  --line: rgba(229, 226, 218, 0.1);
  --line-strong: rgba(229, 226, 218, 0.18);
  --gold: #d4af37;
  --gold-2: #cfc19f;
  --platinum: #e5e2dc;
  --ice: #a8b1b8;
  --max: 1360px;
}

body.home-page {
  background:
    radial-gradient(circle at 80% 4%, rgba(212, 175, 55, 0.075), transparent 32%),
    radial-gradient(circle at 18% 9%, rgba(168, 177, 184, 0.05), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 460px),
    #050505;
}

body.home-page::before {
  opacity: 0.1;
  background:
    url("assets/exsat-ambient-lines.svg") center top / min(1680px, 150vw) auto no-repeat,
    radial-gradient(circle at 52% 0%, rgba(212, 175, 55, 0.06), transparent 34%);
}

.site-header {
  min-height: 78px;
  padding-block: 16px;
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.76), rgba(6, 6, 6, 0.22) 72%, rgba(6, 6, 6, 0));
  border-bottom: 1px solid rgba(229, 226, 218, 0.055);
}

.brand img {
  width: 116px;
}

.header-cta,
.button-primary {
  background: var(--gold);
  color: #080704;
  border-color: rgba(255, 230, 149, 0.18);
}

.button-secondary {
  background: rgba(229, 226, 218, 0.035);
  border-color: rgba(229, 226, 218, 0.18);
}

.hero-cockpit {
  width: min(1360px, calc(100% - 56px));
  min-height: min(900px, calc(100svh - var(--header)));
  padding: clamp(58px, 8vw, 104px) 0 28px;
}

.hero-cockpit::before {
  inset: -160px max(-96px, calc((1360px - 100vw) / 2)) 8%;
  opacity: 0.34;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.3) 58%, rgba(0, 0, 0, 0.86)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.72)),
    url("assets/generated/exsat-cosmic-wall-4k.jpg") center top / cover no-repeat;
}

.hero-cockpit .hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  max-width: none;
  margin-bottom: 30px;
}

.hero-cockpit .eyebrow,
.hero-cockpit h1,
.hero-cockpit .hero-lede {
  grid-column: 1;
}

.eyebrow,
.pill {
  min-height: 30px;
  border-radius: 4px;
  background: rgba(229, 226, 218, 0.045);
  color: rgba(229, 226, 218, 0.74);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-cockpit h1 {
  max-width: 1040px;
  margin-top: 18px;
  color: var(--platinum);
  font-size: clamp(58px, 7vw, 96px);
  line-height: 0.96;
  font-weight: 560;
}

.hero-cockpit h1 span {
  display: block;
  max-width: 980px;
  margin-top: 10px;
  color: rgba(229, 226, 218, 0.58);
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.08;
}

.hero-cockpit .hero-lede {
  max-width: 760px;
  margin-top: 22px;
  color: rgba(229, 226, 218, 0.72);
}

.hero-cockpit .hero-actions {
  grid-column: 2;
  grid-row: 1 / 4;
  align-self: end;
  justify-content: flex-end;
  min-width: 330px;
  margin-top: 0;
}

.hero-console {
  min-height: clamp(560px, 56vw, 720px);
  border-color: rgba(229, 226, 218, 0.14);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(13, 14, 15, 0.08), rgba(0, 0, 0, 0.85) 86%),
    radial-gradient(circle at 54% 20%, rgba(229, 226, 218, 0.18), transparent 25%),
    linear-gradient(236deg, #191b1d 0%, #272b2e 32%, #121415 74%, #020202 100%);
}

.console-topbar {
  min-height: 52px;
  border-bottom-color: rgba(229, 226, 218, 0.08);
}

.console-field {
  position: absolute;
  inset: -8% -4% 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.82)),
    radial-gradient(circle at 60% 34%, rgba(212, 175, 55, 0.1), transparent 26%),
    url("assets/generated/exsat-cosmic-wall-4k.jpg") center 42% / cover no-repeat;
  opacity: 0.74;
  transform: translate3d(var(--layer-x, 0), var(--layer-y, 0), 0);
}

.console-phone {
  z-index: 4;
  top: -62px;
  width: clamp(292px, 27vw, 392px);
  filter:
    drop-shadow(0 42px 70px rgba(0, 0, 0, 0.72))
    saturate(0.92);
}

.console-card-ai {
  z-index: 5;
  top: 180px;
  left: 10%;
  width: clamp(232px, 24vw, 344px);
}

.console-card-yield {
  z-index: 5;
  right: 8%;
  bottom: 96px;
  width: clamp(244px, 26vw, 372px);
}

.console-ledger,
.console-status {
  z-index: 6;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(229, 226, 218, 0.075), rgba(229, 226, 218, 0.025)),
    rgba(3, 4, 4, 0.72);
}

.console-ledger {
  left: 8%;
  bottom: 90px;
}

.console-status {
  top: 104px;
  right: 7%;
}

.metrics-strip {
  width: min(1360px, calc(100% - 56px));
  margin-top: 24px;
  background:
    linear-gradient(90deg, rgba(229, 226, 218, 0.02), rgba(212, 175, 55, 0.035), rgba(229, 226, 218, 0.02));
}

.partner-rail {
  min-height: 132px;
  margin-top: 18px;
  padding: 18px 0 10px;
  border-top: 1px solid rgba(229, 226, 218, 0.055);
  border-bottom: 1px solid rgba(229, 226, 218, 0.055);
}

.partner-rail p {
  margin-bottom: 4px;
}

.partner-marquee {
  position: relative;
  overflow: hidden;
  padding: 8px 0 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}

.partner-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 64px;
  padding-left: min(14vw, 180px);
  animation: partner-flow 96s linear infinite;
}

.partner-group {
  display: flex;
  align-items: center;
  gap: clamp(44px, 5vw, 76px);
}

.partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
}

.partner-logo img {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  max-height: 40px;
  object-fit: contain;
  opacity: 0.46;
  filter: grayscale(1) contrast(1.02);
  transition: opacity 180ms ease, filter 180ms ease;
}

.partner-logo:nth-child(2) img,
.partner-logo:nth-child(5) img {
  max-height: 44px;
}

.partner-logo:nth-child(8) img {
  max-height: 36px;
}

.partner-marquee:hover .partner-track {
  animation-play-state: paused;
}

.partner-marquee:hover .partner-logo img {
  opacity: 0.76;
  filter: grayscale(0.25) contrast(1.06);
}

@keyframes partner-flow {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 32px));
  }
}

.section {
  padding-top: clamp(92px, 10vw, 146px);
}

.scene-heading {
  margin-bottom: 34px;
}

.account-scene {
  width: min(1360px, calc(100% - 56px));
}

.account-operating-surface {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  min-height: 680px;
  overflow: hidden;
  border: 1px solid rgba(229, 226, 218, 0.13);
  border-radius: 12px;
  background:
    radial-gradient(circle at 28% 24%, rgba(212, 175, 55, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(229, 226, 218, 0.058), rgba(229, 226, 218, 0.014)),
    #070808;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 36px 120px rgba(0, 0, 0, 0.34);
}

.account-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.account-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.04), transparent 56%, rgba(0, 0, 0, 0.66)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.62));
  pointer-events: none;
}

.account-visual img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  object-position: center;
  opacity: 0.78;
  filter: saturate(0.88) contrast(1.08);
}

.account-ledger {
  display: grid;
  align-content: stretch;
  border-left: 1px solid rgba(229, 226, 218, 0.1);
}

.account-ledger article {
  display: grid;
  align-content: center;
  min-height: 170px;
  border-bottom: 1px solid rgba(229, 226, 218, 0.1);
  padding: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.055), transparent 36%),
    rgba(0, 0, 0, 0.12);
  transition: background 180ms ease, transform 180ms ease;
}

.account-ledger article:last-child {
  border-bottom: 0;
}

.account-ledger article:hover {
  background:
    radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.12), transparent 36%),
    rgba(255, 255, 255, 0.025);
}

.account-ledger span {
  display: inline-flex;
  margin-top: 14px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-ledger strong {
  display: block;
  max-width: 440px;
  margin-top: 12px;
  color: var(--platinum);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.16;
  font-weight: 560;
}

.yield-section {
  width: min(1360px, calc(100% - 56px));
}

.yield-section::before {
  inset: 72px max(-96px, calc((1360px - 100vw) / 2)) auto;
  height: 980px;
  opacity: 0.2;
}

.strategy-workbench {
  grid-template-columns: minmax(340px, 0.76fr) minmax(0, 1.24fr);
  min-height: 760px;
  margin-top: 32px;
  border-color: rgba(229, 226, 218, 0.14);
  border-radius: 12px;
  background:
    radial-gradient(circle at 12% 8%, rgba(212, 175, 55, 0.095), transparent 30%),
    linear-gradient(180deg, rgba(229, 226, 218, 0.06), rgba(229, 226, 218, 0.016)),
    #070808;
}

.strategy-workbench::before {
  opacity: 0.16;
}

.strategy-spotlight {
  min-height: 760px;
  padding: clamp(34px, 4vw, 56px);
  border-right-color: rgba(229, 226, 218, 0.1);
}

.spotlight-head h3 {
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 560;
}

.spotlight-head strong {
  color: var(--gold);
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 620;
}

.strategy-panels {
  gap: 14px;
  padding: 22px;
}

.strategy-terminal-head,
.terminal-stats div,
.spotlight-detail-grid div {
  border-color: rgba(229, 226, 218, 0.12);
  background: rgba(0, 0, 0, 0.28);
}

.strategy-curve {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  min-height: 246px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.76)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.64), transparent 48%, rgba(0, 0, 0, 0.35)),
    url("assets/generated/exsat-strategy-integrated-4k.jpg") center 52% / cover no-repeat;
}

.curve-caption span,
.curve-metric span {
  display: block;
  color: rgba(229, 226, 218, 0.52);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.curve-caption strong,
.curve-metric strong {
  display: block;
  margin-top: 8px;
  color: var(--platinum);
  font-size: 22px;
  line-height: 1.12;
}

.curve-metric {
  min-width: 184px;
  border-left: 1px solid rgba(229, 226, 218, 0.14);
  padding-left: 24px;
}

.curve-metric strong {
  color: var(--gold);
  font-size: 34px;
}

.terminal-stats {
  gap: 8px;
}

.strategy-card {
  min-height: 116px;
  margin-top: 0;
  border-bottom-color: rgba(229, 226, 218, 0.08);
  background: rgba(0, 0, 0, 0.08);
}

.strategy-card h3 {
  font-size: 28px;
}

.strategy-card strong {
  color: var(--gold);
  font-size: 32px;
}

#btc-panel .strategy-card strong {
  color: var(--platinum);
}

.yield-note {
  border-color: rgba(229, 226, 218, 0.12);
  background: rgba(255, 255, 255, 0.022);
}

.system-section {
  width: min(1360px, calc(100% - 56px));
}

.system-layout {
  grid-template-columns: minmax(340px, 0.62fr) minmax(0, 1.38fr);
  align-items: start;
}

.system-stage {
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  min-height: 680px;
  border-color: rgba(229, 226, 218, 0.14);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.78)),
    radial-gradient(circle at 30% 24%, rgba(212, 175, 55, 0.1), transparent 34%),
    url("assets/generated/exsat-banking-stack-integrated-4k.jpg") center / cover no-repeat;
}

.system-orbit {
  position: relative;
  min-height: 638px;
  height: 100%;
  border-color: rgba(229, 226, 218, 0.1);
  background:
    linear-gradient(180deg, rgba(7, 8, 8, 0.12), rgba(0, 0, 0, 0.68)),
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08), transparent 31%),
    url("assets/generated/exsat-banking-stack-integrated-4k.jpg") center / cover no-repeat;
}

.system-orbit::before {
  content: "";
  position: absolute;
  inset: 17% 11%;
  border: 1px solid rgba(229, 226, 218, 0.12);
  border-radius: 50%;
  transform: rotate(var(--orbit-rotation, 0deg));
  transition: transform 620ms var(--ease);
}

.system-orbit::after {
  background:
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08), transparent 20%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.04) 50%, rgba(0, 0, 0, 0.42));
}

.rail-core {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  gap: 12px;
  width: 154px;
  height: 154px;
  border: 1px solid rgba(229, 226, 218, 0.18);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(229, 226, 218, 0.08), rgba(229, 226, 218, 0.025)),
    rgba(0, 0, 0, 0.64);
  transform: translate(-50%, -50%) translateY(var(--system-core-y, 0));
  opacity: var(--system-core-opacity, 1);
}

.rail-core img {
  width: 74px;
}

.rail-core span {
  color: rgba(229, 226, 218, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orbit-node {
  position: absolute;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 38px;
  border: 1px solid rgba(229, 226, 218, 0.14);
  border-radius: 4px;
  padding: 0 14px;
  background: rgba(0, 0, 0, 0.58);
  color: rgba(229, 226, 218, 0.62);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: var(--system-node-opacity, 1);
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.orbit-node:nth-of-type(1) {
  top: 13%;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-node:nth-of-type(2) {
  top: 49%;
  right: 8%;
  transform: translateY(-50%);
}

.orbit-node:nth-of-type(3) {
  bottom: 13%;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-node:nth-of-type(4) {
  top: 49%;
  left: 8%;
  transform: translateY(-50%);
}

.orbit-node.active {
  border-color: rgba(212, 175, 55, 0.62);
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-2);
  box-shadow: 0 0 34px rgba(212, 175, 55, 0.12);
}

.system-panel {
  min-height: 638px;
  border-color: rgba(229, 226, 218, 0.12);
  background:
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.075), transparent 34%),
    linear-gradient(180deg, rgba(229, 226, 218, 0.058), rgba(229, 226, 218, 0.02)),
    rgba(0, 0, 0, 0.58);
}

.system-panel h3 {
  max-width: 520px;
}

.proof-scene {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  min-height: 520px;
  gap: 34px;
  border-color: rgba(229, 226, 218, 0.12);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.34)),
    radial-gradient(circle at 82% 32%, rgba(212, 175, 55, 0.1), transparent 34%),
    #080808;
}

.proof-visual {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  border: 1px solid rgba(229, 226, 218, 0.1);
  border-radius: 10px;
}

.proof-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.64));
}

.proof-visual img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  opacity: 0.75;
  filter: saturate(0.82) contrast(1.08);
}

.roadmap-track {
  border-color: rgba(229, 226, 218, 0.12);
  border-radius: 10px;
  background:
    radial-gradient(circle at calc(var(--roadmap-progress, 0) * 100%) 0%, rgba(212, 175, 55, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(229, 226, 218, 0.054), rgba(229, 226, 218, 0.014));
}

.roadmap-step.active::before,
.roadmap-line::before {
  background: var(--gold);
}

.contact-section {
  position: relative;
  max-width: 980px;
  border: 1px solid rgba(229, 226, 218, 0.12);
  border-radius: 12px;
  padding: clamp(44px, 6vw, 72px);
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.095), transparent 38%),
    linear-gradient(180deg, rgba(229, 226, 218, 0.055), rgba(229, 226, 218, 0.014));
}

@media (max-width: 1180px) {
  .hero-cockpit,
  .metrics-strip,
  .account-scene,
  .yield-section,
  .system-section,
  .section,
  .site-footer {
    width: calc(100% - 36px);
  }

  .hero-cockpit .hero-copy,
  .split-heading,
  .account-operating-surface,
  .system-layout,
  .proof-scene {
    grid-template-columns: 1fr;
  }

  .hero-cockpit .hero-actions {
    grid-column: 1;
    grid-row: auto;
    justify-content: flex-start;
    min-width: 0;
    margin-top: 4px;
  }

  .account-ledger {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(229, 226, 218, 0.1);
    border-left: 0;
  }

  .account-ledger article:nth-child(odd) {
    border-right: 1px solid rgba(229, 226, 218, 0.1);
  }

  .system-heading {
    position: relative;
    top: auto;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 66px;
    background:
      linear-gradient(180deg, rgba(6, 6, 6, 0.86), rgba(6, 6, 6, 0.28) 76%, rgba(6, 6, 6, 0));
  }

  .hero-cockpit {
    width: calc(100% - 24px);
    min-height: auto;
    padding-top: 42px;
  }

  .hero-cockpit h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .hero-cockpit h1 span {
    font-size: clamp(22px, 6vw, 30px);
  }

  .hero-console {
    min-height: 450px;
  }

  .console-phone {
    top: -2px;
    width: 228px;
  }

  .console-card-ai {
    top: 122px;
    left: 4%;
    width: 158px;
  }

  .console-card-yield {
    right: 3%;
    bottom: 76px;
    width: 188px;
  }

  .console-ledger,
  .console-status {
    display: none;
  }

  .metrics-strip,
  .account-scene,
  .yield-section,
  .system-section,
  .section,
  .site-footer {
    width: calc(100% - 24px);
  }

  .partner-group {
    gap: 42px;
  }

  .partner-logo {
    height: 48px;
  }

  .partner-logo img {
    max-height: 31px;
  }

  .account-operating-surface {
    min-height: auto;
  }

  .account-visual img {
    min-height: 420px;
  }

  .account-ledger {
    grid-template-columns: 1fr;
  }

  .account-ledger article,
  .account-ledger article:nth-child(odd) {
    min-height: auto;
    border-right: 0;
    padding: 26px;
  }

  .strategy-workbench {
    min-height: auto;
  }

  .strategy-panels {
    padding: 14px;
  }

  .strategy-terminal-head,
  .terminal-stats,
  .strategy-curve {
    grid-template-columns: 1fr;
  }

  .strategy-terminal-head p {
    text-align: left;
  }

  .strategy-curve {
    min-height: 210px;
  }

  .curve-metric {
    min-width: 0;
    margin-top: 18px;
    border-left: 0;
    padding-left: 0;
  }

  .terminal-stats {
    display: none;
  }

  .strategy-card {
    min-height: auto;
  }

  .system-stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .system-orbit,
  .system-panel {
    min-height: 430px;
  }

  .rail-core {
    width: 118px;
    height: 118px;
  }

  .rail-core img {
    width: 58px;
  }

  .orbit-node {
    min-width: 92px;
    min-height: 34px;
    padding: 0 10px;
    font-size: 10px;
  }

  .system-panel {
    min-height: auto;
  }

  .proof-scene {
    padding: 28px;
  }

  .proof-visual {
    order: -1;
    min-height: 260px;
  }

  .proof-visual img {
    min-height: 260px;
  }

  .contact-section {
    padding: 34px 20px;
  }
}

@media (max-width: 520px) {
  .button-primary {
    background: #ffffff;
    color: #050505;
  }

  .hero-console {
    min-height: 390px;
  }

  .console-phone {
    width: 184px;
  }

  .console-card-ai {
    width: 132px;
  }

  .console-card-yield {
    width: 150px;
  }

  .partner-rail {
    min-height: 112px;
  }

  .partner-track {
    gap: 42px;
  }

  .partner-group {
    gap: 32px;
  }

  .partner-logo {
    height: 40px;
  }

  .partner-logo img {
    max-height: 25px;
  }

  .account-visual img {
    min-height: 330px;
  }

  .account-ledger strong {
    font-size: 22px;
  }

  .strategy-tabs {
    gap: 7px;
  }

  .tab-button {
    padding-inline: 10px;
    font-size: 12px;
  }

  .strategy-curve {
    min-height: 180px;
    padding: 18px;
  }

  .curve-caption strong {
    font-size: 18px;
  }

  .curve-metric strong {
    font-size: 28px;
  }

  .system-orbit {
    min-height: 340px;
  }

  .rail-core {
    width: 96px;
    height: 96px;
  }

  .rail-core span {
    display: none;
  }

  .orbit-node {
    min-width: 76px;
    min-height: 30px;
    font-size: 9px;
  }
}

/* Hero cockpit replacement: digital bank entry instead of consumer app mockup. */
.hero-console {
  min-height: clamp(600px, 54vw, 740px);
}

.console-stage {
  overflow: hidden;
}

.banking-cockpit {
  position: absolute;
  z-index: 5;
  inset: 7% 5% 8%;
  overflow: hidden;
  border: 1px solid rgba(229, 226, 218, 0.13);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(4, 5, 5, 0.12), rgba(0, 0, 0, 0.78)),
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1), transparent 26%),
    radial-gradient(circle at 72% 26%, rgba(229, 226, 218, 0.095), transparent 28%),
    url("assets/generated/exsat-banking-stack-integrated-4k.jpg") center / cover no-repeat;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -80px 120px rgba(0, 0, 0, 0.72),
    0 34px 90px rgba(0, 0, 0, 0.38);
  transform: translate3d(var(--layer-x, 0), var(--layer-y, 0), 0);
  transition: transform 220ms ease-out;
}

.banking-cockpit::before,
.banking-cockpit::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.banking-cockpit::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.04) 50%, rgba(0, 0, 0, 0.42)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 36%, rgba(0, 0, 0, 0.68));
}

.banking-cockpit::after {
  opacity: 0.16;
  background:
    linear-gradient(90deg, rgba(229, 226, 218, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(229, 226, 218, 0.08) 1px, transparent 1px);
  background-size: 160px 100%, 100% 132px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 72%);
}

.cockpit-core,
.cockpit-module,
.cockpit-ring,
.cockpit-spine {
  position: absolute;
  z-index: 2;
}

.cockpit-ring {
  left: 50%;
  top: 50%;
  border: 1px solid rgba(229, 226, 218, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cockpit-ring-a {
  width: min(62vw, 760px);
  height: min(62vw, 760px);
  opacity: 0.72;
}

.cockpit-ring-b {
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  border-color: rgba(212, 175, 55, 0.18);
}

.cockpit-spine {
  left: 50%;
  top: 50%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.22), transparent);
  transform-origin: center;
  opacity: 0.78;
}

.cockpit-spine-x {
  width: min(70vw, 880px);
  height: 1px;
  transform: translate(-50%, -50%) rotate(-10deg);
}

.cockpit-spine-y {
  width: min(58vw, 720px);
  height: 1px;
  transform: translate(-50%, -50%) rotate(58deg);
}

.cockpit-core {
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: clamp(156px, 16vw, 220px);
  height: clamp(156px, 16vw, 220px);
  border: 1px solid rgba(229, 226, 218, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.16), transparent 48%),
    linear-gradient(180deg, rgba(229, 226, 218, 0.08), rgba(229, 226, 218, 0.024)),
    rgba(0, 0, 0, 0.66);
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.28),
    0 0 72px rgba(212, 175, 55, 0.13);
}

.cockpit-core img {
  width: clamp(72px, 7vw, 104px);
}

.cockpit-core strong,
.cockpit-core span {
  display: block;
  text-align: center;
}

.cockpit-core strong {
  margin-top: 8px;
  color: var(--platinum);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1;
}

.cockpit-core span {
  margin-top: -4px;
  color: rgba(229, 226, 218, 0.54);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cockpit-module {
  width: clamp(200px, 20vw, 286px);
  min-height: 118px;
  border: 1px solid rgba(229, 226, 218, 0.14);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(229, 226, 218, 0.075), rgba(229, 226, 218, 0.022)),
    rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.cockpit-module:hover {
  border-color: rgba(212, 175, 55, 0.38);
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.11), rgba(229, 226, 218, 0.028)),
    rgba(0, 0, 0, 0.62);
  transform: translateY(-2px);
}

.cockpit-module span,
.cockpit-module small {
  display: block;
  color: rgba(229, 226, 218, 0.52);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cockpit-module strong {
  display: block;
  margin-top: 12px;
  color: var(--platinum);
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.04;
  font-weight: 620;
}

.cockpit-module small {
  margin-top: 9px;
  color: rgba(229, 226, 218, 0.48);
  letter-spacing: 0;
  text-transform: none;
}

.cockpit-account {
  left: 7%;
  top: 11%;
}

.cockpit-yield {
  right: 7%;
  top: 13%;
}

.cockpit-custody {
  left: 8%;
  bottom: 13%;
}

.cockpit-payments {
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
}

.cockpit-payments:hover {
  transform: translateX(-50%) translateY(-2px);
}

.cockpit-proof {
  right: 7%;
  bottom: 13%;
}

.console-stage::after {
  z-index: 1;
}

@media (max-width: 860px) {
  .hero-console {
    min-height: 460px;
  }

  .banking-cockpit {
    inset: 8% 4% 8%;
  }

  .cockpit-core {
    width: 118px;
    height: 118px;
  }

  .cockpit-core img {
    width: 56px;
  }

  .cockpit-core strong {
    font-size: 16px;
  }

  .cockpit-core span {
    display: none;
  }

  .cockpit-module {
    width: 158px;
    min-height: 88px;
    padding: 12px;
  }

  .cockpit-module strong {
    margin-top: 7px;
    font-size: 15px;
  }

  .cockpit-module small {
    display: none;
  }

  .cockpit-module span {
    font-size: 9px;
  }

  .cockpit-account {
    left: 5%;
    top: 9%;
  }

  .cockpit-yield {
    right: 5%;
    top: 11%;
  }

  .cockpit-custody {
    left: 5%;
    bottom: 21%;
  }

  .cockpit-proof {
    right: 5%;
    bottom: 21%;
  }

  .cockpit-payments {
    display: block;
    left: 50%;
    bottom: 6%;
    width: 166px;
    transform: translateX(-50%);
  }

  .cockpit-payments:hover {
    transform: translateX(-50%) translateY(-2px);
  }
}

@media (max-width: 520px) {
  .hero-console {
    min-height: 390px;
  }

  .banking-cockpit {
    inset: 7% 3% 7%;
  }

  .cockpit-ring-a {
    width: 380px;
    height: 380px;
  }

  .cockpit-ring-b {
    width: 260px;
    height: 260px;
  }

  .cockpit-core {
    width: 94px;
    height: 94px;
  }

  .cockpit-core img {
    width: 44px;
  }

  .cockpit-core strong {
    font-size: 13px;
  }

  .cockpit-module {
    width: 132px;
    min-height: 74px;
    padding: 10px;
  }

  .cockpit-payments {
    width: 150px;
  }

  .cockpit-module strong {
    font-size: 12px;
  }
}

/* Final QA pass: clean institutional finish and responsive hardening. */
body.home-page {
  min-width: 0;
}

body.home-page main,
body.home-page section,
body.home-page .hero-copy,
body.home-page .section-heading,
body.home-page .split-heading {
  min-width: 0;
}

body.home-page h1,
body.home-page h2,
body.home-page h3,
body.home-page p,
body.home-page strong,
body.home-page span {
  overflow-wrap: normal;
}

.console-phone,
.console-card-ai,
.console-card-yield,
.console-ledger,
.console-status {
  display: none !important;
}

.site-header {
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.64), rgba(6, 6, 6, 0.16) 74%, rgba(6, 6, 6, 0));
  box-shadow: inset 0 -1px 0 rgba(229, 226, 218, 0.035);
}

.hero-cockpit {
  padding-top: clamp(52px, 7vw, 88px);
}

.hero-cockpit .hero-copy {
  grid-template-columns: minmax(0, 1fr) minmax(250px, auto);
  gap: clamp(22px, 4vw, 48px);
  margin-bottom: clamp(24px, 4vw, 42px);
}

.hero-title-main,
.hero-title-sub {
  display: block;
}

.hero-cockpit h1 .hero-title-main {
  color: var(--platinum);
  font-size: clamp(58px, 7vw, 96px);
  line-height: 0.96;
  text-wrap: balance;
}

.hero-cockpit h1 .hero-title-sub {
  max-width: 920px;
  margin-top: 12px;
  color: rgba(229, 226, 218, 0.56);
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.08;
  text-wrap: balance;
}

.hero-cockpit .hero-lede {
  max-width: 620px;
  color: rgba(229, 226, 218, 0.68);
}

.hero-console {
  min-height: clamp(540px, 48vw, 650px);
  border-radius: 14px;
  background:
    radial-gradient(circle at 52% 30%, rgba(212, 175, 55, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(12, 13, 14, 0.12), rgba(0, 0, 0, 0.88) 88%),
    linear-gradient(236deg, #191b1d 0%, #202427 34%, #101112 72%, #020202 100%);
}

.console-topbar {
  min-height: 48px;
}

.console-stage {
  inset: 48px 0 0;
}

.banking-cockpit {
  inset: 6% 5% 7%;
  border-color: rgba(229, 226, 218, 0.12);
  background:
    linear-gradient(180deg, rgba(3, 4, 4, 0.06), rgba(0, 0, 0, 0.82)),
    radial-gradient(circle at 50% 52%, rgba(212, 175, 55, 0.12), transparent 25%),
    radial-gradient(circle at 70% 20%, rgba(229, 226, 218, 0.08), transparent 28%),
    url("assets/generated/exsat-banking-stack-integrated-4k.jpg") center / cover no-repeat;
}

.banking-cockpit::after {
  opacity: 0.08;
  background-size: 220px 100%, 100% 180px;
}

.cockpit-ring {
  border-color: rgba(229, 226, 218, 0.11);
}

.cockpit-spine {
  opacity: 0.5;
}

.cockpit-core {
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.18), transparent 52%),
    linear-gradient(180deg, rgba(229, 226, 218, 0.075), rgba(229, 226, 218, 0.02)),
    rgba(0, 0, 0, 0.7);
}

.cockpit-module {
  min-width: 0;
  background:
    linear-gradient(180deg, rgba(229, 226, 218, 0.07), rgba(229, 226, 218, 0.018)),
    rgba(1, 1, 1, 0.66);
}

.cockpit-module strong,
.cockpit-module small {
  overflow-wrap: anywhere;
}

.metrics-strip {
  margin-top: 28px;
}

.metrics-strip article {
  min-height: 104px;
}

.partner-rail {
  min-height: 108px;
  margin-top: 10px;
  padding: 14px 0 8px;
}

.partner-rail + .section {
  padding-top: clamp(70px, 7vw, 112px);
}

.partner-marquee {
  padding-top: 2px;
}

.partner-logo {
  height: 50px;
}

.partner-logo img {
  max-height: 34px;
  opacity: 0.5;
}

.scene-heading.split-heading,
.section-heading.split-heading {
  align-items: end;
}

.account-operating-surface,
.strategy-workbench,
.system-stage,
.proof-scene,
.roadmap-track,
.contact-section {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 30px 100px rgba(0, 0, 0, 0.28);
}

.account-operating-surface {
  min-height: 620px;
}

.account-visual img {
  min-height: 620px;
}

.account-ledger article {
  min-height: 155px;
}

.strategy-workbench {
  min-height: 700px;
}

.strategy-spotlight {
  min-height: 700px;
}

.strategy-terminal-head {
  align-items: center;
}

.strategy-curve {
  min-height: 210px;
}

.strategy-card {
  min-height: 108px;
  transition:
    transform 180ms var(--ease),
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.strategy-card:hover,
.strategy-card.is-focused {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 16px 44px rgba(0, 0, 0, 0.18);
}

.strategy-action:hover,
.strategy-action:focus-visible {
  background: rgba(212, 175, 55, 0.1);
}

.system-stage {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  min-height: 590px;
}

.system-orbit {
  min-height: 548px;
}

.system-panel {
  position: relative;
  align-content: start;
  min-height: 548px;
  padding-top: clamp(28px, 3vw, 40px);
  overflow: hidden;
}

.system-panel::before {
  content: "Active operating brief";
  display: inline-flex;
  width: max-content;
  min-height: 28px;
  margin-bottom: clamp(44px, 7vw, 82px);
  border: 1px solid rgba(229, 226, 218, 0.12);
  border-radius: 4px;
  padding: 0 10px;
  align-items: center;
  color: rgba(229, 226, 218, 0.44);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 18%, rgba(212, 175, 55, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 32%);
}

.system-panel > * {
  position: relative;
  z-index: 1;
}

.system-panel h3 {
  max-width: 560px;
}

.proof-scene {
  align-items: center;
}

.proof-visual {
  min-height: 330px;
}

.proof-visual img {
  min-height: 330px;
}

.roadmap-step {
  transition:
    background 180ms ease,
    border-color 180ms ease,
    opacity 180ms ease;
}

@media (max-width: 1180px) {
  .hero-cockpit .hero-copy {
    grid-template-columns: 1fr;
  }

  .hero-cockpit .hero-actions {
    grid-column: 1;
    grid-row: auto;
    min-width: 0;
  }

  .account-operating-surface,
  .account-visual img {
    min-height: 520px;
  }

  .strategy-workbench,
  .strategy-spotlight {
    min-height: auto;
  }

  .system-stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .system-orbit,
  .system-panel {
    min-height: 420px;
  }

  .system-panel::before {
    margin-bottom: 34px;
  }
}

@media (max-width: 860px) {
  body.home-page {
    overflow-x: clip;
  }

  .site-header {
    min-height: 64px;
    padding-block: 12px;
  }

  .hero-cockpit,
  .metrics-strip,
  .account-scene,
  .yield-section,
  .system-section,
  .section,
  .site-footer {
    width: calc(100% - 24px);
    max-width: calc(100vw - 24px);
  }

  .hero-cockpit {
    padding-top: 36px;
  }

  .hero-cockpit h1 {
    max-width: 100%;
    font-size: clamp(38px, 10.4vw, 52px);
    line-height: 1;
  }

  .hero-cockpit h1 .hero-title-main,
  .hero-cockpit h1 .hero-title-sub {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-cockpit h1 .hero-title-main {
    max-width: 10.8ch;
    font-size: clamp(38px, 10.4vw, 52px);
    line-height: 1;
  }

  .hero-cockpit h1 .hero-title-sub {
    margin-top: 10px;
    font-size: clamp(21px, 5.6vw, 28px);
    line-height: 1.12;
  }

  .hero-cockpit .hero-lede {
    max-width: 100%;
  }

  .hero-console {
    min-height: 438px;
    border-radius: 12px;
  }

  .console-topbar {
    min-height: 44px;
    padding: 0 14px;
    font-size: 11px;
  }

  .console-topbar strong {
    display: none;
  }

  .console-stage {
    inset: 44px 0 0;
  }

  .banking-cockpit {
    inset: 6% 3% 6%;
  }

  .cockpit-ring-a {
    width: 360px;
    height: 360px;
  }

  .cockpit-ring-b {
    width: 240px;
    height: 240px;
  }

  .cockpit-core {
    width: 94px;
    height: 94px;
  }

  .cockpit-core img {
    width: 42px;
  }

  .cockpit-core strong {
    font-size: 13px;
  }

  .cockpit-module {
    width: min(140px, 40vw);
    min-height: 70px;
    padding: 9px;
  }

  .cockpit-module span {
    font-size: 8px;
  }

  .cockpit-module strong {
    margin-top: 6px;
    font-size: clamp(11px, 3.05vw, 13px);
    line-height: 1.08;
  }

  .cockpit-account {
    left: 4%;
    top: 8%;
  }

  .cockpit-yield {
    right: 4%;
    top: 9%;
  }

  .cockpit-custody {
    left: 4%;
    bottom: 19%;
  }

  .cockpit-proof {
    right: 4%;
    bottom: 19%;
  }

  .cockpit-payments {
    bottom: 5%;
    width: min(150px, 43vw);
  }

  .metrics-strip {
    margin-top: 20px;
  }

  .metrics-strip article {
    min-height: 92px;
  }

  .metrics-strip strong {
    font-size: 38px;
  }

  .partner-rail {
    min-height: 96px;
    padding-bottom: 0;
  }

  .partner-track {
    padding-left: 28px;
  }

  .partner-logo {
    height: 42px;
  }

  .partner-logo img {
    max-height: 28px;
  }

  .partner-rail + .section {
    padding-top: 64px;
  }

  .account-operating-surface,
  .account-visual img {
    min-height: auto;
  }

  .account-visual img {
    height: 340px;
    object-position: 50% 50%;
  }

  .strategy-card {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "tag"
      "name"
      "yield"
      "term"
      "copy"
      "action";
  }

  .strategy-card strong,
  .strategy-card small {
    justify-self: start;
    text-align: left;
  }

  .strategy-action {
    justify-self: start;
  }

  .system-orbit {
    min-height: 330px;
  }

  .system-panel {
    min-height: auto;
    padding: 24px;
  }

  .system-panel::before {
    margin-bottom: 24px;
  }

  .system-panel h3 {
    font-size: clamp(26px, 8vw, 34px);
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 104px;
  }

  .hero-cockpit h1 {
    font-size: clamp(36px, 9.8vw, 42px);
  }

  .hero-cockpit h1 .hero-title-main {
    max-width: 9.8ch;
    font-size: clamp(36px, 9.8vw, 42px);
  }

  .hero-cockpit h1 .hero-title-sub {
    font-size: clamp(20px, 5.2vw, 24px);
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-console {
    min-height: 398px;
  }

  .cockpit-module {
    width: min(136px, 39vw);
  }

  .cockpit-module strong {
    font-size: 11px;
  }

  .cockpit-core {
    width: 84px;
    height: 84px;
  }

  .cockpit-core img {
    width: 38px;
  }

  .cockpit-core strong {
    font-size: 12px;
  }

  .cockpit-payments {
    width: min(142px, 42vw);
  }

  .section-heading h2,
  .tech-copy h2,
  .contact-section h2,
  .detail-section h2,
  .network-snapshot h2,
  .snapshot-copy h2 {
    font-size: 31px;
  }

  .account-visual img {
    height: 300px;
  }

  .account-ledger article {
    padding: 22px;
  }

  .strategy-terminal-head,
  .strategy-curve,
  .terminal-stats div,
  .strategy-card,
  .yield-note,
  .system-stage,
  .system-panel,
  .proof-scene,
  .roadmap-track,
  .contact-section {
    border-radius: 10px;
  }

  .eyebrow,
  .pill {
    max-width: 100%;
    padding-inline: 8px;
    font-size: 10px;
    letter-spacing: 0.06em;
    white-space: normal;
  }

  .contact-section .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    justify-items: stretch;
    width: 100%;
    gap: 10px;
  }

  .contact-section .button {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .proof-scene {
    padding: 22px 16px;
  }

  .proof-scene > *,
  .tech-copy,
  .tech-actions,
  .tech-actions .button {
    min-width: 0;
    max-width: 100%;
  }
}

/* Final fused-asset pass: keep information inside the visual assets. */
.hero-console {
  overflow: hidden;
  border-color: rgba(236, 234, 226, 0.12);
  background:
    radial-gradient(circle at 76% 8%, rgba(231, 177, 46, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(10, 11, 11, 0.28), rgba(0, 0, 0, 0.92));
}

.hero-console .console-topbar {
  display: none;
}

.hero-console .console-stage {
  inset: 0;
}

.hero-console .console-field {
  display: none;
}

.hero-console .banking-cockpit {
  inset: 0;
  border: 0;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1)),
    url("assets/generated/exsat-digital-bank-cockpit-fused.png") center / cover no-repeat;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -44px 88px rgba(0, 0, 0, 0.34),
    0 34px 90px rgba(0, 0, 0, 0.38);
}

.hero-console .banking-cockpit::before,
.hero-console .banking-cockpit::after,
.hero-console .cockpit-core,
.hero-console .cockpit-module,
.hero-console .cockpit-ring,
.hero-console .cockpit-spine {
  display: none;
}

.system-stage {
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
  gap: clamp(18px, 2.5vw, 34px);
  min-height: auto;
  overflow: hidden;
}

.system-orbit {
  min-height: 460px;
  overflow: hidden;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.74);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.22)),
    url("assets/generated/exsat-banking-stack-fused-mobile.png") center / contain no-repeat;
}

.system-orbit::before,
.system-orbit::after,
.system-orbit .rail-core,
.system-orbit .orbit-node {
  display: none;
}

.system-stage[data-active-system="payments"] .system-orbit {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.22)),
    url("assets/generated/exsat-banking-stack-fused-payments-mobile.png") center / contain no-repeat;
}

.system-stage[data-active-system="custody"] .system-orbit {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.22)),
    url("assets/generated/exsat-banking-stack-fused-custody-mobile.png") center / contain no-repeat;
}

.system-stage[data-active-system="compliance"] .system-orbit {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.22)),
    url("assets/generated/exsat-banking-stack-fused-compliance-mobile.png") center / contain no-repeat;
}

.system-stage[data-active-system="settlement"] .system-orbit {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.22)),
    url("assets/generated/exsat-banking-stack-fused-settlement-mobile.png") center / contain no-repeat;
}

.system-orbit {
  background-color: rgba(0, 0, 0, 0.74);
}

.system-panel {
  min-width: 0;
  min-height: 460px;
  align-content: center;
  gap: clamp(14px, 1.5vw, 20px);
  padding: clamp(30px, 4vw, 56px);
  background:
    radial-gradient(circle at 88% 18%, rgba(231, 177, 46, 0.1), transparent 32%),
    linear-gradient(145deg, rgba(236, 234, 226, 0.055), rgba(236, 234, 226, 0.015)),
    rgba(8, 8, 8, 0.78);
}

.system-panel::before {
  display: none;
}

.system-panel .card-icon {
  width: 28px;
  height: 28px;
}

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

.system-panel h3 {
  max-width: 100%;
  font-size: clamp(32px, 3.15vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.system-panel p,
.system-panel li {
  max-width: 520px;
}

.system-panel ul {
  margin-top: 6px;
}

.system-tabs .system-tab {
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.system-tabs .system-tab:hover,
.system-tabs .system-tab:focus-visible {
  border-color: rgba(231, 177, 46, 0.34);
  color: rgba(236, 234, 226, 0.92);
  transform: translateY(-1px);
}

.home-hero .hero-console {
  animation-name: hero-console-enter;
}

@keyframes hero-console-enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .system-stage {
    grid-template-columns: 1fr;
  }

  .system-panel {
    min-height: auto;
    align-content: start;
  }
}

@media (max-width: 860px) {
  .hero-console .banking-cockpit {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.08)),
      url("assets/generated/exsat-digital-bank-cockpit-fused-mobile.png") center / cover no-repeat;
  }

  .system-orbit {
    min-height: 340px;
  }

  .system-stage[data-active-system="payments"] .system-orbit {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.16)),
      url("assets/generated/exsat-banking-stack-fused-payments-mobile.png") center / contain no-repeat;
  }

  .system-stage[data-active-system="custody"] .system-orbit {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.16)),
      url("assets/generated/exsat-banking-stack-fused-custody-mobile.png") center / contain no-repeat;
  }

  .system-stage[data-active-system="compliance"] .system-orbit {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.16)),
      url("assets/generated/exsat-banking-stack-fused-compliance-mobile.png") center / contain no-repeat;
  }

  .system-stage[data-active-system="settlement"] .system-orbit {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.16)),
      url("assets/generated/exsat-banking-stack-fused-settlement-mobile.png") center / contain no-repeat;
  }

  .system-panel {
    padding: 26px;
  }

  .system-panel h3 {
    font-size: clamp(28px, 7.6vw, 38px);
  }
}

@media (max-width: 520px) {
  .hero-console {
    min-height: 330px;
  }

  .hero-console .banking-cockpit {
    border-radius: 12px;
    background-size: cover;
  }

  .system-orbit {
    min-height: 260px;
    background-size: cover;
  }

  .system-panel {
    padding: 22px 18px;
  }

  .system-panel h3 {
    font-size: clamp(25px, 7vw, 31px);
  }

  .system-panel p,
  .system-panel li {
    font-size: 15px;
  }
}

/* Banking stack redesign: make the section read as one institutional operating desk. */
.system-section {
  padding-block: clamp(82px, 8vw, 134px);
}

.system-section::before {
  opacity: 0.28;
  filter: blur(1px);
}

.system-layout {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3vw, 36px);
  max-width: 1780px;
  padding: clamp(22px, 3vw, 46px);
  border: 1px solid rgba(236, 234, 226, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 82% 6%, rgba(231, 177, 46, 0.12), transparent 30%),
    radial-gradient(circle at 16% 100%, rgba(236, 234, 226, 0.045), transparent 34%),
    linear-gradient(145deg, rgba(236, 234, 226, 0.055), rgba(236, 234, 226, 0.014) 42%, rgba(0, 0, 0, 0.42)),
    rgba(5, 6, 6, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 36px 110px rgba(0, 0, 0, 0.42);
}

.system-heading {
  display: grid !important;
  grid-template-columns: minmax(0, 0.92fr) auto;
  gap: clamp(18px, 3vw, 48px);
  align-items: end;
  max-width: none;
}

.system-heading .pill {
  width: fit-content;
  margin: 0 0 18px;
  border-color: rgba(236, 234, 226, 0.14);
  background: rgba(236, 234, 226, 0.045);
  color: rgba(236, 234, 226, 0.72);
  letter-spacing: 0.06em;
}

.system-heading h2 {
  max-width: 920px;
  font-size: clamp(42px, 5vw, 80px);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.system-heading p:not(.pill) {
  max-width: 680px;
  margin-top: clamp(18px, 2vw, 26px);
  color: rgba(236, 234, 226, 0.62);
  font-size: clamp(17px, 1.18vw, 20px);
  line-height: 1.55;
}

.system-tabs {
  align-self: end;
  justify-content: flex-end;
  width: fit-content;
  min-width: min(100%, 620px);
  padding: 6px;
  border: 1px solid rgba(236, 234, 226, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(236, 234, 226, 0.07), rgba(236, 234, 226, 0.025)),
    rgba(0, 0, 0, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.system-tabs .system-tab {
  min-width: 116px;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(236, 234, 226, 0.54);
  font-size: 15px;
  font-weight: 650;
}

.system-tabs .system-tab.active {
  color: rgba(9, 10, 10, 0.96);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(220, 216, 204, 0.9));
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.system-tabs .system-tab:hover,
.system-tabs .system-tab:focus-visible {
  color: rgba(236, 234, 226, 0.88);
  background: rgba(236, 234, 226, 0.055);
  transform: translateY(-1px);
}

.system-tabs .system-tab.active:hover,
.system-tabs .system-tab.active:focus-visible {
  color: rgba(9, 10, 10, 0.96);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(221, 218, 207, 0.94));
}

.system-stage {
  --orbit-rotation: 0deg;
  position: relative;
  display: grid !important;
  grid-template-columns: minmax(0, 1.46fr) minmax(310px, 0.56fr);
  gap: clamp(18px, 2vw, 28px);
  min-height: 0;
  padding: clamp(14px, 1.6vw, 22px);
  overflow: hidden;
  border: 1px solid rgba(236, 234, 226, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(236, 234, 226, 0.045), transparent 32%, rgba(231, 177, 46, 0.055)),
    rgba(4, 5, 5, 0.64);
}

.system-stage::before {
  content: "";
  position: absolute;
  inset: -30% -10%;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 48%, rgba(231, 177, 46, 0.09), transparent 31%),
    radial-gradient(circle at 78% 18%, rgba(236, 234, 226, 0.055), transparent 26%);
  opacity: 0.78;
}

.system-orbit {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 9;
  min-height: 0;
  height: auto;
  overflow: hidden;
  border: 1px solid rgba(236, 234, 226, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(2, 3, 3, 0.06), rgba(0, 0, 0, 0.34)),
    url("assets/generated/exsat-banking-stack-integrated-4k.jpg") center / cover no-repeat;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -72px 110px rgba(0, 0, 0, 0.52),
    0 22px 70px rgba(0, 0, 0, 0.36);
}

.system-orbit::before,
.system-orbit::after {
  content: "";
  position: absolute;
  display: block;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.system-orbit::before {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), transparent 24%, transparent 76%, rgba(0, 0, 0, 0.56)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 42%, rgba(0, 0, 0, 0.58));
}

.system-orbit::after {
  z-index: 2;
  inset: 11% 18%;
  border-radius: 999px;
  opacity: 0.78;
  background: conic-gradient(from var(--orbit-rotation), rgba(231, 177, 46, 0.58) 0deg 32deg, rgba(236, 234, 226, 0.1) 36deg 76deg, transparent 92deg 360deg);
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
}

.system-orbit .rail-core,
.system-orbit .orbit-node {
  display: inline-flex;
  position: absolute;
  z-index: 3;
}

.system-orbit .rail-core {
  left: 50%;
  top: 54%;
  display: grid;
  place-items: center;
  width: clamp(150px, 15vw, 230px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(236, 234, 226, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 38%, rgba(236, 234, 226, 0.14), transparent 52%),
    rgba(0, 0, 0, 0.46);
  box-shadow:
    0 0 0 1px rgba(231, 177, 46, 0.08),
    0 24px 70px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.system-orbit .rail-core img {
  width: clamp(64px, 7vw, 108px);
  filter: drop-shadow(0 0 18px rgba(231, 177, 46, 0.28));
}

.system-orbit .rail-core span {
  margin-top: 8px;
  color: rgba(236, 234, 226, 0.66);
  font-size: clamp(11px, 0.82vw, 14px);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.system-orbit .orbit-node {
  align-items: center;
  justify-content: center;
  width: auto !important;
  height: auto !important;
  aspect-ratio: auto !important;
  min-width: clamp(128px, 12vw, 184px);
  min-height: clamp(44px, 4vw, 58px);
  padding: 0 22px;
  border: 1px solid rgba(236, 234, 226, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(236, 234, 226, 0.08), rgba(236, 234, 226, 0.025)),
    rgba(0, 0, 0, 0.42);
  color: rgba(236, 234, 226, 0.54);
  font-size: clamp(14px, 1.06vw, 18px);
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.system-orbit .orbit-node[data-system-node="payments"] {
  left: 50%;
  right: auto !important;
  top: 16%;
  bottom: auto !important;
  transform: translateX(-50%);
}

.system-orbit .orbit-node[data-system-node="custody"] {
  left: auto !important;
  right: 9%;
  top: 50%;
  bottom: auto !important;
  transform: translateY(-50%);
}

.system-orbit .orbit-node[data-system-node="compliance"] {
  left: 50%;
  right: auto !important;
  top: auto !important;
  bottom: 10%;
  transform: translateX(-50%);
}

.system-orbit .orbit-node[data-system-node="settlement"] {
  left: 9%;
  right: auto !important;
  top: 50%;
  bottom: auto !important;
  transform: translateY(-50%);
}

.system-orbit .orbit-node.active {
  border-color: rgba(231, 177, 46, 0.54);
  background:
    linear-gradient(180deg, rgba(231, 177, 46, 0.22), rgba(231, 177, 46, 0.065)),
    rgba(0, 0, 0, 0.52);
  color: rgba(250, 219, 126, 0.94);
  box-shadow:
    0 0 0 1px rgba(231, 177, 46, 0.12),
    0 16px 42px rgba(0, 0, 0, 0.38),
    0 0 34px rgba(231, 177, 46, 0.12);
}

.system-status-rail {
  position: absolute;
  z-index: 4;
  left: clamp(28px, 3vw, 48px);
  right: calc(min(36vw, 420px) + clamp(38px, 4vw, 62px));
  bottom: clamp(28px, 3vw, 42px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(236, 234, 226, 0.11);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(14px);
}

.system-status-rail span {
  min-width: 0;
  padding: 12px 10px;
  color: rgba(236, 234, 226, 0.56);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  background: rgba(236, 234, 226, 0.035);
}

.system-panel {
  position: relative;
  z-index: 2;
  min-height: 0;
  align-content: end;
  gap: 16px;
  padding: clamp(24px, 2.4vw, 34px);
  border: 1px solid rgba(236, 234, 226, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(236, 234, 226, 0.07), rgba(236, 234, 226, 0.025)),
    radial-gradient(circle at 82% 12%, rgba(231, 177, 46, 0.12), transparent 30%),
    rgba(7, 8, 8, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 24px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
}

.system-panel.active {
  display: grid;
  animation: system-brief-enter 220ms ease both;
}

.system-panel:not(.active) {
  display: none;
}

.system-panel::before,
.system-panel::after {
  display: none;
}

.system-panel .card-icon {
  width: 24px;
  height: 24px;
  color: rgba(231, 177, 46, 0.88);
}

.system-panel > span {
  margin: 0;
  color: rgba(236, 234, 226, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.system-panel h3 {
  max-width: 100%;
  font-size: clamp(29px, 2.55vw, 44px);
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

.system-panel p {
  max-width: 440px;
  color: rgba(236, 234, 226, 0.58);
  font-size: 15px;
  line-height: 1.55;
}

.system-panel ul {
  display: grid;
  gap: 9px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.system-panel li {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: none;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(236, 234, 226, 0.09);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.2);
  color: rgba(236, 234, 226, 0.68);
  font-size: 14px;
  line-height: 1.32;
}

.system-panel li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(231, 177, 46, 0.84);
  box-shadow: 0 0 16px rgba(231, 177, 46, 0.18);
}

@keyframes system-brief-enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .system-heading {
    grid-template-columns: 1fr;
  }

  .system-tabs {
    justify-content: flex-start;
  }

  .system-stage {
    grid-template-columns: 1fr;
  }

  .system-status-rail {
    right: clamp(28px, 3vw, 48px);
  }

  .system-panel {
    align-content: start;
  }
}

@media (max-width: 760px) {
  .system-layout {
    padding: 18px;
    border-radius: 18px;
  }

  .system-heading h2 {
    font-size: clamp(36px, 10vw, 52px);
  }

  .system-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    min-width: 0;
    border-radius: 16px;
  }

  .system-tabs .system-tab {
    min-width: 0;
    min-height: 44px;
  }

  .system-stage {
    padding: 10px;
    border-radius: 16px;
  }

  .system-orbit {
    aspect-ratio: 1 / 1;
    background-position: center;
  }

  .system-orbit::after {
    inset: 15%;
  }

  .system-orbit .rail-core {
    width: 132px;
  }

  .system-orbit .rail-core img {
    width: 62px;
  }

  .system-orbit .orbit-node {
    width: auto !important;
    height: auto !important;
    aspect-ratio: auto !important;
    min-width: 104px;
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }

  .system-orbit .orbit-node[data-system-node="payments"] {
    top: 11%;
  }

  .system-orbit .orbit-node[data-system-node="custody"] {
    right: 4%;
  }

  .system-orbit .orbit-node[data-system-node="settlement"] {
    left: 4%;
  }

  .system-status-rail {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-column: 1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 10px;
  }

  .system-panel {
    padding: 22px;
  }

  .system-panel h3 {
    font-size: clamp(27px, 8vw, 36px);
  }
}

@media (max-width: 460px) {
  .system-orbit {
    aspect-ratio: 0.92 / 1;
  }

  .system-orbit .rail-core {
    width: 116px;
  }

  .system-orbit .orbit-node {
    width: auto !important;
    height: auto !important;
    aspect-ratio: auto !important;
    min-width: 92px;
    min-height: 34px;
    font-size: 11px;
  }

  .system-status-rail {
    display: none;
  }

  .system-panel {
    padding: 18px;
  }
}

/* Banking stack cleanup: remove old state-composite imagery and tighten heading flow. */
.system-heading {
  grid-template-columns: minmax(0, 1fr) auto;
}

.system-heading-copy {
  min-width: 0;
}

.system-heading-copy .pill,
.system-heading-copy h2,
.system-heading-copy p {
  grid-column: auto;
}

.system-heading-copy h2 {
  max-width: 980px;
}

.system-heading-copy p:not(.pill) {
  max-width: 690px;
}

.system-stage[data-active-system="payments"] .system-orbit,
.system-stage[data-active-system="custody"] .system-orbit,
.system-stage[data-active-system="compliance"] .system-orbit,
.system-stage[data-active-system="settlement"] .system-orbit {
  background:
    linear-gradient(180deg, rgba(2, 3, 3, 0.06), rgba(0, 0, 0, 0.34)),
    url("assets/generated/exsat-banking-stack-integrated-4k.jpg") center / cover no-repeat;
}

.system-stage[data-active-system="payments"] {
  --orbit-rotation: 0deg;
}

.system-stage[data-active-system="custody"] {
  --orbit-rotation: 90deg;
}

.system-stage[data-active-system="compliance"] {
  --orbit-rotation: 180deg;
}

.system-stage[data-active-system="settlement"] {
  --orbit-rotation: 270deg;
}

@media (max-width: 1180px) {
  .system-heading {
    grid-template-columns: 1fr;
  }
}

/* Platform polish pass: remove cheapness across the full homepage surface. */
:root {
  --premium-bg: #030404;
  --premium-panel: rgba(12, 13, 13, 0.76);
  --premium-panel-2: rgba(18, 19, 18, 0.64);
  --premium-line: rgba(230, 226, 214, 0.105);
  --premium-line-strong: rgba(230, 226, 214, 0.18);
  --premium-text: rgba(244, 242, 235, 0.94);
  --premium-muted: rgba(226, 222, 210, 0.58);
  --premium-faint: rgba(226, 222, 210, 0.36);
  --premium-gold: #d7b94a;
  --premium-radius: 18px;
  --premium-shadow: 0 34px 100px rgba(0, 0, 0, 0.36);
}

body.home-page {
  background:
    radial-gradient(circle at 78% 0%, rgba(214, 179, 70, 0.08), transparent 31%),
    radial-gradient(circle at 8% 18%, rgba(182, 196, 204, 0.04), transparent 28%),
    linear-gradient(180deg, #040505 0%, #000 28%, #030404 100%);
  color: var(--premium-text);
}

body.home-page::before {
  opacity: 0.1;
  filter: saturate(0.72) contrast(1.08);
}

body.home-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at 50% 12%, #000 0%, transparent 58%);
  -webkit-mask-image: radial-gradient(circle at 50% 12%, #000 0%, transparent 58%);
  opacity: 0.22;
}

.site-header {
  min-height: 76px;
  padding-inline: max(28px, calc((100vw - 1440px) / 2));
  border-bottom: 1px solid rgba(230, 226, 214, 0.055);
  background:
    linear-gradient(180deg, rgba(5, 6, 6, 0.9), rgba(5, 6, 6, 0.58) 72%, rgba(5, 6, 6, 0.1));
  backdrop-filter: blur(20px) saturate(1.08);
  -webkit-backdrop-filter: blur(20px) saturate(1.08);
}

.brand {
  min-width: 214px;
  gap: 14px;
  color: rgba(244, 242, 235, 0.78);
}

.brand img {
  width: 122px;
}

.main-nav {
  gap: 28px;
  color: rgba(226, 222, 210, 0.5);
}

.main-nav a {
  position: relative;
  padding-block: 12px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 1px;
  background: rgba(215, 185, 74, 0.72);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  min-height: 46px;
  border-color: rgba(230, 226, 214, 0.12);
  box-shadow: none;
}

.button-primary,
.header-cta {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(226, 223, 213, 0.92));
  color: #090a0a;
}

.button-secondary {
  border-color: rgba(230, 226, 214, 0.14);
  background:
    linear-gradient(180deg, rgba(230, 226, 214, 0.065), rgba(230, 226, 214, 0.02));
  color: rgba(244, 242, 235, 0.86);
}

.button-primary:hover,
.header-cta:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(238, 234, 222, 0.96));
  box-shadow: 0 14px 34px rgba(215, 185, 74, 0.1);
}

.button-secondary:hover {
  border-color: rgba(230, 226, 214, 0.26);
  background:
    linear-gradient(180deg, rgba(230, 226, 214, 0.095), rgba(230, 226, 214, 0.035));
}

.home-hero.hero-cockpit {
  width: min(1440px, calc(100% - 64px));
  padding: clamp(70px, 7vw, 106px) clamp(28px, 3.5vw, 64px) clamp(54px, 5vw, 78px);
  overflow: visible;
}

.home-hero::before {
  inset: -120px -6vw 18%;
  opacity: 0.32;
  background:
    radial-gradient(circle at 82% 16%, rgba(215, 185, 74, 0.12), transparent 28%),
    radial-gradient(circle at 22% 18%, rgba(230, 226, 214, 0.06), transparent 22%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.74)),
    url("assets/generated/exsat-cosmic-wall-4k.jpg") center top / cover no-repeat;
}

.hero-cockpit .hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(310px, auto);
  align-items: end;
  max-width: none;
  margin-bottom: clamp(34px, 4vw, 58px);
}

.hero-cockpit .eyebrow,
.hero-cockpit h1,
.hero-cockpit .hero-lede {
  grid-column: 1 / 2;
}

.hero-cockpit .hero-actions {
  grid-column: 2 / 3;
  justify-content: flex-end;
  align-self: end;
  margin-top: 0;
}

.eyebrow,
.pill {
  min-height: 30px;
  border-radius: 7px;
  border-color: rgba(230, 226, 214, 0.14);
  background:
    linear-gradient(180deg, rgba(230, 226, 214, 0.06), rgba(230, 226, 214, 0.02));
  color: rgba(230, 226, 214, 0.68);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-cockpit h1 {
  max-width: 980px;
  margin-top: 24px;
}

.hero-cockpit h1 .hero-title-main {
  max-width: none;
  color: rgba(244, 242, 235, 0.96);
  font-size: clamp(64px, 6.6vw, 106px);
  line-height: 0.93;
  letter-spacing: 0;
}

.hero-cockpit h1 .hero-title-sub {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(230, 226, 214, 0.55);
  font-size: clamp(30px, 2.6vw, 44px);
  line-height: 1.08;
}

.hero-cockpit .hero-lede {
  max-width: 620px;
  margin-top: 28px;
  color: rgba(230, 226, 214, 0.62);
  font-size: 18px;
}

.hero-console {
  min-height: clamp(560px, 45vw, 680px);
  border: 1px solid rgba(230, 226, 214, 0.115);
  border-radius: 20px;
  background:
    radial-gradient(circle at 80% 8%, rgba(215, 185, 74, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(13, 14, 14, 0.12), rgba(0, 0, 0, 0.88) 92%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 42px 120px rgba(0, 0, 0, 0.42);
}

.hero-console .banking-cockpit {
  border-radius: 20px;
  filter: saturate(0.96) contrast(1.04);
}

.metrics-strip {
  width: min(1440px, calc(100% - 64px));
  margin-top: 18px;
  border-color: rgba(230, 226, 214, 0.08);
  background: linear-gradient(90deg, transparent, rgba(230, 226, 214, 0.028), transparent);
}

.metrics-strip article {
  min-height: 112px;
  border-color: rgba(230, 226, 214, 0.08);
}

.metrics-strip strong {
  color: rgba(244, 242, 235, 0.94);
  font-size: clamp(36px, 3.4vw, 54px);
  font-weight: 800;
}

.metrics-strip span {
  color: rgba(230, 226, 214, 0.48);
}

.partner-section {
  min-height: 112px;
  padding-block: 20px 10px;
  background:
    linear-gradient(90deg, transparent, rgba(230, 226, 214, 0.026), transparent);
}

.partner-section p {
  color: rgba(230, 226, 214, 0.45);
}

.partner-logo img {
  opacity: 0.43;
  filter: grayscale(1) contrast(1.08);
}

.partner-marquee:hover .partner-track {
  animation-play-state: paused;
}

.partner-marquee:hover .partner-logo img {
  opacity: 0.72;
}

.section {
  padding-top: clamp(92px, 8vw, 136px);
}

.section,
.account-scene,
.yield-section,
.system-section,
.tech-section,
.roadmap-section,
.site-footer {
  width: min(1440px, calc(100% - 64px));
}

.section-heading h2,
.scene-heading h2,
.tech-copy h2,
.contact-section h2 {
  color: rgba(244, 242, 235, 0.95);
  font-size: clamp(48px, 5vw, 78px);
  line-height: 0.98;
  font-weight: 520;
  text-wrap: balance;
}

.section-heading > p,
.compact-heading > p,
.tech-copy > p,
.contact-section > p {
  color: rgba(230, 226, 214, 0.58);
}

.split-heading {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.46fr);
  gap: clamp(42px, 6vw, 88px);
}

.account-scene {
  padding-top: clamp(100px, 8vw, 150px);
}

.account-scene .scene-heading {
  margin-bottom: 36px;
}

.account-scene .scene-heading h2 {
  max-width: 930px;
}

.account-scene .scene-heading > p {
  color: rgba(230, 226, 214, 0.62);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.55;
}

.account-operating-surface {
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.72fr);
  min-height: 640px;
  overflow: hidden;
  border: 1px solid rgba(230, 226, 214, 0.11);
  border-radius: var(--premium-radius);
  background:
    radial-gradient(circle at 76% 8%, rgba(215, 185, 74, 0.09), transparent 31%),
    linear-gradient(145deg, rgba(230, 226, 214, 0.045), rgba(230, 226, 214, 0.012)),
    rgba(4, 5, 5, 0.72);
  box-shadow: var(--premium-shadow);
}

.account-visual {
  min-width: 0;
}

.account-visual img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.04) brightness(0.92);
}

.account-ledger {
  display: grid;
  min-width: 0;
}

.account-ledger article {
  min-height: 160px;
  border-color: rgba(230, 226, 214, 0.085);
  background:
    linear-gradient(180deg, rgba(230, 226, 214, 0.04), rgba(230, 226, 214, 0.012));
}

.account-ledger article:hover {
  background:
    linear-gradient(180deg, rgba(230, 226, 214, 0.065), rgba(230, 226, 214, 0.018));
}

.account-ledger strong {
  color: rgba(244, 242, 235, 0.88);
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.12;
}

.yield-section {
  padding-top: clamp(116px, 9vw, 164px);
}

.yield-section::before {
  opacity: 0.34;
  filter: saturate(0.88) contrast(1.04);
}

.strategy-workbench {
  grid-template-columns: minmax(340px, 0.62fr) minmax(0, 1fr);
  min-height: 760px;
  border: 1px solid rgba(230, 226, 214, 0.11);
  border-radius: var(--premium-radius);
  background:
    radial-gradient(circle at 14% 8%, rgba(215, 185, 74, 0.08), transparent 29%),
    linear-gradient(135deg, rgba(230, 226, 214, 0.045), rgba(230, 226, 214, 0.012)),
    rgba(4, 5, 5, 0.72);
  box-shadow: var(--premium-shadow);
}

.strategy-spotlight {
  min-height: 760px;
  border-right-color: rgba(230, 226, 214, 0.08);
  background:
    linear-gradient(180deg, rgba(215, 185, 74, 0.08), rgba(230, 226, 214, 0.012) 36%, rgba(0, 0, 0, 0.04));
}

.spotlight-head strong {
  color: var(--premium-gold);
  text-shadow: none;
}

.strategy-terminal-head,
.strategy-curve,
.terminal-stats div,
.yield-note {
  border-color: rgba(230, 226, 214, 0.1);
  background: rgba(0, 0, 0, 0.28);
}

.strategy-curve {
  min-height: 190px;
  filter: saturate(0.9) contrast(1.04);
}

.strategy-card {
  min-height: 118px;
  border-color: rgba(230, 226, 214, 0.078);
  background:
    linear-gradient(90deg, rgba(230, 226, 214, 0.035), rgba(230, 226, 214, 0.012)),
    rgba(0, 0, 0, 0.16);
}

.strategy-card:hover,
.strategy-card.is-focused {
  border-color: rgba(215, 185, 74, 0.28);
  background:
    linear-gradient(90deg, rgba(215, 185, 74, 0.09), rgba(230, 226, 214, 0.018)),
    rgba(0, 0, 0, 0.2);
}

.strategy-card strong {
  color: var(--premium-gold);
  font-weight: 760;
}

.strategy-action {
  border-radius: 999px;
}

.system-section {
  width: min(1440px, calc(100% - 64px));
}

.system-layout {
  border-color: rgba(230, 226, 214, 0.105);
  border-radius: 22px;
  background:
    radial-gradient(circle at 78% 0%, rgba(215, 185, 74, 0.09), transparent 28%),
    linear-gradient(145deg, rgba(230, 226, 214, 0.044), rgba(230, 226, 214, 0.012)),
    rgba(4, 5, 5, 0.74);
}

.system-heading-copy h2 {
  font-size: clamp(48px, 5vw, 76px);
}

.system-stage {
  border-color: rgba(230, 226, 214, 0.105);
  background:
    linear-gradient(90deg, rgba(230, 226, 214, 0.034), transparent 42%, rgba(215, 185, 74, 0.045)),
    rgba(0, 0, 0, 0.24);
}

.system-panel {
  background:
    radial-gradient(circle at 82% 12%, rgba(215, 185, 74, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(230, 226, 214, 0.055), rgba(230, 226, 214, 0.015)),
    rgba(5, 6, 6, 0.74);
}

.proof-scene {
  grid-template-columns: minmax(0, 0.7fr) minmax(360px, 0.9fr);
  border: 1px solid rgba(230, 226, 214, 0.105);
  border-radius: var(--premium-radius);
  background:
    radial-gradient(circle at 82% 18%, rgba(215, 185, 74, 0.08), transparent 30%),
    linear-gradient(135deg, rgba(230, 226, 214, 0.04), rgba(230, 226, 214, 0.012)),
    rgba(4, 5, 5, 0.7);
}

.proof-visual {
  border-radius: 16px;
  overflow: hidden;
}

.proof-visual img {
  filter: saturate(0.88) contrast(1.05) brightness(0.9);
}

.roadmap-track {
  border-color: rgba(230, 226, 214, 0.105);
  border-radius: var(--premium-radius);
  background:
    radial-gradient(circle at calc(var(--roadmap-progress, 0) * 100%) 0%, rgba(215, 185, 74, 0.105), transparent 34%),
    linear-gradient(180deg, rgba(230, 226, 214, 0.04), rgba(230, 226, 214, 0.012)),
    rgba(4, 5, 5, 0.72);
}

.roadmap-step {
  border-color: rgba(230, 226, 214, 0.08);
  background: rgba(0, 0, 0, 0.16);
}

.roadmap-step.active {
  border-color: rgba(215, 185, 74, 0.32);
  background:
    linear-gradient(180deg, rgba(215, 185, 74, 0.075), rgba(230, 226, 214, 0.018));
}

.contact-section {
  width: min(1080px, calc(100% - 64px));
  border: 1px solid rgba(230, 226, 214, 0.105);
  border-radius: 22px;
  background:
    radial-gradient(circle at 76% 10%, rgba(215, 185, 74, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(230, 226, 214, 0.045), rgba(230, 226, 214, 0.012)),
    url("assets/generated/exsat-cosmic-wall-4k.jpg") center / cover no-repeat;
  background-blend-mode: normal, normal, soft-light;
  box-shadow: var(--premium-shadow);
}

.contact-section h2 {
  max-width: 820px;
  margin-inline: auto;
}

.site-footer {
  border-top-color: rgba(230, 226, 214, 0.08);
  color: rgba(230, 226, 214, 0.56);
}

.site-footer img {
  filter: saturate(0.9);
}

@media (max-width: 1180px) {
  .hero-cockpit .hero-copy,
  .account-operating-surface,
  .strategy-workbench,
  .proof-scene {
    grid-template-columns: 1fr;
  }

  .hero-cockpit .hero-actions {
    grid-column: 1;
    justify-content: flex-start;
    margin-top: 26px;
  }

  .strategy-spotlight {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(230, 226, 214, 0.08);
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 66px;
    padding: 10px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 112px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    border-color: rgba(230, 226, 214, 0.18);
    background: rgba(230, 226, 214, 0.075);
  }

  .home-hero.hero-cockpit,
  .metrics-strip,
  .account-scene,
  .yield-section,
  .system-section,
  .tech-section,
  .roadmap-section,
  .site-footer {
    width: calc(100% - 28px);
    max-width: calc(100vw - 28px);
  }

  .home-hero.hero-cockpit {
    padding: 36px 14px 46px;
  }

  .hero-cockpit h1 .hero-title-main {
    max-width: none;
    font-size: clamp(48px, 14vw, 64px);
    line-height: 0.94;
  }

  .hero-cockpit h1 .hero-title-sub {
    max-width: 12ch;
    font-size: clamp(27px, 7vw, 34px);
  }

  .hero-cockpit .hero-lede {
    font-size: 17px;
  }

  .hero-cockpit .hero-actions {
    display: grid;
    width: 100%;
  }

  .hero-cockpit .hero-actions .button {
    width: 100%;
    min-height: 54px;
  }

  .hero-console {
    min-height: 430px;
    border-radius: 16px;
  }

  .hero-console .banking-cockpit {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.2)),
      url("assets/generated/exsat-digital-bank-cockpit-fused-mobile.png") center top / 100% auto no-repeat;
    background-color: #030404;
  }

  .metrics-strip {
    grid-template-columns: 1fr;
    border: 1px solid rgba(230, 226, 214, 0.08);
    border-radius: 16px;
    overflow: hidden;
  }

  .metrics-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(230, 226, 214, 0.08);
  }

  .metrics-strip article:last-child {
    border-bottom: 0;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading h2,
  .scene-heading h2,
  .tech-copy h2,
  .contact-section h2 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.04;
  }

  .account-operating-surface,
  .strategy-workbench,
  .system-layout,
  .proof-scene,
  .roadmap-track,
  .contact-section {
    border-radius: 16px;
  }

  .account-visual img {
    height: 340px;
    min-height: 340px;
  }

  .account-ledger strong {
    font-size: 24px;
  }

  .strategy-workbench {
    min-height: auto;
  }

  .strategy-spotlight {
    padding: 26px 22px;
  }

  .strategy-card {
    min-height: auto;
    padding: 22px;
  }

  .strategy-card p {
    display: none;
  }

  .strategy-card-detail,
  .strategy-card.is-focused .strategy-card-detail {
    display: none !important;
  }

  .system-heading-copy h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .proof-scene {
    padding: 22px;
  }

  .contact-section {
    width: calc(100% - 28px);
  }
}

@media (max-width: 520px) {
  .home-hero.hero-cockpit {
    width: 100%;
    max-width: 100%;
    padding-inline: 18px;
  }

  .hero-cockpit h1 .hero-title-main {
    font-size: clamp(44px, 13vw, 54px);
  }

  .hero-cockpit h1 .hero-title-sub {
    font-size: clamp(25px, 7vw, 30px);
  }

  .hero-console {
    min-height: 360px;
  }

  .strategy-card {
    gap: 14px;
    padding: 24px 22px;
  }

  .strategy-card h3 {
    font-size: 40px;
  }

  .strategy-card strong {
    font-size: 48px;
  }

  .strategy-card small {
    font-size: 18px;
  }

  .yield-section .compact-heading h2 {
    font-size: clamp(35px, 11vw, 43px);
  }

  .yield-section .compact-heading > p {
    font-size: 16px;
    line-height: 1.48;
  }

  .eyebrow,
  .pill {
    border-radius: 7px;
  }
}

/* Final premium trim: mobile strategy cards should read like product routes,
   not oversized poster tiles. */
@media (max-width: 760px) {
  .strategy-workbench {
    gap: 14px;
  }

  .strategy-panels {
    gap: 12px;
  }

  .strategy-panel.active {
    gap: 10px;
  }

  .strategy-card,
  .strategy-card.is-focused {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "tag yield"
      "name yield"
      "term action";
    align-items: center;
    min-height: 0;
    gap: 10px 14px;
    padding: 18px 18px;
    border-radius: 14px;
    transform: none;
  }

  .strategy-card:hover,
  .strategy-card.is-focused {
    transform: none;
  }

  .strategy-card h3 {
    margin: 0;
    font-size: clamp(26px, 8vw, 34px);
    line-height: 0.95;
  }

  .strategy-card strong {
    font-size: clamp(30px, 9vw, 40px);
    letter-spacing: 0;
  }

  .strategy-card small {
    margin: 0;
    font-size: 14px;
    line-height: 1.25;
  }

  .strategy-action {
    opacity: 1;
    transform: none;
    min-height: 30px;
    margin: 0;
    padding: 0 11px;
    font-size: 12px;
  }

  .risk-tag {
    min-height: 28px;
    padding: 5px 10px;
    font-size: 12px;
  }

  .hero-console {
    padding-bottom: 14px;
  }
}

@media (max-width: 520px) {
  .hero-console {
    min-height: 344px;
  }

  .strategy-terminal-head,
  .strategy-curve {
    padding: 20px;
  }

  .strategy-curve {
    min-height: 220px;
  }
}

/* Information-bearing hero artwork must never use cover cropping. The cockpit
   asset contains labels and cards, so preserve its native ratio and show it whole. */
.hero-console {
  aspect-ratio: 1672 / 941;
  min-height: 0;
}

.hero-console .banking-cockpit {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.08)),
    url("assets/generated/exsat-digital-bank-cockpit-fused.png") center / contain no-repeat !important;
  background-color: #020202;
}

@media (max-width: 760px) {
  .hero-console {
    aspect-ratio: 1080 / 920;
    min-height: 0;
  }

  .hero-console .banking-cockpit {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.12)),
      url("assets/generated/exsat-digital-bank-cockpit-fused-mobile.png") center / contain no-repeat !important;
    background-color: #020202;
  }
}

/* Stable cockpit rendering: keep the generated artwork text-free and place all
   readable data as real DOM so labels can never be baked into a cropped image. */
.hero-console {
  aspect-ratio: 16 / 9;
  min-height: 520px;
}

.hero-console .banking-cockpit {
  inset: 0;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 48%, rgba(215, 185, 74, 0.11), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.68)),
    url("assets/generated/exsat-digital-bank-cockpit-source.png") center / cover no-repeat !important;
  background-color: #020202;
}

.hero-console .banking-cockpit::before,
.hero-console .banking-cockpit::after {
  display: block;
}

.hero-console .banking-cockpit::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.52), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.48)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 38%, rgba(0, 0, 0, 0.64));
}

.hero-console .banking-cockpit::after {
  opacity: 0.1;
  background:
    radial-gradient(circle at 50% 50%, rgba(215, 185, 74, 0.26), transparent 36%),
    linear-gradient(90deg, rgba(230, 226, 214, 0.1) 1px, transparent 1px);
  background-size: auto, 18% 100%;
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 70%);
}

.hero-console .cockpit-ring,
.hero-console .cockpit-spine,
.hero-console .cockpit-core,
.hero-console .cockpit-module {
  display: block;
}

.hero-console .cockpit-core {
  width: clamp(136px, 13vw, 186px);
  height: clamp(136px, 13vw, 186px);
  border-color: rgba(215, 185, 74, 0.26);
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 185, 74, 0.14), transparent 48%),
    rgba(0, 0, 0, 0.76);
}

.hero-console .cockpit-core img {
  width: clamp(54px, 5vw, 76px);
}

.hero-console .cockpit-core strong {
  font-size: clamp(18px, 1.9vw, 26px);
}

.hero-console .cockpit-core span {
  font-size: 10px;
}

.hero-console .cockpit-module {
  display: grid;
  align-content: center;
  width: clamp(190px, 18vw, 260px);
  min-height: 92px;
  padding: clamp(14px, 1.4vw, 18px);
  border: 1px solid rgba(230, 226, 214, 0.16);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(230, 226, 214, 0.08), rgba(230, 226, 214, 0.02)),
    rgba(0, 0, 0, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.065),
    0 18px 50px rgba(0, 0, 0, 0.38);
}

.hero-console .cockpit-module span,
.hero-console .cockpit-module small,
.hero-console .cockpit-module strong {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-console .cockpit-module span {
  white-space: nowrap;
  color: rgba(215, 185, 74, 0.82);
  font-size: clamp(10px, 0.85vw, 12px);
  letter-spacing: 0.12em;
}

.hero-console .cockpit-module strong {
  margin-top: 9px;
  white-space: normal;
  color: rgba(244, 242, 235, 0.94);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.05;
}

.hero-console .cockpit-module small {
  margin-top: 7px;
  white-space: nowrap;
  color: rgba(230, 226, 214, 0.58);
  font-size: clamp(11px, 0.9vw, 13px);
}

.hero-console .cockpit-account {
  left: 9%;
  top: 18%;
}

.hero-console .cockpit-yield {
  right: 9%;
  top: 18%;
}

.hero-console .cockpit-custody {
  left: 9%;
  bottom: 16%;
}

.hero-console .cockpit-payments {
  left: 50%;
  bottom: 7%;
  width: clamp(230px, 23vw, 330px);
  transform: translateX(-50%);
}

.hero-console .cockpit-proof {
  right: 9%;
  bottom: 16%;
}

@media (max-width: 900px) {
  .hero-console {
    aspect-ratio: 1 / 1.34;
    min-height: 0;
  }

  .hero-console .banking-cockpit {
    background:
      radial-gradient(circle at 50% 48%, rgba(215, 185, 74, 0.1), transparent 28%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.74)),
      url("assets/generated/exsat-digital-bank-cockpit-source.png") center / cover no-repeat !important;
  }

  .hero-console .cockpit-ring,
  .hero-console .cockpit-spine {
    display: none;
  }

  .hero-console .cockpit-core {
    top: 42%;
    width: 112px;
    height: 112px;
  }

  .hero-console .cockpit-core img {
    width: 50px;
  }

  .hero-console .cockpit-core strong {
    font-size: 16px;
  }

  .hero-console .cockpit-core span {
    display: none;
  }

  .hero-console .cockpit-module {
    width: min(42%, 160px);
    min-height: 68px;
    padding: 11px;
    border-radius: 9px;
  }

  .hero-console .cockpit-module span {
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .hero-console .cockpit-module strong {
    margin-top: 5px;
    font-size: clamp(14px, 4.1vw, 18px);
  }

  .hero-console .cockpit-module small {
    margin-top: 4px;
    font-size: 9px;
  }

  .hero-console .cockpit-account {
    left: 5%;
    top: 8%;
  }

  .hero-console .cockpit-yield {
    right: 5%;
    top: 8%;
  }

  .hero-console .cockpit-custody {
    left: 5%;
    bottom: 20%;
  }

  .hero-console .cockpit-payments {
    left: 50%;
    bottom: 5%;
    width: min(78%, 292px);
  }

  .hero-console .cockpit-proof {
    right: 5%;
    bottom: 20%;
  }

  .hero-console .cockpit-payments strong {
    white-space: nowrap;
  }
}

/* Final cockpit core alignment. Keep the logo lockup optically centered inside
   the circle instead of sitting in the upper half. */
.hero-console .cockpit-core {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(3px, 0.45vw, 7px);
  padding: clamp(16px, 1.5vw, 24px);
  border: 1px solid rgba(215, 185, 74, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, rgba(244, 242, 235, 0.1), transparent 34%),
    radial-gradient(circle at 50% 72%, rgba(215, 185, 74, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(230, 226, 214, 0.075), rgba(230, 226, 214, 0.018)),
    rgba(4, 5, 5, 0.34);
  backdrop-filter: blur(10px) saturate(1.08);
  -webkit-backdrop-filter: blur(10px) saturate(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    inset 0 -24px 46px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(0, 0, 0, 0.22),
    0 0 54px rgba(215, 185, 74, 0.11);
  text-align: center;
}

.hero-console .cockpit-core::before,
.hero-console .cockpit-core::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  pointer-events: none;
}

.hero-console .cockpit-core::before {
  border: 1px solid rgba(230, 226, 214, 0.09);
  background:
    radial-gradient(circle at 50% 50%, transparent 52%, rgba(215, 185, 74, 0.08) 53%, transparent 56%);
}

.hero-console .cockpit-core::after {
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 28%, transparent 72%, rgba(215, 185, 74, 0.06));
  mask-image: radial-gradient(circle at 50% 50%, transparent 0 48%, #000 49% 50%, transparent 51%);
  opacity: 0.7;
}

.hero-console .cockpit-core img {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: clamp(56px, 4.6vw, 72px);
  height: auto;
  margin: 0;
}

.hero-console .cockpit-core strong {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: none;
  color: rgba(244, 242, 235, 0.96);
  font-size: clamp(20px, 1.72vw, 25px);
  line-height: 0.96;
  letter-spacing: 0;
  white-space: nowrap;
  text-align: center;
}

.hero-console .cockpit-core span {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 92%;
  color: rgba(230, 226, 214, 0.56);
  font-size: clamp(9px, 0.75vw, 11px);
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-align: center;
}

@media (max-width: 900px) {
  .hero-console .cockpit-core {
    top: 42%;
    gap: 4px;
    width: 124px;
    height: 124px;
    padding: 14px;
  }

  .hero-console .cockpit-core img {
    width: 54px;
  }

  .hero-console .cockpit-core strong {
    font-size: 18px;
    white-space: nowrap;
  }

  .hero-console .cockpit-core span {
    display: block;
    font-size: 7px;
  }
}

/* Alternative D: integrate the exSat mark into the physical platform instead
   of using a visible center badge. */
.hero-console .cockpit-core {
  top: 47%;
  width: clamp(120px, 10vw, 154px);
  height: clamp(120px, 10vw, 154px);
  gap: 0;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.hero-console .cockpit-core::before {
  inset: 20%;
  border: 1px solid rgba(215, 185, 74, 0.22);
  background:
    radial-gradient(circle at 50% 50%, rgba(215, 185, 74, 0.18), transparent 48%),
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.62), transparent 68%);
  filter: blur(0.2px);
}

.hero-console .cockpit-core::after {
  inset: 10%;
  background:
    radial-gradient(circle at 50% 50%, rgba(215, 185, 74, 0.28), transparent 26%),
    radial-gradient(circle at 50% 50%, rgba(230, 226, 214, 0.12), transparent 42%);
  mask-image: none;
  opacity: 0.42;
  filter: blur(10px);
}

.hero-console .cockpit-core img {
  width: clamp(74px, 6vw, 96px);
  filter:
    drop-shadow(0 0 10px rgba(215, 185, 74, 0.24))
    drop-shadow(0 10px 18px rgba(0, 0, 0, 0.45));
}

.hero-console .cockpit-core strong {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%);
  min-width: max-content;
  border: 1px solid rgba(230, 226, 214, 0.12);
  border-radius: 999px;
  padding: 7px 13px;
  background: rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(244, 242, 235, 0.9);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
}

.hero-console .cockpit-core span {
  display: none;
}

@media (max-width: 900px) {
  .hero-console .cockpit-core {
    top: 43%;
    width: 96px;
    height: 96px;
  }

  .hero-console .cockpit-core img {
    width: 70px;
  }

  .hero-console .cockpit-core strong {
    top: calc(100% + 6px);
    padding: 6px 11px;
    font-size: 12px;
  }
}

/* User direction: remove the center exSat mark/ring entirely. */
.hero-console .cockpit-core {
  width: auto;
  height: auto;
  top: 54%;
  pointer-events: none;
}

.hero-console .cockpit-core::before,
.hero-console .cockpit-core::after,
.hero-console .cockpit-core img {
  display: none !important;
}

.hero-console .cockpit-core strong {
  position: static;
  transform: none;
}

@media (max-width: 900px) {
  .hero-console .cockpit-core {
    top: 55%;
  }
}

/* Remove the Banking Stack center brand badge. The scene image should carry the
   system core visually; avoid representing the company core with an access-style mark. */
.system-orbit .rail-core {
  display: none !important;
}

/* Institutional cleanup: remove small decorative UI marks that make the scene
   feel like a template overlay instead of a premium product surface. */
.system-orbit::after {
  content: none !important;
  display: none !important;
}

.system-panel li {
  gap: 0;
}

.system-panel li::before {
  content: none !important;
  display: none !important;
}

.system-panel .card-icon {
  display: none !important;
}

/* Final typography, media fitting, and metallic emphasis pass. */
:root {
  --font-body: "Satoshi", "Inter Display", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Space Grotesk Local", "Inter Display", "Satoshi", ui-sans-serif, system-ui, sans-serif;
  --font-data: "IBM Plex Mono Local", "Satoshi", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  --metal-solid: #e8dfc7;
  --metal-gradient: linear-gradient(112deg, #f8f4e8 0%, #b8aa87 28%, #fff2bd 47%, #8d7f5d 68%, #e9eef0 100%);
  --metal-muted-gradient: linear-gradient(112deg, rgba(248, 244, 232, 0.94), rgba(169, 154, 115, 0.78) 42%, rgba(232, 238, 240, 0.86));
}

body,
button,
input,
textarea,
select {
  font-family: var(--font-body);
  font-kerning: normal;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  text-rendering: geometricPrecision;
}

body * {
  letter-spacing: 0 !important;
}

h1,
h2,
h3,
.hero-title-main,
.hero-title-sub,
.section-heading h2,
.scene-heading h2,
.tech-copy h2,
.contact-section h2,
.detail-hero h1,
.infra-hero h1,
.strategy-card h3,
.spotlight-head h3,
.system-panel h3,
.snapshot-copy h2,
.network-snapshot h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0;
  text-wrap: balance;
}

p,
li,
dd,
td,
.hero-lede,
.section-heading > p,
.scene-heading > p,
.system-panel p,
.advanced-table td,
.contact-section > p {
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

.eyebrow,
.pill,
.spotlight-kicker,
.risk-tag,
.strategy-position,
.strategy-card small,
.system-tab,
.system-panel > span,
.system-status-rail span,
.data-eyebrow,
.data-filters button,
.advanced-table th,
.row-action,
.roadmap-step span,
.cockpit-module span,
.cockpit-module small,
.terminal-stats span,
.curve-caption span,
.curve-metric span {
  font-family: var(--font-data);
  font-weight: 500;
  letter-spacing: 0;
}

.metrics-strip strong,
.spotlight-head strong,
.strategy-card strong,
.metric-cell,
.snapshot-grid strong,
.cockpit-module strong,
.curve-metric strong,
.terminal-stats strong,
.account-ledger strong,
.data-toolbar strong {
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "kern" 1;
}

.hero-cockpit h1 .hero-title-main {
  max-width: 12ch;
  color: var(--metal-solid);
  font-size: 96px;
  line-height: 0.94;
}

.hero-cockpit h1 .hero-title-sub {
  max-width: 14ch;
  font-size: 42px;
  line-height: 1.02;
}

.section-heading h2,
.scene-heading h2,
.tech-copy h2,
.contact-section h2,
.detail-hero h1,
.infra-hero h1,
.snapshot-copy h2,
.network-snapshot h2 {
  font-size: 64px;
  line-height: 1;
}

.system-heading-copy h2 {
  font-size: 70px;
  line-height: 0.98;
}

.yield-section .compact-heading h2 {
  max-width: 940px;
  font-size: 70px;
  line-height: 0.98;
}

.strategy-card h3,
.spotlight-head h3 {
  font-weight: 600;
}

.strategy-card strong,
.metric-cell,
.metrics-strip strong,
.snapshot-grid strong,
.cockpit-module strong {
  color: var(--metal-solid);
  text-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

@supports ((background-clip: text) or (-webkit-background-clip: text)) {
  .hero-cockpit h1 .hero-title-main,
  .metrics-strip strong,
  .spotlight-head strong[data-strategy-yield],
  .strategy-card strong,
  .metric-cell,
  .snapshot-grid strong,
  .cockpit-module strong,
  .curve-metric strong,
  .terminal-stats div:nth-child(2) strong {
    background: var(--metal-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    -webkit-text-fill-color: transparent;
  }
}

.button,
.header-cta,
.row-action,
.text-link {
  font-family: var(--font-body);
  font-weight: 650;
}

.brand span,
.main-nav a,
.footer-social a,
.site-footer nav a {
  font-family: var(--font-body);
  font-weight: 600;
}

.account-visual,
.proof-visual,
.tech-section > img,
.feature-card,
.advantage-card,
.system-orbit,
.strategy-curve {
  overflow: hidden;
}

.account-visual img,
.proof-visual img,
.tech-section > img,
.feature-card img,
.advantage-card img,
.advantage-card-large img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
}

.account-visual img,
.proof-visual img {
  height: 100%;
  min-height: 420px;
}

.partner-logo img,
.brand img,
.site-footer img,
.mobile-menu-head img {
  object-fit: contain;
  image-rendering: auto;
}

.advanced-table,
.data-board,
.strategy-workbench,
.system-layout,
.proof-scene,
.roadmap-track,
.contact-section {
  font-size: 15px;
}

.advanced-table th,
.advanced-table td {
  line-height: 1.35;
}

.advanced-table td strong,
.advanced-table .metric-cell {
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .hero-cockpit h1 .hero-title-main {
    font-size: 76px;
  }

  .hero-cockpit h1 .hero-title-sub {
    font-size: 34px;
  }

  .section-heading h2,
  .scene-heading h2,
  .tech-copy h2,
  .contact-section h2,
  .detail-hero h1,
  .infra-hero h1,
  .snapshot-copy h2,
  .network-snapshot h2,
  .system-heading-copy h2,
  .yield-section .compact-heading h2 {
    font-size: 52px;
  }
}

@media (max-width: 760px) {
  .hero-cockpit h1 .hero-title-main {
    max-width: 9ch;
    font-size: 56px;
    line-height: 0.96;
  }

  .hero-cockpit h1 .hero-title-sub {
    max-width: 11ch;
    font-size: 28px;
    line-height: 1.04;
  }

  .section-heading h2,
  .scene-heading h2,
  .tech-copy h2,
  .contact-section h2,
  .detail-hero h1,
  .infra-hero h1,
  .snapshot-copy h2,
  .network-snapshot h2,
  .system-heading-copy h2,
  .yield-section .compact-heading h2 {
    font-size: 38px;
    line-height: 1.04;
  }

  .hero-lede,
  .section-heading > p,
  .scene-heading > p,
  .tech-copy p,
  .system-panel p,
  .contact-section > p {
    font-size: 16px;
    line-height: 1.55;
  }

  .account-visual img,
  .proof-visual img {
    min-height: 300px;
  }

  .advanced-table td strong,
  .advanced-table .metric-cell {
    white-space: normal;
  }
}

@media (max-width: 420px) {
  .hero-cockpit h1 .hero-title-main {
    font-size: 50px;
  }

  .hero-cockpit h1 .hero-title-sub {
    font-size: 26px;
  }

  .section-heading h2,
  .scene-heading h2,
  .tech-copy h2,
  .contact-section h2,
  .detail-hero h1,
  .infra-hero h1,
  .snapshot-copy h2,
  .network-snapshot h2,
  .system-heading-copy h2,
  .yield-section .compact-heading h2 {
    font-size: 34px;
  }
}

/* Final fit QA pass: keep premium typography visible without clipped labels. */
.hero-console .cockpit-proof {
  width: 280px;
}

.hero-console .cockpit-module small {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  line-height: 1.28;
}

.table-action-cell {
  min-width: 0;
  width: 100%;
  justify-self: stretch;
}

.advanced-table thead tr,
.advanced-table tbody tr {
  grid-template-columns: minmax(120px, 0.78fr) minmax(180px, 1.08fr) minmax(230px, 1.25fr) minmax(136px, 0.65fr) minmax(110px, 0.56fr) minmax(124px, 0.64fr) 96px;
}

.advanced-table .row-action {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding-right: 8px;
  padding-left: 8px;
  transform: none;
}

.detail-section,
.data-section {
  max-width: min(1480px, calc(100vw - 72px));
}

@media (max-width: 900px) {
  .hero-console .cockpit-proof {
    width: min(42%, 172px);
  }

  .hero-console .cockpit-module small {
    display: none;
  }
}

@media (max-width: 760px) {
  .detail-section,
  .data-section {
    width: calc(100% - 28px);
    max-width: calc(100vw - 28px);
    margin-right: auto;
    margin-left: auto;
  }

  .data-section .section-heading,
  .detail-section .section-heading {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  .strategy-card,
  .strategy-card.is-focused {
    grid-template-columns: minmax(118px, 1fr) minmax(92px, auto);
    column-gap: 12px;
  }

  .strategy-card h3 {
    min-width: 0;
    max-width: 100%;
    overflow: visible;
    text-overflow: clip;
    word-break: normal;
  }

  .strategy-card strong,
  .strategy-card small {
    max-width: 100%;
  }

  .table-action-cell {
    min-width: 0;
  }

  .row-action {
    width: max-content;
    min-width: 72px;
  }
}

@media (max-width: 420px) {
  .strategy-card,
  .strategy-card.is-focused {
    grid-template-columns: minmax(104px, 1fr) minmax(82px, auto);
    padding: 17px 16px;
  }

  .strategy-card h3 {
    font-size: 28px;
  }

  .strategy-card strong {
    font-size: 32px;
  }

  .strategy-card small {
    font-size: 13px;
  }
}

/* Hero title optical safety: Space Grotesk needs extra vertical room,
   especially when metallic text clipping is active. */
.hero-cockpit .hero-copy {
  overflow: visible;
}

.hero-cockpit h1 {
  overflow: visible;
  line-height: 1.08;
  padding-bottom: 0.08em;
}

.hero-cockpit h1 .hero-title-main,
.hero-cockpit h1 .hero-title-sub {
  display: block;
  overflow: visible;
  contain: none;
  padding-top: 0.035em;
  padding-bottom: 0.12em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.hero-cockpit h1 .hero-title-main {
  line-height: 1.04;
}

.hero-cockpit h1 .hero-title-sub {
  line-height: 1.12;
}

@supports ((background-clip: text) or (-webkit-background-clip: text)) {
  .hero-cockpit h1 .hero-title-main {
    background: linear-gradient(108deg, #fff9e6 0%, #e4d8b8 30%, #fff0b7 52%, #cfc29f 76%, #f7f4ea 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    text-shadow: none;
  }
}

@media (max-width: 760px) {
  .hero-cockpit h1 {
    line-height: 1.1;
    padding-bottom: 0.1em;
  }

  .hero-cockpit h1 .hero-title-main {
    line-height: 1.08;
  }

  .hero-cockpit h1 .hero-title-sub {
    line-height: 1.14;
  }
}
