@font-face {
  font-family: "Polymarket Inter";
  src: url("./assets/fonts/InterVariable-polymarket.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --ink: #000000;
  --title: #18181b;
  --muted: #77808d;
  --soft: #f7f8fa;
  --soft-2: #f2f4f7;
  --line: #e6e8ea;
  --line-strong: #d6dae1;
  --blue: #1452f0;
  --blue-soft: #eef4ff;
  --violet: #6d5dfc;
  --violet-soft: #f3f1ff;
  --star: #f5a524;
  --star-muted: #d5d9e2;
  --shadow: 0 4px 16px rgba(20, 82, 240, 0.07);
  --page-max: 1350px;
  --page-pad: 24px;
  --page-pad-mobile: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Polymarket Inter", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  font-optical-sizing: auto;
  text-rendering: geometricPrecision;
}

button,
select,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

.site-header {
  display: grid;
  grid-template-columns: auto minmax(260px, 420px) auto;
  align-items: center;
  gap: 24px;
  max-width: var(--page-max);
  height: 64px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 400;
  line-height: 29px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.search-pill {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.search-pill span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.search-pill input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--title);
  font-family: "Polymarket Inter", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

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

.site-nav {
  display: inline-flex;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  line-height: 20px;
}

.site-nav a:hover,
.category-rail a:hover {
  color: var(--ink);
}

.auth-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-family: "Polymarket Inter", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.auth-button,
.auth-avatar-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 650;
  line-height: 20px;
  white-space: nowrap;
}

.auth-button {
  padding: 0 15px;
  background: #ffffff;
  color: #0f172a;
}

.auth-button-register {
  border-color: #1452f0;
  background: #1452f0;
  color: #ffffff;
}

.auth-button-ghost {
  padding: 0 12px;
  color: #64748b;
}

.auth-user-wrap {
  position: relative;
  display: inline-grid;
  place-items: center;
}

.auth-avatar-button {
  width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  border-radius: 50%;
  background: #1452f0;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(20, 82, 240, 0.16);
  cursor: pointer;
}

.auth-avatar-button span {
  width: 100%;
  height: 100%;
  display: inline-grid;
  place-items: center;
  font-size: 14px;
  font-weight: 760;
}

.auth-user-tooltip {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  max-width: min(280px, 72vw);
  padding: 8px 10px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 10px;
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.18);
  font-size: 13px;
  font-weight: 650;
  line-height: 18px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
  z-index: 20;
}

.auth-user-wrap:hover .auth-user-tooltip,
.auth-user-wrap:focus-within .auth-user-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.auth-user-wrap.is-open .auth-user-tooltip {
  opacity: 0;
  transform: translateY(-4px);
}

.auth-account-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 228px;
  padding: 8px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  z-index: 28;
}

.auth-account-menu p {
  margin: 0;
  padding: 8px 9px 10px;
  color: #64748b;
  font-size: 13px;
  font-weight: 650;
  line-height: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-account-menu button {
  width: 100%;
  min-height: 36px;
  border: 0;
  border-radius: 9px;
  background: #f8fafc;
  color: #0f172a;
  font: inherit;
  font-size: 14px;
  font-weight: 720;
  cursor: pointer;
}

.auth-account-menu button:hover {
  background: #eef4ff;
  color: #1452f0;
}

main {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-pad) 64px;
}

.category-rail {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  height: 48px;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}

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

.category-rail a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  height: 48px;
  padding: 0 14px;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.category-rail a.active {
  border-bottom-color: var(--blue);
  color: var(--ink);
}

.spotlight-section,
.library-section,
.more-library-section,
.detail-page-section,
.fund-section,
.site-footer {
  margin-top: 28px;
}

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

.section-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-head h2 {
  color: var(--title);
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}

.market-summary {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.spotlight-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
}

.spotlight-carousel {
  position: relative;
  display: grid;
}

.spotlight-card,
.pulse-card,
.hot-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.spotlight-card {
  display: none;
  gap: 18px;
  min-height: 480px;
  padding: 20px;
}

.spotlight-card.is-active {
  display: grid;
  animation: spotlightFade 260ms ease;
}

@keyframes spotlightFade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.spotlight-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.spotlight-controls > button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}

.spotlight-controls > div {
  display: flex;
  gap: 7px;
  align-items: center;
}

.spotlight-dot {
  width: 22px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: #d8dee8;
}

.spotlight-dot.is-active {
  width: 32px;
  background: #1452f0;
}

