:root {
  --paper: #fafafa;
  --surface: #ffffff;
  --surface-soft: #f2f4f1;
  --chip: #f6f8f5;
  --field: #ffffff;
  --ink: #11201a;
  --muted: #5f6b64;
  --faint: #98a29b;
  --line: #e6e8e4;
  --line-soft: #eef1ec;
  --line-strong: #d2d8d2;
  --coral: #0f6344;
  --coral-ink: #0a4e35;
  --coral-strong: #0a4e35;
  --mint: #d8e8e0;
  --mint-strong: #0f6344;
  --deep: #0e1c16;
  --accent: #bf6f28;
  --accent-soft: #a85f22;
  --shadow: 0 10px 30px rgba(17, 32, 26, 0.06);
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
strong,
b {
  font-weight: 500;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Space Grotesk", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(circle at 12% 0%, rgba(15, 99, 68, 0.16), transparent 30rem),
    radial-gradient(circle at 88% 0%, rgba(47, 125, 83, 0.18), transparent 32rem),
    var(--paper);
}

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

button {
  cursor: pointer;
  scroll-margin-top: 96px;
}

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

a:hover {
  color: var(--coral-ink);
}

.app-shell {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 22px 18px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(165deg, rgba(15, 99, 68, 0.12), rgba(255, 255, 255, 0.92) 38%),
    linear-gradient(20deg, rgba(47, 125, 83, 0.14), rgba(255, 255, 255, 0.92) 46%),
    rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(22px);
}

.brand-lockup {
  display: flex;
  gap: 12px;
  align-items: center;
}

.brand-logo {
  width: 58px;
  height: 58px;
  padding: 5px;
  border: 1px solid rgba(47, 125, 83, 0.22);
  border-radius: 14px;
  object-fit: contain;
  background: #07100f;
  box-shadow: 0 10px 22px rgba(44, 56, 47, 0.16);
}

.brand-name {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

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

.brand-line {
  margin-top: 5px;
  color: var(--mint-strong);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.35;
}

.nav-list {
  display: grid;
  gap: 7px;
  margin-top: 28px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: var(--deep);
  background: transparent;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
}

.nav-item span:first-child {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--mint-strong);
  background: linear-gradient(135deg, rgba(15, 99, 68, 0.18), rgba(47, 125, 83, 0.16));
  font-size: 16px;
  font-weight: 500;
}

.nav-item:hover,
.nav-item.active {
  color: var(--ink);
  border-color: rgba(47, 125, 83, 0.22);
  background: rgba(47, 125, 83, 0.07);
}

.sidebar-card,
.sidebar-profile,
.sidebar-tools,
.panel,
.auth-panel,
.hero-band,
.intelligence-card,
.community-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.sidebar-card {
  margin-top: 18px;
  padding: 14px;
}

.sidebar-profile {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(15, 99, 68, 0.1), rgba(47, 125, 83, 0.08)),
    var(--surface);
}

.sidebar-profile img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  background: #07100f;
}

.sidebar-profile strong {
  display: block;
  margin-top: 3px;
  font-size: 14px;
}

.sidebar-profile span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.sidebar-tools {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 12px;
}

.sidebar-tools button {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.75);
  text-align: left;
  font-size: 12px;
  font-weight: 400;
}

.sidebar-tools button:hover {
  border-color: rgba(47, 125, 83, 0.22);
  background: rgba(47, 125, 83, 0.08);
}

.sidebar-tools span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(15, 99, 68, 0.16);
}

.sidebar-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.compact-score p {
  margin: 0;
}

.eyebrow {
  margin: 0;
  color: var(--mint-strong);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mini-stat {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.mini-stat strong {
  color: var(--coral-ink);
  font-size: 20px;
  font-weight: 400;
}

.progress-track {
  height: 7px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 99px;
  background: var(--line-soft);
}

.progress-track span {
  display: block;
  width: 58%;
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--mint));
}

.main {
  min-width: 0;
  padding: 22px;
}

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

.topbar h1 {
  margin: 4px 0 0;
  font-size: clamp(23px, 1.9vw, 29px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 500;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search {
  width: min(34vw, 360px);
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--surface);
  font-size: 13px;
}

.search::placeholder {
  color: var(--faint);
}

.primary-button,
.ghost-button {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 400;
}

.primary-button {
  border: 1px solid rgba(15, 99, 68, 0.45);
  color: #ffffff;
  background: linear-gradient(135deg, var(--coral), #0a4e35);
}

.ghost-button {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: #ffffff;
}

.ghost-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.small-button {
  min-height: 30px;
  padding: 0 10px;
  font-size: 12px;
}

.auth-panel {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 16px;
  margin-bottom: 16px;
}

.auth-logo {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  object-fit: cover;
  background: #07100f;
}

.auth-panel h2 {
  margin: 6px 0 0;
  font-size: 18px;
}

.login-form {
  display: flex;
  gap: 10px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--field);
}

input,
select {
  min-height: 40px;
  padding: 0 12px;
}

textarea {
  min-height: 104px;
  padding: 12px;
  resize: vertical;
}

textarea::placeholder,
input::placeholder {
  color: var(--faint);
}

.hidden,
.view {
  display: none;
}

.active-view {
  display: block;
}

.hero-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 142px 260px;
  gap: 22px;
  align-items: center;
  padding: 26px 28px;
  margin-bottom: 16px;
  background:
    linear-gradient(135deg, rgba(15, 99, 68, 0.07), rgba(47, 125, 83, 0.08)),
    var(--surface);
}

