/* Godel Terminal — SEO page styles. Loaded by every generated page. */

:root {
  --bg: #000;
  --bg-soft: #0a0a0a;
  --bg-card: #111;
  --border: #222;
  --border-strong: #2a2a2a;
  --text: #eaeaea;
  --text-dim: #9a9a9a;
  --text-muted: #6a6a6a;
  --brand: #33E29A;
  --brand-soft: rgba(51, 226, 154, 0.08);
  --brand-mid: rgba(51, 226, 154, 0.18);
  --danger: #ff6868;
  --danger-soft: rgba(255, 104, 104, 0.08);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Background glow accents — same posture as homepage */
body::before, body::after {
  content: "";
  position: fixed;
  width: 700px;
  height: 700px;
  pointer-events: none;
  z-index: 0;
}
body::before {
  top: 0; right: 0;
  background: radial-gradient(circle at top right, rgba(51, 226, 154, 0.10) 0%, transparent 60%);
}
body::after {
  bottom: 0; left: 0;
  background: radial-gradient(circle at bottom left, rgba(51, 226, 154, 0.08) 0%, transparent 60%);
}

/* Layout — site-nav.js paints a fixed 70px nav at the top; site-footer.js
   appends the mint footer at the bottom. We just style what's between. */
main.seo-page {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  padding: 56px 32px 80px;
}

/* Breadcrumb */
.crumbs {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.crumbs a { color: var(--text-muted); }
.crumbs a:hover { color: var(--text-dim); }
.crumbs span.sep { margin: 0 8px; opacity: 0.5; }

/* Headings */
h1 {
  font-family: 'Sofia Sans Semi Condensed', system-ui, sans-serif;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
h2 {
  font-family: 'Sofia Sans Semi Condensed', system-ui, sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin: 56px 0 16px;
  letter-spacing: -0.005em;
}
h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 24px 0 8px;
}

/* Hero shot — single screenshot under direct answer */
.hero-shot {
  margin: 28px 0 12px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}
.hero-shot img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-shot figcaption {
  padding: 10px 16px;
  color: var(--text-muted);
  font-size: 13px;
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
}

/* Screenshot strip — supplementary shots */
.shot-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0 0;
}
.shot-strip img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
@media (max-width: 700px) {
  .shot-strip { grid-template-columns: 1fr; }
}

/* Direct answer */
.direct-answer {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 32px;
  padding: 20px 24px;
  border-left: 3px solid var(--brand);
  background: var(--brand-soft);
  border-radius: 0 8px 8px 0;
}

/* Best-for / Not-best-for boxes */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 0;
}
.fit-box {
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 20px 22px;
  background: var(--bg-card);
}
.fit-box.good { border-color: rgba(51, 226, 154, 0.35); }
.fit-box.bad  { border-color: rgba(255, 104, 104, 0.30); }
.fit-box h3 {
  margin: 0 0 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}
.fit-box.good h3 { color: var(--brand); }
.fit-box.bad  h3 { color: var(--danger); }
.fit-box ul {
  margin: 0;
  padding-left: 18px;
}
.fit-box li { margin: 6px 0; color: var(--text); font-size: 15px; }

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

