:root {
  --m-bg: #020711;
  --m-bg-deep: #01040a;
  --m-surface: #071421;
  --m-surface-2: #0a1b2a;
  --m-surface-3: #0d2234;
  --m-gold: #d8b35f;
  --m-gold-hi: #f6e5ad;
  --m-gold-low: #8f692c;
  --m-cyan: #6bd8c9;
  --m-text: #edf2f5;
  --m-muted: #8391a0;
  --m-line: rgba(216, 179, 95, 0.2);
  --m-line-cold: rgba(125, 157, 181, 0.16);
  --m-danger: #f08080;
  --m-nav-height: 74px;
  --m-safe-bottom: env(safe-area-inset-bottom, 0px);
  --m-radius: 18px;
  --m-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --m-tabular: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  color-scheme: dark;
  scroll-padding-top: 84px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 82% 14%, rgba(21, 68, 94, 0.2), transparent 25rem),
    linear-gradient(180deg, #030a14 0, var(--m-bg) 42%, var(--m-bg-deep) 100%);
  color: var(--m-text);
  font-family: "SF Pro Display", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -4;
  background-image:
    linear-gradient(rgba(124, 156, 178, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 156, 178, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 76%);
  pointer-events: none;
}

button,
input,
select {
  font: inherit;
}

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

button:focus-visible,
input:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--m-gold-hi);
  outline-offset: 3px;
}

.ambient-field {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
}

.ambient-field::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 28%, rgba(216, 179, 95, 0.08), transparent 18rem),
    radial-gradient(circle at 88% 68%, rgba(107, 216, 201, 0.045), transparent 20rem);
  content: "";
}

.ambient-field span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--m-gold-hi);
  box-shadow: 0 0 14px rgba(246, 229, 173, 0.8);
  opacity: 0.22;
}

.ambient-field span:nth-child(1) { top: 20%; left: 8%; }
.ambient-field span:nth-child(2) { top: 46%; right: 8%; }
.ambient-field span:nth-child(3) { right: 30%; bottom: 12%; }

.app-shell {
  position: relative;
  min-height: 100svh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 64px;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(216, 179, 95, 0.15);
  background: rgba(1, 6, 13, 0.88);
  backdrop-filter: blur(20px) saturate(135%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  border: 0;
  color: inherit;
  background: transparent;
}

.brand-mark {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(216, 179, 95, 0.34);
  background: linear-gradient(145deg, rgba(216, 179, 95, 0.11), rgba(5, 17, 28, 0.72));
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.brand-mark::after {
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(216, 179, 95, 0.1);
  content: "";
}

.brand-mark img {
  position: relative;
  z-index: 1;
  display: block;
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 8px rgba(246, 229, 173, 0.25));
}

.brand-wordmark {
  display: grid;
  gap: 1px;
  min-width: 0;
  text-align: left;
}

.brand-wordmark strong {
  color: var(--m-text);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.brand-wordmark small {
  color: var(--m-gold);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.24em;
  white-space: nowrap;
}

.prototype-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(107, 216, 201, 0.2);
  border-radius: 6px;
  color: #b8d7d3;
  background: rgba(7, 24, 35, 0.7);
  font-size: 12px;
  white-space: nowrap;
}

.prototype-pill::before,
.status-dot,
.mobile-product-header em i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--m-cyan);
  box-shadow: 0 0 10px rgba(107, 216, 201, 0.82);
  content: "";
}

.wallet-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid rgba(216, 179, 95, 0.24);
  border-radius: 8px;
  color: var(--m-gold-hi);
  background: rgba(7, 18, 29, 0.86);
  font-family: var(--m-tabular);
  font-size: 12px;
}

.topbar:has(.wallet-chip:not(.is-hidden)) .prototype-pill {
  display: none;
}

.wallet-chip svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.market-strip {
  position: relative;
  top: auto;
  bottom: auto;
  z-index: 20;
  height: 30px;
  overflow: hidden;
  border-bottom: 1px solid rgba(216, 179, 95, 0.1);
  background: rgba(1, 5, 10, 0.92);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 100%;
  height: 100%;
  animation: mTicker 25s linear 5;
}

.ticker-sequence {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
  color: #71808e;
  font-size: 12px;
  white-space: nowrap;
}

.ticker-sequence b {
  margin-right: 5px;
  color: var(--m-gold);
  font-weight: 600;
}

main {
  min-width: 0;
}

/* Mobile-first login: action before atmosphere. */
.login-view {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: min(calc(100% - 20px), 480px);
  min-height: calc(100svh - 94px);
  margin: 0 auto;
  padding: 14px 0 38px;
  overflow: clip;
}

.login-orbit {
  position: absolute;
  top: -30px;
  right: -55%;
  z-index: -1;
  width: 130%;
  aspect-ratio: 1;
  border: 1px solid rgba(216, 179, 95, 0.06);
  border-radius: 50%;
  opacity: 0.6;
  pointer-events: none;
}