.spotlight-head {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.market-icon {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  color: var(--title);
  overflow: hidden;
  box-shadow: none;
}

.market-icon svg {
  width: 88%;
  height: 88%;
  overflow: visible;
}

.icon-large {
  width: 64px;
  height: 64px;
  border-radius: 15px;
}

.icon-small {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.icon-tiny {
  width: 24px;
  height: 24px;
  border-radius: 7px;
}

.icon-nav {
  width: 24px;
  height: 24px;
  border-radius: 8px;
}

.icon-pulse {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.market-topic {
  color: var(--muted);
  font-size: 14px;
  font-weight: 540;
  line-height: 20px;
}

.spotlight-head h3 {
  margin-top: 4px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.spotlight-teaser {
  max-width: 680px;
  color: #475569;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}

.spotlight-index {
  display: grid;
  align-content: start;
  gap: 10px;
}

.spotlight-index div {
  display: grid;
  gap: 6px;
  min-height: 74px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 14px;
  background: #fbfcff;
}

.spotlight-index span {
  color: #64748b;
  font-size: 12px;
  font-weight: 720;
  line-height: 17px;
}

.spotlight-index strong {
  overflow: hidden;
  color: #111827;
  font-size: 16px;
  font-weight: 760;
  line-height: 22px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.rating-summary > span:not(.stars) {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.spotlight-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 18px;
  align-items: start;
}

.signal-panel {
  display: grid;
  gap: 10px;
  min-height: 292px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #fbfcff);
}

.signal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
}

.radar-card {
  display: grid;
  gap: 10px;
}

.radar-compact {
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: center;
}

.radar-compact .radar-head {
  grid-column: 1 / -1;
}

.radar-compact .radar-svg {
  grid-column: 1;
  height: 220px;
}

.radar-compact .radar-metrics {
  grid-column: 2;
  grid-template-columns: 1fr;
}

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

.radar-head span {
  color: var(--title);
  font-size: 13px;
  font-weight: 650;
  line-height: 18px;
}

.radar-head strong {
  display: grid;
  width: 34px;
  height: 26px;
  place-items: center;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 750;
}

.radar-svg {
  width: 100%;
  height: 190px;
  overflow: visible;
}

.radar-grid {
  fill: none;
  stroke: #e8ebf0;
  stroke-width: 1.2;
}

.radar-axis {
  stroke: #eef0f3;
  stroke-width: 1;
}

.radar-area {
  fill: rgba(20, 82, 240, 0.18);
  stroke: #1452f0;
  stroke-width: 2.8;
  stroke-linejoin: round;
}

.radar-dot {
  fill: #1452f0;
  stroke: #ffffff;
  stroke-width: 2;
}

.radar-label {
  fill: var(--muted);
  font-size: 10px;
  font-weight: 650;
  dominant-baseline: middle;
}

.radar-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.radar-metrics span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 30px;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.radar-metrics em {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.radar-metrics strong {
  color: var(--title);
  font-size: 12px;
  font-weight: 700;
}

.radar-detail {
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: center;
}

.radar-detail .radar-head {
  grid-column: 1 / -1;
}

.radar-detail .radar-svg {
  grid-column: 1;
  height: 230px;
}

.radar-detail .radar-metrics {
  grid-column: 2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.spotlight-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 19px;
}

.spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.unlock-button {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(20, 82, 240, 0.18);
  border-radius: 8px;
  background: #eef4ff;
  color: #1452f0;
  font-size: 14px;
  font-weight: 700;
  transition:
    background 140ms ease,
    transform 140ms ease,
    box-shadow 140ms ease;
}

.unlock-button:hover {
  background: #e0eaff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(20, 82, 240, 0.12);
}

.like-button {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--title);
  font-size: 14px;
  font-weight: 600;
}

.like-button.is-liked {
  border-color: #fecaca;
  background: #fff1f2;
  color: #e11d48;
}

.market-side {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 18px;
  align-content: stretch;
  height: calc(100% - 43px);
  min-height: 0;
}

.pulse-card h3,
.hot-card h3 {
  color: var(--title);
  font-size: 18px;
  font-weight: 580;
  line-height: 27px;
}

.pulse-card {
  display: grid;
  gap: 18px;
  min-height: 220px;
  padding: 18px;
  background:
    radial-gradient(circle at 18% 18%, rgba(20, 82, 240, 0.13), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(251, 191, 36, 0.18), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

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

.pulse-head strong {
  color: var(--blue);
  font-size: 34px;
  font-weight: 650;
  line-height: 34px;
}

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

.pulse-grid div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 5px 9px;
  align-items: center;
  min-height: 70px;
  padding: 12px;
  border-radius: 10px;
  background: #f7f8fa;
}

.pulse-grid div:nth-child(1) {
  background: #eef4ff;
  color: #1452f0;
}

.pulse-grid div:nth-child(2) {
  background: #fff7ed;
  color: #c2410c;
}

.pulse-grid div:nth-child(3) {
  background: #fdf2f8;
  color: #be185d;
}

.pulse-grid div:nth-child(4) {
  background: #ecfdf5;
  color: #15803d;
}

.pulse-grid div > span:not(.market-icon) {
  align-self: end;
  color: currentColor;
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
  opacity: 0.84;
}

.pulse-grid strong {
  grid-column: 2;
  align-self: start;
  color: currentColor;
  font-size: 26px;
  font-weight: 650;
  line-height: 28px;
}

.pulse-grid .market-icon {
  grid-row: 1 / span 2;
}

.category-rail .market-icon,
.rank-row .market-icon {
  flex: 0 0 auto;
}

.hot-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  align-content: stretch;
  padding: 18px;
}

.hot-card h3 {
  margin-bottom: 12px;
}

.hot-card > div {
  align-self: start;
}

.rank-row {
  display: grid;
  grid-template-columns: 24px 24px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  min-height: 54px;
  padding: 7px 4px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: inherit;
  text-align: left;
  transition:
    background 140ms ease,
    transform 140ms ease;
}

.rank-row:hover {
  background: #f8fafc;
  transform: translateX(2px);
}

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

.rank-index {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #f1f5ff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.rank-row:nth-child(1) .rank-index {
  background: #eef4ff;
  color: #1452f0;
}

.rank-row:nth-child(2) .rank-index {
  background: #fff7ed;
  color: #c2410c;
}

.rank-row:nth-child(3) .rank-index {
  background: #fdf2f8;
  color: #be185d;
}

.rank-row:nth-child(4) .rank-index {
  background: #ecfdf5;
  color: #15803d;
}

.rank-row strong {
  overflow: hidden;
  color: var(--title);
  font-size: 14px;
  font-weight: 590;
  line-height: 22px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-row em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}

.result-count {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

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

.featured-grid .feature-card:first-child {
  grid-column: span 2;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

body.is-opportunities-page .cards-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.library-more-action {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.library-more-action:empty {
  display: none;
}

.library-more-action .view-all-button {
  min-width: 132px;
  border-radius: 999px;
}

.library-pagination {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.library-pagination.is-single {
  color: #94a3b8;
}

.pagination-button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  background: #ffffff;
  color: var(--title);
  font-size: 13px;
  font-weight: 700;
  transition:
    border-color 140ms ease,
    background 140ms ease,
    transform 140ms ease;
}

.pagination-button:not(:disabled):hover {
  border-color: rgba(20, 82, 240, 0.22);
  background: #eef4ff;
  color: #1452f0;
  transform: translateY(-1px);
}

.pagination-button:disabled {
  color: #cbd5e1;
  cursor: not-allowed;
}

.pagination-status {
  min-width: 128px;
  text-align: center;
}

.feature-card,
.opportunity-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.feature-card,
.opportunity-card {
  display: grid;
  gap: 12px;
  align-content: start;
  width: 100%;
  color: inherit;
  text-align: left;
  transition:
    border-color 140ms ease,
    box-shadow 140ms ease,
    transform 140ms ease;
}

.feature-card {
  min-height: 292px;
  padding: 18px;
}

.opportunity-card {
  min-height: 194px;
  padding: 14px;
  cursor: pointer;
}

.feature-card:hover,
.opportunity-card:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 82, 240, 0.22);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow:
    0 0 0 1px rgba(20, 82, 240, 0.05),
    0 14px 30px rgba(15, 23, 42, 0.1);
}

.opportunity-card:focus-visible,
.rank-row:focus-visible,
.unlock-button:focus-visible,
.card-cta:focus-visible {
  outline: 3px solid rgba(20, 82, 240, 0.22);
  outline-offset: 3px;
}

.market-card-head {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.opportunity-card .market-card-head {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  align-items: center;
}

.opportunity-card .market-card-head > div {
  min-width: 0;
}

.feature-card h3 {
  color: var(--ink);
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.opportunity-card h3 {
  color: var(--title);
  font-size: 14px;
  font-weight: 590;
  line-height: 20px;
}

.feature-card p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
}

.opportunity-card p {
  display: -webkit-box;
  min-height: 38px;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 19px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tag {
  width: fit-content;
  padding: 5px 7px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

.market-fit-tag {
  border-color: rgba(20, 82, 240, 0.14);
  background: #eef4ff;
  color: #1452f0;
}

.rating-block {
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.opportunity-card .rating-block.is-compact {
  gap: 5px;
  padding: 8px 10px;
  background: #fbfcff;
}

.rating-block > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
}

.opportunity-card .rating-block.is-compact > span {
  font-size: 10px;
  line-height: 14px;
}

.rating-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.rating-main strong {
  color: var(--title);
  font-size: 14px;
  font-weight: 650;
  line-height: 20px;
}

.opportunity-card .rating-block.is-compact .rating-main strong {
  font-size: 13px;
  line-height: 18px;
}

.rating-rule {
  margin: 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 560;
  line-height: 18px;
}

.rating-block.is-compact .rating-rule {
  display: none;
}

.stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 1px;
}

.stars-inline {
  flex: 0 0 auto;
  font-size: 16px;
}

.stars .stars-on {
  color: var(--star);
}

.stars .stars-off {
  color: var(--star-muted);
}

.market-options {
  display: grid;
  gap: 8px;
}

.feature-card .market-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.market-options div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.market-options span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
}

.market-options strong {
  color: var(--title);
  font-size: 13px;
  font-weight: 650;
  line-height: 18px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-self: end;
}

.card-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}

.card-bottom-row .tag-row {
  flex: 1 1 auto;
  min-width: 0;
}

.card-bottom-row .card-cta {
  flex: 0 0 auto;
}

.card-cta {
  align-self: end;
  width: fit-content;
  margin-top: auto;
  padding: 7px 10px;
  border: 1px solid rgba(20, 82, 240, 0.16);
  border-radius: 999px;
  background: #eef4ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 650;
  line-height: 18px;
  transition:
    background 140ms ease,
    transform 140ms ease,
    box-shadow 140ms ease;
}

.card-cta-inline {
  flex: 0 0 auto;
  align-self: center;
  margin-top: 0;
  padding: 5px 9px;
  font-size: 12px;
  line-height: 17px;
}

.card-cta:hover {
  background: #e0eaff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(20, 82, 240, 0.12);
}

.card-cta:active,
.unlock-button:active {
  transform: translateY(0);
}

.filter-bar {
  display: none;
  grid-template-columns: repeat(3, minmax(180px, 1fr)) auto;
  gap: 10px;
  align-items: end;
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

body.is-opportunities-page .filter-bar {
  display: grid;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
}

select {
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--title);
  font-size: 14px;
}

.text-button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--title);
  font-size: 14px;
  font-weight: 600;
}

.view-all-button {
  border-color: rgba(20, 82, 240, 0.2);
  background: #eef4ff;
  color: #1452f0;
  font-weight: 750;
}

body.is-opportunities-page .spotlight-section,
body.is-opportunities-page .more-library-section {
  display: none;
}

body.is-opportunities-page .library-section {
  margin-top: 28px;
}

body.is-detail-page .spotlight-section,
body.is-detail-page .more-library-section,
body.is-detail-page .library-section,
body.is-detail-page .fund-section {
  display: none;
}

body:not(.is-detail-page) .detail-page-section {
  display: none;
}

body.is-detail-page .detail-page-section {
  display: block;
}

.more-library-section {
  display: grid;
  gap: 14px;
}

.bottom-value-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 34px;
  align-items: stretch;
  padding: 34px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 22px;
  background:
    radial-gradient(circle at 10% 20%, rgba(20, 82, 240, 0.09), transparent 30%),
    radial-gradient(circle at 72% 82%, rgba(245, 165, 36, 0.1), transparent 24%),
    #ffffff;
  box-shadow: var(--shadow);
}

.bottom-value-copy {
  display: grid;
  align-content: center;
}

.bottom-value-copy h2,
.value-main-title {
  max-width: 820px;
  color: var(--ink);
  font-size: 32px;
  font-weight: 680;
  line-height: 40px;
}

.bottom-value-copy p:not(.eyebrow) {
  max-width: 690px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 520;
  line-height: 24px;
}

.bottom-value-copy .value-subtitle {
  max-width: 760px;
  margin-top: 10px;
  color: var(--title);
  font-size: 24px;
  font-weight: 620;
  line-height: 32px;
}

.opc-fit-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  max-width: 760px;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(20, 82, 240, 0.12);
  border-radius: 14px;
  background: rgba(248, 251, 255, 0.88);
  color: var(--muted);
  font-size: 14px;
  font-weight: 560;
  line-height: 22px;
}

.opc-fit-note strong {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eef4ff;
  color: #1452f0;
  font-size: 13px;
  font-weight: 760;
  line-height: 18px;
}

.opc-fit-note span {
  flex: 1 1 360px;
  min-width: 0;
}

.evaluation-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin-top: 22px;
}

.evaluation-points div {
  min-height: 88px;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.evaluation-points strong {
  display: block;
  color: var(--title);
  font-size: 14px;
  font-weight: 760;
  line-height: 20px;
}

.evaluation-points span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 540;
  line-height: 18px;
}

.intro-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  max-width: 660px;
  margin-top: 18px;
}

