
  .about-shell.svelte-mgquiv {
    overflow: hidden;
  }

  .portrait-card.svelte-mgquiv {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 1.2rem;
    align-items: center;
    background:
      radial-gradient(circle at top left, rgba(255, 143, 107, 0.16), transparent 34%),
      radial-gradient(circle at bottom right, rgba(124, 216, 255, 0.12), transparent 42%),
      rgba(255, 255, 255, 0.025);
  }

  .portrait-badge.svelte-mgquiv {
    width: 128px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 28px;
    background:
      linear-gradient(145deg, rgba(255, 143, 107, 0.22), rgba(124, 216, 255, 0.2)),
      rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
  }

  .portrait-kicker.svelte-mgquiv {
    margin: 0 0 0.35rem;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
    font-weight: 700;
  }

  .portrait-copy.svelte-mgquiv h3:where(.svelte-mgquiv) {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.05;
  }

  .portrait-copy.svelte-mgquiv p:where(.svelte-mgquiv):last-child,
  .about-copy.svelte-mgquiv p:where(.svelte-mgquiv),
  .donate-note.svelte-mgquiv {
    margin: 0.8rem 0 0;
    color: var(--text-soft);
    line-height: 1.6;
  }

  .about-copy.svelte-mgquiv {
    display: grid;
    gap: 0.3rem;
  }

  .donate-shell.svelte-mgquiv {
    display: grid;
    gap: 0.8rem;
  }

  .donate-address.svelte-mgquiv {
    display: block;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    overflow-wrap: anywhere;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    font-family: var(--mono);
    font-size: 0.9rem;
  }

  .donate-copy.svelte-mgquiv {
    width: fit-content;
    min-height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, rgba(124, 216, 255, 0.16), rgba(242, 195, 105, 0.08));
    color: var(--text-main);
    border-radius: 999px;
    padding: 0 14px;
    cursor: pointer;
  }

  .donate-copy.svelte-mgquiv:hover {
    border-color: rgba(255, 255, 255, 0.22);
  }

  @media (max-width: 760px) {
    .portrait-card.svelte-mgquiv {
      grid-template-columns: 1fr;
    }
  }

  .sparkline-shell.svelte-pz5mwn {
    min-height: 180px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
  }

  svg.svelte-pz5mwn {
    display: block;
    width: 100%;
    height: 100%;
  }

  .sparkline-empty.svelte-pz5mwn {
    min-height: 180px;
    display: grid;
    place-items: center;
    color: var(--text-soft);
    font-size: 0.95rem;
  }

  .tabs-wrap.svelte-azdfh7 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
  }

  button.svelte-azdfh7 {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    border-radius: 22px;
    padding: 1rem 1rem 1.05rem;
    text-align: left;
    cursor: pointer;
    transition: transform 120ms ease, border-color 120ms ease, background 120ms ease;
  }

  button.svelte-azdfh7:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.18);
  }

  button.active.svelte-azdfh7 {
    border-color: rgba(124, 204, 255, 0.4);
    background: linear-gradient(135deg, rgba(124, 204, 255, 0.16), rgba(242, 195, 105, 0.08));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  strong.svelte-azdfh7,
  span.svelte-azdfh7 {
    display: block;
  }

  strong.svelte-azdfh7 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
  }

  span.svelte-azdfh7 {
    color: var(--text-soft);
    font-size: 0.84rem;
  }

  @media (max-width: 760px) {
    .tabs-wrap.svelte-azdfh7 {
      grid-template-columns: 1fr;
    }
  }
:root {
  color-scheme: dark;
  --bg: #09111c;
  --bg-2: #0d1726;
  --surface: rgba(10, 18, 31, 0.88);
  --surface-strong: rgba(15, 24, 41, 0.96);
  --surface-soft: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text-main: #edf3ff;
  --text-soft: #9db0cb;
  --text-faint: #6e81a1;
  --accent-cold: #7cd8ff;
  --accent-warm: #f2c369;
  --accent-danger: #ff8f6b;
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 30px 90px rgba(3, 8, 18, 0.4);
  --mono: "IBM Plex Mono", "SFMono-Regular", monospace;
  --sans: "Space Grotesk", system-ui, sans-serif;
}

