:root {
  --bg: #09080b;
  --panel: rgba(19, 18, 24, 0.86);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f4f1eb;
  --muted: #b7ae9f;
  --gold: #f1b36b;
  --gold-soft: #ffcf97;
  --teal: #77dfd1;
  --rose: #ff9d86;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.34);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(255, 178, 88, 0.16), transparent 30%),
    radial-gradient(circle at top right, rgba(119, 223, 209, 0.1), transparent 28%),
    linear-gradient(180deg, #070609 0%, #0c0b10 35%, #09080b 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 85%);
}

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.ambient {
  position: fixed;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
  pointer-events: none;
  animation: ambientDrift 16s ease-in-out infinite;
}

.ambient-left {
  left: -10rem;
  top: 8rem;
  background: #e28a2b;
}

.ambient-right {
  right: -8rem;
  top: 18rem;
  background: #3ad7c6;
}

.topbar,
.section,
.footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 10, 13, 0.72);
  backdrop-filter: blur(22px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--rose) 100%);
  color: #140f12;
  font-family: "Sora", sans-serif;
  font-weight: 800;
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-copy strong {
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
}

.brand-copy span,
.nav {
  color: var(--muted);
}

.brand-copy span {
  font-size: 0.75rem;
}

.nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.nav a:hover,
.nav a:focus-visible,
.docs-sidebar a:hover,
.docs-sidebar a:focus-visible {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--rose) 100%);
  color: #181216;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 18px 40px rgba(228, 145, 66, 0.22);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(228, 145, 66, 0.28);
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line-strong);
  color: var(--text);
  box-shadow: none;
}

.section {
  padding: 5rem 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 2rem;
  align-items: stretch;
  min-height: calc(100vh - 5rem);
  padding-top: 4rem;
}

.hero-copy,
.hero-panel,
.strategy-card,
.risk-card,
.docs-section-card,
.docs-sidebar,
.kpi-strip,
.ops-table {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero-copy,
.hero-panel,
.docs-sidebar,
.docs-section-card,
.strategy-card,
.risk-card,
.ops-table {
  border-radius: var(--radius-xl);
}

.hero-copy,
.hero-panel,
.docs-section-card,
.strategy-card,
.risk-card,
.ops-table {
  padding: 2rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "K";
  position: absolute;
  right: -0.4rem;
  top: -1.4rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(10rem, 22vw, 18rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.hero h1,
.docs-hero h1,
.section-heading h2,
.docs-section-card h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h1,
.docs-hero h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  max-width: 11ch;
}

.eyebrow,
.signal-label,
.panel-kicker,
.card-index {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--gold-soft);
  font-family: "Space Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 0.35rem rgba(119, 223, 209, 0.12);
}

.lede,
.proof-line,
.docs-section-card p,
.strategy-card p,
.risk-card p,
.list-card p,
.ops-row p,
.intent-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions,
.form-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.wallet-inline-strip {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 1rem 0 0.35rem;
}

.wallet-inline-strip span,
.wallet-inline-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-size: 0.8rem;
}

.wallet-inline-strip a {
  color: var(--gold-soft);
}

.identity-marquee {
  position: relative;
  overflow: hidden;
  margin: 1rem 0 0.35rem;
  border-block: 1px solid var(--line);
  padding: 0.7rem 0;
}

.identity-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marqueeMove 20s linear infinite;
}

.identity-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Space Mono", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: rgba(244, 241, 235, 0.74);
}

.identity-track span::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--teal));
}

.signal-grid,
.card-grid,
.risk-grid,
.policy-grid,
.intent-grid,
.readiness-grid {
  display: grid;
  gap: 1rem;
}

.marketplace-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 1rem;
}

.signal-grid,
.card-grid,
.risk-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.signal-card,
.market-card,
.vault-choice,
.policy-grid article,
.intent-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.02);
}

.compact-grid .signal-card {
  min-height: 100%;
}

.hero-inline-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1.25rem 0;
}

.hero-inline-stats article {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
}

.hero-inline-stats span,
.market-metrics span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-inline-stats strong {
  display: block;
  margin-top: 0.35rem;
}

.market-tape {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.2rem 0 0.4rem;
}

.market-tape span,
.offer-tags span,
.market-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  color: var(--text);
}

.hero-offer-card {
  margin: 1.2rem 0 1.5rem;
  padding: 1.3rem;
  border: 1px solid rgba(241, 179, 107, 0.24);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(241, 179, 107, 0.12), rgba(119, 223, 209, 0.06)),
    rgba(255, 255, 255, 0.025);
}

.vault-blueprint {
  position: relative;
  height: 17rem;
  margin-bottom: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius-lg) + 6px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    radial-gradient(circle at center, rgba(119, 223, 209, 0.12), transparent 48%);
  overflow: hidden;
}

.blueprint-core {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1.2rem;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  color: #171118;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  z-index: 2;
  box-shadow: 0 0 50px rgba(241, 179, 107, 0.28);
}

.blueprint-ring,
.blueprint-axis {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.blueprint-ring {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.ring-one {
  width: 7rem;
  height: 7rem;
}

.ring-two {
  width: 12rem;
  height: 12rem;
  border-style: dashed;
  animation: rotateSlow 22s linear infinite;
}

.ring-three {
  width: 17rem;
  height: 17rem;
  border-color: rgba(119, 223, 209, 0.14);
  animation: rotateReverse 26s linear infinite;
}

.blueprint-axis {
  background: rgba(255, 255, 255, 0.08);
}

.axis-horizontal {
  width: 100%;
  height: 1px;
}

.axis-vertical {
  width: 1px;
  height: 100%;
}

.blueprint-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(9, 8, 11, 0.72);
  color: var(--text);
  font-family: "Space Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.node-one {
  left: 1.2rem;
  top: 2rem;
}

.node-two {
  right: 1.2rem;
  top: 3.5rem;
}

.node-three {
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
}

.offer-headline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.offer-label {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.offer-headline strong,
.market-yield {
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  color: var(--gold-soft);
}

.offer-tags,
.market-metrics,
.market-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.split-actions .button {
  flex: 1 1 0;
}

.market-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  padding: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.market-card:hover,
.market-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(241, 179, 107, 0.24);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.market-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.market-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.45rem;
}

.market-summary {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.market-actions {
  margin-top: auto;
}

.market-actions .button {
  min-width: 8rem;
}

.featured-market-card {
  border-color: rgba(241, 179, 107, 0.28);
  background:
    radial-gradient(circle at top right, rgba(241, 179, 107, 0.16), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--panel);
}

.market-card:nth-child(2) {
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
}

.market-card:nth-child(3) {
  clip-path: polygon(22px 0, 100% 0, 100% 100%, 0 100%, 0 22px);
}

.signature-section {
  padding-top: 1rem;
}

.signature-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 1.2rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-xl) + 4px);
  background:
    radial-gradient(circle at top left, rgba(241, 179, 107, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    var(--panel);
  box-shadow: var(--shadow);
}

.signature-copy h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1;
  letter-spacing: -0.04em;
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 12ch;
}

.signature-copy p {
  max-width: 42rem;
  color: var(--muted);
  line-height: 1.7;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.signature-cell {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 7rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
}

.signature-cell span {
  color: var(--muted);
  font-family: "Space Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.signature-cell strong {
  margin-top: 0.4rem;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
}

.tall-cell {
  min-height: 11rem;
}

.wide-cell {
  grid-column: span 2;
}

.accent-cell {
  background:
    linear-gradient(135deg, rgba(241, 179, 107, 0.18), rgba(119, 223, 209, 0.08)),
    rgba(255, 255, 255, 0.03);
}

.ghost-badge {
  color: var(--teal);
}

.hot-badge {
  color: var(--rose);
}

.panel-header,
.allocation-header,
.intent-header,
.ops-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.panel-pill,
.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
}

.console-metrics {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1.5rem 0;
}

.console-metrics article,
.kpi-strip article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
}

.console-metrics span,
.kpi-strip span,
.intent-grid span,
.ops-row span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.console-metrics strong,
.kpi-strip strong,
.intent-grid strong,
.ops-row strong,
.signal-card strong,
.strategy-card h3,
.risk-card h3 {
  display: block;
  margin-top: 0.35rem;
}