.intro-category-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 7px 12px 7px 8px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: #ffffff;
  color: #667085;
  font-size: 13px;
  font-weight: 720;
  line-height: 18px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.intro-category-item .market-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 9px;
}

.rating-guide {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-self: stretch;
  padding: 16px;
  border: 1px solid rgba(20, 82, 240, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(238, 244, 255, 0.86), rgba(255, 255, 255, 0.94)),
    #ffffff;
}

.rating-guide article {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 4px 14px;
  align-items: center;
  min-height: 74px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.035);
}

.rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  min-height: auto;
  border-radius: 0;
  background: transparent;
  font-size: 15px;
  font-weight: 780;
  line-height: 18px;
  letter-spacing: 0;
}

.rating-stars b {
  color: var(--star);
  font-weight: 780;
}

.rating-stars i {
  color: var(--star-muted);
  font-style: normal;
  font-weight: 780;
}

.rating-guide strong {
  color: var(--title);
  font-size: 16px;
  font-weight: 760;
  line-height: 21px;
}

.rating-guide p {
  grid-column: 2;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}

.fund-section {
  display: grid;
}

.fund-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 24px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 22px;
  background:
    radial-gradient(circle at 8% 16%, rgba(20, 82, 240, 0.1), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(245, 165, 36, 0.11), transparent 24%),
    #ffffff;
  box-shadow: var(--shadow);
}

.fund-copy {
  display: grid;
  align-content: center;
  gap: 12px;
}

.fund-copy > span {
  width: fit-content;
  padding: 9px 16px;
  border-radius: 999px;
  background: #eef4ff;
  color: #1452f0;
  font-size: 15px;
  font-weight: 760;
  line-height: 20px;
}

.fund-copy h2 {
  max-width: 760px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 620;
  line-height: 38px;
}

.fund-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 520;
  line-height: 24px;
}

.fund-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.fund-actions button,
.fund-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 760;
}

.fund-actions button {
  border: 0;
  background: #1452f0;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(20, 82, 240, 0.2);
}

.fund-actions a {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  color: #0f172a;
}

.fund-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.fund-stats div {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.fund-stats span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  line-height: 18px;
}

.fund-stats strong {
  color: #0f172a;
  font-size: 22px;
  font-weight: 760;
  line-height: 28px;
}

.back-button {
  min-height: 38px;
  margin-bottom: 12px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--title);
  font-size: 14px;
  font-weight: 600;
}

.analysis-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
}