html {
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(124, 216, 255, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(242, 195, 105, 0.14), transparent 26%),
    linear-gradient(180deg, #07101a 0%, #09111c 46%, #060c15 100%);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text-main);
  font-family: var(--sans);
  background: transparent;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

.app-shell {
  max-width: 1360px;
  margin: 0 auto;
  padding: 24px;
  display: grid;
  gap: 20px;
}

.surface {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.topbar,
.hero,
.strategy-shell,
.replay-shell {
  padding: 24px;
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(124, 216, 255, 0.18), rgba(242, 195, 105, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
  letter-spacing: 0.14em;
}

.brand-copy h1,
.empty-state h1 {
  margin: 0.25rem 0 0.5rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.98;
}

.brand-copy p,
.hero-copy p,
.empty-state p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 72ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
  color: #d4e8ff;
  background: rgba(124, 216, 255, 0.08);
  border: 1px solid rgba(124, 216, 255, 0.18);
}

.meta-pile,
.meta-stack {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.sub-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--text-soft);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
}

.hero {
  display: grid;
  gap: 1rem;
}

.summary-grid,
.hero-kpis,
.metric-grid,
.replay-list-grid {
  display: grid;
  gap: 1rem;
}

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

.summary-card,
.kpi-card,
.metric-tile,
.panel-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-card,
.kpi-card,
.metric-tile {
  padding: 18px;
}

.summary-card span,
.kpi-card span,
.metric-tile strong,
.section-head span {
  display: block;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.74rem;
  font-weight: 700;
}

.summary-card strong,
.kpi-card strong,
.metric-tile span {
  display: block;
  margin-top: 0.55rem;
  font-size: clamp(1.3rem, 3vw, 2.15rem);
  line-height: 1.05;
}

.summary-card small,
.kpi-card small,
.metric-tile small,
.chart-caption,
.footnote {
  display: block;
  margin-top: 0.5rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.strategy-head,
.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.strategy-head h2,
.section-head h3 {
  margin: 0.45rem 0 0.35rem;
}

.strategy-head p {
  margin: 0;
  max-width: 72ch;
  color: var(--text-soft);
}

.signal-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-radius: 999px;
  padding: 0 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid var(--border-strong);
}

.tone-bull {
  color: #c9f7ff;
  background: rgba(124, 216, 255, 0.12);
}

.tone-bear {
  color: #ffd9cc;
  background: rgba(255, 143, 107, 0.12);
}

.tone-watch {
  color: #ffe0ac;
  background: rgba(242, 195, 105, 0.12);
}

.tone-neutral {
  color: #d9e1f5;
  background: rgba(146, 162, 216, 0.12);
}

.tone-good {
  border-color: rgba(124, 216, 255, 0.16);
}

.tone-warn {
  border-color: rgba(242, 195, 105, 0.16);
}

.tone-bad {
  border-color: rgba(255, 143, 107, 0.16);
}

.hero-kpis,
.metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.strategy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(340px, 0.95fr);
  gap: 1rem;
  margin-top: 1rem;
}

.stack-col,
.side-col {
  display: grid;
  gap: 1rem;
}

.panel-card {
  padding: 18px;
}

.detail-list,
.bullet-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.bullet-list li {
  color: var(--text-soft);
  line-height: 1.55;
  padding-left: 1rem;
  position: relative;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-cold), var(--accent-warm));
}

.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.detail-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.detail-row strong {
  display: block;
}

.detail-row small {
  color: var(--text-faint);
}

.detail-row span {
  text-align: right;
  font-family: var(--mono);
  color: var(--text-main);
}

.signal-banner {
  border-radius: var(--radius-lg);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin: 1rem 0;
}

.signal-banner small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  color: var(--text-faint);
}

.signal-banner strong {
  display: block;
  margin-top: 0.45rem;
  font-size: clamp(1.2rem, 2.8vw, 1.9rem);
}

.signal-banner p {
  margin: 0.45rem 0 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.replay-list-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.empty-state {
  padding: 36px;
}

@media (max-width: 1080px) {
  .summary-grid,
  .hero-kpis,
  .metric-grid,
  .replay-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .topbar,
  .hero,
  .strategy-shell,
  .replay-shell {
    padding: 18px;
  }

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

  .meta-pile {
    justify-content: flex-start;
  }

  .summary-grid,
  .hero-kpis,
  .metric-grid,
  .replay-list-grid {
    grid-template-columns: 1fr;
  }
}