.allocation-card,
.intent-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.025);
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 2rem;
}

.docs-main {
  padding-top: 2rem;
}

.docs-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.5rem;
}

.docs-sidebar {
  align-self: start;
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 0.85rem;
}

.docs-stack {
  display: grid;
  gap: 1.5rem;
}

.kpi-strip {
  margin-top: 2rem;
  padding: 1rem;
  border-radius: var(--radius-xl);
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.deposit-form {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.55rem;
}

.field-wide {
  grid-column: 1 / -1;
}

.deposit-form input,
.deposit-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.network-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(241, 179, 107, 0.24);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(241, 179, 107, 0.1), rgba(119, 223, 209, 0.08)),
    rgba(255, 255, 255, 0.02);
}

.network-banner strong {
  font-family: "Sora", sans-serif;
}

.network-banner span {
  color: var(--muted);
  line-height: 1.6;
}

.vault-selector {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

.vault-choice {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  width: 100%;
  padding: 1.1rem;
  text-align: left;
  color: var(--text);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.wallet-option {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  color: var(--text);
  cursor: pointer;
}

.wallet-option.connected,
.wallet-option:hover,
.wallet-option:focus-visible {
  border-color: rgba(241, 179, 107, 0.34);
  transform: translateY(-2px);
}

.wallet-option strong {
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
}

.wallet-option p {
  margin: 0;
}

.wallet-option-footer,
.intent-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.wallet-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-family: "Space Mono", monospace;
  font-size: 0.78rem;
}

.wallet-badge-neutral {
  color: var(--muted);
}

.wallet-badge-ok {
  color: var(--teal);
}

.wallet-badge-warn {
  color: var(--gold-soft);
}

.wallet-badge-error {
  color: #ff8a8a;
}

.wallet-cta {
  color: var(--gold-soft);
  font-weight: 700;
}

.wallet-state {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(119, 223, 209, 0.18);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(119, 223, 209, 0.08), rgba(241, 179, 107, 0.05)),
    rgba(255, 255, 255, 0.02);
}

.wallet-state p {
  margin: 0;
}

.wallet-state-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.wallet-state-grid article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 0.9rem;
  background: rgba(255, 255, 255, 0.03);
}

.wallet-state-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.wallet-state-grid strong {
  display: block;
  margin-top: 0.35rem;
}

.vault-choice:hover,
.vault-choice:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.vault-choice.active {
  border-color: rgba(241, 179, 107, 0.42);
  background:
    linear-gradient(160deg, rgba(241, 179, 107, 0.12), rgba(119, 223, 209, 0.06)),
    rgba(255, 255, 255, 0.03);
}

.vault-choice strong {
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
}

.vault-choice-yield,
.selected-vault-metrics span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold-soft);
  font-family: "Space Mono", monospace;
  font-size: 0.85rem;
}

.vault-choice p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.selected-vault-banner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.selected-vault-banner strong {
  display: block;
  margin-top: 0.3rem;
  font-family: "Sora", sans-serif;
}

.selected-vault-banner p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.selected-vault-metrics {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: flex-end;
}

.deposit-form input::placeholder,
.deposit-form textarea::placeholder {
  color: rgba(244, 241, 235, 0.42);
}

.form-note {
  margin: 0;
}

.intent-actions {
  margin-top: 1rem;
}

.status-ok {
  color: var(--teal);
}

.status-error {
  color: #ff8a8a;
}

.status-warn {
  color: var(--gold);
}

.status-neutral {
  color: var(--muted);
}

.ops-table {
  display: grid;
  gap: 1rem;
}

.ops-row {
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
}

.ops-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 3rem;
  color: var(--muted);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

body.motion-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

body.motion-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ambientDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(1.5rem, -1rem, 0) scale(1.05);
  }
}

@keyframes marqueeMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes rotateSlow {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotateReverse {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

.hero-panel {
  display: grid;
  align-content: start;
  padding: 1.2rem;
  background:
    radial-gradient(circle at 18% 10%, rgba(170, 94, 39, 0.2), transparent 18%),
    linear-gradient(135deg, #2d241f 0%, #17181d 16%, #0e1015 48%, #0a0b10 100%);
}

.hero-panel-stack {
  display: grid;
  gap: 1rem;
}

.dashboard-preview-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius-lg) + 6px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(6, 8, 14, 0.72);
  overflow: hidden;
}

.monitor-stage {
  position: relative;
  width: 100%;
  min-height: 42rem;
  display: grid;
  place-items: center;
  padding: 1.35rem 0.75rem 2.4rem;
  border-radius: calc(var(--radius-xl) + 4px);
  background: linear-gradient(180deg, rgba(28, 29, 34, 0.2) 0%, rgba(8, 9, 12, 0.1) 100%);
  overflow: hidden;
}

.monitor-stage::before {
  content: "";
  position: absolute;
  inset: 6% 7% 7%;
  border-radius: 2.6rem;
  background:
    linear-gradient(180deg, rgba(93, 95, 104, 0.26) 0%, rgba(25, 26, 31, 0.12) 35%, rgba(11, 11, 14, 0.28) 100%);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.monitor-stage::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 1.9rem;
  bottom: 1rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 74%);
  filter: blur(14px);
}

.desk-edge,
.desk-watch,
.desk-pen {
  position: absolute;
  pointer-events: none;
}

.desk-edge {
  top: -1rem;
  left: -1rem;
  width: 65%;
  height: 1.8rem;
  border-radius: 0 0 1.2rem 0;
  background: linear-gradient(90deg, #7f5640 0%, #3a281f 45%, rgba(58, 40, 31, 0) 100%);
  opacity: 0.8;
}

.desk-watch {
  top: 1.15rem;
  right: 1.4rem;
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(247, 247, 247, 0.96) 0 43%, rgba(206, 210, 217, 0.9) 44% 49%, rgba(62, 66, 74, 0.94) 50% 62%, transparent 63%),
    linear-gradient(135deg, rgba(19, 20, 25, 0.88) 0%, rgba(67, 70, 77, 0.26) 100%);
  opacity: 0.82;
  transform: rotate(12deg);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
}

.desk-watch::before,
.desk-watch::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 2.2rem;
  height: 4.6rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(24, 25, 30, 0.92) 0%, rgba(54, 56, 62, 0.82) 100%);
  z-index: -1;
}

.desk-watch::before {
  top: -3rem;
}

.desk-watch::after {
  bottom: -3rem;
}

.desk-pen {
  left: 1.5rem;
  bottom: 2rem;
  width: 1rem;
  height: 11rem;
  border-radius: 999px;
  transform: rotate(32deg);
  background:
    linear-gradient(180deg, #d8dce3 0%, #646973 18%, #16191d 42%, #646973 72%, #d9dce1 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 18px 34px rgba(0, 0, 0, 0.35);
}

.monitor-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 39rem);
}