.analysis-hero h2 {
  max-width: 900px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.analysis-hero p {
  max-width: 820px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
}

.analysis-hero .tag-row {
  margin-top: 14px;
}

.analysis-rating .rating-block {
  min-height: 96px;
}

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

.analysis-block {
  min-height: 168px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.analysis-block-radar {
  grid-column: span 2;
}

.analysis-block-radar .radar-card {
  gap: 14px;
}

.analysis-block h3 {
  margin-bottom: 10px;
  color: var(--title);
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}

.analysis-block p,
.analysis-block li {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
}

.analysis-block p + p {
  margin-top: 8px;
}

.analysis-block p strong {
  color: var(--title);
  font-weight: 650;
}

.cost-summary {
  display: grid;
  gap: 6px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.cost-summary strong {
  color: var(--title);
  font-size: 22px;
  font-weight: 650;
  line-height: 28px;
}

.cost-summary span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 650;
  line-height: 18px;
}

.cost-lines {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.cost-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.cost-line:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.cost-line span {
  display: grid;
  gap: 4px;
  color: var(--title);
  font-size: 13px;
  font-weight: 650;
  line-height: 18px;
}

.cost-line small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 17px;
}

.cost-line strong {
  color: var(--title);
  font-size: 13px;
  font-weight: 650;
  line-height: 18px;
  white-space: nowrap;
}

.license-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.license-summary strong {
  color: var(--title);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.license-summary span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 18px;
  text-align: right;
}

.license-risk-low {
  border-color: #bbf7d0;
  background: #f0fdf4;
}

.license-risk-low strong {
  color: #15803d;
}

.license-risk-medium {
  border-color: #fde68a;
  background: #fffbeb;
}

.license-risk-medium strong {
  color: #b45309;
}

.license-risk-high {
  border-color: #fecaca;
  background: #fff1f2;
}

.license-risk-high strong {
  color: #be123c;
}

.license-lines {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.license-lines p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.license-lines p strong {
  display: block;
}

.license-source-list {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.license-source-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 32px;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.license-source-list span {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 17px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.license-source-list strong {
  color: var(--title);
  font-size: 12px;
  font-weight: 700;
}

.source-review-list {
  display: grid;
  gap: 8px;
}

.source-review-card {
  display: grid;
  gap: 7px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcff;
}

.source-review-head,
.source-review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.source-review-head span,
.source-review-meta span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  line-height: 16px;
}

.source-review-head strong {
  color: var(--blue);
  font-size: 12px;
  font-weight: 750;
  line-height: 17px;
  white-space: nowrap;
}

.source-review-card h4 {
  overflow: hidden;
  color: var(--title);
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.source-review-card p {
  margin: 0;
}

.source-review-action {
  display: grid;
  gap: 4px;
  padding-top: 2px;
}

.source-review-action strong {
  color: var(--title);
  font-size: 12px;
  font-weight: 760;
  line-height: 17px;
}

.source-review-warning {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding-top: 2px;
}

.source-review-warning span {
  padding: 4px 7px;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  background: #fff7ed;
  color: #b45309;
  font-size: 11px;
  font-weight: 720;
  line-height: 1;
}

.source-review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.source-review-tags span {
  padding: 4px 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  line-height: 1;
}

.assessment-panel {
  display: grid;
  gap: 12px;
}

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

.assessment-summary div {
  display: grid;
  gap: 5px;
  min-height: 58px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcff;
}

.assessment-summary span,
.assessment-source span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  line-height: 16px;
}

.assessment-summary strong {
  color: var(--title);
  font-size: 15px;
  font-weight: 750;
  line-height: 20px;
}

.assessment-source {
  display: grid;
  gap: 4px;
  padding: 9px 10px;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  background: #eff6ff;
}

.assessment-source strong {
  overflow: hidden;
  color: var(--blue);
  font-size: 13px;
  font-weight: 750;
  line-height: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.assessment-reasons,
.assessment-warnings {
  display: grid;
  gap: 6px;
}

.assessment-reasons span,
.assessment-warnings span {
  position: relative;
  padding-left: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 550;
  line-height: 19px;
}

.assessment-reasons span::before,
.assessment-warnings span::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
}

.assessment-warnings {
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.assessment-warnings span::before {
  background: #f59e0b;
}

.analysis-block ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
}

.route-grid {
  display: grid;
  gap: 10px;
}

.route-card {
  padding: 0 0 10px;
  border-bottom: 1px solid var(--line);
}

.route-card:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.route-card h3 {
  margin-bottom: 5px;
  color: var(--title);
  font-size: 14px;
  line-height: 20px;
}

.site-footer {
  margin-top: 58px;
  padding: 58px 0 18px;
  color: var(--title);
}

.footer-brand {
  display: grid;
  gap: 8px;
  margin-bottom: 46px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--ink);
  text-decoration: none;
}

.footer-logo .brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.footer-logo strong {
  font-size: 24px;
  font-weight: 760;
  line-height: 30px;
}

.footer-brand p,
.footer-disclaimer,
.footer-bottom p {
  color: var(--muted);
}

.footer-brand p {
  font-size: 14px;
  font-weight: 620;
  line-height: 20px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 88px;
  align-items: start;
}

.footer-directory h2,
.footer-links h2 {
  margin-bottom: 16px;
  color: #8792a4;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
}

.footer-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 18px 58px;
  max-width: 760px;
}

.footer-topic-grid a,
.footer-links a,
.footer-social a {
  color: var(--title);
  text-decoration: none;
}

.footer-topic-grid a {
  display: grid;
  gap: 3px;
}

.footer-topic-grid strong,
.footer-links a {
  font-size: 14px;
  font-weight: 650;
  line-height: 20px;
}

.footer-topic-grid span {
  color: #a0a8b6;
  font-size: 12px;
  font-weight: 560;
  line-height: 17px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links a {
  width: fit-content;
}

.footer-topic-grid a:hover strong,
.footer-links a:hover,
.footer-social a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  grid-template-areas:
    "social theme copyright"
    "disclaimer disclaimer copyright";
  align-items: center;
  gap: 14px 24px;
  margin-top: 58px;
  padding-top: 24px;
  min-height: 34px;
}

.footer-social {
  grid-area: social;
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}

.footer-theme-toggle {
  grid-area: theme;
  justify-self: end;
}

.footer-bottom p {
  display: flex;
  align-items: center;
  min-height: 32px;
  margin: 0;
  font-size: 12px;
  font-weight: 560;
  line-height: 18px;
  text-align: right;
}

.footer-bottom p:not(.footer-disclaimer) {
  grid-area: copyright;
}

.footer-disclaimer {
  grid-area: disclaimer;
  max-width: 100%;
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--muted);
}

@media (max-width: 1100px) {
  :root {
    --page-pad: var(--page-pad-mobile);
  }

  .site-header,
  .spotlight-layout,
  .spotlight-content,
  .cards-grid,
  .bottom-value-board,
  .fund-board,
  .fund-stats,
  .rating-guide,
  .filter-bar,
  .analysis-hero,
  .analysis-grid,
  .radar-compact,
  .radar-detail,
  .footer-main,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .market-side {
    grid-template-rows: auto;
    height: auto;
  }

  .analysis-block-radar {
    grid-column: span 1;
  }

  .intro-category-list {
    justify-content: flex-start;
  }

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

  .fund-board {
    padding: 22px;
  }

  .footer-main {
    gap: 40px;
  }

  .footer-bottom {
    align-items: flex-start;
    grid-template-columns: 1fr;
    grid-template-areas:
      "social"
      "theme"
      "disclaimer"
      "copyright";
  }

  .footer-theme-toggle {
    justify-self: start;
  }

  .footer-bottom p {
    text-align: left;
  }

  .radar-detail .radar-svg,
  .radar-detail .radar-metrics,
  .radar-compact .radar-svg,
  .radar-compact .radar-metrics {
    grid-column: 1;
  }

}

/* Hybrid pass: keep the icon-led UI, borrow BuildTheDoor color hierarchy and detail flow */
:root {
  --bg: #f9fafb;
  --ink: #0f172a;
  --title: #111827;
  --muted: #64748b;
  --soft: #fafaf9;
  --soft-2: #f3f4f6;
  --line: rgba(15, 23, 42, 0.08);
  --line-strong: rgba(15, 23, 42, 0.15);
  --blue: #1452f0;
  --blue-soft: #eef4ff;
  --violet: #6d28d9;
  --violet-soft: #f5f3ff;
  --star: #f59e0b;
  --star-muted: #d8dee8;
  --shadow: 0 12px 36px rgba(15, 23, 42, 0.04);
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Polymarket Inter", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-header,
main {
  max-width: var(--page-max);
}

.site-header {
  border-bottom-color: rgba(15, 23, 42, 0.06);
}

.search-pill,
.filter-bar label,
.filter-bar select,
.text-button,
.like-button {
  border-color: rgba(15, 23, 42, 0.1);
  border-radius: 12px;
  background: #fafaf9;
}

.site-nav {
  color: #475569;
}

.auth-actions {
  justify-self: end;
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-height: 36px;
  padding: 3px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 12px;
  background: #ffffff;
  color: #475569;
  font-size: 13px;
  font-weight: 650;
  line-height: 18px;
  transition:
    border-color 140ms ease,
    background 140ms ease,
    color 140ms ease,
    transform 140ms ease;
}

.theme-toggle [data-theme-label] {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
}

.theme-option {
  display: grid;
  min-width: 48px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  color: #64748b;
  transition:
    background 140ms ease,
    color 140ms ease,
    box-shadow 140ms ease;
}

.theme-toggle[aria-pressed="false"] .theme-option-day,
.theme-toggle[aria-pressed="true"] .theme-option-night {
  background: #1452f0;
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(20, 82, 240, 0.18);
}

.theme-toggle:hover {
  border-color: rgba(20, 82, 240, 0.22);
  color: #1452f0;
  transform: translateY(-1px);
}

.auth-button {
  border-radius: 12px;
}

.auth-button-login {
  background: #ffffff;
}

.auth-button-register {
  background: #1452f0;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(20, 82, 240, 0.16);
}

.category-rail {
  border-bottom-color: rgba(15, 23, 42, 0.08);
}

.section-head h2 {
  color: #0f172a;
  font-weight: 560;
}

.market-summary,
.result-count,
.market-topic,
.card-meta,
.spotlight-footer {
  color: #64748b;
}

.spotlight-card,
.pulse-card,
.hot-card,
.opportunity-card,
.bottom-value-board,
.analysis-hero,
.analysis-block,
.empty-state {
  border-color: rgba(15, 23, 42, 0.06);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.bottom-value-board {
  background:
    radial-gradient(circle at 8% 18%, rgba(20, 82, 240, 0.12), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(245, 158, 11, 0.12), transparent 24%),
    linear-gradient(100deg, rgba(238, 244, 255, 0.9) 0%, rgba(255, 255, 255, 0.98) 48%, rgba(255, 250, 242, 0.92) 100%);
}

.spotlight-card,
.pulse-card,
.hot-card {
  border-radius: 20px;
}

.opportunity-card {
  border-radius: 14px;
}

.market-icon {
  border-color: rgba(15, 23, 42, 0.08);
}

.spotlight-head h3,
.feature-card h3,
.analysis-hero h2 {
  color: #0f172a;
}

.spotlight-head h3 {
  font-weight: 620;
}

.opportunity-card h3 {
  color: #111827;
}

.opportunity-card p,
.feature-card p,
.analysis-hero p,
.analysis-block p,
.analysis-block li {
  color: #475569;
}

.rating-block,
.signal-panel,
.radar-metrics span {
  border-color: rgba(15, 23, 42, 0.07);
  background: #fafaf9;
}

.tag {
  border-color: rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: #f3f4f6;
  color: #475569;
}

.rank-index {
  background: #eef4ff;
  color: #1452f0;
}

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

.detail-metric {
  display: grid;
  gap: 8px;
  min-height: 98px;
  padding: 16px;
  border-radius: 16px;
}

.detail-metric span {
  color: #64748b;
  font-size: 12px;
  font-weight: 750;
  line-height: 18px;
}

.detail-metric strong {
  color: #0f172a;
  font-size: 20px;
  font-weight: 750;
  line-height: 1.2;
}

.metric-rose {
  background: #fff1f2;
}

.metric-rose strong {
  color: #be123c;
}

.metric-green {
  background: #ecfdf5;
}

.metric-green strong {
  color: #047857;
}

.metric-violet {
  background: #f5f3ff;
}

.metric-violet strong {
  color: #6d28d9;
}

.metric-amber {
  background: #fffbeb;
}

.metric-amber strong {
  color: #b45309;
}

.analysis-grid {
  align-items: start;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 16px;
  align-items: start;
  margin-top: 14px;
}

.detail-main {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.detail-sidebar {
  position: sticky;
  top: 16px;
  display: grid;
  gap: 12px;
  min-width: 0;
}

.detail-main .analysis-block {
  min-height: auto;
  padding: 20px;
  border-radius: 14px;
}

.detail-main .analysis-block h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 28px;
}

.detail-main .analysis-block p,
.detail-main .analysis-block li {
  font-size: 15px;
  font-weight: 450;
  line-height: 26px;
}

.detail-side-block {
  min-width: 0;
  padding: 15px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.detail-side-block h3 {
  margin-bottom: 12px;
  color: #111827;
  font-size: 16px;
  font-weight: 760;
  line-height: 22px;
}

.detail-side-block .assessment-panel,
.detail-side-block .radar-card {
  margin-top: 0;
}

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

.detail-side-block .radar-detail .radar-head,
.detail-side-block .radar-detail .radar-svg,
.detail-side-block .radar-detail .radar-metrics {
  grid-column: 1;
}

.detail-side-block .radar-detail .radar-svg {
  height: 230px;
}

.detail-side-block .radar-detail .radar-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-side-block ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
}

.detail-side-block li {
  color: #475569;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
}

.basic-facts {
  display: grid;
  gap: 0;
}

.basic-facts div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.basic-facts div:first-child {
  padding-top: 0;
}

.basic-facts div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.basic-facts span {
  color: #64748b;
  font-size: 13px;
  font-weight: 650;
}

.basic-facts strong {
  color: #111827;
  font-size: 13px;
  font-weight: 760;
  text-align: right;
}

.analysis-block h3 {
  font-size: 19px;
  font-weight: 720;
}

.analysis-block:nth-child(2),
.analysis-block:nth-child(3),
.analysis-block:nth-child(4),
.analysis-block:nth-child(5),
.analysis-block:nth-child(6),
.analysis-block:nth-child(7) {
  grid-column: span 1;
}

.modal-open {
  overflow: hidden;
}

.unlock-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.unlock-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.auth-modal {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.auth-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.unlock-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(20, 82, 240, 0.16), transparent 32%),
    rgba(15, 23, 42, 0.34);
  backdrop-filter: blur(10px);
}

.auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.34);
  backdrop-filter: blur(10px);
}