.login-panel {
  position: relative;
  order: 1;
  width: 100%;
  min-width: 0;
  padding: 22px 18px 20px;
  overflow: hidden;
  border: 1px solid rgba(216, 179, 95, 0.3);
  border-radius: 2px 22px 2px 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(25, 72, 99, 0.36), transparent 16rem),
    linear-gradient(145deg, rgba(11, 31, 47, 0.98), rgba(3, 11, 20, 0.99) 68%);
  box-shadow: var(--m-shadow), inset 0 1px rgba(255, 255, 255, 0.04);
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 26px 100%, 0 calc(100% - 26px));
}

.login-panel::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(280px circle at var(--card-x, 82%) var(--card-y, 16%), rgba(246, 229, 173, 0.1), transparent 62%);
  content: "";
  pointer-events: none;
}

.login-panel::after {
  position: absolute;
  top: 0;
  right: 26px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--m-gold-hi), rgba(216, 179, 95, 0.08));
  content: "";
}

.panel-index {
  position: relative;
  z-index: 1;
  display: block;
  color: rgba(216, 179, 95, 0.72);
  font-family: var(--m-tabular);
  font-size: 12px;
  letter-spacing: 0.13em;
}

.login-brand-intro {
  display: none;
}

.section-heading {
  min-width: 0;
}

.section-heading--stacked {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--m-line-cold);
}

.section-heading--stacked .heading-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--m-gold);
}

.heading-icon svg,
.action-row svg,
.bottom-nav svg,
.safety-note svg,
.wallet-preview svg,
.icon-button svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.section-heading--stacked .heading-icon svg {
  width: 24px;
  height: 24px;
}

.eyebrow {
  margin: 0 0 3px;
  color: var(--m-gold);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.section-heading--stacked h1 {
  margin: 0;
  color: var(--m-text);
  font-size: 34px;
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.wallet-preview {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 30px;
  gap: 12px;
  align-items: center;
  min-height: 76px;
  padding: 12px;
  border: 1px solid rgba(124, 157, 181, 0.2);
  border-radius: 12px;
  background: rgba(2, 9, 16, 0.58);
}

.wallet-preview__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(216, 179, 95, 0.22);
  border-radius: 10px;
  color: var(--m-gold);
  background: rgba(216, 179, 95, 0.08);
}

.wallet-preview__icon svg {
  width: 25px;
  height: 25px;
}

.wallet-preview__copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.wallet-preview__copy strong {
  color: var(--m-text);
  font-size: 15px;
}

.wallet-preview__copy small {
  color: var(--m-muted);
  font-size: 12px;
}

.verified-badge {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(124, 157, 181, 0.22);
  border-radius: 50%;
  color: #688090;
}

.verified-badge svg {
  width: 16px;
  height: 16px;
}

.verified-badge.is-ready {
  border-color: rgba(107, 216, 201, 0.4);
  color: var(--m-cyan);
  box-shadow: 0 0 16px rgba(107, 216, 201, 0.12);
}

.primary-button,
.secondary-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 10px;
  font-weight: 750;
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.primary-button {
  z-index: 1;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid var(--m-gold-hi);
  color: #17130a;
  background: linear-gradient(100deg, #b98b37, #f4dda0 42%, #d1a24e 100%);
  box-shadow: 0 12px 30px rgba(185, 139, 55, 0.17);
}

.primary-button::after {
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -34%;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), transparent);
  content: "";
  transform: skewX(-18deg);
  animation: mButtonSweep 4.8s ease-in-out 4;
}

.primary-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.primary-button:active,
.secondary-button:active,
.action-row button:active {
  transform: scale(0.98);
}

.secondary-button {
  border: 1px solid rgba(124, 157, 181, 0.2);
  color: var(--m-text);
  background: rgba(8, 24, 37, 0.72);
}

.wallet-error,
.field-error {
  position: relative;
  z-index: 1;
  min-height: 0;
  margin: 8px 0 0;
  color: var(--m-danger);
  font-size: 13px;
}

.wallet-error:empty,
.field-error:empty {
  display: none;
}

.safety-note {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 9px;
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(124, 157, 181, 0.12);
  color: var(--m-muted);
  font-size: 12px;
  line-height: 1.65;
}

.safety-note svg {
  width: 19px;
  height: 19px;
  color: var(--m-gold);
}

.login-monument {
  position: relative;
  order: 2;
  display: grid;
  justify-items: center;
  min-height: 270px;
  overflow: hidden;
  border-top: 1px solid var(--m-line);
  border-bottom: 1px solid rgba(124, 157, 181, 0.1);
  background: radial-gradient(circle at center, rgba(17, 51, 72, 0.3), transparent 68%);
}

.monument-index {
  position: absolute;
  top: 12px;
  left: 5px;
  color: transparent;
  font-family: var(--m-tabular);
  font-size: 112px;
  font-weight: 800;
  line-height: 0.9;
  -webkit-text-stroke: 1px rgba(216, 179, 95, 0.08);
}