.monitor-bezel {
  padding: 0.7rem;
  border-radius: 1.65rem;
  background:
    linear-gradient(180deg, rgba(30, 31, 35, 0.98) 0%, rgba(11, 12, 14, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 34px 70px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.browser-bar {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.45rem 0.55rem;
}

.browser-dots,
.browser-actions {
  display: inline-flex;
  gap: 0.28rem;
}

.browser-dots span,
.browser-actions span {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
}

.browser-tab {
  min-height: 1.5rem;
  padding: 0.18rem 0.55rem;
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 244, 229, 0.88);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.browser-address {
  min-height: 1.55rem;
  padding: 0.18rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.66rem;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 9.2rem minmax(0, 1fr);
  min-height: 28rem;
  overflow: hidden;
  border-radius: 1.15rem;
  background:
    radial-gradient(circle at top right, rgba(255, 179, 107, 0.08), transparent 24%),
    linear-gradient(180deg, #161a20 0%, #0c1015 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.dashboard-sidebar {
  display: grid;
  align-content: start;
  gap: 1.3rem;
  padding: 1.1rem 0.85rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.01) 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.sidebar-brand-mark {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--rose) 100%);
  color: #140f12;
  font-family: "Sora", sans-serif;
  font-weight: 800;
}

.sidebar-brand strong,
.sidebar-item {
  font-family: "Sora", sans-serif;
}

.sidebar-brand strong {
  display: block;
  font-size: 0.88rem;
}

.sidebar-brand span {
  display: block;
  margin-top: 0.1rem;
  color: var(--muted);
  font-size: 0.68rem;
}

.sidebar-nav {
  display: grid;
  gap: 0.45rem;
}

.sidebar-item {
  display: flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0.2rem 0.7rem;
  border-radius: 0.9rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
}

.sidebar-item.active {
  background: rgba(255, 179, 107, 0.12);
  border: 1px solid rgba(255, 179, 107, 0.18);
  color: var(--gold-soft);
}

.dashboard-main {
  display: grid;
  gap: 0.8rem;
  padding: 0.95rem;
}

.dashboard-toolbar {
  display: flex;
  justify-content: flex-end;
}

.dashboard-toolbar-icons {
  display: inline-flex;
  gap: 0.55rem;
}

.dashboard-toolbar-icons span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.dashboard-summary-row {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  gap: 0.75rem;
}

.dashboard-balance-card,
.dashboard-donut-card,
.dashboard-table-card,
.dashboard-health-grid article {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.012) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.dashboard-balance-card {
  padding: 0.95rem 1rem;
}

.dashboard-card-label,
.dashboard-table-heading span,
.dashboard-table-header span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-balance-card strong {
  display: block;
  margin-top: 0.35rem;
  font-family: "Sora", sans-serif;
  font-size: 3.2rem;
  line-height: 0.96;
}

.dashboard-balance-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
}

.dashboard-donut-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 0.9rem;
}

.desktop-donut {
  flex: 0 0 7rem;
  width: 7rem;
  height: 7rem;
}

.desktop-donut::before {
  inset: 1.35rem;
}

.desktop-legend {
  gap: 0.45rem;
  padding-top: 0;
}

.desktop-legend .wallet-legend-label,
.desktop-legend .wallet-legend-values strong {
  font-size: 0.76rem;
}

.dashboard-action-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.dashboard-action-button {
  min-height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.95rem;
  background:
    linear-gradient(180deg, rgba(122, 125, 133, 0.92) 0%, rgba(70, 73, 81, 0.94) 100%);
  color: rgba(255, 247, 238, 0.94);
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.dashboard-table-card {
  padding: 0.85rem 0.9rem 0.7rem;
}

.dashboard-table {
  margin-top: 0.5rem;
}

.dashboard-table-header,
.dashboard-table-row {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr 1fr 0.95fr 0.4fr;
  gap: 0.75rem;
  align-items: center;
}

.dashboard-table-header {
  padding: 0 0.2rem 0.45rem;
}

.dashboard-table-row {
  padding: 0.72rem 0.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
}

.dashboard-table-row strong {
  font-weight: 700;
  color: rgba(255, 250, 242, 0.95);
}

.dashboard-status-dot {
  justify-self: end;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.dashboard-status-dot.warm {
  border-color: rgba(255, 179, 107, 0.78);
}

.dashboard-health-grid {
  margin: 0;
}

.monitor-stand {
  position: relative;
  width: 100%;
  display: grid;
  justify-items: center;
  margin-top: -0.4rem;
}

.monitor-neck {
  width: 1.3rem;
  height: 3rem;
  border-radius: 0 0 0.85rem 0.85rem;
  background: linear-gradient(180deg, #aeb3bb 0%, #747a84 100%);
}

.monitor-base {
  width: 9rem;
  height: 1rem;
  margin-top: -0.08rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #959aa3 0%, #5d616a 100%);
}

.phone-device {
  position: relative;
  z-index: 1;
  width: min(100%, 24.9rem);
  padding: 0.72rem;
  border-radius: 3rem;
  background: linear-gradient(165deg, #666971 0%, #1f2127 16%, #050607 100%);
  box-shadow:
    0 36px 70px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -3px 5px rgba(0, 0, 0, 0.72);
  transform: perspective(1700px) rotateX(15deg) rotateY(-23deg) rotateZ(14deg);
  transform-style: preserve-3d;
}

.phone-device::before {
  content: "";
  position: absolute;
  inset: -0.16rem;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.phone-screen {
  position: relative;
  overflow: hidden;
  min-height: 43.3rem;
  padding: 1.25rem 1rem 0.74rem;
  border-radius: 2.35rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 176, 104, 0.14), transparent 18%),
    linear-gradient(180deg, #20232a 0%, #11141a 42%, #0a0d12 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -12px 18px rgba(0, 0, 0, 0.32);
}

.phone-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.017) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 0.9rem 0.9rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 94%);
  pointer-events: none;
}

.phone-notch {
  position: absolute;
  top: 0.52rem;
  left: 50%;
  width: 8.5rem;
  height: 1.5rem;
  transform: translateX(-50%);
  border-radius: 0.95rem;
  background: #050608;
}

.phone-side-button {
  position: absolute;
  left: -0.26rem;
  width: 0.3rem;
  border-radius: 999px 0 0 999px;
  background: linear-gradient(180deg, rgba(88, 92, 100, 0.98) 0%, rgba(26, 28, 33, 0.96) 100%);
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.18);
}

.phone-side-button-top {
  top: 8rem;
  height: 2.8rem;
}

.phone-side-button-mid {
  top: 12rem;
  height: 3.8rem;
}

.phone-side-button-low {
  top: 16.4rem;
  height: 3.8rem;
}