.hero-logo {
  width: 142px;
  height: 142px;
  padding: 8px;
  border: 1px solid rgba(47, 125, 83, 0.18);
  border-radius: 24px;
  object-fit: contain;
  background: #07100f;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.45);
}

.hero-band h2 {
  margin: 7px 0 0;
  max-width: 720px;
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.16;
  letter-spacing: -0.015em;
  font-weight: 400;
}

.focus-principles {
  display: grid;
  gap: 9px;
}

.focus-principles span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  font-weight: 400;
}

.focus-principles strong {
  color: var(--coral-ink);
  font-size: 14px;
}

.category-row {
  position: sticky;
  top: 0;
  z-index: 4;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin: 0 -22px 16px;
  padding: 10px 22px 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 16, 14, 0.88);
  backdrop-filter: blur(18px);
}

.category-chip {
  flex: 0 0 auto;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--chip);
  font-size: 12px;
  font-weight: 400;
}

.category-chip.active {
  color: var(--mint-strong);
  border-color: rgba(47, 125, 83, 0.32);
  background: rgba(47, 125, 83, 0.1);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 700px) 320px;
  gap: 18px;
  align-items: start;
  justify-content: center;
}

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

.section-heading h2 {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.section-heading h2 > span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--mint-strong);
  background: rgba(47, 125, 83, 0.09);
  font-size: 14px;
}

.section-heading > span {
  color: var(--muted);
  font-size: 12px;
}

.feed-stack {
  display: grid;
  gap: 22px;
}

.focus-intro {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

.focus-intro img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  background: #07100f;
}

.focus-intro strong {
  display: block;
  font-size: 14px;
}

.focus-intro p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.intelligence-card {
  overflow: hidden;
}

.post-header {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 14px 14px 12px;
}

.post-header img,
.feed-avatar,
.creator-row img,
.member-list img,
.voter-list img {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

.post-header strong,
.creator-row strong {
  display: block;
  font-size: 12px;
  font-weight: 400;
}

.post-header span,
.creator-row span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.4;
  object-fit: cover;
  background: var(--surface-soft);
}

.card-media {
  width: 100%;
  aspect-ratio: 16 / 8.4;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.card-media svg {
  display: block;
  width: 100%;
  height: 100%;
}

.card-media text {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 400;
}

.card-body {
  display: grid;
  gap: 13px;
  padding: 15px;
}

.card-taxonomy {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.card-taxonomy span {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--chip);
  font-size: 11px;
  font-weight: 400;
}

.memory-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 2px 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(47, 125, 83, 0.05);
}

.memory-step span {
  grid-row: span 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--coral-ink);
  background: var(--surface-soft);
  font-size: 12px;
  font-weight: 400;
}

.memory-step strong {
  font-size: 12px;
  font-weight: 400;
}

.memory-step small {
  color: var(--muted);
  font-size: 12px;
}

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

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid rgba(47, 125, 83, 0.25);
  border-radius: 999px;
  color: var(--mint-strong);
  background: rgba(47, 125, 83, 0.08);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
}

.votes {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.intelligence-card h3,
.community-card h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 400;
}

.context,
.community-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

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

.product-option {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 76px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: var(--chip);
  text-align: left;
}

.product-option:hover,
.product-option.selected {
  border-color: rgba(47, 125, 83, 0.4);
  background: rgba(47, 125, 83, 0.07);
}

.product-option img {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  object-fit: contain;
  background: #fff;
  padding: 5px;
}

img.image-fallback {
  object-fit: contain !important;
  padding: 5px;
  background: #07100f !important;
}

.product-option strong {
  display: block;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 400;
}

.product-option small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.product-option em {
  color: var(--mint-strong);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
}

.format-panel {
  display: grid;
  gap: 9px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.65);
}

.format-panel > span,
.format-panel small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.locked-note {
  color: var(--faint);
}

.duel-panel {
  position: relative;
  gap: 12px;
}

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

.duel-product {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 20%, rgba(47, 125, 83, 0.08), transparent 70%),
    var(--chip);
  text-align: left;
}

.duel-product:last-child {
  background:
    radial-gradient(circle at 50% 20%, rgba(15, 99, 68, 0.1), transparent 70%),
    var(--chip);
}

.duel-product img {
  width: 52px;
  height: 52px;
  padding: 6px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  object-fit: contain;
  background: #fff;
}

.duel-product strong {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
}

.duel-product small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.versus-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 99, 68, 0.45);
  border-radius: 50%;
  color: var(--coral-ink);
  background: #eef3ef;
  box-shadow: 0 8px 18px rgba(44, 56, 47, 0.12);
  transform: translate(-50%, -50%);
  font-size: 11px;
  font-weight: 500;
}

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

.duel-score div {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--chip);
}

.duel-score strong {
  display: block;
  color: var(--mint-strong);
  font-size: 24px;
  font-weight: 400;
}

.duel-score div:last-child strong {
  color: var(--coral-ink);
}

.duel-score span {
  color: var(--muted);
  font-size: 11px;
}

.factor-list {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--chip);
}

.factor-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
}

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

.factor-row span {
  color: var(--muted);
  font-size: 12px;
}

.factor-bars {
  display: grid;
  gap: 4px;
}

.factor-bars i,
.factor-bars b {
  display: block;
  height: 5px;
  border-radius: 999px;
}

.factor-bars i {
  background: var(--mint-strong);
}

.factor-bars b {
  background: var(--coral-strong);
}

.factor-vote {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.factor-vote button {
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface-soft);
  font-size: 11px;
  font-weight: 400;
}