.unlock-panel {
  position: relative;
  display: grid;
  gap: 18px;
  width: min(760px, 100%);
  max-height: min(860px, calc(100vh - 48px));
  overflow: auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
  transform: translateY(18px) scale(0.98);
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.unlock-modal.is-visible .unlock-panel {
  transform: translateY(0) scale(1);
}

.auth-panel {
  position: relative;
  display: grid;
  gap: 18px;
  width: min(430px, 100%);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
  transform: translateY(18px) scale(0.98);
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.auth-modal.is-visible .auth-panel {
  transform: translateY(0) scale(1);
}

.unlock-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 50%;
  background: #ffffff;
  color: #64748b;
  font-size: 20px;
  line-height: 1;
}

.auth-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 50%;
  background: #ffffff;
  color: #64748b;
  font-size: 20px;
  line-height: 1;
}

.unlock-head {
  display: grid;
  gap: 8px;
  padding-right: 40px;
}

.unlock-head span {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  background: #eef4ff;
  color: #1452f0;
  font-size: 12px;
  font-weight: 760;
}

.unlock-head h2 {
  color: #0f172a;
  font-size: 30px;
  font-weight: 720;
  line-height: 38px;
}

.unlock-head p {
  color: #475569;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
}

.auth-copy {
  display: grid;
  gap: 8px;
  padding-right: 40px;
}

.auth-copy span {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  background: #eef4ff;
  color: #1452f0;
  font-size: 12px;
  font-weight: 760;
}

.auth-copy h2 {
  color: #0f172a;
  font-size: 28px;
  font-weight: 720;
  line-height: 36px;
}

.auth-copy p {
  color: #475569;
  font-size: 14px;
  font-weight: 540;
  line-height: 22px;
}

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

.auth-form label {
  display: grid;
  gap: 7px;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.auth-form input {
  min-height: 46px;
  width: 100%;
  padding: 0 13px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 12px;
  background: #fbfcff;
  color: #0f172a;
  outline: 0;
}

.auth-form input:focus {
  border-color: rgba(20, 82, 240, 0.38);
  box-shadow: 0 0 0 3px rgba(20, 82, 240, 0.1);
}

.auth-submit {
  min-height: 46px;
  border: 0;
  border-radius: 12px;
  background: #1452f0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 760;
  box-shadow: 0 12px 24px rgba(20, 82, 240, 0.22);
}

.auth-submit:disabled {
  opacity: 0.62;
  cursor: wait;
}

.auth-switch-row {
  display: flex;
  justify-content: center;
  gap: 6px;
  color: #64748b;
  font-size: 13px;
  font-weight: 650;
}

.auth-switch-row button {
  border: 0;
  background: transparent;
  color: #1452f0;
  font-weight: 760;
}

.auth-message {
  min-height: 20px;
  margin: -4px 0 0;
  color: #e11d48;
  font-size: 13px;
  font-weight: 650;
  line-height: 20px;
  text-align: center;
}

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

.unlock-snapshot div,
.unlock-preview span {
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 14px;
  background: #fbfcff;
}

.unlock-snapshot div {
  display: grid;
  gap: 6px;
  padding: 13px;
}

.unlock-snapshot span,
.unlock-preview span {
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.unlock-snapshot strong {
  color: #111827;
  font-size: 17px;
  font-weight: 780;
  line-height: 24px;
}

.unlock-market-fit {
  margin: 0;
  padding: 13px 15px;
  border: 1px solid rgba(20, 82, 240, 0.12);
  border-radius: 14px;
  background: #eef4ff;
  color: #334155;
  font-size: 14px;
  font-weight: 560;
  line-height: 22px;
}

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

.unlock-preview span {
  position: relative;
  overflow: hidden;
  padding: 12px;
}

.unlock-preview span::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: translateX(-100%);
  animation: preview-sheen 2.4s ease-in-out infinite;
  content: "";
}

.unlock-report-preview {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 16px;
  background: #fbfcff;
}

.unlock-preview-text {
  display: grid;
  gap: 6px;
}

.unlock-preview-text h3 {
  margin: 0;
  color: #0f172a;
  font-size: 17px;
  font-weight: 760;
  line-height: 24px;
}

.unlock-preview-text p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  font-weight: 540;
  line-height: 22px;
}

.unlock-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.unlock-preview-grid div {
  display: grid;
  gap: 7px;
  min-height: 104px;
  padding: 13px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 14px;
  background: #ffffff;
}

.unlock-preview-grid span {
  color: #1452f0;
  font-size: 12px;
  font-weight: 760;
}

.unlock-preview-grid p {
  margin: 0;
  color: #334155;
  font-size: 13px;
  font-weight: 560;
  line-height: 20px;
}

.unlock-panel-membership {
  width: min(620px, 100%);
}

.unlock-panel-full-report {
  width: min(1040px, 100%);
}

.unlock-panel-fund {
  width: min(980px, 100%);
}

