/* [project]/apps/web/src/app/globals.css [app-client] (css) */
:root {
  --bg: #050507;
  --bg-elev: #0f1014;
  --bg-card: #15161c;
  --text: #f7f7f8;
  --muted: #b7bcc8;
  --accent: #ea580c;
  --border: #242833;
  --yes: #ea580c;
  --no: #5a5f74;
  --ok: #2bd67b;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  margin: 0;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.app {
  flex-direction: column;
  min-height: 100vh;
  display: flex;
}

main {
  flex: 1;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

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

.nav {
  border-bottom: 1px solid var(--border);
  z-index: 10;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #050507e6;
  position: sticky;
  top: 0;
}

.nav-inner {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  display: flex;
}

.logo {
  border: 1px solid var(--border);
  background: var(--bg-elev);
  color: var(--text);
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  font-weight: 600;
  display: inline-flex;
}

.nav-links {
  flex-wrap: wrap;
  gap: 14px;
  display: flex;
}

.nav-link {
  color: var(--text);
  border: 1px solid #0000;
  border-radius: 6px;
  padding: 6px 10px;
}

.nav-link.active, .nav-link:hover {
  border-color: var(--border);
  background: var(--bg-elev);
}

.nav-icon {
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  display: inline-flex;
}

.nav-icon svg {
  fill: currentColor;
  width: 18px;
  height: 18px;
}

.hero {
  text-align: center;
  padding: 64px 0 40px;
}

.hero-emoji {
  color: var(--accent);
  font-size: 64px;
  font-weight: 700;
}

.hero-logo {
  background: url("/molt.jpg") center / cover no-repeat;
  border-radius: 10rem;
  width: 100px;
  height: 100px;
  margin: 0 auto 6px;
}

h1 {
  margin: 12px 0 10px;
  font-size: clamp(28px, 4vw, 44px);
}

.subtitle {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
}

.toggle {
  border: 1px solid var(--border);
  background: var(--bg-elev);
  border-radius: 999px;
  gap: 10px;
  margin: 24px auto 0;
  padding: 6px;
  display: inline-flex;
}

.toggle button {
  font: inherit;
  color: var(--text);
  cursor: pointer;
  background: none;
  border: 1px solid #0000;
  border-radius: 999px;
  padding: 8px 14px;
}

.toggle button.active {
  background: var(--accent);
  color: #140901;
  font-weight: 700;
}

.card-link {
  width: 100%;
  max-width: 420px;
  height: 100%;
  display: block;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  flex-direction: column;
  gap: 6px;
  height: 100%;
  min-height: 260px;
  padding: 18px;
  display: flex;
  box-shadow: 0 0 0 1px #0f101499, 0 12px 24px #00000059;
}

.onboarding {
  max-width: 760px;
  margin: 0 auto 26px;
}

.code {
  border: 1px solid var(--border);
  color: var(--text);
  background: #0b0c10;
  border-radius: 8px;
  padding: 12px;
  overflow-x: auto;
}

.stats {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  justify-items: center;
  gap: 8px;
  max-width: 760px;
  margin: 0 auto 26px;
  display: grid;
}

.stat {
  text-align: center;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  padding: 16px;
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
}

.stat-label {
  color: var(--muted);
}

.section {
  text-align: center;
  margin: 0 auto 26px;
}

.section-head {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  display: flex;
}

.grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  justify-items: center;
  gap: 14px;
  margin: 0 auto;
  padding-bottom: 4rem;
  display: grid;
}

.market-title {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 44px;
  margin-bottom: 8px;
  font-weight: 600;
  display: -webkit-box;
  overflow: hidden;
}

.badge {
  border: 1px solid var(--border);
  color: var(--muted);
  background: #ea580c14;
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 12px;
  display: inline-flex;
}

.bar {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 999px;
  height: 8px;
  margin: 10px 0;
  overflow: hidden;
}

.bar-fill {
  background: var(--yes);
  height: 100%;
}

.meta {
  color: var(--muted);
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  display: flex;
}

.card-desc {
  color: var(--muted);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 36px;
  display: -webkit-box;
  overflow: hidden;
}

.card .meta {
  margin-top: auto;
}

.pred-item {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  text-align: left;
  border-radius: 10px;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  max-width: 420px;
  padding: 12px;
  display: flex;
}

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

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

.page-title {
  margin: 26px 0 6px;
  font-size: 28px;
}

.page-sub {
  color: var(--muted);
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  display: flex;
}

.filter-row {
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
  display: flex;
}

.search-box {
  width: 100%;
}

.search-box input {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  width: 100%;
  color: var(--text);
  font: inherit;
  border-radius: 10px;
  padding: 10px 12px;
}

.search-box input::placeholder {
  color: var(--muted);
}

