:root {
  --bg: #09131a;
  --bg-deep: #050b10;
  --panel: rgba(15, 29, 39, 0.78);
  --panel-strong: rgba(10, 21, 31, 0.92);
  --card: rgba(247, 241, 227, 0.08);
  --card-strong: rgba(255, 248, 232, 0.1);
  --line: rgba(255, 240, 218, 0.12);
  --line-soft: rgba(255, 240, 218, 0.06);
  --text: #f6eedf;
  --text-soft: rgba(246, 238, 223, 0.68);
  --gold: #d5b071;
  --gold-strong: #f1c888;
  --jade: #4f857a;
  --jade-soft: rgba(79, 133, 122, 0.18);
  --seal: #b84e42;
  --seal-soft: rgba(184, 78, 66, 0.2);
  --cream: #f6efde;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 16px;
  font-family: "Songti SC", "STSong", "Noto Serif SC", serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(43, 88, 82, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(172, 110, 53, 0.18), transparent 26%),
    linear-gradient(180deg, #10202b, #09131a 42%, #050b10 100%);
  color: var(--text);
}

body {
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

.scene {
  position: relative;
  min-height: 100vh;
  padding: 28px;
  isolation: isolate;
}

.scene__grain,
.scene__mist {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.scene__grain {
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 250, 238, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 238, 0.1) 1px, transparent 1px);
  background-size: 12px 12px;
}

.scene__mist {
  filter: blur(70px);
  opacity: 0.36;
}

.scene__mist--one {
  background: radial-gradient(circle, rgba(93, 167, 145, 0.24), transparent 58%);
  transform: translate(-10%, -8%);
}

.scene__mist--two {
  background: radial-gradient(circle, rgba(180, 112, 56, 0.18), transparent 56%);
  transform: translate(55%, 36%);
}

.hero,
.panel,
.app-shell {
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 248, 232, 0.07), rgba(255, 248, 232, 0.02)),
    rgba(7, 15, 21, 0.66);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.hero--compact {
  margin-bottom: 2px;
}

.hero__eyebrow,
.panel__eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.panel h2,
.drawer h2 {
  margin: 0;
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.1;
  font-weight: 700;
}

.hero__lead,
.panel__desc {
  margin: 6px 0 0;
  color: var(--text-soft);
  line-height: 1.55;
  font-size: 13px;
}

.hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.bronze-btn,
.ghost-btn,
.icon-btn {
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 12px 18px;
  cursor: pointer;
  transition: 180ms ease;
}

.bronze-btn {
  color: #0e1720;
  background: linear-gradient(135deg, var(--gold-strong), #d79f4d);
  box-shadow: 0 14px 28px rgba(209, 151, 71, 0.24);
}

.ghost-btn,
.icon-btn {
  color: var(--text);
  background: rgba(255, 248, 232, 0.06);
}

.ghost-btn:hover,
.icon-btn:hover,
.bronze-btn:hover,
.atlas-chip:hover,
.drawer-chip:hover,
.tabbar__item:hover {
  transform: translateY(-1px);
}

.ghost-btn--small {
  padding: 8px 14px;
}

.workspace {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(780px, 1fr) minmax(240px, 300px);
  gap: 18px;
  margin-top: 18px;
  align-items: start;
}

.panel {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(255, 248, 232, 0.06), rgba(255, 248, 232, 0.02)),
    rgba(7, 15, 21, 0.64);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 18px;
}

.panel__header {
  margin-bottom: 14px;
}

.atlas {
  display: grid;
  gap: 16px;
}

.atlas-group {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 248, 232, 0.04);
}

.atlas-group__title {
  margin: 0 0 12px;
  font-size: 16px;
}

.atlas-group__chips,
.drawer__grid,
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.atlas-chip,
.drawer-chip,
.pill {
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 8px 12px;
  background: rgba(255, 248, 232, 0.04);
  color: var(--text);
  cursor: pointer;
  font-size: 13px;
}

.atlas-chip.is-active,
.drawer-chip:hover {
  background: rgba(213, 176, 113, 0.16);
  border-color: rgba(213, 176, 113, 0.34);
}

.experience-stage {
  min-width: 0;
  display: flex;
  justify-content: center;
}

.app-shell {
  width: min(100%, 440px);
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(214, 177, 113, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(12, 23, 32, 0.96), rgba(8, 16, 24, 0.98));
  box-shadow: var(--shadow);
}