.detail-report-page {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.detail-page-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

.detail-report-head {
  padding-right: 0;
}

.detail-report-head h1 {
  color: #0f172a;
  font-size: 34px;
  font-weight: 720;
  line-height: 42px;
}

.detail-gate-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(20, 82, 240, 0.16);
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.detail-gate-card h2 {
  margin: 0 0 6px;
  color: #0f172a;
  font-size: 22px;
  font-weight: 760;
  line-height: 30px;
}

.detail-gate-card p {
  margin: 0;
  color: #475569;
  font-size: 15px;
  font-weight: 540;
  line-height: 24px;
}

.full-report-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.full-report-summary div {
  display: grid;
  gap: 7px;
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 14px;
  background: #fbfcff;
}

.full-report-summary span {
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.full-report-summary strong {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  color: #0f172a;
  font-size: 17px;
  font-weight: 780;
  line-height: 24px;
}

.full-report-body {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 14px;
}

.full-report-radar,
.full-report-card {
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.full-report-radar {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 14px;
}

.full-report-radar h3,
.full-report-radar h2,
.full-report-card h3,
.full-report-card h2 {
  margin: 0;
  color: #0f172a;
  font-size: 16px;
  font-weight: 760;
  line-height: 23px;
}

.full-report-radar .radar-card {
  border: 0;
  box-shadow: none;
}

.full-report-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.full-report-card {
  display: grid;
  gap: 9px;
  min-height: 138px;
  padding: 14px;
}

.full-report-card p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  font-weight: 540;
  line-height: 22px;
}

.fund-modal-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: stretch;
  padding-right: 40px;
}

.fund-modal-head > div:first-child {
  display: grid;
  gap: 8px;
}

.fund-modal-head span {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  background: #eef4ff;
  color: #1452f0;
  font-size: 12px;
  font-weight: 760;
}

.fund-modal-head h2 {
  color: #0f172a;
  font-size: 30px;
  font-weight: 720;
  line-height: 38px;
}

.fund-modal-head p {
  color: #475569;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
}

.fund-capital {
  display: grid;
  gap: 7px;
  align-content: center;
  padding: 16px;
  border: 1px solid rgba(20, 82, 240, 0.14);
  border-radius: 16px;
  background: #eef4ff;
}

.fund-capital strong {
  color: #0f172a;
  font-size: 22px;
  font-weight: 800;
  line-height: 28px;
}

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

.fund-range-grid div {
  display: grid;
  gap: 6px;
  min-height: 80px;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 14px;
  background: #fbfcff;
}

.fund-range-grid span {
  color: #64748b;
  font-size: 12px;
  font-weight: 760;
}

.fund-range-grid strong {
  color: #0f172a;
  font-size: 16px;
  font-weight: 780;
  line-height: 23px;
}

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

.fund-flow span {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(20, 82, 240, 0.12);
  border-radius: 999px;
  background: #eef4ff;
  color: #1452f0;
  font-size: 13px;
  font-weight: 760;
}

.fund-flow b {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #1452f0;
  color: #ffffff;
  font-size: 11px;
  font-weight: 760;
}

.fund-notice {
  margin: 0;
  padding: 13px 15px;
  border: 1px solid rgba(245, 165, 36, 0.22);
  border-radius: 14px;
  background: #fffbeb;
  color: #475569;
  font-size: 14px;
  font-weight: 560;
  line-height: 22px;
}

.fund-member-gate {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(20, 82, 240, 0.13);
  border-radius: 16px;
  background: #fbfcff;
}

.fund-member-gate strong {
  color: #0f172a;
  font-size: 15px;
  font-weight: 760;
}

.fund-member-gate p {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 13px;
  font-weight: 560;
  line-height: 20px;
}

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

.fund-form label {
  display: grid;
  gap: 7px;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.fund-form input,
.fund-form select,
.fund-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 12px;
  background: #fbfcff;
  color: #0f172a;
  outline: 0;
}

.fund-form textarea {
  min-height: 86px;
  padding: 12px 13px;
  resize: vertical;
}

.fund-form input:focus,
.fund-form select:focus,
.fund-form textarea:focus {
  border-color: rgba(20, 82, 240, 0.38);
  box-shadow: 0 0 0 3px rgba(20, 82, 240, 0.1);
}

.fund-form.is-locked {
  opacity: 0.62;
}

.fund-form-wide,
.fund-form-actions {
  grid-column: 1 / -1;
}

.fund-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.membership-account-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 13px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 13px;
  background: #fbfcff;
}

.membership-account-line span {
  color: #64748b;
  font-size: 12px;
  font-weight: 760;
}

.membership-account-line strong {
  min-width: 0;
  overflow: hidden;
  color: #0f172a;
  font-size: 13px;
  font-weight: 760;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.membership-report-list span {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid rgba(20, 82, 240, 0.12);
  border-radius: 12px;
  background: #eef4ff;
  color: #1452f0;
  font-size: 13px;
  font-weight: 760;
  text-align: center;
}

.membership-gate {
  display: grid;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(20, 82, 240, 0.13);
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.membership-gate > div:first-child {
  display: grid;
  gap: 6px;
}

.membership-gate > div:first-child span {
  color: #0f172a;
  font-size: 15px;
  font-weight: 760;
}

.membership-gate > div:first-child p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  font-weight: 560;
  line-height: 20px;
}

.membership-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.membership-plan {
  min-height: 92px;
  padding: 13px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: #ffffff;
  color: #0f172a;
  text-align: left;
  display: grid;
  gap: 4px;
  cursor: pointer;
  transition:
    border-color 140ms ease,
    transform 140ms ease,
    box-shadow 140ms ease;
}

.membership-plan:hover,
.membership-plan.is-active {
  border-color: rgba(20, 82, 240, 0.32);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(20, 82, 240, 0.12);
}

.membership-plan.is-primary {
  background: #eef4ff;
  border-color: rgba(20, 82, 240, 0.2);
}

.membership-plan span {
  color: #64748b;
  font-size: 12px;
  font-weight: 760;
}

.membership-plan strong {
  color: #0f172a;
  font-size: 22px;
  font-weight: 800;
  line-height: 28px;
}

.membership-plan em {
  color: #64748b;
  font-size: 12px;
  font-style: normal;
  font-weight: 650;
}

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

.primary-unlock,
.secondary-unlock {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 760;
  transition:
    background 140ms ease,
    transform 140ms ease,
    box-shadow 140ms ease;
}

.primary-unlock {
  border: 0;
  background: #1452f0;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(20, 82, 240, 0.22);
}

.secondary-unlock {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  color: #0f172a;
}

.primary-unlock.is-active,
.secondary-unlock.is-active {
  background: #0f172a;
  color: #ffffff;
}

.checkout-message {
  min-height: 20px;
  margin: -4px 0 0;
  color: #64748b;
  font-size: 13px;
  font-weight: 650;
  line-height: 20px;
}

@keyframes preview-sheen {
  0% {
    transform: translateX(-100%);
  }
  55%,
  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 1100px) {
  .detail-metric-strip {
    grid-template-columns: 1fr;
  }

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

  .detail-sidebar {
    position: static;
  }

  .unlock-snapshot,
  .unlock-preview,
  .unlock-preview-grid,
  .full-report-summary,
  .full-report-body,
  .full-report-grid,
  .membership-report-list,
  .fund-modal-head,
  .fund-range-grid,
  .fund-flow,
  .fund-form,
  .fund-member-gate {
    grid-template-columns: 1fr;
  }

  .fund-modal-head {
    padding-right: 40px;
  }

  .fund-form-wide,
  .fund-form-actions {
    grid-column: 1;
  }
}

/* Dark theme */
html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #080d18;
  --ink: #e7edf8;
  --title: #f8fbff;
  --muted: #94a3b8;
  --soft: #0f1726;
  --soft-2: #151f32;
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(191, 219, 254, 0.28);
  --blue: #6ea8ff;
  --blue-soft: rgba(53, 107, 255, 0.14);
  --violet: #a78bfa;
  --violet-soft: rgba(124, 58, 237, 0.16);
  --star: #f59e0b;
  --star-muted: #64748b;
  --shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] body {
  background:
    radial-gradient(circle at 12% 0%, rgba(37, 99, 235, 0.14), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(109, 40, 217, 0.12), transparent 28%),
    var(--bg);
  color: var(--ink);
}

html[data-theme="dark"] .site-header {
  border-bottom-color: rgba(148, 163, 184, 0.16);
}

html[data-theme="dark"] .brand .brand-mark,
html[data-theme="dark"] .footer-logo .brand-mark {
  filter: brightness(0) invert(1);
  box-shadow: none;
}