.tag-bar {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.tag-pill {
  border: 1px solid var(--border);
  background: var(--bg-elev);
  color: var(--muted);
  font: inherit;
  cursor: pointer;
  border-radius: 999px;
  padding: 6px 12px;
}

.tag-pill.active {
  background: var(--accent);
  color: #140901;
  border-color: #0000;
  font-weight: 700;
}

.table {
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 100%;
  overflow: hidden;
}

.table th, .table td {
  text-align: left;
  border-bottom: 1px solid var(--border);
  padding: 12px 14px;
}

.table th {
  color: var(--muted);
  font-weight: 500;
}

.status {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 12px;
}

.status.active {
  color: var(--ok);
  background: #2bd67b1f;
}

.status.resolved {
  color: var(--muted);
  background: #0b0c10;
}

.chart-card {
  background: #2b2b2f;
  border: 1px solid #2f343d;
  border-radius: 14px;
  margin: 20px 0 24px;
  padding: 18px 18px 14px;
}

.chart-head {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.chart-prob {
  color: var(--accent);
  font-size: 28px;
  font-weight: 700;
}

.chart-label {
  color: var(--muted);
  text-transform: lowercase;
  font-size: 12px;
}

.chart-consensus {
  text-align: right;
}

.chart-consensus-value {
  color: var(--text);
  font-size: 14px;
}

.chart-area {
  background: #2a2a2f;
  border-radius: 12px;
  margin-top: 12px;
  padding: 8px 8px 2px;
}

.chart-area svg {
  width: 100%;
  height: 220px;
  display: block;
}

.chart-foot {
  color: var(--muted);
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 12px;
  display: flex;
}

.dot {
  background: var(--accent);
  border-radius: 999px;
  width: 10px;
  height: 10px;
}

.detail-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
  display: grid;
}

.agent-stats {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
  display: grid;
}

.agent-stats .card {
  text-align: center;
  align-items: center;
  min-height: 140px;
}

.section-title {
  margin-bottom: 10px;
  font-weight: 600;
}

.stack {
  gap: 10px;
  display: grid;
}

.prediction-row {
  border-bottom: 1px solid var(--border);
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  display: flex;
}

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

.prediction-agent {
  font-weight: 600;
}

.prediction-prob {
  color: var(--accent);
  font-weight: 700;
}

.comments-section {
  margin-bottom: 26px;
}

.comment {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
}

.comment-head {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  display: flex;
}

.comment-agent {
  font-weight: 600;
}

.comment-meta {
  align-items: center;
  gap: 8px;
  display: flex;
}

.comment-body {
  color: var(--text);
  margin-top: 8px;
}

.back-link {
  color: var(--accent);
  align-items: center;
  gap: 6px;
  margin: 12px 0 6px;
  font-size: 13px;
  display: inline-flex;
}

.footer-brand {
  align-items: center;
  gap: 8px;
  display: inline-flex;
}

.admin-section {
  margin-bottom: 28px;
}

.admin-form {
  gap: 12px;
  display: grid;
}

.admin-form label {
  color: var(--muted);
  gap: 6px;
  font-size: 13px;
  display: grid;
}

.admin-form input, .admin-form textarea, .admin-form select {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  color: var(--text);
  font: inherit;
  border-radius: 10px;
  padding: 10px 12px;
}

.admin-button {
  background: var(--accent);
  color: #140901;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  width: fit-content;
  padding: 10px 14px;
  font-weight: 700;
}

.admin-market-row {
  border: 1px solid var(--border);
  background: var(--bg-elev);
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px;
  display: flex;
}

.admin-market-title {
  font-weight: 600;
}

footer {
  border-top: 1px solid var(--border);
  background: var(--bg-elev);
  margin-top: auto;
  padding: 30px 0;
}

.footer-grid {
  color: var(--muted);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  display: grid;
}

.footer-title {
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 600;
}

.footer-note {
  color: var(--muted);
  margin-top: 18px;
}

@media (max-width: 640px) {
  .nav-inner {
    padding: 14px 0;
  }

  .hero {
    padding: 48px 0 32px;
  }

  .section-head {
    align-items: center;
  }

  .chart-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .table {
    display: block;
    overflow-x: auto;
  }
}

/* [next]/internal/font/google/jetbrains_mono_a21b44ef.module.css [app-client] (css) */
@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/04c5164763c40239-s.690580e8.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/26f284dcc38c84c0-s.303a03d6.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/7e7f32a39836f228-s.0b4edfe7.woff2") format("woff2");
  unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/fa39153a3fc630ba-s.bff0868b.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/6a5386fd6038edbe-s.719084df.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/051742360c26797e-s.p.102b7f24.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/04c5164763c40239-s.690580e8.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/26f284dcc38c84c0-s.303a03d6.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/7e7f32a39836f228-s.0b4edfe7.woff2") format("woff2");
  unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/fa39153a3fc630ba-s.bff0868b.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/6a5386fd6038edbe-s.719084df.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/051742360c26797e-s.p.102b7f24.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/04c5164763c40239-s.690580e8.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/26f284dcc38c84c0-s.303a03d6.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/7e7f32a39836f228-s.0b4edfe7.woff2") format("woff2");
  unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/fa39153a3fc630ba-s.bff0868b.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/6a5386fd6038edbe-s.719084df.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/051742360c26797e-s.p.102b7f24.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/04c5164763c40239-s.690580e8.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/26f284dcc38c84c0-s.303a03d6.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/7e7f32a39836f228-s.0b4edfe7.woff2") format("woff2");
  unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/fa39153a3fc630ba-s.bff0868b.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/6a5386fd6038edbe-s.719084df.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/051742360c26797e-s.p.102b7f24.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: JetBrains Mono Fallback;
  src: local(Arial);
  ascent-override: 75.79%;
  descent-override: 22.29%;
  line-gap-override: 0.0%;
  size-adjust: 134.59%;
}

.jetbrains_mono_a21b44ef-module__A5sbzW__className {
  font-family: JetBrains Mono, JetBrains Mono Fallback;
  font-style: normal;
}

/*# sourceMappingURL=%5Broot-of-the-server%5D__dcc10f70._.css.map*/