.app-shell__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.46;
}

.app-shell__glow--one {
  width: 260px;
  height: 260px;
  right: -80px;
  top: -40px;
  background: rgba(186, 129, 62, 0.2);
}

.app-shell__glow--two {
  width: 220px;
  height: 220px;
  left: -60px;
  bottom: 80px;
  background: rgba(79, 133, 122, 0.18);
}

.app-header {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: start;
  padding: 18px 16px 14px;
  border-bottom: 1px solid var(--line-soft);
}

.app-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-header__back {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 248, 232, 0.05);
  color: var(--gold-strong);
  cursor: pointer;
}

.app-header__back[hidden] {
  display: none;
}

.app-header__back svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 118px;
}

.brand-logo__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(226, 220, 203, 0.18), rgba(118, 145, 141, 0.14)),
    rgba(255, 248, 232, 0.06);
  border: 1px solid rgba(255, 248, 232, 0.14);
}

.brand-logo__mark svg,
.app-header__search-icon svg,
.tabbar__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-strong);
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-logo__copy {
  display: grid;
  gap: 2px;
}

.brand-logo__copy strong {
  font-size: 15px;
  color: var(--cream);
}

.brand-logo__copy span {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--text-soft);
}

.app-header__brand h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
}

.app-header__brand p {
  margin: 6px 0 0;
  color: var(--text-soft);
}

.app-header__tools {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
}

.app-header__search {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  color: var(--text-soft);
  background: rgba(255, 248, 232, 0.05);
}

.app-header__search-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 248, 232, 0.08);
}

.app-content {
  position: relative;
  min-height: 720px;
  padding: 18px 16px 14px;
}

.bottom-dock {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 18px 20px 22px;
  border-top: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255, 248, 232, 0.02), rgba(255, 248, 232, 0.05));
}

.tabbar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 11px 8px;
  border-radius: 18px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
}

.tabbar__item.is-active {
  color: var(--cream);
  border-color: rgba(213, 176, 113, 0.26);
  background:
    linear-gradient(180deg, rgba(213, 176, 113, 0.12), rgba(213, 176, 113, 0.05)),
    rgba(255, 248, 232, 0.04);
}

.tabbar__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 248, 232, 0.08);
}

.screen {
  min-height: 640px;
  animation: screen-in 220ms ease;
}

.screen--home,
.screen--dashboard,
.screen--detail {
  display: grid;
  gap: 16px;
}

.screen--list {
  display: grid;
  gap: 14px;
}

.screen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.column-stack,
.market-stack,
.notice-stack,
.row-stack,
.wallet-stack,
.ledger,
.timeline {
  display: grid;
  gap: 12px;
}

.screen--list .market-stack,
.screen--list .notice-stack,
.screen--list .row-stack {
  grid-template-columns: 1fr;
}

.hero-banner,
.market-card,
.row-card,
.wallet-card,
.notice-card,
.artifact-card,
.data-card,
.detail-block,
.insight-card,
.summary-tile,
.action-tile,
.timeline-item {
  border-radius: 26px;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(160deg, rgba(255, 248, 232, 0.06), rgba(255, 248, 232, 0.02)),
    rgba(255, 248, 232, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 248, 232, 0.04);
}

.hero-banner {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 26px;
  display: grid;
  align-content: space-between;
  background:
    linear-gradient(135deg, rgba(25, 74, 71, 0.84), rgba(8, 25, 39, 0.92) 48%, rgba(122, 53, 43, 0.86)),
    rgba(255, 248, 232, 0.03);
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: auto -40px -30px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(255, 240, 218, 0.14);
}

.hero-banner__kicker {
  margin: 0;
  color: rgba(255, 239, 212, 0.8);
  letter-spacing: 0.14em;
}

.hero-banner__title {
  margin: 8px 0 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.hero-banner__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: end;
  color: rgba(255, 240, 218, 0.8);
}

.marquee,
.section-panel,
.toolbar-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 248, 232, 0.04);
}

.marquee__label {
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}

