.pulse-theme {
  --asset-cyan: #16dcff;
  --asset-cyan-soft: rgba(22, 220, 255, 0.16);
  --asset-lime: #9bff29;
  --asset-ink: #020a10;
  --asset-panel: rgba(3, 19, 27, 0.94);
  --asset-line: rgba(22, 220, 255, 0.28);
}

.pulse-theme :is(.route-wealthFund, .route-treasurePot) .neural-page-body {
  padding-inline: 10px;
}

.wallet-program-panel {
  border: 1px solid var(--asset-line);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(2, 18, 27, 0.98), rgba(1, 10, 17, 0.94));
  padding: 13px;
}

.wallet-program-panel .wallet-activity-head > small {
  color: #7a99a8;
  font: 700 11px/1.2 "Arial Narrow", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wallet-program-grid {
  display: grid;
  gap: 9px;
  margin-top: 11px;
}

.wallet-program-card {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 18px;
  align-items: center;
  min-height: 76px;
  overflow: hidden;
  border: 1px solid rgba(22, 220, 255, 0.24);
  border-radius: 11px;
  background:
    linear-gradient(90deg, rgba(7, 55, 66, 0.72), rgba(2, 15, 23, 0.92)),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(22, 220, 255, 0.025) 18px 19px);
  color: #e8fbff;
  padding: 10px;
  text-decoration: none;
}

.wallet-program-card::after {
  position: absolute;
  content: "";
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--asset-cyan), transparent);
  opacity: 0.55;
}

.wallet-program-card.is-sunshine {
  border-color: rgba(155, 255, 41, 0.3);
  background: linear-gradient(90deg, rgba(31, 67, 19, 0.55), rgba(2, 17, 22, 0.95));
}

.wallet-program-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--asset-cyan);
  box-shadow: 0 0 16px rgba(22, 220, 255, 0.16);
}

.is-sunshine .wallet-program-icon {
  color: var(--asset-lime);
}

.wallet-program-icon svg {
  width: 17px;
  height: 17px;
}

.wallet-program-card > span:nth-child(2) {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.wallet-program-card small {
  color: #5f97a9;
  font: 700 11px/1.1 ui-monospace, monospace;
  letter-spacing: 0.12em;
}

.wallet-program-card strong {
  font-size: 14px;
  line-height: 1.2;
}

.wallet-program-card em {
  overflow: hidden;
  color: #9eb3bd;
  font: normal 12px/1.3 system-ui, sans-serif;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wallet-program-card > svg {
  width: 16px;
  color: var(--asset-cyan);
}

.sunshine-command-screen,
.treasure-command-screen {
  display: grid;
  gap: 11px;
  color: #e9fbff;
}

.sunshine-command-hero {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  min-height: 176px;
  overflow: hidden;
  border: 1px solid rgba(155, 255, 41, 0.42);
  border-radius: 16px;
  background:
    radial-gradient(circle at 13% 47%, rgba(155, 255, 41, 0.18), transparent 29%),
    linear-gradient(135deg, rgba(5, 32, 30, 0.98), rgba(1, 10, 16, 0.98) 62%),
    repeating-linear-gradient(0deg, transparent 0 21px, rgba(22, 220, 255, 0.03) 21px 22px);
  padding: 21px 16px 54px;
}

.sunshine-command-hero::before {
  position: absolute;
  content: "";
  width: 210px;
  height: 210px;
  right: -88px;
  bottom: -131px;
  border: 1px solid rgba(22, 220, 255, 0.32);
  border-radius: 50%;
  box-shadow:
    0 0 0 15px rgba(22, 220, 255, 0.035),
    0 0 0 38px rgba(22, 220, 255, 0.025);
}

.sunshine-command-hero::after {
  position: absolute;
  content: "";
  inset: auto 12px 12px 12px;
  height: 27px;
  background:
    linear-gradient(90deg, transparent 0 4%, rgba(155, 255, 41, 0.75) 4% 5%, transparent 5% 11%, rgba(22, 220, 255, 0.6) 11% 13%, transparent 13% 100%),
    linear-gradient(0deg, transparent 46%, rgba(22, 220, 255, 0.16) 47% 52%, transparent 53%);
  clip-path: polygon(0 58%, 5% 58%, 8% 20%, 12% 78%, 16% 42%, 21% 57%, 27% 57%, 31% 10%, 35% 80%, 39% 44%, 44% 57%, 100% 57%, 100% 100%, 0 100%);
  opacity: 0.8;
}

.sunshine-orbit {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  align-self: center;
  place-items: center;
  border: 1px solid rgba(155, 255, 41, 0.7);
  border-radius: 50%;
  color: var(--asset-lime);
  box-shadow: inset 0 0 24px rgba(155, 255, 41, 0.08), 0 0 25px rgba(155, 255, 41, 0.15);
}

.sunshine-orbit::before,
.sunshine-orbit::after {
  position: absolute;
  content: "";
  border: 1px dashed rgba(22, 220, 255, 0.34);
  border-radius: 50%;
}

.sunshine-orbit::before {
  inset: -7px;
  animation: asset-orbit 18s linear infinite;
}

.sunshine-orbit::after {
  inset: 9px;
}

.sunshine-orbit > i {
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--asset-cyan);
  box-shadow: 0 0 8px var(--asset-cyan);
}

.sunshine-orbit > i:first-child {
  left: -10px;
}

.sunshine-orbit > i:nth-child(2) {
  right: -10px;
}

.sunshine-orbit svg {
  width: 25px;
  height: 25px;
}

.sunshine-hero-copy {
  display: grid;
  align-content: center;
  gap: 6px;
  min-width: 0;
}

.sunshine-hero-copy > small,
.treasure-hero header small {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--asset-cyan);
  font: 700 11px/1.2 ui-monospace, monospace;
  letter-spacing: 0.12em;
}

.sunshine-hero-copy > small i,
.treasure-hero header small i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--asset-lime);
  box-shadow: 0 0 8px var(--asset-lime);
}

.sunshine-hero-copy h2,
.treasure-hero h2 {
  margin: 0;
  color: #f1fdff;
  font: 900 22px/1 "Arial Narrow", system-ui, sans-serif;
  letter-spacing: -0.02em;
}

.sunshine-hero-copy p {
  max-width: 235px;
  margin: 0;
  color: #9bb5be;
  font: 500 12px/1.5 system-ui, sans-serif;
}

.sunshine-rate-beacon {
  position: absolute;
  right: 14px;
  bottom: 18px;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.sunshine-rate-beacon span {
  color: #6b909e;
  font: 700 11px/1 ui-monospace, monospace;
  letter-spacing: 0.12em;
}

.sunshine-rate-beacon strong {
  color: var(--asset-lime);
  font: 900 21px/1 "Arial Narrow", system-ui, sans-serif;
  text-shadow: 0 0 18px rgba(155, 255, 41, 0.25);
}

.sunshine-telemetry {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--asset-line);
  border-radius: 12px;
  background: var(--asset-panel);
}

.sunshine-telemetry > div {
  display: grid;
  min-width: 0;
  gap: 5px;
  padding: 12px 8px;
}

.sunshine-telemetry > div + div {
  border-left: 1px solid rgba(22, 220, 255, 0.15);
}