.orbit-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: 268px;
  max-width: 82vw;
  aspect-ratio: 1;
  margin-top: -5px;
  border: 1px solid rgba(216, 179, 95, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(246, 229, 173, 0.08), transparent 22%),
    radial-gradient(circle, #0b1d2b 0%, #04101b 58%, rgba(1, 5, 10, 0.2) 73%);
  box-shadow: inset 0 0 58px rgba(30, 75, 101, 0.24), 0 0 60px rgba(0, 0, 0, 0.4);
}

.orbit-stage::before,
.orbit-stage::after,
.orbit-ring,
.orbit-scan {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.orbit-stage::before {
  inset: 15%;
  border: 1px solid rgba(216, 179, 95, 0.14);
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(216, 179, 95, 0.18) 50%, transparent calc(50% + 0.5px)),
    linear-gradient(transparent calc(50% - 0.5px), rgba(216, 179, 95, 0.18) 50%, transparent calc(50% + 0.5px));
}

.orbit-stage::after {
  inset: 5%;
  border: 1px dashed rgba(124, 157, 181, 0.18);
}

.orbit-stage img {
  position: relative;
  z-index: 4;
  width: 34%;
  height: 34%;
  filter: drop-shadow(0 0 14px rgba(246, 229, 173, 0.32));
}

.orbit-ring--one {
  inset: 26%;
  border: 1px dashed rgba(216, 179, 95, 0.34);
  animation: mOrbit 12s linear 4;
}

.orbit-ring--two {
  inset: 36%;
  border: 1px solid rgba(107, 216, 201, 0.18);
  animation: mOrbit 8s linear reverse 6;
}

.orbit-ring--three {
  inset: 9%;
  border: 1px solid rgba(216, 179, 95, 0.1);
}

.orbit-scan {
  inset: 7%;
  z-index: 1;
  background: conic-gradient(from 10deg, transparent 0 76%, rgba(246, 229, 173, 0.03) 82%, rgba(246, 229, 173, 0.24) 98%, transparent 100%);
  animation: mOrbit 8s linear 6;
}

.orbit-node {
  position: absolute;
  z-index: 5;
  width: 6px;
  height: 6px;
  border: 1px solid var(--m-gold-hi);
  border-radius: 50%;
  background: #06111c;
  box-shadow: 0 0 12px rgba(246, 229, 173, 0.7);
  animation: mNode 2.6s ease-in-out 7;
}

.orbit-node--1 { top: 7%; left: 49%; }
.orbit-node--2 { top: 20%; right: 17%; animation-delay: -0.4s; }
.orbit-node--3 { top: 54%; right: 3%; animation-delay: -0.8s; }
.orbit-node--4 { right: 21%; bottom: 12%; animation-delay: -1.2s; }
.orbit-node--5 { bottom: 4%; left: 37%; animation-delay: -1.6s; }
.orbit-node--6 { top: 58%; left: 4%; animation-delay: -2s; }
.orbit-node--7 { top: 24%; left: 12%; animation-delay: -2.4s; }

.orbit-beacon {
  position: absolute;
  top: 6%;
  left: 50%;
  z-index: 6;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--m-gold-hi);
  box-shadow: 0 0 18px 5px rgba(246, 229, 173, 0.35);
}

.orbit-coordinate {
  display: none;
}

.monument-thesis {
  position: absolute;
  right: 12px;
  bottom: 13px;
  left: 12px;
  z-index: 7;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.monument-thesis p,
.monument-thesis span {
  margin: 0;
  color: var(--m-gold);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.monument-thesis strong {
  display: none;
}

.monument-thesis span {
  color: var(--m-muted);
  letter-spacing: 0.04em;
  text-align: right;
}

.login-brief {
  position: relative;
  order: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 128px;
  overflow: hidden;
  border: 1px solid rgba(216, 179, 95, 0.18);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(10, 29, 44, 0.82), rgba(2, 9, 16, 0.9));
}

.login-brief p {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 5px;
  min-width: 0;
  margin: 0;
  padding: 14px 10px;
  border-left: 1px solid rgba(124, 157, 181, 0.12);
}

.login-brief p:nth-of-type(1) {
  border-left: 0;
}

.login-brief span,
.login-brief small {
  color: var(--m-muted);
  font-size: 12px;
  line-height: 1.35;
}

.login-brief strong {
  color: var(--m-gold-hi);
  font-family: var(--m-tabular);
  font-size: clamp(18px, 5.7vw, 23px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.brief-pulse {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.brief-pulse::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30%;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgba(246, 229, 173, 0.07), transparent);
  content: "";
  transform: skewX(-16deg);
  animation: mBriefSweep 6s ease-in-out 4;
}

.brief-pulse i,
.brief-pulse span {
  display: none;
}

/* Mobile product shell */
.dashboard {
  width: min(100%, 1220px);
  margin: 0 auto;
  padding: 12px 10px calc(var(--m-nav-height) + var(--m-safe-bottom) + 24px);
}

.desktop-nav {
  display: none;
}

.page-view {
  min-width: 0;
}

.page-view.is-active {
  animation: mViewEnter 360ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.mobile-product-header,
.page-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin: 2px 2px 14px;
  padding: 8px 2px 13px;
  border-bottom: 1px solid var(--m-line);
}

.mobile-product-header div,
.page-heading > div {
  display: grid;
  gap: 3px;
}

.mobile-product-header span,
.page-heading p {
  margin: 0;
  color: var(--m-gold);
  font-size: 12px;
  letter-spacing: 0.15em;
}

.mobile-product-header strong,
.page-heading h1 {
  margin: 0;
  color: var(--m-text);
  font-size: 25px;
  font-style: normal;
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.mobile-product-header em,
.page-heading > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: #9db8b5;
  font-size: 12px;
  font-style: normal;
  white-space: nowrap;
}

.content-grid,
.content-grid--account,
.column-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  min-width: 0;
}

.panel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(124, 157, 181, 0.17);
  border-radius: var(--m-radius);
  background:
    radial-gradient(260px circle at var(--card-x, 80%) var(--card-y, 10%), rgba(216, 179, 95, 0.055), transparent 64%),
    linear-gradient(145deg, rgba(11, 30, 46, 0.94), rgba(4, 13, 23, 0.98));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18), inset 0 1px rgba(255, 255, 255, 0.025);
}