.subnav-strip,
.stat-ribbon {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.curatorial-hero {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 30px;
  border: 1px solid rgba(237, 227, 203, 0.16);
  background:
    linear-gradient(180deg, rgba(227, 221, 205, 0.12), rgba(227, 221, 205, 0.04)),
    linear-gradient(145deg, rgba(29, 68, 72, 0.94), rgba(10, 29, 38, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 250, 238, 0.1);
}

.curatorial-hero__copy {
  display: grid;
  gap: 12px;
}

.curatorial-hero__eyebrow {
  margin: 0;
  color: rgba(246, 239, 222, 0.76);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
}

.curatorial-hero__title {
  margin: 0;
  font-size: 40px;
  line-height: 1.02;
  color: var(--cream);
}

.curatorial-hero__lead {
  margin: 0;
  color: rgba(246, 239, 222, 0.78);
  line-height: 1.8;
}

.curatorial-hero__visual {
  display: grid;
}

.exhibit-frame {
  padding: 14px;
  border-radius: 26px;
  border: 1px solid rgba(237, 227, 203, 0.18);
  background:
    linear-gradient(180deg, rgba(246, 239, 222, 0.08), rgba(246, 239, 222, 0.02)),
    rgba(6, 20, 28, 0.56);
}

.exhibit-frame__art {
  height: 240px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 249, 239, 0.38), transparent 18%),
    linear-gradient(135deg, rgba(184, 206, 198, 0.42), rgba(245, 241, 230, 0.56) 42%, rgba(199, 168, 113, 0.28) 72%, rgba(46, 92, 96, 0.78)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 50%);
  position: relative;
  overflow: hidden;
}

.exhibit-frame__art::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 248, 232, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 248, 232, 0.32), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 58%);
}

.exhibit-frame__label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 14px 6px 2px;
  color: rgba(246, 239, 222, 0.78);
}

.exhibit-frame__label strong {
  color: var(--cream);
  font-size: 18px;
}

.brief-board {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(237, 227, 203, 0.1);
  background:
    linear-gradient(180deg, rgba(245, 241, 230, 0.08), rgba(245, 241, 230, 0.03)),
    rgba(8, 20, 29, 0.52);
}

.brief-list {
  display: grid;
  gap: 10px;
}

.brief-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(237, 227, 203, 0.08);
  background: rgba(245, 241, 230, 0.04);
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.brief-item h4 {
  margin: 0 0 4px;
  font-size: 16px;
}

.featured-issue {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(237, 227, 203, 0.1);
  background:
    linear-gradient(180deg, rgba(245, 241, 230, 0.08), rgba(245, 241, 230, 0.03)),
    linear-gradient(145deg, rgba(26, 63, 67, 0.96), rgba(8, 28, 38, 0.96));
}

.featured-issue__copy {
  display: grid;
  gap: 10px;
}

.featured-issue__eyebrow {
  margin: 0;
  color: rgba(246, 239, 222, 0.76);
  letter-spacing: 0.14em;
  font-size: 12px;
  text-transform: uppercase;
}

.featured-issue__title {
  margin: 0;
  font-size: 34px;
  line-height: 1.08;
}

.featured-issue__lead {
  margin: 0;
  color: rgba(246, 239, 222, 0.76);
  line-height: 1.7;
}

.featured-card {
  padding: 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 248, 232, 0.14);
  background: rgba(255, 248, 232, 0.06);
}

.featured-card__art {
  height: 184px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 248, 232, 0.34), transparent 20%),
    linear-gradient(135deg, rgba(184, 206, 198, 0.34), rgba(245, 241, 230, 0.58) 42%, rgba(204, 186, 144, 0.32) 70%, rgba(45, 94, 98, 0.74)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 48%);
}

.featured-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px 2px 0;
  color: var(--text-soft);
}

.featured-card__meta div {
  display: grid;
  gap: 4px;
}

.featured-card__meta span {
  font-size: 12px;
}

.featured-card__meta strong {
  color: var(--cream);
}

.calendar-rail {
  display: grid;
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.calendar-rail::-webkit-scrollbar {
  display: none;
}

.calendar-rail {
  grid-auto-columns: minmax(236px, 82%);
  scroll-snap-type: x mandatory;
}

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

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

.hub-story-rail,
.trade-book-rail {
  display: grid;
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.hub-story-rail::-webkit-scrollbar,
.trade-book-rail::-webkit-scrollbar {
  display: none;
}

.hub-story-rail {
  grid-auto-columns: minmax(198px, 86%);
}

.trade-book-rail {
  grid-auto-columns: minmax(286px, 88%);
  scroll-snap-type: x proximity;
}

.calendar-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(255, 248, 232, 0.1), rgba(255, 248, 232, 0.04)),
    rgba(255, 248, 232, 0.04);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  scroll-snap-align: start;
  min-height: 172px;
}

