:root {
  --bg: #0b0d10;
  --surface: #14171c;
  --surface-2: #1b1f26;
  --border: #262c36;
  --text: #e7ebf1;
  --muted: #8a94a5;
  --primary: #5b8cff;
  --primary-hover: #7aa1ff;
  --accent: #6ae3a1;
  --danger: #ff6b6b;
  --warn: #f4b860;
  --radius: 10px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}

/* Layout */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 10;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}
.logo {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.brand:hover .logo {
  transform: rotate(-4deg) scale(1.08);
}
.brand-name {
  font-weight: 600;
  letter-spacing: -0.2px;
}
.nav {
  display: flex;
  gap: 22px;
}
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 2px;
  position: relative;
  transition: color .15s;
}
.nav a:hover { color: var(--text); }
.nav a.active {
  color: var(--text);
  font-weight: 500;
}
.nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #8b6eff);
  border-radius: 2px;
  animation: slideIn .25s ease;
}
@keyframes slideIn {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}
.nav a.hidden { display: none; }

.auth-slot {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #000;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 13px;
}

main {
  flex: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 24px 60px;
  width: 100%;
  animation: pageFadeIn .28s ease;
}
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.foot {
  border-top: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  font-size: 13px;
  padding: 14px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.foot-links {
  display: flex;
  gap: 18px;
}
.foot-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
}
.foot-links a:hover { color: var(--text); }
.link-btn {
  background: none; border: none; color: var(--muted);
  cursor: pointer; font-size: 13px; text-decoration: underline;
}
.link-btn:hover { color: var(--text); }

/* Hero */
.hero {
  text-align: center;
  padding: 64px 12px 48px;
}
.hero h1 {
  font-size: 44px;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}
.hero .lead {
  color: var(--muted);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto 28px;
}
.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 40px 0;
}
.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.pillar h3 {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 16px;
}
.pillar p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* How */
.how {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.how h2 { margin-top: 0; }
.steps {
  color: var(--muted);
  padding-left: 20px;
  margin: 0;
}
.steps li { margin: 8px 0; }
.steps b { color: var(--text); }

/* Buttons */
.btn {
  font-family: inherit;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: transform .12s ease, background-color .15s ease, border-color .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.btn:hover:not(:disabled) { transform: translateY(-1px); }
.btn:active:not(:disabled) { transform: translateY(0); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }
.btn.primary {
  background: var(--primary);
  color: #0b0d10;
}
.btn.primary:hover:not(:disabled) {
  background: var(--primary-hover);
  box-shadow: 0 4px 14px rgba(91, 140, 255, 0.25);
}
.btn.ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn.ghost:hover:not(:disabled) {
  border-color: var(--muted);
  background: var(--surface-2);
}
.btn.small { padding: 6px 12px; font-size: 13px; }
.btn.danger {
  background: transparent;
  color: var(--danger);
  border-color: var(--danger);
}
.btn.danger:hover:not(:disabled) {
  background: rgba(255, 107, 107, 0.08);
}

/* Keyboard focus — visible ring for accessibility */
.btn:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Forms */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.form-card {
  max-width: 540px;
  margin: 20px auto;
}
.form-card.wide { max-width: 760px; }

.form-card h2 { margin: 0 0 6px; }
.form-card .muted { margin-top: 0; }

label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin: 14px 0 0;
}
input, textarea, select {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  margin-top: 6px;
  resize: vertical;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 860px) {
  .topbar {
    flex-wrap: wrap;
    padding: 10px 16px;
    gap: 10px;
  }
  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
    gap: 16px;
  }
  .nav::-webkit-scrollbar { display: none; }
  .nav a { white-space: nowrap; }
  .auth-slot { flex-shrink: 0; }
  .auth-slot span:not(.muted) { display: none; }
  main { padding: 20px 16px 40px; }
}

@media (max-width: 560px) {
  .grid-2 { grid-template-columns: 1fr; }
  .hero { padding: 40px 12px 30px; }
  .hero h1 { font-size: 30px; }
  .hero .lead { font-size: 15px; }
  .form-card { padding: 20px; }
  .detail-hero h1 { font-size: 22px; }
}

.row-end {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 22px;
}

.muted { color: var(--muted); font-size: 14px; }