html[data-theme="dark"] .brand,
html[data-theme="dark"] .section-head h2,
html[data-theme="dark"] .spotlight-head h3,
html[data-theme="dark"] .feature-card h3,
html[data-theme="dark"] .analysis-hero h2,
html[data-theme="dark"] .opportunity-card h3,
html[data-theme="dark"] .value-main-title,
html[data-theme="dark"] .value-subtitle,
html[data-theme="dark"] .unlock-head h2,
html[data-theme="dark"] .auth-copy h2,
html[data-theme="dark"] .fund-modal-head h2,
html[data-theme="dark"] .full-report-radar h3,
html[data-theme="dark"] .full-report-radar h2,
html[data-theme="dark"] .full-report-card h3,
html[data-theme="dark"] .full-report-card h2,
html[data-theme="dark"] .detail-report-head h1,
html[data-theme="dark"] .detail-gate-card h2,
html[data-theme="dark"] .membership-gate > div:first-child span,
html[data-theme="dark"] .fund-capital strong,
html[data-theme="dark"] .fund-range-grid strong,
html[data-theme="dark"] .spotlight-index strong,
html[data-theme="dark"] .detail-metric strong,
html[data-theme="dark"] .detail-side-block h3,
html[data-theme="dark"] .market-options strong,
html[data-theme="dark"] .fund-stats strong {
  color: var(--title);
}

html[data-theme="dark"] .market-summary,
html[data-theme="dark"] .result-count,
html[data-theme="dark"] .market-topic,
html[data-theme="dark"] .card-meta,
html[data-theme="dark"] .spotlight-footer,
html[data-theme="dark"] .site-nav,
html[data-theme="dark"] .category-rail,
html[data-theme="dark"] .footer-brand p,
html[data-theme="dark"] .footer-disclaimer,
html[data-theme="dark"] .footer-bottom p,
html[data-theme="dark"] .opportunity-card p,
html[data-theme="dark"] .feature-card p,
html[data-theme="dark"] .analysis-hero p,
html[data-theme="dark"] .analysis-block p,
html[data-theme="dark"] .analysis-block li,
html[data-theme="dark"] .unlock-head p,
html[data-theme="dark"] .auth-copy p,
html[data-theme="dark"] .unlock-preview-text p,
html[data-theme="dark"] .unlock-preview-grid p,
html[data-theme="dark"] .full-report-card p,
html[data-theme="dark"] .detail-gate-card p,
html[data-theme="dark"] .fund-modal-head p,
html[data-theme="dark"] .fund-member-gate p,
html[data-theme="dark"] .membership-gate > div:first-child p,
html[data-theme="dark"] .membership-plan em,
html[data-theme="dark"] .spotlight-index span,
html[data-theme="dark"] .detail-metric span,
html[data-theme="dark"] .market-options span,
html[data-theme="dark"] .checkout-message {
  color: var(--muted);
}

html[data-theme="dark"] .search-pill,
html[data-theme="dark"] .filter-bar label,
html[data-theme="dark"] .filter-bar select,
html[data-theme="dark"] .text-button,
html[data-theme="dark"] .like-button,
html[data-theme="dark"] .auth-button-login,
html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .spotlight-card,
html[data-theme="dark"] .pulse-card,
html[data-theme="dark"] .hot-card,
html[data-theme="dark"] .opportunity-card,
html[data-theme="dark"] .bottom-value-board,
html[data-theme="dark"] .fund-board,
html[data-theme="dark"] .analysis-hero,
html[data-theme="dark"] .analysis-block,
html[data-theme="dark"] .empty-state,
html[data-theme="dark"] .footer-topic-grid a,
html[data-theme="dark"] .footer-social a,
html[data-theme="dark"] .unlock-snapshot div,
html[data-theme="dark"] .unlock-preview span,
html[data-theme="dark"] .unlock-report-preview,
html[data-theme="dark"] .unlock-preview-grid div,
html[data-theme="dark"] .full-report-summary div,
html[data-theme="dark"] .full-report-radar,
html[data-theme="dark"] .full-report-card,
html[data-theme="dark"] .detail-report-page,
html[data-theme="dark"] .detail-gate-card,
html[data-theme="dark"] .fund-range-grid div,
html[data-theme="dark"] .fund-member-gate,
html[data-theme="dark"] .membership-account-line,
html[data-theme="dark"] .membership-plan,
html[data-theme="dark"] .spotlight-index div,
html[data-theme="dark"] .detail-metric,
html[data-theme="dark"] .detail-side-block,
html[data-theme="dark"] .market-options div,
html[data-theme="dark"] .fund-stats div,
html[data-theme="dark"] .fund-actions a,
html[data-theme="dark"] .secondary-unlock {
  border-color: var(--line);
  background: rgba(15, 23, 42, 0.78);
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .bottom-value-board {
  background:
    radial-gradient(circle at 8% 18%, rgba(59, 130, 246, 0.2), transparent 32%),
    radial-gradient(circle at 92% 12%, rgba(245, 158, 11, 0.12), transparent 26%),
    linear-gradient(100deg, rgba(15, 23, 42, 0.92) 0%, rgba(8, 13, 24, 0.94) 52%, rgba(20, 18, 28, 0.9) 100%);
}

html[data-theme="dark"] .rating-guide {
  border-color: rgba(96, 165, 250, 0.18);
  background:
    radial-gradient(circle at 18% 0%, rgba(37, 99, 235, 0.14), transparent 36%),
    rgba(8, 13, 24, 0.74);
}

html[data-theme="dark"] .rating-guide article {
  border-color: var(--line);
  background: rgba(15, 23, 42, 0.82);
  box-shadow: none;
}

html[data-theme="dark"] .rating-stars i,
html[data-theme="dark"] .stars .stars-off {
  color: var(--star-muted);
}

html[data-theme="dark"] .radar-head strong {
  background: rgba(37, 99, 235, 0.18);
  color: #93c5fd;
}

html[data-theme="dark"] .radar-grid {
  stroke: rgba(148, 163, 184, 0.22);
}

html[data-theme="dark"] .radar-axis {
  stroke: rgba(148, 163, 184, 0.14);
}

html[data-theme="dark"] .radar-area {
  fill: rgba(59, 130, 246, 0.22);
  stroke: #60a5fa;
}

html[data-theme="dark"] .radar-dot {
  fill: #60a5fa;
  stroke: #0f172a;
}

html[data-theme="dark"] .radar-label {
  fill: #9ca9bd;
}

html[data-theme="dark"] .pulse-card {
  background:
    radial-gradient(circle at 18% 18%, rgba(59, 130, 246, 0.18), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(245, 158, 11, 0.12), transparent 28%),
    rgba(15, 23, 42, 0.82);
}

html[data-theme="dark"] .pulse-grid div,
html[data-theme="dark"] .pulse-grid div:nth-child(1),
html[data-theme="dark"] .pulse-grid div:nth-child(2),
html[data-theme="dark"] .pulse-grid div:nth-child(3),
html[data-theme="dark"] .pulse-grid div:nth-child(4) {
  background: rgba(8, 13, 24, 0.68);
}

html[data-theme="dark"] .fund-board {
  background:
    radial-gradient(circle at 8% 16%, rgba(59, 130, 246, 0.18), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(245, 158, 11, 0.12), transparent 24%),
    rgba(15, 23, 42, 0.82);
}

html[data-theme="dark"] .fund-copy > span {
  background: rgba(37, 99, 235, 0.16);
  color: #93c5fd;
}

html[data-theme="dark"] .fund-actions button {
  background: #2563eb;
  color: #ffffff;
}

html[data-theme="dark"] .search-pill input,
html[data-theme="dark"] .auth-form input,
html[data-theme="dark"] .fund-form input,
html[data-theme="dark"] .fund-form select,
html[data-theme="dark"] .fund-form textarea {
  border-color: var(--line);
  background: rgba(8, 13, 24, 0.9);
  color: var(--title);
}

html[data-theme="dark"] .search-pill input::placeholder,
html[data-theme="dark"] input::placeholder,
html[data-theme="dark"] textarea::placeholder {
  color: #64748b;
}

html[data-theme="dark"] .category-rail {
  border-bottom-color: var(--line);
}

html[data-theme="dark"] .category-rail a,
html[data-theme="dark"] .footer-topic-grid strong,
html[data-theme="dark"] .footer-links a {
  color: #cbd5e1;
}

html[data-theme="dark"] .category-rail a.active,
html[data-theme="dark"] .category-rail a:hover,
html[data-theme="dark"] .footer-topic-grid a:hover strong,
html[data-theme="dark"] .footer-links a:hover,
html[data-theme="dark"] .footer-social a:hover,
html[data-theme="dark"] .unlock-preview-grid span,
html[data-theme="dark"] .membership-report-list span,
html[data-theme="dark"] .auth-switch-row button {
  color: var(--blue);
}

html[data-theme="dark"] .tag,
html[data-theme="dark"] .rank-index,
html[data-theme="dark"] .unlock-head span,
html[data-theme="dark"] .auth-copy span,
html[data-theme="dark"] .fund-modal-head span,
html[data-theme="dark"] .membership-report-list span,
html[data-theme="dark"] .fund-flow span,
html[data-theme="dark"] .market-icon,
html[data-theme="dark"] .opc-fit-note,
html[data-theme="dark"] .intro-category-item {
  border-color: rgba(96, 165, 250, 0.22);
  background: rgba(37, 99, 235, 0.16);
  color: #93c5fd;
}

html[data-theme="dark"] .rating-block,
html[data-theme="dark"] .signal-panel,
html[data-theme="dark"] .radar-metrics span {
  border-color: var(--line);
  background: rgba(8, 13, 24, 0.66);
}

html[data-theme="dark"] .unlock-backdrop {
  background:
    radial-gradient(circle at 50% 12%, rgba(59, 130, 246, 0.22), transparent 34%),
    rgba(2, 6, 23, 0.72);
}

html[data-theme="dark"] .auth-backdrop {
  background: rgba(2, 6, 23, 0.72);
}

html[data-theme="dark"] .unlock-panel,
html[data-theme="dark"] .auth-panel {
  border-color: rgba(148, 163, 184, 0.24);
  background: rgba(15, 23, 42, 0.98);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.5);
}