.sunshine-telemetry span {
  overflow: hidden;
  color: #678b99;
  font: 700 11px/1.2 ui-monospace, monospace;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.sunshine-telemetry strong {
  overflow: hidden;
  color: #e9fbff;
  font: 800 13px/1.2 "Arial Narrow", system-ui, sans-serif;
  text-overflow: ellipsis;
}

.sunshine-telemetry > div:last-child strong {
  color: var(--asset-lime);
}

.sunshine-access-alert {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 173, 50, 0.4);
  border-radius: 11px;
  background: rgba(58, 33, 6, 0.45);
  padding: 10px;
}

.sunshine-access-alert > svg {
  width: 23px;
  color: #ffb84d;
}

.sunshine-access-alert > span {
  display: grid;
  gap: 2px;
}

.sunshine-access-alert strong {
  font-size: 12px;
}

.sunshine-access-alert small {
  color: #b99f7b;
  font-size: 11px;
}

.sunshine-access-alert a {
  border: 1px solid #ffb84d;
  border-radius: 999px;
  color: #ffd08b;
  font-size: 12px;
  padding: 6px 9px;
  text-decoration: none;
}

.sunshine-plan-console,
.sunshine-record-console,
.treasure-access-console,
.treasure-round-console,
.treasure-action-console,
.treasure-feed-console {
  border: 1px solid var(--asset-line);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(3, 22, 30, 0.97), rgba(1, 10, 16, 0.97)),
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(22, 220, 255, 0.02) 22px 23px);
  padding: 13px;
}

.sunshine-plan-console > header,
.sunshine-record-console > header,
.treasure-round-console > header,
.treasure-feed-console > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.sunshine-plan-console header > div,
.sunshine-record-console header > div,
.treasure-round-console header > div,
.treasure-feed-console header > div {
  display: grid;
  gap: 3px;
}

.sunshine-plan-console header small,
.sunshine-record-console header small,
.treasure-round-console header small,
.treasure-feed-console header small {
  color: var(--asset-cyan);
  font: 700 11px/1 ui-monospace, monospace;
  letter-spacing: 0.12em;
}

.sunshine-plan-console header h3,
.sunshine-record-console header h3,
.treasure-round-console header h3,
.treasure-feed-console header h3 {
  margin: 0;
  color: #eafcff;
  font-size: 15px;
  line-height: 1.2;
}

.sunshine-plan-console > header > span,
.sunshine-record-console > header > span,
.treasure-round-console > header > span {
  color: #7093a1;
  font: 700 11px/1.2 ui-monospace, monospace;
}

.sunshine-plan-grid {
  display: grid;
  gap: 8px;
}

.sunshine-plan-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 63px 14px;
  align-items: center;
  width: 100%;
  min-height: 83px;
  gap: 8px;
  border: 1px solid rgba(22, 220, 255, 0.2);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(4, 33, 42, 0.86), rgba(1, 12, 19, 0.96)),
    repeating-linear-gradient(0deg, transparent 0 13px, rgba(22, 220, 255, 0.03) 13px 14px);
  color: #e8fbff;
  padding: 10px;
  text-align: left;
}

.sunshine-plan-card.is-tier-3,
.sunshine-plan-card.is-tier-4 {
  border-color: rgba(155, 255, 41, 0.25);
}

.sunshine-plan-card.is-active {
  border-color: var(--asset-lime);
  box-shadow: inset 3px 0 0 var(--asset-lime), 0 0 20px rgba(155, 255, 41, 0.08);
}

.sunshine-plan-card:disabled {
  cursor: not-allowed;
  filter: grayscale(0.75);
  opacity: 0.52;
}

.sunshine-plan-index {
  color: rgba(22, 220, 255, 0.62);
  font: 900 16px/1 ui-monospace, monospace;
}

.sunshine-plan-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.sunshine-plan-copy small {
  color: #76a4b2;
  font: 700 11px/1.2 ui-monospace, monospace;
  letter-spacing: 0.08em;
}

.sunshine-plan-copy strong {
  color: var(--asset-lime);
  font: 900 21px/1.05 "Arial Narrow", system-ui, sans-serif;
}

.sunshine-plan-copy em {
  overflow: hidden;
  color: #9fb6be;
  font: normal 11px/1.2 system-ui, sans-serif;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sunshine-plan-capacity {
  display: grid;
  gap: 6px;
}

.sunshine-plan-capacity > i {
  position: relative;
  display: block;
  width: 100%;
  height: 4px;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(22, 220, 255, 0.12);
}

.sunshine-plan-capacity > i::after {
  display: block;
  width: var(--plan-fill);
  height: 100%;
  content: "";
  background: linear-gradient(90deg, var(--asset-cyan), var(--asset-lime));
}

.sunshine-plan-capacity b {
  color: #6f9dab;
  font: 700 11px/1 ui-monospace, monospace;
  text-align: right;
}

.sunshine-plan-card > svg {
  width: 14px;
  color: var(--asset-cyan);
}

.sunshine-record-list {
  display: grid;
  gap: 9px;
}

.sunshine-record-item {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(22, 220, 255, 0.17);
  border-radius: 10px;
  background: rgba(1, 13, 20, 0.76);
  padding: 11px;
}

.sunshine-record-item > header,
.sunshine-record-item > footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.sunshine-record-item > header > div {
  display: grid;
  gap: 2px;
}

.sunshine-record-item > header small,
.sunshine-record-item > footer > span {
  color: #7397a4;
  font: 700 11px/1.2 ui-monospace, monospace;
}

.sunshine-record-item > header strong {
  color: #effcff;
  font-size: 15px;
}

.sunshine-record-item > header em {
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(155, 255, 41, 0.28);
  border-radius: 999px;
  color: var(--asset-lime);
  font: 700 11px/1 ui-monospace, monospace;
  font-style: normal;
  padding: 5px 7px;
}

.sunshine-record-item > header em i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 6px currentColor;
}

.sunshine-record-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(22, 220, 255, 0.11);
  border-radius: 8px;
  background: rgba(22, 220, 255, 0.11);
}

.sunshine-record-grid > div {
  display: grid;
  min-width: 0;
  gap: 3px;
  background: #03121a;
  padding: 8px;
}

.sunshine-record-grid span {
  color: #607f8c;
  font-size: 11px;
}

.sunshine-record-grid strong {
  overflow: hidden;
  color: #c8e1e8;
  font-size: 11px;
  text-overflow: ellipsis;
}

.sunshine-record-grid .is-profit {
  color: var(--asset-lime);
}

.sunshine-record-empty,
.treasure-feed-empty {
  border: 1px dashed rgba(22, 220, 255, 0.2);
  border-radius: 10px;
  color: #6e8d99;
  font-size: 12px;
  padding: 24px 12px;
  text-align: center;
}

.sunshine-purchase-modal,
.treasure-reward-layer {
  position: fixed;
  z-index: 80;
  display: grid;
  inset: 0;
  place-items: center;
  padding: 18px;
}

.sunshine-purchase-backdrop {
  position: absolute;
  border: 0;
  background: rgba(0, 5, 9, 0.82);
  backdrop-filter: blur(8px);
  inset: 0;
}

.sunshine-purchase-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 390px);
  gap: 14px;
  border: 1px solid rgba(155, 255, 41, 0.55);
  border-radius: 16px;
  background:
    radial-gradient(circle at 90% 0, rgba(155, 255, 41, 0.13), transparent 30%),
    #03131b;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.72), 0 0 32px rgba(155, 255, 41, 0.08);
  color: #e9fbff;
  padding: 17px;
}

.sunshine-purchase-dialog > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.sunshine-purchase-dialog > header div {
  display: grid;
  gap: 3px;
}