.factor-vote button:hover,
.factor-vote button.selected {
  border-color: rgba(47, 125, 83, 0.4);
  color: var(--mint-strong);
  background: rgba(47, 125, 83, 0.09);
}

.rank-panel span {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  align-items: center;
  color: var(--ink);
  font-size: 12px;
}

.rank-panel span.locked-note {
  grid-template-columns: 1fr;
  color: var(--faint);
}

.rank-panel span strong {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--coral-ink);
  background: rgba(15, 99, 68, 0.08);
  font-size: 12px;
}

.rating-panel {
  grid-template-columns: 1fr auto;
  align-items: end;
}

.rating-panel .eyebrow,
.rating-panel span {
  grid-column: 1 / -1;
}

.rating-panel strong {
  color: var(--mint-strong);
  font-size: 36px;
  line-height: 1;
}

.prediction-panel strong,
.badge-panel strong {
  font-size: 15px;
}

.debate-panel span,
.discussion-panel span {
  padding: 10px;
  border-left: 3px solid var(--mint-strong);
  background: var(--surface-soft);
  color: var(--ink);
}

.badge-panel div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.badge-panel div span {
  color: var(--mint-strong);
  font-size: 12px;
  font-weight: 500;
}

.badge-panel i {
  height: 9px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
}

.badge-panel b {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--mint-strong), var(--mint));
}

.vote-composer {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(15, 99, 68, 0.05), rgba(47, 125, 83, 0.05)),
    var(--surface-soft);
}

.composer-step {
  display: grid;
  gap: 7px;
}

.step-label {
  margin: 0;
  color: var(--faint);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.chip-row button {
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--chip);
  font-size: 12px;
  font-weight: 400;
}

.chip-row button:hover {
  border-color: rgba(15, 99, 68, 0.35);
  color: var(--ink);
}

.chip-row button.active {
  border-color: rgba(15, 99, 68, 0.5);
  color: #0a4e35;
  background: rgba(15, 99, 68, 0.12);
}

.vote-composer textarea {
  min-height: 64px;
  resize: vertical;
  font-size: 13px;
}

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

.flow-actions span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.primary-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.vote-confirmed {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 10px 12px;
  border: 1px solid rgba(47, 125, 83, 0.3);
  border-radius: 10px;
  background: rgba(47, 125, 83, 0.08);
}

.vote-confirmed span,
.vote-confirmed small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.vote-confirmed strong {
  color: var(--mint-strong);
  font-size: 13px;
}

.inline-results {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--chip);
}

.inline-result {
  display: grid;
  grid-template-columns: 132px 1fr 42px;
  gap: 9px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
}

.inline-result div {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line-soft);
}

.inline-result i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--coral), var(--mint));
}

.inline-result strong {
  color: var(--ink);
  font-size: 12px;
}

.confidence-note {
  margin: 4px 0 0;
  color: var(--faint);
  font-size: 11px;
  font-weight: 400;
}

.counter-panel {
  display: grid;
  gap: 8px;
  padding: 12px 12px 12px 14px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  background: rgba(191, 111, 40, 0.04);
}

.counter-panel .eyebrow {
  color: var(--accent-soft);
}

.counter-panel p:not(.eyebrow) {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.5;
}

.counter-panel small {
  color: var(--mint-strong);
  font-size: 12px;
  font-weight: 400;
}

.counter-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.counter-actions button {
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  background: var(--chip);
  font-size: 12px;
  font-weight: 400;
}

.counter-actions button:hover {
  border-color: rgba(15, 99, 68, 0.45);
  color: var(--coral-ink);
}

.queue-complete {
  padding: 22px;
  border: 1px solid rgba(47, 125, 83, 0.3);
  border-radius: 12px;
  background: rgba(47, 125, 83, 0.06);
  text-align: center;
}

.queue-complete strong {
  display: block;
  margin-bottom: 6px;
  color: var(--mint-strong);
  font-size: 16px;
}

.queue-complete p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.comments-panel {
  display: grid;
  gap: 9px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
}

.comment-item {
  display: grid;
  gap: 3px;
}

.comment-item strong {
  font-size: 12px;
}

.comment-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.card-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.avatar-stack {
  display: flex;
  min-width: 92px;
}

.avatar-stack img {
  width: 31px;
  height: 31px;
  margin-right: -8px;
  border: 2px solid var(--surface);
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

.card-meta-row a,
.source-link {
  color: var(--mint-strong);
  font-size: 12px;
  font-weight: 400;
}

.social-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}

.social-actions button {
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--chip);
  font-size: 12px;
  font-weight: 400;
}

.social-actions span {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
}

.vote-status {
  margin: 0;
  color: var(--faint);
  font-size: 12px;
  font-weight: 400;
}

.panel {
  padding: 16px;
}

.activity-column {
  position: sticky;
  top: 76px;
  display: grid;
  gap: 14px;
}

.live-feed,
.creator-radar,
.watchlist,
.format-list,
.badge-grid,
.community-details {
  display: grid;
  gap: 10px;
}

.format-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--chip);
  color: var(--ink);
  font-size: 12px;
  font-weight: 400;
}

.format-list img {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  object-fit: cover;
  background: #07100f;
}

.feed-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line);
}

.feed-item:last-child {
  border-bottom: 0;
}

.feed-item strong {
  display: block;
  font-size: 13px;
}

.feed-item p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.42;
}

.creator-row {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 9px;
  align-items: center;
}

.watchlist span,
.badge-grid span {
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(47, 125, 83, 0.05);
  font-size: 12px;
}

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

.watchlist img {
  width: 26px;
  height: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  object-fit: cover;
  background: #fff;
}