/* Page head */
.page-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.page-head h2 { margin: 0 0 4px; }
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filters select, .filters input[type="search"] {
  width: auto;
  min-width: 160px;
  padding: 8px 12px;
  font-size: 13px;
  margin-top: 0;
}
.filters input[type="search"] { min-width: 220px; }

/* Project grid */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.project-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.project-card .tag-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.tag {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--muted);
  border: 1px solid var(--border);
}
.tag.public { color: var(--accent); border-color: var(--accent); }
.tag.limited { color: var(--warn); border-color: var(--warn); }
.tag.protected { color: var(--danger); border-color: var(--danger); }
.tag.stage { color: var(--primary); border-color: var(--primary); }

.project-card h3 {
  margin: 0;
  font-size: 17px;
}
.project-card .tagline {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}
.score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}
.score-big {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}

/* Project detail */
.detail-hero {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}
.detail-hero h1 { margin: 0 0 6px; font-size: 28px; }
.detail-hero p.tagline { color: var(--muted); margin: 0 0 16px; }
.meta-row {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px;
}
.detail-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 20px;
}
@media (max-width: 860px) {
  .detail-body { grid-template-columns: 1fr; }
}
.detail-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 16px;
}
.detail-section h3 { margin-top: 0; }

/* Score panel */
.score-panel h3 { margin-top: 0; }
.overall {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.overall small { font-size: 14px; color: var(--muted); font-weight: 400; }

.dim-list { list-style: none; padding: 0; margin: 16px 0 0; }
.dim-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 13px;
  border-bottom: 1px dashed var(--border);
}
.dim-list li:last-child { border-bottom: none; }
.bar {
  width: 80px;
  height: 6px;
  background: var(--surface-2);
  border-radius: 3px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: var(--primary);
}

.stage-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
}
.stage-pill.strong { color: var(--accent); border-color: var(--accent); }
.stage-pill.ready { color: var(--primary); border-color: var(--primary); }
.stage-pill.improving { color: var(--warn); border-color: var(--warn); }

/* Reviews */
.review-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 10px;
  background: var(--surface-2);
}
.review-item .who {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}
.review-item .sub {
  margin: 8px 0 0;
  font-size: 13px;
}
.review-item b { color: var(--accent); }

/* Rubric */
.rubric {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.rubric-row {
  display: grid;
  grid-template-columns: 1fr 160px 50px;
  gap: 12px;
  align-items: center;
  background: var(--surface-2);
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.rubric-row .dim-name { font-size: 14px; }
.rubric-row .dim-desc { font-size: 12px; color: var(--muted); display: block; }
.rubric-row input[type="range"] { margin: 0; padding: 0; }
.rubric-row .score-out {
  text-align: center;
  font-weight: 600;
  color: var(--primary);
}
@media (max-width: 560px) {
  .rubric-row { grid-template-columns: 1fr 100px 40px; }
}

.empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}
.empty h3 { color: var(--text); margin-top: 0; }

.toast {
  position: fixed;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  background: var(--surface-2);
  border: 1px solid var(--accent);
  color: var(--text);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  z-index: 100;
  animation: fadeIn .2s;
}
@keyframes fadeIn { from { opacity: 0; transform: translate(-50%, 10px); } }

.btn-link {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  font-size: 14px;
  padding: 0;
  text-decoration: underline;
}
.btn-link:hover { color: var(--primary-hover); }

/* Tabs */
.tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}
.tab {
  background: none;
  border: none;
  color: var(--muted);
  padding: 10px 16px;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.tab.active {
  color: var(--text);
  border-bottom-color: var(--primary);
}
.tab-pane { display: none; }
.tab-pane.active { display: block; }

.banner {
  background: var(--surface-2);
  border: 1px solid var(--warn);
  color: var(--warn);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 14px;
}
.banner code {
  background: #000;
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--text);
}

.loading {
  text-align: center;
  padding: 40px;
  color: var(--muted);
  position: relative;
}
.loading::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  margin: 14px auto 0;
  border: 2px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Pricing page */
.pricing-head {
  text-align: center;
  padding: 20px 0 36px;
}
.pricing-head h1 {
  font-size: 36px;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}