/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 0;
  font-size: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  overflow: hidden;
}
.compare-table th, .compare-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.compare-table thead th {
  background: var(--bg-soft);
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.compare-table thead th.col-godel { color: var(--brand); }
.compare-table tbody th {
  font-weight: 600;
  color: var(--text-dim);
  background: var(--bg-soft);
  width: 28%;
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table td.col-godel { color: var(--text); background: var(--brand-soft); }

/* Workflow */
.workflow {
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 24px 28px;
  background: var(--bg-card);
}
.workflow ol {
  margin: 0;
  padding-left: 22px;
}
.workflow ol li {
  margin: 10px 0;
  padding-left: 6px;
}

/* Terminal-syntax pills — same 4-color system as docs/commands.
   Default amber = command. Green = country/instrument. Blue = asset class.
   Neutral = ticker/identifier. */
.gt-cmd {
  display: inline-block;
  color: #e89a3c;
  background: #2b1d11;
  border: 1px solid #593815;
  border-radius: 6px;
  padding: 1px 6px;
  font-family: "Oxygen Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 400;
  vertical-align: middle;
  line-height: 1.3;
}
.gt-cmd.gt-cmd-lg {
  font-size: 0.58em;
  padding: 0.16em 0.45em;
  border-radius: 0.28em;
  line-height: 1.2;
  vertical-align: 0.12em;
  margin-right: 0.15em;
}
.gt-cmd--geo {
  color: #6ac193;
  background: rgba(106, 193, 147, 0.10);
  border-color: rgba(106, 193, 147, 0.32);
}
.gt-cmd--asset {
  color: #6c9ad8;
  background: rgba(108, 154, 216, 0.10);
  border-color: rgba(108, 154, 216, 0.32);
}
.gt-cmd--ticker {
  color: #eaeaea;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

/* Feature mapping */
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.feature-list li {
  position: relative;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.feature-list li.has-preview { cursor: help; }
.feature-list li.has-preview:hover,
.feature-list li.has-preview:focus-within {
  border-color: rgba(232, 154, 60, 0.35);
}
.feature-list li > .feat-name {
  color: var(--brand);
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 14px;
}
.feature-list li > .feat-desc { color: var(--text-dim); font-size: 14px; display: block; }

/* Doc-preview popover — shown on hover/focus of a feature card */
.feature-list li .doc-preview {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: min(420px, 90vw);
  background: #0d0d0d;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(232, 154, 60, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  z-index: 50;
  text-align: left;
}
.feature-list li:hover .doc-preview,
.feature-list li:focus-within .doc-preview {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s;
}
.feature-list li .doc-preview::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: #2a2a2a;
}
.doc-preview .preview-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-family: 'Sofia Sans Semi Condensed', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
}
.doc-preview .preview-title .gt-cmd { font-size: 13px; padding: 2px 8px; }
.doc-preview .preview-lede {
  margin: 0 0 12px;
  color: var(--text-dim);
  font-size: 13.5px;
  line-height: 1.55;
}
.doc-preview .preview-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #e89a3c;
  font-weight: 600;
}
.doc-preview .preview-link:hover { text-decoration: underline; }

@media (max-width: 700px) {
  .feature-list { grid-template-columns: 1fr; }
  .feature-list li .doc-preview { width: calc(100vw - 64px); }
}

/* "Where Godel isn't great" — honesty box. Lists scenarios where the
   reader should stay on Bloomberg / their current tool for now. */
.honesty-box {
  margin: 32px 0 0;
  padding: 24px 26px;
  border-radius: 12px;
  background: rgba(255, 200, 90, 0.04);
  border: 1px solid rgba(255, 200, 90, 0.22);
}
.honesty-box h3 {
  margin: 0 0 6px;
  font-family: 'Sofia Sans Semi Condensed', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffc85a;
}
.honesty-box p { margin: 0 0 12px; color: var(--text-dim); font-size: 14.5px; }
.honesty-box ul { margin: 0; padding-left: 20px; color: var(--text); font-size: 14.5px; }
.honesty-box li { margin: 5px 0; }
.honesty-box li.honesty-sub {
  list-style: none;
  margin-left: -20px;
  margin-top: 16px;
  margin-bottom: 6px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffc85a;
}
.honesty-box li.honesty-sub:first-child { margin-top: 4px; }

/* "What you do today" vs "What you do with Godel" side-by-side */
.swap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 12px 0 0;
}
.swap-box {
  padding: 22px 24px;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
}
.swap-box.before { border-color: rgba(255, 104, 104, 0.25); }
.swap-box.after  { border-color: rgba(51, 226, 154, 0.30); background: rgba(51, 226, 154, 0.04); }
.swap-box h3 {
  margin: 0 0 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}
.swap-box.before h3 { color: var(--danger); }
.swap-box.after  h3 { color: var(--brand); }
.swap-box ul { margin: 0; padding-left: 18px; }
.swap-box li { margin: 5px 0; color: var(--text); font-size: 14.5px; }
@media (max-width: 700px) { .swap-grid { grid-template-columns: 1fr; } }

/* Themed feature sub-sections — used in place of flat feature-list when present */
.feature-sections { margin: 0; }
.feature-sections > section { margin: 32px 0 0; }
.feature-sections h3.section-heading {
  margin: 0 0 4px;
  font-family: 'Sofia Sans Semi Condensed', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}
.feature-sections p.section-blurb {
  margin: 0 0 12px;
  color: var(--text-dim);
  font-size: 14.5px;
}

