:root {
  color-scheme: dark;
  --ink: oklch(96% 0.009 96);
  --muted: oklch(74% 0.026 230);
  --soft: oklch(62% 0.037 230);
  --line: oklch(100% 0.01 96 / 13%);
  --panel: oklch(18% 0.035 245 / 86%);
  --panel-strong: oklch(22% 0.05 242 / 92%);
  --night: oklch(12% 0.04 250);
  --deep: oklch(18% 0.055 252);
  --blue: oklch(61% 0.16 238);
  --cyan: oklch(78% 0.12 205);
  --gold: oklch(78% 0.15 86);
  --amber: oklch(67% 0.16 74);
  --danger: oklch(63% 0.19 28);
  --shadow: 0 32px 90px oklch(2% 0.02 245 / 48%);
  --max: 1180px;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Inter', system-ui, sans-serif;
  --font-mono: 'DM Mono', monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  padding-top: 72px;
  background:
    radial-gradient(circle at 78% 8%, oklch(38% 0.11 238 / 44%), transparent 28rem),
    radial-gradient(circle at 8% 34%, oklch(54% 0.1 86 / 20%), transparent 34rem),
    linear-gradient(135deg, oklch(8% 0.03 245), var(--night) 46%, oklch(10% 0.035 220));
  color: var(--ink);
  font-family: var(--font-body);
  letter-spacing: -0.01em;
  overflow-x: hidden;
}


body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(oklch(100% 0.01 96 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, oklch(100% 0.01 96 / 4%) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}

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

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

#network-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  opacity: 0.54;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 120;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  transform: translateX(-50%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  isolation: isolate;
  overflow: visible;
}

.site-header[data-reveal] {
  opacity: 1 !important;
  transform: translateX(-50%) !important;
  transition: none !important;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background: linear-gradient(180deg in oklch, oklch(6.5% 0.032 245 / 96%) 0%, oklch(6.5% 0.032 245 / 30%) 100%);
  border-bottom: 1px solid oklch(100% 0.01 96 / 8%);
  box-shadow: 0 18px 42px oklch(2% 0.02 245 / 24%);
  pointer-events: none;
}


.brand,
.nav,
.header-actions,
.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--ink);
  min-width: 0;
}

.brand-name {
  color: var(--ink);
  white-space: nowrap;
}


.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid oklch(78% 0.15 86 / 72%);
  background: oklch(78% 0.15 86 / 12%);
  color: var(--gold);
  font-size: 0.76rem;
  font-family: inherit;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.menu-toggle {
  width: 34px;
  min-height: 40px;
  display: none;
  place-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
}

.menu-toggle:hover,
.menu-toggle[aria-expanded="true"] {
  color: var(--gold);
}

.nav {
  justify-self: center;
  gap: clamp(10px, 1.6vw, 26px);
  color: var(--muted);
  font-size: 0.92rem;
  min-width: 0;
}

.nav a {
  white-space: nowrap;
  transition: color 180ms ease-out;
}

.nav a:hover {
  color: var(--ink);
}

.header-actions {
  justify-self: end;
  gap: 10px;
}

.language-picker {
  position: relative;
}

.language-trigger {
  min-height: 44px;
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 7px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid oklch(78% 0.12 205 / 28%);
  background:
    linear-gradient(180deg, oklch(100% 0.01 96 / 9%), oklch(100% 0.01 96 / 4%)),
    oklch(10% 0.035 245 / 92%);
  color: var(--ink);
  font: inherit;
  cursor: pointer;
  box-shadow: inset 0 1px 0 oklch(100% 0.01 96 / 10%);
}

.language-trigger:hover,
.language-trigger[aria-expanded="true"] {
  border-color: oklch(78% 0.15 86 / 62%);
  background:
    linear-gradient(180deg, oklch(78% 0.15 86 / 12%), oklch(100% 0.01 96 / 4%)),
    oklch(12% 0.04 245 / 94%);
}

.language-flag {
  font-size: 1.08rem;
  line-height: 1;
}

.language-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.language-trigger strong {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 40;
  width: 224px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid oklch(78% 0.12 205 / 28%);
  background: oklch(8% 0.035 245 / 98%);
  box-shadow: 0 18px 56px oklch(2% 0.02 245 / 54%);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 160ms ease-out, transform 160ms ease-out, visibility 160ms ease-out;
}