html[data-theme="dark"] .unlock-close,
html[data-theme="dark"] .auth-close {
  border-color: var(--line);
  background: rgba(8, 13, 24, 0.92);
  color: #cbd5e1;
}

html[data-theme="dark"] .unlock-market-fit,
html[data-theme="dark"] .membership-gate,
html[data-theme="dark"] .fund-capital {
  border-color: rgba(96, 165, 250, 0.22);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.18), rgba(15, 23, 42, 0.9));
  color: #cbd5e1;
}

html[data-theme="dark"] .fund-notice {
  border-color: rgba(245, 158, 11, 0.28);
  background: rgba(120, 53, 15, 0.18);
  color: #f8d59b;
}

html[data-theme="dark"] .primary-unlock,
html[data-theme="dark"] .auth-submit,
html[data-theme="dark"] .auth-button-register {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28);
}

html[data-theme="dark"] .theme-toggle[aria-pressed="true"] {
  border-color: rgba(96, 165, 250, 0.34);
  background: rgba(8, 13, 24, 0.76);
  color: #bfdbfe;
}

html[data-theme="dark"] .theme-option {
  color: #94a3b8;
}

html[data-theme="dark"] .theme-toggle[aria-pressed="false"] .theme-option-day,
html[data-theme="dark"] .theme-toggle[aria-pressed="true"] .theme-option-night {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.28);
}

html[data-theme="dark"] .opportunity-card:hover {
  border-color: rgba(96, 165, 250, 0.42);
  background: rgba(22, 32, 52, 0.95);
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.16);
}

/* Dark component contract: keep backend-driven content inside dark surfaces. */
html[data-theme="dark"] .view-all-button,
html[data-theme="dark"] .pagination-button {
  border-color: rgba(96, 165, 250, 0.28);
  background: rgba(37, 99, 235, 0.16);
  color: #bfdbfe;
  box-shadow: none;
}

html[data-theme="dark"] .unlock-button,
html[data-theme="dark"] .card-cta {
  border-color: rgba(96, 165, 250, 0.62);
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.3);
}

html[data-theme="dark"] .card-cta-inline {
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.24);
}

html[data-theme="dark"] .filter-bar,
html[data-theme="dark"] body.is-opportunities-page .filter-bar {
  border-color: var(--line);
  background: rgba(15, 23, 42, 0.78);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .view-all-button:hover,
html[data-theme="dark"] .pagination-button:not(:disabled):hover {
  border-color: rgba(96, 165, 250, 0.42);
  background: rgba(37, 99, 235, 0.26);
  color: #ffffff;
}

html[data-theme="dark"] .unlock-button:hover,
html[data-theme="dark"] .card-cta:hover {
  border-color: rgba(147, 197, 253, 0.76);
  background: linear-gradient(180deg, #60a5fa 0%, #2563eb 100%);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(59, 130, 246, 0.38);
}

html[data-theme="dark"] .spotlight-controls > button {
  border-color: var(--line);
  background: rgba(15, 23, 42, 0.86);
  color: #cbd5e1;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .spotlight-controls > button:hover {
  border-color: rgba(96, 165, 250, 0.36);
  background: rgba(30, 41, 59, 0.92);
  color: #ffffff;
}

html[data-theme="dark"] .spotlight-dot {
  background: rgba(71, 85, 105, 0.65);
}

html[data-theme="dark"] .spotlight-dot.is-active {
  background: #60a5fa;
}

html[data-theme="dark"] .rank-row:hover {
  background: rgba(15, 23, 42, 0.66);
}

html[data-theme="dark"] .rank-row .rank-index,
html[data-theme="dark"] .rank-row:nth-child(1) .rank-index,
html[data-theme="dark"] .rank-row:nth-child(2) .rank-index,
html[data-theme="dark"] .rank-row:nth-child(3) .rank-index,
html[data-theme="dark"] .rank-row:nth-child(4) .rank-index {
  border: 1px solid rgba(96, 165, 250, 0.16);
  background: rgba(8, 13, 24, 0.72);
  color: #93c5fd;
}

html[data-theme="dark"] .pulse-grid div,
html[data-theme="dark"] .pulse-grid div:nth-child(1),
html[data-theme="dark"] .pulse-grid div:nth-child(2),
html[data-theme="dark"] .pulse-grid div:nth-child(3),
html[data-theme="dark"] .pulse-grid div:nth-child(4) {
  color: #cbd5e1;
}

html[data-theme="dark"] .opc-fit-note strong,
html[data-theme="dark"] .evaluation-points div,
html[data-theme="dark"] .intro-category-item {
  border-color: var(--line);
  background: rgba(15, 23, 42, 0.78);
  color: var(--title);
  box-shadow: none;
}

html[data-theme="dark"] .opc-fit-note strong {
  color: #93c5fd;
}

html[data-theme="dark"] .evaluation-points span,
html[data-theme="dark"] .opc-fit-note span {
  color: var(--muted);
}

html[data-theme="dark"] .opportunity-card .rating-block.is-compact,
html[data-theme="dark"] .feature-card .rating-block,
html[data-theme="dark"] .analysis-rating .rating-block {
  border-color: var(--line);
  background: rgba(8, 13, 24, 0.7);
  box-shadow: none;
}

html[data-theme="dark"] .opportunity-card .rating-block.is-compact > span,
html[data-theme="dark"] .rating-rule {
  color: var(--muted);
}

html[data-theme="dark"] .opportunity-card .rating-block.is-compact .rating-main strong,
html[data-theme="dark"] .rating-main strong {
  color: var(--title);
}

html[data-theme="dark"] .unlock-snapshot strong,
html[data-theme="dark"] .unlock-preview-text h3 {
  color: var(--title);
}

html[data-theme="dark"] .analysis-block-radar .radar-card,
html[data-theme="dark"] .detail-side-block .radar-card,
html[data-theme="dark"] .full-report-radar .radar-card {
  border-color: var(--line);
  background: transparent;
  box-shadow: none;
}

html[data-theme="dark"] .unlock-preview span::after {
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.12), transparent);
}

html[data-theme="dark"] .membership-plan.is-primary {
  border-color: rgba(96, 165, 250, 0.24);
  background: rgba(37, 99, 235, 0.16);
}