.sunshine-purchase-dialog > header small {
  color: var(--asset-cyan);
  font: 700 11px/1 ui-monospace, monospace;
}

.sunshine-purchase-dialog > header h3 {
  margin: 0;
  font-size: 18px;
}

.sunshine-purchase-dialog > header button,
.treasure-modal-close {
  display: grid;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(22, 220, 255, 0.28);
  border-radius: 50%;
  background: rgba(3, 24, 33, 0.85);
  color: var(--asset-cyan);
  place-items: center;
}

.sunshine-purchase-dialog > header svg,
.treasure-modal-close svg {
  width: 15px;
}

.sunshine-modal-amount {
  display: grid;
  gap: 7px;
}

.sunshine-modal-amount > span {
  color: #a7bec6;
  font-size: 12px;
  font-weight: 700;
}

.sunshine-modal-amount > div {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  align-items: center;
  border: 1px solid rgba(22, 220, 255, 0.3);
  border-radius: 10px;
  background: rgba(0, 8, 13, 0.82);
  padding: 4px 10px;
}

.sunshine-modal-amount.is-invalid > div {
  border-color: #ff6d6d;
}

.sunshine-modal-amount b {
  color: var(--asset-lime);
  font-size: 18px;
}

.sunshine-modal-amount input {
  width: 100%;
  min-height: 45px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #f0fdff;
  font-size: 22px;
  font-weight: 800;
}

.sunshine-modal-amount small {
  color: #668b99;
  font-size: 11px;
}

.sunshine-modal-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(22, 220, 255, 0.14);
  border-radius: 9px;
  background: rgba(22, 220, 255, 0.14);
}

.sunshine-modal-summary > div {
  display: grid;
  gap: 5px;
  background: #031019;
  padding: 10px;
}

.sunshine-modal-summary span {
  color: #6e919e;
  font-size: 11px;
}

.sunshine-modal-summary strong {
  color: var(--asset-lime);
  font-size: 14px;
}

.sunshine-purchase-dialog > p {
  margin: 0;
  color: #7896a1;
  font-size: 12px;
  line-height: 1.45;
}

.sunshine-modal-submit,
.treasure-main-action,
.treasure-share-action {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 8px;
  border: 1px solid rgba(155, 255, 41, 0.72);
  border-radius: 10px;
  background: linear-gradient(100deg, #163b20, #0b4f3b);
  box-shadow: inset 0 0 20px rgba(155, 255, 41, 0.08);
  color: #dfffc0;
  font-weight: 800;
}

.sunshine-modal-submit:disabled,
.treasure-main-action:disabled {
  border-color: rgba(109, 137, 146, 0.24);
  background: #0b171b;
  box-shadow: none;
  color: #5c777f;
}

.sunshine-modal-submit svg,
.treasure-main-action svg,
.treasure-share-action svg {
  width: 17px;
}

.treasure-hero {
  position: relative;
  min-height: 258px;
  overflow: hidden;
  border: 1px solid rgba(22, 220, 255, 0.48);
  border-radius: 17px;
  background-image: var(--treasure-bg);
  background-position: center;
  background-size: cover;
  padding: 15px;
  isolation: isolate;
}

.treasure-hero-shade {
  position: absolute;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(1, 9, 15, 0.68), rgba(1, 10, 16, 0.28) 42%, rgba(1, 10, 16, 0.94)),
    linear-gradient(90deg, rgba(1, 11, 17, 0.86), transparent 58%);
  inset: 0;
}

.treasure-hero::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(22, 220, 255, 0.25);
  border-radius: 22px 22px 48% 48%;
  inset: 68px 18px 67px;
  box-shadow: inset 0 0 45px rgba(22, 220, 255, 0.04);
}

.treasure-hero > header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.treasure-hero > header > div {
  display: grid;
  gap: 5px;
}

.treasure-hero h2 {
  font-size: 19px;
}

.treasure-hero > header > span {
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(155, 255, 41, 0.35);
  border-radius: 999px;
  color: var(--asset-lime);
  font: 700 10px/1 ui-monospace, monospace;
  padding: 5px 7px;
}

.treasure-hero > header > span i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 7px currentColor;
}

.treasure-radar {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 73px;
  height: 73px;
  top: 92px;
  right: 44px;
  border: 1px solid rgba(22, 220, 255, 0.6);
  border-radius: 50%;
  background: rgba(1, 12, 18, 0.45);
  box-shadow: inset 0 0 24px rgba(22, 220, 255, 0.13), 0 0 30px rgba(22, 220, 255, 0.15);
  place-items: center;
}

.treasure-radar::before,
.treasure-radar::after {
  position: absolute;
  content: "";
  border: 1px dashed rgba(22, 220, 255, 0.28);
  border-radius: 50%;
}

.treasure-radar::before {
  inset: 9px;
}

.treasure-radar::after {
  width: 1px;
  height: 94px;
  border: 0;
  border-left: 1px solid rgba(22, 220, 255, 0.23);
}

.treasure-radar > span {
  color: var(--asset-cyan);
  font: 900 20px/1 ui-monospace, monospace;
}

.treasure-radar > i {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--asset-lime);
  box-shadow: 0 0 8px var(--asset-lime);
}

.treasure-radar > i:first-child {
  top: 10px;
  left: 16px;
}

.treasure-radar > i:nth-child(2) {
  right: 12px;
  bottom: 18px;
}

.treasure-hero-metrics {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  right: 10px;
  bottom: 10px;
  left: 10px;
  overflow: hidden;
  border: 1px solid rgba(22, 220, 255, 0.26);
  border-radius: 10px;
  background: rgba(1, 12, 18, 0.82);
  backdrop-filter: blur(7px);
}

.treasure-hero-metrics > div {
  display: grid;
  min-width: 0;
  gap: 3px;
  padding: 9px 7px;
}

.treasure-hero-metrics > div + div {
  border-left: 1px solid rgba(22, 220, 255, 0.14);
}

.treasure-hero-metrics span,
.treasure-hero-metrics small {
  overflow: hidden;
  color: #72929e;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.treasure-hero-metrics strong {
  overflow: hidden;
  color: #e7faff;
  font: 800 13px/1.2 "Arial Narrow", system-ui, sans-serif;
  text-overflow: ellipsis;
}

.treasure-hero-metrics > div:last-child strong {
  color: var(--asset-lime);
  font-family: ui-monospace, monospace;
}

.treasure-access-console {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--asset-line);
}

.treasure-access-console > div {
  display: grid;
  min-width: 0;
  gap: 5px;
  background: #03131b;
  padding: 12px;
}

.treasure-access-console small {
  color: #678c9a;
  font: 700 10px/1.2 ui-monospace, monospace;
}

.treasure-access-console strong {
  overflow: hidden;
  color: var(--asset-cyan);
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.treasure-access-console > div:last-child strong {
  color: var(--asset-lime);
  font-size: 12px;
}

.treasure-access-console span {
  color: #839fa9;
  font-size: 11px;
}

.treasure-round-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.treasure-round-grid::before {
  position: absolute;
  z-index: 0;
  content: "";
  top: 50%;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(22, 220, 255, 0.35), transparent);
}

.treasure-round-node {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 76px;
  align-content: center;
  gap: 3px;
  border: 1px solid rgba(22, 220, 255, 0.18);
  border-radius: 9px;
  background: rgba(1, 12, 18, 0.96);
  padding: 9px;
  text-align: center;
}

.treasure-round-node > span {
  color: #517786;
  font: 700 11px/1 ui-monospace, monospace;
}