.language-picker.is-open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-menu button {
  display: grid;
  grid-template-columns: 28px 64px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.language-menu button:hover,
.language-menu button.is-active {
  border-color: oklch(78% 0.15 86 / 34%);
  background: oklch(78% 0.15 86 / 10%);
}

.language-menu span {
  font-size: 1.05rem;
}

.language-menu strong {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
}

.language-menu em {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 700;
}

.language-trigger:focus-visible,
.nav-cta:focus-visible,
.button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.nav-cta {
  padding: 0 18px;
  border: 1px solid oklch(100% 0.01 96 / 18%);
  background: oklch(100% 0.01 96 / 6%);
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
  transition: border-color 180ms ease-out, background 180ms ease-out;
}

.nav-cta:hover {
  border-color: oklch(78% 0.15 86 / 78%);
  background: oklch(78% 0.15 86 / 12%);
}

.investor-cta {
  display: none;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid oklch(78% 0.15 86 / 42%);
  background: oklch(78% 0.15 86 / 10%);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
  transition: background 180ms ease-out, border-color 180ms ease-out;
}

.investor-cta:hover {
  border-color: var(--gold);
  background: oklch(78% 0.15 86 / 18%);
}

.investor-cta-mark,
.investor-link-mark {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid oklch(78% 0.15 86 / 64%);
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.hero,
.section-grid,
.architecture,
.audience-section,
.proof,
.packages,
.stack-story,
.closing,
.steps {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.hero {
  min-height: calc(100svh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  padding: clamp(56px, 8vw, 110px) 0 clamp(34px, 6vw, 72px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1, h2, h3 {
  font-family: var(--font-heading);
}

h1 {
  max-width: min(8.6ch, 100%);
  margin-bottom: 28px;
  font-size: 6.55rem;
  line-height: 0.86;
  letter-spacing: -0.03em;
  text-wrap: balance;
  font-weight: 800;
}

h2 {
  max-width: min(13ch, 100%);
  margin-bottom: 0;
  font-size: 4.7rem;
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-wrap: balance;
  font-weight: 800;
}

h3 {
  font-size: 1.48rem;
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-weight: 700;
}


.hero-lede,
.section-lede,
.proof-copy p,
.closing-panel p {
  max-width: 63ch;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.72;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 200ms cubic-bezier(.22, 1, .36, 1), border-color 200ms ease-out, background 200ms ease-out;
}

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

.button.primary {
  background: var(--gold);
  color: oklch(14% 0.04 250);
}

.button.secondary {
  border: 1px solid oklch(100% 0.01 96 / 18%);
  color: var(--ink);
}

.button.investor-link {
  display: inline-flex;
  gap: 10px;
  border-color: oklch(78% 0.15 86 / 45%);
}

.button.secondary:hover {
  border-color: var(--cyan);
  background: oklch(78% 0.12 205 / 11%);
}

.hero-console {
  position: relative;
  min-height: 570px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, oklch(14% 0.04 250 / 92%), oklch(10% 0.035 250 / 95%)),
    url("../USDPROP_RWA_Stack_Deck/assets/8C61B06F-958E-47B2-B672-078BCE87219D/thumbnail.jpeg") center / cover;
  background-blend-mode: multiply, normal;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-console::before {
  display: none;
}

.hero-console::after {
  display: none;
}


.console-top,
.console-feed,
.flow-orbit {
  position: relative;
  z-index: 1;
}

.console-top {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.console-top span {
  width: 8px;
  height: 8px;
  background: var(--gold);
}

.console-top span:nth-child(2) {
  background: var(--cyan);
}

.console-top span:nth-child(3) {
  background: var(--blue);
}

.console-top strong {
  margin-left: auto;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.flow-orbit {
  height: 392px;
  margin: 20px;
  overflow: visible;
  position: relative;
}

.orbit-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.svg-ring {
  transform-origin: 200px 230px;
  transition: stroke 0.3s ease;
}

.outer-ring {
  animation: rotateSlow 28s linear infinite;
}

.inner-ring {
  animation: rotateReverse 22s linear infinite;
}

.svg-core {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: 0 0;
}

.svg-core:hover {
  transform: translate(200px, 230px) scale(1.02);
}

.svg-node {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: 50px 30px;
  cursor: pointer;
}

.svg-node:hover {
  transform: scale(1.03);
}

.svg-node rect {
  transition: stroke 0.3s ease, stroke-width 0.3s ease, fill 0.3s ease;
}

.svg-node:hover rect {
  stroke: var(--gold);
  stroke-width: 1.2px;
}

.node-glow-effect {
  display: none;
}

.svg-node text {
  transition: fill 0.3s ease;
}

.svg-node:hover text {
  fill: var(--gold);
}

.svg-node path,
.svg-node circle {
  transition: transform 0.3s ease, filter 0.3s ease;
  transform-origin: 50px 25px;
}

.svg-node:hover path,
.svg-node:hover circle {
  /* clean hover without glow filter */
}

/* Connection Lines */
.node-connection-line {
  stroke-opacity: 0.15;
  transition: stroke 0.3s ease, stroke-width 0.3s ease, stroke-opacity 0.3s ease;
  pointer-events: none;
}

/* Hover effects using :has() */
.orbit-svg:has(.node-inv:hover) .conn-inv {
  stroke: var(--blue);
  stroke-width: 1.5px;
  stroke-opacity: 0.8;
  animation: connectionFlow 1.5s linear infinite;
}

.orbit-svg:has(.node-kyc:hover) .conn-kyc {
  stroke: var(--gold);
  stroke-width: 1.5px;
  stroke-opacity: 0.8;
  animation: connectionFlow 1.5s linear infinite;
}

.orbit-svg:has(.node-usd:hover) .conn-usd {
  stroke: var(--cyan);
  stroke-width: 1.5px;
  stroke-opacity: 0.8;
  animation: connectionFlow 1.5s linear infinite;
}

.orbit-svg:has(.node-sf:hover) .conn-sf {
  stroke: var(--amber);
  stroke-width: 1.5px;
  stroke-opacity: 0.8;
  animation: connectionFlow 1.5s linear infinite;
}

@keyframes connectionFlow {
  to {
    stroke-dashoffset: -20;
  }
}




.console-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.console-feed div {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.console-feed div:last-child {
  border-right: 0;
}

.console-feed span {
  display: block;
  color: var(--soft);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.console-feed strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 1.3rem;
}

.ticker {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: oklch(6% 0.03 245 / 72%);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.ticker-track {
  width: max-content;
  display: flex;
  gap: 34px;
  padding: 16px 0;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: ticker 32s linear infinite;
}

.ticker-track span::before {
  content: "/";
  margin-right: 34px;
  color: var(--cyan);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: start;
  padding: clamp(86px, 10vw, 150px) 0 clamp(34px, 5vw, 64px);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: clamp(92px, 13vw, 170px);
}

.step {
  min-height: 260px;
  padding: clamp(22px, 3vw, 32px);
  background: linear-gradient(135deg in oklch, oklch(14% 0.035 245 / 90%) 0%, oklch(10% 0.03 245 / 95%) 100%);
  border: 1px solid oklch(100% 0.01 96 / 8%);
  border-radius: 0;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.step:hover {
  border-color: oklch(78% 0.15 86 / 20%);
}

.step span {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: oklch(78% 0.15 86 / 8%);
  padding: 4px 10px;
  border-radius: 0;
  border: 1px solid oklch(78% 0.15 86 / 15%);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.step:hover span {
  background: oklch(78% 0.15 86 / 12%);
  border-color: oklch(78% 0.15 86 / 25%);
}

.package p,
.contract-grid span,
.roadmap-list span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step h3 {
  margin: 58px 0 16px;
}

.step p {
  color: var(--muted);
  line-height: 1.55;
}

.package span,
.roadmap-list strong {
  color: var(--muted);
  line-height: 1.55;
}


.architecture {
  padding: clamp(76px, 9vw, 132px) clamp(18px, 4vw, 54px);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg in oklch, oklch(13% 0.04 245 / 98%), oklch(8% 0.032 245 / 98%)),
    radial-gradient(circle at 78% 22%, oklch(42% 0.12 238 / 18%), transparent 28rem);
  box-shadow: var(--shadow);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.layers {
  display: grid;
  gap: 10px;
}

.layer-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid oklch(100% 0.01 96 / 8%);
  border-radius: 0;
  background: linear-gradient(135deg in oklch, oklch(12% 0.035 245 / 75%) 0%, oklch(8% 0.03 245 / 85%) 100%);
  transform-origin: left center;
  transition: transform 220ms cubic-bezier(.22, 1, .36, 1), border-color 220ms ease-out, background 220ms ease-out;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.layer-row:hover {
  border-color: oklch(78% 0.15 86 / 25%);
  background: linear-gradient(135deg in oklch, oklch(14% 0.04 245 / 85%) 0%, oklch(10% 0.035 245 / 90%) 100%);
}

.layer-row span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.02em;
}


.comparison {
  padding-top: clamp(104px, 14vw, 190px);
}

.compare-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  background: oklch(9% 0.035 245 / 76%);
}

.compare-column {
  padding: clamp(24px, 3vw, 34px);
}

.compare-column + .compare-column {
  border-left: 1px solid var(--line);
}

.compare-column h3 {
  margin-bottom: 26px;
}

.compare-column p {
  margin: 0;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.compare-column.strong {
  background: oklch(78% 0.15 86 / 8%);
}

.compare-column.strong p {
  color: var(--ink);
}

.compare-column.muted p::before {
  content: "x";
  margin-right: 10px;
  color: var(--danger);
  font-weight: 900;
}

.compare-column.strong p::before {
  content: "+";
  margin-right: 10px;
  color: var(--gold);
  font-weight: 900;
}

.audience-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  margin: clamp(54px, 8vw, 104px) auto clamp(44px, 7vw, 84px);
  padding: clamp(28px, 4.6vw, 58px);
  border: 1px solid oklch(78% 0.12 205 / 28%);
  background:
    linear-gradient(90deg, oklch(7% 0.032 245 / 98%), oklch(10% 0.04 238 / 92%)),
    radial-gradient(circle at 82% 20%, oklch(45% 0.12 238 / 16%), transparent 28rem);
  box-shadow: var(--shadow);
}

.audience-copy h2 {
  max-width: 14.8ch;
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 4.35vw, 3.85rem);
  line-height: 1;
}

.audience-copy p:not(.eyebrow) {
  max-width: 48ch;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.audience-board {
  width: min(100%, 520px);
  justify-self: center;
  display: grid;
  gap: 18px;
  justify-items: stretch;
}

.audience-list {
  width: 100%;
  display: grid;
  gap: 18px;
  margin: 0;
  padding: clamp(22px, 3.4vw, 36px);
  border: 1px solid oklch(78% 0.12 205 / 28%);
  background: oklch(8% 0.035 245 / 88%);
  list-style: none;
}

.audience-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 18px;
  align-items: center;
  color: var(--ink);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  font-weight: 900;
  line-height: 1.25;
}

.audience-list li::before {
  width: 17px;
  height: 17px;
  border-radius: 999px;
  content: "";
  background: var(--gold);
  box-shadow: 0 0 22px oklch(78% 0.15 86 / 30%);
}

.audience-profile {
  justify-self: stretch;
  width: 100%;
  padding: clamp(18px, 3vw, 25px);
  border: 1px solid var(--gold);
  background: oklch(9% 0.035 245 / 86%);
  text-align: center;
}

.audience-profile span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audience-profile strong {
  display: block;
  color: var(--ink);
  font-size: clamp(0.98rem, 1.35vw, 1.18rem);
  line-height: 1.3;
}

.target-clients {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  min-height: clamp(560px, 62vw, 720px);
  margin-top: clamp(42px, 7vw, 94px);
  margin-bottom: clamp(34px, 5vw, 72px);
  padding: clamp(34px, 5vw, 68px);
  border: 1px solid oklch(78% 0.12 205 / 24%);
  background:
    linear-gradient(90deg, oklch(7% 0.035 245 / 98%) 0 46%, oklch(8% 0.036 245 / 88%) 72%, oklch(11% 0.045 238 / 80%)),
    radial-gradient(circle at 76% 28%, oklch(45% 0.12 238 / 34%), transparent 32rem),
    radial-gradient(circle at 90% 70%, oklch(78% 0.15 86 / 12%), transparent 22rem);
  box-shadow: var(--shadow);
}

.target-clients::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(oklch(100% 0.01 96 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, oklch(100% 0.01 96 / 3%) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(100deg, transparent 12%, black 54%, transparent 100%);
}

.target-copy,
.target-board {
  position: relative;
  z-index: 1;
}

.target-copy h2 {
  max-width: 13.5ch;
  margin-bottom: 24px;
  font-size: clamp(2.85rem, 5.2vw, 4.35rem);
  line-height: 0.98;
}

.target-copy p:not(.eyebrow) {
  max-width: 48ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.target-board {
  display: grid;
  align-content: center;
  justify-items: end;
  gap: clamp(24px, 4vw, 52px);
}

.target-list {
  max-width: 560px;
  display: grid;
  gap: clamp(16px, 2.2vw, 26px);
  margin: 0;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid oklch(78% 0.12 205 / 28%);
  background:
    linear-gradient(135deg, oklch(7% 0.032 245 / 92%), oklch(10% 0.04 238 / 86%)),
    radial-gradient(circle at 80% 35%, oklch(45% 0.12 238 / 12%), transparent 18rem);
  list-style: none;
}

.target-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 18px;
  align-items: center;
  color: var(--ink);
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  font-weight: 900;
  line-height: 1.24;
}

.target-list li::before {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  content: "";
  background: var(--gold);
  box-shadow: 0 0 24px oklch(78% 0.15 86 / 34%);
}

.lead-profile {
  justify-self: end;
  width: min(100%, 470px);
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--gold);
  background: oklch(9% 0.035 245 / 82%);
  text-align: center;
}

.lead-profile span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-profile strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1rem, 1.55vw, 1.26rem);
  line-height: 1.3;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(70px, 9vw, 128px) 0;
}

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

.contract-grid a {
  min-height: 158px;
  padding: 24px;
  border: 1px solid oklch(100% 0.01 96 / 8%);
  border-radius: 0;
  background: linear-gradient(135deg in oklch, oklch(12% 0.035 245 / 75%) 0%, oklch(8% 0.03 245 / 85%) 100%);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms cubic-bezier(.16, 1, .3, 1), box-shadow 220ms ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contract-grid a:hover {
  background: linear-gradient(135deg in oklch, oklch(14% 0.04 245 / 85%) 0%, oklch(10% 0.035 245 / 90%) 100%);
  border-color: oklch(78% 0.15 86 / 25%);
}

.contract-grid strong {
  display: block;
  margin-top: 34px;
  font-family: var(--font-mono);
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 220ms ease;
}

.contract-grid a:hover strong {
  color: var(--gold);
}


.compliance-note {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: clamp(18px, 3.1vw, 42px);
  align-items: stretch;
  margin-top: clamp(28px, 4.8vw, 56px);
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid oklch(78% 0.12 205 / 24%);
  background:
    linear-gradient(125deg, oklch(8% 0.032 245 / 98%), oklch(11% 0.042 238 / 94%)),
    radial-gradient(circle at 10% 0%, oklch(78% 0.15 86 / 15%), transparent 23rem),
    linear-gradient(90deg, oklch(78% 0.12 205 / 5%) 1px, transparent 1px);
  background-size: auto, auto, 44px 44px;
  box-shadow: 0 20px 62px oklch(2% 0.02 245 / 28%);
}

.compliance-mark {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 132px;
  padding: 18px 12px;
  border: 1px solid oklch(78% 0.15 86 / 44%);
  background: oklch(78% 0.15 86 / 10%);
  color: var(--gold);
  text-align: center;
}

.compliance-mark span {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 0.88;
}

.compliance-mark small {
  margin-top: 10px;
  color: oklch(86% 0.03 96);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.compliance-copy,
.compliance-refs {
  display: grid;
  align-content: start;
  gap: 14px;
}

.compliance-note .eyebrow {
  margin-bottom: 0;
}

.compliance-note h3 {
  max-width: 22ch;
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2.2vw, 2.35rem);
  line-height: 1.06;
}

.compliance-note p:not(.eyebrow) {
  max-width: 68ch;
  margin-bottom: 0;
  color: oklch(84% 0.018 230);
  font-size: clamp(0.98rem, 1.05vw, 1.06rem);
  line-height: 1.58;
}

.compliance-refs span {
  display: grid;
  gap: 7px;
  padding-bottom: 14px;
  border-bottom: 1px solid oklch(78% 0.12 205 / 18%);
}

.compliance-refs b {
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.compliance-refs em {
  color: var(--ink);
  font-size: 0.93rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.36;
}

.compliance-link {
  display: grid;
  gap: 6px;
  min-height: 62px;
  padding: 13px 14px;
  border: 1px solid oklch(78% 0.15 86 / 54%);
  background: linear-gradient(135deg, oklch(78% 0.15 86 / 14%), oklch(78% 0.12 205 / 6%));
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  transition: border-color 180ms ease-out, background 180ms ease-out, color 180ms ease-out;
}

.compliance-link span {
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.74rem;
}

.compliance-link strong {
  font-size: 0.84rem;
  line-height: 1.2;
}

.compliance-link strong::after {
  content: "↗";
  margin-left: 7px;
  color: var(--gold);
}

.compliance-link:hover {
  background: oklch(78% 0.15 86 / 16%);
  color: var(--ink);
}

.compliance-note small {
  max-width: 72ch;
  color: var(--soft);
  font-size: 0.82rem;
  line-height: 1.45;
}

.stack-story {
  padding: clamp(78px, 10vw, 132px) 0 clamp(42px, 7vw, 92px);
}

.deck-panels {
  display: grid;
  gap: clamp(18px, 2.8vw, 34px);
}

.deck-panel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(360px, 1fr);
  gap: clamp(26px, 5vw, 80px);
  align-items: stretch;
  min-height: clamp(430px, 48vw, 610px);
  padding: clamp(24px, 4.5vw, 58px);
  border: 1px solid oklch(100% 0.01 96 / 14%);
  border-top: 2px solid var(--gold);
  background:
    linear-gradient(135deg in oklch, oklch(8% 0.035 245 / 94%), oklch(15% 0.06 238 / 90%)),
    radial-gradient(circle at 82% 18%, oklch(45% 0.12 238 / 30%), transparent 30rem);

  box-shadow: 0 28px 90px oklch(2% 0.02 245 / 36%);
}

.deck-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(oklch(100% 0.01 96 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, oklch(100% 0.01 96 / 3%) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(110deg, black, transparent 76%);
}

.deck-copy,
.deck-matrix,
.stack-bars,
.quote-table,
.demo-steps {
  position: relative;
  z-index: 1;
}

.deck-copy {
  display: grid;
  align-content: center;
  justify-items: start;
}

.deck-kicker {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.deck-panel h3 {
  max-width: min(12.5ch, 100%);
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5.4vw, 5.6rem);
  line-height: 0.88;
}

.deck-panel p {
  max-width: 56ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.7;
}

.deck-matrix {
  align-self: center;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid oklch(78% 0.12 205 / 24%);
  background: oklch(100% 0.01 96 / 10%);
}

.deck-matrix a {
  min-height: clamp(88px, 9vw, 132px);
  display: grid;
  place-items: center;
  padding: 18px 14px;
  border: 1px solid oklch(100% 0.01 96 / 8%);
  background: oklch(12% 0.04 245 / 72%);
  color: var(--ink);
  font-size: clamp(0.78rem, 1.1vw, 0.98rem);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease-out, color 180ms ease-out;
}

.deck-matrix a:hover {
  background: oklch(18% 0.06 238 / 86%);
  color: var(--gold);
}

.stack-bars {
  align-self: center;
  display: grid;
  justify-items: center;
  gap: 12px;
}

.stack-bars a {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 18px;
  align-items: center;
  min-height: 56px;
  padding: 13px 18px;
  border: 1px solid oklch(78% 0.12 205 / 22%);
  background: oklch(28% 0.105 238 / 80%);
  transition: transform 180ms cubic-bezier(.22, 1, .36, 1), border-color 180ms ease-out, background 180ms ease-out;
}

.stack-bars a:hover {
  transform: translateY(-2px);
  border-color: oklch(78% 0.15 86 / 44%);
  background: oklch(32% 0.115 238 / 86%);
}

.stack-bars a:nth-child(1) {
  width: 78%;
}

.stack-bars a:nth-child(2) {
  width: 84%;
}

.stack-bars a:nth-child(3) {
  width: 90%;
}

.stack-bars a:nth-child(4) {
  width: 96%;
}

.stack-bars a:nth-child(5) {
  width: 100%;
  border-color: oklch(78% 0.15 86 / 36%);
  background: oklch(45% 0.13 82 / 76%);
}

.quote-table {
  align-self: center;
  display: grid;
  gap: 14px;
}

.quote-table div {
  display: grid;
  grid-template-columns: minmax(128px, 0.78fr) minmax(92px, 0.34fr) minmax(0, 1fr);
  gap: clamp(12px, 2vw, 24px);
  align-items: center;
  min-height: 78px;
  padding: 18px 20px;
  border: 1px solid oklch(100% 0.01 96 / 8%);
  border-radius: 0;
  background: linear-gradient(135deg in oklch, oklch(12% 0.035 245 / 75%) 0%, oklch(8% 0.03 245 / 85%) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.quote-table div:hover {
  border-color: oklch(78% 0.15 86 / 25%);
}

.quote-table .accent {
  border-color: oklch(78% 0.15 86 / 45%);
  background: linear-gradient(135deg in oklch, oklch(48% 0.14 82 / 85%) 0%, oklch(35% 0.11 82 / 92%) 100%);
}

.quote-table .accent:hover {
  border-color: oklch(78% 0.15 86 / 70%);
}


.stack-bars span,
.quote-table span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stack-bars strong,
.quote-table strong {
  color: var(--ink);
  font-size: clamp(0.84rem, 1.1vw, 0.98rem);
  line-height: 1.28;
}

.quote-table strong {
  color: var(--gold);
  text-transform: uppercase;
}

.quote-table small {
  color: oklch(86% 0.018 230);
  font-size: 0.84rem;
  line-height: 1.4;
}

.deck-panel--demo {
  background:
    linear-gradient(130deg, oklch(9% 0.035 245 / 96%), oklch(14% 0.05 238 / 92%)),
    radial-gradient(circle at 70% 50%, oklch(78% 0.15 86 / 12%), transparent 30rem);
}

.demo-steps {
  position: relative;
  align-self: center;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.demo-steps::before {
  position: absolute;
  top: 31px;
  left: 6%;
  right: 6%;
  height: 1px;
  content: "";
  background: oklch(78% 0.12 205 / 34%);
}

.demo-steps li {
  position: relative;
  display: grid;
  gap: 12px;
  justify-items: center;
  color: var(--ink);
  text-align: center;
}

.demo-steps span {
  z-index: 1;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid oklch(78% 0.12 205 / 38%);
  background: oklch(24% 0.12 238);
  color: var(--ink);
  font-weight: 900;
}

.demo-steps li:last-child span {
  border-color: oklch(78% 0.15 86 / 42%);
  background: var(--gold);
  color: oklch(14% 0.04 250);
}

.demo-steps strong {
  max-width: 9ch;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.2;
}

.packages {
  padding: clamp(78px, 10vw, 140px) 0;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.package {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 36px);
  background: oklch(12% 0.036 245 / 92%);
}

.package.featured {
  background:
    linear-gradient(180deg, oklch(78% 0.15 86 / 16%), transparent 76%),
    oklch(16% 0.048 245 / 94%);
}

.package h3 {
  margin: auto 0 22px;
  color: var(--ink);
  font-size: 2.55rem;
  line-height: 0.96;
}

.roadmap {
  padding-top: clamp(72px, 8vw, 112px);
}

.roadmap-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
  counter-reset: roadmap;
}

.roadmap-list li {
  position: relative;
  min-height: 92px;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px 24px 20px 70px;
  background: oklch(12% 0.035 245 / 92%);
  counter-increment: roadmap;
}

.roadmap-list li::before {
  position: absolute;
  left: 24px;
  color: var(--cyan);
  font-weight: 900;
  content: counter(roadmap);
}

.roadmap-list strong {
  font-weight: 600;
}

.closing {
  padding: clamp(86px, 11vw, 150px) 0 clamp(44px, 6vw, 80px);
}

.closing-panel {
  min-height: 520px;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(30px, 6vw, 76px);
  border: 1px solid oklch(78% 0.15 86 / 28%);
  background:
    linear-gradient(90deg, oklch(9% 0.035 245 / 98%) 0 48%, oklch(12% 0.045 238 / 96%)),
    radial-gradient(circle at 78% 30%, oklch(78% 0.12 205 / 12%), transparent 30rem);
  box-shadow: var(--shadow);
}

.closing-panel h2 {
  max-width: 14ch;
  margin-bottom: 28px;
}

.closing-panel .button {
  margin-top: 20px;
}

.site-footer {
  width: min(var(--max), calc(100% - 32px));
  min-height: 88px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 0.9rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 800ms cubic-bezier(.16, 1, .3, 1), transform 800ms cubic-bezier(.16, 1, .3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes scan {
  from {
    transform: translateX(-30%);
  }
  to {
    transform: translateX(30%);
  }
}

@keyframes glowPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.92);
    opacity: 0.65;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 1;
  }
}


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

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

@media (max-width: 920px) {
  .hero,
  .section-grid,
  .audience-section,
  .target-clients,
  .proof {
    grid-template-columns: 1fr;
  }

  .compliance-points {
    grid-template-columns: 1fr;
  }

  .compliance-note {
    grid-template-columns: 1fr;
  }

  .compliance-mark {
    min-height: 96px;
    justify-items: start;
    text-align: left;
  }

  .compliance-note h3 {
    max-width: 100%;
    font-size: clamp(1.55rem, 7vw, 2.1rem);
  }

  .compliance-note p:not(.eyebrow) {
    font-size: 0.96rem;
  }

  .compliance-refs {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

  .section-head {
    display: block;
  }

  .target-clients {
    min-height: auto;
  }

  .lead-profile {
    justify-self: start;
  }

  .audience-profile {
    justify-self: start;
  }

  h1 {
    font-size: 4.9rem;
  }

  h2 {
    font-size: 3.55rem;
  }

  .package h3 {
    font-size: 2.15rem;
  }
}

@media (max-width: 980px) {
  .site-header {
    width: min(var(--max), calc(100% - 20px));
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
  }

  .brand {
    gap: 10px;
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .menu-toggle {
    display: none;
  }

  .nav {
    position: static;
    display: inline-flex;
    gap: clamp(7px, 1vw, 12px);
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    font-size: 0.82rem;
  }

  .site-header.is-menu-open .nav {
    display: inline-flex;
  }

  .nav a {
    min-height: auto;
    padding: 0;
    background: transparent;
  }

  .header-actions {
    gap: 7px;
  }

  .investor-cta {
    display: none;
  }

  .language-trigger {
    grid-template-columns: auto auto;
    padding-inline: 9px;
  }

  .nav-cta {
    padding-inline: 11px;
    font-size: 0.8rem;
  }
}

@media (max-width: 1120px) {
  .site-header .white-label-badge {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: min(var(--max), calc(100% - 24px));
    grid-template-columns: auto 1fr auto auto;
    padding: 12px 0;
    gap: 8px;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .nav {
    position: fixed;
    top: 64px;
    left: 12px;
    right: 12px;
    z-index: 80;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    padding: 8px;
    border: 1px solid oklch(78% 0.12 205 / 28%);
    background: oklch(8% 0.035 245 / 98%);
    box-shadow: 0 18px 56px oklch(2% 0.02 245 / 54%);
    font-size: 0.92rem;
    pointer-events: auto;
  }

  .site-header.is-menu-open .nav {
    display: grid;
  }

  .nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    background: oklch(100% 0.01 96 / 4%);
  }

  .nav-cta {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.86rem;
  }

  .header-actions {
    gap: 8px;
  }

  .language-trigger {
    min-height: 40px;
    height: 40px;
    grid-template-columns: auto auto;
    padding-inline: 9px;
  }

  .language-trigger strong {
    font-size: 0.72rem;
  }

  .language-menu {
    right: -54px;
  }

  .hero,
  .section-grid,
  .architecture,
  .audience-section,
  .target-clients,
  .proof,
  .packages,
  .stack-story,
  .closing,
  .steps {
    width: min(var(--max), calc(100% - 24px));
  }

  .hero {
    padding-top: 76px;
  }

  h1 {
    max-width: 8.6ch;
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.42rem;
  }

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

  .flow-orbit {
    height: 330px;
    margin: 12px;
  }

  .orbit-node {
    min-width: 72px;
    padding: 8px;
    font-size: 0.72rem;
  }

  .orbit-core {
    width: 138px;
    height: 138px;
  }

  .console-feed {
    grid-template-columns: 1fr;
  }

  .console-feed div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .steps,
  .compare-panel,
  .contract-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .target-clients {
    padding: 24px;
  }

  .target-list {
    padding: 22px;
  }

  .audience-section {
    width: min(var(--max), calc(100% - 24px));
    padding: 24px;
  }

  .audience-board {
    width: 100%;
    justify-items: stretch;
  }

  .audience-copy h2 {
    max-width: 15.5ch;
    font-size: clamp(2rem, 9.8vw, 3rem);
  }

  .audience-list {
    width: 100%;
    padding: 22px;
  }

  .audience-profile {
    width: 100%;
    justify-self: stretch;
  }

  .deck-panel {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 24px;
  }

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

.stack-bars a,
  .quote-table div {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .demo-steps {
    grid-template-columns: 1fr;
  }

  .demo-steps::before {
    top: 0;
    bottom: 0;
    left: 31px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .demo-steps li {
    grid-template-columns: 62px 1fr;
    align-items: center;
    justify-items: start;
    text-align: left;
  }

  .demo-steps strong {
    max-width: none;
  }

  .layer-row,
  .roadmap-list li {
    grid-template-columns: 1fr;
  }

  .roadmap-list li {
    padding-left: 58px;
  }

  .closing-panel {
    background:
      linear-gradient(180deg, oklch(9% 0.035 245 / 98%), oklch(12% 0.045 238 / 96%)),
      radial-gradient(circle at 78% 30%, oklch(78% 0.12 205 / 12%), transparent 30rem);
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}

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

@media (max-width: 360px) {
  .brand-name {
    display: none;
  }

  h1 {
    font-size: 3.28rem;
  }

  .button {
    width: 100%;
    padding-inline: 14px;
  }

  .closing-panel {
    padding-inline: 20px;
  }
}

/* ==========================================================================
   POLISH & AUDIT - INSTITUTIONAL RWA POLISH
   ========================================================================== */

/* 1. White-label badge styling */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0; /* Strict 90-degree corners */
  border: 1px solid oklch(78% 0.15 86 / 42%);
  background: oklch(78% 0.15 86 / 10%);
  color: var(--gold);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.white-label-badge {
  margin-left: 12px;
  font-size: 0.62rem;
  padding: 2px 6px;
}

.hero-badge-wrapper {
  margin-bottom: 14px;
}

.hero-badge {
  margin-left: 0;
  font-size: 0.74rem;
  padding: 4px 10px;
}

/* 2. Trust partners styling */
.trust-partners {
  width: min(var(--max), calc(100% - 32px));
  margin: clamp(54px, 8vw, 104px) auto;
  padding: clamp(28px, 4.6vw, 58px);
  border: 1px solid oklch(78% 0.12 205 / 24%);
  background:
    linear-gradient(90deg, oklch(7% 0.032 245 / 98%), oklch(10% 0.04 238 / 92%));
  box-shadow: var(--shadow);
}

.trust-header {
  margin-bottom: clamp(28px, 4vw, 48px);
  max-width: 72ch;
}

.trust-header h2 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

.trust-lede {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.trust-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 20px;
  border: 1px solid oklch(100% 0.01 96 / 8%);
  background: linear-gradient(135deg, oklch(12% 0.035 245 / 75%) 0%, oklch(8% 0.03 245 / 85%) 100%);
  transition: border-color 220ms ease, background 220ms ease;
  text-align: center;
  border-radius: 0;
}

.trust-card:hover {
  border-color: oklch(78% 0.15 86 / 25%);
  background: linear-gradient(135deg, oklch(14% 0.04 245 / 85%) 0%, oklch(10% 0.035 245 / 90%) 100%);
}

.partner-logo {
  color: var(--ink);
  opacity: 0.68;
  transition: opacity 220ms ease, color 220ms ease;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-card:hover .partner-logo {
  opacity: 0.95;
  color: var(--gold);
}

.partner-role {
  font-family: var(--font-mono);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* 3. Proof and Legal Document Room styling */
.proof-section {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  padding: clamp(70px, 9vw, 128px) 0;
}

.proof-header {
  margin-bottom: clamp(34px, 5vw, 58px);
  max-width: 72ch;
}

.proof-header h2 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

.proof-lede {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.proof-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(28px, 4.6vw, 68px);
  align-items: start;
}

.column-subtitle {
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  line-height: 1.25;
}

.indicator-dot-green {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: oklch(72% 0.17 142);
  border-radius: 999px;
  box-shadow: 0 0 8px oklch(72% 0.17 142 / 60%);
}

.indicator-dot-gold {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--gold);
  border-radius: 999px;
  box-shadow: 0 0 8px oklch(78% 0.15 86 / 60%);
}

.docroom-container {
  border: 1px solid oklch(78% 0.12 205 / 24%);
  background: oklch(9% 0.035 245 / 86%);
  padding: clamp(16px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 0;
}

.docroom-header-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.docroom-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 2px 6px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid oklch(78% 0.15 86 / 42%);
  background: oklch(78% 0.15 86 / 10%);
  border-radius: 0;
}

.docroom-header-box p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.doc-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.doc-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(118px, max-content);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(14px, 1.6vw, 16px);
  border: 1px solid oklch(100% 0.01 96 / 8%);
  background: linear-gradient(135deg, oklch(12% 0.035 245 / 50%) 0%, oklch(8% 0.03 245 / 60%) 100%);
  transition: border-color 220ms ease;
  border-radius: 0;
}

.doc-row:hover {
  border-color: oklch(78% 0.15 86 / 20%);
}

.doc-info {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.doc-type-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--ink);
  background: oklch(100% 0.01 96 / 8%);
  border: 1px solid oklch(100% 0.01 96 / 12%);
  flex-shrink: 0;
  border-radius: 0;
}

.doc-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.doc-text strong {
  font-size: 0.94rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.doc-text small {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.doc-actions {
  display: grid;
  flex-direction: column;
  justify-items: stretch;
  gap: 8px;
  min-width: 128px;
  flex-shrink: 0;
}

.doc-status {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: right;
}

.doc-action-btn {
  position: relative;
  min-height: 32px;
  padding: 0 12px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--ink);
  background: oklch(100% 0.01 96 / 6%);
  border: 1px solid oklch(100% 0.01 96 / 16%);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
  overflow: hidden;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.doc-action-btn:hover {
  border-color: oklch(78% 0.15 86 / 60%);
  background: oklch(78% 0.15 86 / 10%);
}

.doc-action-btn .copied-indicator {
  display: none;
  color: var(--gold);
}

.doc-action-btn.is-copied {
  border-color: var(--gold);
  background: oklch(78% 0.15 86 / 15%);
}

.doc-action-btn.is-copied .btn-text {
  display: none;
}

.doc-action-btn.is-copied .copied-indicator {
  display: inline-block;
}

/* 4. Footer adjustment and disclaimer box */
.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 24px 0 34px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: var(--soft);
  font-size: 0.9rem;
}

.footer-disclaimer-box {
  border-top: 1px solid oklch(100% 0.01 96 / 8%);
  padding-top: 18px;
  display: grid;
  gap: 18px;
}

.footer-disclaimer-text,
.footer-eu-notice p {
  color: var(--soft);
  font-size: 0.72rem;
  line-height: 1.5;
  margin: 0;
  text-align: justify;
}

.footer-eu-notice {
  display: grid;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid oklch(78% 0.12 205 / 16%);
}

.footer-eu-notice h3 {
  margin: 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

/* 5. Responsive overrides for new components */
@media (max-width: 920px) {
  .trust-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 1120px) {
  .proof-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .proof-column-contracts,
  .proof-column-docroom {
    min-width: 0;
  }
}

@media (max-width: 720px) {
  .proof-section {
    width: min(var(--max), calc(100% - 24px));
    padding: clamp(48px, 12vw, 76px) 0;
  }

  .proof-header {
    margin-bottom: 28px;
  }

  .proof-header h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .proof-lede {
    font-size: 0.98rem;
  }

  .column-subtitle {
    align-items: flex-start;
    margin-bottom: 16px;
  }

  .contract-grid a {
    min-height: 124px;
    padding: 18px;
  }

  .contract-grid strong {
    margin-top: 24px;
    font-size: 1rem;
  }

  .docroom-container {
    padding: 14px;
  }

  .trust-partners {
    padding: 24px;
  }
  .trust-logos {
    grid-template-columns: 1fr;
  }
  .doc-row {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 12px;
  }

  .doc-info {
    width: 100%;
    align-items: flex-start;
  }

  .doc-actions {
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .doc-status {
    grid-column: 1 / -1;
    text-align: left;
  }

  .doc-action-btn {
    width: 100%;
    text-align: center;
    padding-inline: 8px;
  }
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 420px) {
  .doc-info {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .doc-type-badge {
    width: 42px;
    height: 42px;
    font-size: 0.62rem;
  }

  .doc-actions {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   B2B ROI CALCULATOR & PRE-REGISTRATION WAITLIST FORM
   ========================================================================== */

.closing-panel {
  min-height: auto;
  display: block;
  padding: clamp(24px, 5vw, 68px);
}

.closing-cols {
  display: grid;
  grid-template-columns: 1.1fr minmax(300px, 390px);
  gap: clamp(28px, 6vw, 68px);
  align-items: start;
  width: 100%;
}

.roi-calc {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  text-align: left;
}

.roi-calc h3 {
  font-size: clamp(1.48rem, 2.8vw, 2.2rem);
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 6px 0;
}

.roi-description {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--soft);
}

.calc-label-row label {
  cursor: pointer;
}

.calc-value {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 1.18rem;
  font-weight: 800;
}

/* Range input styling - 90 degree sharp corners */
.roi-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--line);
  outline: none;
  border-radius: 0;
  margin: 8px 0;
  border: none;
}

.roi-slider:focus-visible {
  outline: 1px solid var(--gold);
}

.roi-slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  background: var(--line);
  border-radius: 0;
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border: 1px solid var(--gold);
  cursor: pointer;
  margin-top: -6px;
  border-radius: 0;
  transition: background 0.15s ease, transform 0.15s ease;
}

.roi-slider::-webkit-slider-thumb:hover {
  background: oklch(86% 0.12 86);
  transform: scale(1.1);
}

.roi-slider::-moz-range-track {
  width: 100%;
  height: 6px;
  background: var(--line);
  border-radius: 0;
}

.roi-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: var(--gold);
  border: 1px solid var(--gold);
  cursor: pointer;
  border-radius: 0;
  transition: background 0.15s ease, transform 0.15s ease;
}

.roi-slider::-moz-range-thumb:hover {
  background: oklch(86% 0.12 86);
  transform: scale(1.1);
}

.roi-results {
  margin-top: 12px;
  padding: 20px;
  background: oklch(100% 0.01 96 / 3%);
  border: 1px solid var(--line);
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.94rem;
  color: var(--muted);
  min-height: 28px;
}

.result-row del {
  font-family: var(--font-mono);
  color: oklch(78% 0.02 245 / 45%);
}

.result-row.highlight {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 1rem;
  color: var(--ink);
}

.result-row.highlight strong {
  font-family: var(--font-mono);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--gold);
  text-shadow: 0 0 12px oklch(78% 0.15 86 / 15%);
}

/* Waitlist Form container styling */
.waitlist-form-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: oklch(12% 0.04 245 / 75%);
  border: 1px solid oklch(78% 0.15 86 / 20%);
  width: 100%;
}

.waitlist-form-container h3 {
  font-size: 1.38rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 4px 0;
}

.form-description {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
  margin: 0 0 8px 0;
}

#waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#waitlist-form input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  background: oklch(9% 0.035 245 / 85%);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.94rem;
  outline: none;
  border-radius: 0;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

#waitlist-form input::placeholder {
  color: var(--soft);
}

#waitlist-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px oklch(78% 0.15 86 / 12%);
}

#waitlist-form input.is-invalid {
  border-color: oklch(62% 0.15 20);
}

#waitlist-form input[readonly] {
  background: oklch(100% 0.01 96 / 3%);
  color: var(--gold);
  font-family: var(--font-mono);
  font-weight: 700;
  cursor: not-allowed;
  border-color: var(--line);
}

.error-msg {
  font-size: 0.78rem;
  color: oklch(62% 0.15 20);
  min-height: 16px;
  margin-top: 1px;
}

#waitlist-form button[type="submit"] {
  height: 48px;
  margin-top: 6px;
  width: 100%;
}

/* Success panel animation */
.waitlist-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 10px;
  animation: fadeIn 0.4s ease-out forwards;
}

.success-icon {
  color: var(--gold);
  margin-bottom: 16px;
  filter: drop-shadow(0 0 8px oklch(78% 0.15 86 / 30%));
}

.waitlist-success h4 {
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 10px 0;
}

.waitlist-success p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

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

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

@media (max-width: 920px) {
  .closing-cols {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

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

/* Technical architecture portal */
html {
  overflow-x: hidden;
}

.technical-docs {
  background:
    radial-gradient(circle at 12% 2%, oklch(28% 0.08 235 / 14%), transparent 30rem),
    linear-gradient(180deg, oklch(7% 0.025 245), oklch(5% 0.02 250));
  overflow-x: hidden;
}

.technical-docs code,
.technical-docs pre {
  font-family: var(--font-mono);
}

.tech-doc-header {
  gap: 18px;
}

.tech-doc-header .brand {
  min-width: 250px;
}

.tech-doc-nav {
  justify-content: flex-start;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: 100%;
  padding-bottom: 3px;
}

.tech-doc-nav::-webkit-scrollbar {
  display: none;
}

.tech-doc-nav a {
  white-space: nowrap;
  font-size: 0.78rem;
}

.tech-doc-actions {
  gap: 8px;
  flex-shrink: 0;
}

.compact-link {
  min-height: 38px;
  padding: 10px 12px;
  font-size: 0.78rem;
}

.tech-main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 80px;
}

.tech-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 42px;
  align-items: end;
  min-height: 560px;
  border-bottom: 1px solid var(--line);
  padding: 64px 0 54px;
}

.tech-hero-copy {
  max-width: 780px;
  min-width: 0;
}

.tech-hero h1 {
  margin: 18px 0;
  max-width: 8.8ch;
  font-size: clamp(3.6rem, 6.4vw, 5.9rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.tech-subtitle {
  max-width: 70ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.tech-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.tech-facts div {
  display: grid;
  gap: 7px;
  min-height: 92px;
  padding: 18px;
  background: oklch(7% 0.024 245 / 96%);
}

.tech-facts dt {
  color: var(--soft);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.tech-facts dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.tech-facts div:last-child {
  grid-column: 1 / -1;
}

.tech-quick-links {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.tech-quick-links a {
  display: grid;
  gap: 6px;
  min-height: 74px;
  padding: 16px 18px;
  background: oklch(7% 0.024 245 / 94%);
  text-decoration: none;
}

.tech-quick-links span {
  color: var(--soft);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.tech-quick-links strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.tech-quick-links a:hover strong {
  color: var(--gold);
}

.tech-section {
  scroll-margin-top: 110px;
  padding: 76px 0;
  border-bottom: 1px solid var(--line);
}

.tech-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: 36px;
  align-items: start;
  margin-bottom: 30px;
}

.tech-section-head h2 {
  margin: 0;
  max-width: 740px;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.tech-section-head p:not(.eyebrow) {
  margin: 0;
  max-width: 72ch;
  color: var(--muted);
  line-height: 1.7;
}

.standards-section {
  padding-top: 60px;
}

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

.standard-card {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 26px;
  border: 1px solid oklch(100% 0.01 96 / 12%);
  background:
    linear-gradient(180deg, oklch(8% 0.024 245 / 94%), oklch(6% 0.022 245 / 96%)),
    radial-gradient(circle at 86% 8%, oklch(78% 0.12 205 / 8%), transparent 12rem);
}

.standard-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 900;
}

.standard-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.standard-icon {
  position: relative;
  width: 24px;
  height: 24px;
  display: inline-block;
  color: var(--muted);
}

.standard-icon::before,
.standard-icon::after {
  position: absolute;
  content: "";
}

.standard-icon-token::before {
  inset: 3px;
  border: 3px solid currentColor;
  clip-path: polygon(50% 0, 100% 26%, 100% 74%, 50% 100%, 0 74%, 0 26%);
}

.standard-icon-identity::before {
  inset: 2px 4px;
  border: 2px solid currentColor;
  border-radius: 10px 10px 12px 12px;
}

.standard-icon-identity::after {
  top: 7px;
  left: 9px;
  width: 7px;
  height: 4px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.standard-icon-network::before,
.standard-icon-network::after {
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
}

.standard-icon-network::before {
  top: 3px;
  right: 3px;
}

.standard-icon-network::after {
  left: 3px;
  bottom: 3px;
}

.standard-icon-usdc::before {
  inset: 2px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.standard-icon-usdc::after {
  top: 5px;
  left: 8px;
  color: currentColor;
  content: "$";
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 900;
}

.standard-icon-safe::before {
  inset: 4px;
  border: 2px solid currentColor;
  transform: rotate(45deg);
}

.standard-icon-safe::after {
  top: 10px;
  left: 10px;
  width: 4px;
  height: 4px;
  background: currentColor;
}

.dd-quick-view {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid oklch(78% 0.12 205 / 30%);
  background: oklch(7% 0.024 245 / 88%);
}

.dd-quick-view h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1rem;
}

.dd-quick-view dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.dd-quick-view div {
  min-width: 0;
  padding: 13px;
  background: oklch(6% 0.022 245);
}

.dd-quick-view dt {
  color: var(--soft);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.dd-quick-view dd {
  margin: 7px 0 0;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.25;
}

.dd-assets {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid oklch(78% 0.15 86 / 36%);
  background: oklch(78% 0.15 86 / 7%);
}

.dd-assets h4 {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dd-assets ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dd-assets li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.dd-assets li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  content: "✓";
}

.primary-artifacts {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid oklch(78% 0.12 205 / 36%);
  background: oklch(78% 0.12 205 / 7%);
}

.primary-artifacts h4 {
  margin: 0 0 12px;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-artifacts > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.primary-artifacts article {
  min-height: 98px;
  padding: 14px;
  border: 1px solid var(--line);
  background: oklch(6% 0.022 245 / 86%);
}

.primary-artifacts strong {
  display: block;
  color: var(--ink);
  line-height: 1.25;
}

.primary-artifacts span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.architecture-board {
  border: 1px solid oklch(58% 0.13 230 / 46%);
  background: oklch(6% 0.022 245 / 86%);
  padding: 18px;
  margin-bottom: 26px;
  overflow: visible;
}

.architecture-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(142px, 1fr));
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: visible;
}

.architecture-flow li,
.sequence-list li {
  position: relative;
  min-width: 0;
  border: 1px solid var(--line);
  background: oklch(8% 0.026 245 / 92%);
  padding: 16px;
}

.architecture-flow li:not(:last-child)::after {
  content: none;
}

.architecture-flow span,
.sequence-list span {
  display: block;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.architecture-flow strong,
.sequence-list strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.25;
}

.architecture-flow em,
.sequence-list em {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.45;
}

.tech-grid {
  display: grid;
  gap: 16px;
}

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

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

.reference-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.topology-summary dl {
  display: grid;
  gap: 1px;
  margin: 0 0 14px;
  border: 1px solid var(--line);
  background: var(--line);
}

.topology-summary dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  background: oklch(6% 0.022 245);
}

.topology-summary dt {
  color: var(--soft);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.topology-summary dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.topology-summary .button {
  width: 100%;
  margin-top: 16px;
}

.tech-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.tech-panel,
.contract-record,
.limitations {
  border: 1px solid var(--line);
  background: oklch(7% 0.024 245 / 86%);
  padding: 22px;
}

.tech-panel h3,
.contract-record h3,
.limitations h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1rem;
}

.tech-panel p,
.contract-record p,
.limitations p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.technical-list,
.mini-steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

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

.contract-record {
  display: grid;
  gap: 16px;
}

.contract-record dl {
  display: grid;
  gap: 1px;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.contract-record dl div {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 14px;
  padding: 10px 12px;
  background: oklch(6% 0.022 245);
}

.contract-record dt {
  color: var(--soft);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.contract-record dd {
  margin: 0;
  color: var(--muted);
}

.contract-record a,
.tech-panel a,
.doc-link-grid a,
.tech-table a {
  color: var(--gold);
  text-decoration: none;
}

.contract-record a:hover,
.tech-panel a:hover,
.doc-link-grid a:hover,
.tech-table a:hover {
  text-decoration: underline;
}

.sequence-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(140px, 1fr));
  gap: 10px;
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  overflow-x: auto;
}

.sequence-list.compact {
  grid-template-columns: repeat(5, minmax(160px, 1fr));
}

.upgrade-steps {
  counter-reset: upgrade;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.upgrade-steps li {
  border: 1px solid var(--line);
  background: oklch(7% 0.024 245 / 88%);
  padding: 20px;
}

.upgrade-steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border: 1px solid oklch(78% 0.15 86 / 62%);
  color: var(--gold);
  font-family: var(--font-mono);
  font-weight: 800;
}

.upgrade-steps strong {
  display: block;
  color: var(--ink);
  line-height: 1.35;
}

.upgrade-steps em {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
}

.storage-warning {
  margin-top: 16px;
  border-color: oklch(78% 0.15 86 / 46%);
}

.validation-section {
  padding-top: 64px;
}

.validation-metrics {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  background: var(--line);
}

.validation-metrics article {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 20px;
  background: oklch(6% 0.022 245 / 94%);
}

.validation-metrics strong {
  color: var(--ink);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.validation-metrics span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.45;
  text-transform: uppercase;
}

.coverage-highlights {
  margin-bottom: 18px;
  padding: 20px;
  border: 1px solid oklch(78% 0.15 86 / 36%);
  background: oklch(78% 0.15 86 / 7%);
}

.coverage-highlights h3 {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coverage-highlights ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coverage-highlights li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.coverage-highlights li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  content: "✓";
}

.validation-report-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 16px;
  border: 1px solid oklch(78% 0.12 205 / 28%);
  background: oklch(7% 0.024 245 / 86%);
  padding: 22px;
}

.validation-report-panel p {
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.65;
}

.validation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.validation-includes {
  border: 1px solid var(--line);
  background: oklch(6% 0.022 245 / 92%);
  padding: 20px;
}

.validation-includes h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1rem;
}

.validation-status {
  margin: 16px 0;
}

.validation-status p + p {
  margin-top: 10px;
}

.authority-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px 18px;
  align-items: center;
  margin-bottom: 16px;
  padding: 20px;
  border: 1px solid oklch(78% 0.15 86 / 48%);
  background:
    linear-gradient(90deg, oklch(78% 0.15 86 / 9%), oklch(7% 0.024 245 / 90%)),
    oklch(7% 0.024 245 / 92%);
}

.authority-card span {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.authority-card strong {
  color: var(--ink);
  font-weight: 900;
}

.authority-card em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.authority-card p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.claim-model {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.claim-model span {
  border: 1px solid oklch(78% 0.15 86 / 42%);
  color: var(--gold);
  background: oklch(78% 0.15 86 / 8%);
  padding: 10px 12px;
  font-weight: 800;
}

.tech-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: oklch(6% 0.022 245 / 92%);
  margin-top: 18px;
}

.tech-table th,
.tech-table td {
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.tech-table th {
  color: var(--soft);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  background: oklch(9% 0.028 245);
}

.tech-table td {
  color: var(--muted);
  line-height: 1.48;
}

.tech-table td:first-child {
  color: var(--ink);
  font-weight: 800;
}

.inventory-table td:nth-child(5),
.address-table td:nth-child(2) {
  min-width: 0;
}

.table-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.table-links a {
  font-size: 0.78rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-pill.verified {
  border-color: oklch(72% 0.12 156 / 42%);
  background: oklch(72% 0.12 156 / 10%);
  color: oklch(82% 0.1 156);
}

.status-pill.pending {
  border-color: oklch(78% 0.15 86 / 42%);
  background: oklch(78% 0.15 86 / 8%);
  color: var(--gold);
}

.address-table code {
  overflow-wrap: anywhere;
}

.governance-diagram,
.deployment-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.governance-diagram div,
.deployment-summary div {
  border: 1px solid var(--line);
  background: oklch(7% 0.024 245 / 88%);
  padding: 18px;
}

.governance-diagram strong,
.deployment-summary strong {
  display: block;
  color: var(--ink);
}

.governance-diagram span,
.deployment-summary span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.86rem;
}

.verification-notes {
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  background: oklch(7% 0.024 245 / 86%);
}

.verification-notes h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1rem;
}

.verification-notes dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.verification-notes dt {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.verification-notes dd {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.governance-core {
  border-color: oklch(78% 0.15 86 / 64%) !important;
  background: oklch(78% 0.15 86 / 8%) !important;
}

.code-panel pre {
  overflow: hidden;
  margin: 0;
  padding: 16px;
  background: oklch(4% 0.018 245);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.6;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.integration-checklist {
  margin: 0 0 16px;
}

.integration-foundation {
  margin: 0 0 16px;
}

.repo-structure-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.repo-structure-list li {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.repo-structure-list code {
  color: var(--ink);
}

.dependency-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.dependency-tags span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid oklch(78% 0.12 205 / 28%);
  background: oklch(78% 0.12 205 / 7%);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
}

.check-list,
.deploy-order {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.deploy-order li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  line-height: 1.5;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-family: var(--font-mono);
  font-weight: 800;
}

.deploy-order {
  counter-reset: deploy;
}

.deploy-order li {
  counter-increment: deploy;
}

.deploy-order li::before {
  content: counter(deploy);
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-family: var(--font-mono);
  font-weight: 800;
}

.doc-link-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.doc-link-grid a {
  display: grid;
  gap: 8px;
  min-height: 116px;
  border: 1px solid var(--line);
  background: oklch(7% 0.024 245 / 88%);
  padding: 18px;
}

.doc-link-grid a:nth-child(-n + 3) {
  min-height: 132px;
  border-color: oklch(78% 0.15 86 / 42%);
  background:
    linear-gradient(180deg, oklch(78% 0.15 86 / 8%), transparent),
    oklch(7% 0.024 245 / 90%);
}

.doc-link-grid span {
  color: var(--soft);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.doc-link-grid strong {
  color: var(--ink);
  line-height: 1.35;
}

.tech-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 46px;
  align-items: flex-start;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.tech-footer > div {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.tech-footer p {
  margin: 0;
  max-width: 70ch;
}

@media (max-width: 1440px) {
  .tech-doc-actions {
    display: none;
  }

  .tech-doc-header .white-label-badge {
    display: none;
  }
}

@media (max-width: 1180px) {
  .tech-doc-header .brand {
    min-width: 220px;
  }

  .tech-grid.four,
  .standards-grid,
  .dd-quick-view dl,
  .dd-assets ul,
  .primary-artifacts > div,
  .validation-metrics,
  .coverage-highlights ul,
  .doc-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .tech-main {
    width: min(100% - 28px, 760px);
    padding-top: 72px;
  }

  .tech-doc-nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    overflow-x: visible;
    row-gap: 8px;
  }

  .tech-doc-header {
    overflow: visible;
  }

  .tech-hero,
  .tech-section-head,
  .tech-split,
  .reference-summary,
  .tech-grid.three,
  .standards-grid,
  .contract-suite,
  .governance-diagram,
  .deployment-summary,
  .verification-notes dl,
  .validation-report-panel,
  .upgrade-steps {
    grid-template-columns: 1fr;
  }

  .tech-hero {
    min-height: auto;
    gap: 26px;
    padding-top: 44px;
  }

  .tech-hero h1 {
    max-width: 100%;
    font-size: clamp(3rem, 10vw, 4.8rem);
  }

  .tech-doc-header .brand {
    min-width: 0;
  }

  .architecture-board {
    overflow: visible;
  }

  .architecture-flow,
  .sequence-list,
  .sequence-list.compact {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }

  .architecture-flow li:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 680px) {
  .technical-docs [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .tech-main {
    width: min(100% - 22px, 560px);
    overflow-x: clip;
  }

  .tech-hero {
    padding-top: 34px;
  }

  .tech-hero h1 {
    max-width: 100%;
    font-size: clamp(2.36rem, 12.4vw, 4rem);
    overflow-wrap: break-word;
  }

  .tech-facts,
  .tech-quick-links,
  .tech-grid.four,
  .standards-grid,
  .dd-quick-view dl,
  .dd-assets ul,
  .primary-artifacts > div,
  .validation-metrics,
  .coverage-highlights ul,
  .doc-link-grid {
    grid-template-columns: 1fr;
  }

  .tech-section {
    padding: 56px 0;
    overflow-x: clip;
  }

  .tech-section-head {
    overflow-x: clip;
  }

  .tech-section-head h2 {
    max-width: 100%;
    font-size: clamp(1.85rem, 8vw, 3rem);
  }

  .tech-section-head code {
    overflow-wrap: anywhere;
  }

  .contract-record dl div {
    grid-template-columns: 1fr;
  }

  .architecture-board {
    overflow: visible;
  }

  .architecture-flow,
  .sequence-list,
  .sequence-list.compact {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }

  .architecture-flow li:not(:last-child)::after {
    display: none;
  }

  .architecture-flow li,
  .sequence-list li {
    width: auto;
  }

  .tech-table {
    display: table;
    table-layout: fixed;
    overflow: visible;
    white-space: normal;
  }

  .tech-table th,
  .tech-table td {
    padding: 11px 8px;
    font-size: 0.76rem;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .tech-table code {
    white-space: normal;
  }

  .inventory-table,
  .address-table {
    table-layout: fixed;
  }

  .table-links {
    gap: 7px;
  }

  .authority-card,
  .repo-structure-list li {
    grid-template-columns: 1fr;
  }

  .standard-card {
    min-height: 124px;
  }

  .risk-table {
    white-space: normal;
  }

  .brand .white-label-badge {
    display: none;
  }

  .tech-doc-header {
    overflow: visible;
  }

  .tech-doc-header .tech-doc-nav {
    position: fixed;
    top: 64px;
    left: 12px;
    right: 12px;
    z-index: 90;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    padding: 8px;
    border: 1px solid oklch(78% 0.12 205 / 28%);
    background: oklch(8% 0.035 245 / 98%);
    box-shadow: 0 18px 56px oklch(2% 0.02 245 / 54%);
    pointer-events: auto;
  }

  .tech-doc-header.is-menu-open .tech-doc-nav {
    display: grid;
  }

  .tech-doc-header .tech-doc-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    background: oklch(100% 0.01 96 / 4%);
  }

  .tech-footer {
    width: min(100% - 22px, 560px);
    flex-direction: column;
  }
}
