:root {
  --bg: #030609;
  --bg-2: #071018;
  --panel: rgba(8, 18, 25, 0.94);
  --panel-2: rgba(10, 24, 33, 0.96);
  --panel-3: rgba(15, 32, 43, 0.92);
  --text: #f4f7fb;
  --soft: #c7d0da;
  --muted: #7f8d9b;
  --faint: #526171;
  --line: rgba(115, 146, 166, 0.22);
  --line-strong: rgba(143, 183, 207, 0.36);
  --green: #36e36f;
  --green-2: #7af59c;
  --blue: #2c95ff;
  --cyan: #48d8ff;
  --orange: #ff8a3d;
  --yellow: #f7d451;
  --red: #ff5148;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  --radius: 8px;
  --max: 1480px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  max-width: 100%;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at 18% 12%, rgba(44, 149, 255, 0.22), transparent 26%),
    radial-gradient(circle at 83% 18%, rgba(54, 227, 111, 0.14), transparent 24%),
    linear-gradient(180deg, #020406 0%, #061017 52%, #030609 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  inset: 0;
  opacity: 0.3;
  pointer-events: none;
  position: fixed;
  z-index: -2;
}

body::after {
  background:
    radial-gradient(ellipse at 18% 18%, rgba(115, 170, 216, 0.22), transparent 16%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(1, 3, 5, 0.86));
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

a {
  color: inherit;
}

main {
  min-height: 70vh;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.app-header {
  background: rgba(2, 6, 9, 0.94);
  border-bottom: 1px solid rgba(130, 154, 176, 0.22);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.34);
  position: sticky;
  top: 0;
  z-index: 30;
}

.nav-shell {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr auto;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 56px;
  padding: 0 20px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  text-decoration: none;
}

.brand-bars {
  align-items: end;
  display: inline-grid;
  gap: 2px;
  grid-template-columns: repeat(4, 4px);
  height: 24px;
  width: 24px;
}

.brand-bars i {
  background: linear-gradient(180deg, #b8ffd0, var(--green));
  border-radius: 2px 2px 0 0;
  box-shadow: 0 0 12px rgba(54, 227, 111, 0.42);
  display: block;
}

.brand-bars i:nth-child(1) { height: 8px; opacity: 0.78; }
.brand-bars i:nth-child(2) { height: 14px; opacity: 0.86; }
.brand-bars i:nth-child(3) { height: 20px; }
.brand-bars i:nth-child(4) { height: 24px; }

.brand-name {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-name span {
  color: var(--green);
}

.top-nav {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: center;
}

.top-nav a {
  color: #aab4bf;
  font-size: 0.92rem;
  font-weight: 750;
  padding: 19px 0 17px;
  position: relative;
  text-decoration: none;
}

.top-nav a:hover,
.top-nav a.active {
  color: var(--green-2);
}

.top-nav a.active::after {
  background: var(--green);
  bottom: 0;
  box-shadow: 0 0 12px rgba(54, 227, 111, 0.62);
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
}

.caret {
  color: var(--muted);
  font-size: 0.7rem;
  margin-left: 6px;
}

.nav-actions {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.watchlist-button {
  align-items: center;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(160, 177, 191, 0.28);
  border-radius: 7px;
  color: #d6dde5;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 8px;
  min-height: 34px;
  padding: 8px 14px;
  text-decoration: none;
}

.watchlist-button:hover {
  border-color: rgba(54, 227, 111, 0.55);
  color: var(--green-2);
}

.system-status {
  display: grid;
  gap: 1px;
  font-size: 0.76rem;
  font-weight: 800;
  min-width: 116px;
}

.system-status span {
  align-items: center;
  color: var(--green-2);
  display: inline-flex;
  gap: 7px;
}

.system-status i,
.ticker-label i,
.live-dot::before {
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 13px rgba(54, 227, 111, 0.9);
  content: "";
  display: inline-block;
  height: 7px;
  width: 7px;
}

.system-status small {
  color: #a6b0bb;
  font-weight: 650;
}

.market-ticker {
  align-items: center;
  border-top: 1px solid rgba(130, 154, 176, 0.16);
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 36px;
  overflow: hidden;
}

.ticker-label {
  align-items: center;
  border-right: 1px solid rgba(130, 154, 176, 0.18);
  color: var(--green-2);
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 900;
  gap: 8px;
  height: 100%;
  justify-content: center;
  letter-spacing: 0.02em;
}

.ticker-track {
  align-items: center;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}

.ticker-track::-webkit-scrollbar {
  display: none;
}

.ticker-track span {
  align-items: center;
  border-right: 1px solid rgba(130, 154, 176, 0.2);
  color: #aeb9c6;
  display: inline-flex;
  font-size: 0.78rem;
  gap: 13px;
  min-height: 36px;
  padding: 0 18px;
}

.ticker-track b {
  color: #f1f5f9;
}

.ticker-track strong {
  color: #dce4ec;
}

.ticker-track em {
  color: var(--green-2);
  font-style: normal;
  font-weight: 900;
}

.ticker-track em.red {
  color: var(--orange);
}

.command-hero,
.home-board,
.lower-intel-grid,
.page-console,
.scoreboard-shell,
.category-board,
.detail-grid,
.related-section,
.report-brief,
.brief-grid,
.report-cta,
.subscribe-console,
.page-hero,
.content-page,
.center-page,
.site-footer {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max);
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

.command-hero {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.88fr) minmax(540px, 1.12fr);
  min-height: 390px;
  overflow: hidden;
  padding-bottom: 28px;
  padding-top: 54px;
  position: relative;
}

.command-hero::before {
  background:
    linear-gradient(90deg, rgba(3, 6, 9, 0.78), rgba(3, 6, 9, 0.25) 48%, rgba(3, 6, 9, 0.84)),
    radial-gradient(ellipse at 22% 22%, rgba(141, 183, 218, 0.24), transparent 17%),
    radial-gradient(ellipse at 84% 30%, rgba(54, 227, 111, 0.11), transparent 22%),
    linear-gradient(180deg, rgba(9, 29, 43, 0.8), rgba(1, 5, 8, 0.9));
  content: "";
  bottom: 0;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100vw;
  pointer-events: none;
  position: absolute;
  z-index: -2;
}

.stadium-glow {
  background:
    repeating-linear-gradient(90deg, transparent 0 46px, rgba(92, 178, 255, 0.12) 47px 48px),
    radial-gradient(ellipse at 16% 16%, rgba(170, 222, 255, 0.42), transparent 7%),
    radial-gradient(ellipse at 26% 18%, rgba(170, 222, 255, 0.36), transparent 6%),
    radial-gradient(ellipse at 38% 20%, rgba(170, 222, 255, 0.3), transparent 5%);
  filter: blur(0.1px);
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.hero-copy {
  align-self: center;
  min-width: 0;
  padding: 12px 0 26px 54px;
}

.eyebrow {
  color: var(--green-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.live-dot {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.command-hero h1,
.page-console h1,
.report-brief h1,
.subscribe-console h1,
.page-hero h1 {
  color: #fff;
  font-size: 4.05rem;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0 0 18px;
  max-width: 720px;
}

.lede,
.page-console p,
.report-brief p,
.subscribe-console p,
.page-hero p,
.content-page p,
.message-card p {
  color: var(--soft);
}

.lede {
  font-size: 1.14rem;
  max-width: 640px;
}

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

.button {
  align-items: center;
  border: 1px solid rgba(150, 173, 190, 0.34);
  border-radius: 7px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 900;
  gap: 12px;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  text-decoration: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(180deg, #5af276, var(--green));
  border-color: rgba(94, 255, 129, 0.72);
  box-shadow: 0 0 28px rgba(54, 227, 111, 0.24);
  color: #041109;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.035);
  color: #edf4fb;
}

.button.secondary:hover {
  border-color: rgba(72, 216, 255, 0.62);
  box-shadow: 0 0 28px rgba(44, 149, 255, 0.14);
}

.button.full {
  width: 100%;
}

.doc-icon,
.mail-icon {
  border: 1px solid currentColor;
  border-radius: 3px;
  display: inline-block;
  height: 16px;
  opacity: 0.72;
  position: relative;
  width: 13px;
}

.doc-icon::after {
  border-bottom: 1px solid currentColor;
  border-left: 1px solid currentColor;
  content: "";
  height: 5px;
  position: absolute;
  right: -1px;
  top: -1px;
  width: 5px;
}

.hero-map {
  align-self: center;
  min-width: 0;
}

.sports-tree {
  background:
    radial-gradient(circle at 50% 48%, rgba(54, 227, 111, 0.1), transparent 26%),
    radial-gradient(circle at 45% 45%, rgba(44, 149, 255, 0.12), transparent 32%),
    linear-gradient(145deg, rgba(4, 12, 18, 0.76), rgba(6, 14, 21, 0.38));
  min-height: 360px;
  overflow: hidden;
  position: relative;
}

.tree-orbit {
  border: 1px solid rgba(54, 227, 111, 0.14);
  border-radius: 50%;
  height: 470px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 470px;
}

.tree-orbit::before,
.tree-orbit::after {
  border: 1px solid rgba(44, 149, 255, 0.12);
  border-radius: 50%;
  content: "";
  inset: 46px;
  position: absolute;
}

.tree-orbit::after {
  border-color: rgba(54, 227, 111, 0.09);
  inset: 94px;
}

.tree-grid {
  height: 360px;
  position: relative;
}

.tree-node {
  align-items: center;
  background: rgba(5, 14, 22, 0.88);
  border: 1px solid rgba(70, 156, 220, 0.38);
  border-radius: 8px;
  box-shadow: inset 0 0 22px rgba(44, 149, 255, 0.05), 0 0 20px rgba(0, 0, 0, 0.28);
  color: #f3f8fc;
  display: flex;
  gap: 10px;
  justify-content: center;
  min-height: 58px;
  min-width: 128px;
  padding: 11px 16px;
  position: absolute;
  text-decoration: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
  z-index: 2;
}

.tree-node:hover {
  border-color: rgba(54, 227, 111, 0.75);
  box-shadow: 0 0 28px rgba(54, 227, 111, 0.2);
  transform: translateY(-2px);
}

.tree-node strong {
  font-size: 1rem;
}

.tree-node.root {
  border-color: rgba(54, 227, 111, 0.5);
  left: 50%;
  min-width: 176px;
  top: 10px;
  transform: translateX(-50%);
}

.tree-node.root:hover {
  transform: translate(-50%, -2px);
}

.tree-icon.grid-icon {
  display: grid;
  gap: 3px;
  grid-template-columns: repeat(3, 8px);
}

.tree-icon.grid-icon::before {
  color: var(--green);
  content: "▦";
  font-size: 1.6rem;
  line-height: 1;
}

.tree-emoji {
  font-size: 1.45rem;
  filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.16));
}

.tree-node.sport {
  top: 118px;
}

.tree-node.mlb { left: 5%; }
.tree-node.nba { left: 28%; border-color: rgba(255, 138, 61, 0.45); }
.tree-node.nhl { right: 28%; border-color: rgba(72, 216, 255, 0.4); }
.tree-node.nfl { right: 5%; }

.tree-node.branch {
  bottom: 36px;
  min-width: 132px;
  width: 132px;
}

.tree-node.branch strong {
  font-size: 0.92rem;
}

.tree-node.props { left: 8%; border-color: rgba(54, 227, 111, 0.5); }
.tree-node.movement { left: 31%; border-color: rgba(44, 149, 255, 0.55); }
.tree-node.value { left: 54%; right: auto; border-color: rgba(54, 227, 111, 0.58); }
.tree-node.chase { left: 77%; right: auto; border-color: rgba(255, 138, 61, 0.62); }

.branch-icon {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--green);
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.movement .branch-icon { color: var(--blue); }
.chase .branch-icon { color: var(--orange); }

.tree-line {
  background: linear-gradient(90deg, transparent, rgba(209, 231, 244, 0.72), transparent);
  height: 1px;
  position: absolute;
  z-index: 1;
}

.tree-line.trunk {
  left: 50%;
  top: 68px;
  transform: rotate(90deg);
  transform-origin: left center;
  width: 198px;
}

.tree-line.sports-line {
  left: 12%;
  top: 98px;
  width: 76%;
}

.tree-line.branch-line {
  left: 22%;
  top: 245px;
  width: 60%;
}

.tree-line.link-a {
  left: 19%;
  top: 187px;
  transform: rotate(90deg);
  transform-origin: left center;
  width: 72px;
}

.tree-line.link-b {
  left: 49%;
  top: 132px;
  transform: rotate(90deg);
  transform-origin: left center;
  width: 114px;
}

.tree-line.link-c {
  right: 22%;
  top: 187px;
  transform: rotate(90deg);
  transform-origin: right center;
  width: 72px;
}

.home-board {
  margin-top: -4px;
  position: relative;
  z-index: 2;
}

.terminal-panel {
  background:
    linear-gradient(180deg, rgba(10, 23, 31, 0.96), rgba(5, 12, 18, 0.97)),
    repeating-linear-gradient(90deg, transparent 0 69px, rgba(99, 151, 188, 0.05) 70px);
  border: 1px solid rgba(127, 160, 183, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.props-board {
  overflow: hidden;
}

.board-titlebar {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  min-height: 56px;
  padding: 14px 28px;
}

.board-titlebar h2,
.panel-title-row h2,
.category-heading h2,
.report-preview-copy h2,
.signup-card-head h2,
.report-cta h2,
.message-card h1,
.content-page h2 {
  color: #f7fbff;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}

.board-titlebar h2 {
  font-size: 1.16rem;
  letter-spacing: 0.08em;
}

.board-tools {
  align-items: center;
  display: flex;
  gap: 24px;
}

.board-legend {
  align-items: center;
  display: flex;
  gap: 20px;
}

.board-legend span {
  color: #aab6c1;
  font-size: 0.72rem;
  font-weight: 700;
}

.board-legend b {
  display: inline-block;
  margin-right: 6px;
}

.legend-up {
  color: var(--green);
}

.legend-score {
  background: linear-gradient(90deg, #43515d, var(--yellow), var(--green));
  height: 4px;
  vertical-align: middle;
  width: 82px;
}

.legend-risk {
  background: var(--orange);
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.league-filter {
  align-items: center;
  display: flex;
  gap: 8px;
  margin: 0;
}

.league-filter span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

label,
legend {
  color: #d3dde6;
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  background: rgba(4, 11, 17, 0.96);
  border: 1px solid rgba(141, 168, 188, 0.32);
  border-radius: 6px;
  color: var(--text);
  font: inherit;
  min-height: 42px;
  padding: 10px 12px;
  width: 100%;
}

select {
  min-width: 150px;
}

input::placeholder,
textarea::placeholder {
  color: #788594;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(72, 216, 255, 0.72);
  outline: 2px solid rgba(72, 216, 255, 0.16);
}

.terminal-head,
.prop-terminal-row {
  display: grid;
  grid-template-columns: minmax(210px, 1.35fr) minmax(130px, 0.9fr) minmax(150px, 1fr) minmax(110px, 0.78fr) minmax(86px, 0.62fr) minmax(92px, 0.66fr) minmax(118px, 0.8fr) minmax(110px, 0.68fr) minmax(136px, 0.9fr) minmax(126px, 0.78fr);
}

.terminal-head {
  background: rgba(255, 255, 255, 0.028);
  border-bottom: 1px solid var(--line);
  color: #8794a2;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.terminal-head span,
.prop-terminal-row .cell {
  align-items: center;
  border-right: 1px solid rgba(125, 151, 171, 0.18);
  display: flex;
  min-width: 0;
  padding: 10px 16px;
}

.terminal-head span:last-child,
.prop-terminal-row .cell:last-child {
  border-right: 0;
}

.prop-terminal-row {
  background: rgba(8, 20, 29, 0.56);
  border-bottom: 1px solid rgba(130, 154, 176, 0.14);
  color: var(--text);
  min-height: 74px;
  text-decoration: none;
  transition: background 0.16s ease, box-shadow 0.16s ease;
}

.prop-terminal-row:hover {
  background: rgba(12, 33, 46, 0.88);
  box-shadow: inset 3px 0 0 var(--green);
}

.prop-terminal-row:last-child {
  border-bottom: 0;
}

.player-cell,
.card-player,
.detail-player-head {
  align-items: center;
  display: flex;
  gap: 12px;
}

.prop-cell,
.matchup-cell {
  align-items: flex-start !important;
  flex-direction: column;
  justify-content: center;
}

.player-cell strong,
.prop-cell strong,
.matchup-cell strong,
.number-cell strong,
.card-player strong {
  color: #f7fbff;
  display: block;
  font-size: 0.96rem;
  line-height: 1.2;
}

.player-cell small,
.prop-cell small,
.matchup-cell small,
.number-cell small,
.card-player small,
.card-topline span,
.form-micro,
.footer-rule,
.footer-links a,
.panel-title-row span,
.market-comparison span,
.market-comparison small,
.timeline-labels,
.mini-bars-row span,
.note-grid span,
.warning-list span,
.source-grid span,
.subscribe-points small,
.brief-meta-card small {
  color: var(--muted);
  font-size: 0.78rem;
}

.player-avatar {
  align-items: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #eef6ff;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.8rem;
  font-weight: 950;
  height: 42px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 42px;
}

.player-avatar::after {
  background: currentColor;
  bottom: -10px;
  border-radius: 50% 50% 0 0;
  content: "";
  height: 18px;
  left: 8px;
  opacity: 0.16;
  position: absolute;
  right: 8px;
}

.player-avatar.green { color: var(--green); }
.player-avatar.blue { color: var(--blue); }
.player-avatar.cyan { color: var(--cyan); }
.player-avatar.orange { color: var(--orange); }

.book-chip {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.book-mark {
  align-items: center;
  border: 1px solid rgba(72, 216, 255, 0.5);
  border-radius: 50%;
  color: var(--cyan);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 950;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.book-chip.dk .book-mark {
  border-color: rgba(54, 227, 111, 0.54);
  color: var(--green);
}

.book-chip strong {
  color: #f0f7ff;
  font-size: 0.86rem;
}

.number-cell {
  flex-direction: column;
  justify-content: center;
}

.movement-chip {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  line-height: 1.1;
}

.movement-chip .move-arrow {
  color: #a4b0bb;
  font-size: 1.2rem;
  font-weight: 950;
}

.movement-chip strong {
  color: #d6e0e9;
  display: block;
  font-size: 0.94rem;
}

.movement-chip small {
  color: var(--muted);
  display: block;
  font-size: 0.74rem;
}

.movement-chip.up .move-arrow,
.movement-chip.up strong,
.movement-chip.up small {
  color: var(--green);
}

.movement-chip.down .move-arrow,
.movement-chip.down strong,
.movement-chip.down small {
  color: var(--orange);
}

.score-ring {
  align-items: center;
  background:
    radial-gradient(circle at center, #071018 0 55%, transparent 57%),
    conic-gradient(var(--score-color) 0 var(--score-angle), rgba(111, 128, 140, 0.42) var(--score-angle) 360deg);
  border-radius: 50%;
  color: #f7fbff;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.86rem;
  font-weight: 950;
  height: 48px;
  justify-content: center;
  position: relative;
  width: 48px;
  --score-color: var(--yellow);
}

.score-ring::after {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
  inset: 5px;
  position: absolute;
}

.score-ring.elite,
.score-ring.strong {
  --score-color: var(--green);
}

.score-ring.watch {
  --score-color: var(--yellow);
}

.score-ring.risk {
  --score-color: var(--red);
}

.score-ring span {
  position: relative;
  z-index: 1;
}

.steam-wrap {
  display: grid;
  gap: 2px;
}

.steam-percent {
  color: #f4f9fe;
  font-size: 0.94rem;
  font-weight: 950;
}

.steam-bars {
  display: flex;
  gap: 3px;
}

.steam-bars i {
  background: rgba(96, 113, 127, 0.38);
  display: block;
  height: 12px;
  width: 5px;
}

.steam-bars i.on {
  background: var(--blue);
  box-shadow: 0 0 9px rgba(44, 149, 255, 0.45);
}

.steam-wrap.very-high .steam-bars i.on {
  background: var(--cyan);
}

.steam-wrap small {
  color: var(--muted);
  font-size: 0.72rem;
}

.value-chip,
.section-status,
.sample-label-banner {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  min-height: 30px;
  padding: 6px 10px;
  white-space: nowrap;
}

.value-chip.strong,
.value-chip.value {
  background: rgba(54, 227, 111, 0.1);
  border: 1px solid rgba(54, 227, 111, 0.42);
  color: var(--green-2);
}

.value-chip.watch {
  background: rgba(209, 219, 226, 0.06);
  border: 1px solid rgba(161, 180, 194, 0.26);
  color: #d4dde5;
}

.value-chip.risk {
  background: rgba(255, 107, 59, 0.11);
  border: 1px solid rgba(255, 138, 61, 0.5);
  color: var(--orange);
}

.board-footer-link {
  border-top: 1px solid var(--line);
  padding: 12px 18px;
  text-align: right;
}

.board-footer-link a,
.text-link,
.back-link {
  color: var(--cyan);
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: none;
}

.board-footer-link a:hover,
.text-link:hover,
.back-link:hover {
  color: var(--green-2);
}

.scroll-cue {
  align-items: center;
  color: #63707c;
  display: flex;
  font-size: 0.72rem;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.16em;
  margin: 15px 0 12px;
  text-transform: uppercase;
}

.lower-intel-grid {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(370px, 0.42fr);
  padding-bottom: 32px;
}

.report-preview-card {
  align-items: stretch;
  background:
    linear-gradient(180deg, rgba(10, 23, 31, 0.88), rgba(4, 10, 15, 0.96));
  border: 1px solid rgba(127, 160, 183, 0.24);
  border-radius: var(--radius);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(260px, 0.42fr) minmax(320px, 1fr);
  min-height: 220px;
  padding: 28px;
}

.report-preview-copy p {
  color: var(--soft);
  margin: 10px 0 0;
  max-width: 320px;
}

.report-sheet {
  background: rgba(5, 12, 18, 0.9);
  border: 1px solid rgba(127, 160, 183, 0.34);
  border-radius: 8px 8px 0 0;
  box-shadow: inset 0 0 28px rgba(44, 149, 255, 0.05);
  overflow: hidden;
  padding: 22px 24px 10px;
}

.report-sheet-top {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.report-sheet-top strong {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-size: 1.25rem;
  font-weight: 950;
  gap: 7px;
}

.report-sheet-top strong span:last-child {
  color: var(--green);
}

.mini-bars {
  background: linear-gradient(90deg, var(--soft) 0 3px, transparent 3px 6px, var(--green) 6px 10px, transparent 10px 13px, var(--green) 13px 18px);
  display: inline-block;
  height: 18px;
  width: 18px;
}

.report-sheet-top small {
  color: var(--muted);
  text-align: right;
}

.report-sheet-section {
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--green);
  display: flex;
  font-size: 0.82rem;
  font-weight: 950;
  justify-content: space-between;
  letter-spacing: 0.14em;
  padding-bottom: 12px;
  text-transform: uppercase;
}

.report-sheet-section a {
  color: var(--blue);
  font-size: 0.8rem;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: none;
}

.report-mini-row {
  align-items: center;
  border-bottom: 1px solid rgba(127, 160, 183, 0.14);
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.report-mini-row strong {
  color: #edf4fb;
}

.report-mini-row span {
  color: var(--green-2);
  font-size: 0.82rem;
  font-weight: 800;
}

.report-mini-row.warn span {
  color: var(--orange);
}

.email-signup-card,
.message-card {
  background:
    linear-gradient(180deg, rgba(10, 23, 31, 0.96), rgba(5, 12, 18, 0.98));
  border: 1px solid rgba(127, 160, 183, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}

.email-signup-card.compact {
  min-height: 0;
}

.signup-card-head {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.mail-icon {
  border-radius: 5px;
  color: var(--soft);
  flex: 0 0 auto;
  height: 29px;
  width: 34px;
}

.mail-icon::after {
  border-bottom: 1px solid currentColor;
  border-left: 1px solid currentColor;
  content: "";
  height: 12px;
  left: 6px;
  position: absolute;
  top: 4px;
  transform: rotate(-45deg);
  width: 20px;
}

.signup-card-head h2 {
  font-size: 1.28rem;
}

.signup-card-head p {
  color: var(--muted);
  margin: 2px 0 0;
}

.email-signup-card label,
.email-signup-card fieldset {
  border: 0;
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
}

.email-signup-card label span,
.email-signup-card legend {
  color: var(--muted);
}

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

.check,
.consent {
  align-items: flex-start;
  display: flex !important;
  gap: 8px;
}

.check input,
.consent input {
  flex: 0 0 auto;
  min-height: 17px;
  margin-top: 3px;
  width: 17px;
}

.consent {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.45;
}

.consent a {
  color: var(--cyan);
  text-decoration: none;
}

.form-error {
  background: rgba(255, 81, 72, 0.12);
  border: 1px solid rgba(255, 81, 72, 0.38);
  border-radius: 6px;
  color: #ffd4d1;
  margin-bottom: 14px;
  padding: 10px 12px;
}

.form-micro {
  margin: 10px 0 0;
}

.page-console {
  padding-bottom: 22px;
  padding-top: 46px;
}

.page-kicker {
  align-items: center;
  color: var(--green-2);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.76rem;
  font-weight: 900;
  gap: 12px;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.page-kicker span {
  background: rgba(54, 227, 111, 0.08);
  border: 1px solid rgba(54, 227, 111, 0.24);
  border-radius: 999px;
  padding: 6px 10px;
}

.page-title-row {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.page-console p {
  margin: 0;
  max-width: 760px;
}

.filter-bar {
  align-items: end;
  background: rgba(8, 18, 25, 0.72);
  border: 1px solid rgba(127, 160, 183, 0.24);
  border-radius: var(--radius);
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr 1fr auto;
  margin-top: 24px;
  padding: 16px;
}

.filter-bar label {
  display: grid;
  gap: 7px;
  margin: 0;
}

.signal-summary-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.summary-panel {
  background:
    linear-gradient(180deg, rgba(10, 23, 31, 0.95), rgba(5, 12, 18, 0.95));
  border: 1px solid rgba(127, 160, 183, 0.24);
  border-radius: var(--radius);
  color: var(--text);
  display: grid;
  gap: 5px;
  min-height: 130px;
  padding: 18px;
  position: relative;
  text-decoration: none;
  overflow: hidden;
}

.summary-panel::after {
  background: var(--accent, var(--green));
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
}

.summary-panel.mover { --accent: var(--blue); }
.summary-panel.value { --accent: var(--green); }
.summary-panel.steam { --accent: var(--cyan); }
.summary-panel.caution { --accent: var(--orange); }

.summary-panel span {
  color: var(--accent, var(--green));
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary-panel strong {
  font-size: 2.1rem;
  line-height: 1;
}

.summary-panel small {
  color: var(--muted);
}

.scoreboard-shell,
.category-board,
.detail-grid,
.related-section,
.brief-grid,
.report-cta {
  padding-bottom: 42px;
}

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

.category-board {
  display: grid;
  gap: 26px;
}

.category-section {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.category-heading,
.panel-title-row {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 14px;
}

.category-heading h2,
.panel-title-row h2 {
  font-size: 1.35rem;
}

.category-heading > span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.prop-card {
  background: linear-gradient(180deg, rgba(10, 23, 31, 0.88), rgba(5, 12, 18, 0.96));
  border: 1px solid rgba(127, 160, 183, 0.24);
  border-radius: var(--radius);
  color: var(--text);
  display: grid;
  gap: 13px;
  min-height: 238px;
  padding: 16px;
  text-decoration: none;
  transition: border-color 0.16s ease, transform 0.16s ease;
}

.prop-card:hover {
  border-color: rgba(72, 216, 255, 0.55);
  transform: translateY(-2px);
}

.card-topline {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.card-player {
  align-items: center;
}

.card-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-summary {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.empty-state {
  color: var(--muted);
  padding: 18px;
}

.empty-state.compact {
  background: rgba(8, 18, 25, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.detail-hero-grid {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.detail-player-head .player-avatar {
  height: 76px;
  width: 76px;
}

.detail-status-card {
  align-items: center;
  background: rgba(8, 18, 25, 0.9);
  border: 1px solid rgba(127, 160, 183, 0.28);
  border-radius: var(--radius);
  display: grid;
  gap: 10px;
  justify-items: center;
  min-width: 190px;
  padding: 18px;
}

.detail-status-card > span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
}

.detail-market-panel,
.module-card,
.intelligence-panel,
.report-section {
  padding: 22px;
}

.detail-market-panel {
  grid-row: span 2;
}

.market-comparison {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 28px;
}

.market-comparison > div,
.note-grid > div,
.source-grid > div,
.warning-list > div,
.brief-score-strip > div,
.subscribe-points > div {
  background: rgba(3, 9, 14, 0.54);
  border: 1px solid rgba(127, 160, 183, 0.18);
  border-radius: 7px;
  display: grid;
  gap: 5px;
  padding: 14px;
}

.market-comparison strong {
  color: #fff;
  font-size: 2.05rem;
  line-height: 1;
}

.timeline-rail {
  background: linear-gradient(90deg, var(--blue), var(--green), var(--orange));
  border-radius: 999px;
  height: 5px;
  position: relative;
}

.timeline-dot {
  background: #061018;
  border: 2px solid #fff;
  border-radius: 50%;
  height: 17px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
}

.timeline-dot.start { border-color: var(--blue); left: 0; }
.timeline-dot.source { border-color: var(--green); left: 58%; }
.timeline-dot.current { border-color: var(--orange); right: 0; }

.timeline-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}

.mini-bars-row {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.mini-bars-row span {
  position: relative;
}

.mini-bars-row span::after {
  background: linear-gradient(90deg, var(--green), var(--blue));
  border-radius: 999px;
  content: "";
  display: block;
  height: 4px;
  margin-top: 6px;
  width: var(--bar);
}

.module-card p,
.intelligence-panel p,
.report-section p {
  color: var(--soft);
  margin: 0;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.tag-cloud span {
  background: rgba(44, 149, 255, 0.09);
  border: 1px solid rgba(44, 149, 255, 0.3);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 850;
  padding: 6px 10px;
}

.intelligence-panel h3 {
  font-size: 1rem;
  margin: 14px 0 8px;
}

.risk-list,
.clean-list {
  color: var(--soft);
  margin: 0;
  padding-left: 20px;
}

.risk-list li,
.clean-list li {
  margin: 7px 0;
}

.related-section {
  padding-top: 0;
}

.report-brief {
  padding-bottom: 22px;
  padding-top: 48px;
}

.brief-header {
  align-items: end;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) 250px;
}

.sample-label-banner {
  background: rgba(72, 216, 255, 0.08);
  border: 1px solid rgba(72, 216, 255, 0.3);
  color: var(--cyan);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.brief-meta-card {
  background: rgba(8, 18, 25, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 6px;
  padding: 18px;
}

.brief-meta-card span,
.brief-score-strip span,
.subscribe-points span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brief-meta-card strong {
  font-size: 1.4rem;
}

.brief-score-strip {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
}

.brief-score-strip strong {
  color: #fff;
  font-size: 1.75rem;
}

.brief-grid {
  display: grid;
  gap: 18px;
}

.report-table {
  margin: 0 -22px -22px;
}

.report-table .terminal-head {
  display: none;
}

.report-table .prop-terminal-row {
  grid-template-columns: minmax(210px, 1.4fr) minmax(130px, 0.9fr) minmax(140px, 1fr) minmax(110px, 0.8fr) minmax(80px, 0.6fr) minmax(90px, 0.65fr) minmax(120px, 0.8fr) minmax(100px, 0.7fr) minmax(130px, 0.9fr) minmax(120px, 0.8fr);
}

.section-status.green {
  background: rgba(54, 227, 111, 0.1);
  border: 1px solid rgba(54, 227, 111, 0.3);
  color: var(--green-2);
}

.section-status.blue {
  background: rgba(44, 149, 255, 0.1);
  border: 1px solid rgba(44, 149, 255, 0.32);
  color: var(--cyan);
}

.section-status.orange {
  background: rgba(255, 138, 61, 0.1);
  border: 1px solid rgba(255, 138, 61, 0.36);
  color: var(--orange);
}

.section-status.red {
  background: rgba(255, 81, 72, 0.1);
  border: 1px solid rgba(255, 81, 72, 0.36);
  color: var(--red);
}

.danger-section {
  border-color: rgba(255, 138, 61, 0.34);
}

.note-grid,
.source-grid,
.warning-list {
  margin-top: 16px;
}

.warning-list {
  display: grid;
  gap: 12px;
}

.warning-list strong,
.note-grid strong,
.source-grid strong {
  color: #eef5fb;
}

.sample-disclaimer-panel,
.report-cta {
  background: rgba(8, 18, 25, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--soft);
  padding: 18px 20px;
}

.report-cta {
  margin-bottom: 38px;
}

.report-cta p {
  color: var(--muted);
}

.subscribe-console {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.42fr);
  padding-bottom: 54px;
  padding-top: 54px;
}

.subscribe-copy > p {
  font-size: 1.06rem;
  max-width: 720px;
}

.subscribe-points {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 24px 0;
}

.subscribe-points strong {
  color: #fff;
  font-size: 1.02rem;
}

.subscribe-mini-board {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.subscribe-mini-board .prop-card {
  min-height: 220px;
}

.page-hero {
  padding-bottom: 18px;
  padding-top: 46px;
}

.page-hero h1 {
  font-size: 3.4rem;
}

.content-page {
  padding-bottom: 70px;
}

.content-page h2 {
  border-top: 1px solid var(--line);
  font-size: 1.35rem;
  margin: 34px 0 12px;
  padding-top: 24px;
}

.content-page h2:first-child {
  border-top: 0;
  padding-top: 0;
}

.content-page a {
  color: var(--cyan);
  text-decoration: none;
}

.center-page {
  display: grid;
  min-height: 62vh;
  padding-bottom: 72px;
  padding-top: 72px;
  place-items: center;
}

.message-card {
  max-width: 720px;
}

.message-card h1 {
  font-size: 2.25rem;
}

.site-footer {
  color: var(--muted);
  padding-bottom: 20px;
  padding-top: 0;
}

.footer-rule {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr auto;
  padding: 17px 0;
}

.footer-rule p {
  margin: 0;
}

.footer-rule strong {
  color: #cfd8e1;
}

.footer-links {
  border-top: 1px solid rgba(127, 160, 183, 0.13);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  padding-top: 14px;
}

.footer-links a:hover {
  color: var(--green-2);
}

@media (prefers-reduced-motion: no-preference) {
  .tree-node.root,
  .score-ring.elite,
  .score-ring.strong {
    animation: terminalPulse 3.2s ease-in-out infinite;
  }

  @keyframes terminalPulse {
    0%, 100% { filter: drop-shadow(0 0 0 rgba(54, 227, 111, 0)); }
    50% { filter: drop-shadow(0 0 12px rgba(54, 227, 111, 0.32)); }
  }
}

@media (max-width: 1260px) {
  .nav-shell {
    grid-template-columns: 1fr;
    gap: 8px;
    justify-items: center;
    padding-bottom: 10px;
    padding-top: 12px;
  }

  .top-nav {
    flex-wrap: wrap;
    gap: 18px;
  }

  .top-nav a {
    padding: 5px 0 7px;
  }

  .command-hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-left: 0;
  }

  .lower-intel-grid,
  .subscribe-console,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .report-preview-card {
    grid-template-columns: 1fr 1.2fr;
  }
}

@media (max-width: 1080px) {
  .terminal-head,
  .prop-terminal-row {
    grid-template-columns: minmax(230px, 1.3fr) minmax(130px, 0.9fr) minmax(136px, 0.9fr) minmax(104px, 0.74fr) minmax(112px, 0.8fr) minmax(116px, 0.8fr);
  }

  .terminal-head span:nth-child(5),
  .terminal-head span:nth-child(6),
  .terminal-head span:nth-child(9),
  .terminal-head span:nth-child(10),
  .prop-terminal-row .cell:nth-child(5),
  .prop-terminal-row .cell:nth-child(6),
  .prop-terminal-row .cell:nth-child(9),
  .prop-terminal-row .cell:nth-child(10) {
    display: none;
  }

  .signal-summary-grid,
  .brief-score-strip,
  .subscribe-points,
  .subscribe-mini-board,
  .card-grid,
  .note-grid,
  .source-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .app-header {
    position: static;
  }

  .nav-shell {
    align-items: stretch;
    justify-items: stretch;
  }

  .brand,
  .nav-actions {
    justify-content: space-between;
  }

  .top-nav {
    gap: 10px 16px;
    justify-content: flex-start;
  }

  .top-nav a {
    font-size: 0.82rem;
  }

  .market-ticker {
    grid-template-columns: 132px 1fr;
  }

  .ticker-label {
    font-size: 0.65rem;
  }

  .ticker-track span {
    font-size: 0.72rem;
    padding: 0 14px;
  }

  .command-hero,
  .page-console,
  .report-brief,
  .subscribe-console,
  .page-hero {
    padding-top: 34px;
  }

  .command-hero h1,
  .page-console h1,
  .report-brief h1,
  .subscribe-console h1,
  .page-hero h1 {
    font-size: 2.55rem;
    line-height: 1.03;
  }

  .hero-actions,
  .page-title-row,
  .category-heading,
  .panel-title-row,
  .brief-header,
  .footer-rule {
    align-items: stretch;
    display: flex;
    flex-direction: column;
  }

  .hero-actions .button,
  .page-title-row .button,
  .filter-bar .button {
    width: 100%;
  }

  .sports-tree,
  .tree-grid {
    min-height: 650px;
  }

  .tree-orbit {
    height: 380px;
    width: 380px;
  }

  .tree-node,
  .tree-node.root,
  .tree-node.root:hover,
  .tree-node.sport,
  .tree-node.branch {
    left: 50%;
    min-width: min(80vw, 300px);
    right: auto;
    transform: translateX(-50%);
    width: min(80vw, 300px);
  }

  .tree-node:hover,
  .tree-node.sport:hover,
  .tree-node.branch:hover {
    transform: translate(-50%, -2px);
  }

  .tree-node.root { top: 8px; }
  .tree-node.mlb { top: 84px; }
  .tree-node.nba { top: 150px; }
  .tree-node.nhl { top: 216px; }
  .tree-node.nfl { top: 282px; }
  .tree-node.props { bottom: auto; top: 364px; }
  .tree-node.movement { bottom: auto; top: 430px; }
  .tree-node.value { bottom: auto; top: 496px; }
  .tree-node.chase { bottom: auto; top: 562px; }

  .tree-line {
    display: none;
  }

  .home-board {
    margin-top: 0;
  }

  .board-titlebar,
  .board-tools,
  .board-legend {
    align-items: stretch;
    flex-direction: column;
  }

  .board-titlebar {
    padding: 16px;
  }

  .board-tools {
    gap: 12px;
  }

  .board-legend {
    gap: 8px;
  }

  .terminal-head {
    display: none;
  }

  .prop-terminal-row,
  .report-table .prop-terminal-row {
    border: 1px solid rgba(127, 160, 183, 0.18);
    border-radius: 7px;
    display: grid;
    gap: 0;
    grid-template-columns: 1fr 1fr;
    margin: 10px;
    min-height: auto;
    overflow: hidden;
  }

  .terminal-body {
    padding: 2px 0;
  }

  .prop-terminal-row .cell {
    border-bottom: 1px solid rgba(127, 160, 183, 0.12);
    border-right: 1px solid rgba(127, 160, 183, 0.12);
    display: flex !important;
    min-height: 66px;
    padding: 24px 12px 12px;
    position: relative;
  }

  .prop-terminal-row .cell::before {
    color: var(--faint);
    content: attr(data-label);
    display: block;
    font-size: 0.64rem;
    font-weight: 900;
    left: 12px;
    letter-spacing: 0.08em;
    position: absolute;
    text-transform: uppercase;
    top: 6px;
  }

  .player-cell {
    grid-column: 1 / -1;
  }

  .prop-terminal-row .cell:nth-child(even) {
    border-right: 0;
  }

  .filter-bar,
  .signal-summary-grid,
  .brief-score-strip,
  .market-comparison,
  .report-preview-card,
  .subscribe-points,
  .subscribe-mini-board,
  .card-grid,
  .note-grid,
  .source-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .lower-intel-grid {
    grid-template-columns: 1fr;
  }

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

  .detail-status-card {
    justify-items: start;
  }
}

@media (max-width: 540px) {
  .command-hero,
  .home-board,
  .lower-intel-grid,
  .page-console,
  .scoreboard-shell,
  .category-board,
  .detail-grid,
  .related-section,
  .report-brief,
  .brief-grid,
  .report-cta,
  .subscribe-console,
  .page-hero,
  .content-page,
  .center-page,
  .site-footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand-name {
    font-size: 1.08rem;
  }

  .nav-actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .ticker-label {
    border-bottom: 1px solid rgba(130, 154, 176, 0.18);
    border-right: 0;
    justify-content: flex-start;
    padding: 8px 14px;
  }

  .hero-copy {
    padding-bottom: 12px;
  }

  .button {
    min-height: 46px;
    width: 100%;
  }

  .sports-tree,
  .tree-grid {
    min-height: 650px;
  }

  .prop-terminal-row,
  .report-table .prop-terminal-row {
    grid-template-columns: 1fr;
  }

  .prop-terminal-row .cell {
    border-right: 0;
  }

  .report-sheet {
    padding: 18px;
  }

  .report-sheet-top {
    gap: 12px;
    flex-direction: column;
  }

  .footer-rule {
    gap: 10px;
  }
}

/* Simplified V1 public experience: signals, mentions, results. */
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.brand-name,
.command-hero h1,
.page-console h1,
.report-brief h1,
.subscribe-console h1,
.page-hero h1,
.board-titlebar h2,
.panel-title-row h2,
.category-heading h2,
.report-preview-copy h2,
.signup-card-head h2,
.report-cta h2,
.message-card h1,
.content-page h2,
.pillar-card h2,
.results-panel h2 {
  font-family: Sora, Inter, ui-sans-serif, system-ui, sans-serif;
}

.app-header {
  position: sticky;
}

.nav-shell {
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 64px;
}

.top-nav {
  gap: 22px;
}

.top-nav a {
  font-size: 0.88rem;
  padding: 22px 0 20px;
}

.nav-engine-label {
  border: 1px solid rgba(54, 227, 111, 0.24);
  border-radius: 999px;
  color: var(--green-2);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 8px 12px;
  text-transform: uppercase;
  white-space: nowrap;
}

.simplified-hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.75fr);
  min-height: 470px;
  padding-top: 64px;
}

.simplified-hero::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(54, 227, 111, 0.14), transparent 18%),
    radial-gradient(circle at 72% 12%, rgba(44, 149, 255, 0.16), transparent 20%),
    linear-gradient(180deg, rgba(8, 20, 29, 0.78), rgba(2, 6, 9, 0.92));
}

.simplified-hero .hero-copy {
  padding-left: 32px;
}

.simplified-hero h1 {
  max-width: 760px;
}

.pillar-panel {
  display: grid;
  gap: 14px;
}

.pillar-card {
  background:
    linear-gradient(135deg, rgba(10, 23, 31, 0.94), rgba(5, 12, 18, 0.98));
  border: 1px solid rgba(127, 160, 183, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
  min-height: 126px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.pillar-card::after {
  background: var(--accent, var(--green));
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.9;
  position: absolute;
  top: 0;
  width: 3px;
}

.pillar-card.signal { --accent: var(--green); }
.pillar-card.mentioned { --accent: var(--blue); }
.pillar-card.results { --accent: var(--orange); }

.pillar-index {
  color: var(--accent, var(--green));
  display: block;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.pillar-card h2 {
  font-size: 1.18rem;
  margin: 0 0 8px;
}

.pillar-card p {
  color: var(--soft);
  margin: 0;
}

.home-results,
.scoreboard-results {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max);
  padding: 24px 20px 42px;
}

.results-panel {
  background: linear-gradient(180deg, rgba(10, 23, 31, 0.94), rgba(5, 12, 18, 0.98));
  border: 1px solid rgba(127, 160, 183, 0.26);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

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

.section-title-row h2 {
  font-size: 1.65rem;
  margin: 0;
}

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

.results-grid > div {
  background: rgba(3, 9, 14, 0.54);
  border: 1px solid rgba(127, 160, 183, 0.18);
  border-radius: 7px;
  display: grid;
  gap: 6px;
  padding: 16px;
}

.results-grid > div.wide {
  grid-column: span 2;
}

.results-grid > div.warning {
  border-color: rgba(255, 138, 61, 0.38);
}

.results-grid span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.results-grid strong {
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.15;
}

.results-grid.compact {
  margin-top: 16px;
}

.board-tools,
.league-filter {
  display: none;
}

.board-titlebar {
  align-items: center;
  min-height: 70px;
}

.board-legend {
  flex-direction: row;
}

.legend-mentioned {
  background: var(--blue);
  border-radius: 50%;
  height: 8px;
  vertical-align: middle;
  width: 8px;
}

.intel-head,
.intel-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) minmax(140px, 0.9fr) minmax(108px, 0.7fr) minmax(112px, 0.72fr) minmax(122px, 0.78fr) minmax(124px, 0.82fr) minmax(140px, 0.92fr);
}

.intel-head {
  background: rgba(255, 255, 255, 0.028);
  border-bottom: 1px solid var(--line);
  color: #8794a2;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intel-head span,
.intel-row .cell {
  align-items: center;
  border-right: 1px solid rgba(125, 151, 171, 0.15);
  display: flex;
  min-width: 0;
  padding: 13px 16px;
}

.intel-head span:last-child,
.intel-row .cell:last-child {
  border-right: 0;
}

.intel-row {
  background: rgba(8, 20, 29, 0.5);
  border-bottom: 1px solid rgba(130, 154, 176, 0.14);
  color: var(--text);
  min-height: 78px;
  text-decoration: none;
  transition: background 0.16s ease, box-shadow 0.16s ease;
}

.intel-row:hover {
  background: rgba(12, 33, 46, 0.82);
  box-shadow: inset 3px 0 0 var(--green);
}

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

.mention-badge {
  align-items: baseline;
  display: inline-flex;
  gap: 5px;
}

.mention-badge strong {
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
}

.mention-badge small {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.mention-badge.hot strong { color: var(--orange); }
.mention-badge.warm strong { color: var(--green-2); }
.mention-badge.quiet strong { color: var(--cyan); }

.noise-chip {
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 7px 10px;
  white-space: nowrap;
}

.noise-chip.low {
  background: rgba(54, 227, 111, 0.1);
  border: 1px solid rgba(54, 227, 111, 0.28);
  color: var(--green-2);
}

.noise-chip.medium {
  background: rgba(247, 212, 81, 0.1);
  border: 1px solid rgba(247, 212, 81, 0.32);
  color: var(--yellow);
}

.noise-chip.high {
  background: rgba(255, 138, 61, 0.12);
  border: 1px solid rgba(255, 138, 61, 0.38);
  color: var(--orange);
}

.value-chip.mentioned {
  background: rgba(44, 149, 255, 0.1);
  border: 1px solid rgba(44, 149, 255, 0.38);
  color: var(--cyan);
}

.scoreboard-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.scoreboard-tabs a {
  background: rgba(8, 18, 25, 0.78);
  border: 1px solid rgba(127, 160, 183, 0.24);
  border-radius: 999px;
  color: var(--soft);
  font-size: 0.84rem;
  font-weight: 850;
  padding: 9px 13px;
  text-decoration: none;
}

.scoreboard-tabs a:hover {
  border-color: rgba(54, 227, 111, 0.45);
  color: var(--green-2);
}

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

.report-table .intel-row {
  grid-template-columns: minmax(220px, 1.3fr) minmax(130px, 0.9fr) minmax(105px, 0.7fr) minmax(110px, 0.72fr) minmax(120px, 0.8fr) minmax(120px, 0.8fr) minmax(136px, 0.9fr);
}

.detail-noise-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

@media (max-width: 1260px) {
  .nav-shell {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .nav-engine-label {
    justify-self: center;
  }

  .simplified-hero {
    grid-template-columns: 1fr;
  }

  .simplified-hero .hero-copy {
    padding-left: 0;
  }
}

@media (max-width: 960px) {
  .intel-head {
    display: none;
  }

  .intel-row,
  .report-table .intel-row {
    border: 1px solid rgba(127, 160, 183, 0.18);
    border-radius: 7px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 10px;
    min-height: auto;
    overflow: hidden;
  }

  .intel-row .cell {
    border-bottom: 1px solid rgba(127, 160, 183, 0.12);
    border-right: 1px solid rgba(127, 160, 183, 0.12);
    display: flex;
    min-height: 68px;
    padding: 24px 12px 12px;
    position: relative;
  }

  .intel-row .cell::before {
    color: var(--faint);
    content: attr(data-label);
    display: block;
    font-size: 0.64rem;
    font-weight: 900;
    left: 12px;
    letter-spacing: 0.08em;
    position: absolute;
    text-transform: uppercase;
    top: 6px;
  }

  .intel-row .player-cell {
    grid-column: 1 / -1;
  }

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

@media (max-width: 640px) {
  .top-nav {
    gap: 10px 16px;
    justify-content: flex-start;
  }

  .top-nav a {
    font-size: 0.82rem;
    padding: 4px 0 8px;
  }

  .nav-engine-label {
    justify-self: start;
  }

  .simplified-hero {
    min-height: auto;
    padding-top: 36px;
  }

  .section-title-row,
  .board-titlebar {
    align-items: flex-start;
    flex-direction: column;
  }

  .board-legend {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .intel-row,
  .report-table .intel-row,
  .results-grid,
  .signal-summary-grid {
    grid-template-columns: 1fr;
  }

  .results-grid > div.wide {
    grid-column: auto;
  }

  .pillar-card {
    min-height: 0;
  }
}

/* Final V1 usability polish: clearer hierarchy, metric definitions, tighter mobile cards. */
.hero-proof-row {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 24px 0 0;
  max-width: 720px;
}

.hero-proof-row span {
  background: rgba(7, 19, 27, 0.76);
  border: 1px solid rgba(127, 160, 183, 0.22);
  border-radius: 7px;
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 750;
  padding: 11px 12px;
}

.hero-proof-row strong {
  color: #fff;
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.board-titlebar {
  align-items: flex-start;
  gap: 24px;
}

.board-dek {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  margin: 8px 0 0;
  max-width: 720px;
}

.metric-guide {
  background:
    linear-gradient(90deg, rgba(54, 227, 111, 0.08), rgba(44, 149, 255, 0.055), rgba(255, 138, 61, 0.055));
  border-bottom: 1px solid rgba(127, 160, 183, 0.18);
  border-top: 1px solid rgba(127, 160, 183, 0.12);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-guide div {
  border-right: 1px solid rgba(127, 160, 183, 0.14);
  display: grid;
  gap: 3px;
  padding: 12px 16px;
}

.metric-guide div:last-child {
  border-right: 0;
}

.metric-guide strong {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-guide span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.intel-head span {
  align-items: flex-start;
  flex-direction: column;
  gap: 3px;
  justify-content: center;
  line-height: 1.2;
}

.intel-head strong {
  color: #a8b4c0;
  font-size: 0.69rem;
}

.intel-head small {
  color: #617080;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: none;
}

.results-intro {
  color: var(--muted);
  line-height: 1.5;
  margin: 7px 0 0;
  max-width: 720px;
}

.results-panel .text-link {
  white-space: nowrap;
}

.detail-submetrics,
.brief-meta-row,
.subscribe-report-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.detail-submetrics span,
.brief-meta-row span,
.subscribe-report-strip span {
  background: rgba(8, 18, 25, 0.78);
  border: 1px solid rgba(127, 160, 183, 0.24);
  border-radius: 999px;
  color: var(--soft);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  padding: 7px 10px;
  text-transform: uppercase;
}

.detail-submetrics span:first-child,
.brief-meta-row span:first-child,
.subscribe-report-strip span:first-child {
  border-color: rgba(54, 227, 111, 0.38);
  color: var(--green-2);
}

.category-heading p,
.panel-title-row p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.45;
  margin: 7px 0 0;
  max-width: 660px;
}

.report-section .panel-title-row {
  align-items: flex-start;
}

.subscribe-report-strip {
  margin-bottom: 18px;
}

@media (max-width: 960px) {
  .hero-proof-row,
  .metric-guide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-guide div:nth-child(2) {
    border-right: 0;
  }

  .metric-guide div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(127, 160, 183, 0.12);
  }
}

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

  .hero-proof-row,
  .metric-guide {
    grid-template-columns: 1fr;
  }

  .hero-proof-row {
    margin-top: 18px;
  }

  .metric-guide div,
  .metric-guide div:nth-child(2) {
    border-bottom: 1px solid rgba(127, 160, 183, 0.12);
    border-right: 0;
    padding: 11px 14px;
  }

  .metric-guide div:last-child {
    border-bottom: 0;
  }

  .board-dek,
  .results-intro {
    font-size: 0.88rem;
  }

  .intel-row,
  .report-table .intel-row {
    grid-auto-flow: row dense;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 8px;
  }

  .intel-row .cell {
    min-height: 58px;
    padding: 22px 10px 10px;
  }

  .intel-row .cell::before {
    font-size: 0.58rem;
    left: 10px;
  }

  .intel-row .player-cell,
  .intel-row .prop-cell,
  .intel-row .movement-cell {
    grid-column: 1 / -1;
  }

  .intel-row .score-cell,
  .intel-row .flag-cell {
    border-right: 0;
  }

  .results-panel {
    padding: 18px;
  }

  .results-panel .text-link {
    white-space: normal;
  }
}

@media (max-width: 420px) {
  .top-nav {
    gap: 8px 13px;
  }

  .hero-proof-row span,
  .metric-guide span,
  .results-intro {
    font-size: 0.8rem;
  }
}