.treasure-round-node > strong {
  color: #bad6de;
  font: 800 13px/1.2 ui-monospace, monospace;
}

.treasure-round-node > small {
  color: #547785;
  font: 700 10px/1 ui-monospace, monospace;
}

.treasure-round-node.is-current,
.treasure-round-node.is-live {
  border-color: var(--asset-lime);
  box-shadow: inset 0 0 18px rgba(155, 255, 41, 0.07), 0 0 16px rgba(155, 255, 41, 0.08);
}

.treasure-round-node.is-current strong,
.treasure-round-node.is-live small {
  color: var(--asset-lime);
}

.treasure-round-node.is-claimed {
  border-color: rgba(22, 220, 255, 0.55);
}

.treasure-round-node.is-claimed::after {
  position: absolute;
  content: "✓";
  top: 5px;
  right: 7px;
  color: var(--asset-cyan);
  font-size: 11px;
}

.treasure-round-node:is(.is-missed, .is-locked, .is-round_empty) {
  opacity: 0.5;
}

.treasure-action-console {
  display: grid;
  gap: 11px;
}

.treasure-action-copy {
  display: grid;
  gap: 5px;
}

.treasure-action-copy small {
  color: var(--asset-cyan);
  font: 700 11px/1 ui-monospace, monospace;
  letter-spacing: 0.1em;
}

.treasure-action-copy p {
  margin: 0;
  color: #9db6bf;
  font-size: 12px;
  line-height: 1.45;
}

.treasure-main-action {
  border-color: rgba(22, 220, 255, 0.65);
  background: linear-gradient(100deg, #053346, #07515a);
  color: #b9f6ff;
}

.treasure-main-action.is-share,
.treasure-share-action {
  border-color: rgba(155, 255, 41, 0.68);
  background: linear-gradient(100deg, #173c1f, #0a4d37);
  color: #e0ffc1;
}

.treasure-feed-console > header > i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--asset-lime);
  box-shadow: 0 0 10px var(--asset-lime);
}

.treasure-feed-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(22, 220, 255, 0.12);
  border-radius: 9px;
  background: rgba(22, 220, 255, 0.12);
}

.treasure-feed-list > div:not(.treasure-feed-empty) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  gap: 8px;
  background: #03131b;
  padding: 9px;
}

.treasure-feed-list > div > span {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: center;
  min-width: 0;
  column-gap: 5px;
}

.treasure-feed-list svg {
  grid-row: span 2;
  width: 13px;
  color: var(--asset-cyan);
}

.treasure-feed-list strong {
  color: #c6e1e8;
  font-size: 12px;
}

.treasure-feed-list small {
  color: #5e8290;
  font-size: 11px;
}

.treasure-feed-list b {
  color: var(--asset-lime);
  font-size: 12px;
  white-space: nowrap;
}

.treasure-reward-layer {
  background: rgba(0, 5, 9, 0.84);
  backdrop-filter: blur(9px);
}

.treasure-reward-dialog {
  position: relative;
  display: grid;
  width: min(100%, 350px);
  justify-items: center;
  gap: 9px;
  overflow: hidden;
  border: 1px solid rgba(155, 255, 41, 0.6);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0, rgba(155, 255, 41, 0.18), transparent 38%),
    linear-gradient(155deg, #061c22, #020b10);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.78), 0 0 40px rgba(155, 255, 41, 0.1);
  color: #eafff0;
  padding: 27px 20px 20px;
  text-align: center;
}

.treasure-reward-dialog::after {
  position: absolute;
  z-index: 0;
  content: "";
  width: 240px;
  height: 240px;
  top: -165px;
  border: 1px dashed rgba(22, 220, 255, 0.36);
  border-radius: 50%;
}

.treasure-modal-close {
  position: absolute;
  z-index: 2;
  top: 11px;
  right: 11px;
}

.treasure-reward-core {
  position: relative;
  z-index: 1;
  display: grid;
  width: 64px;
  height: 64px;
  border: 1px solid var(--asset-lime);
  border-radius: 50%;
  background: rgba(155, 255, 41, 0.08);
  color: var(--asset-lime);
  box-shadow: inset 0 0 20px rgba(155, 255, 41, 0.12), 0 0 25px rgba(155, 255, 41, 0.12);
  place-items: center;
}

.treasure-reward-core svg {
  width: 27px;
}

.treasure-reward-dialog > small {
  color: var(--asset-cyan);
  font: 700 11px/1 ui-monospace, monospace;
  letter-spacing: 0.13em;
}

.treasure-reward-dialog h2 {
  margin: 0;
  color: var(--asset-lime);
  font: 900 32px/1 "Arial Narrow", system-ui, sans-serif;
  text-shadow: 0 0 22px rgba(155, 255, 41, 0.2);
}

.treasure-reward-dialog p {
  margin: 0 0 4px;
  color: #7f9da8;
  font-size: 12px;
}

.treasure-share-action {
  width: 100%;
}

.treasure-later-action {
  border: 0;
  background: transparent;
  color: #7897a2;
  font-size: 12px;
  padding: 5px 12px;
}

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