.calendar-card__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.calendar-card__date {
  min-width: 74px;
  padding: 12px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 248, 232, 0.14);
  background: rgba(255, 248, 232, 0.08);
  color: var(--gold-strong);
  text-align: center;
  font-weight: 700;
}

.calendar-card h4 {
  margin: 0 0 4px;
  font-size: 16px;
}

.calendar-card__body {
  display: grid;
  gap: 8px;
  width: 100%;
}

.calendar-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  color: var(--text-soft);
  font-size: 12px;
}

.calendar-card__tag,
.notice-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(213, 176, 113, 0.14);
  color: var(--gold-strong);
  font-size: 11px;
}

.hub-story-card,
.vault-summary,
.trade-book-card {
  border-radius: 24px;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(160deg, rgba(255, 248, 232, 0.08), rgba(255, 248, 232, 0.03)),
    rgba(255, 248, 232, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 248, 232, 0.05);
}

.hub-story-card {
  display: grid;
  gap: 8px;
  padding: 16px 15px;
  color: var(--text);
}

.hub-story-card strong,
.vault-summary__main strong {
  color: var(--gold-strong);
  font-size: 18px;
}

.hub-story-card__eyebrow,
.vault-summary__eyebrow {
  color: var(--text-soft);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.hub-story-card__eyebrow,
.vault-summary__eyebrow {
  text-transform: uppercase;
}

.hub-story-card {
  min-height: 144px;
  align-content: space-between;
  text-align: left;
  cursor: pointer;
}

.trade-book-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  scroll-snap-align: start;
}

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

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

.tab-switcher__item {
  display: grid;
  gap: 4px;
  padding: 12px 10px;
  border-radius: 18px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 248, 232, 0.04);
  color: var(--text-soft);
  text-align: center;
  cursor: pointer;
}

.tab-switcher__item strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.tab-switcher__item.is-active {
  border-color: rgba(213, 176, 113, 0.3);
  background: rgba(213, 176, 113, 0.12);
  color: var(--gold-strong);
}

.vault-summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  padding: 18px 16px;
}

.vault-summary__main {
  display: grid;
  gap: 6px;
}

.vault-summary__main p {
  margin: 0;
}

.vault-summary__aside {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.subnav-chip,
.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 248, 232, 0.04);
  color: var(--text);
}

.subnav-chip {
  cursor: pointer;
}

.subnav-chip strong,
.stat-pill strong {
  color: var(--gold-strong);
  font-size: 14px;
}

.quick-link:hover,
.summary-tile:hover,
.action-tile:hover,
.shortcut-card:hover {
  transform: translateY(-2px);
  border-color: rgba(213, 176, 113, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 232, 0.06),
    0 22px 42px rgba(2, 8, 13, 0.2);
}

.quick-grid,
.summary-grid,
.artifact-grid,
.stats-grid,
.flow-actions,
.module-grid {
  display: grid;
  gap: 14px;
}

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

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

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

.stats-grid,
.flow-actions,
.module-grid,
.action-deck {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quick-link,
.summary-tile,
.action-tile,
.spotlight-card,
.profile-strip {
  padding: 18px 16px;
  border-radius: 24px;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(255, 248, 232, 0.08), rgba(255, 248, 232, 0.03)),
    rgba(255, 248, 232, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 232, 0.05),
    0 18px 34px rgba(2, 8, 13, 0.12);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.quick-link {
  min-height: 128px;
  display: grid;
  align-content: space-between;
}

.spotlight-card,
.profile-strip {
  display: grid;
  gap: 8px;
}

.spotlight-card__eyebrow {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-soft);
  text-transform: uppercase;
}

.quick-link__icon,
.summary-tile__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(213, 176, 113, 0.16), rgba(184, 78, 66, 0.16));
  color: var(--gold-strong);
}

.summary-tile__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-strong);
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.section-title h3 {
  margin: 0;
  font-size: 22px;
}

.section-title span,
.muted,
.artifact-card__meta,
.notice-card__meta,
.wallet-card__meta,
.route-note {
  color: var(--text-soft);
  line-height: 1.6;
}

.artifact-card,
.market-card,
.notice-card,
.row-card,
.wallet-card,
.data-card {
  padding: 16px;
}

.artifact-card {
  cursor: pointer;
}