.panel::after {
  position: absolute;
  top: 0;
  right: 42%;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--m-gold), transparent);
  content: "";
  opacity: 0.7;
}

.asset-hero {
  min-height: 286px;
  padding: 22px 18px 0;
  border-color: rgba(216, 179, 95, 0.28);
  border-radius: 2px 22px 2px 22px;
  background:
    radial-gradient(circle at 82% 18%, rgba(30, 81, 105, 0.36), transparent 15rem),
    linear-gradient(145deg, #0d2940, #061522 64%, #030b13);
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
}

.asset-hero::before {
  position: absolute;
  top: -42px;
  right: -42px;
  width: 220px;
  aspect-ratio: 1;
  border: 1px solid rgba(216, 179, 95, 0.12);
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 0 0 26px rgba(216, 179, 95, 0.025), 0 0 0 54px rgba(107, 216, 201, 0.018);
  content: "";
}

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

.asset-orbit {
  position: absolute;
  top: 15px;
  right: 10px;
  width: 150px;
  aspect-ratio: 1;
  opacity: 0.42;
  animation: mOrbit 18s linear 3;
}

.asset-orbit::before,
.asset-orbit::after,
.asset-orbit span {
  position: absolute;
  border: 1px solid rgba(216, 179, 95, 0.18);
  border-radius: 50%;
  content: "";
}

.asset-orbit::before { inset: 0; }
.asset-orbit::after { inset: 23%; border-style: dashed; }
.asset-orbit span:nth-child(1) { inset: 39%; background: rgba(216, 179, 95, 0.12); }
.asset-orbit span:nth-child(2) { top: 5%; left: 48%; width: 7px; height: 7px; background: var(--m-gold-hi); box-shadow: 0 0 12px rgba(246, 229, 173, 0.7); }
.asset-orbit span:nth-child(3) { inset: 10%; border-color: rgba(107, 216, 201, 0.15); }

.asset-heading,
.section-heading--compact {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.asset-heading p {
  margin: 0;
  color: #aab6c0;
  font-size: 14px;
}

.asset-heading p span {
  color: #667786;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #8395a3;
  background: transparent;
}

.icon-button svg {
  width: 21px;
  height: 21px;
}

.asset-total {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: start;
  gap: 10px;
  margin-top: 18px;
}

.asset-total strong {
  color: var(--m-gold-hi);
  font-family: var(--m-tabular);
  font-size: clamp(48px, 15vw, 64px);
  font-weight: 360;
  letter-spacing: -0.075em;
  line-height: 1;
  text-shadow: 0 0 28px rgba(246, 229, 173, 0.12);
}

.asset-total span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-left: 2px solid var(--m-gold);
  color: #9ba8b3;
  background: rgba(2, 9, 16, 0.3);
  font-size: 12px;
}

.asset-breakdown {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 82px;
  border-top: 1px solid rgba(124, 157, 181, 0.16);
  background: rgba(2, 9, 16, 0.26);
}

.asset-breakdown button {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 7px;
  min-width: 0;
  min-height: 82px;
  padding: 8px 4px;
  border: 0;
  border-left: 1px solid rgba(124, 157, 181, 0.13);
  color: inherit;
  background: transparent;
}

.asset-breakdown button:first-child {
  border-left: 0;
}

.asset-breakdown span {
  color: #8493a0;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.asset-breakdown strong {
  max-width: 100%;
  color: #e2d1a2;
  font-family: var(--m-tabular);
  font-size: 13px;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.action-row--three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.action-row button {
  position: relative;
  display: grid;
  place-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 74px;
  padding: 10px 4px;
  overflow: hidden;
  border: 1px solid rgba(216, 179, 95, 0.18);
  border-radius: 12px;
  color: #d7dde2;
  background: linear-gradient(145deg, rgba(13, 34, 51, 0.92), rgba(5, 14, 24, 0.96));
  font-size: 14px;
  font-weight: 650;
}

.action-row button::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, var(--m-gold), transparent);
  content: "";
}