.phone-status,
.wallet-branding,
.wallet-balance-row,
.wallet-distribution,
.wallet-section-heading,
.wallet-transaction,
.wallet-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.phone-status {
  position: relative;
  z-index: 1;
  margin-top: 0.18rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.status-icons {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.signal-bars,
.wifi-icon,
.battery-icon {
  display: inline-block;
}

.signal-bars {
  width: 0.95rem;
  height: 0.7rem;
  background:
    linear-gradient(to top, rgba(255, 255, 255, 0.9) 0 100%) left bottom / 0.16rem 35% no-repeat,
    linear-gradient(to top, rgba(255, 255, 255, 0.9) 0 100%) 33% bottom / 0.16rem 52% no-repeat,
    linear-gradient(to top, rgba(255, 255, 255, 0.9) 0 100%) 66% bottom / 0.16rem 72% no-repeat,
    linear-gradient(to top, rgba(255, 255, 255, 0.9) 0 100%) right bottom / 0.16rem 100% no-repeat;
}

.wifi-icon {
  width: 0.8rem;
  height: 0.6rem;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(45deg);
  border-radius: 0 0 0.45rem 0;
}

.battery-icon {
  position: relative;
  width: 1.2rem;
  height: 0.64rem;
  border: 1.8px solid rgba(255, 255, 255, 0.88);
  border-radius: 0.2rem;
}

.battery-icon::after {
  content: "";
  position: absolute;
  top: 0.16rem;
  right: -0.18rem;
  width: 0.12rem;
  height: 0.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
}

.wallet-branding {
  margin-top: 1.45rem;
  justify-content: center;
  gap: 0.85rem;
}

.wallet-brand-mark {
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(255, 175, 97, 0.22) 0%, rgba(255, 139, 60, 0.06) 100%);
  border: 1px solid rgba(255, 173, 97, 0.7);
  color: var(--gold-soft);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  box-shadow:
    0 0 22px rgba(255, 158, 74, 0.42),
    inset 0 0 20px rgba(255, 166, 74, 0.14);
}

.wallet-brand-copy {
  display: grid;
}

.wallet-brand-name {
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
  letter-spacing: 0.22em;
  color: rgba(255, 244, 229, 0.96);
}

.wallet-balance-card {
  position: relative;
  margin-top: 0.95rem;
  padding: 0.88rem 0.95rem 0.85rem;
  border-radius: 1.25rem;
  background:
    linear-gradient(145deg, rgba(112, 114, 121, 0.98) 0%, rgba(71, 73, 80, 0.98) 45%, rgba(46, 47, 53, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -8px 14px rgba(0, 0, 0, 0.12);
}

.wallet-balance-card::before {
  content: "";
  position: absolute;
  inset: 0.08rem;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.wallet-balance-label,
.wallet-btc-amount,
.wallet-section-heading span,
.wallet-transaction-copy span,
.wallet-legend-label {
  color: rgba(243, 237, 230, 0.68);
}

.wallet-balance-label {
  display: block;
  text-align: center;
  font-size: 0.77rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.wallet-balance-row {
  margin-top: 0.28rem;
  align-items: flex-end;
}

.wallet-balance-row strong {
  font-family: "Sora", sans-serif;
  font-size: 2.85rem;
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: #fff9f1;
}

.wallet-change-pill {
  flex-shrink: 0;
  padding: 0.28rem 0.64rem;
  border-radius: 999px;
  background: rgba(255, 167, 92, 0.18);
  border: 1px solid rgba(255, 177, 109, 0.34);
  color: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 700;
}

.wallet-btc-amount {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.92rem;
}

.wallet-distribution {
  margin-top: 1rem;
  align-items: flex-start;
}

.wallet-donut {
  position: relative;
  flex: 0 0 7.7rem;
  width: 7.7rem;
  height: 7.7rem;
  border-radius: 50%;
  background: conic-gradient(#fb9548 0 48%, #f3a75d 48% 79%, #a5afb9 79% 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 18px 28px rgba(0, 0, 0, 0.22);
}

.wallet-donut::before {
  content: "";
  position: absolute;
  inset: 1.46rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #1e2128 0%, #11141a 100%);
}

.wallet-legend {
  display: grid;
  gap: 0.55rem;
  flex: 1;
  padding-top: 0.28rem;
}

.wallet-legend-item {
  display: flex;
  gap: 0.55rem;
  align-items: center;
}

.legend-dot {
  flex: 0 0 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
}

.legend-available {
  background: #ff9d53;
  box-shadow: 0 0 12px rgba(255, 157, 83, 0.5);
}

.legend-escrow {
  background: #f1bd7a;
}

.legend-transit {
  background: #aeb8c5;
}

.wallet-legend-label {
  flex: 1;
  font-size: 0.82rem;
  white-space: nowrap;
}

.wallet-legend-values {
  display: grid;
  justify-items: end;
  gap: 0.08rem;
}

.wallet-legend-values strong,
.wallet-section-heading strong,
.wallet-transaction-copy strong,
.wallet-transaction-value {
  display: block;
  color: rgba(255, 248, 238, 0.96);
}

.wallet-legend-values strong {
  font-size: 0.9rem;
}

.wallet-legend-values span {
  color: rgba(243, 237, 230, 0.56);
  font-size: 0.73rem;
}

.wallet-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.95rem;
}

.wallet-action {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  padding: 0.7rem 0.25rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.92rem;
  background:
    linear-gradient(180deg, rgba(124, 127, 135, 0.98) 0%, rgba(71, 74, 82, 0.98) 100%);
  color: rgba(255, 245, 235, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.68rem;
  font-weight: 700;
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.wallet-action::before {
  content: "";
  position: absolute;
  inset: 0.08rem;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.wallet-action::after {
  content: "";
  position: absolute;
  left: 0.3rem;
  right: 0.3rem;
  top: 0.28rem;
  height: 34%;
  border-radius: 0.62rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.wallet-action:nth-child(1) {
  transform: translateY(0.08rem);
}

.wallet-action:nth-child(2) {
  transform: translateY(-0.04rem);
}

.wallet-action:nth-child(3) {
  transform: translateY(-0.08rem);
}

.wallet-action:nth-child(4) {
  transform: translateY(-0.16rem);
}

.wallet-action svg,
.wallet-transaction-badge svg {
  width: 1.18rem;
  height: 1.18rem;
  fill: none;
  stroke: #ffae67;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wallet-transactions {
  margin-top: 0.95rem;
  padding: 0.72rem 0.78rem 0.44rem;
  border-radius: 1.1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.018) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -8px 14px rgba(0, 0, 0, 0.08);
}

.wallet-section-heading {
  margin-bottom: 0.22rem;
}

.wallet-section-heading span {
  font-size: 0.74rem;
  color: rgba(243, 237, 230, 0.52);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.wallet-section-heading strong {
  font-size: 0.8rem;
  color: rgba(243, 237, 230, 0.7);
}

.wallet-transaction {
  padding: 0.58rem 0;
  gap: 0.8rem;
}

.wallet-transaction + .wallet-transaction {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.wallet-transaction-badge {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
}

.wallet-transaction-badge.outgoing {
  background: rgba(255, 174, 103, 0.18);
}

.wallet-transaction-badge.incoming {
  background: rgba(255, 205, 148, 0.14);
}

.wallet-transaction-badge.neutral {
  background: rgba(178, 189, 203, 0.12);
}

.wallet-transaction-copy {
  flex: 1;
  min-width: 0;
}

.wallet-transaction-copy strong {
  font-size: 0.88rem;
}

.wallet-transaction-copy span {
  display: block;
  font-size: 0.76rem;
}

.wallet-transaction-values {
  display: grid;
  justify-items: end;
  gap: 0.12rem;
  min-width: 5.5rem;
}

.wallet-transaction-values span {
  color: rgba(243, 237, 230, 0.56);
  font-size: 0.74rem;
}

.wallet-transaction-value {
  font-size: 0.84rem;
}

.wallet-nav {
  margin-top: 0.4rem;
  padding: 0.65rem 0.1rem 0;
  justify-content: space-around;
  gap: 0.35rem;
}

.wallet-nav-item {
  display: grid;
  justify-items: center;
  gap: 0.3rem;
  min-width: 0;
  color: rgba(255, 255, 255, 0.42);
}

.wallet-nav-item svg {
  width: 1.18rem;
  height: 1.18rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wallet-nav-item span {
  color: inherit;
  font-size: 0.66rem;
}

.wallet-nav-item.active {
  color: var(--gold-soft);
}

.home-indicator {
  width: 7.6rem;
  height: 0.34rem;
  margin: 0.52rem auto 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  opacity: 0.9;
}

@media (max-width: 980px) {
  .hero,
  .docs-layout,
  .marketplace-grid,
  .signature-panel,
  .vault-selector,
  .wallet-grid,
  .signal-grid,
  .card-grid,
  .risk-grid,
  .kpi-strip,
  .hero-inline-stats,
  .wallet-state-grid {
    grid-template-columns: 1fr;
  }

  .topbar,
  .footer,
  .panel-header,
  .ops-row,
  .selected-vault-banner,
  .network-banner {
    flex-direction: column;
  }

  .docs-sidebar {
    position: static;
  }

  .signature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-shell,
  .dashboard-summary-row {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .sidebar-nav {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .monitor-stage {
    min-height: 38rem;
  }

  .monitor-shell {
    width: min(100%, 34rem);
  }
}

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

  .hero-copy,
  .hero-panel,
  .docs-section-card,
  .strategy-card,
  .risk-card,
  .ops-table {
    padding: 1.4rem;
  }

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

  .market-tape,
  .offer-tags,
  .market-metrics,
  .market-actions,
  .selected-vault-metrics,
  .wallet-option-footer,
  .intent-actions {
    flex-direction: column;
  }

  .market-card:nth-child(2),
  .market-card:nth-child(3) {
    clip-path: none;
  }

  .signature-grid {
    grid-template-columns: 1fr;
  }

  .wide-cell {
    grid-column: auto;
  }

  .vault-blueprint {
    height: 14rem;
  }

  .monitor-stage {
    min-height: auto;
    padding: 0.4rem 0 1rem;
  }

  .desk-watch,
  .desk-pen,
  .desk-edge {
    display: none;
  }

  .browser-bar,
  .dashboard-table-header,
  .dashboard-table-row,
  .dashboard-action-row,
  .sidebar-nav {
    grid-template-columns: 1fr;
  }

  .monitor-shell {
    width: 100%;
  }

  .browser-bar {
    gap: 0.45rem;
  }

  .browser-actions {
    display: none;
  }

  .dashboard-donut-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .desktop-donut {
    flex-basis: auto;
  }

  .dashboard-action-row {
    display: grid;
  }

  .dashboard-table-header {
    display: none;
  }

  .dashboard-table-row {
    gap: 0.3rem;
    justify-items: start;
  }

  .dashboard-status-dot {
    justify-self: start;
  }

  .dashboard-balance-card strong {
    font-size: 2.6rem;
  }
}

body[data-page="home"] {
  --max-width: 1320px;
  background:
    radial-gradient(circle at top left, rgba(247, 146, 72, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(74, 133, 214, 0.16), transparent 22%),
    linear-gradient(180deg, #050507 0%, #09090d 45%, #06070a 100%);
}

body[data-page="home"]::before {
  background-size: 88px 88px;
  opacity: 0.7;
}

body[data-page="home"] .topbar {
  margin-top: 1.35rem;
  padding: 1rem 1.3rem;
  border-color: rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(5, 7, 12, 0.94) 0%, rgba(7, 8, 12, 0.84) 100%);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body[data-page="home"] .brand-mark {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #f5b47d 0%, #f0a06b 100%);
}

body[data-page="home"] .brand-copy strong {
  font-size: 1rem;
}

body[data-page="home"] .brand-copy span,
body[data-page="home"] .nav {
  color: rgba(236, 225, 212, 0.72);
}

body[data-page="home"] .nav {
  gap: 1.9rem;
}

body[data-page="home"] .nav a {
  color: rgba(255, 255, 255, 0.74);
}

body[data-page="home"] .button-secondary,
body[data-page="home"] .button-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
}

body[data-page="home"] .section {
  padding: 3.7rem 0;
}

body[data-page="home"] .hero {
  grid-template-columns: 1fr;
  gap: 0;
  min-height: 0;
  padding-top: 2.1rem;
}

body[data-page="home"] .hero-monitor-stage {
  min-height: 0;
  padding: 0.8rem 0.75rem 7rem;
}

body[data-page="home"] .hero-monitor-stage::before {
  inset: 6% 4% 5%;
  border-radius: 3.2rem;
  background:
    linear-gradient(180deg, rgba(92, 95, 102, 0.28) 0%, rgba(22, 24, 29, 0.12) 36%, rgba(10, 11, 15, 0.32) 100%);
}

body[data-page="home"] .hero-monitor-stage::after {
  width: 78%;
  bottom: 1.65rem;
}

body[data-page="home"] .desk-edge {
  top: -0.35rem;
  left: -1rem;
  width: 58%;
  height: 1.45rem;
}

body[data-page="home"] .desk-watch {
  top: 0.6rem;
  right: 1rem;
}

body[data-page="home"] .desk-pen {
  left: 1rem;
  bottom: 2rem;
}

body[data-page="home"] .hero-monitor-shell {
  width: min(100%, 72rem);
}

body[data-page="home"] .hero-monitor-shell .monitor-bezel {
  position: relative;
  overflow: visible;
  padding: 0.9rem;
  border-radius: 2rem;
}

body[data-page="home"] .landing-dashboard-shell {
  grid-template-columns: 10.8rem minmax(0, 1fr);
  min-height: 40rem;
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at top right, rgba(255, 179, 107, 0.08), transparent 24%),
    linear-gradient(180deg, #14181e 0%, #0b0f14 100%);
}

body[data-page="home"] .landing-sidebar {
  gap: 1.5rem;
  padding: 1.15rem 0.95rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.012) 100%);
}

body[data-page="home"] .landing-sidebar .sidebar-brand {
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body[data-page="home"] .landing-sidebar .sidebar-item {
  gap: 0.55rem;
  min-height: 2.9rem;
  padding-inline: 0.8rem;
  border: 1px solid transparent;
}

body[data-page="home"] .landing-sidebar .sidebar-item::before {
  content: "";
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 0.28rem;
  border: 1px solid currentColor;
  opacity: 0.8;
}

body[data-page="home"] .landing-dashboard-main {
  gap: 0.75rem;
  padding: 0.95rem 1rem 1rem;
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 179, 107, 0.06), transparent 20%),
    linear-gradient(180deg, rgba(10, 12, 17, 0.72) 0%, rgba(10, 13, 18, 0.92) 100%);
}

body[data-page="home"] .desktop-dashboard-toolbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
  padding: 0 0.2rem 0.15rem;
}

body[data-page="home"] .desktop-toolbar-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(242, 226, 200, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body[data-page="home"] .desktop-toolbar-mark {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(255, 179, 107, 0.92);
  box-shadow: 0 0 0 0.22rem rgba(255, 179, 107, 0.12);
}

body[data-page="home"] .desktop-toolbar-profile {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

body[data-page="home"] .desktop-toolbar-badge,
body[data-page="home"] .desktop-toolbar-avatar {
  display: inline-block;
  border-radius: 50%;
}

body[data-page="home"] .desktop-toolbar-badge {
  width: 0.55rem;
  height: 0.55rem;
  background: rgba(255, 179, 107, 0.92);
  box-shadow: 0 0 0 0.18rem rgba(255, 179, 107, 0.12);
}

body[data-page="home"] .desktop-toolbar-avatar {
  width: 1.5rem;
  height: 1.5rem;
  background:
    radial-gradient(circle at 55% 35%, rgba(255, 255, 255, 0.82) 0 18%, rgba(192, 197, 205, 0.65) 19% 42%, rgba(59, 63, 72, 0.95) 43% 100%);
}

body[data-page="home"] .desktop-browser-bar {
  grid-template-columns: auto auto 1fr auto;
  gap: 0.65rem;
}

body[data-page="home"] .desktop-browser-tabs {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

body[data-page="home"] .desktop-browser-tab {
  min-height: 1.6rem;
  padding: 0.2rem 0.62rem;
  border-radius: 0.62rem;
  color: rgba(255, 243, 226, 0.62);
}

body[data-page="home"] .desktop-browser-tab.active {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 244, 229, 0.9);
}

body[data-page="home"] .desktop-browser-add {
  display: grid;
  place-items: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

body[data-page="home"] .desktop-dashboard-grid {
  display: grid;
  gap: 0.8rem;
}

body[data-page="home"] .desktop-summary-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  gap: 0.75rem;
}

body[data-page="home"] .landing-story-card,
body[data-page="home"] .landing-balance-module,
body[data-page="home"] .landing-transaction-card,
body[data-page="home"] .landing-health-grid article {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.012) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 22px 55px rgba(0, 0, 0, 0.24);
}

body[data-page="home"] .landing-story-card {
  position: relative;
  grid-row: span 2;
  min-height: 34rem;
  padding: 1.45rem 1.55rem 1.55rem;
  overflow: hidden;
}

body[data-page="home"] .landing-story-card::after {
  content: "K";
  position: absolute;
  right: 0.6rem;
  top: -1.6rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(11rem, 20vw, 18rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.035);
  pointer-events: none;
}

body[data-page="home"] .landing-story-card h1 {
  margin: 0.8rem 0 1rem;
  max-width: 7.2ch;
  font-size: clamp(3.4rem, 5.9vw, 5.95rem);
}

body[data-page="home"] .landing-story-card .lede,
body[data-page="home"] .landing-story-card .proof-line {
  max-width: 43rem;
}

body[data-page="home"] .landing-inline-stats {
  margin-top: 1.25rem;
}

body[data-page="home"] .landing-inline-stats article {
  background: rgba(255, 255, 255, 0.03);
}

body[data-page="home"] .landing-balance-module {
  display: grid;
  gap: 0.85rem;
  padding: 1.15rem;
}

body[data-page="home"] .landing-balance-module .panel-header {
  align-items: start;
  padding-bottom: 0.2rem;
}

body[data-page="home"] .landing-balance-module .panel-header h2 {
  margin: 0.2rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: 1.55rem;
}

body[data-page="home"] .landing-offer-card {
  margin: 0;
}

body[data-page="home"] .landing-summary-row {
  grid-template-columns: minmax(0, 1fr) minmax(15.5rem, 0.88fr);
}

body[data-page="home"] .landing-actions {
  margin-top: 0;
}

body[data-page="home"] .landing-actions .button {
  min-height: 3.1rem;
}

body[data-page="home"] .landing-transaction-card {
  min-height: 100%;
}

body[data-page="home"] .landing-health-grid {
  grid-column: 1 / -1;
}

body[data-page="home"] .landing-health-grid article {
  min-height: 100%;
}

body[data-page="home"] .dashboard-table-card,
body[data-page="home"] .dashboard-balance-card,
body[data-page="home"] .dashboard-donut-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.038) 0%, rgba(255, 255, 255, 0.013) 100%);
}

body[data-page="home"] .landing-dashboard-shell {
  grid-template-columns: 9.8rem minmax(0, 1fr);
  min-height: 34rem;
}

body[data-page="home"] .landing-sidebar {
  gap: 1.2rem;
  padding: 1rem 0.8rem;
}

body[data-page="home"] .landing-sidebar .sidebar-brand {
  align-items: flex-start;
}

body[data-page="home"] .landing-sidebar .sidebar-brand span {
  line-height: 1.3;
}

body[data-page="home"] .landing-sidebar .sidebar-item {
  min-height: 3rem;
  font-size: 0.9rem;
}

body[data-page="home"] .desktop-balance-card,
body[data-page="home"] .desktop-distribution-card,
body[data-page="home"] .desktop-transaction-card,
body[data-page="home"] .desktop-vault-note,
body[data-page="home"] .desktop-health-grid article {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.05rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.012) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 35px rgba(0, 0, 0, 0.22);
}

body[data-page="home"] .desktop-balance-card {
  padding: 1rem 1.05rem 0.9rem;
}

body[data-page="home"] .desktop-balance-card strong {
  margin-top: 0.28rem;
  font-size: 3.5rem;
  line-height: 0.94;
}

body[data-page="home"] .desktop-distribution-card {
  padding: 0.95rem 1rem;
}

body[data-page="home"] .desktop-distribution-card .desktop-legend {
  gap: 0.4rem;
}

body[data-page="home"] .desktop-distribution-card .wallet-legend-item {
  align-items: center;
}

body[data-page="home"] .desktop-action-row {
  gap: 0.72rem;
}

body[data-page="home"] .desktop-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 0.95rem;
  color: rgba(255, 247, 238, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
}

body[data-page="home"] .dashboard-action-glyph {
  position: relative;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  color: var(--gold-soft);
}

body[data-page="home"] .dashboard-action-glyph::before,
body[data-page="home"] .dashboard-action-glyph::after {
  content: "";
  position: absolute;
}

body[data-page="home"] .glyph-send::before {
  inset: 0.15rem 0.12rem 0.15rem 0.2rem;
  border: 1.8px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: skew(-14deg) rotate(45deg);
}

body[data-page="home"] .glyph-receive::before {
  left: 0.43rem;
  top: 0.05rem;
  width: 0.16rem;
  height: 0.7rem;
  border-radius: 999px;
  background: currentColor;
}

body[data-page="home"] .glyph-receive::after {
  left: 0.2rem;
  bottom: 0.05rem;
  width: 0.58rem;
  height: 0.58rem;
  border-right: 0.16rem solid currentColor;
  border-bottom: 0.16rem solid currentColor;
  transform: rotate(45deg);
}

body[data-page="home"] .glyph-trade::before,
body[data-page="home"] .glyph-trade::after {
  width: 0.62rem;
  height: 0.62rem;
  border-top: 0.14rem solid currentColor;
  border-right: 0.14rem solid currentColor;
  border-radius: 0.2rem;
}

body[data-page="home"] .glyph-trade::before {
  top: 0.04rem;
  left: 0.02rem;
  transform: rotate(45deg);
}

body[data-page="home"] .glyph-trade::after {
  right: 0.02rem;
  bottom: 0.04rem;
  transform: rotate(-135deg);
}

body[data-page="home"] .glyph-scan::before {
  inset: 0;
  border-radius: 0.2rem;
  border: 0.12rem solid transparent;
  border-top-color: currentColor;
  border-left-color: currentColor;
}

body[data-page="home"] .glyph-scan::after {
  inset: 0;
  border-radius: 0.2rem;
  border: 0.12rem solid transparent;
  border-right-color: currentColor;
  border-bottom-color: currentColor;
}

body[data-page="home"] .desktop-transaction-card {
  padding: 0.8rem 0.95rem 0.85rem;
}

body[data-page="home"] .desktop-transaction-card .dashboard-table-header,
body[data-page="home"] .desktop-transaction-card .dashboard-table-row {
  grid-template-columns: 0.8fr 1.35fr 1fr 0.95fr 0.34fr;
}

body[data-page="home"] .desktop-transaction-card .dashboard-table-row.selected {
  border-radius: 0.7rem;
  background:
    linear-gradient(90deg, rgba(241, 179, 107, 0.16) 0%, rgba(241, 179, 107, 0.08) 100%);
  border-top-color: rgba(241, 179, 107, 0.2);
}

body[data-page="home"] .desktop-footer-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 0.75rem;
}

body[data-page="home"] .compact-panel-header {
  align-items: flex-start;
  gap: 0.5rem;
}

body[data-page="home"] .compact-panel-header h2 {
  margin: 0.18rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
}

body[data-page="home"] .desktop-vault-note {
  padding: 0.95rem 1rem;
}

body[data-page="home"] .desktop-note-body {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

body[data-page="home"] .desktop-note-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

body[data-page="home"] .desktop-note-body .offer-headline strong {
  font-size: 2.35rem;
}

body[data-page="home"] .desktop-health-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
}

body[data-page="home"] .desktop-health-grid article {
  min-height: 100%;
}

body[data-page="home"] .desktop-market-flyout,
body[data-page="home"] .desktop-detail-card {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(37, 40, 48, 0.96) 0%, rgba(18, 20, 27, 0.96) 100%);
  box-shadow:
    0 26px 50px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}

body[data-page="home"] .desktop-market-flyout {
  left: -5.8rem;
  top: 8.2rem;
  width: 10.5rem;
  padding: 0.55rem;
}

body[data-page="home"] .desktop-market-flyout article {
  display: grid;
  gap: 0.18rem;
  padding: 0.45rem 0.55rem;
  border-radius: 0.7rem;
}

body[data-page="home"] .desktop-market-flyout span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
}

body[data-page="home"] .desktop-market-flyout strong {
  font-size: 1rem;
}

body[data-page="home"] .market-sparkline {
  display: block;
  height: 1.2rem;
  margin-top: 0.12rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

body[data-page="home"] .sparkline-one {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 18'%3E%3Cpath d='M2 14 L16 10 L28 12 L40 5 L52 9 L70 3' fill='none' stroke='%23f1b36b' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

body[data-page="home"] .sparkline-two {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 18'%3E%3Cpath d='M2 12 L16 8 L28 11 L40 7 L52 13 L70 6' fill='none' stroke='%23d9dce1' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

body[data-page="home"] .sparkline-three {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 18'%3E%3Cpath d='M2 13 L16 14 L28 10 L40 12 L52 4 L70 7' fill='none' stroke='%2377dfd1' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

body[data-page="home"] .desktop-detail-card {
  right: -3.8rem;
  bottom: 3.3rem;
  width: 17.5rem;
  padding: 0.95rem 1rem;
}

body[data-page="home"] .desktop-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

body[data-page="home"] .desktop-detail-header strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

body[data-page="home"] .desktop-detail-close {
  width: 0.95rem;
  height: 0.95rem;
  position: relative;
  opacity: 0.72;
}

body[data-page="home"] .desktop-detail-close::before,
body[data-page="home"] .desktop-detail-close::after {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 0.05rem;
  width: 0.1rem;
  height: 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

body[data-page="home"] .desktop-detail-close::before {
  transform: rotate(45deg);
}

body[data-page="home"] .desktop-detail-close::after {
  transform: rotate(-45deg);
}

body[data-page="home"] .desktop-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 0.55rem 0.85rem;
  margin-top: 0.95rem;
}

body[data-page="home"] .desktop-detail-grid span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.74rem;
}

body[data-page="home"] .desktop-detail-grid strong {
  font-size: 0.78rem;
  font-weight: 600;
  text-align: right;
}

body[data-page="home"] .section-heading {
  margin-bottom: 1rem;
  padding: 1.35rem 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.012) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 24px 50px rgba(0, 0, 0, 0.22);
}

body[data-page="home"] .section-heading p {
  max-width: 48rem;
  margin: 0.8rem 0 0;
}

body[data-page="home"] .market-card,
body[data-page="home"] .strategy-card,
body[data-page="home"] .risk-card,
body[data-page="home"] .signature-panel {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.012) 100%),
    rgba(9, 11, 15, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 24px 55px rgba(0, 0, 0, 0.22);
}

body[data-page="home"] .featured-market-card {
  background:
    radial-gradient(circle at top right, rgba(255, 179, 107, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.032) 0%, rgba(255, 255, 255, 0.012) 100%),
    rgba(9, 11, 15, 0.98);
}

body[data-page="home"] .market-card:hover,
body[data-page="home"] .market-card:focus-within {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 28px 65px rgba(0, 0, 0, 0.28);
}

body[data-page="home"] .signature-panel {
  padding: 1.5rem;
  border-radius: 1.45rem;
}

body[data-page="home"] .signature-cell {
  background: rgba(255, 255, 255, 0.025);
}

body[data-page="home"] .footer {
  margin-top: 1rem;
  padding: 1.4rem 0 2.5rem;
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 1180px) {
  body[data-page="home"] .topbar {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  body[data-page="home"] .nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  body[data-page="home"] .hero-monitor-shell {
    width: 100%;
  }

  body[data-page="home"] .landing-dashboard-shell,
  body[data-page="home"] .landing-summary-row,
  body[data-page="home"] .desktop-summary-row,
  body[data-page="home"] .desktop-footer-row {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .desktop-health-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .desktop-market-flyout,
  body[data-page="home"] .desktop-detail-card {
    display: none;
  }

  body[data-page="home"] .landing-story-card {
    grid-row: auto;
    min-height: auto;
  }

  body[data-page="home"] .landing-health-grid {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  body[data-page="home"] .topbar {
    padding: 1rem 1.05rem;
  }

  body[data-page="home"] .hero-monitor-stage {
    padding: 0 0 2rem;
  }

  body[data-page="home"] .hero-monitor-stage::before,
  body[data-page="home"] .hero-monitor-stage::after {
    display: none;
  }

  body[data-page="home"] .hero-monitor-shell .monitor-bezel {
    padding: 0.72rem;
    border-radius: 1.4rem;
  }

  body[data-page="home"] .landing-dashboard-main {
    padding: 0.8rem;
  }

  body[data-page="home"] .desktop-balance-card,
  body[data-page="home"] .desktop-distribution-card,
  body[data-page="home"] .desktop-transaction-card,
  body[data-page="home"] .desktop-vault-note,
  body[data-page="home"] .section-heading,
  body[data-page="home"] .market-card,
  body[data-page="home"] .strategy-card,
  body[data-page="home"] .risk-card,
  body[data-page="home"] .signature-panel {
    border-radius: 1.15rem;
  }

  body[data-page="home"] .desktop-dashboard-toolbar {
    grid-template-columns: 1fr auto;
  }

  body[data-page="home"] .desktop-toolbar-status {
    grid-column: 1 / -1;
  }

  body[data-page="home"] .desktop-action-row,
  body[data-page="home"] .desktop-health-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .desktop-balance-card strong {
    font-size: 2.9rem;
  }

  body[data-page="home"] .desktop-action-button {
    justify-content: flex-start;
  }

  body[data-page="home"] .desktop-browser-bar {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .desktop-browser-tabs,
  body[data-page="home"] .browser-actions {
    display: none;
  }
}

body[data-page="docs"] .docs-main {
  padding-top: 1.6rem;
}

body[data-page="docs"] .docs-dashboard-stage {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}

body[data-page="docs"] .docs-monitor-stage {
  width: 100%;
  padding: 0 1.2rem 2rem;
}

body[data-page="docs"] .docs-monitor-stage::before {
  width: 86%;
  height: 2.8rem;
  bottom: 1.3rem;
}

body[data-page="docs"] .docs-monitor-stage::after {
  inset: 1rem 1.8rem auto 1.8rem;
  height: 100%;
  background:
    radial-gradient(circle at top, rgba(241, 179, 107, 0.11), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}

body[data-page="docs"] .docs-monitor-shell {
  width: min(100%, 73rem);
}

body[data-page="docs"] .docs-monitor-shell .monitor-bezel {
  position: relative;
  overflow: visible;
  padding: 0.9rem;
  border-radius: 2rem;
}

body[data-page="docs"] .custody-dashboard-shell {
  grid-template-columns: 10rem minmax(0, 1fr);
  min-height: 34rem;
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at top right, rgba(255, 179, 107, 0.08), transparent 24%),
    linear-gradient(180deg, #14181e 0%, #0b0f14 100%);
}

body[data-page="docs"] .custody-sidebar {
  gap: 1.2rem;
  padding: 1rem 0.8rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.012) 100%);
}

body[data-page="docs"] .custody-sidebar .sidebar-brand {
  align-items: flex-start;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body[data-page="docs"] .custody-sidebar .sidebar-brand span {
  line-height: 1.3;
}

body[data-page="docs"] .custody-sidebar .sidebar-item {
  gap: 0.55rem;
  min-height: 3rem;
  padding-inline: 0.8rem;
  border: 1px solid transparent;
  font-size: 0.9rem;
}

body[data-page="docs"] .custody-sidebar .sidebar-item::before {
  content: "";
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 0.28rem;
  border: 1px solid currentColor;
  opacity: 0.8;
}

body[data-page="docs"] .custody-dashboard-main {
  gap: 0.75rem;
  padding: 0.95rem 1rem 1rem;
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 179, 107, 0.06), transparent 20%),
    linear-gradient(180deg, rgba(10, 12, 17, 0.72) 0%, rgba(10, 13, 18, 0.92) 100%);
}

body[data-page="docs"] .desktop-dashboard-toolbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
  padding: 0 0.2rem 0.15rem;
}

body[data-page="docs"] .desktop-toolbar-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(242, 226, 200, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body[data-page="docs"] .desktop-toolbar-mark {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(255, 179, 107, 0.92);
  box-shadow: 0 0 0 0.22rem rgba(255, 179, 107, 0.12);
}

body[data-page="docs"] .desktop-toolbar-profile {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

body[data-page="docs"] .desktop-toolbar-badge,
body[data-page="docs"] .desktop-toolbar-avatar {
  display: inline-block;
  border-radius: 50%;
}

body[data-page="docs"] .desktop-toolbar-badge {
  width: 0.55rem;
  height: 0.55rem;
  background: rgba(255, 179, 107, 0.92);
  box-shadow: 0 0 0 0.18rem rgba(255, 179, 107, 0.12);
}

body[data-page="docs"] .desktop-toolbar-avatar {
  width: 1.5rem;
  height: 1.5rem;
  background:
    radial-gradient(circle at 55% 35%, rgba(255, 255, 255, 0.82) 0 18%, rgba(192, 197, 205, 0.65) 19% 42%, rgba(59, 63, 72, 0.95) 43% 100%);
}

body[data-page="docs"] .desktop-browser-bar {
  grid-template-columns: auto auto 1fr auto;
  gap: 0.65rem;
}

body[data-page="docs"] .desktop-browser-tabs {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

body[data-page="docs"] .desktop-browser-tab {
  min-height: 1.6rem;
  padding: 0.2rem 0.62rem;
  border-radius: 0.62rem;
  color: rgba(255, 243, 226, 0.62);
}

body[data-page="docs"] .desktop-browser-tab.active {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 244, 229, 0.9);
}

body[data-page="docs"] .desktop-browser-add {
  display: grid;
  place-items: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

body[data-page="docs"] .custody-dashboard-grid,
body[data-page="docs"] .desktop-dashboard-grid {
  display: grid;
  gap: 0.8rem;
}

body[data-page="docs"] .desktop-summary-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  gap: 0.75rem;
}

body[data-page="docs"] .desktop-balance-card,
body[data-page="docs"] .desktop-distribution-card,
body[data-page="docs"] .desktop-transaction-card,
body[data-page="docs"] .desktop-vault-note,
body[data-page="docs"] .desktop-health-grid article,
body[data-page="docs"] .custody-market-flyout,
body[data-page="docs"] .custody-detail-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.05rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.012) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 35px rgba(0, 0, 0, 0.22);
}

body[data-page="docs"] .desktop-balance-card {
  padding: 1rem 1.05rem 0.9rem;
}

body[data-page="docs"] .desktop-balance-card strong {
  margin-top: 0.28rem;
  font-size: 3.5rem;
  line-height: 0.94;
}

body[data-page="docs"] .desktop-distribution-card {
  padding: 0.95rem 1rem;
}

body[data-page="docs"] .desktop-distribution-card .desktop-legend {
  gap: 0.4rem;
}

body[data-page="docs"] .desktop-distribution-card .wallet-legend-item {
  align-items: center;
}

body[data-page="docs"] .desktop-action-row {
  gap: 0.72rem;
}

body[data-page="docs"] .desktop-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 0.95rem;
  color: rgba(255, 247, 238, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
}

body[data-page="docs"] .dashboard-action-glyph {
  position: relative;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  color: var(--gold-soft);
}

body[data-page="docs"] .dashboard-action-glyph::before,
body[data-page="docs"] .dashboard-action-glyph::after {
  content: "";
  position: absolute;
}

body[data-page="docs"] .glyph-send::before {
  inset: 0.15rem 0.12rem 0.15rem 0.2rem;
  border: 1.8px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: skew(-14deg) rotate(45deg);
}

body[data-page="docs"] .glyph-receive::before {
  left: 0.43rem;
  top: 0.05rem;
  width: 0.16rem;
  height: 0.7rem;
  border-radius: 999px;
  background: currentColor;
}

body[data-page="docs"] .glyph-receive::after {
  left: 0.2rem;
  bottom: 0.05rem;
  width: 0.58rem;
  height: 0.58rem;
  border-right: 0.16rem solid currentColor;
  border-bottom: 0.16rem solid currentColor;
  transform: rotate(45deg);
}

body[data-page="docs"] .glyph-trade::before,
body[data-page="docs"] .glyph-trade::after {
  width: 0.62rem;
  height: 0.62rem;
  border-top: 0.14rem solid currentColor;
  border-right: 0.14rem solid currentColor;
  border-radius: 0.2rem;
}

body[data-page="docs"] .glyph-trade::before {
  top: 0.04rem;
  left: 0.02rem;
  transform: rotate(45deg);
}

body[data-page="docs"] .glyph-trade::after {
  right: 0.02rem;
  bottom: 0.04rem;
  transform: rotate(-135deg);
}

body[data-page="docs"] .glyph-scan::before {
  inset: 0;
  border-radius: 0.2rem;
  border: 0.12rem solid transparent;
  border-top-color: currentColor;
  border-left-color: currentColor;
}

body[data-page="docs"] .glyph-scan::after {
  inset: 0;
  border-radius: 0.2rem;
  border: 0.12rem solid transparent;
  border-right-color: currentColor;
  border-bottom-color: currentColor;
}

body[data-page="docs"] .desktop-transaction-card {
  padding: 0.8rem 0.95rem 0.85rem;
}

body[data-page="docs"] .custody-table-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

body[data-page="docs"] .custody-table-heading strong {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 600;
}

body[data-page="docs"] .desktop-transaction-card .dashboard-table-header,
body[data-page="docs"] .desktop-transaction-card .dashboard-table-row {
  grid-template-columns: 0.8fr 1.35fr 1fr 0.95fr 0.34fr;
}

body[data-page="docs"] .desktop-transaction-card .dashboard-table-row {
  cursor: pointer;
}

body[data-page="docs"] .desktop-transaction-card .dashboard-table-row.selected {
  border-radius: 0.7rem;
  background:
    linear-gradient(90deg, rgba(241, 179, 107, 0.16) 0%, rgba(241, 179, 107, 0.08) 100%);
  border-top-color: rgba(241, 179, 107, 0.2);
}

body[data-page="docs"] .dashboard-status-dot.ok {
  border-color: rgba(119, 223, 209, 0.8);
}

body[data-page="docs"] .desktop-footer-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 0.75rem;
}

body[data-page="docs"] .desktop-vault-note {
  padding: 0.95rem 1rem;
}

body[data-page="docs"] .compact-panel-header {
  align-items: flex-start;
  gap: 0.5rem;
}

body[data-page="docs"] .compact-panel-header h2 {
  margin: 0.18rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
}

body[data-page="docs"] .desktop-note-body {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

body[data-page="docs"] .desktop-note-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

body[data-page="docs"] .desktop-note-body .offer-headline strong {
  font-size: 2.35rem;
}

body[data-page="docs"] .desktop-health-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
}

body[data-page="docs"] .custody-live-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

body[data-page="docs"] .custody-market-flyout,
body[data-page="docs"] .custody-detail-card {
  position: absolute;
  z-index: 4;
  background:
    linear-gradient(180deg, rgba(37, 40, 48, 0.96) 0%, rgba(18, 20, 27, 0.96) 100%);
  box-shadow:
    0 26px 50px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}

body[data-page="docs"] .custody-market-flyout {
  left: -5.8rem;
  top: 8.2rem;
  width: 10.5rem;
  padding: 0.55rem;
}

body[data-page="docs"] .custody-market-flyout article {
  display: grid;
  gap: 0.18rem;
  padding: 0.45rem 0.55rem;
  border-radius: 0.7rem;
}

body[data-page="docs"] .custody-market-flyout span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
}

body[data-page="docs"] .custody-market-flyout strong {
  font-size: 1rem;
}

body[data-page="docs"] .custody-detail-card {
  right: -3.8rem;
  bottom: 3.3rem;
  width: 17.5rem;
  padding: 0.95rem 1rem;
}

body[data-page="docs"] .desktop-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

body[data-page="docs"] .desktop-detail-header strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

body[data-page="docs"] .desktop-detail-close {
  width: 0.95rem;
  height: 0.95rem;
  position: relative;
  opacity: 0.72;
}

body[data-page="docs"] .desktop-detail-close::before,
body[data-page="docs"] .desktop-detail-close::after {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 0.05rem;
  width: 0.1rem;
  height: 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

body[data-page="docs"] .desktop-detail-close::before {
  transform: rotate(45deg);
}

body[data-page="docs"] .desktop-detail-close::after {
  transform: rotate(-45deg);
}

body[data-page="docs"] .desktop-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 0.55rem 0.85rem;
  margin-top: 0.95rem;
}

body[data-page="docs"] .desktop-detail-grid span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.74rem;
}

body[data-page="docs"] .desktop-detail-grid strong {
  font-size: 0.78rem;
  font-weight: 600;
  text-align: right;
}

body[data-page="docs"] .docs-layout {
  grid-template-columns: 1fr;
}

body[data-page="docs"] .docs-stack-full {
  gap: 1.2rem;
}

body[data-page="docs"] .network-banner {
  align-items: flex-start;
}

@media (max-width: 1180px) {
  body[data-page="docs"] .custody-dashboard-shell,
  body[data-page="docs"] .desktop-summary-row,
  body[data-page="docs"] .desktop-footer-row {
    grid-template-columns: 1fr;
  }

  body[data-page="docs"] .desktop-health-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="docs"] .custody-market-flyout,
  body[data-page="docs"] .custody-detail-card {
    display: none;
  }
}

@media (max-width: 720px) {
  body[data-page="docs"] .docs-monitor-stage {
    padding: 0 0 2rem;
  }

  body[data-page="docs"] .docs-monitor-stage::before,
  body[data-page="docs"] .docs-monitor-stage::after {
    display: none;
  }

  body[data-page="docs"] .docs-monitor-shell .monitor-bezel {
    padding: 0.72rem;
    border-radius: 1.4rem;
  }

  body[data-page="docs"] .custody-dashboard-main {
    padding: 0.8rem;
  }

  body[data-page="docs"] .desktop-dashboard-toolbar {
    grid-template-columns: 1fr auto;
  }

  body[data-page="docs"] .desktop-toolbar-status {
    grid-column: 1 / -1;
  }

  body[data-page="docs"] .desktop-action-row,
  body[data-page="docs"] .desktop-health-grid,
  body[data-page="docs"] .wallet-grid,
  body[data-page="docs"] .vault-selector {
    grid-template-columns: 1fr;
  }

  body[data-page="docs"] .desktop-balance-card strong {
    font-size: 2.9rem;
  }

  body[data-page="docs"] .desktop-action-button {
    justify-content: flex-start;
  }

  body[data-page="docs"] .desktop-browser-bar {
    grid-template-columns: 1fr;
  }

  body[data-page="docs"] .desktop-browser-tabs,
  body[data-page="docs"] .browser-actions {
    display: none;
  }

  body[data-page="docs"] .wallet-state-grid {
    grid-template-columns: 1fr;
  }
}