.artifact-card__cover {
  height: 132px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(22, 80, 73, 0.94), rgba(202, 146, 68, 0.74)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.16), transparent 38%);
}

.artifact-card:nth-child(2) .artifact-card__cover {
  background: linear-gradient(135deg, rgba(96, 54, 100, 0.92), rgba(219, 187, 126, 0.76));
}

.artifact-card:nth-child(3) .artifact-card__cover {
  background: linear-gradient(135deg, rgba(38, 64, 105, 0.95), rgba(210, 159, 78, 0.78));
}

.artifact-card:nth-child(4) .artifact-card__cover {
  background: linear-gradient(135deg, rgba(127, 53, 42, 0.94), rgba(226, 182, 119, 0.76));
}

.artifact-card__title,
.market-card__title,
.notice-card__title,
.wallet-card__title,
.row-card__title {
  margin: 12px 0 4px;
  font-size: 18px;
}

.notice-card__title {
  margin-top: 8px;
}

.artifact-card__price,
.price {
  margin: 8px 0 0;
  color: var(--gold-strong);
  font-weight: 700;
}

.toolbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.toolbar--stacked {
  display: grid;
  gap: 12px;
}

.toolbar input,
.search-box {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line-soft);
  color: var(--text-soft);
  background: rgba(255, 248, 232, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 248, 232, 0.06);
}

.exchange-form {
  display: grid;
  gap: 14px;
}

.exchange-field {
  display: grid;
  gap: 8px;
}

.exchange-field__label {
  color: var(--text-soft);
  font-size: 12px;
}

.exchange-note {
  margin: 0;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.6;
}

.exchange-note--warning {
  color: #ffb5a8;
}

.exchange-quote {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 248, 232, 0.04);
}

.exchange-quote__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.exchange-quote__row strong {
  color: var(--gold-strong);
  font-size: 15px;
}

.release-timeline {
  display: grid;
  gap: 18px;
}

.release-day {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 18px;
}

.release-day__rail {
  position: relative;
  display: flex;
  justify-content: center;
}

.release-day__dot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--ink-strong);
  border: 2px solid rgba(255, 248, 232, 0.72);
  box-shadow: 0 0 0 6px rgba(255, 248, 232, 0.05);
}

.release-day__line {
  position: absolute;
  top: 22px;
  bottom: -22px;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 248, 232, 0.16), rgba(255, 248, 232, 0.04));
}

.release-day:last-child .release-day__line {
  display: none;
}

.release-day__body {
  display: grid;
  gap: 16px;
}

.release-day__header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.release-day__header h4,
.release-sale-card__content h5 {
  margin: 0;
}

.release-day__header h4 {
  font-size: 20px;
  line-height: 1.2;
}

.release-day__header p {
  margin: 8px 0 0;
}

.release-day__list {
  display: grid;
  gap: 18px;
}

.release-slot {
  display: grid;
  gap: 12px;
}

.release-slot__time {
  padding-left: 2px;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.release-sale-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 248, 232, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 248, 232, 0.1), rgba(255, 248, 232, 0.04)),
    rgba(255, 248, 232, 0.05);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 232, 0.06),
    0 18px 34px rgba(2, 8, 13, 0.12);
}

.release-sale-card__art {
  position: relative;
  min-height: 212px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 232, 0.08);
}

.release-sale-card__art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 248, 232, 0.2), transparent 30%),
    linear-gradient(180deg, transparent, rgba(7, 12, 17, 0.24));
}

.release-sale-card__art--ember {
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 128, 40, 0.95), transparent 24%),
    radial-gradient(circle at 50% 50%, rgba(255, 96, 32, 0.25), transparent 40%),
    radial-gradient(circle at 50% 50%, transparent 26%, rgba(255, 122, 34, 0.95) 27%, transparent 34%),
    linear-gradient(135deg, #1a0908, #3d120a 34%, #0f0b12 100%);
}

.release-sale-card__art--flora {
  background:
    radial-gradient(circle at 68% 32%, rgba(255, 240, 214, 0.7), transparent 16%),
    radial-gradient(circle at 30% 64%, rgba(255, 248, 232, 0.35), transparent 18%),
    linear-gradient(135deg, #6f876d 0 42%, #cf8f70 42% 100%);
}

.release-sale-card__art--mist {
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 248, 232, 0.28), transparent 18%),
    radial-gradient(circle at 70% 65%, rgba(255, 248, 232, 0.16), transparent 22%),
    linear-gradient(135deg, #485f6e, #8096a3 45%, #c6b9a6);
}