.action-row button svg {
  width: 23px;
  height: 23px;
  color: var(--m-gold);
}

.column-stack > .panel:not(.asset-hero) {
  padding: 18px 16px;
}

.section-heading--compact {
  min-height: 34px;
  margin-bottom: 15px;
}

.section-heading--compact .heading-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--m-gold);
}

.section-heading--compact .heading-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.section-heading--compact h2 {
  flex: 1;
  margin: 0;
  color: var(--m-text);
  font-size: 17px;
  font-weight: 650;
}

.section-meta,
.section-link {
  color: var(--m-gold);
  font-size: 12px;
}

.section-link {
  min-height: 36px;
  padding: 0 4px;
  border: 0;
  background: transparent;
}

.metric-grid,
.gift-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 -16px -18px;
}

.metric-grid div,
.gift-grid div {
  min-width: 0;
  padding: 15px 16px;
  border-top: 1px solid rgba(124, 157, 181, 0.12);
  border-left: 1px solid rgba(124, 157, 181, 0.12);
}

.metric-grid div:nth-child(odd),
.gift-grid div:nth-child(odd) {
  border-left: 0;
}

.metric-grid dt,
.gift-grid dt {
  margin: 0 0 8px;
  color: var(--m-muted);
  font-size: 12px;
}

.metric-grid dd,
.gift-grid dd {
  margin: 0;
  color: #dfcf9f;
  font-family: var(--m-tabular);
  font-size: 15px;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.metric-grid small,
.gift-grid small {
  color: #778693;
  font-size: 12px;
}

.gift-card {
  background:
    radial-gradient(circle at 90% 0, rgba(216, 179, 95, 0.1), transparent 15rem),
    linear-gradient(145deg, rgba(12, 31, 46, 0.96), rgba(4, 13, 22, 0.99));
}

.gift-label,
.invite-label {
  margin: 4px 0 6px;
  color: var(--m-muted);
  font-size: 12px;
}

.gift-amount {
  margin: 0 0 15px;
  color: #aab4bd;
  font-family: var(--m-tabular);
  font-size: 16px;
}

.gift-amount strong {
  color: var(--m-gold-hi);
  font-size: 30px;
  font-weight: 450;
}

.progress-track {
  position: relative;
  height: 5px;
  margin: 8px 0 15px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(124, 157, 181, 0.14);
}

.progress-track span {
  position: relative;
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--m-gold-low), var(--m-gold-hi));
  transition: width 500ms ease;
}

.progress-track span::after {
  position: absolute;
  top: -2px;
  right: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--m-gold-hi);
  box-shadow: 0 0 12px rgba(246, 229, 173, 0.62);
  content: "";
}

.card-footnote,
.field-help,
.rule-strip > p {
  color: var(--m-muted);
  font-size: 12px;
  line-height: 1.65;
}

.card-footnote {
  margin: 14px 0 0;
}

.data-empty {
  display: grid;
  justify-items: center;
  gap: 9px;
  min-height: 130px;
  padding: 28px 18px;
  color: var(--m-muted);
  text-align: center;
}

.data-empty svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: rgba(216, 179, 95, 0.5);
  stroke-width: 1.4;
}

.position-item,
.record-item,
.member-item {
  border-color: rgba(124, 157, 181, 0.13);
  background: rgba(3, 11, 19, 0.42);
}

/* Forms and investment */
form {
  min-width: 0;
}

form label,
.record-filters label {
  display: block;
  margin: 15px 0 7px;
  color: #b4bec6;
  font-size: 13px;
}

input,
select,
.invite-url {
  width: 100%;
  min-height: 50px;
  padding: 0 13px;
  border: 1px solid rgba(124, 157, 181, 0.2);
  border-radius: 10px;
  color: var(--m-text);
  background: rgba(2, 9, 16, 0.68);
  font-size: 16px;
}

input::placeholder {
  color: #536473;
}

input:focus,
select:focus {
  border-color: rgba(216, 179, 95, 0.58);
  box-shadow: 0 0 0 3px rgba(216, 179, 95, 0.08);
}

.form-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text-button {
  min-height: 44px;
  border: 0;
  color: var(--m-gold);
  background: transparent;
  font-size: 13px;
}

.input-with-unit {
  position: relative;
}

.input-with-unit input {
  padding-right: 68px;
}

.input-with-unit > span {
  position: absolute;
  top: 50%;
  right: 13px;
  color: var(--m-gold);
  font-family: var(--m-tabular);
  font-size: 12px;
  transform: translateY(-50%);
}