@media (max-width: 365px) {
  .sunshine-command-hero {
    grid-template-columns: 58px minmax(0, 1fr);
    padding-inline: 12px;
  }

  .sunshine-orbit {
    width: 48px;
    height: 48px;
  }

  .sunshine-hero-copy h2 {
    font-size: 19px;
  }

  .sunshine-telemetry strong,
  .treasure-hero-metrics strong {
    font-size: 12px;
  }

  .sunshine-plan-card {
    grid-template-columns: 25px minmax(0, 1fr) 48px 12px;
    padding-inline: 8px;
  }

  .sunshine-plan-copy strong {
    font-size: 18px;
  }

  .treasure-radar {
    right: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sunshine-orbit::before {
    animation: none;
  }
}

/* Treasure Core v2: AI glasses reward reservoir */
.pulse-theme .route-treasurePot .neural-page-body {
  padding: 10px 9px 28px;
}

.pulse-theme .route-treasurePot .treasure-command-screen {
  gap: 10px;
}

.pulse-theme .route-treasurePot .treasure-core-hero {
  min-height: 414px;
  padding: 14px;
  border-color: rgba(32, 220, 255, 0.42);
  border-radius: 15px;
  background-position: 58% center;
  box-shadow:
    inset 0 0 28px rgba(32, 220, 255, 0.035),
    0 12px 30px rgba(0, 0, 0, 0.28);
}

.pulse-theme .route-treasurePot .treasure-core-hero::after {
  display: none;
}

.pulse-theme .route-treasurePot .treasure-hero-shade {
  background:
    linear-gradient(180deg, rgba(1, 7, 12, 0.7), rgba(1, 8, 13, 0.08) 31%, rgba(1, 8, 13, 0.84) 66%, rgba(1, 8, 13, 0.98)),
    linear-gradient(90deg, rgba(1, 8, 13, 0.92), rgba(1, 8, 13, 0.35) 57%, rgba(1, 8, 13, 0.12));
}

.pulse-theme .route-treasurePot .treasure-core-hero > header {
  align-items: center;
}

.pulse-theme .route-treasurePot .treasure-core-hero > header small {
  font-size: 11px;
}

.pulse-theme .route-treasurePot .treasure-core-hero h2 {
  color: #f2fcff;
  font-family: var(--command-font-display, system-ui, sans-serif);
  font-size: clamp(24px, 6.7vw, 29px);
  letter-spacing: 0.04em;
}

.pulse-theme .route-treasurePot .treasure-core-hero > header > span {
  min-height: 27px;
  padding: 6px 8px;
  border-color: rgba(155, 255, 41, 0.45);
  background: rgba(1, 10, 15, 0.58);
  font-size: 10px;
  backdrop-filter: blur(6px);
}

.pulse-theme .route-treasurePot .treasure-core-hero > header > span.is-alert {
  border-color: rgba(255, 130, 95, 0.55);
  color: #ff9c7e;
}

.pulse-theme .treasure-core-summary {
  position: absolute;
  z-index: 2;
  top: 88px;
  left: 14px;
  display: grid;
  width: 58%;
  min-width: 0;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.pulse-theme .treasure-core-orbit {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(32, 220, 255, 0.68);
  border-radius: 50%;
  background: rgba(0, 10, 16, 0.72);
  color: #63efff;
  box-shadow:
    inset 0 0 18px rgba(32, 220, 255, 0.13),
    0 0 19px rgba(32, 220, 255, 0.14);
}

.pulse-theme .treasure-core-orbit svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.55;
}

.pulse-theme .treasure-core-summary > div {
  min-width: 0;
}

.pulse-theme .treasure-core-summary small,
.pulse-theme .treasure-core-summary strong,
.pulse-theme .treasure-core-summary p {
  display: block;
  margin: 0;
}

.pulse-theme .treasure-core-summary small {
  color: #52def4;
  font-family: var(--command-font-code, ui-monospace, monospace);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.pulse-theme .treasure-core-summary strong {
  margin-top: 4px;
  overflow: hidden;
  color: #b7ff58;
  font-family: var(--command-font-display, system-ui, sans-serif);
  font-size: clamp(17px, 4.8vw, 21px);
  font-weight: 850;
  line-height: 1;
  text-overflow: ellipsis;
  text-shadow: 0 0 18px rgba(155, 255, 41, 0.14);
  white-space: nowrap;
}

.pulse-theme .treasure-core-summary p {
  margin-top: 6px;
  color: #8daab5;
  font-family: var(--command-font-code, ui-monospace, monospace);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.055em;
}

.pulse-theme .treasure-countdown-console {
  position: absolute;
  z-index: 2;
  top: 168px;
  left: 14px;
  display: grid;
  min-width: 144px;
  gap: 3px;
  padding: 10px 12px;
  border: 1px solid rgba(32, 220, 255, 0.29);
  border-radius: 9px;
  background: rgba(0, 9, 15, 0.72);
  backdrop-filter: blur(7px);
}

.pulse-theme .treasure-countdown-console > span {
  color: #7399a7;
  font-family: var(--command-font-code, ui-monospace, monospace);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.pulse-theme .treasure-countdown-console > strong {
  color: #eafcff;
  font-family: var(--command-font-code, ui-monospace, monospace);
  font-size: 22px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.04em;
}

.pulse-theme .treasure-countdown-console > small {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #6b8a97;
  font-family: var(--command-font-code, ui-monospace, monospace);
  font-size: 10px;
}

.pulse-theme .treasure-countdown-console > small > i {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--asset-lime);
  box-shadow: 0 0 7px var(--asset-lime);
}

.pulse-theme .treasure-hero-action {
  position: absolute;
  z-index: 3;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: grid;
  gap: 9px;
  padding: 12px;
  border: 1px solid rgba(32, 220, 255, 0.28);
  border-radius: 11px;
  background: rgba(1, 10, 16, 0.88);
  box-shadow: inset 0 0 22px rgba(32, 220, 255, 0.035);
  backdrop-filter: blur(8px);
}

.pulse-theme .treasure-hero-action .treasure-action-copy {
  gap: 4px;
}

.pulse-theme .treasure-hero-action .treasure-action-copy small {
  font-size: 11px;
}

.pulse-theme .treasure-hero-action .treasure-action-copy p {
  color: #a7c0ca;
  font-size: 12px;
}

.pulse-theme .route-treasurePot .treasure-main-action {
  display: grid;
  min-height: 54px;
  grid-template-columns: 23px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(32, 220, 255, 0.62);
  border-radius: 9px;
  background: linear-gradient(100deg, rgba(4, 54, 73, 0.96), rgba(5, 82, 92, 0.9));
  color: #d9fbff;
  text-align: left;
  text-decoration: none;
}

.pulse-theme .route-treasurePot .treasure-main-action > svg {
  width: 22px;
  height: 22px;
  grid-row: 1 / span 2;
}

.pulse-theme .route-treasurePot .treasure-main-action > span {
  font-size: 13px;
  font-weight: 850;
}

.pulse-theme .route-treasurePot .treasure-main-action > small {
  color: #81a8b5;
  font-size: 11px;
}

.pulse-theme .route-treasurePot .treasure-main-action:is(.is-share, .is-upgrade) {
  border-color: rgba(155, 255, 41, 0.56);
  background: linear-gradient(100deg, rgba(27, 59, 26, 0.96), rgba(7, 70, 50, 0.92));
  color: #e7ffca;
}

.pulse-theme .route-treasurePot .treasure-main-action:disabled {
  border-color: rgba(92, 128, 142, 0.32);
  background: rgba(4, 19, 27, 0.85);
  color: #77939e;
  opacity: 1;
}

.pulse-theme .route-treasurePot .treasure-access-console {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(32, 220, 255, 0.23);
  border-radius: 11px;
  background: rgba(32, 220, 255, 0.12);
}

.pulse-theme .route-treasurePot .treasure-access-console > div {
  gap: 4px;
  padding: 11px 9px;
  background: #03131b;
}

.pulse-theme .route-treasurePot .treasure-access-console small {
  font-size: 11px;
}

.pulse-theme .route-treasurePot .treasure-access-console strong,
.pulse-theme .route-treasurePot .treasure-access-console > div:last-child strong {
  color: #ebfbff;
  font-size: clamp(13px, 3.8vw, 16px);
}

.pulse-theme .route-treasurePot .treasure-access-console > div:nth-child(2) strong {
  color: var(--asset-lime);
}

.pulse-theme .route-treasurePot .treasure-access-console span {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pulse-theme .route-treasurePot .treasure-round-console {
  padding: 12px 10px;
}

.pulse-theme .route-treasurePot .treasure-round-console > header {
  margin-bottom: 12px;
}

.pulse-theme .route-treasurePot .treasure-round-console header small {
  font-size: 11px;
}

.pulse-theme .route-treasurePot .treasure-round-console header h3 {
  font-size: 15px;
}

.pulse-theme .route-treasurePot .treasure-round-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 5px;
}

.pulse-theme .route-treasurePot .treasure-round-grid::before {
  top: 24px;
  right: 5%;
  left: 5%;
  background: rgba(32, 220, 255, 0.25);
}

.pulse-theme .route-treasurePot .treasure-round-node {
  min-height: 70px;
  gap: 3px;
  padding: 5px 2px;
  border: 0;
  background: transparent;
}

.pulse-theme .route-treasurePot .treasure-round-node > span {
  color: #6b8e9b;
  font-size: 10px;
}

.pulse-theme .route-treasurePot .treasure-round-node > b {
  position: relative;
  z-index: 2;
  display: grid;
  width: 28px;
  height: 28px;
  margin: 0 auto;
  place-items: center;
  border: 1px solid rgba(32, 220, 255, 0.31);
  border-radius: 50%;
  background: #03131b;
  color: #537785;
  box-shadow: 0 0 0 3px #03131b;
}

.pulse-theme .route-treasurePot .treasure-round-node > b svg {
  width: 12px;
  height: 12px;
}

.pulse-theme .route-treasurePot .treasure-round-node > strong {
  color: #abc5ce;
  font-size: 11px;
}

.pulse-theme .route-treasurePot .treasure-round-node > small {
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pulse-theme .route-treasurePot .treasure-round-node:is(.is-current, .is-live) {
  border: 0;
  box-shadow: none;
}

.pulse-theme .route-treasurePot .treasure-round-node:is(.is-current, .is-live) > b {
  border-color: var(--asset-lime);
  color: var(--asset-lime);
  box-shadow:
    0 0 0 3px #03131b,
    0 0 14px rgba(155, 255, 41, 0.2),
    inset 0 0 10px rgba(155, 255, 41, 0.08);
}

.pulse-theme .route-treasurePot .treasure-round-node.is-claimed::after {
  display: none;
}

.pulse-theme .route-treasurePot .treasure-round-node.is-claimed > b {
  border-color: rgba(32, 220, 255, 0.66);
  color: var(--asset-cyan);
}

.pulse-theme .treasure-round-directive {
  margin: 9px 0 0;
  padding-top: 9px;
  border-top: 1px solid rgba(32, 220, 255, 0.12);
  color: #8ba7b2;
  font-size: 12px;
  text-align: center;
}

.pulse-theme .route-treasurePot .treasure-feed-console {
  padding: 12px;
}

.pulse-theme .route-treasurePot .treasure-feed-console header small {
  font-size: 11px;
}

.pulse-theme .route-treasurePot .treasure-feed-console header h3 {
  font-size: 15px;
}

.pulse-theme .route-treasurePot .treasure-feed-list > div:not(.treasure-feed-empty) {
  padding: 10px;
}

.pulse-theme .route-treasurePot .treasure-feed-list strong {
  font-size: 12px;
}

.pulse-theme .route-treasurePot .treasure-feed-list small {
  font-size: 11px;
}

.pulse-theme .route-treasurePot .treasure-feed-list b {
  font-size: 12px;
}

.pulse-theme .route-treasurePot .treasure-reward-dialog > small {
  font-size: 11px;
}

.pulse-theme .route-treasurePot .treasure-reward-dialog p {
  font-size: 12px;
}

@media (max-width: 360px) {
  .pulse-theme .route-treasurePot .treasure-core-hero {
    min-height: 402px;
    padding-inline: 11px;
  }

  .pulse-theme .treasure-core-summary {
    left: 11px;
    width: 62%;
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 8px;
  }

  .pulse-theme .treasure-core-orbit {
    width: 45px;
    height: 45px;
  }

  .pulse-theme .treasure-countdown-console {
    left: 11px;
  }

  .pulse-theme .route-treasurePot .treasure-access-console > div {
    padding-inline: 6px;
  }

  .pulse-theme .route-treasurePot .treasure-round-node > b {
    width: 25px;
    height: 25px;
  }
}

/* AI Compute v2: readable deployment modules in every access state */
.pulse-theme .route-wealthFund .sunshine-plan-card {
  --plan-accent: 41, 220, 255;
  grid-template-columns: 43px minmax(0, 1fr) minmax(92px, 29%);
  min-height: 106px;
  gap: 10px;
  padding: 11px;
  border-color: rgba(var(--plan-accent), 0.3);
  border-radius: 12px;
  background: rgba(3, 22, 31, 0.96);
  color: #eafaff;
  box-shadow: inset 3px 0 0 rgba(var(--plan-accent), 0.52);
}

.pulse-theme .route-wealthFund .sunshine-plan-card.is-tier-2 {
  --plan-accent: 48, 225, 222;
}

.pulse-theme .route-wealthFund .sunshine-plan-card.is-tier-3 {
  --plan-accent: 102, 236, 152;
}

.pulse-theme .route-wealthFund .sunshine-plan-card.is-tier-4 {
  --plan-accent: 155, 255, 41;
}

.pulse-theme .route-wealthFund .sunshine-plan-card.is-active {
  border-color: rgba(var(--plan-accent), 0.88);
  box-shadow:
    inset 3px 0 0 rgb(var(--plan-accent)),
    0 0 18px rgba(var(--plan-accent), 0.1);
}

.pulse-theme .route-wealthFund .sunshine-plan-card:disabled {
  border-color: rgba(var(--plan-accent), 0.24);
  background: rgba(3, 19, 28, 0.97);
  color: #bdd3db;
  box-shadow: inset 3px 0 0 rgba(var(--plan-accent), 0.28);
  cursor: not-allowed;
  filter: none;
  opacity: 1;
}

.pulse-theme .route-wealthFund .sunshine-plan-index {
  display: grid;
  width: 42px;
  height: 58px;
  align-content: center;
  justify-items: center;
  gap: 5px;
  border: 1px solid rgba(var(--plan-accent), 0.35);
  border-radius: 9px;
  background: rgba(1, 12, 19, 0.78);
  color: rgb(var(--plan-accent));
}

.pulse-theme .route-wealthFund .sunshine-plan-index small {
  color: #688d9a;
  font: 800 10px/1 var(--command-font-code, ui-monospace, monospace);
  letter-spacing: 0.12em;
}

.pulse-theme .route-wealthFund .sunshine-plan-index b {
  font: 900 17px/1 var(--command-font-code, ui-monospace, monospace);
}

.pulse-theme .route-wealthFund .sunshine-plan-copy {
  gap: 5px;
}

.pulse-theme .route-wealthFund .sunshine-plan-eyebrow {
  color: #89aab5;
  font: 800 11px/1.1 var(--command-font-code, ui-monospace, monospace);
  letter-spacing: 0.08em;
}

.pulse-theme .route-wealthFund .sunshine-plan-yield {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.pulse-theme .route-wealthFund .sunshine-plan-yield strong {
  color: rgb(var(--plan-accent));
  font: 900 clamp(23px, 6vw, 27px)/0.95 var(--command-font-display, system-ui, sans-serif);
  text-shadow: 0 0 16px rgba(var(--plan-accent), 0.13);
}

.pulse-theme .route-wealthFund .sunshine-plan-yield small {
  padding-bottom: 2px;
  color: #6d909d;
  font: 800 10px/1 var(--command-font-code, ui-monospace, monospace);
  letter-spacing: 0.06em;
}

.pulse-theme .route-wealthFund .sunshine-plan-copy em {
  display: grid;
  gap: 2px;
  overflow: visible;
  color: #b1c7ce;
  font-size: 11px;
  text-overflow: clip;
  white-space: normal;
}

.pulse-theme .route-wealthFund .sunshine-plan-copy em > span {
  color: #648794;
  font: 800 10px/1 var(--command-font-code, ui-monospace, monospace);
  letter-spacing: 0.09em;
}

.pulse-theme .route-wealthFund .sunshine-plan-side {
  display: grid;
  min-width: 0;
  align-content: space-between;
  align-self: stretch;
  justify-items: stretch;
  gap: 7px;
  padding-left: 9px;
  border-left: 1px solid rgba(var(--plan-accent), 0.15);
}

.pulse-theme .route-wealthFund .sunshine-plan-state {
  display: flex;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px 6px;
  border: 1px solid rgba(var(--plan-accent), 0.35);
  border-radius: 6px;
  background: rgba(var(--plan-accent), 0.07);
  color: rgb(var(--plan-accent));
  font: 800 10px/1 var(--command-font-code, ui-monospace, monospace);
  white-space: nowrap;
}

.pulse-theme .route-wealthFund .sunshine-plan-state svg {
  width: 11px;
  height: 11px;
}

.pulse-theme .route-wealthFund .sunshine-plan-capacity {
  gap: 5px;
}

.pulse-theme .route-wealthFund .sunshine-plan-capacity > i {
  height: 5px;
  background: rgba(var(--plan-accent), 0.11);
}

.pulse-theme .route-wealthFund .sunshine-plan-capacity > i::after {
  background: rgb(var(--plan-accent));
}

.pulse-theme .route-wealthFund .sunshine-plan-capacity small {
  color: #6a8d99;
  font: 700 10px/1 var(--command-font-code, ui-monospace, monospace);
  text-align: right;
  white-space: nowrap;
}

.pulse-theme .route-wealthFund .sunshine-plan-side > svg {
  width: 14px;
  height: 14px;
  justify-self: end;
  color: rgb(var(--plan-accent));
}

.pulse-theme .route-wealthFund .sunshine-plan-card.is-locked .sunshine-plan-yield strong {
  color: #8fb4bf;
  text-shadow: none;
}

/* Treasure Core v3: stateful mobile control interface */
.pulse-theme .route-treasurePot .treasure-core-hero {
  display: grid;
  min-height: 0;
  gap: 10px;
  padding: 12px;
  background-position: 63% center;
}

.pulse-theme .route-treasurePot .treasure-core-hero > header {
  position: relative;
  z-index: 3;
  min-height: 40px;
}

.pulse-theme .route-treasurePot .treasure-core-hero h2 {
  font-size: clamp(21px, 5.8vw, 25px);
}

.pulse-theme .treasure-core-interface {
  position: relative;
  z-index: 2;
  height: 174px;
  overflow: hidden;
  border: 1px solid rgba(32, 220, 255, 0.24);
  border-radius: 11px;
  background: rgba(1, 10, 16, 0.34);
  box-shadow: inset 0 0 25px rgba(32, 220, 255, 0.035);
}

.pulse-theme .treasure-core-interface .treasure-core-summary {
  top: 12px;
  left: 10px;
  width: min(60%, 214px);
  grid-template-columns: 48px minmax(0, 1fr);
}

.pulse-theme .treasure-core-interface .treasure-countdown-console {
  top: auto;
  bottom: 10px;
  left: 10px;
  min-width: 166px;
  padding: 9px 11px;
}

.pulse-theme .treasure-countdown-console > small > svg {
  width: 11px;
  height: 11px;
  color: #55e5fb;
}

.pulse-theme .treasure-signal-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(32, 220, 255, 0.22);
  border-radius: 9px;
  background: rgba(1, 11, 17, 0.86);
}

.pulse-theme .treasure-signal-strip > span {
  display: grid;
  min-width: 0;
  grid-template-columns: 17px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  gap: 2px 6px;
  padding: 8px;
}

.pulse-theme .treasure-signal-strip > span + span {
  border-left: 1px solid rgba(32, 220, 255, 0.12);
}

.pulse-theme .treasure-signal-strip svg {
  width: 16px;
  height: 16px;
  grid-row: 1 / span 2;
  color: #4ee6ff;
}

.pulse-theme .treasure-signal-strip small {
  overflow: hidden;
  color: #658996;
  font: 800 10px/1 var(--command-font-code, ui-monospace, monospace);
  letter-spacing: 0.09em;
  text-overflow: ellipsis;
}

.pulse-theme .treasure-signal-strip strong {
  overflow: hidden;
  color: #e7f9fd;
  font: 850 12px/1.1 var(--command-font-display, system-ui, sans-serif);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pulse-theme .route-treasurePot .treasure-hero-action {
  position: relative;
  z-index: 3;
  right: auto;
  bottom: auto;
  left: auto;
  gap: 8px;
  padding: 10px;
}

.pulse-theme .route-treasurePot .treasure-main-action {
  min-height: 58px;
}

.pulse-theme .route-treasurePot .treasure-main-action > span {
  font-size: 14px;
}

.pulse-theme .route-treasurePot .treasure-main-action > small {
  font-size: 11px;
}

.pulse-theme .route-treasurePot .treasure-main-action.is-paused:disabled {
  border-color: rgba(255, 156, 126, 0.36);
  background: rgba(8, 20, 27, 0.96);
  color: #d7e3e7;
  filter: none;
  opacity: 1;
}

.pulse-theme .route-treasurePot .treasure-main-action.is-paused > svg {
  color: #ff9c7e;
}

.pulse-theme .route-treasurePot .treasure-main-action.is-paused > small {
  color: #8fa3aa;
}

.pulse-theme .treasure-command-screen.is-paused .treasure-hero-shade {
  background: rgba(1, 8, 13, 0.72);
}

.pulse-theme .treasure-command-screen.is-paused .treasure-core-orbit {
  border-color: rgba(255, 156, 126, 0.62);
  color: #ff9c7e;
  box-shadow: inset 0 0 15px rgba(255, 156, 126, 0.08);
}

.pulse-theme .treasure-command-screen.is-paused .treasure-core-summary strong {
  color: #b6cbd2;
  text-shadow: none;
}

.pulse-theme .treasure-command-screen.is-paused .treasure-core-hero > header small i {
  background: #ff9c7e;
  box-shadow: 0 0 7px rgba(255, 156, 126, 0.5);
}

.pulse-theme .treasure-command-screen.is-paused .treasure-signal-strip > span:last-child svg,
.pulse-theme .treasure-command-screen.is-paused .treasure-signal-strip > span:last-child strong {
  color: #ff9c7e;
}

.pulse-theme .route-treasurePot .treasure-round-node > strong {
  font-size: 11px;
}

.pulse-theme .route-treasurePot .treasure-round-node > small {
  font-size: 10px;
}

@media (max-width: 360px) {
  .pulse-theme .route-wealthFund .sunshine-plan-card {
    grid-template-columns: 38px minmax(0, 1fr) 84px;
    gap: 7px;
    padding: 9px;
  }

  .pulse-theme .route-wealthFund .sunshine-plan-index {
    width: 37px;
  }

  .pulse-theme .route-wealthFund .sunshine-plan-side {
    padding-left: 7px;
  }

  .pulse-theme .route-treasurePot .treasure-core-hero {
    min-height: 0;
    padding-inline: 10px;
  }

  .pulse-theme .treasure-core-interface .treasure-core-summary {
    left: 9px;
    width: 61%;
  }

  .pulse-theme .treasure-core-interface .treasure-countdown-console {
    left: 9px;
  }

  .pulse-theme .treasure-signal-strip > span {
    padding-inline: 6px;
  }
}

/* AI Compute v3: dedicated generated compute-core artwork */
.pulse-theme .route-wealthFund .sunshine-command-hero {
  min-height: 224px;
  padding-bottom: 56px;
  background: #020a12;
  isolation: isolate;
}

.pulse-theme .route-wealthFund .sunshine-hero-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  opacity: 0.86;
  filter: saturate(0.92) contrast(1.06);
  pointer-events: none;
}

.pulse-theme .route-wealthFund .sunshine-command-hero::before {
  z-index: 1;
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(1, 10, 17, 0.99) 0 30%, rgba(1, 10, 17, 0.88) 48%, rgba(1, 10, 17, 0.16) 78%, rgba(1, 10, 17, 0.28) 100%),
    linear-gradient(0deg, rgba(1, 9, 15, 0.9), transparent 45% 76%, rgba(1, 9, 15, 0.35));
  box-shadow: none;
  pointer-events: none;
}

.pulse-theme .route-wealthFund .sunshine-command-hero::after {
  z-index: 3;
}

.pulse-theme .route-wealthFund .sunshine-command-hero > :not(.sunshine-hero-art) {
  position: relative;
  z-index: 2;
}

.pulse-theme .route-wealthFund .sunshine-hero-copy p {
  max-width: 205px;
  color: #b3cbd3;
}

.pulse-theme .route-wealthFund .sunshine-rate-beacon {
  z-index: 4;
  padding: 7px 9px;
  border: 1px solid rgba(32, 220, 255, 0.22);
  border-radius: 8px;
  background: rgba(1, 12, 20, 0.74);
  backdrop-filter: blur(5px);
}

@media (max-width: 365px) {
  .pulse-theme .route-wealthFund .sunshine-command-hero {
    min-height: 218px;
    grid-template-columns: 58px minmax(0, 1fr);
    padding-inline: 12px;
  }

  .pulse-theme .route-wealthFund .sunshine-hero-art {
    object-position: 74% center;
  }

  .pulse-theme .route-wealthFund .sunshine-hero-copy p {
    max-width: 190px;
  }
}

/* Treasure Core v4: Neural Vault selected visual direction */
.pulse-theme .route-treasurePot .treasure-core-hero[data-visual="neural-vault"] {
  min-height: 0;
  gap: 12px;
  padding: 14px 12px 13px;
  border-color: rgba(44, 224, 255, 0.42);
  border-radius: 16px;
  background: #020a10;
  box-shadow:
    inset 0 0 32px rgba(36, 222, 255, 0.035),
    0 14px 34px rgba(0, 0, 0, 0.3);
}

.pulse-theme .route-treasurePot .command-context-copy p {
  color: #3fdff8;
  font: 750 10px/1.2 var(--command-font-code, ui-monospace, monospace);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pulse-theme .route-treasurePot .treasure-core-hero[data-visual="neural-vault"] .treasure-hero-shade {
  display: none;
}

.pulse-theme .treasure-vault-band {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 3px 4px 1px;
}

.pulse-theme .treasure-vault-band > div {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.pulse-theme .treasure-vault-band small {
  color: #3fdff8;
  font: 800 11px/1 var(--command-font-code, ui-monospace, monospace);
  letter-spacing: 0.12em;
}

.pulse-theme .treasure-vault-band strong {
  overflow: hidden;
  color: #f1fcff;
  font: 900 clamp(27px, 8vw, 35px)/1 var(--command-font-display, system-ui, sans-serif);
  letter-spacing: 0.015em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pulse-theme .treasure-vault-band > div > span {
  color: #7697a3;
  font: 750 10px/1.2 var(--command-font-code, ui-monospace, monospace);
  letter-spacing: 0.08em;
}

.pulse-theme .treasure-vault-state {
  display: flex;
  min-height: 30px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(157, 255, 48, 0.42);
  border-radius: 999px;
  background: rgba(3, 18, 26, 0.94);
  color: var(--asset-lime);
  font: 800 10px/1.1 var(--command-font-code, ui-monospace, monospace);
  padding: 7px 9px;
  text-align: center;
}

.pulse-theme .treasure-vault-state > i {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 7px currentColor;
}

.pulse-theme .treasure-vault-state.is-alert {
  border-color: rgba(255, 143, 104, 0.58);
  color: #ff9a76;
}

.pulse-theme .route-treasurePot .treasure-vault-interface {
  position: relative;
  z-index: 2;
  height: auto;
  min-height: 0;
  width: calc(100% + 8px);
  aspect-ratio: 4 / 5;
  margin-inline: -4px;
  overflow: hidden;
  border-color: rgba(45, 224, 255, 0.35);
  border-radius: 14px;
  background: #020910;
  box-shadow:
    inset 0 0 24px rgba(36, 222, 255, 0.05),
    0 10px 28px rgba(0, 0, 0, 0.24);
}

.pulse-theme .treasure-vault-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.98;
  filter: saturate(0.94) contrast(1.04);
  pointer-events: none;
  transform: scale(1.13);
}

.pulse-theme .route-treasurePot .treasure-vault-interface .treasure-countdown-console {
  z-index: 2;
  width: min(72%, 232px);
  min-width: 0;
  top: auto;
  right: auto;
  bottom: 15px;
  left: 50%;
  justify-items: center;
  padding: 10px 14px;
  border-color: rgba(45, 224, 255, 0.42);
  border-radius: 10px;
  background: rgba(1, 10, 16, 0.92);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.38);
  text-align: center;
  transform: translateX(-50%);
}

.pulse-theme .route-treasurePot .treasure-vault-interface .treasure-countdown-console > span {
  font-size: 10px;
}

.pulse-theme .route-treasurePot .treasure-vault-interface .treasure-countdown-console > strong {
  font-size: clamp(23px, 7vw, 29px);
}

.pulse-theme .route-treasurePot .treasure-core-hero[data-visual="neural-vault"] .treasure-signal-strip {
  border-radius: 10px;
  background: #03131b;
}

.pulse-theme .route-treasurePot .treasure-core-hero[data-visual="neural-vault"] .treasure-signal-strip > span {
  min-height: 54px;
  padding: 9px 8px;
}

.pulse-theme .route-treasurePot .treasure-core-hero[data-visual="neural-vault"] .treasure-signal-strip small {
  font-size: 10px;
}

.pulse-theme .route-treasurePot .treasure-core-hero[data-visual="neural-vault"] .treasure-signal-strip strong {
  font-size: 13px;
}

.pulse-theme .route-treasurePot .treasure-core-hero[data-visual="neural-vault"] .treasure-hero-action {
  gap: 9px;
  padding: 11px;
  border-color: rgba(45, 224, 255, 0.24);
  background: #03131b;
  box-shadow: none;
}

.pulse-theme .route-treasurePot .treasure-core-hero[data-visual="neural-vault"] .treasure-action-copy p {
  color: #9ab3bc;
  font-size: 12px;
  line-height: 1.42;
}

.pulse-theme .route-treasurePot .treasure-core-hero[data-visual="neural-vault"].is-paused .treasure-vault-interface {
  border-color: rgba(255, 143, 104, 0.46);
  box-shadow:
    inset 0 0 0 1px rgba(255, 143, 104, 0.05),
    0 10px 28px rgba(0, 0, 0, 0.24);
}

.pulse-theme .route-treasurePot .treasure-core-hero[data-visual="neural-vault"].is-paused .treasure-vault-art {
  opacity: 0.92;
  filter: saturate(0.82) contrast(1.03) brightness(0.88);
}

.pulse-theme .route-treasurePot .treasure-core-hero[data-visual="neural-vault"].is-ready .treasure-vault-interface {
  border-color: rgba(157, 255, 48, 0.58);
  box-shadow:
    inset 0 0 0 1px rgba(157, 255, 48, 0.05),
    0 0 24px rgba(157, 255, 48, 0.08);
}

@media (max-width: 360px) {
  .pulse-theme .route-treasurePot .treasure-core-hero[data-visual="neural-vault"] {
    gap: 10px;
    padding-inline: 10px;
  }

  .pulse-theme .treasure-vault-band strong {
    font-size: 26px;
  }

  .pulse-theme .route-treasurePot .treasure-vault-interface .treasure-countdown-console {
    bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pulse-theme .treasure-vault-art {
    filter: none;
  }
}