.release-sale-card__art--scroll {
  background:
    radial-gradient(circle at 18% 18%, rgba(196, 70, 20, 0.9), transparent 18%),
    linear-gradient(135deg, #221910, #6d5326 48%, #0c0d10 100%);
}

.release-sale-card__art--jade {
  background:
    radial-gradient(circle at 24% 24%, rgba(210, 240, 222, 0.24), transparent 18%),
    linear-gradient(135deg, #1d3d38, #577d74 55%, #102626 100%);
}

.release-sale-card__art--bronze {
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 190, 128, 0.22), transparent 16%),
    linear-gradient(135deg, #30150f, #8f4e2b 45%, #1f1010 100%);
}

.release-sale-card__art--paper {
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 248, 232, 0.36), transparent 18%),
    linear-gradient(135deg, #b8ac95, #ddd1ba 42%, #9f8c73 100%);
}

.release-sale-card__status {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(7, 12, 17, 0.62);
  color: #fff4e2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.release-sale-card__content {
  display: grid;
  gap: 12px;
}

.release-sale-card__content h5 {
  font-size: 18px;
  line-height: 1.2;
}

.release-sale-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.release-sale-card__pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 14px;
  background: rgba(213, 176, 113, 0.12);
  color: var(--gold-strong);
  font-size: 12px;
}

.release-sale-card__meta strong {
  color: #cf6158;
  font-size: 18px;
}

.action-tile.is-disabled,
.shortcut-card.is-disabled,
.quick-link.is-disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 232, 0.04),
    0 10px 20px rgba(2, 8, 13, 0.08);
}

.filter-select {
  position: relative;
}

.filter-select__trigger,
.filter-select__option {
  width: 100%;
  border: 1px solid var(--line-soft);
  color: var(--text);
  cursor: pointer;
}

.filter-select__trigger {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 248, 232, 0.07), rgba(255, 248, 232, 0.03)),
    rgba(255, 248, 232, 0.03);
  text-align: left;
}

.filter-select__text {
  display: grid;
  gap: 4px;
}

.filter-select__label {
  font-size: 11px;
  color: var(--text-soft);
}

.filter-select__text strong {
  font-size: 14px;
  font-weight: 600;
}

.filter-select__chevron {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: var(--gold-strong);
  transition: transform 180ms ease;
}

.filter-select__chevron svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.filter-select.is-open .filter-select__chevron {
  transform: rotate(180deg);
}

.filter-select__menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 3;
  display: grid;
  gap: 6px;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(12, 23, 32, 0.98), rgba(7, 15, 21, 0.98));
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.28);
}

.filter-select__option {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 248, 232, 0.04);
  text-align: left;
}

.filter-select__option.is-selected {
  background: rgba(213, 176, 113, 0.14);
  border-color: rgba(213, 176, 113, 0.26);
}

.market-card__top,
.row-card__top,
.wallet-card__top,
.notice-card__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.badge,
.trend,
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.badge {
  color: var(--gold-strong);
  border-color: rgba(213, 176, 113, 0.18);
  background: rgba(213, 176, 113, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 248, 232, 0.05);
}

.status-chip {
  color: #9ad3c5;
  border-color: rgba(79, 133, 122, 0.22);
  background: var(--jade-soft);
}

.trend {
  color: #ffb5a8;
  border-color: rgba(184, 78, 66, 0.24);
  background: var(--seal-soft);
}

.detail-hero {
  padding: 20px;
  border-radius: 30px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 248, 232, 0.05);
}

.detail-hero__art {
  height: 220px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(18, 79, 76, 0.9), rgba(191, 137, 63, 0.74) 60%, rgba(113, 42, 39, 0.92)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 40%);
}

.summary-tile h4,
.data-card h4 {
  margin: 14px 0 6px;
  font-size: 17px;
}

.summary-tile p,
.data-card p {
  margin: 0;
}

.summary-tile {
  min-height: 124px;
}

.spotlight-card h4,
.profile-strip h4 {
  margin: 0;
  font-size: 18px;
}