.communities-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 16px;
  align-items: start;
}

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

.community-card {
  overflow: hidden;
  cursor: pointer;
}

.community-card.selected {
  border-color: rgba(15, 99, 68, 0.5);
}

.community-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7.4;
  object-fit: cover;
}

.community-card > div {
  display: grid;
  gap: 11px;
  padding: 14px;
}

.community-manager {
  position: sticky;
  top: 22px;
}

.community-manager h2 {
  margin: 7px 0 8px;
  font-size: 21px;
}

.community-manager p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.manager-actions,
.community-footer,
.card-footer,
.option-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.community-footer,
.card-footer {
  justify-content: space-between;
  align-items: center;
}

.community-footer span,
.card-footer span {
  color: var(--muted);
  font-size: 12px;
}

.detail-row {
  display: grid;
  gap: 5px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.detail-row span {
  color: var(--muted);
  font-size: 12px;
}

.detail-row strong {
  font-size: 13px;
  line-height: 1.35;
}

.member-list,
.voter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.member-list span,
.voter-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 9px 6px 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--chip);
  font-size: 12px;
  font-weight: 400;
}

.member-list img,
.voter-list img {
  width: 26px;
  height: 26px;
}

.vote-dialog {
  width: min(720px, calc(100vw - 28px));
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 30px 90px rgba(44, 56, 47, 0.25);
}

.vote-dialog::backdrop {
  background: rgba(44, 56, 47, 0.35);
  backdrop-filter: blur(7px);
}

.vote-dialog form {
  margin: 0;
}

.dialog-inner {
  display: grid;
  gap: 13px;
  padding: 22px;
}

.dialog-inner h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.18;
}

.close-button {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ink);
  background: var(--chip);
  font-size: 18px;
}

.reveal-panel {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
}

.bar-list {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.bar-row {
  display: grid;
  grid-template-columns: 132px 1fr 44px;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.bar {
  height: 9px;
  overflow: hidden;
  border-radius: 99px;
  background: var(--line-soft);
}

.bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--coral-strong), var(--mint-strong));
}

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

.profile-hero {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar,
.profile-logo-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  background: #07100f;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.profile-hero-main {
  flex: 1;
  min-width: 0;
}

.profile-hero-main h2 {
  margin: 4px 0;
}

.profile-bio {
  margin: 4px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.profile-followline {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.profile-followline strong {
  color: var(--coral-ink);
}

.edit-avatar-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
}

.edit-avatar-row img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  background: #07100f;
}

.profile-hero h2 {
  margin: 4px 0;
  font-size: 25px;
}

.profile-hero p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.score-block {
  margin-left: auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: right;
  background: var(--surface-soft);
}

.score-block span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.score-block strong,
.signal-score {
  color: var(--coral-ink);
  font-size: 32px;
  font-weight: 400;
}

.line-chart,
.dashboard-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  min-height: 210px;
  padding: 16px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(47, 125, 83, 0.07), rgba(15, 99, 68, 0.05));
}

.line-chart span,
.dashboard-chart span {
  flex: 1;
  min-width: 16px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--coral), rgba(15, 99, 68, 0.25));
}

.history-list {
  display: grid;
  gap: 10px;
  max-height: 300px;
  overflow: auto;
}

.history-item {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.history-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
}

.history-item span {
  color: var(--muted);
  font-size: 12px;
}

.creator-layout {
  display: grid;
  grid-template-columns: minmax(0, 480px) minmax(0, 700px);
  gap: 16px;
}

.creator-form {
  display: grid;
  gap: 13px;
}

.creator-form h2 {
  margin: 0;
  font-size: 24px;
}

.creator-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.wide-panel {
  grid-column: 1 / -1;
}

.wide-panel h2 {
  margin: 7px 0 15px;
  font-size: 28px;
}

.signal-score.positive {
  color: var(--mint-strong);
}

.signal-score.caution {
  color: var(--coral-strong);
}

.panel p {
  color: var(--muted);
  line-height: 1.5;
}

.panel h2 {
  color: var(--ink);
}