.order-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid rgba(124, 157, 181, 0.13);
  border-radius: 12px;
  background: rgba(124, 157, 181, 0.12);
}

.order-preview div {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 12px;
  background: rgba(3, 12, 21, 0.94);
}

.order-preview span {
  color: var(--m-muted);
  font-size: 12px;
}

.order-preview strong {
  color: #dfcf9f;
  font-family: var(--m-tabular);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.check-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  margin: 16px 0 0;
  color: #a9b3bc;
  font-size: 13px;
  line-height: 1.55;
}

.check-row input {
  width: 20px;
  min-height: 20px;
  margin: 1px 0 0;
  padding: 0;
}

.rule-strip ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(124, 157, 181, 0.13);
  border-radius: 12px;
  background: rgba(124, 157, 181, 0.12);
  list-style: none;
}

.rule-strip li {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 13px;
  background: rgba(3, 12, 21, 0.94);
}

.rule-strip li strong {
  color: var(--m-gold-hi);
  font-family: var(--m-tabular);
  font-size: 22px;
  font-weight: 450;
}

.rule-strip li span {
  color: var(--m-muted);
  font-size: 12px;
}

/* Referral */
.reward-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(124, 157, 181, 0.13);
  border-radius: 12px;
  background: rgba(124, 157, 181, 0.12);
}

.reward-list > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 13px;
  background: rgba(3, 12, 21, 0.94);
}

.reward-list span {
  display: grid;
  gap: 3px;
  color: #c9d0d6;
  font-size: 14px;
}

.reward-list small {
  color: var(--m-muted);
  font-size: 12px;
}

.reward-list strong,
.summary-footer strong {
  color: var(--m-gold-hi);
  font-family: var(--m-tabular);
  font-weight: 450;
}

.summary-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 14px -16px -18px;
  padding: 15px 16px;
  border-top: 1px solid var(--m-line);
  background: rgba(216, 179, 95, 0.035);
}

.summary-footer span {
  color: #b5bfc7;
  font-size: 13px;
}

.summary-footer strong {
  font-size: 20px;
}

.summary-footer small {
  color: var(--m-muted);
  font-size: 12px;
}

.invite-code {
  margin: 5px 0 10px;
  color: var(--m-gold-hi);
  font-family: var(--m-tabular);
  font-size: clamp(28px, 10vw, 38px);
  font-weight: 500;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}

.invite-url {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding-block: 10px;
  color: #8fa0ad;
  font-family: var(--m-tabular);
  font-size: 13px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.invite-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 9px;
}

.unlock-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--m-muted);
  font-size: 13px;
}

.unlock-heading strong,
.rate-badge {
  color: var(--m-gold);
  font-family: var(--m-tabular);
}

.unlock-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.unlock-steps::before {
  position: absolute;
  top: 8px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, rgba(216, 179, 95, 0.18), rgba(216, 179, 95, 0.58));
  content: "";
}

.unlock-steps li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 6px;
  min-width: 0;
}

.unlock-steps li > span {
  z-index: 1;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(216, 179, 95, 0.42);
  border-radius: 50%;
  background: var(--m-surface);
  box-shadow: 0 0 0 5px rgba(216, 179, 95, 0.04);
}

.unlock-steps li.is-complete > span {
  background: var(--m-gold);
  box-shadow: 0 0 13px rgba(246, 229, 173, 0.54);
}

.unlock-steps strong {
  color: #c8d0d6;
  font-size: 12px;
}

.unlock-steps small {
  color: var(--m-gold);
  font-size: 12px;
}

.team-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(124, 157, 181, 0.13);
  border-radius: 12px;
}

.team-table-wrap table {
  width: 100%;
  min-width: 470px;
  border-collapse: collapse;
}

.team-table-wrap th,
.team-table-wrap td {
  padding: 12px;
  border-bottom: 1px solid rgba(124, 157, 181, 0.11);
  color: #b9c2c9;
  font-size: 13px;
  text-align: left;
}

.team-table-wrap th {
  color: var(--m-muted);
  background: rgba(3, 10, 18, 0.85);
  font-weight: 500;
}

.team-table-wrap td:first-child,
.team-table-wrap td:last-child {
  color: var(--m-gold);
  font-family: var(--m-tabular);
}

/* Records */
.records-panel {
  padding: 16px;
}

.record-filters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.record-filters label {
  grid-row: 1;
  margin: 0;
}

.record-filters select {
  grid-row: 2;
  min-width: 0;
}

/* Mobile bottom nav */
.bottom-nav {
  position: fixed;
  right: 8px;
  bottom: calc(8px + var(--m-safe-bottom));
  left: 8px;
  width: auto;
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: var(--m-nav-height);
  padding: 5px;
  border: 1px solid rgba(216, 179, 95, 0.2);
  border-radius: 18px;
  background: rgba(2, 8, 15, 0.94);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.58), inset 0 1px rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(22px) saturate(135%);
  transform: none;
  translate: none;
}

