@import "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap";
/* [project]/app/globals.css [app-client] (css) */
:root {
  --bg: #09090c;
  --surface: #0f0f14;
  --surface-2: #14141a;
  --surface-3: #1a1a22;
  --border: #25252e;
  --border-subtle: #1e1e26;
  --border-bright: #333340;
  --text: #f2f2f5;
  --text-2: #9494a0;
  --text-3: #5f5f6e;
  --accent: #c8ff4d;
  --accent-dim: #a4d638;
  --accent-glow: #c8ff4d14;
  --red: #ff6b7a;
  --red-dim: #c44052;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --ease: cubic-bezier(.25, .46, .45, .94);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(ellipse 80% 50% at 50% -20%, #12121a 0%, var(--bg) 60%);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.5;
}

.mono, .entry-row .mono, .terminal-market strong, .focus-main > b, .metric-grid strong, .market-price {
  font-variant-numeric: tabular-nums;
}

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

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

.shell {
  width: min(1280px, 100% - 80px);
  margin: 0 auto;
}

.mono {
  font-family: var(--font-mono);
  letter-spacing: -.02em;
  font-size: 13px;
}

.positive {
  color: var(--accent) !important;
}

.negative {
  color: var(--red) !important;
}

.nav-shell {
  z-index: 20;
  border-bottom: 1px solid var(--border-subtle);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: #0a0a0bd9;
  position: sticky;
  top: 0;
}

.nav {
  justify-content: space-between;
  align-items: center;
  height: 72px;
  display: flex;
}

.brand {
  letter-spacing: -.03em;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
}

.brand-mark {
  border: 1px solid var(--border);
  width: 32px;
  height: 32px;
  color: var(--accent);
  font-family: var(--font-mono);
  border-radius: 8px;
  place-items: center;
  font-size: 14px;
  display: grid;
}

.brand em {
  font: 500 10px var(--font-mono);
  color: var(--text-3);
  letter-spacing: .05em;
  font-style: normal;
}

.nav nav {
  gap: 32px;
  display: flex;
}

.nav nav a {
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
  transition: color .15s;
}

.nav nav a:hover, .nav nav a.active {
  color: var(--text);
}

.wallet {
  background: var(--accent);
  color: #0a0a0b;
  border-radius: 8px;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 600;
  transition: opacity .15s;
  display: inline-flex;
}

.wallet:hover {
  opacity: .9;
}

.wallet.connected {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 13px;
}

.wallet-dot {
  background: var(--accent);
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

.wallet-error {
  border: 1px solid var(--red);
  color: #ffb0b8;
  background: #1a0d10;
  border-radius: 6px;
  max-width: 300px;
  padding: 10px 14px;
  font-size: 12px;
  position: absolute;
  top: 48px;
  right: 0;
}

.wallet-wrap {
  position: relative;
}

.ticker-strip {
  border-bottom: 1px solid var(--border-subtle);
  background: var(--surface);
}

.ticker-inner {
  height: 44px;
  font-family: var(--font-mono);
  color: var(--text-2);
  align-items: center;
  gap: 40px;
  font-size: 13px;
  display: flex;
  overflow: hidden;
}

.network {
  color: var(--accent);
  letter-spacing: .02em;
  font-size: 12px;
  font-weight: 500;
}

.network i {
  background: var(--accent);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  display: inline-block;
}

.ticker strong {
  color: var(--text);
  font-weight: 500;
}

.ticker small {
  color: var(--text-3);
  font-size: 11px;
}

.ticker.push {
  color: var(--text-3);
  margin-left: auto;
  font-size: 12px;
}

.hero {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 120px 0 100px;
  display: grid;
}

.eyebrow {
  color: var(--text-2);
  font-family: var(--font-mono);
  align-items: center;
  gap: 8px;
  font-size: 12px;
  display: inline-flex;
}

.eyebrow > span {
  border: 1px solid var(--border);
  color: var(--accent);
  border-radius: 99px;
  padding: 4px 10px;
  font-size: 11px;
}

.hero h1 {
  letter-spacing: -.04em;
  margin: 24px 0;
  font-size: clamp(48px, 4.5vw, 72px);
  font-weight: 700;
  line-height: 1.02;
}

.hero h1 span {
  color: var(--text-2);
}

.hero-copy > p {
  max-width: 520px;
  color: var(--text-2);
  font-size: 18px;
  line-height: 1.6;
}

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

.button {
  border-radius: 8px;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 600;
  transition: background .15s, border-color .15s;
  display: inline-flex;
}

.button.primary {
  background: var(--accent);
  color: #0a0a0b;
}

.button.primary:hover {
  background: var(--accent-dim);
}

.button.ghost {
  border: 1px solid var(--border);
  color: var(--text-2);
}

.button.ghost:hover {
  border-color: var(--text-3);
  color: var(--text);
}

.metric-grid article, .market-detail-card, .rule-grid article, .flow-grid article {
  transition: background .2s var(--ease), border-color .2s var(--ease);
}

.metric-grid article:hover, .market-detail-card:hover {
  background: var(--surface-2);
}

.entry-row {
  border-left: 2px solid #0000;
}

.entry-row:hover {
  border-left-color: var(--accent);
  background: var(--surface-2);
}

.network i, .terminal-head em i, .market-detail-card > div:first-child > em i {
  animation: 2s ease-in-out infinite pulse-dot;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 var(--accent-glow);
  }

  50% {
    opacity: .6;
    box-shadow: 0 0 0 4px var(--accent-glow);
  }
}