@media (max-width: 1180px) {
  .content-grid,
  .creator-layout,
  .communities-layout {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .activity-column,
  .community-manager {
    position: static;
  }
}

@media (max-width: 980px) {
  .app-shell {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .brand-lockup {
    justify-content: center;
  }

  .brand-copy,
  .nav-item span:last-child,
  .sidebar-card,
  .sidebar-profile,
  .sidebar-tools {
    display: none;
  }

  .nav-item {
    justify-content: center;
  }

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

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

  .sidebar {
    position: static;
    display: flex;
    align-items: center;
    gap: 10px;
    height: auto;
    padding: 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .nav-list {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    margin-top: 0;
    overflow-x: auto;
  }

  .main {
    padding: 14px;
  }

  .category-row {
    margin: 0 -14px 14px;
    padding-inline: 14px;
  }

  .topbar,
  .auth-panel,
  .login-form,
  .hero-band {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .search {
    grid-column: 1 / -1;
    width: 100%;
  }

  .vote-option-grid,
  .profile-grid,
  .enterprise-grid {
    grid-template-columns: 1fr;
  }

  .duel-products,
  .duel-score {
    grid-template-columns: 1fr;
  }

  .versus-badge {
    top: 50%;
  }

  .factor-row {
    grid-template-columns: 1fr;
  }

  .post-header {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .post-header .pill {
    grid-column: 1 / -1;
    width: max-content;
  }

  .profile-hero {
    display: grid;
  }

  .score-block {
    margin-left: 0;
    text-align: left;
  }

  .card-meta-row,
  .community-footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .social-actions span {
    margin-left: 0;
  }

  .bar-row {
    grid-template-columns: 92px 1fr 40px;
  }

  .inline-result {
    grid-template-columns: 96px 1fr 38px;
  }

  .flow-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* ---------- binary / quick take ---------- */

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

.binary-option {
  display: grid;
  gap: 6px;
  justify-items: center;
  padding: 16px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--chip);
  color: var(--ink);
  text-align: center;
}

.binary-option img {
  width: 34px;
  height: 34px;
  padding: 4px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  object-fit: contain;
  background: #fff;
}

.binary-option strong {
  font-size: 16px;
  font-weight: 500;
}

.binary-option small {
  color: var(--muted);
  font-size: 11px;
}

.binary-option em {
  min-height: 14px;
  color: var(--mint-strong);
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
}

.binary-option:hover,
.binary-option.selected {
  border-color: rgba(47, 125, 83, 0.4);
  background: rgba(47, 125, 83, 0.07);
}

/* ---------- ranking builder ---------- */

.rank-builder {
  display: grid;
  gap: 8px;
}

.rank-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--chip);
  color: var(--ink);
  text-align: left;
}

.rank-item .rank-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--faint);
  background: var(--surface-soft);
  font-size: 13px;
}

.rank-item.picked {
  border-color: rgba(15, 99, 68, 0.45);
  background: rgba(15, 99, 68, 0.07);
}

.rank-item.picked .rank-number {
  color: #ffffff;
  border-color: transparent;
  background: var(--coral);
}

.rank-copy strong {
  display: block;
  font-size: 13px;
  font-weight: 400;
}

.rank-copy small {
  color: var(--muted);
  font-size: 11px;
}

/* ---------- star rating ---------- */

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

.star-row button {
  padding: 2px;
  border: 0;
  background: transparent;
  color: var(--line-strong);
  font-size: 30px;
  line-height: 1;
}

.star-row button.filled {
  color: var(--coral-ink);
}

.star-row span {
  margin-left: 6px;
  color: var(--muted);
  font-size: 12px;
}

/* ---------- quiz / learn cards ---------- */

.product-option.correct {
  border-color: rgba(47, 125, 83, 0.55);
  background: rgba(47, 125, 83, 0.1);
}

.product-option.incorrect {
  border-color: rgba(255, 124, 98, 0.5);
  background: rgba(255, 124, 98, 0.07);
}

.quiz-explain {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.55;
}

/* ---------- debate sides ---------- */

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

.debate-side {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
}

.debate-side.yours {
  border-color: rgba(47, 125, 83, 0.4);
}

.debate-side span {
  padding: 8px 10px;
  border-left: 3px solid var(--mint-strong);
  background: var(--chip);
  color: var(--ink);
  font-size: 12px;
  line-height: 1.45;
}

/* ---------- clickable side panels ---------- */

.feed-item {
  width: 100%;
  padding: 0 0 11px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.feed-item span {
  display: block;
}

.feed-item em {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.42;
}

.feed-item:hover strong {
  color: var(--coral-ink);
}

.format-list button,
.watchlist button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--chip);
  color: var(--ink);
  font-size: 12px;
  font-weight: 400;
  text-align: left;
}

.format-list button em {
  margin-left: auto;
  color: var(--faint);
  font-style: normal;
  font-size: 11px;
}

.format-list button.active {
  border-color: rgba(15, 99, 68, 0.5);
  color: #0a4e35;
  background: rgba(15, 99, 68, 0.1);
}

.format-list button img,
.watchlist button img {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  object-fit: cover;
  background: #07100f;
}

.format-list button:hover,
.watchlist button:hover {
  border-color: rgba(47, 125, 83, 0.35);
}

/* ---------- community home ---------- */

.tab-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 14px 0;
}

.tab-row button {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--chip);
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.tab-row button.active {
  color: var(--mint-strong);
  border-color: rgba(47, 125, 83, 0.35);
  background: rgba(47, 125, 83, 0.1);
}

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

.community-hero img {
  width: 120px;
  height: 84px;
  border-radius: 10px;
  object-fit: cover;
}

.community-hero h2 {
  margin: 4px 0;
  font-size: 24px;
  font-weight: 500;
}

.community-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.community-body {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

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

.challenge-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.challenge-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.challenge-meta {
  display: flex;
  gap: 14px;
  color: var(--mint-strong);
  font-size: 12px;
  font-weight: 500;
}

.challenge-card .primary-button,
.challenge-card .ghost-button {
  justify-self: start;
}

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

.leaderboard-row {
  display: grid;
  grid-template-columns: 30px 34px minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--chip);
}

.leaderboard-row img {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  object-fit: cover;
}

.leaderboard-row .rank-number {
  color: var(--coral-ink);
  font-size: 14px;
}

.leader-name {
  font-size: 13px;
}

.leader-accuracy {
  color: var(--faint);
  font-size: 11px;
}

.leaderboard-row strong:last-child {
  color: var(--mint-strong);
  font-size: 13px;
}

.rules-list {
  display: grid;
  gap: 6px;
  margin: 0 0 6px;
  padding-left: 18px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.6;
}

.about-panel {
  display: grid;
  gap: 10px;
  max-width: 680px;
}

.about-panel p {
  margin: 0;
}

/* ---------- profile ---------- */

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

.stat-box {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
}

.stat-box strong {
  display: block;
  color: var(--coral-ink);
  font-size: 26px;
  font-weight: 500;
}

.stat-box span {
  color: var(--muted);
  font-size: 12px;
}