.spotlight-card__row,
.profile-strip__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.action-tile {
  min-height: 128px;
  display: grid;
  align-content: space-between;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

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

.shortcut-card {
  display: grid;
  gap: 14px;
  justify-items: start;
  align-content: start;
  min-height: 148px;
  padding: 18px 16px;
  border-radius: 22px;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(255, 248, 232, 0.09), rgba(255, 248, 232, 0.03)),
    rgba(255, 248, 232, 0.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 232, 0.05),
    0 18px 34px rgba(2, 8, 13, 0.14);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.shortcut-card__icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(213, 176, 113, 0.18), rgba(79, 133, 122, 0.18)),
    rgba(255, 248, 232, 0.05);
  border: 1px solid rgba(255, 248, 232, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 248, 232, 0.08);
}

.shortcut-card__body {
  display: grid;
  gap: 4px;
  align-content: start;
}

.shortcut-card__body strong {
  font-size: 16px;
  line-height: 1.25;
}

.shortcut-card__body p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.shortcut-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-strong);
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 430px) {
  .action-deck {
    grid-template-columns: 1fr;
  }

  .calendar-rail {
    grid-auto-columns: minmax(236px, 88%);
  }

  .trade-book-rail {
    grid-auto-columns: minmax(270px, 92%);
  }

  .vault-summary {
    grid-template-columns: 1fr;
    display: grid;
  }

  .filter-row {
    grid-template-columns: 1fr;
  }

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

  .release-day {
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 14px;
  }

  .release-day__header {
    grid-template-columns: 1fr;
  }

  .release-day__header h4 {
    font-size: 18px;
  }

  .release-sale-card {
    padding: 16px;
  }

  .release-sale-card__art {
    min-height: 180px;
  }
}

.action-tile--seal {
  background: linear-gradient(135deg, rgba(145, 54, 48, 0.72), rgba(78, 24, 24, 0.86));
}

.action-tile--jade {
  background: linear-gradient(135deg, rgba(49, 95, 88, 0.72), rgba(13, 41, 40, 0.86));
}

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

.timeline-item {
  padding: 16px;
}

.timeline-item__time {
  color: var(--gold-strong);
  font-weight: 700;
}

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

.ledger-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 248, 232, 0.04);
}

.route-list {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 240px;
  overflow: auto;
}

.route-list li {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 248, 232, 0.03);
  font-size: 12px;
  word-break: break-all;
}

.detail-block {
  padding: 14px;
  margin-top: 12px;
}

.detail-block__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.detail-block h3 {
  margin: 0;
  font-size: 16px;
}

.section-shell {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 26px;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(255, 248, 232, 0.06), rgba(255, 248, 232, 0.03)),
    rgba(255, 248, 232, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 232, 0.04),
    0 18px 38px rgba(2, 8, 13, 0.12);
}

.section-shell__header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.section-shell__header h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.section-shell__header p {
  margin: 8px 0 0;
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 36ch;
}

.pill {
  cursor: default;
}

.insight-card {
  padding: 14px;
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 13px;
}

.overlay[hidden] {
  display: none;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 9;
}

.overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 9, 14, 0.68);
  backdrop-filter: blur(6px);
}

.drawer {
  position: absolute;
  right: 28px;
  top: 28px;
  width: min(440px, calc(100vw - 32px));
  max-height: calc(100vh - 56px);
  overflow: auto;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(12, 23, 32, 0.98), rgba(7, 15, 21, 0.98));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.drawer__header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

@media (max-width: 1320px) {
  .workspace {
    grid-template-columns: 1fr;
  }

  .panel--atlas,
  .panel--detail {
    order: 2;
    position: static;
  }

  .experience-stage {
    order: 1;
  }
}

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

  .app-shell {
    width: min(100%, 460px);
  }
}

@media (max-width: 760px) {
  .scene {
    padding: 16px;
  }

  .quick-grid,
  .screen-grid,
  .screen--list .market-stack,
  .screen--list .notice-stack,
  .screen--list .row-stack,
  .summary-grid,
  .artifact-grid,
  .stats-grid,
  .flow-actions,
  .module-grid,
  .timeline,
  .ledger {
    grid-template-columns: 1fr;
  }

  .app-header__brand {
    width: 100%;
    align-items: start;
  }

  .device-topbar__seal {
    min-width: 60px;
    min-height: 60px;
    border-radius: 18px;
  }

  .bottom-dock {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 14px 12px 18px;
  }

  .tabbar__item {
    padding: 10px 4px;
    font-size: 12px;
  }

  .tabbar__icon {
    width: 36px;
    height: 36px;
  }
}

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