/* OSINT & Threat Intelligence MCP Server page-specific styles */

/* ── Section background modifiers (base sections default to soft-bg) ────── */
.v2-features-section--white,
.v2-use-cases-section--white { background: var(--v2-white); }
.v2-features-section--soft,
.v2-use-cases-section--soft { background: var(--v2-soft-bg); }

/* ── Hero quick-facts card (shared with alternatives page pattern) ──────── */
.v2-alt-verdict {
  background: #fff;
  border: 1px solid var(--v2-border);
  border-radius: 16px;
  padding: 28px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 18px 44px rgba(13, 27, 61, 0.08);
}
.v2-alt-verdict__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--v2-gray);
  margin-bottom: 18px;
}
.v2-alt-verdict__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--v2-border);
  font-size: 15px;
}
.v2-alt-verdict__row:last-child { border-bottom: none; }
.v2-alt-verdict__label { color: var(--v2-gray); }
.v2-alt-verdict__value { color: var(--v2-navy); font-weight: 600; text-align: right; }

/* ── Manual vs agentic split ────────────────────────────────────────────── */
.v2-osint-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 940px;
  margin: 0 auto;
}
.v2-osint-split__col {
  border: 1px solid var(--v2-border);
  border-radius: 16px;
  padding: 28px;
  background: #fff;
}
.v2-osint-split__col--new {
  border: 2px solid var(--v2-blue);
  box-shadow: 0 18px 44px rgba(47, 107, 239, 0.10);
}
.v2-osint-split__label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.v2-osint-split__col--old .v2-osint-split__label { color: var(--v2-gray); }
.v2-osint-split__col--new .v2-osint-split__label { color: var(--v2-blue); }
.v2-osint-split__desc {
  font-size: 15px;
  color: var(--v2-gray);
  line-height: 1.65;
  margin-bottom: 18px;
}
.v2-osint-split__desc code {
  font-family: var(--v2-font-mono);
  font-size: 13px;
  background: var(--v2-soft-bg);
  padding: 1px 5px;
  border-radius: 5px;
  color: var(--v2-navy);
}
.v2-osint-split__list {
  margin: 0;
  padding-left: 18px;
  font-size: 14.5px;
  color: var(--v2-navy);
  line-height: 1.7;
}
.v2-osint-split__list li { margin-bottom: 6px; }
.v2-osint-split__list--old li { color: var(--v2-gray); }

/* ── Comparison table (shared with alternatives page pattern) ───────────── */
.v2-cmp-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--v2-border);
  border-radius: 16px;
  background: #fff;
}
.v2-cmp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  min-width: 720px;
}
.v2-cmp-table th,
.v2-cmp-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--v2-border);
  color: var(--v2-navy);
  vertical-align: top;
}
.v2-cmp-table thead th {
  background: var(--v2-soft-bg);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--v2-gray);
  white-space: nowrap;
}
.v2-cmp-table tbody tr:last-child td { border-bottom: none; }
.v2-cmp-table td:first-child { font-weight: 600; }
.v2-cmp-table__hl { background: rgba(47, 107, 239, 0.05); }
.v2-cmp-yes  { color: #1B9E5A; font-weight: 600; }
.v2-cmp-no   { color: var(--v2-gray); }
.v2-cmp-part { color: #B07D1E; font-weight: 500; }
.v2-cmp-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--v2-gray);
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Tool reference note ────────────────────────────────────────────────── */
.v2-osint-toolnote {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px auto 0;
  max-width: 720px;
  padding: 14px 18px;
  background: var(--v2-blue-light);
  border: 1px solid var(--v2-blue-light-border);
  border-radius: 12px;
  font-size: 14.5px;
  color: var(--v2-navy);
  line-height: 1.55;
}
.v2-osint-toolnote svg { flex-shrink: 0; }
.v2-osint-toolnote a { color: var(--v2-blue); font-weight: 600; text-decoration: none; }
.v2-osint-toolnote a:hover { text-decoration: underline; }

/* ── Connect steps ──────────────────────────────────────────────────────── */
.v2-osint-connect {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}
.v2-osint-connect__step {
  display: flex;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--v2-border);
  border-radius: 16px;
  padding: 26px;
}
.v2-osint-connect__num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--v2-blue);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v2-osint-connect__body { flex: 1; min-width: 0; }
.v2-osint-connect__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--v2-navy);
  margin: 4px 0 14px;
}
.v2-osint-connect__note {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--v2-gray);
  line-height: 1.6;
}

/* ── Code block ─────────────────────────────────────────────────────────── */
.v2-osint-code {
  margin: 0;
  background: #0D1B3D;
  color: #E8EEFB;
  border-radius: 12px;
  padding: 18px 20px;
  overflow-x: auto;
  font-family: var(--v2-font-mono);
  font-size: 13px;
  line-height: 1.6;
}
.v2-osint-code code { font-family: inherit; }

@media (max-width: 820px) {
  .v2-osint-split { grid-template-columns: 1fr; }
  .v2-alt-verdict { max-width: 100%; }
}