.reflection-list,
.timeline {
  display: grid;
  gap: 10px;
}

.reflection-item {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
}

.reflection-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--faint);
  font-size: 11px;
}

.outcome {
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
}

.outcome.correct {
  color: var(--mint-strong);
}

.outcome.incorrect {
  color: #cf5b3a;
}

.outcome.open {
  color: var(--coral-ink);
}

.reflection-item strong {
  font-size: 13px;
  font-weight: 400;
}

.reflection-item > span {
  color: var(--muted);
  font-size: 11px;
}

.reflection-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.timeline-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  border-left: 2px solid rgba(15, 99, 68, 0.4);
  border-radius: 0 10px 10px 0;
  background: var(--surface-soft);
}

.timeline-item strong {
  color: var(--coral-ink);
  font-size: 13px;
  font-weight: 500;
}

.timeline-item p {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
}

/* ---------- settings ---------- */

.settings-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.settings-layout h2 {
  margin: 6px 0 4px;
  font-size: 20px;
  font-weight: 500;
}

.setting-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}

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

.setting-row strong {
  font-size: 13px;
  font-weight: 500;
}

.setting-row p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.setting-row select {
  width: auto;
  min-width: 110px;
}

.switch {
  position: relative;
  flex: 0 0 auto;
  width: 46px;
  height: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--chip);
}

.switch i {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--faint);
  transition: all 0.15s ease;
}

.switch[aria-pressed="true"] {
  border-color: rgba(15, 99, 68, 0.5);
  background: rgba(15, 99, 68, 0.25);
}

.switch[aria-pressed="true"] i {
  left: 23px;
  background: var(--coral);
}

/* ---------- misc ---------- */

.social-actions button.saved {
  border-color: rgba(15, 99, 68, 0.45);
  color: #0a4e35;
  background: rgba(15, 99, 68, 0.1);
}

.preview-disabled {
  pointer-events: none;
}

.narrow-stack {
  max-width: 700px;
}

.dialog-label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

/* ---------- filter bar ---------- */

.filter-bar {
  display: flex;
  align-items: end;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 16px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.filter-bar label {
  display: grid;
  gap: 5px;
  color: var(--faint);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.filter-bar select {
  width: auto;
  min-width: 160px;
  min-height: 36px;
  font-size: 13px;
}

.filter-bar .ghost-button {
  min-height: 36px;
}

.filter-bar > span {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
}

/* ---------- shop links ---------- */

.shop-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
}

.shop-row span {
  color: var(--faint);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.shop-row a {
  padding: 5px 11px;
  border: 1px solid rgba(15, 99, 68, 0.35);
  border-radius: 999px;
  color: var(--coral-ink);
  background: rgba(15, 99, 68, 0.06);
  font-size: 12px;
}

.shop-row a:hover {
  background: rgba(15, 99, 68, 0.14);
}

/* ---------- composer CTA ---------- */

.composer-cta {
  display: block;
}

.cta-vote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.composer-cta .cta-vote {
  width: 100%;
  min-height: 40px;
}

.format-emoji {
  font-size: 18px;
  line-height: 1;
  width: 26px;
  text-align: center;
}

.commit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 46px;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
}

.commit-btn .ic {
  color: #fff;
  width: 19px;
  height: 19px;
}

.commit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.reasoning-details {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 12px;
  background: var(--surface-soft);
}

.reasoning-details summary {
  padding: 11px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

.reasoning-details summary::-webkit-details-marker {
  display: none;
}

.reasoning-details summary span {
  color: var(--faint);
}

.reasoning-details[open] summary {
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 10px;
}

.reasoning-details .composer-step {
  margin-bottom: 10px;
}

.reasoning-details textarea {
  margin-bottom: 12px;
  min-height: 60px;
  font-size: 13px;
}

.own-card-note {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  background: rgba(191, 111, 40, 0.05);
  color: var(--muted);
  font-size: 13px;
}

.own-card-note .ic {
  color: var(--accent-soft);
  flex: 0 0 auto;
}

.top-republished {
  display: grid;
  gap: 8px;
}

.republished-row {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 9px;
  align-items: center;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--chip);
  text-align: left;
}

.republished-row:hover {
  border-color: var(--line-strong);
}

.rep-rank {
  color: var(--coral-ink);
  font-weight: 500;
  font-size: 13px;
}

.rep-main {
  min-width: 0;
}

.rep-main strong {
  display: block;
  font-size: 12px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.rep-main em {
  color: var(--muted);
  font-style: normal;
  font-size: 11px;
}

.rep-count {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--accent-soft);
  font-size: 12px;
  white-space: nowrap;
}

.rep-count .ic {
  width: 14px;
  height: 14px;
}

.cta-vote .ic {
  color: #fff;
}

/* ---------- card actions (single icon line) ---------- */

.card-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding-top: 11px;
  border-top: 1px solid var(--line);
}

.card-actions .avatar-stack {
  min-width: auto;
  margin-right: 2px;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 32px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--muted);
  background: var(--chip);
  font-size: 12px;
}

.icon-btn .ic {
  color: var(--muted);
}

.icon-btn em {
  font-style: normal;
  color: var(--ink);
  font-size: 12px;
}

.icon-btn:hover {
  border-color: var(--line-strong);
  color: var(--ink);
}

.icon-btn:hover .ic {
  color: var(--coral);
}

.icon-btn.saved,
.icon-btn.on {
  border-color: rgba(15, 99, 68, 0.4);
  background: rgba(15, 99, 68, 0.08);
}