.pricing-head p {
  max-width: 540px;
  margin: 0 auto 20px;
}
.billing-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
}
.toggle-option {
  background: none;
  border: none;
  color: var(--muted);
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-family: inherit;
  transition: all .15s;
}
.toggle-option.active {
  background: var(--primary);
  color: #0b0d10;
  font-weight: 600;
}
.toggle-option .discount {
  background: var(--accent);
  color: #0b0d10;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  margin-left: 6px;
}
.tier-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.tier-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.tier-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), 0 8px 40px rgba(91, 140, 255, 0.12);
}
.tier-card.current { opacity: 0.92; }
.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #0b0d10;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.tier-card h3 {
  margin: 0 0 4px;
  font-size: 20px;
}
.tier-tagline {
  margin: 0 0 18px;
  font-size: 13px;
}
.tier-price {
  margin-bottom: 18px;
}
.tier-price .price {
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  margin-right: 8px;
  letter-spacing: -0.5px;
}
.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.tier-features li {
  padding: 8px 0 8px 26px;
  font-size: 14px;
  position: relative;
  border-bottom: 1px dashed var(--border);
}
.tier-features li:last-child { border-bottom: none; }
.tier-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.tier-card button { width: 100%; }

.one-time-section h2 {
  margin-bottom: 6px;
}
.one-time-section > p {
  margin-bottom: 20px;
}

/* Pro badge (for avatars / names in comments etc.) */
.pro-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), #8b6eff);
  color: #0b0d10;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  vertical-align: middle;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  cursor: pointer;
  font-size: 14px;
  color: var(--text);
}
.checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--primary);
  cursor: pointer;
}

/* Review usefulness (founder-only) */
.usefulness-row {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
  flex-wrap: wrap;
  align-items: center;
}
.usefulness-btn {
  font-family: inherit;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: all .15s;
  text-transform: capitalize;
}
.usefulness-btn:hover {
  border-color: var(--muted);
  color: var(--text);
}
.usefulness-btn.active {
  background: var(--primary);
  color: #0b0d10;
  border-color: var(--primary);
  font-weight: 500;
}
.usefulness-pill {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  color: var(--muted);
}
.usefulness-pill b { color: var(--text); text-transform: capitalize; }

/* Legal pages (Terms + Privacy) */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 0;
}
.legal-page h1 {
  margin-top: 0;
  letter-spacing: -0.5px;
}
.legal-page h2 {
  margin-top: 28px;
  font-size: 18px;
}
.legal-page p, .legal-page li {
  color: var(--text);
  line-height: 1.6;
}
.legal-page ul { padding-left: 22px; }
.legal-page a { color: var(--primary); }

/* Profile page */
.profile-hero {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0 28px;
}
.profile-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #8b6eff);
  color: #0b0d10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.profile-hero h1 {
  margin: 0 0 4px;
  font-size: 26px;
}
.profile-hero p { margin: 0; }

/* Author links (clickable names in reviews/comments) */
.author-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted var(--border);
  transition: color .15s, border-color .15s;
}
.author-link:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn .15s ease;
}
.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.modal h3 {
  margin: 0 0 10px;
}
.modal p {
  margin: 0 0 20px;
}
.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* Comment threads — shared by review + project discussions */
.section-count {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px 10px;
  margin-left: 8px;
  vertical-align: middle;
}

.comment-thread {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
}
.comments-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}
.comment {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.comment-avatar {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #8b6eff);
  color: #0b0d10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2px;
  user-select: none;
}
.comment-body-wrap {
  flex: 1;
  min-width: 0;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
}
.comment-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.comment-author {
  font-weight: 600;
  color: var(--text);
}
.comment-rep, .comment-time {
  color: var(--muted);
  font-size: 12px;
}
.comment-delete {
  margin-left: auto;
  font-size: 12px;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  transition: color 0.15s;
}
.comment-delete:hover { color: var(--danger); }
.comment-body {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.comment-form textarea {
  font-size: 14px;
  min-height: 64px;
  line-height: 1.5;
}
.comment-form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Analytics */
.analytics-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.analytics-table th, .analytics-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}
.analytics-table th {
  color: var(--muted);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.analytics-table tbody tr:hover {
  background: var(--surface-2);
}
.analytics-table code {
  background: var(--surface-2);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
}