.bottom-nav::before {
  position: absolute;
  top: 0;
  left: 5%;
  width: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--m-gold), transparent);
  content: "";
  transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bottom-nav:has(button:nth-child(2).is-active)::before { transform: translateX(125%); }
.bottom-nav:has(button:nth-child(3).is-active)::before { transform: translateX(250%); }
.bottom-nav:has(button:nth-child(4).is-active)::before { transform: translateX(375%); }

.bottom-nav button {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  min-width: 0;
  min-height: 62px;
  padding: 5px 2px;
  border: 0;
  border-radius: 13px;
  color: #73818d;
  background: transparent;
  font-size: 12px;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.bottom-nav button svg {
  width: 23px;
  height: 23px;
}

.bottom-nav button.is-active {
  color: var(--m-gold-hi);
  background: linear-gradient(180deg, rgba(216, 179, 95, 0.1), transparent);
}

.bottom-nav button:active {
  transform: scale(0.94);
}

/* Dialogs become thumb-friendly bottom sheets. */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  background: rgba(0, 3, 7, 0.78);
  backdrop-filter: blur(12px);
}

.modal {
  position: relative;
  width: 100%;
  max-height: calc(100dvh - 28px);
  padding: 28px 18px calc(20px + var(--m-safe-bottom));
  overflow-y: auto;
  border: 1px solid rgba(216, 179, 95, 0.26);
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
  background:
    radial-gradient(circle at 90% 0, rgba(30, 78, 103, 0.35), transparent 16rem),
    linear-gradient(155deg, #0b2132, #030c16 74%);
  box-shadow: 0 -28px 80px rgba(0, 0, 0, 0.5);
  animation: mSheetEnter 260ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.modal::before {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 40px;
  height: 4px;
  border-radius: 99px;
  background: rgba(216, 179, 95, 0.28);
  content: "";
  transform: translateX(-50%);
}

.modal h2 {
  margin: 0 50px 10px 0;
  color: var(--m-text);
  font-size: 24px;
  font-weight: 650;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(216, 179, 95, 0.22);
  border-radius: 50%;
  color: #c7d0d7;
  background: rgba(2, 9, 16, 0.46);
  font-size: 25px;
}

.modal-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 9px;
  margin-top: 18px;
}

.modal-actions .primary-button {
  margin-top: 0;
  order: 2;
}

.modal-actions .secondary-button {
  order: 1;
}

.wallet-menu {
  position: fixed;
  top: 62px;
  right: 10px;
  z-index: 50;
  min-width: 174px;
  padding: 6px;
  border: 1px solid rgba(216, 179, 95, 0.22);
  border-radius: 12px;
  background: rgba(4, 14, 23, 0.98);
  box-shadow: var(--m-shadow);
}

.wallet-menu button {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  color: #cbd3d9;
  background: transparent;
  text-align: left;
}

.toast {
  position: fixed;
  right: 16px;
  bottom: calc(var(--m-nav-height) + var(--m-safe-bottom) + 22px);
  left: 16px;
  z-index: 80;
  padding: 13px 15px;
  border: 1px solid rgba(216, 179, 95, 0.3);
  border-radius: 12px;
  color: var(--m-gold-hi);
  background: rgba(4, 16, 26, 0.97);
  box-shadow: var(--m-shadow);
  text-align: center;
}

.is-hidden,
[hidden] {
  display: none !important;
}

.value-flash {
  animation: mValue 580ms ease both;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(14px);
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 420ms ease, transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes mTicker {
  to { transform: translateX(-50%); }
}

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

@keyframes mNode {
  0%, 100% { opacity: 0.45; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1.15); }
}

@keyframes mButtonSweep {
  0%, 18% { left: -34%; opacity: 0; }
  38%, 62% { opacity: 1; }
  82%, 100% { left: 112%; opacity: 0; }
}

@keyframes mBriefSweep {
  0%, 16% { left: -30%; opacity: 0; }
  40%, 60% { opacity: 1; }
  84%, 100% { left: 108%; opacity: 0; }
}

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

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

@keyframes mValue {
  0% { color: var(--m-text); }
  45% { color: var(--m-gold-hi); text-shadow: 0 0 18px rgba(246, 229, 173, 0.42); }
  100% { color: inherit; }
}

@media (min-width: 700px) {
  .topbar {
    min-height: 72px;
    padding-inline: 26px;
  }

  .brand-mark { width: 46px; height: 46px; }
  .brand-mark img { width: 37px; height: 37px; }

  .login-view {
    width: min(calc(100% - 40px), 760px);
    padding-top: 26px;
  }

  .login-panel { padding: 30px; }
  .login-brand-intro { display: none; }
  .orbit-stage { width: 360px; }
  .login-monument { min-height: 360px; }
  .login-brief { min-height: 140px; }

  .dashboard { padding: 20px 20px calc(var(--m-nav-height) + var(--m-safe-bottom) + 28px); }
  .content-grid--account { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
  .page-heading h1,
  .mobile-product-header strong { font-size: 30px; }
  .modal { width: min(calc(100% - 40px), 620px); border-radius: 22px; border-bottom: 1px solid rgba(216, 179, 95, 0.26); margin-bottom: 24px; }
}

@media (min-width: 1000px) {
  html { scroll-padding-top: 120px; }

  .topbar {
    position: relative;
    min-height: 82px;
    padding-inline: clamp(32px, 5vw, 76px);
  }

  .brand-wordmark strong { font-size: 15px; }

  .market-strip { height: 34px; }

  .login-view {
    display: grid;
    grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.28fr);
    grid-template-rows: auto auto;
    gap: 32px clamp(44px, 6vw, 94px);
    width: min(calc(100% - 56px), 1320px);
    min-height: calc(100svh - 116px);
    padding: clamp(50px, 6vw, 84px) 0 58px;
  }

  .login-panel {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    min-height: 570px;
    padding: 40px;
  }

  .login-brand-intro {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    align-items: center;
    gap: 4px 16px;
    margin: 24px 0 34px;
  }

  .login-brand-intro img {
    grid-row: 1 / span 2;
    width: 62px;
    height: 62px;
  }

  .login-brand-intro strong {
    color: var(--m-text);
    font-size: 19px;
    letter-spacing: 0.12em;
  }

  .login-brand-intro span {
    color: var(--m-gold);
    font-size: 12px;
    letter-spacing: 0.18em;
  }

  .section-heading--stacked h1 { font-size: 44px; }
  .wallet-preview { min-height: 88px; }
  .primary-button { min-height: 58px; }

  .login-monument {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    min-height: 620px;
    border: 0;
    background: radial-gradient(circle at center, rgba(17, 51, 72, 0.34), transparent 68%);
  }

  .monument-index { top: 9%; left: 0; font-size: 190px; }
  .orbit-stage { width: min(48vw, 580px); margin-top: 0; }

  .orbit-coordinate {
    position: absolute;
    z-index: 6;
    display: block;
    color: rgba(199, 210, 218, 0.5);
    font-family: var(--m-tabular);
    font-size: 12px;
    letter-spacing: 0.11em;
    white-space: nowrap;
  }

  .orbit-coordinate--top { top: 15%; left: 50%; transform: translateX(-50%); }
  .orbit-coordinate--left { top: 50%; left: 7%; transform: translate(-50%, -50%) rotate(-90deg); }
  .orbit-coordinate--right { top: 50%; right: 7%; transform: translate(50%, -50%) rotate(90deg); }

  .monument-thesis { right: 6%; bottom: 5%; left: 6%; }
  .monument-thesis strong { display: block; max-width: 430px; color: var(--m-text); font-size: 22px; font-weight: 500; }
  .monument-thesis p { display: none; }

  .login-brief {
    grid-column: 1 / -1;
    grid-row: 2;
    width: min(100%, 940px);
    min-height: 118px;
    margin-inline: auto;
  }

  .dashboard {
    width: min(calc(100% - 40px), 1220px);
    padding: 28px 0 52px;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 46px;
    min-height: 68px;
    margin-bottom: 26px;
    border-bottom: 1px solid rgba(124, 157, 181, 0.14);
  }

  .desktop-nav button {
    position: relative;
    min-height: 68px;
    padding: 0 4px;
    border: 0;
    color: #73828e;
    background: transparent;
    font-size: 14px;
  }

  .desktop-nav button::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 1px;
    background: var(--m-gold);
    content: "";
    opacity: 0;
    transform: scaleX(0.2);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .desktop-nav button.is-active {
    color: var(--m-gold-hi);
  }

  .desktop-nav button.is-active::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .bottom-nav { display: none; }
  .mobile-product-header { display: none; }

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

  .column-stack { gap: 16px; }
  .asset-hero { min-height: 336px; padding: 28px 28px 0; }
  .asset-total strong { font-size: 72px; }
  .asset-breakdown { min-height: 94px; }
  .asset-breakdown button { min-height: 94px; }
  .action-row button { min-height: 86px; }
  .column-stack > .panel:not(.asset-hero) { padding: 22px; }
  .metric-grid,
  .gift-grid { margin: 0 -22px -22px; }
  .metric-grid div,
  .gift-grid div { padding: 18px 22px; }
  .summary-footer { margin: 16px -22px -22px; padding: 18px 22px; }
  .page-heading { margin-bottom: 22px; padding-bottom: 18px; }
  .page-heading h1 { font-size: 36px; }

  .modal-backdrop { align-items: center; padding: 24px; }
  .modal { margin: 0; }
  .toast { right: 24px; bottom: 24px; left: auto; width: min(360px, calc(100% - 48px)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track,
  .primary-button::after,
  .orbit-ring,
  .orbit-scan,
  .orbit-node,
  .brief-pulse::before,
  .asset-orbit {
    animation: none !important;
  }
  .page-view.is-active,
  .modal,
  .value-flash { animation: none !important; }
  .reveal-ready { opacity: 1; transform: none; }
}