.icon-btn.saved .ic,
.icon-btn.on .ic {
  color: var(--coral);
}

.source-icon .ic {
  color: var(--mint-strong);
}

.source-icon:hover .ic {
  color: var(--accent-soft);
}

.vote-stat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
}

.vote-stat .ic {
  color: var(--mint-strong);
}

.vote-stat em {
  font-style: normal;
  color: var(--ink);
}

.shop-label {
  display: inline-flex;
  color: var(--accent-soft);
}

.shop-label .ic {
  color: var(--accent-soft);
}

.icon-btn.boosted {
  border-color: rgba(191, 111, 40, 0.45);
  background: rgba(191, 111, 40, 0.08);
  color: var(--accent-soft);
}

.icon-btn.boosted .ic {
  color: var(--accent-soft);
}

.icon-btn.danger:hover {
  border-color: rgba(207, 91, 58, 0.5);
  color: #b14a2c;
}

.icon-btn.danger:hover .ic {
  color: #b14a2c;
}

/* ---------- toast ---------- */

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 16px);
  z-index: 200;
  max-width: 90vw;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--deep);
  color: #fff;
  font-size: 13px;
  box-shadow: 0 12px 30px rgba(17, 32, 26, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ---------- who voted reveal ---------- */

.voters-reveal {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--chip);
}

.voter-choice {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 9px;
  align-items: center;
  font-size: 12px;
}

.voter-choice img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  background: #fff;
}

.vc-name {
  color: var(--ink);
}

.vc-pick {
  padding: 3px 10px;
  border-radius: 99px;
  background: rgba(15, 99, 68, 0.1);
  color: var(--coral-ink);
  font-weight: 500;
}

/* ---------- manage cards ---------- */

.manage-body {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.manage-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

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

.manage-row-main strong {
  display: block;
  font-size: 15px;
}

.manage-row-main span {
  color: var(--muted);
  font-size: 12px;
}

.manage-card-actions {
  display: flex;
  gap: 8px;
}

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

.metric-box {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
  text-align: center;
}

.metric-box strong {
  display: block;
  color: var(--coral);
  font-size: 20px;
}

.metric-box span {
  color: var(--muted);
  font-size: 11px;
}

.engagement-line {
  display: grid;
  gap: 6px;
}

.engagement-line > span {
  color: var(--muted);
  font-size: 12px;
}

.engagement-track {
  height: 8px;
  border-radius: 99px;
  background: var(--line-soft);
  overflow: hidden;
}

.engagement-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--coral), var(--mint));
}

.manage-voters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.manage-voters .eyebrow {
  width: 100%;
}

.vchip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px 5px 5px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--chip);
  font-size: 12px;
  cursor: pointer;
}

.vchip img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

.vchip em {
  font-style: normal;
  color: var(--coral-ink);
  font-weight: 500;
}

.manage-list {
  display: grid;
  gap: 10px;
}

.manage-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.manage-row > img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  object-fit: cover;
  background: #07100f;
}

.manage-row .manage-row-main {
  flex: 1;
  min-width: 0;
}

.manage-row .manage-row-main strong {
  display: block;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.manage-row-stats {
  display: flex;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
}

.manage-row-stats span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.manage-row-stats .ic {
  width: 15px;
  height: 15px;
}

.boosted-tag {
  color: var(--accent-soft);
}

@media (max-width: 760px) {
  .manage-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ---------- attachments ---------- */

.attachment-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.attachment-row span {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--chip);
  color: var(--muted);
  font-size: 11px;
}

/* ---------- prediction arena ---------- */

.predict-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 16px;
  align-items: start;
}

.predict-main {
  display: grid;
  gap: 14px;
}

.market-stack {
  display: grid;
  gap: 14px;
}

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

.points-balance {
  display: block;
  margin: 6px 0;
  color: var(--coral-ink);
  font-size: 38px;
  line-height: 1;
}

.points-panel p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.earn-list {
  display: grid;
  gap: 7px;
}

.earn-list span {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--ink);
  font-size: 12px;
}

.earn-list em {
  color: var(--mint-strong);
  font-style: normal;
}

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

.market-card h3 {
  margin: 0;
  font-size: 17px;
}

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

.market-top > span:last-child {
  color: var(--faint);
  font-size: 11px;
}

.prob-track {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line-soft);
}

.prob-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--coral), var(--mint));
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 8px;
}

.outcome-button {
  display: grid;
  gap: 3px;
  justify-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--chip);
  color: var(--ink);
}

.outcome-button em {
  color: var(--mint-strong);
  font-style: normal;
  font-size: 14px;
}

.outcome-button:hover:not(:disabled),
.outcome-button.selected {
  border-color: rgba(15, 99, 68, 0.5);
  background: rgba(15, 99, 68, 0.08);
}

.outcome-button:disabled {
  opacity: 0.7;
  cursor: default;
}

.stake-row {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
}