/* Persona CTA grid — bottom of /alternatives/, /compare/ */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 8px 0 0;
}
.persona-grid a {
  display: block;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.persona-grid a:hover {
  border-color: var(--brand-mid);
  background: rgba(51, 226, 154, 0.04);
  text-decoration: none;
}
.persona-grid a b {
  display: block;
  margin-bottom: 4px;
  font-family: 'Sofia Sans Semi Condensed', system-ui, sans-serif;
  font-size: 16px;
  color: var(--brand);
  font-weight: 600;
}
.persona-grid a span {
  color: var(--text-dim);
  font-size: 13.5px;
}
@media (max-width: 900px) { .persona-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .persona-grid { grid-template-columns: 1fr; } }

/* Sales CTA — opens the shared HubSpot demo modal (#demo) handled by
   assets/js/demo-modal.js. No duplicate form on the page. */
.sales-cta {
  margin: 48px 0 0;
  padding: 32px 36px;
  border-radius: 16px;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(68, 196, 143, 0.18) 0%, transparent 55%),
    linear-gradient(180deg, #0a0a0a 0%, #000 100%);
  border: 1px solid rgba(51, 226, 154, 0.18);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: center;
}
.sales-cta .sales-eye {
  font-family: 'Oxygen Mono', ui-monospace, monospace;
  font-size: 11.5px;
  letter-spacing: 2.5px;
  color: var(--brand);
  text-transform: uppercase;
  display: block;
  margin: 0 0 12px;
}
.sales-cta h2 {
  margin: 0 0 10px;
  font-family: 'Sofia Sans Semi Condensed', system-ui, sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}
.sales-cta p.sales-blurb {
  margin: 0 0 18px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.55;
}
.sales-cta .sales-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.sales-cta a.btn-primary {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background: rgba(51, 226, 154, 0.08);
  color: #33E29A;
  border: 1.5px solid rgba(51, 226, 154, 0.30);
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.35s, border-color 0.35s;
}
.sales-cta a.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #33E29A 0%, #1ecfb0 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 999px;
  z-index: -1;
}
.sales-cta a.btn-primary:hover { color: #000; border-color: #33E29A; text-decoration: none; }
.sales-cta a.btn-primary:hover::before { transform: scaleX(1); }
.sales-cta a.btn-secondary {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border-strong);
  font-weight: 500;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14.5px;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.sales-cta a.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
}
.sales-cta .sales-trust {
  border-left: 1px solid var(--border);
  padding-left: 28px;
}
.sales-cta .sales-trust h3 {
  margin: 0 0 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  font-weight: 600;
}
.sales-cta .sales-trust ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sales-cta .sales-trust li {
  position: relative;
  padding-left: 22px;
  margin: 6px 0;
  color: var(--text);
  font-size: 14.5px;
}
.sales-cta .sales-trust li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 700;
}
@media (max-width: 800px) {
  .sales-cta { grid-template-columns: 1fr; }
  .sales-cta .sales-trust { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 18px; }
}