[role="tabpanel"] {
  animation: panel-in .3s var(--ease);
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rank.gold {
  box-shadow: 0 0 16px #c8ff4d40;
}

.nav nav a {
  padding: 4px 0;
  position: relative;
}

.nav nav a.active:after {
  content: "";
  background: var(--accent);
  border-radius: 1px;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
}

.action.buy {
  background: #c8ff4d0f;
}

.action.sell {
  background: #ff6b7a0f;
}

.workspace-tabs a:focus-visible, .button:focus-visible, .wallet:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.recharts-cartesian-grid line {
  stroke: var(--border-subtle);
}

.scroll-reveal {
  opacity: 0;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transform: translateY(40px);
}

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

.scroll-reveal-left {
  opacity: 0;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transform: translateX(-60px);
}

.scroll-reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-right {
  opacity: 0;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transform: translateX(60px);
}

.scroll-reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.scroll-scale {
  opacity: 0;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transform: scale(.92);
}

.scroll-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

.stagger > * {
  opacity: 0;
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transform: translateY(30px);
}

.stagger.revealed > :first-child {
  transition-delay: 0s;
}

.stagger.revealed > :nth-child(2) {
  transition-delay: .1s;
}

.stagger.revealed > :nth-child(3) {
  transition-delay: .2s;
}

.stagger.revealed > :nth-child(4) {
  transition-delay: .3s;
}

.stagger.revealed > :nth-child(5) {
  transition-delay: .4s;
}

.stagger.revealed > :nth-child(6) {
  transition-delay: .5s;
}

.stagger.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.float {
  animation: 6s ease-in-out infinite float;
}

.float-delayed {
  animation: 6s ease-in-out 2s infinite float;
}

@keyframes stat-glow {
  0%, 100% {
    box-shadow: 0 0 #c8ff4d00;
  }

  50% {
    box-shadow: 0 0 30px #c8ff4d26;
  }
}

.stat-glow {
  animation: 4s ease-in-out infinite stat-glow;
}

@keyframes draw-line {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.draw-line {
  animation: draw-line 1.5s var(--ease) forwards;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.shimmer {
  background: linear-gradient(90deg, var(--text) 25%, var(--accent) 50%, var(--text) 75%);
  color: #0000;
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: 3s linear infinite shimmer;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

.marquee-track {
  gap: 60px;
  animation: 30s linear infinite marquee;
  display: flex;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes rotate-slow {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.rotate-slow {
  animation: 20s linear infinite rotate-slow;
}

.grid-bg {
  position: relative;
}

.grid-bg:before {
  content: "";
  background-image: linear-gradient(var(--border-subtle) 1px, transparent 1px), linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
  pointer-events: none;
  background-size: 80px 80px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: radial-gradient(#000 30%, #0000 70%);
  mask-image: radial-gradient(#000 30%, #0000 70%);
}

.glow-orb {
  filter: blur(80px);
  opacity: .4;
  pointer-events: none;
  border-radius: 50%;
  position: absolute;
}

.process-line {
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
  pointer-events: none;
  width: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
}

.big-stat {
  font-family: var(--font-mono);
  letter-spacing: -.04em;
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 500;
  line-height: 1;
}

.feature-icon {
  border: 1px solid var(--border);
  width: 48px;
  height: 48px;
  color: var(--accent);
  background: var(--surface-2);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  border-radius: 12px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature-card:hover .feature-icon {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px #c8ff4d26;
}

.feature-card {
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
  border-radius: 12px;
  padding: 36px;
}

.feature-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
}

.section-label {
  transform-origin: 0;
  color: var(--text-3);
  font-family: var(--font-mono);
  letter-spacing: .3em;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 11px;
  position: absolute;
  top: 50%;
  left: -12px;
  transform: rotate(-90deg)translateX(-50%);
}

.split-section {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  display: grid;
}

.marquee-stat {
  white-space: nowrap;
  align-items: baseline;
  gap: 8px;
  display: flex;
}

.marquee-stat strong {
  font-family: var(--font-mono);
  color: var(--text);
  font-size: 28px;
  font-weight: 500;
}

.marquee-stat span {
  color: var(--text-3);
  font-size: 13px;
}

.timeline-dot {
  border: 2px solid var(--accent);
  background: var(--bg);
  z-index: 1;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  position: relative;
}

.timeline-dot:after {
  content: "";
  border: 1px solid #c8ff4d4d;
  border-radius: 50%;
  animation: 2s ease-in-out infinite pulse-dot;
  position: absolute;
  inset: -4px;
}

.decision-board::-webkit-scrollbar {
  height: 4px;
}

.decision-board::-webkit-scrollbar-track {
  background: var(--surface);
}

.decision-board::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

.proof-row {
  color: var(--text-3);
  font-family: var(--font-mono);
  gap: 24px;
  margin-top: 36px;
  font-size: 12px;
  display: flex;
}

.proof-row span {
  align-items: center;
  gap: 6px;
  display: flex;
}

.proof-row svg {
  color: var(--text-3);
}

.arena-terminal {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
}

.terminal-head {
  border-bottom: 1px solid var(--border-subtle);
  height: 52px;
  font-family: var(--font-mono);
  color: var(--text-2);
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  font-size: 12px;
  display: flex;
}

.terminal-head strong {
  font-weight: 500;
}

.terminal-head em {
  color: var(--accent);
  font-size: 11px;
  font-style: normal;
}

.terminal-head em i {
  background: var(--accent);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  margin-right: 6px;
  display: inline-block;
}

.terminal-dots {
  gap: 6px;
  margin-right: 16px;
  display: flex;
}

.terminal-dots i {
  background: var(--border);
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.terminal-market {
  border-bottom: 1px solid var(--border-subtle);
  grid-template-columns: 1fr 1fr .6fr;
  display: grid;
}

.terminal-market > div {
  border-right: 1px solid var(--border-subtle);
  padding: 20px;
}

.terminal-market > div:last-child {
  border: none;
}

.terminal-market span, .terminal-market strong, .terminal-market small {
  display: block;
}

.terminal-market span {
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 11px;
}

.terminal-market strong {
  font-family: var(--font-mono);
  margin: 8px 0 4px;
  font-size: 20px;
  font-weight: 500;
}

.terminal-market small {
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 11px;
}

.terminal-focus {
  padding: 24px;
}

.focus-label {
  color: var(--text-3);
  font-family: var(--font-mono);
  justify-content: space-between;
  font-size: 10px;
  display: flex;
}

.focus-main {
  align-items: center;
  gap: 16px;
  margin: 20px 0;
  display: flex;
}

.agent-avatar {
  border: 1px solid var(--border);
  width: 44px;
  height: 44px;
  color: var(--accent);
  border-radius: 10px;
  place-items: center;
  display: grid;
}

.focus-main > div {
  flex: 1;
}

.focus-main strong {
  font-size: 16px;
  font-weight: 600;
  display: block;
}

.focus-main small {
  color: var(--text-3);
  font-family: var(--font-mono);
  margin-top: 2px;
  font-size: 11px;
  display: block;
}

.focus-main > b {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 500;
}

.terminal-ranks {
  border-top: 1px solid var(--border-subtle);
}

.terminal-ranks > div {
  border-bottom: 1px solid var(--border-subtle);
  min-height: 48px;
  font-family: var(--font-mono);
  grid-template-columns: 30px 1fr 1fr 60px;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  display: grid;
}

.terminal-ranks > div:last-child {
  border: none;
}

.terminal-ranks span {
  color: var(--text-3);
}

.terminal-ranks strong {
  color: var(--text-2);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
  overflow: hidden;
}

.terminal-ranks > div > i {
  background: var(--border);
  border-radius: 2px;
  height: 2px;
  overflow: hidden;
}

.terminal-ranks > div > i b {
  background: var(--accent);
  height: 100%;
  display: block;
}

.terminal-ranks em {
  text-align: right;
  font-style: normal;
}

.terminal-foot {
  min-height: 48px;
  color: var(--text-3);
  font-family: var(--font-mono);
  border-top: 1px solid var(--border-subtle);
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  font-size: 11px;
  display: flex;
}

.terminal-foot span {
  align-items: center;
  gap: 6px;
  display: flex;
}

.principles {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.principle-grid {
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}

.principle-grid article {
  border-right: 1px solid var(--border-subtle);
  padding: 32px 28px;
}

.principle-grid article:last-child {
  border: none;
}

.principle-grid b {
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 11px;
}

.principle-grid span {
  color: var(--text-3);
  font-family: var(--font-mono);
  margin-top: 16px;
  font-size: 11px;
  display: block;
}

.principle-grid strong {
  margin-top: 8px;
  font-size: 22px;
  font-weight: 600;
  display: block;
}

.principle-grid small {
  color: var(--text-3);
  margin-top: 4px;
  font-size: 13px;
  display: block;
}

.arena-section {
  padding: 100px 0;
}

.section-heading {
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 48px;
  display: flex;
}

.kicker {
  color: var(--text-2);
  font-family: var(--font-mono);
  align-items: center;
  gap: 8px;
  font-size: 12px;
  display: inline-flex;
}

.kicker svg {
  color: var(--accent);
}

.section-heading h2 {
  letter-spacing: -.03em;
  margin: 12px 0 8px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
}

.section-heading p {
  color: var(--text-2);
  max-width: 600px;
  font-size: 15px;
}

.countdown {
  border: 1px solid var(--border);
  border-radius: 10px;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  display: flex;
}

.countdown > svg {
  color: var(--accent);
}

.countdown span {
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 11px;
  display: block;
}

.countdown strong {
  font-family: var(--font-mono);
  margin-top: 4px;
  font-size: 16px;
  font-weight: 500;
  display: block;
}

.notice {
  border: 1px solid var(--red);
  color: #ffabb3;
  background: #140a0c;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 14px 18px;
  font-size: 14px;
}

.workspace-tabs {
  scrollbar-width: none;
  border: 1px solid var(--border);
  background: var(--surface);
  isolation: isolate;
  border-radius: 10px;
  gap: 0;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  position: relative;
  overflow-x: auto;
}

.workspace-tabs::-webkit-scrollbar {
  display: none;
}

.workspace-tabs button {
  height: 44px;
  color: var(--text-2);
  border-right: 1px solid var(--border-subtle);
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 500;
  transition: color .15s, background .15s;
  display: inline-flex;
}

.workspace-tabs button:last-child {
  border: none;
}

.workspace-tabs button:hover {
  color: var(--text);
}

.workspace-tabs button.active {
  color: var(--accent);
  background: var(--surface-2);
}

.workspace-tabs button svg {
  opacity: .6;
}

.workspace-tabs a {
  z-index: 1;
  height: 44px;
  color: var(--text-2);
  border-right: 1px solid var(--border-subtle);
  transition: color .22s var(--ease);
  flex: none;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  position: relative;
}

.workspace-tabs a:last-child {
  border: none;
}

.workspace-tabs a:hover {
  color: var(--text);
}

.workspace-tabs a.active {
  color: var(--accent);
  background: none;
}

.workspace-tabs a svg {
  opacity: .6;
}

.workspace-tabs a.active svg {
  opacity: 1;
}

.arena-tab-indicator {
  z-index: 0;
  border: 1px solid var(--border-bright);
  background: var(--surface-3);
  opacity: 0;
  pointer-events: none;
  transition: width .3s var(--ease), transform .3s var(--ease), opacity .18s ease;
  border-radius: 7px;
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
}

.arena-tab-indicator:after {
  content: "";
  background: var(--accent);
  border-radius: 2px;
  height: 2px;
  position: absolute;
  bottom: -5px;
  left: 12px;
  right: 12px;
}

.arena-tab-indicator.ready {
  opacity: 1;
}

.arena-route-transition {
  animation: arena-route-in .28s var(--ease) both;
}

@keyframes arena-route-in {
  from {
    opacity: 0;
    transform: translateY(7px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.metric-grid {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px 12px 0 0;
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}

.metric-grid article {
  border-right: 1px solid var(--border-subtle);
  padding: 28px;
}

.metric-grid article:last-child {
  border: none;
}

.metric-grid span {
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 11px;
  display: block;
}

.metric-grid strong {
  font-family: var(--font-mono);
  margin: 12px 0 6px;
  font-size: 26px;
  font-weight: 500;
  display: block;
}

.metric-grid small {
  color: var(--text-3);
  font-size: 12px;
  display: block;
}

.arena-grid {
  grid-template-columns: 1fr 340px;
  display: grid;
}

.leaderboard-card, .activity-card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-top: none;
}

.leaderboard-card {
  border-radius: 0 0 0 12px;
}

.activity-card {
  border-left: none;
  border-radius: 0 0 12px;
}

.card-head {
  border-bottom: 1px solid var(--border-subtle);
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
  padding: 0 20px;
  display: flex;
}

.card-head > div:first-child {
  align-items: center;
  gap: 10px;
  display: flex;
}

.card-head svg {
  color: var(--accent);
}

.card-head strong {
  font-size: 15px;
  font-weight: 600;
}

.card-head span {
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 11px;
}

.ranking-tabs {
  border: 1px solid var(--border);
  border-radius: 6px;
  gap: 2px;
  padding: 4px;
  display: flex;
}

.ranking-tabs button {
  color: var(--text-3);
  font-family: var(--font-mono);
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 12px;
}

.ranking-tabs button.active {
  color: var(--text);
  background: var(--surface-2);
}

.table-row {
  grid-template-columns: 60px 1.6fr .8fr 1fr .9fr .8fr;
  align-items: center;
  display: grid;
}

.table-head {
  border-bottom: 1px solid var(--border-subtle);
  height: 40px;
  color: var(--text-3);
  font-family: var(--font-mono);
  padding: 0 20px;
  font-size: 11px;
}

.entry-row {
  border-bottom: 1px solid var(--border-subtle);
  min-height: 76px;
  padding: 0 20px;
  transition: background .15s;
}

.entry-row:last-child {
  border: none;
}

.entry-row:hover {
  background: var(--surface-2);
}

.rank {
  width: 28px;
  height: 28px;
  color: var(--text-2);
  font-family: var(--font-mono);
  border-radius: 6px;
  place-items: center;
  font-size: 13px;
  display: grid;
}

.rank.gold {
  background: var(--accent);
  color: #0a0a0b;
  font-weight: 600;
}

.rank.silver {
  color: #0a0a0b;
  background: #c8cad0;
}

.rank.bronze {
  color: #d4a574;
  background: #4a3828;
}

.agent-cell {
  align-items: center;
  gap: 12px;
  display: flex;
}

.agent-cell > i {
  border: 1px solid var(--border);
  width: 36px;
  height: 36px;
  color: var(--text-2);
  font-family: var(--font-mono);
  border-radius: 8px;
  place-items: center;
  font-size: 12px;
  font-style: normal;
  display: grid;
}

.agent-cell strong {
  font-size: 15px;
  font-weight: 500;
  display: block;
}

.agent-cell small {
  color: var(--text-3);
  font-family: var(--font-mono);
  margin-top: 2px;
  font-size: 11px;
  display: block;
}

.agent-cell a:hover {
  color: var(--accent);
}

.entry-row code {
  border: 1px solid var(--border);
  color: var(--text-2);
  font-family: var(--font-mono);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 11px;
}

.entry-row .mono {
  font-family: var(--font-mono);
  font-size: 14px;
}

.return {
  font-family: var(--font-mono);
  align-items: center;
  gap: 4px;
  font-size: 14px;
  display: flex;
}

.muted {
  color: var(--text-2);
}

.empty {
  color: var(--text-3);
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 60px;
  font-size: 14px;
  display: flex;
}

.activity-card .card-head em {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-style: normal;
}

.activity-list {
  padding: 0 16px;
}

.activity-item {
  border-bottom: 1px solid var(--border-subtle);
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  display: grid;
}

.activity-item:last-child {
  border: none;
}

.action {
  text-align: center;
  border: 1px solid var(--border);
  width: 46px;
  color: var(--text-2);
  font-family: var(--font-mono);
  border-radius: 5px;
  padding: 6px 0;
  font-size: 11px;
}

.action.buy {
  color: var(--accent);
  border-color: #3a4a1e;
}

.action.sell {
  color: var(--red);
  border-color: #3a1a20;
}

.activity-item strong {
  font-size: 14px;
  font-weight: 500;
  display: block;
}

.activity-item small {
  color: var(--text-3);
  font-family: var(--font-mono);
  margin-top: 2px;
  font-size: 11px;
  display: block;
}

.activity-item time {
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 11px;
}

.activity-empty {
  color: var(--text-3);
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 60px 20px;
  font-size: 14px;
  display: flex;
}

.tape-foot {
  min-height: 44px;
  color: var(--text-3);
  font-family: var(--font-mono);
  border-top: 1px solid var(--border-subtle);
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  font-size: 11px;
  display: flex;
}

.performance-layout {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  grid-template-columns: 1fr 340px;
  display: grid;
  overflow: hidden;
}

.performance-card {
  border-right: 1px solid var(--border-subtle);
}

.workspace-card-head {
  border-bottom: 1px solid var(--border-subtle);
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
  padding: 0 20px;
  display: flex;
}

.workspace-card-head > div:first-child {
  align-items: center;
  gap: 10px;
  display: flex;
}

.workspace-card-head svg {
  color: var(--accent);
}

.workspace-card-head strong {
  font-size: 15px;
  font-weight: 600;
}

.workspace-card-head small {
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 11px;
}

.workspace-card-head > em {
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 11px;
  font-style: normal;
}

.chart-wrap {
  height: 380px;
  padding: 24px 16px 8px;
}

.chart-wrap .recharts-default-tooltip {
  border-radius: 8px;
  border: 1px solid var(--border) !important;
  background: var(--surface-2) !important;
  color: var(--text) !important;
  font-family: var(--font-mono) !important;
  font-size: 12px !important;
}

.chart-empty {
  height: 100%;
  color: var(--text-3);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  display: flex;
}

.chart-empty strong {
  color: var(--text-2);
  font-size: 15px;
}

.chart-empty span {
  font-size: 13px;
}

.chart-legend {
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  min-height: 52px;
  padding: 0 24px;
  display: flex;
}

.chart-legend span {
  color: var(--text-2);
  font-family: var(--font-mono);
  align-items: center;
  gap: 8px;
  font-size: 12px;
  display: flex;
}

.chart-legend i {
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.performance-summary {
  background: var(--surface);
}

.summary-list {
  padding: 0 20px;
}

.summary-list article {
  border-bottom: 1px solid var(--border-subtle);
  padding: 20px 0;
}

.summary-list article:last-child {
  border: none;
}

.summary-list article > div {
  justify-content: space-between;
  display: flex;
}

.summary-list article > div span {
  font-size: 14px;
  font-weight: 500;
}

.summary-list article > div em {
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 11px;
  font-style: normal;
}

.summary-list article > strong {
  font-family: var(--font-mono);
  margin: 8px 0 4px;
  font-size: 20px;
  font-weight: 500;
  display: block;
}

.summary-list article > small {
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 11px;
}

.summary-list article > i {
  background: var(--border);
  border-radius: 2px;
  height: 2px;
  margin-top: 12px;
  display: block;
}

.summary-list article > i b {
  border-radius: inherit;
  background: var(--accent);
  height: 100%;
  display: block;
}

.summary-note {
  border: 1px solid var(--border);
  color: var(--text-2);
  border-radius: 8px;
  align-items: flex-start;
  gap: 10px;
  margin: 20px;
  padding: 14px 16px;
  font-size: 12px;
  line-height: 1.5;
  display: flex;
}

.summary-note svg {
  color: var(--accent);
  flex-shrink: 0;
}

.decision-workspace {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  grid-template-columns: 1fr 340px;
  display: grid;
  overflow: hidden;
}

.decision-board {
  border-right: 1px solid var(--border-subtle);
}

.decision-filters {
  border: 1px solid var(--border);
  border-radius: 6px;
  gap: 2px;
  padding: 4px;
  display: flex;
}

.decision-filters button {
  color: var(--text-3);
  font-family: var(--font-mono);
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 11px;
}

.decision-filters button.active {
  color: #0a0a0b;
  background: var(--accent);
}

.decision-table-head, .decision-row {
  grid-template-columns: .7fr .6fr 1.4fr .8fr .8fr .6fr .5fr;
  align-items: center;
  column-gap: 16px;
  display: grid;
}

.order-columns {
  grid-template-columns: .6fr 1.3fr .8fr .6fr .9fr .8fr .8fr .9fr;
}

.decision-table-head {
  height: 40px;
  color: var(--text-3);
  font-family: var(--font-mono);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0 20px;
  font-size: 11px;
}

.decision-row {
  border-bottom: 1px solid var(--border-subtle);
  min-height: 64px;
  color: var(--text-2);
  font-family: var(--font-mono);
  padding: 0 20px;
  font-size: 13px;
}

.decision-row:last-child {
  border: none;
}

.decision-row:hover {
  background: var(--surface-2);
}

.decision-row strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  display: block;
}

.decision-row small {
  color: var(--text-3);
  margin-top: 2px;
  font-size: 11px;
  display: block;
}

.decision-row .action {
  display: inline-block;
}

.evidence-card {
  background: var(--surface);
  padding: 36px;
}

.evidence-card > svg {
  color: var(--accent);
}

.evidence-card .kicker {
  margin-top: 28px;
}

.evidence-card h3 {
  letter-spacing: -.02em;
  margin: 16px 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.evidence-card p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
}

.evidence-card ul {
  margin-top: 28px;
  list-style: none;
}

.evidence-card li {
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-2);
  font-family: var(--font-mono);
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  font-size: 12px;
  display: flex;
}

.evidence-card li i {
  background: var(--accent);
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

.markets-workspace {
  gap: 16px;
  display: grid;
}

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

.market-detail-card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  padding: 32px;
}

.market-detail-card > div:first-child {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.market-detail-card > div:first-child > em {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-style: normal;
}

.market-detail-card > div:first-child > em i {
  background: var(--accent);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  margin-right: 6px;
  display: inline-block;
}

.market-symbol {
  align-items: center;
  gap: 8px;
  display: flex;
}

.market-symbol > i {
  border: 1px solid var(--border);
  width: 32px;
  height: 32px;
  color: var(--text-2);
  font-family: var(--font-mono);
  border-radius: 8px;
  place-items: center;
  font-size: 14px;
  font-style: normal;
  display: grid;
}

.market-symbol strong {
  font-size: 16px;
  font-weight: 600;
}

.market-symbol small {
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 12px;
}

.market-price {
  font-family: var(--font-mono);
  letter-spacing: -.02em;
  margin: 32px 0 24px;
  font-size: 36px;
  font-weight: 500;
  display: block;
}

.market-book {
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  grid-template-columns: 1fr 1fr;
  display: grid;
  overflow: hidden;
}

.market-book > span {
  padding: 16px;
}

.market-book > span + span {
  border-left: 1px solid var(--border-subtle);
}

.market-book small, .market-book strong {
  display: block;
}

.market-book small {
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 11px;
}

.market-book strong {
  font-family: var(--font-mono);
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
}

.market-meta {
  color: var(--text-3);
  font-family: var(--font-mono);
  justify-content: space-between;
  margin-top: 20px;
  font-size: 12px;
  display: flex;
}

.market-meta b {
  color: var(--text-2);
  font-weight: 500;
}

.infra-grid {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 10px;
  grid-template-columns: repeat(4, 1fr);
  display: grid;
  overflow: hidden;
}

.infra-grid article {
  border-right: 1px solid var(--border-subtle);
  align-items: center;
  gap: 12px;
  min-height: 88px;
  padding: 0 20px;
  display: flex;
}

.infra-grid article:last-child {
  border: none;
}

.infra-grid svg {
  color: var(--text-2);
  flex-shrink: 0;
}

.infra-grid span {
  flex: 1;
  min-width: 0;
}

.infra-grid strong {
  font-size: 14px;
  font-weight: 500;
  display: block;
}

.infra-grid small {
  color: var(--text-3);
  font-family: var(--font-mono);
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 2px;
  font-size: 11px;
  display: block;
  overflow: hidden;
}

.infra-grid em {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
  font-style: normal;
}

.rules-workspace {
  gap: 16px;
  display: grid;
}

.rule-grid {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
  overflow: hidden;
}

.rule-grid article {
  border-right: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  min-height: 220px;
  padding: 28px;
  position: relative;
}

.rule-grid article:nth-child(3n) {
  border-right: none;
}

.rule-grid article:nth-last-child(-n+3) {
  border-bottom: none;
}

.rule-grid article > span {
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 11px;
  position: absolute;
  top: 24px;
  right: 24px;
}

.rule-grid svg {
  color: var(--accent);
}

.rule-grid small {
  color: var(--text-3);
  font-family: var(--font-mono);
  margin-top: 36px;
  font-size: 11px;
  display: block;
}

.rule-grid strong {
  font-family: var(--font-mono);
  margin-top: 10px;
  font-size: 26px;
  font-weight: 500;
  display: block;
}

.rule-grid p {
  color: var(--text-2);
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.5;
}

.lifecycle-card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 10px;
  padding: 28px;
}

.lifecycle-card > div {
  align-items: center;
  margin: 24px 0 16px;
  display: flex;
}

.lifecycle-card > div b {
  border: 1px solid var(--border);
  color: var(--text-2);
  font-family: var(--font-mono);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 11px;
}

.lifecycle-card > div i {
  border-top: 1px dashed var(--border);
  flex: 1;
}

.lifecycle-card p {
  color: var(--text-3);
  font-size: 13px;
}

.console-card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  grid-template-columns: .8fr 1.2fr;
  margin-top: 20px;
  display: grid;
  overflow: hidden;
}

.console-copy {
  border-right: 1px solid var(--border-subtle);
  padding: 40px;
}

.console-copy h3 {
  letter-spacing: -.02em;
  margin: 20px 0 16px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
}

.console-copy p {
  max-width: 400px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
}

.console-locked {
  color: var(--text-3);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 40px;
  display: flex;
}

.console-locked > svg {
  color: var(--text-3);
}

.console-locked strong {
  color: var(--text-2);
  font-size: 16px;
}

.console-locked span {
  max-width: 360px;
  font-size: 13px;
}

.console-controls {
  padding: 32px;
}

.console-controls form {
  grid-template-columns: 1.2fr .8fr auto;
  gap: 12px;
  display: grid;
}

.console-controls label {
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 11px;
}

.console-controls input {
  border: 1px solid var(--border);
  width: 100%;
  height: 44px;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-mono);
  border-radius: 8px;
  outline: none;
  margin-top: 8px;
  padding: 0 14px;
  font-size: 14px;
}

.console-controls input:focus {
  border-color: var(--accent);
}

.console-controls form button {
  background: var(--accent);
  color: #0a0a0b;
  border-radius: 8px;
  align-self: end;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
}

.my-agents {
  border-top: 1px solid var(--border-subtle);
  margin-top: 20px;
}

.my-agent {
  border-bottom: 1px solid var(--border-subtle);
  align-items: center;
  gap: 12px;
  min-height: 60px;
  display: flex;
}

.my-agent > i {
  width: 32px;
  height: 32px;
  color: var(--accent);
  border-radius: 8px;
  place-items: center;
  display: grid;
}

.my-agent > span {
  flex: 1;
}

.my-agent strong {
  font-size: 14px;
  font-weight: 500;
  display: block;
}

.my-agent small {
  color: var(--text-3);
  font-family: var(--font-mono);
  margin-top: 2px;
  font-size: 11px;
  display: block;
}

.my-agent button {
  border: 1px solid var(--border);
  color: var(--text-2);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 13px;
}

.my-agent button:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.agent-empty {
  color: var(--text-3);
  padding: 24px 0;
  font-size: 13px;
}

.console-message {
  color: var(--accent);
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 13px;
  display: flex;
}

.builder-section {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 120px 0;
}

.section-heading.editorial h2 {
  font-size: 48px;
  line-height: 1.1;
}

.section-heading.editorial > p {
  max-width: 480px;
  font-size: 16px;
  line-height: 1.6;
}

.flow-grid {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
  display: grid;
  overflow: hidden;
}

.flow-grid article {
  border-right: 1px solid var(--border-subtle);
  min-height: 280px;
  padding: 32px;
  position: relative;
}

.flow-grid article:last-child {
  border-right: none;
}

.flow-grid article > b {
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 11px;
}

.flow-grid article > svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
  margin-top: 44px;
  display: block;
}

.flow-grid .feature-card {
  border: none;
  border-right: 1px solid var(--border-subtle);
  background: none;
  border-radius: 0;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.flow-grid .feature-card:last-child {
  border-right: none;
}

.flow-grid .feature-card:hover {
  border-color: var(--border-subtle);
  background: var(--surface-2);
  transform: none;
}

.flow-grid .feature-icon svg {
  margin: 0;
}

.flow-grid h3 {
  margin: 24px 0 12px;
  font-size: 17px;
  font-weight: 600;
}

.flow-grid p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
}

.flow-grid article > span {
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 10px;
  position: absolute;
  bottom: 28px;
  left: 32px;
}

.protocol {
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 100px;
  padding: 120px 0;
  display: grid;
}

.protocol-intro h2 {
  letter-spacing: -.03em;
  margin: 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
}

.protocol-intro p {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.7;
}

.protocol-intro > a {
  color: var(--accent);
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
}

.proof-card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
}

.proof-head {
  height: 56px;
  color: var(--text-2);
  font-family: var(--font-mono);
  border-bottom: 1px solid var(--border-subtle);
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  font-size: 12px;
  display: flex;
}

.proof-head span {
  align-items: center;
  gap: 8px;
  display: flex;
}

.proof-head svg {
  color: var(--accent);
}

.proof-head em {
  color: var(--text-3);
  font-size: 11px;
  font-style: normal;
}

.proof-hash {
  border-bottom: 1px solid var(--border-subtle);
  padding: 36px 28px;
}

.proof-hash small, .proof-hash code {
  display: block;
}

.proof-hash small {
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 11px;
}

.proof-hash code {
  color: var(--accent);
  font-family: var(--font-mono);
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 12px;
  font-size: 16px;
  overflow: hidden;
}

.proof-detail {
  border-bottom: 1px solid var(--border-subtle);
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.proof-detail > span {
  border-right: 1px solid var(--border-subtle);
  padding: 20px;
}

.proof-detail > span:last-child {
  border: none;
}

.proof-detail small, .proof-detail strong {
  display: block;
}

.proof-detail small {
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 11px;
}

.proof-detail strong {
  color: var(--text-2);
  font-family: var(--font-mono);
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
}

.proof-chain {
  align-items: center;
  gap: 8px;
  min-height: 72px;
  padding: 0 24px;
  display: flex;
}

.proof-chain i {
  border: 1px solid var(--accent);
  border-radius: 3px;
  width: 10px;
  height: 10px;
}

.proof-chain span {
  color: var(--text-3);
  font-family: var(--font-mono);
  margin-left: auto;
  font-size: 11px;
}

.final-cta {
  text-align: center;
  padding: 140px 0;
}

.final-cta h2 {
  letter-spacing: -.04em;
  margin: 20px 0;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
}

.final-cta p {
  max-width: 640px;
  color: var(--text-2);
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

.final-cta .hero-actions {
  justify-content: center;
}

footer {
  border-top: 1px solid var(--border-subtle);
  color: var(--text-3);
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  font-size: 13px;
  display: flex;
}

footer > span {
  font-family: var(--font-mono);
  font-size: 12px;
}

.agent-detail-page {
  padding: 48px 0 100px;
}

.back-link {
  color: var(--text-2);
  align-items: center;
  gap: 8px;
  font-size: 14px;
  display: inline-flex;
}

.back-link:hover {
  color: var(--text);
}

.agent-hero-card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
  padding: 40px;
  display: grid;
}

.agent-avatar.large {
  border-radius: 16px;
  width: 72px;
  height: 72px;
}

.agent-hero-card h1 {
  letter-spacing: -.03em;
  margin: 12px 0;
  font-size: 42px;
  font-weight: 700;
}

.agent-hero-card p {
  max-width: 600px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
}

.agent-hero-stats {
  gap: 12px;
  display: grid;
}

.agent-hero-stats span {
  border: 1px solid var(--border);
  border-radius: 8px;
  gap: 6px;
  padding: 12px 16px;
  display: grid;
}

.agent-hero-stats small {
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 11px;
}

.agent-hero-stats strong {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
}

.detail-grid {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 10px;
  grid-template-columns: repeat(4, 1fr);
  margin: 20px 0;
  display: grid;
  overflow: hidden;
}

.detail-grid article {
  border-right: 1px solid var(--border-subtle);
  padding: 24px;
}

.detail-grid article:last-child {
  border: none;
}

.detail-grid small, .detail-grid strong, .detail-grid span {
  display: block;
}

.detail-grid small {
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 11px;
}

.detail-grid strong {
  font-family: var(--font-mono);
  margin: 12px 0 4px;
  font-size: 20px;
  font-weight: 500;
}

.detail-grid span {
  color: var(--text-3);
  font-size: 12px;
}

.detail-columns {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  grid-template-columns: 1fr 360px;
  display: grid;
  overflow: hidden;
}

.detail-side {
  border-left: 1px solid var(--border-subtle);
}

.run-list {
  padding: 0 20px;
}

.run-list article {
  border-bottom: 1px solid var(--border-subtle);
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 96px;
  display: grid;
}

.run-list article:last-child {
  border: none;
}

.run-list strong {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  display: block;
}

.run-list small {
  color: var(--text-2);
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.4;
  display: block;
}

.run-list time {
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 11px;
}

.balance-box {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin: 20px;
  padding: 20px;
}

.balance-box > div {
  border-bottom: 1px solid var(--border-subtle);
  min-height: 40px;
  font-family: var(--font-mono);
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  font-size: 13px;
  display: grid;
}

.balance-box > div:last-child {
  border: none;
}

.balance-box strong {
  color: var(--text-2);
  font-weight: 500;
}

.balance-box span {
  color: var(--text-2);
}

.balance-box em {
  color: #d4a574;
  font-size: 11px;
  font-style: normal;
}

.orders-workspace {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
}

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

  .arena-terminal {
    max-width: 700px;
  }
}

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

  .section-label {
    display: none;
  }

  .shell {
    width: calc(100% - 48px);
  }

  .performance-layout, .decision-workspace, .detail-columns {
    grid-template-columns: 1fr;
  }

  .performance-card, .decision-board {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }

  .detail-side {
    border-left: none;
    border-top: 1px solid var(--border-subtle);
  }

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

  .activity-card {
    border-left: none;
    border-radius: 0 0 12px 12px;
  }

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

  .console-copy {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }

  .protocol {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

  .infra-grid article:nth-child(2) {
    border-right: none;
  }

  .infra-grid article:nth-child(-n+2) {
    border-bottom: 1px solid var(--border-subtle);
  }
}

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

  .shell {
    width: calc(100% - 32px);
  }

  .hero {
    padding: 80px 0 60px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .section-heading.editorial h2, .protocol-intro h2 {
    font-size: 36px;
  }

  .principle-grid, .metric-grid, .flow-grid, .market-card-grid, .rule-grid {
    grid-template-columns: 1fr;
  }

  .principle-grid article, .metric-grid article, .flow-grid article, .rule-grid article {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }

  .principle-grid article:last-child, .metric-grid article:last-child, .flow-grid article:last-child, .rule-grid article:last-child {
    border-bottom: none;
  }

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

  .infra-grid article {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }

  .infra-grid article:last-child {
    border-bottom: none;
  }

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

  .detail-grid article:nth-child(2) {
    border-right: none;
  }

  .detail-grid article:nth-child(-n+2) {
    border-bottom: 1px solid var(--border-subtle);
  }

  .agent-hero-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .agent-hero-card h1 {
    font-size: 32px;
  }

  .table-head {
    display: none;
  }

  .table-row {
    grid-template-columns: 48px 1.5fr 1fr;
    padding: 0 12px;
  }

  .entry-row > span:nth-child(4), .entry-row > span:nth-child(5), .entry-row > span:nth-child(6) {
    display: none;
  }

  .decision-board {
    overflow-x: auto;
  }

  .decision-table-head, .decision-row {
    min-width: 700px;
  }

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

  .console-controls form button {
    justify-content: center;
  }

  .terminal-market {
    grid-template-columns: 1fr 1fr;
  }

  .terminal-market > div:nth-child(3) {
    display: none;
  }
}

@media (max-width: 480px) {
  .shell {
    width: calc(100% - 24px);
  }

  .brand em {
    display: none;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-copy > p {
    font-size: 15px;
  }

  .proof-row {
    flex-direction: column;
    gap: 10px;
  }

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

  .detail-grid article {
    border-right: none;
  }

  .terminal-ranks > div {
    grid-template-columns: 28px 1fr 50px;
  }

  .terminal-ranks > div > i {
    display: none;
  }

  .market-price {
    font-size: 28px;
  }

  .lifecycle-card > div {
    flex-wrap: wrap;
    gap: 8px;
  }

  .lifecycle-card > div i {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .arena-tab-indicator, .arena-route-transition {
    transition: none;
    animation: none;
  }
}

/*# sourceMappingURL=app_globals_0yg4wg8.css.map*/