.position-note {
  padding: 10px 12px;
  border: 1px solid rgba(47, 125, 83, 0.3);
  border-radius: 10px;
  background: rgba(47, 125, 83, 0.07);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.position-note strong {
  color: var(--mint-strong);
}

.resolve-box {
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  background: rgba(191, 111, 40, 0.05);
}

.resolve-box .eyebrow {
  margin-bottom: 8px;
  color: var(--accent-soft);
}

.resolved-market {
  opacity: 0.85;
}

.market-resolution {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.market-resolution strong {
  color: var(--mint-strong);
}

.predict-side {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 22px;
}

.ledger-item {
  display: grid;
  gap: 2px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-soft);
}

.ledger-item:last-child {
  border-bottom: 0;
}

.ledger-item span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.ledger-item strong {
  font-size: 12px;
}

.ledger-item .gain {
  color: var(--mint-strong);
}

.ledger-item .loss {
  color: #cf5b3a;
}

/* ---------- creator profiles ---------- */

[data-creator] {
  cursor: pointer;
}

.creator-profile {
  display: grid;
  gap: 14px;
}

.creator-hero-row {
  display: flex;
  gap: 14px;
  align-items: center;
}

.creator-hero-row img {
  width: 72px;
  height: 72px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  object-fit: cover;
}

.creator-hero-row h2 {
  margin: 0 0 2px;
  font-size: 22px;
}

.creator-hero-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.creator-hero-row .primary-button,
.creator-hero-row .ghost-button {
  margin-left: auto;
}

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

.creator-communities {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.creator-communities button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--chip);
  color: var(--ink);
  font-size: 12px;
}

.creator-communities button em {
  color: var(--mint-strong);
  font-style: normal;
  font-size: 10px;
  text-transform: uppercase;
}

.creator-communities button:hover {
  border-color: rgba(15, 99, 68, 0.5);
}

.top-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--chip);
  color: var(--ink);
  text-align: left;
  font-size: 13px;
}

.top-card-row:hover {
  border-color: rgba(47, 125, 83, 0.6);
}

.top-card-row em {
  color: var(--muted);
  font-style: normal;
  font-size: 11px;
  white-space: nowrap;
}

/* ---------- auth gate (full-screen entry page) ---------- */

body.gated .app-shell {
  display: none;
}

.auth-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  overflow-y: auto;
  background:
    radial-gradient(circle at 15% 10%, rgba(15, 99, 68, 0.22), transparent 38rem),
    radial-gradient(circle at 85% 90%, rgba(47, 125, 83, 0.26), transparent 40rem),
    var(--paper);
}

.auth-gate.hidden {
  display: none;
}

.gate-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  min-height: 100vh;
  max-width: 1100px;
  margin: 0 auto;
}

.gate-pitch {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 56px 48px;
}

.gate-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 500;
}

.gate-brand img {
  width: 48px;
  height: 48px;
  padding: 4px;
  border: 1px solid rgba(47, 125, 83, 0.3);
  border-radius: 12px;
  object-fit: contain;
  background: #07100f;
}

.gate-brand b {
  color: var(--coral-ink);
  font-weight: 500;
}

.gate-pitch h1 {
  margin: 6px 0 0;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.gate-pitch > p {
  margin: 0;
  max-width: 30rem;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.gate-points {
  display: grid;
  gap: 12px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.gate-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 14px;
}

.gate-points span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--mint-strong);
  background: linear-gradient(135deg, rgba(15, 99, 68, 0.2), rgba(47, 125, 83, 0.22));
  font-size: 15px;
}

.gate-form-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  margin: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.gate-form-wrap h2 {
  margin: 10px 0 0;
  font-size: 22px;
  font-weight: 500;
}

.auth-subtitle {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 13px;
}

.gate-submit {
  margin-top: 4px;
  min-height: 44px;
  justify-self: stretch;
  width: 100%;
}

.link-button {
  padding: 0;
  border: 0;
  background: none;
  color: var(--coral-ink);
  font-size: 11px;
  text-decoration: underline;
}

.link-button:hover {
  color: var(--mint-strong);
}

@media (max-width: 820px) {
  .gate-grid {
    grid-template-columns: 1fr;
  }

  .gate-pitch {
    padding: 40px 28px 8px;
  }

  .gate-points {
    display: none;
  }

  .gate-form-wrap {
    margin: 20px 24px 40px;
  }
}

/* ---------- auth (topbar signed-in card) ---------- */

.auth-panel {
  display: block;
}

.auth-panel.hidden {
  display: none;
}

.auth-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.auth-main {
  display: grid;
  gap: 10px;
  max-width: 420px;
}

.auth-main h2 {
  margin: 0;
  font-size: 18px;
}

.auth-tabs {
  display: flex;
  gap: 8px;
}

.auth-tabs button {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--chip);
  color: var(--muted);
  font-size: 12px;
}

.auth-tabs button.active {
  border-color: rgba(15, 99, 68, 0.5);
  color: #0a4e35;
  background: rgba(15, 99, 68, 0.12);
}

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

.auth-form label {
  display: grid;
  gap: 5px;
  color: var(--faint);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.auth-form input {
  min-height: 40px;
}

.auth-form .primary-button {
  justify-self: start;
  padding: 0 22px;
}

.auth-error {
  margin: 0;
  padding: 9px 12px;
  border: 1px solid rgba(207, 91, 58, 0.4);
  border-radius: 8px;
  background: rgba(207, 91, 58, 0.07);
  color: #b14a2c;
  font-size: 12px;
}

.auth-hint {
  margin: 0;
  color: var(--faint);
  font-size: 11px;
}

.focus-mode .activity-column {
  display: none;
}

.focus-mode .content-grid {
  grid-template-columns: minmax(0, 700px);
}

@media (max-width: 1180px) {
  .predict-layout,
  .points-panel {
    grid-template-columns: 1fr;
  }

  .predict-side {
    position: static;
  }
}

@media (max-width: 760px) {
  .binary-row,
  .debate-sides,
  .stat-grid,
  .settings-layout,
  .community-hero {
    grid-template-columns: 1fr;
  }

  .leaderboard-row {
    grid-template-columns: 24px 30px minmax(0, 1fr) auto;
  }

  .leader-accuracy {
    display: none;
  }
}