/* CTA banner */
.cta-banner {
  margin: 48px 0 0;
  padding: 28px 32px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(51, 226, 154, 0.12) 0%, rgba(30, 207, 176, 0.06) 100%);
  border: 1px solid var(--brand-mid);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-banner p {
  margin: 0;
  font-size: 17px;
  color: var(--text);
}
.cta-banner a.btn {
  background: linear-gradient(135deg, #33E29A 0%, #1ecfb0 100%);
  color: #000;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15px;
}
.cta-banner a.btn:hover { text-decoration: none; opacity: 0.92; }

/* FAQ — index.html-style accordion (gt-changelog / gt-ch-*).
   Mirrored from index.html (4489-4593) so SEO pages match the homepage FAQ. */
.gt-changelog {
  --mint: #33E29A;
  --amber: #E9B86E;
  --fg: #eaeaea;
  --muted: #B6B6B6;
  --stroke: rgba(255, 255, 255, 0.08);
  --stroke-strong: rgba(255, 255, 255, 0.12);
  --card1: #141414; --card2: #0b0b0b; --card3: #070707;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  margin: 12px 0 0;
  padding: 0;
}
.gt-ch-title {
  margin: 0 0 16px;
  font-family: 'Sofia Sans Semi Condensed', system-ui, sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--fg);
}
.gt-ch-list { display: flex; flex-direction: column; gap: 10px; }
.gt-ch-item {
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: linear-gradient(180deg, var(--card1) 0%, var(--card2) 50%, var(--card3) 100%);
  box-shadow: var(--shadow);
}
.gt-ch-item.is-open { border-color: var(--stroke-strong); }
.gt-ch-header {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  display: grid;
  grid-template-columns: 20px 1fr 28px;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  color: var(--fg);
  border-radius: 14px;
  font: inherit;
}
.gt-ch-header:hover { background: rgba(255, 255, 255, 0.02); }
.gt-ch-header:focus-visible { box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.12); outline: none; }
.gt-dot {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: var(--mint);
  flex-shrink: 0;
}
.gt-version {
  font-weight: 500;
  font-size: clamp(16px, 1.6vw, 20px);
}
/* Plus icon — stays as + */
.gt-toggle { position: relative; width: 20px; height: 20px; flex-shrink: 0; }
.gt-toggle::before,
.gt-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: #eaeaea;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s ease;
}
.gt-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
/* Grid-rows accordion — no JS height measuring */
.gt-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s ease;
  opacity: 0;
}
.gt-ch-item.is-open .gt-panel { grid-template-rows: 1fr; opacity: 1; }
.gt-panel-inner {
  overflow: hidden;
  color: #eaeaea;
  font-size: 15px;
  line-height: 1.6;
  transition: padding 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 22px 0;
}
.gt-ch-item.is-open .gt-panel-inner {
  padding: 4px 22px 20px;
  transition: padding 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.gt-panel-inner p { margin: 14px 0 0; font-size: 15px; line-height: 1.6; }
.gt-panel-inner a { color: var(--mint); }
@media (max-width: 640px) {
  .gt-ch-header { padding: 16px; gap: 10px; }
  .gt-panel-inner { padding: 0 16px 0; }
  .gt-ch-item.is-open .gt-panel-inner { padding: 4px 16px 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .gt-panel { transition: none; }
  .gt-panel-inner { transition: none; }
  .gt-toggle::before, .gt-toggle::after { transition: none; }
}

/* Command coverage summary — three buckets, command pills, on-brand. */
.cmd-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 8px 0 0;
}
.cmd-bucket {
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 22px 24px;
  background: var(--bg-card);
}
.cmd-bucket.better { border-color: rgba(51, 226, 154, 0.30); background: rgba(51, 226, 154, 0.04); }
.cmd-bucket.same   { border-color: var(--border-strong); }
.cmd-bucket.behind { border-color: rgba(255, 200, 90, 0.32);  background: rgba(255, 200, 90, 0.04); }
.cmd-bucket > h3 {
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sofia Sans Semi Condensed', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}
.cmd-bucket .bucket-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.cmd-bucket.better .bucket-icon { background: rgba(51, 226, 154, 0.20); color: #6ce4ad; }
.cmd-bucket.same   .bucket-icon { background: rgba(255, 255, 255, 0.06); color: var(--text-dim); }
.cmd-bucket.behind .bucket-icon { background: rgba(255, 200, 90, 0.18); color: #ffc85a; }
.cmd-bucket .bucket-count { color: var(--text-dim); font-weight: 500; }
.cmd-bucket ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
}
.cmd-bucket li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text);
}
.cmd-bucket li .gt-cmd { flex-shrink: 0; }
.cmd-bucket li .cmd-row-desc { color: var(--text-dim); font-size: 13.5px; }
.cmd-bucket li .cmd-row-note {
  display: block;
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 12.5px;
  font-style: italic;
}
.cmd-bucket li.has-link { cursor: pointer; }
.cmd-bucket li a { color: inherit; text-decoration: none; display: contents; }
.cmd-bucket li a:hover .gt-cmd { background: #4a3220; }
@media (max-width: 700px) {
  .cmd-bucket ul { grid-template-columns: 1fr; }
}

/* Coverage matrix — feature × vendor reference table.
   Cells render as colored chips for numeric coverage scores
   (1 = green / 0.75 = light green / 0.5 = yellow / 0.25 = orange / 0 = red).
   Empty / missing values render as a dash. */
.coverage-matrix-wrap {
  margin: 8px 0 0;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card);
}
.coverage-matrix-scroll {
  overflow-x: auto;
  max-width: 100%;
}
table.coverage-matrix {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
  font-family: 'Inter', system-ui, sans-serif;
  table-layout: fixed;
}
/* Row-label column gets the remaining space; data columns are fixed width. */
table.coverage-matrix col.col-label { width: auto; }
table.coverage-matrix col.col-vendor { width: 110px; }
table.coverage-matrix thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #0a0a0a;
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 11.5px;
  padding: 10px 12px;
  text-align: center;
  border-bottom: 1px solid var(--border-strong);
  white-space: nowrap;
}
table.coverage-matrix thead th.col-godel {
  color: var(--brand);
  background: rgba(51, 226, 154, 0.06);
}
table.coverage-matrix thead th:first-child,
table.coverage-matrix tbody th[scope="row"] {
  position: sticky;
  left: 0;
  z-index: 3;
  background: #0a0a0a;
  text-align: left;
  min-width: 140px;
}
table.coverage-matrix thead th:first-child { z-index: 4; }
table.coverage-matrix tr.metarow th[scope="row"],
table.coverage-matrix tr.metarow td {
  background: #050505;
  color: var(--text-dim);
  font-weight: 500;
  font-size: 12px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 8px 12px;
}
table.coverage-matrix tr.metarow th[scope="row"] { text-align: left; }
table.coverage-matrix tr.score th[scope="row"],
table.coverage-matrix tr.score td {
  background: #060606;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  border-bottom: 2px solid var(--border-strong);
}
table.coverage-matrix tbody td {
  padding: 0;
  text-align: center;
  border-bottom: 1px solid #161616;
  border-right: 1px solid #161616;
  height: 30px;
}
table.coverage-matrix tbody th[scope="row"] {
  padding: 8px 14px;
  color: var(--text);
  font-weight: 500;
  font-family: 'Oxygen Mono', ui-monospace, monospace;
  font-size: 13px;
  border-right: 1px solid var(--border-strong);
  border-bottom: 1px solid #161616;
}
table.coverage-matrix tbody td.cov {
  font-family: 'Oxygen Mono', ui-monospace, monospace;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  padding: 0;
  text-align: center;
  vertical-align: middle;
  height: 38px;
}
table.coverage-matrix tbody td.cov .cov-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  font-size: 13px;
  line-height: 1;
}
table.coverage-matrix tbody td.cov-1    .cov-glyph { background: rgba(51,226,154,0.22); color: #6ce4ad; }
table.coverage-matrix tbody td.cov-075  .cov-glyph { background: rgba(51,226,154,0.14); color: #6ce4ad; }
table.coverage-matrix tbody td.cov-05   .cov-glyph { background: rgba(255,200,90,0.14); color: #ffc85a; }
table.coverage-matrix tbody td.cov-025  .cov-glyph { background: rgba(255,140,60,0.14); color: #ff9b54; }
table.coverage-matrix tbody td.cov-0    .cov-glyph { background: rgba(255,104,104,0.14); color: #ff7575; }
table.coverage-matrix tbody td.cov-na               { color: var(--text-muted); }
/* Godel column: just a subtle column highlight; do NOT fill the whole cell. */
table.coverage-matrix thead th.col-godel,
table.coverage-matrix tbody td.col-godel {
  background: rgba(51, 226, 154, 0.04);
}
/* Godel cells that link to docs */
table.coverage-matrix tbody td.cov-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 5px;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
table.coverage-matrix tbody td.cov-link a:hover {
  transform: scale(1.08);
  box-shadow: 0 0 0 2px rgba(51, 226, 154, 0.32);
  text-decoration: none;
}
table.coverage-matrix tbody td.cov-link a:hover .cov-glyph {
  background: rgba(51, 226, 154, 0.42);
  color: #fff;
}

/* Render command pills inside row labels */
table.coverage-matrix tbody th[scope="row"] .gt-cmd { margin-right: 8px; }
table.coverage-matrix tbody th[scope="row"] .row-desc {
  color: var(--text-dim);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: 13px;
}

.coverage-legend {
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12.5px;
  color: var(--text-muted);
}
.coverage-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.coverage-legend i {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  display: inline-block;
}
.coverage-legend i.cov-1   { background: #1d6f49; }
.coverage-legend i.cov-075 { background: #2c8a5f; }
.coverage-legend i.cov-05  { background: #b08200; }
.coverage-legend i.cov-025 { background: #b56a1f; }
.coverage-legend i.cov-0   { background: #7a2a2a; }
.coverage-legend i.cov-na  { background: transparent; border: 1px dashed var(--border-strong); }

/* Hub emphasis strip — used on /solutions/ to lead with real-time data + news */
.emphasis-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0 32px;
}
.emphasis-strip .emph-card {
  position: relative;
  padding: 22px 24px 22px 50px;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(51, 226, 154, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  border: 1px solid rgba(51, 226, 154, 0.22);
  border-radius: 14px;
  overflow: hidden;
}
.emphasis-strip .emph-card::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 28px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(51, 226, 154, 0.18);
}
.emphasis-strip .emph-card img {
  display: block;
  margin-top: 14px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.emphasis-strip .emph-card.live::before {
  animation: emph-pulse 1.6s ease-in-out infinite;
}
@keyframes emph-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(51, 226, 154, 0.18); }
  50%      { box-shadow: 0 0 0 9px rgba(51, 226, 154, 0.06); }
}
.emphasis-strip .emph-eye {
  font-family: 'Oxygen Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 6px;
  display: block;
}
.emphasis-strip .emph-card h3 {
  margin: 0 0 6px;
  font-family: 'Sofia Sans Semi Condensed', system-ui, sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}
.emphasis-strip .emph-card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 700px) { .emphasis-strip { grid-template-columns: 1fr; } }

/* Hub-page card grid */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 8px 0 0;
}
.hub-card {
  display: block;
  padding: 20px 22px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: var(--bg-card);
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.hub-card:hover {
  text-decoration: none;
  border-color: var(--brand-mid);
  transform: translateY(-1px);
}
.hub-card h3 {
  margin: 0 0 6px;
  font-family: 'Sofia Sans Semi Condensed', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.hub-card h3 .arrow {
  color: var(--brand);
  font-weight: 600;
  transition: transform 0.15s ease;
}
.hub-card:hover h3 .arrow { transform: translateX(3px); }
.hub-card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 700px) {
  .hub-grid { grid-template-columns: 1fr; }
}

/* Related links */
.related ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}
.related li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  background: var(--bg-card);
  font-size: 14px;
}
.related li a:hover {
  border-color: var(--brand-mid);
  text-decoration: none;
}
.related .rel-thumb {
  width: 60px;
  height: 40px;
  flex: none;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}
.related .rel-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 700px) {
  .related ul { grid-template-columns: 1fr; }
}

/* =====================================================================
   Unified demo-modal CTA hover: mint pill that sweep-fills to green,
   matching the navbar Sign Up button. Applies to every href="#demo"
   link site-wide EXCEPT the two nav buttons (id="fc-nav-get-demo" and
   id="fc-mm-demo"), which keep their existing nav styling.
   Padding and font-size are inherited from each pill's own rule so the
   visual hierarchy between large hero pills and smaller in-row CTAs is
   preserved.
   ===================================================================== */
a[href="#demo"]:not(#fc-nav-get-demo):not(#fc-mm-demo):not(.cta-plain) {
  position: relative !important;
  background: rgba(51, 226, 154, 0.08) !important;
  color: #33E29A !important;
  border: 1.5px solid rgba(51, 226, 154, 0.30) !important;
  border-radius: 999px !important;
  overflow: hidden !important;
  z-index: 0;
  transition: color 0.35s, border-color 0.35s !important;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
a[href="#demo"]:not(#fc-nav-get-demo):not(#fc-mm-demo):not(.cta-plain)::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #33E29A 0%, #1ecfb0 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: inherit;
  z-index: -1;
}
a[href="#demo"]:not(#fc-nav-get-demo):not(#fc-mm-demo):not(.cta-plain):hover {
  color: #000 !important;
  border-color: #33E29A !important;
  background: rgba(51, 226, 154, 0.08) !important;
  text-decoration: none !important;
}
a[href="#demo"]:not(#fc-nav-get-demo):not(#fc-mm-demo):not(.cta-plain):hover::before {
  transform: scaleX(1);
}

/* Exception: inline #demo links inside paragraph text (e.g. "Book a demo" mid-
   sentence in FAQ answers) must NOT be pill-styled. The mint-pill rule above
   applies to standalone CTAs only; inside a <p> the link should render as a
   plain inline anchor so the surrounding text flows correctly. */
p a[href="#demo"]:not(#fc-nav-get-demo):not(#fc-mm-demo):not(.cta-plain) {
  position: static !important;
  background: transparent !important;
  color: #33E29A !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  z-index: auto;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  display: inline !important;
  transition: color 0.15s ease !important;
}
p a[href="#demo"]:not(#fc-nav-get-demo):not(#fc-mm-demo):not(.cta-plain)::before {
  content: none !important;
  display: none !important;
}
p a[href="#demo"]:not(#fc-nav-get-demo):not(#fc-mm-demo):not(.cta-plain):hover {
  color: #33E29A !important;
  background: transparent !important;
  border: none !important;
  text-decoration: underline !important;
}

