:root {
  --bg: #f8fafc;
  --ink: #0f172a;
  --ink-soft: #64748b;
  --panel: rgba(255, 255, 255, 0.96);
  --line: #e2e8f0;
  --line-strong: #cbd5e1;
  --mint: #10b981;
  --sea: #0e7490;
  --sea-mid: #0891b2;
  --gold: #f59e0b;
  --rose: #e76f51;
  --white: #ffffff;
  --slate: #1e293b;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

/* Prevent hero flash on load */
.hero-shell, .profile-shell, .static-shell {
  min-height: 60vh;
}

/* Prevent FOUC on dynamic pages */
[data-page="vendor"] #vendorProfile:empty {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
[data-page="vendor"] #vendorProfile:empty::after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: #00D4AA;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "kern" 1, "liga" 1, "clig" 1;
  background:
    radial-gradient(circle at top left, rgba(14, 116, 144, 0.06), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #f8fafc 100%);
}

.hero-shell {
  position: relative;
  padding: 18px 0 8px;
  background: transparent;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 22px;
  border-radius: 0 0 38px 38px;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 26%),
    radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.08), transparent 24%),
    linear-gradient(135deg, rgba(19, 38, 58, 0.78) 0%, rgba(32, 50, 70, 0.72) 52%, rgba(49, 72, 90, 0.76) 100%);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.06);
  z-index: 0;
}

.admin-shell {
  display: grid;
  gap: 20px;
  padding: 28px 0 64px;
}

.admin-card {
  display: grid;
  gap: 18px;
}

.admin-toolbar {
  display: grid;
  gap: 16px;
}

.admin-export-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admin-state-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: end;
}

.admin-review-list {
  display: grid;
  gap: 14px;
}

.admin-review-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(248, 250, 252, 0.8);
}

.admin-review-meta,
.admin-review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-review-copy {
  margin: 0;
  color: var(--ink);
  line-height: 1.6;
  white-space: pre-wrap;
}

.admin-label {
  font-weight: 700;
  color: var(--ink);
}

.admin-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.82rem;
}

.admin-pill.is-good {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.34);
  color: #0f766e;
}

.admin-pill.is-warn {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.34);
  color: #92400e;
}

.admin-pill.is-bad {
  background: rgba(231, 111, 81, 0.12);
  border-color: rgba(231, 111, 81, 0.34);
  color: #9a3412;
}

.admin-empty-state {
  display: grid;
  gap: 8px;
}

.commerce-tier-grid {
  display: grid;
  gap: 12px;
}

.review-excerpt-grid {
  display: grid;
  gap: 14px;
}

.profile-span-full {
  grid-column: 1 / -1;
}

.profile-score-review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.profile-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.profile-overview-metrics {
  grid-column: span 2;
}

.profile-overview-copy {
  grid-column: span 2;
}

.profile-overview-copy h2 {
  margin-top: 0;
}

.profile-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
}

.profile-detail-item-wide {
  grid-column: 1 / -1;
}

.profile-detail-item {
  display: grid;
  gap: 6px;
  align-content: start;
}

.profile-detail-item strong {
  color: var(--ink);
  font-weight: 700;
}

.profile-detail-item p,
.profile-detail-item ul {
  margin: 0;
  color: var(--ink-soft);
}

.profile-detail-item .bullet-list {
  padding-left: 18px;
}

.external-review-grid {
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr);
  align-items: start;
}

.compact-source-list {
  padding-left: 18px;
}

.compact-source-list li + li {
  margin-top: 4px;
}

.review-excerpt-card {
  background: rgba(12, 29, 34, 0.04);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  width: 100%;
}

.review-excerpt-card-animated {
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  animation: reviewCardRise 520ms ease both;
}

.review-excerpt-card-animated::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(125, 211, 252, 0.12) 45%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 420ms ease;
  pointer-events: none;
}

.review-excerpt-card-animated:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 145, 178, 0.22);
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.1);
}

.review-excerpt-card-animated:hover::before {
  transform: translateX(120%);
}

.review-excerpt-topline {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  margin-bottom: 12px;
}

.review-excerpt-head {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.review-excerpt-meta {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.review-excerpt-meta strong,
.review-excerpt-meta strong a,
.review-excerpt-meta a {
  color: var(--ink);
  text-decoration: none;
}

.review-excerpt-meta span {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.reviewer-avatar {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, #12384a, #2c6a72 58%, #5ec5bb);
  color: #f8fafc;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14);
}

.reviewer-avatar-badge {
  position: absolute;
  right: -2px;
  bottom: -2px;
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #0a66c2;
  color: #fff;
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 800;
  border: 2px solid #fff;
}

.review-excerpt-card p {
  margin: 0;
  color: var(--ink);
  line-height: 1.6;
}

.review-excerpt-body {
  font-size: 0.98rem;
  white-space: pre-wrap;
}

.review-excerpt-context {
  margin-top: 12px !important;
}

.review-vendor-response {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(8, 145, 178, 0.16);
  background: rgba(8, 145, 178, 0.06);
}

.review-vendor-response-kicker {
  margin-bottom: 6px;
  color: #0b4f61;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-vendor-response-meta {
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.review-vendor-response-body {
  margin: 0;
  color: var(--ink);
  white-space: pre-wrap;
}

.review-score-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(8, 145, 178, 0.12);
  border: 1px solid rgba(8, 145, 178, 0.22);
  color: #0b4f61;
  font-weight: 800;
  white-space: nowrap;
}

.review-summary-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.review-summary-pill {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(248, 250, 252, 0.8);
}

.review-summary-pill strong {
  font-size: 1.2rem;
  color: var(--ink);
}

.review-summary-pill span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.review-controls-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 16px;
}

.review-sort-field {
  min-width: 220px;
}

.review-excerpt-viewport {
  max-height: 420px;
  overflow-y: auto;
  padding-right: 6px;
}

.review-excerpt-viewport-expanded {
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

@media (max-width: 1100px) {
  .review-summary-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-controls-row {
    flex-direction: column;
    align-items: stretch;
  }

  .review-sort-field {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .review-summary-band {
    grid-template-columns: 1fr;
  }
}

.review-excerpt-card footer {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 16px;
}

.review-excerpt-card footer a {
  color: var(--teal-700);
  text-decoration: none;
}

.review-excerpt-card footer a:hover {
  text-decoration: underline;
}

@keyframes reviewCardRise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body[data-page="vendor"] .section-kicker {
  margin-bottom: 16px;
  font-size: 0.96rem;
  letter-spacing: 0.08em;
}

body[data-page="vendor"] .profile-detail-item strong {
  font-size: 1.03rem;
}

.commerce-tier-card {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.78);
}

.commerce-tier-card strong {
  color: var(--ink);
}

.commerce-tier-card p {
  margin: 0;
  color: var(--ink-soft);
}

body.theme-inverse {
  background:
    radial-gradient(circle at top left, rgba(243, 201, 111, 0.14), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(126, 242, 199, 0.16), transparent 24%),
    linear-gradient(180deg, #102026 0%, #162d35 100%);
  color: var(--white);
}

body.theme-inverse .panel,
body.theme-inverse .site-header,
body.theme-inverse .compare-strip {
  background: rgba(17, 35, 43, 0.86);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.08);
}

body.theme-inverse .muted,
body.theme-inverse .lede,
body.theme-inverse .field span,
body.theme-inverse .brand-copy small,
body.theme-inverse .site-nav a,
body.theme-inverse .metric-list span,
body.theme-inverse .vendor-meta {
  color: rgba(241, 248, 245, 0.76);
}

body.theme-inverse .page-hero,
body.theme-inverse .profile-score-card,
body.theme-inverse .inline-note,
body.theme-inverse .commerce-tier-card,
body.theme-inverse .hero-kpis article,
body.theme-inverse .rating-row > div {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

body.theme-inverse .profile-score-card strong,
body.theme-inverse .inline-note strong,
body.theme-inverse .commerce-tier-card strong,
body.theme-inverse .score-row strong,
body.theme-inverse .compare-table td,
body.theme-inverse .compare-table th,
body.theme-inverse .source-list a,
body.theme-inverse .vendor-meta-row b,
body.theme-inverse .text-link {
  color: #f8fafc;
}

body.theme-inverse .commerce-tier-card p,
body.theme-inverse .inline-note p,
body.theme-inverse .field-help,
body.theme-inverse .source-list,
body.theme-inverse .source-list li,
body.theme-inverse .vendor-summary,
body.theme-inverse .compare-table td span {
  color: rgba(241, 248, 245, 0.8);
}

body.theme-inverse .field input,
body.theme-inverse .field select,
body.theme-inverse .field textarea {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #f8fafc;
}

body.theme-inverse .field select option,
body.theme-inverse .field select optgroup {
  background: #173245;
  color: #f8fafc;
}

body.theme-inverse .field input::placeholder,
body.theme-inverse .field textarea::placeholder {
  color: rgba(241, 248, 245, 0.48);
}

body.theme-inverse .bar-track {
  background: rgba(255, 255, 255, 0.12);
}

body.theme-inverse .compare-table th,
body.theme-inverse .compare-table td {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.theme-inverse .compare-table-scroll {
  border-radius: 22px;
}

body.theme-inverse .page-hero {
  background:
    radial-gradient(circle at top right, rgba(126, 242, 199, 0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(243, 201, 111, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(17, 35, 43, 0.98), rgba(25, 47, 56, 0.96));
}

body.theme-inverse .page-hero .eyebrow,
body.theme-inverse .page-hero h1,
body.theme-inverse .page-hero .lede,
body.theme-inverse .hero-inline-points span {
  color: #f8fafc;
}

body.theme-inverse .hero-inline-points span {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 8px 12px;
}

body.theme-inverse .site-footer {
  background: transparent;
}

body.theme-inverse .site-footer strong,
body.theme-inverse .site-footer p,
body.theme-inverse .site-footer a {
  color: rgba(241, 248, 245, 0.82);
}

body[data-page="vendor-rfp"].theme-inverse .split-band {
  gap: 22px;
}

body[data-page="vendor-rfp"].theme-inverse .panel {
  box-shadow: 0 18px 42px rgba(3, 10, 14, 0.18);
}

body[data-page="vendor-rfp"].theme-inverse .vendor-rfp-hero {
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.14), transparent 34%),
    radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(20, 43, 51, 0.98), rgba(28, 58, 67, 0.96));
  border-color: rgba(96, 165, 250, 0.18);
}

body[data-page="vendor-rfp"].theme-inverse .vendor-rfp-table-panel {
  background: linear-gradient(180deg, rgba(14, 29, 36, 0.98), rgba(18, 37, 45, 0.96));
  border-color: rgba(255, 255, 255, 0.1);
}

body[data-page="vendor-rfp"].theme-inverse .vendor-rfp-table-panel .section-heading {
  margin-bottom: 18px;
}

body[data-page="vendor-rfp"].theme-inverse .vendor-rfp-table-panel .compare-table-scroll {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 10px 14px 14px;
  background: rgba(255, 255, 255, 0.02);
}

body[data-page="vendor-rfp"].theme-inverse .commerce-tier-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
  border-color: rgba(255, 255, 255, 0.14);
}

body[data-page="vendor-rfp"].theme-inverse .sponsor-support-panel {
  box-shadow: 0 20px 48px rgba(7, 18, 28, 0.32);
}

body.theme-inverse .vendor-subscription-hero {
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.16), transparent 34%),
    radial-gradient(circle at bottom left, rgba(245, 158, 11, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(19, 42, 50, 0.98), rgba(28, 57, 66, 0.96));
  border-color: rgba(96, 165, 250, 0.16);
}

body.theme-inverse .button-secondary,
body.theme-inverse .button-ghost,
body.theme-inverse .social-button {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #f8fafc;
}

body.theme-inverse .button-primary {
  color: #052029;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(12, 29, 34, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 29, 34, 0.03) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at center, black 28%, transparent 85%);
}

.wrap {
  width: min(1260px, calc(100% - 2rem));
  margin: 0 auto;
}

.compare-strip {
  position: relative;
  z-index: 40;
  background: rgba(8, 20, 25, 0.92);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

body:has(.compare-strip) .site-header {
  position: sticky;
  top: 0;
  z-index: 35;
}

.compare-strip-shell,
.header-shell,
.results-head,
.profile-hero-grid,
.compare-page-hero,
.footer-grid {
  display: grid;
  gap: 18px;
}

.compare-strip-shell > *,
.header-shell > *,
.results-head > *,
.profile-hero-grid > *,
.compare-page-hero > *,
.footer-grid > *,
.hero-grid > *,
.directory-layout > *,
.split-band > *,
.monetisation-grid > *,
.vendor-grid > *,
.profile-grid > *,
.static-grid > *,
.form-layout > * {
  min-width: 0;
}

.related-vendor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.related-vendor-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s, border-color 0.15s;
}

.related-vendor-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}

.related-vendor-card h3 {
  font-size: 0.85rem;
  margin: 0;
}

.related-vendor-card .vendor-logo {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 0.7rem;
}

.related-vendor-card .vendor-logo img {
  width: 32px;
  height: 32px;
}

.related-vendor-card .vendor-meta {
  font-size: 0.72rem;
  margin: 2px 0 0;
}

.profile-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  padding: 8px 0 16px;
  color: rgba(241, 248, 245, 0.5);
}

.profile-breadcrumb a {
  color: rgba(241, 248, 245, 0.65);
  text-decoration: none;
}

.profile-breadcrumb a:hover {
  color: rgba(241, 248, 245, 0.9);
  text-decoration: underline;
}

.profile-breadcrumb [aria-current="page"] {
  color: rgba(241, 248, 245, 0.8);
}

.field-required {
  color: #ef4444;
  font-weight: 600;
  font-size: 0.85em;
}

input:invalid:not(:placeholder-shown):not(:focus) {
  border-color: #ef4444;
}

input:valid:not(:placeholder-shown) {
  border-color: #22c55e;
}

.compare-strip-shell {
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  padding: 12px 0;
}

.compare-strip-items,
.compare-strip-actions,
.site-nav,
.hero-actions-row,
.hero-trust,
.state-row,
.chip-row,
.action-row,
.criteria-snapshot,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.action-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  min-width: 0;
}

.compare-strip-label,
.eyebrow {
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--sea);
  font-weight: 800;
}

.section-kicker {
  display: block;
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--sea);
  font-weight: 800;
}

.strip-pill,
.state-badge,
.chip,
.criteria-snapshot span {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
}

.strip-pill {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.strip-pill-empty {
  opacity: 0.75;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--slate);
  border-bottom: none;
  backdrop-filter: blur(16px);
}

.header-shell {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 10px 0;
  gap: 16px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  min-width: 0;
  max-width: 120px;
}

.brand-mark {
  width: 80px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 80px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(34, 211, 238, 0.16));
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
  text-align: center;
}

.brand-copy strong {
  font-size: 0.62rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.brand-copy small {
  font-size: 0.55rem;
  line-height: 1.1;
}

.brand-copy small {
  max-width: none;
  font-size: 0.92rem;
}

.brand-copy small,
.site-nav a,
.muted,
.lede,
.field span,
.metric-list span,
.vendor-meta,
.vendor-summary,
.inline-note p {
  color: var(--ink-soft);
}

.metric-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.metric-list li + li {
  margin-top: 4px;
}

.metric-list span {
  flex: 0 0 auto;
}

.metric-list b {
  flex: 1 1 auto;
  text-align: right;
  color: var(--ink);
}

.site-header .brand-copy strong,
.site-header .brand-copy small,
.site-header .site-nav a {
  color: rgba(255, 255, 255, 0.82);
}

.site-header .site-nav a:hover {
  color: #fff;
}

.site-nav {
  display: flex;
  justify-content: end;
  flex-wrap: nowrap;
  gap: 10px;
  min-width: 0;
}

.site-nav a {
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.82rem;
}

.nav-right {
  display: flex;
  gap: 8px;
  justify-content: end;
  flex-wrap: wrap;
  min-width: 0;
}

.button-nav-ghost {
  color: #f8fafc;
  border-color: rgba(103, 232, 249, 0.36);
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.76), rgba(37, 99, 235, 0.78));
  box-shadow: 0 12px 26px rgba(8, 145, 178, 0.16);
}

.button-nav-ghost.is-authenticated,
.site-nav .is-authenticated {
  color: #d1fae5;
  border-color: rgba(16, 185, 129, 0.42);
  background: rgba(16, 185, 129, 0.12);
}

.button-nav-accent {
  background: linear-gradient(135deg, #3f79a3, #66a3c6);
  color: #fff;
  border-color: rgba(191, 219, 254, 0.34);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.16);
}

.site-nav a,
.text-link {
  text-decoration: none;
}

.text-link {
  color: var(--sea);
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-word;
}

.hero-shell,
.market-strip,
.directory-layout,
.split-band,
.monetisation-grid,
.profile-shell,
.static-shell,
.form-page-shell,
.compare-page-shell {
  padding: 28px 0;
}

.hero-grid,
.market-grid,
.directory-layout,
.split-band,
.monetisation-grid,
.vendor-grid,
.profile-grid,
.static-grid,
.form-layout,
.hero-kpis,
.rating-row,
.compare-summary-grid {
  display: grid;
  gap: 18px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: start;
  min-height: 0;
  gap: 22px;
}

.hero-copy,
.hero-copy.panel {
  border-radius: 28px;
  background:
    radial-gradient(ellipse 90% 70% at 0% 100%, rgba(14, 116, 144, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 100% 0%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
    linear-gradient(160deg, #102132 0%, #173146 52%, #1e3a4b 100%);
  color: #fff;
  padding: 1.6rem 1.7rem;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 16px;
  align-self: start;
}

.hero-copy .lede,
.hero-copy .eyebrow,
.hero-copy p,
.hero-copy span,
.hero-copy h1 {
  color: #fff;
}

.hero-copy .lede {
  color: rgba(255, 255, 255, 0.62);
}

.hero-copy .eyebrow {
  color: #bae6fd;
}

.hero-aside {
  background: transparent;
  padding: 0;
  display: grid;
  gap: 14px;
  min-width: 0;
  border-radius: 0;
}

.hero-search-panel {
  display: grid;
  gap: 14px;
  width: 100%;
  padding: 14px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(6px);
}

.hero-aside-mini-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
  align-items: stretch;
}

.role-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: stretch;
  height: 100%;
  padding: 18px 18px 16px;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.role-card .eyebrow {
  margin-bottom: 6px;
}

.role-card h3 {
  margin-bottom: 6px;
  font-size: 1.28rem;
  line-height: 1.15;
}

.role-card p {
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.35;
}

.role-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--sea);
}

.search-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  min-height: 0;
}

.search-card h3,
.search-card p {
  color: var(--ink);
}

.search-card-controls {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.vendor-rfp-filterbar {
  margin: 0 0 14px;
}

.vendor-rfp-table {
  min-width: 0;
  table-layout: fixed;
}

.vendor-rfp-table-panel {
  grid-column: 1 / -1;
}

.vendor-rfp-table th {
  white-space: nowrap;
}

.vendor-rfp-table th:nth-child(1),
.vendor-rfp-table td:nth-child(1) {
  width: 22%;
}

.vendor-rfp-table th:nth-child(2),
.vendor-rfp-table td:nth-child(2) {
  width: 18%;
}

.vendor-rfp-table th:nth-child(3),
.vendor-rfp-table td:nth-child(3) {
  width: 16%;
}

.vendor-rfp-table th:nth-child(4),
.vendor-rfp-table td:nth-child(4) {
  width: 15%;
}

.vendor-rfp-table th:nth-child(5),
.vendor-rfp-table td:nth-child(5) {
  width: 17%;
}

.vendor-rfp-table td:last-child,
.vendor-rfp-table th:last-child {
  width: 12%;
}

body[data-page="vendor-rfp"] .wrap {
  width: min(1460px, calc(100% - 1.5rem));
}

.search-card-controls select,
.search-card-controls input {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  min-width: 0;
}

.search-card-row {
  display: flex;
  gap: 8px;
  min-width: 0;
}

.button-search {
  background: var(--rose);
  color: #fff;
  border: none;
}

.market-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.directory-layout {
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: start;
}

.split-band,
.monetisation-grid,
.static-grid,
.form-layout,
.profile-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.static-grid-why {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.style-directions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.style-direction-card {
  display: grid;
  gap: 16px;
}

.biotech-directions-grid {
  align-items: stretch;
}

.biotech-direction {
  overflow: hidden;
}

.biotech-direction-signal {
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.14), transparent 34%),
    radial-gradient(circle at bottom left, rgba(52, 211, 153, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(239, 246, 255, 0.92));
}

.biotech-direction-atlas {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96)),
    repeating-linear-gradient(90deg, rgba(148, 163, 184, 0.05) 0 1px, transparent 1px 18px);
}

.biotech-direction-lab {
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94));
}

.biotech-direction-molecular {
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.14), transparent 32%),
    radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 237, 0.92));
}

.biotech-graphic {
  position: relative;
  min-height: 150px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.56);
  overflow: hidden;
}

.biotech-graphic span {
  position: absolute;
  display: block;
}

.biotech-graphic-signal::before,
.biotech-graphic-signal::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 14%, rgba(14, 165, 233, 0.16) 14.5%, transparent 15%),
    linear-gradient(transparent 24%, rgba(52, 211, 153, 0.12) 24.5%, transparent 25%);
}

.biotech-graphic-signal span {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #0ea5e9;
  box-shadow: 0 0 0 6px rgba(14, 165, 233, 0.12);
}

.biotech-graphic-signal span:nth-child(1) { top: 28px; left: 34px; }
.biotech-graphic-signal span:nth-child(2) { top: 44px; right: 64px; background: #34d399; box-shadow: 0 0 0 6px rgba(52, 211, 153, 0.12); }
.biotech-graphic-signal span:nth-child(3) { bottom: 28px; left: 82px; background: #38bdf8; }
.biotech-graphic-signal span:nth-child(4) { bottom: 42px; right: 34px; background: #f59e0b; box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.12); }
.biotech-graphic-signal span:nth-child(5) {
  inset: auto 48px 56px 48px;
  height: 2px;
  width: auto;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.6), rgba(52, 211, 153, 0.5), rgba(245, 158, 11, 0.5));
  box-shadow: none;
}

.biotech-graphic-atlas::before,
.biotech-graphic-atlas::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.biotech-graphic-atlas::after {
  inset: 34px;
  border-style: dashed;
  opacity: 0.7;
}

.biotech-graphic-atlas span {
  inset: auto 24px 26px 24px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.1), rgba(148, 163, 184, 0.08), rgba(37, 99, 235, 0.1));
}

.biotech-graphic-atlas span:nth-child(2) {
  bottom: 62px;
}

.biotech-graphic-atlas span:nth-child(3) {
  bottom: 98px;
}

.biotech-graphic-lab {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(248, 250, 252, 0.92)),
    repeating-linear-gradient(0deg, rgba(148, 163, 184, 0.08) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(90deg, rgba(148, 163, 184, 0.08) 0 1px, transparent 1px 24px);
}

.biotech-graphic-lab span {
  bottom: 22px;
  width: 18px;
  border-radius: 14px 14px 6px 6px;
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.86), rgba(37, 99, 235, 0.94));
}

.biotech-graphic-lab span:nth-child(1) { left: 22px; height: 52px; }
.biotech-graphic-lab span:nth-child(2) { left: 54px; height: 84px; }
.biotech-graphic-lab span:nth-child(3) { left: 86px; height: 38px; }
.biotech-graphic-lab span:nth-child(4) { left: 118px; height: 68px; background: linear-gradient(180deg, rgba(16, 185, 129, 0.86), rgba(5, 150, 105, 0.92)); }

.biotech-graphic-molecular::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 38%, rgba(37, 99, 235, 0.16), transparent 18%),
    radial-gradient(circle at 72% 28%, rgba(249, 115, 22, 0.18), transparent 18%),
    radial-gradient(circle at 58% 72%, rgba(14, 165, 233, 0.16), transparent 18%);
}

.biotech-graphic-molecular span {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #2563eb;
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.1);
}

.biotech-graphic-molecular span:nth-child(1) { top: 38px; left: 48px; }
.biotech-graphic-molecular span:nth-child(2) { top: 28px; right: 72px; background: #f97316; box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.1); }
.biotech-graphic-molecular span:nth-child(3) { bottom: 42px; left: 94px; background: #0ea5e9; box-shadow: 0 0 0 6px rgba(14, 165, 233, 0.1); }
.biotech-graphic-molecular span:nth-child(4) { bottom: 30px; right: 46px; }
.biotech-graphic-molecular span:nth-child(5),
.biotech-graphic-molecular span:nth-child(6) {
  width: 2px;
  height: 74px;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.36), rgba(249, 115, 22, 0.22));
  box-shadow: none;
}

.biotech-graphic-molecular span:nth-child(5) {
  top: 42px;
  left: 104px;
  transform: rotate(52deg);
}

.biotech-graphic-molecular span:nth-child(6) {
  top: 36px;
  right: 118px;
  transform: rotate(-48deg);
}

.style-direction-blue {
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(239, 246, 255, 0.98), rgba(219, 234, 254, 0.9));
  border-color: rgba(96, 165, 250, 0.28);
}

.style-swatch-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.style-swatch {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.split-card-blue {
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(239, 246, 255, 0.95), rgba(219, 234, 254, 0.88));
  border-color: rgba(96, 165, 250, 0.28);
}

.split-card-blue h2,
.split-card-blue p,
.split-card-blue .eyebrow {
  color: var(--ink);
}

.vendor-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.vendor-grid .vendor-summary,
.vendor-grid .public-signal-row {
  display: none;
}

.directory-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.directory-pagination-summary {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.directory-pagination-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-kpis,
.rating-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-identity-field.is-hidden {
  display: none;
}

.hero-stats-row,
.hero-inline-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats-row span,
.hero-inline-points span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.hero-brand-row {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.hero-logo-block {
  width: 210px;
  height: 92px;
  display: grid;
  place-items: center;
}

.hero-logo-block img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hero-brand-row h1 {
  margin: 0;
  max-width: none;
  width: 100%;
}

.hero-stats-row {
  color: rgba(255, 255, 255, 0.82);
}

.hero-stats-row strong {
  color: #f8fafc;
}

.hero-review-trust {
  margin: 10px 0 0;
  max-width: 64ch;
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-inline-points span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
}

.auth-landing-body {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(45, 212, 191, 0.14), transparent 22%),
    radial-gradient(circle at bottom right, rgba(125, 211, 252, 0.12), transparent 18%),
    linear-gradient(180deg, #0b3f5a 0%, #0f5d72 42%, #0c6f79 100%);
  color: #f8fafc;
}

.auth-landing-canvas,
.auth-landing-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.auth-landing-canvas {
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.82;
}

.auth-landing-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at top left, rgba(165, 243, 252, 0.05), transparent 22%),
    radial-gradient(circle at top right, rgba(110, 231, 183, 0.04), transparent 16%),
    linear-gradient(180deg, rgba(8, 26, 37, 0.02), rgba(7, 20, 28, 0.08));
}

.auth-landing-shell {
  position: relative;
  z-index: 2;
}

.auth-landing-shell {
  padding: 72px 0 72px;
}

.auth-landing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 44px;
  align-items: center;
}

.auth-landing-copy,
.auth-landing-panel {
  min-width: 0;
}

.auth-landing-brand {
  display: inline-grid;
  gap: 12px;
  align-items: start;
  justify-items: start;
  margin-bottom: 18px;
}

.auth-landing-brand img {
  width: 118px;
  height: auto;
  display: block;
}

.auth-landing-copy h1 {
  margin: 0;
  max-width: 8ch;
  font-size: clamp(3.4rem, 7vw, 6.1rem);
  line-height: 0.96;
  color: #ffffff;
  text-shadow: 0 8px 30px rgba(5, 18, 28, 0.18);
}

.auth-landing-lede {
  margin: 18px 0 0;
  max-width: 34ch;
  color: rgba(246, 252, 255, 0.96);
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.82;
  text-shadow: 0 6px 22px rgba(5, 18, 28, 0.16);
}

.auth-landing-panel {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: 30px;
  border: 1px solid rgba(186, 230, 253, 0.34);
  background:
    linear-gradient(180deg, rgba(247, 253, 255, 0.94), rgba(236, 251, 250, 0.9));
  box-shadow: 0 34px 80px rgba(4, 22, 34, 0.28);
  color: var(--ink);
}

.auth-landing-panel-head {
  display: grid;
  gap: 10px;
}

.auth-landing-panel-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.06;
}

.auth-landing-form {
  display: grid;
  gap: 14px;
}

.auth-landing-status {
  display: grid;
  gap: 4px;
}

.auth-landing-status p {
  margin: 0;
}

.auth-landing-escape {
  display: flex;
  justify-content: flex-start;
}

.auth-landing-escape .text-link {
  font-size: 0.95rem;
}

.auth-landing-skip {
  min-height: 58px;
  padding-inline: 24px;
  font-size: 1rem;
}

.auth-landing-actions {
  display: grid;
  gap: 12px;
}

.auth-landing-actions .button {
  justify-content: center;
}

.landing-linkedin-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.landing-linkedin-mark {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #0a66c2;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1;
}

.page-hero {
  padding: 34px 34px 30px;
  background:
    radial-gradient(circle at top right, rgba(14, 116, 144, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 251, 0.94));
  border: 1px solid rgba(8, 145, 178, 0.16);
}

.page-hero .eyebrow {
  margin-bottom: 10px;
}

.page-hero h1 {
  max-width: 22ch;
  margin-bottom: 14px;
}

.page-hero .lede.narrow {
  max-width: 64ch;
  font-size: 1.02rem;
  line-height: 1.55;
}

.vendor-rfp-hero h1 {
  max-width: 30ch;
}

.vendor-rfp-hero .lede.narrow {
  max-width: 72ch;
}

.vendor-rfp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 26px;
  align-items: center;
}

.vendor-rfp-hero-copy {
  display: grid;
  gap: 14px;
}

.vendor-rfp-hero-copy .eyebrow,
.vendor-rfp-hero-copy h1,
.vendor-rfp-hero-copy .lede {
  margin: 0;
}

.vendor-rfp-hero-visual {
  min-width: 0;
}

.vendor-rfp-visual-card {
  display: grid;
  gap: 18px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: 0 20px 48px rgba(3, 10, 14, 0.22);
}

.vendor-rfp-visual-head {
  display: flex;
  gap: 8px;
}

.vendor-rfp-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.vendor-rfp-dot-blue {
  background: #60a5fa;
}

.vendor-rfp-dot-green {
  background: #34d399;
}

.vendor-rfp-dot-gold {
  background: #fbbf24;
}

.vendor-rfp-visual-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.vendor-rfp-visual-metrics div,
.vendor-rfp-visual-node {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(8, 16, 22, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vendor-rfp-visual-metrics strong,
.vendor-rfp-visual-node strong {
  display: block;
  margin-bottom: 6px;
  color: #f8fafc;
}

.vendor-rfp-visual-metrics span,
.vendor-rfp-visual-node span {
  color: rgba(241, 248, 245, 0.76);
  font-size: 0.9rem;
}

.vendor-rfp-visual-flow {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.vendor-rfp-flow-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
  font-size: 0.8rem;
  font-weight: 700;
}

.vendor-rfp-flow-line {
  flex: 1 1 24px;
  min-width: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.6), rgba(52, 211, 153, 0.5));
}

.vendor-rfp-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.vendor-rfp-visual-node-primary {
  background:
    radial-gradient(circle at top right, rgba(52, 211, 153, 0.12), transparent 42%),
    rgba(8, 16, 22, 0.34);
  border-color: rgba(52, 211, 153, 0.2);
}

.panel,
.vendor-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.panel-glow {
  background:
    radial-gradient(circle at top right, rgba(126, 242, 199, 0.2), transparent 26%),
    var(--panel);
}

h1,
h2,
h3 {
  margin-top: 0;
}

h1 {
  font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
  font-weight: 800;
  max-width: 14ch;
}

h2 {
  font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 800;
}

h3 {
  font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.results-head h2 {
  font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 700;
  max-width: 16ch;
}

.brand-copy strong,
.site-nav a,
.button,
.metric-list li,
.vendor-summary,
.vendor-meta,
.vendor-meta-row span,
.results-summary strong,
.results-summary span,
.text-link,
.muted,
.lede,
.field span,
.inline-note p,
.compare-table td,
.compare-table th,
.workflow-node p,
.role-card p {
  letter-spacing: -0.01em;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  white-space: nowrap;
}

.button-primary {
  border: none;
  background: linear-gradient(135deg, var(--mint), var(--gold));
  color: #052029;
  font-weight: 700;
}

.button-review {
  border: none;
  background: linear-gradient(135deg, #b45309, #f59e0b);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(180, 83, 9, 0.18);
}

.button-compare {
  border: none;
  background: linear-gradient(135deg, #0f172a, #155e75);
  color: #fff;
  font-weight: 700;
}

.button-secondary,
.button-ghost,
.social-button {
  background: rgba(12, 29, 34, 0.04);
}

.hero-button-sponsor {
  background: linear-gradient(135deg, #0f4c81, #0ea5e9);
  border-color: transparent;
  color: #f8fafc;
  box-shadow: 0 10px 24px rgba(14, 116, 144, 0.2);
}

.hero-button-review {
  background: linear-gradient(135deg, #b45309, #f59e0b);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 24px rgba(180, 83, 9, 0.18);
}

.auth-button-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: auto;
}

.compare-strip .button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.button-wide {
  width: 100%;
}

.hero-trust span,
.criteria-snapshot span,
.helper-card,
.market-card,
.score-ring,
.profile-score-card,
.inline-note,
.compare-summary-card,
.hero-kpis article,
.rating-row > div {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 14px 16px;
  min-width: 0;
}

.profile-score-card {
  min-height: 160px;
  display: grid;
  place-items: center;
  align-self: start;
}

.profile-score-head {
  text-align: center;
}

.profile-score-head strong {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
}

.profile-hero-visual {
  min-width: 0;
}

.profile-signal-card {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 224px;
  padding: 18px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(8, 145, 178, 0.16);
  background:
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.2), transparent 30%),
    radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.14), transparent 34%),
    linear-gradient(160deg, #0f2230 0%, #102936 48%, #0b1722 100%);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.22);
}

.profile-signal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 92%);
  pointer-events: none;
}

.profile-signal-head,
.profile-signal-score,
.profile-signal-grid,
.profile-signal-pill-row {
  position: relative;
  z-index: 1;
}

.profile-signal-head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-signal-chip,
.profile-signal-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(248, 250, 252, 0.92);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.profile-signal-chip.is-soft {
  color: rgba(191, 219, 254, 0.94);
}

.profile-signal-score {
  display: grid;
  gap: 4px;
}

.profile-signal-score strong {
  font-size: clamp(2.7rem, 5vw, 4rem);
  line-height: 0.95;
  color: #f8fafc;
  text-shadow: 0 10px 28px rgba(15, 23, 42, 0.34);
}

.profile-signal-score span {
  color: rgba(226, 232, 240, 0.78);
  font-size: 0.92rem;
}

.profile-signal-scorecard {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(8, 16, 22, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-signal-section-title {
  color: #f8fafc;
  font-size: 0.84rem;
}

.profile-signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.profile-signal-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.profile-signal-summary {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(8, 16, 22, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-signal-summary strong {
  color: #f8fafc;
  font-size: 0.84rem;
}

.profile-signal-summary p {
  margin: 0;
  color: rgba(226, 232, 240, 0.8);
  font-size: 0.86rem;
  line-height: 1.55;
}

.profile-signal-summary-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(226, 232, 240, 0.82);
  font-size: 0.84rem;
  line-height: 1.45;
  display: grid;
  gap: 6px;
}

.profile-signal-summary-list li {
  margin: 0;
}

.profile-signal-summary-grid-single {
  grid-template-columns: 1fr;
}

.profile-signal-summary-grid-single .profile-signal-summary {
  width: 100%;
}

.profile-signal-metric {
  display: grid;
  gap: 6px;
  padding: 11px 13px;
  border-radius: 18px;
  background: rgba(8, 16, 22, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
}

.profile-signal-metric strong {
  color: #f8fafc;
  font-size: 0.84rem;
}

.profile-signal-metric span {
  color: rgba(226, 232, 240, 0.8);
  font-size: 0.86rem;
  line-height: 1.5;
}

.profile-signal-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-signal-pill {
  background: rgba(15, 23, 42, 0.34);
}

.profile-signal-pill-stack {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.profile-signal-metric-pill-stack {
  align-content: start;
}

.profile-signal-mesh {
  position: absolute;
  inset: 38px 18px auto auto;
  width: 170px;
  height: 118px;
  pointer-events: none;
  opacity: 0.72;
}

.profile-signal-mesh::before,
.profile-signal-mesh::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background:
    linear-gradient(135deg, transparent 18%, rgba(56, 189, 248, 0.24) 18%, rgba(56, 189, 248, 0.24) 20%, transparent 20%),
    linear-gradient(35deg, transparent 30%, rgba(52, 211, 153, 0.18) 30%, rgba(52, 211, 153, 0.18) 32%, transparent 32%),
    linear-gradient(160deg, transparent 54%, rgba(245, 158, 11, 0.22) 54%, rgba(245, 158, 11, 0.22) 56%, transparent 56%);
  opacity: 0.85;
}

.profile-signal-mesh::after {
  filter: blur(8px);
  opacity: 0.4;
}

.profile-signal-mesh span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #67e8f9;
  box-shadow: 0 0 0 8px rgba(103, 232, 249, 0.08);
}

.profile-signal-mesh span:nth-child(1) { top: 14px; left: 18px; }
.profile-signal-mesh span:nth-child(2) { top: 22px; right: 34px; background: #34d399; box-shadow: 0 0 0 8px rgba(52, 211, 153, 0.1); }
.profile-signal-mesh span:nth-child(3) { top: 78px; left: 92px; background: #f59e0b; box-shadow: 0 0 0 8px rgba(245, 158, 11, 0.1); }
.profile-signal-mesh span:nth-child(4) { bottom: 18px; left: 42px; }
.profile-signal-mesh span:nth-child(5) { bottom: 30px; right: 16px; background: #38bdf8; }

.profile-signal-grid-condensed {
  grid-template-columns: 1fr;
}

.directory-empty-state,
.compare-pending-note {
  margin-bottom: 18px;
}

.directory-suggest-state {
  display: grid;
  gap: 14px;
}

.directory-suggest-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.directory-suggest-actions .button {
  min-width: 220px;
}

.rating-row span,
.vendor-meta-row span {
  display: block;
  font-size: 0.72rem;
  line-height: 1.3;
}

.rating-row span {
  font-weight: 600;
}

.rating-row strong {
  display: block;
  margin-top: 6px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.hero-copy .lede {
  font-size: 1.06rem;
  line-height: 1.6;
  max-width: 58ch;
}

.hero-actions-row {
  gap: 12px;
  margin-top: 6px;
}

.hero-stats-row {
  gap: 16px;
  margin: 6px 0 0;
  font-size: 0.92rem;
}

.signal-list,
.bullet-list,
.metric-list,
.source-list {
  margin: 0;
  padding-left: 20px;
  line-height: 1.7;
}

.editorial-band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: end;
}

.editorial-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.editorial-copy h2 {
  max-width: 18ch;
}

.process-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 28px;
}

.category-strip-wrap {
  padding-top: 18px;
}

.strip-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.strip-title {
  font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.6rem;
}

.strip-title em {
  color: var(--sea);
}

.category-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.category-pill {
  flex-shrink: 0;
  min-width: 168px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.15rem;
  cursor: pointer;
  transition: all 0.18s ease;
}

.category-pill:hover {
  border-color: var(--sea);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 116, 144, 0.12);
}

.category-pill-empty {
  background: rgba(255, 255, 255, 0.72);
  border-style: dashed;
}

.category-pill-empty .category-pill-count {
  color: #94a3b8;
}

.category-pill-name {
  font-size: 0.85rem;
  font-weight: 700;
}

.category-pill-count {
  font-size: 0.72rem;
  color: var(--ink-soft);
}

.process-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--line-strong);
}

.process-step > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(15, 127, 136, 0.12);
  color: var(--sea);
  font-weight: 700;
}

.workflow-section {
  padding: 34px 0 48px;
}

.workflow-heading {
  max-width: 860px;
  margin-bottom: 22px;
}

.workflow-diagram {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}

.workflow-node {
  position: relative;
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(8, 145, 178, 0.18);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(8, 145, 178, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 251, 0.95));
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.workflow-node::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  width: 18px;
  height: 2px;
  background: rgba(8, 145, 178, 0.34);
}

.workflow-node:last-child::after {
  display: none;
}

.workflow-node span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(8, 145, 178, 0.12);
  color: var(--sea);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.workflow-node h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.workflow-node p {
  margin: 0;
  color: var(--ink-soft);
}

.workflow-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.workflow-link-card {
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.workflow-link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(8, 145, 178, 0.28);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
}

.ordered-list {
  list-style: decimal;
}

.filters-panel {
  position: static;
  padding: 22px 20px 20px;
  border-radius: 22px;
}

.results-column {
  min-width: 0;
}

.category-pill-active {
  border-color: rgba(8, 145, 178, 0.72);
  background: linear-gradient(180deg, rgba(8, 145, 178, 0.18), rgba(14, 116, 144, 0.14));
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.category-pill-active .category-pill-name,
.category-pill-active .category-pill-count {
  color: #0b4f61;
}

.filters-panel .panel-heading {
  margin-bottom: 14px;
}

.filters-panel .panel-heading .eyebrow {
  margin-bottom: 0;
}

.filters-panel .field {
  gap: 10px;
  margin-bottom: 12px;
}

.results-head,
.profile-hero-grid,
.compare-page-hero,
.footer-grid {
  grid-template-columns: 1fr auto;
  align-items: end;
}

.profile-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
  align-items: start;
}

.profile-hero-copy {
  display: grid;
  gap: 18px;
}

.profile-hero-copy-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
}

.profile-hero-copy-main {
  min-width: 0;
}

.profile-hero-head-side {
  display: grid;
  gap: 14px;
  justify-items: end;
}

.profile-hero-logo-shell {
  display: grid;
  place-items: center;
  width: 232px;
  min-height: 104px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  overflow: visible;
}

.profile-hero-logo {
  max-width: 100%;
  max-height: 96px;
  object-fit: contain;
  display: block;
}

.profile-hero-logo-fallback-text {
  display: none;
}

.profile-hero-logo-shell.profile-hero-logo-shell-fallback {
  color: #103247;
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
}

.profile-hero-logo-shell.profile-hero-logo-shell-fallback .profile-hero-logo-fallback-text {
  display: block;
}

.profile-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  width: auto;
  max-width: none;
}

.profile-hero-actions .button {
  width: auto;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.profile-hero .lede.narrow {
  max-width: 42ch;
}

body[data-page="vendor"] .panel {
  padding: 22px;
}

body[data-page="vendor"] .profile-grid {
  gap: 14px;
}

body[data-page="vendor"] .profile-hero {
  padding: 20px 22px;
}

body[data-page="vendor"] .profile-hero-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  gap: 16px;
}

body[data-page="vendor"] .profile-hero-copy,
body[data-page="vendor"] .profile-hero-visual-full {
  grid-column: 1 / -1;
}

body[data-page="vendor"] .profile-hero-visual-full {
  width: 100%;
}

body[data-page="vendor"] .profile-hero-copy {
  gap: 12px;
}

body[data-page="vendor"] .profile-hero-copy-head {
  gap: 14px;
}

body[data-page="vendor"] .profile-hero-copy-main {
  gap: 6px;
}

body[data-page="vendor"] .profile-hero .lede.narrow {
  max-width: 62ch;
}

body[data-page="vendor"] .profile-hero-head-side {
  gap: 10px;
}

body[data-page="vendor"] .profile-hero-logo-shell {
  width: 320px;
  min-height: 132px;
}

body[data-page="vendor"] .profile-hero-logo {
  max-height: 118px;
}

body[data-page="vendor"] .profile-hero-actions {
  gap: 8px;
}

body[data-page="vendor"] .profile-hero-actions .button {
  min-height: 38px;
  padding: 0 14px;
}

body[data-page="vendor"] .profile-overview-panel .muted,
body[data-page="vendor"] .vendor-statement-panel .muted {
  margin: 4px 0 0;
}

body[data-page="vendor"] .vendor-profile-detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 16px;
}

body[data-page="vendor"] .profile-detail-item {
  gap: 4px;
}

body[data-page="vendor"] .vendor-statement-head {
  margin-bottom: 12px;
  gap: 12px;
}

body[data-page="vendor"] .vendor-statement-body p {
  line-height: 1.58;
}

body[data-page="vendor"] .profile-score-review-grid {
  gap: 12px;
}

.profile-score-card .metric-list.compact li {
  gap: 12px;
}

.profile-score-card .metric-list.compact span {
  font-size: 0.92rem;
}

.profile-score-card .metric-list.compact b {
  font-size: 0.98rem;
}

.vendor-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  min-width: 0;
}

.panel-clickable {
  cursor: pointer;
}

.vendor-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
  min-width: 0;
}

.directory-sort-field {
  min-width: 220px;
  margin-top: 2px;
}

.directory-sort-field select {
  min-width: 220px;
}

.directory-sort-status {
  display: block;
  margin-top: 0;
  font-size: 0.76rem;
  color: var(--ink-soft);
  max-width: 280px;
  text-align: right;
}

.results-summary {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.results-summary .field {
  width: min(260px, 100%);
}

.directory-results-search-field {
  width: min(420px, 100%);
}

.directory-results-search-field input {
  min-height: 52px;
}

.status-key {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 14px;
}

.status-key-label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.status-key-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.82rem;
  font-weight: 600;
}

.status-key-poor {
  background: rgba(251, 146, 60, 0.16);
  border-color: rgba(249, 115, 22, 0.28);
  color: #9a3412;
}

.status-key-neutral {
  background: rgba(148, 163, 184, 0.18);
  border-color: rgba(100, 116, 139, 0.24);
  color: #334155;
}

.status-key-excellent {
  background: rgba(110, 231, 183, 0.18);
  border-color: rgba(22, 163, 74, 0.24);
  color: #166534;
}

.public-signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 0 2px;
  color: var(--ink);
  font-size: 0.82rem;
}

.public-signal-row span {
  display: inline-flex;
  gap: 6px;
  min-width: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(14, 116, 144, 0.08);
  border: 1px solid rgba(8, 145, 178, 0.18);
}

.public-signal-row b {
  color: var(--ink);
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.public-signal-note p + p {
  margin-top: 8px;
}

.summary-bullet-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.summary-bullet-list li {
  margin: 0;
}

.summary-bullet-list li strong {
  color: var(--ink);
}

.summary-bullet-list-compact {
  gap: 6px;
  padding-left: 16px;
  font-size: 0.83rem;
  line-height: 1.45;
}

.public-signal-row-summary {
  display: block;
  padding: 2px 0 0;
}

.auth-state-banner {
  border-color: rgba(14, 116, 144, 0.22);
  background: linear-gradient(180deg, rgba(14, 116, 144, 0.08), rgba(241, 248, 251, 0.92));
}

.auth-state-banner strong {
  display: block;
  margin-bottom: 6px;
}

.vendor-card-title {
  display: flex;
  gap: 14px;
  align-items: start;
  min-width: 0;
  flex: 1 1 auto;
}

.vendor-logo {
  width: 72px;
  height: 52px;
  flex: 0 0 72px;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: #123042;
  font-weight: 700;
  letter-spacing: 0.06em;
  overflow: visible;
  position: relative;
  box-shadow: none;
}

.vendor-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: transparent;
  padding: 0;
}

.vendor-logo-fallback-text {
  display: none;
}

.vendor-logo.vendor-logo-fallback {
  background: transparent;
  border-color: transparent;
  color: #f8fafc;
}

.vendor-logo.vendor-logo-fallback .vendor-logo-fallback-text {
  display: block;
}

.vendor-card h3 {
  margin: 0 0 4px;
  font-size: 1.15rem;
  overflow-wrap: anywhere;
}

.score-ring {
  min-width: 108px;
  text-align: center;
  border-radius: 22px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(248, 250, 252, 0.9);
}

.score-ring strong,
.hero-kpis strong {
  display: block;
  font-size: 2.35rem;
  line-height: 0.95;
}

.score-ring-online-poor,
.profile-score-card.score-ring-online-poor {
  background: linear-gradient(180deg, rgba(251, 146, 60, 0.16), rgba(255, 247, 237, 0.96));
  border-color: rgba(249, 115, 22, 0.28);
}

.score-ring-online-neutral,
.profile-score-card.score-ring-online-neutral {
  background: linear-gradient(180deg, rgba(148, 163, 184, 0.18), rgba(248, 250, 252, 0.98));
  border-color: rgba(100, 116, 139, 0.24);
}

.score-ring-online-excellent,
.profile-score-card.score-ring-online-excellent {
  background: linear-gradient(180deg, rgba(110, 231, 183, 0.18), rgba(240, 253, 244, 0.98));
  border-color: rgba(22, 163, 74, 0.24);
}

.company-type-pill {
  display: inline-flex;
  align-self: start;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(15, 127, 136, 0.1);
  color: var(--sea);
  font-size: 0.8rem;
  font-weight: 600;
}

.bucket-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bucket-pill-secondary {
  display: inline-flex;
  align-self: start;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 600;
}

.bucket-pill-system {
  display: inline-flex;
  align-self: start;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.1);
  color: #0369a1;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.vendor-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  padding: 8px 0 2px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.vendor-meta-row span {
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.35;
}

.vendor-meta-row b {
  color: var(--ink);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: 4px;
}

.weakness-note {
  background: rgba(231, 131, 113, 0.08);
  border: 1px solid rgba(231, 131, 113, 0.18);
  border-radius: 18px;
  padding: 14px 16px;
}

.weakness-note span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a54b3d;
}

.weakness-note p {
  margin: 0;
}

.vendor-card-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  min-width: 0;
}

.vendor-card-actions {
  gap: 12px;
}

.vendor-card-actions .button-wide {
  display: flex;
  width: 100%;
  margin: 0;
}

.vendor-card-footer .action-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.vendor-card-footer .action-row .button {
  width: 100%;
}

@media (max-width: 1460px) {
  .results-head,
  .profile-hero-grid,
  .compare-page-hero,
  .footer-grid,
  .hero-kpis,
  .rating-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .static-grid-why {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-overview-metrics,
  .profile-overview-copy {
    grid-column: span 2;
  }

  .external-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .action-row {
    align-items: stretch;
  }

  .profile-score-review-grid {
    grid-template-columns: 1fr;
  }

  .review-form-layout .review-score-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vendor-rfp-hero-grid,
  .vendor-rfp-visual-grid,
  .vendor-rfp-visual-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .directory-layout,
  .split-band,
  .monetisation-grid,
  .profile-grid,
  .static-grid,
  .form-layout,
  .style-directions-grid {
    grid-template-columns: 1fr;
  }

  .vendor-card-head {
    flex-direction: column;
    align-items: stretch;
  }

  .vendor-card-head .score-ring,
  .profile-score-card,
  .profile-hero-visual {
    width: 100%;
  }

  body[data-page="vendor"] .vendor-profile-detail-grid {
    grid-template-columns: 1fr;
  }

  .vendor-meta-row {
    grid-template-columns: 1fr;
  }

  .vendor-card-footer .action-row,
  .profile-hero .action-row,
  .compare-summary-card .action-row {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .vendor-card-footer .action-row .button,
  .profile-hero .action-row .button,
  .compare-summary-card .action-row .button,
  .profile-hero .action-row .text-link,
  .compare-summary-card .action-row .text-link {
    width: 100%;
  }

  .profile-signal-mesh {
    inset: 84px 18px auto auto;
    width: 170px;
    height: 120px;
  }
}

.sponsored-banner {
  margin: -22px -22px 14px;
  padding: 10px 18px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(135deg, var(--gold), #f8df97);
  color: #6f5312;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.state-badge {
  background: rgba(12, 29, 34, 0.06);
}

.state-badge.sponsored {
  background: rgba(243, 201, 111, 0.24);
  color: #71510e;
}

.state-badge.verified {
  background: rgba(126, 242, 199, 0.22);
  color: #166553;
}

.state-badge.new {
  background: rgba(15, 127, 136, 0.16);
  color: var(--sea);
}

.field {
  display: grid;
  gap: 8px;
}

.field-help {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.85);
}

.structured-form {
  display: grid;
  gap: 16px;
}

.review-score-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.review-form-layout {
  align-items: start;
}

.review-form-layout .field-span-2 {
  grid-column: 1 / -1;
}

.review-form-layout .review-score-band {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 18px;
  align-self: start;
}

.review-form-layout .review-score-band .field {
  gap: 10px;
}

.review-form-layout .review-score-band .field span {
  display: block;
  min-height: 2.6em;
}

.review-form-layout textarea {
  resize: vertical;
}

@media (max-width: 1320px) {
  .review-form-layout .review-score-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .review-form-layout .review-score-band {
    grid-template-columns: 1fr;
  }
}

.sponsor-rfp-split {
  align-items: stretch;
}

.sponsor-rfp-page-grid {
  grid-template-columns: 1fr;
}

.sponsor-support-panel {
  background:
    radial-gradient(circle at top right, rgba(14, 116, 144, 0.22), transparent 30%),
    radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.12), transparent 34%),
    linear-gradient(180deg, #173245 0%, #223a4f 100%);
  color: #fff;
  border: none;
}

.sponsor-support-panel .eyebrow,
.sponsor-support-panel h2,
.sponsor-support-panel p,
.sponsor-support-panel li,
.sponsor-support-panel strong {
  color: #fff;
}

.sponsor-support-panel .inline-note {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.sponsor-support-panel .inline-note p {
  color: rgba(255, 255, 255, 0.78);
}

.sponsor-support-figure strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.85rem;
}

.sponsor-support-steps {
  margin: 0 0 18px;
  padding-left: 0;
  list-style: none;
}

.sponsor-support-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sponsor-support-steps li:first-child {
  border-top: 0;
}

.sponsor-support-steps span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
}

.why-cvc-hero {
  background:
    radial-gradient(circle at top right, rgba(14, 116, 144, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(14, 116, 144, 0.04), rgba(255, 255, 255, 0.98));
}

.why-cvc-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: stretch;
}

.why-cvc-pillars {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 10px;
}

.why-cvc-pillars li {
  padding: 12px 18px;
  border-radius: 14px;
  background: rgba(14, 116, 144, 0.06);
  border: 1px solid rgba(14, 116, 144, 0.12);
  font-size: 0.92rem;
  line-height: 1.45;
}

.why-cvc-pillars strong {
  color: #0e7490;
}

.why-cvc-thesis-card {
  padding: 26px;
  border-radius: 20px;
  background: rgba(14, 116, 144, 0.04);
  border: 1px solid rgba(14, 116, 144, 0.1);
  display: grid;
  gap: 10px;
  align-content: start;
}

.why-cvc-thesis-icon {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.why-cvc-visual {
  display: grid;
  gap: 14px;
}

.why-cvc-visual-card {
  min-height: 132px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.3)),
    radial-gradient(circle at top left, rgba(126, 242, 199, 0.22), transparent 32%),
    #203346;
  color: #fff;
}

.why-cvc-visual-card span {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.74);
}

.why-cvc-visual-card strong {
  font-size: 1.1rem;
  line-height: 1.3;
}

.evidence-panel {
  background:
    radial-gradient(circle at top right, rgba(243, 201, 111, 0.12), transparent 24%),
    #fff;
}

.evidence-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.evidence-stat {
  padding: 16px;
  border-radius: 18px;
  background: rgba(12, 29, 34, 0.04);
  border: 1px solid var(--line);
}

.evidence-stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.6rem;
  color: var(--sea);
}

.evidence-stat p {
  margin: 0;
  color: var(--ink);
  line-height: 1.45;
}

.why-cvc-rationale {
  padding: 30px;
}

.why-cvc-figure-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.why-cvc-figure {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 251, 0.92));
  border: 1px solid rgba(8, 145, 178, 0.14);
}

.why-cvc-figure strong {
  display: block;
  margin-bottom: 8px;
  color: var(--sea);
  font-size: 1.55rem;
}

.why-cvc-figure p {
  margin: 0;
  line-height: 1.45;
}

.filter-checklist {
  display: grid;
  gap: 8px;
  max-height: 132px;
  overflow: auto;
  padding-right: 4px;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
}

.filter-check input {
  width: 16px;
  height: 16px;
  margin: 0;
}

.filter-check span {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 500;
}

.chip {
  border: 1px solid var(--line);
  background: rgba(12, 29, 34, 0.04);
  cursor: pointer;
}

.chip-active {
  background: rgba(15, 127, 136, 0.16);
  color: var(--sea);
}

.chip-grid .chip {
  text-align: left;
}

.filter-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip-grid .chip,
#therapeuticAreaFilters .chip {
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1.5px solid var(--line);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.filter-chip-grid .chip:hover,
#therapeuticAreaFilters .chip:hover {
  transform: translateY(-1px);
  border-color: rgba(8, 145, 178, 0.34);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.filter-chip-grid .chip-active,
#therapeuticAreaFilters .chip-active {
  background: rgba(14, 116, 144, 0.12);
  border-color: rgba(14, 116, 144, 0.42);
  color: var(--sea);
}

.role-card {
  text-decoration: none;
  min-height: 0;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  overflow: hidden;
  padding: 18px 18px 16px;
}

.split-card,
.monetisation-card {
  display: grid;
  gap: 14px;
  align-content: start;
}

.split-card p,
.monetisation-card p {
  margin: 0;
}

.review-intro-panel {
  padding-bottom: 22px;
}

.review-intro-panel .inline-note {
  margin-top: 4px;
}

.review-trust-note {
  margin: 10px 0 0;
  max-width: 68ch;
}

.terms-hero {
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.94));
  border-color: rgba(96, 165, 250, 0.22);
}

.policy-page .page-hero {
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), transparent 28%),
    radial-gradient(circle at bottom left, rgba(14, 165, 233, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.94));
  border-color: rgba(96, 165, 250, 0.18);
}

.policy-link-band {
  display: grid;
  gap: 14px;
  padding-top: 20px;
  padding-bottom: 20px;
  background:
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
  border-color: rgba(148, 163, 184, 0.18);
}

.policy-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.policy-link-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.policy-link-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(59, 130, 246, 0.28);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.policy-link-pill.is-active {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(14, 165, 233, 0.08));
  border-color: rgba(59, 130, 246, 0.34);
  color: #1d4ed8;
}

.terms-document {
  display: grid;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.terms-section {
  padding: 30px 34px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  position: relative;
}

.terms-section:first-child {
  border-top: 0;
}

.terms-section::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.8), rgba(14, 165, 233, 0.45));
}

.terms-section h2 {
  margin: 0 0 18px;
  max-width: none;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
}

.terms-section h2 span {
  display: inline-block;
  min-width: 1.6em;
  color: var(--sea);
}

.terms-section p {
  max-width: 100ch;
  margin: 0 0 18px;
  color: var(--ink);
  line-height: 1.75;
}

.terms-section p:last-child {
  margin-bottom: 0;
}

.sponsor-banner {
  display: grid;
  gap: 14px;
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(249, 115, 22, 0.18);
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(255, 247, 237, 0.98), rgba(255, 255, 255, 0.96));
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.sponsor-banner strong {
  display: block;
  color: var(--ink);
  font-size: 1.15rem;
}

.sponsor-banner p {
  margin: 0;
  color: var(--ink-soft);
}

.sponsor-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.policy-page .split-card,
.policy-page .profile-detail-item {
  position: relative;
  overflow: hidden;
}

.policy-page .split-card::before,
.policy-page .profile-detail-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.76), rgba(14, 165, 233, 0.36));
  opacity: 0.82;
}

.policy-page .profile-detail-item {
  padding-left: 18px;
}

.monetisation-card .muted {
  max-width: 62ch;
}

.role-card:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 145, 178, 0.32);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.role-card-sponsor {
  background:
    radial-gradient(circle at top right, rgba(8, 145, 178, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(14, 116, 144, 0.04), transparent 38%),
    #ffffff;
}

.role-card-vendor {
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(243, 201, 111, 0.05), transparent 38%),
    #ffffff;
}

.role-card-decision {
  background:
    radial-gradient(circle at top right, rgba(16, 185, 129, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(126, 242, 199, 0.05), transparent 38%),
    #ffffff;
}

.role-card-review {
  background:
    radial-gradient(circle at top right, rgba(231, 111, 81, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(231, 111, 81, 0.08), transparent 38%),
    #ffffff;
}

.hero-aside {
  display: grid;
  gap: 16px;
}

.hero-aside-top,
.hero-aside-mini-grid {
  display: grid;
  gap: 16px;
}

.hero-aside-mini-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.scientific-note {
  background: #ffffff;
}

.why-cvc-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.14), transparent 28%),
    radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
}

.why-cvc-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 22px;
  align-items: stretch;
}

.why-cvc-hero-copy,
.why-cvc-mission-card {
  display: grid;
  gap: 14px;
}

.why-cvc-hero-copy h1,
.why-cvc-mission-card h2,
.why-cvc-thesis-grid h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.why-cvc-mission-card {
  align-content: start;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(8, 145, 178, 0.16);
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.16), transparent 34%),
    linear-gradient(160deg, #0f2230 0%, #102936 48%, #0b1722 100%);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.16);
}

.why-cvc-mission-card .eyebrow,
.why-cvc-mission-card h2,
.why-cvc-mission-card p {
  color: #f8fafc;
}

.why-cvc-mission-card p {
  margin: 0;
  color: rgba(226, 232, 240, 0.84);
}

.why-cvc-mission-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.why-cvc-mission-pills span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(248, 250, 252, 0.94);
  font-size: 0.78rem;
  font-weight: 700;
}

.why-cvc-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.why-cvc-metric-block {
  display: grid;
  gap: 10px;
  min-height: 230px;
  align-content: start;
  padding: 22px;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(8, 145, 178, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
}

.why-cvc-metric-block-blue {
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(239, 246, 255, 0.92), rgba(248, 250, 252, 0.98));
}

.why-cvc-metric-block-teal {
  background:
    radial-gradient(circle at top right, rgba(16, 185, 129, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(236, 253, 245, 0.92), rgba(248, 250, 252, 0.98));
}

.why-cvc-metric-value {
  display: block;
  font-size: clamp(2.8rem, 4vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--ink);
  font-weight: 800;
}

.why-cvc-metric-block strong {
  font-size: 1.04rem;
  line-height: 1.25;
}

.why-cvc-metric-block p,
.why-cvc-thesis-grid p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.why-cvc-thesis-band {
  background:
    radial-gradient(circle at top left, rgba(8, 145, 178, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
}

.why-cvc-thesis-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.why-cvc-thesis-grid article {
  display: grid;
  gap: 12px;
}

.role-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  color: var(--sea);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.role-card-link::after {
  content: ">";
  font-size: 0.9rem;
}

.split-band-top {
  padding-top: 0;
}

.score-table {
  display: grid;
  gap: 12px;
}

.score-table-compact {
  gap: 8px;
}

.score-row {
  display: grid;
  grid-template-columns: 210px 1fr 44px;
  gap: 12px;
  align-items: center;
}

.score-table-compact .score-row {
  grid-template-columns: 126px 1fr 42px;
  gap: 10px;
}

.score-table-compact .score-row span,
.score-table-compact .score-row strong {
  color: rgba(241, 245, 249, 0.92);
  font-size: 0.78rem;
}

.bar-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(12, 29, 34, 0.08);
  overflow: hidden;
}

.profile-signal-scorecard .bar-track {
  background: rgba(148, 163, 184, 0.18);
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sea), var(--mint));
}

.compact-score-note {
  margin: 0;
  color: rgba(226, 232, 240, 0.78);
  font-size: 0.8rem;
  line-height: 1.4;
}

.compare-table-scroll {
  overflow: auto;
}

.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.vendor-rfp-table.compare-table {
  min-width: 0;
}

.compare-table td,
.compare-table th,
.vendor-summary,
.lede,
.muted,
.text-link,
.strip-pill,
.compare-strip-copy,
.compare-strip-items,
.scientific-note h3,
.role-card h2,
.role-card h3 {
  overflow-wrap: anywhere;
}

.compare-table th,
.compare-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.compare-table td strong {
  display: block;
  margin-bottom: 6px;
}

.empty-table-cell {
  padding: 28px 16px !important;
}

.empty-table-cell strong,
.empty-table-cell span {
  display: block;
}

.empty-table-cell span {
  margin-top: 6px;
  color: var(--ink-soft);
}

.signin-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.signin-card {
  max-width: 520px;
  width: 100%;
  display: grid;
  gap: 14px;
}

.auth-status-note p {
  margin: 0;
}

.footer-grid {
  padding-bottom: 32px;
}

select[multiple] {
  min-height: 132px;
}

@media (max-width: 1120px) {
  .hero-grid,
  .market-grid,
  .editorial-band,
  .editorial-stats,
  .process-ribbon,
  .directory-layout,
  .split-band,
  .monetisation-grid,
  .profile-grid,
  .static-grid,
  .form-layout,
  .workflow-links,
  .compare-strip-shell,
  .results-head,
  .profile-hero-grid,
  .compare-page-hero,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .vendor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .external-review-grid {
    grid-template-columns: 1fr;
  }

  .why-cvc-hero-grid,
  .why-cvc-thesis-grid,
  .why-cvc-metrics-grid {
    grid-template-columns: 1fr;
  }

  .profile-signal-grid {
    grid-template-columns: 1fr;
  }

  .profile-signal-grid-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-signal-summary-grid {
    grid-template-columns: 1fr;
  }

  .profile-hero-copy-head {
    grid-template-columns: 1fr;
  }

  .profile-hero-head-side {
    justify-items: start;
  }

  .profile-hero-actions {
    justify-content: flex-start;
  }

  .profile-hero-logo-shell {
    width: min(100%, 220px);
  }

  .profile-signal-mesh {
    display: none;
  }

  .hero-brand-row {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 18px;
  }

  .hero-brand-row h1 {
    font-size: clamp(2.8rem, 6vw, 4rem);
  }

  .filters-panel {
    position: static;
  }

  .workflow-diagram {
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    overflow-x: auto;
    align-items: stretch;
    padding-bottom: 6px;
  }

  .why-cvc-hero-grid,
  .evidence-stat-grid,
  .why-cvc-figure-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .hero-aside,
  .hero-search-panel,
  .hero-aside-mini-grid {
    height: auto;
  }

  .hero-aside-mini-grid {
    grid-template-rows: none;
  }

  .hero-aside-mini-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .results-head,
  body[data-page="freelancers"] .results-head {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .results-summary,
  body[data-page="freelancers"] .results-summary {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .results-summary strong,
  body[data-page="home"] .results-summary span,
  body[data-page="freelancers"] .results-summary strong,
  body[data-page="freelancers"] .results-summary span {
    text-align: left;
  }
}

/* ── Mobile hamburger button ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  cursor: pointer;
  z-index: 40;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1400px) {
  .header-shell {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
  }

  .site-nav,
  .nav-right {
    justify-content: start;
  }

  .hero-brand-row {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }

  .hero-logo-block {
    width: 180px;
    height: 80px;
  }

  .hero-brand-row h1 {
    width: auto;
    max-width: 12ch;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 1rem, 1260px);
  }

  /* ── Mobile nav: hamburger ── */
  .hamburger {
    display: flex;
    position: absolute;
    top: 10px;
    right: 16px;
  }

  .header-shell {
    grid-template-columns: 1fr;
    position: relative;
  }

  .site-nav,
  .nav-right {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 8px;
    padding: 12px 0;
  }

  .site-nav.is-open,
  .nav-right.is-open {
    display: flex;
  }

  .site-nav a,
  .nav-right a {
    padding: 8px 0;
    font-size: 0.9rem;
  }

  .site-header,
  .compare-strip {
    position: static;
  }

  .nav-right,
  .search-card-row {
    flex-direction: column;
  }

  .compare-strip-shell {
    grid-template-columns: 1fr;
  }

  .vendor-grid,
  .hero-kpis,
  .rating-row,
  .hero-aside-mini-grid {
    grid-template-columns: 1fr;
  }

  .directory-pagination {
    flex-direction: column;
    align-items: flex-start;
  }

  .auth-landing-grid,
  .auth-landing-grid {
    grid-template-columns: 1fr;
  }

  .auth-landing-copy h1 {
    max-width: none;
  }

  .hero-brand-banner {
    grid-template-columns: 1fr;
  }

  .hero-brand-mark {
    min-height: 92px;
  }

  .panel,
  .vendor-card {
    padding: 20px;
    border-radius: 22px;
  }

  .why-cvc-rationale {
    padding: 20px;
  }

  .score-row {
    grid-template-columns: 1fr;
  }

  .workflow-node::after {
    display: none;
  }

  .sponsored-banner {
    position: static;
    display: inline-flex;
    margin-bottom: 8px;
  }
}

/* 2026-03-31 refinement pass */
.site-header {
  background:
    linear-gradient(90deg, rgba(7, 18, 28, 0.96), rgba(12, 32, 44, 0.93) 45%, rgba(15, 40, 52, 0.95));
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.16);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.34), transparent);
}

.header-shell {
  grid-template-columns: minmax(220px, auto) 1fr auto;
  gap: 16px;
  align-items: center;
}

.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 112px;
  height: 52px;
  flex: 0 0 112px;
}

.brand-copy {
  gap: 2px;
  min-width: 0;
}

.brand-copy strong {
  font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-shadow: none;
}

.site-header .brand-copy small:first-of-type {
  color: rgba(186, 230, 253, 0.92);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-header .brand-copy small:last-of-type {
  display: none;
}

.site-header .brand-mark {
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.nav-right .button {
  white-space: nowrap;
  min-height: 42px;
  padding: 0 13px;
  font-size: 0.91rem;
}

.button-primary {
  background: linear-gradient(135deg, #53b693, #d8aa5d);
  color: #112331;
  box-shadow: 0 14px 30px rgba(25, 64, 78, 0.16);
}

.button-review,
.hero-button-review {
  background: linear-gradient(135deg, #b97a37, #d4a35d);
  box-shadow: 0 12px 28px rgba(133, 91, 38, 0.16);
}

.button-nav-accent,
.hero-button-sponsor {
  background: linear-gradient(135deg, #275979, #4d84a4);
  color: #f8fafc;
  box-shadow: 0 12px 28px rgba(18, 57, 88, 0.18);
}

.button-secondary,
.button-ghost,
.social-button {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(148, 163, 184, 0.34);
}

.hero-logo-block {
  width: 284px;
  height: 118px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.hero-logo-block img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 34px rgba(8, 145, 178, 0.14));
}

.hero-brand-row h1 {
  font-family: "MuseoModerno", sans-serif;
  font-size: clamp(3.3rem, 5vw, 4.6rem);
  letter-spacing: -0.05em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.22);
}

.hero-aside-mini-grid {
  gap: 14px;
}

.role-card {
  min-height: 178px;
}

.results-copy-block {
  display: grid;
  gap: 8px;
}

.results-copy-block h2 {
  max-width: none;
}

.results-head h2 {
  max-width: none;
  font-size: clamp(2.3rem, 3.2vw, 3.4rem);
}

.results-copy-block .muted {
  max-width: none;
}

.workflow-link-card {
  min-height: 150px;
  align-content: end;
  border-radius: 26px;
  overflow: hidden;
}

.workflow-link-card h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.08;
}

.workflow-link-card-sponsor {
  color: #f8fafc;
  background:
    radial-gradient(circle at top right, rgba(125, 211, 252, 0.18), transparent 28%),
    linear-gradient(145deg, #0d2233, #1b4255 58%, #275e67);
}

.workflow-link-card-review {
  color: #10212d;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.26), transparent 34%),
    linear-gradient(145deg, rgba(142, 226, 215, 0.92), rgba(198, 216, 118, 0.84) 58%, rgba(217, 174, 102, 0.82));
}

.workflow-link-card-sponsor h3,
.workflow-link-card-review h3 {
  color: inherit;
}

.auth-landing-body {
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.15), transparent 20%),
    radial-gradient(circle at top right, rgba(45, 212, 191, 0.12), transparent 18%),
    linear-gradient(180deg, #04131d 0%, #082a3c 44%, #0a3f4b 100%);
}

.auth-landing-shell,
.auth-landing-shell input,
.auth-landing-shell button,
.auth-landing-shell a,
.auth-landing-shell select,
.auth-landing-shell textarea {
  font-family: "Zen Dots", sans-serif;
}

.auth-landing-canvas {
  opacity: 1;
  mix-blend-mode: screen;
}

.auth-landing-overlay {
  background:
    linear-gradient(180deg, rgba(5, 16, 25, 0.14), rgba(5, 16, 25, 0.18));
}

.auth-landing-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 22px 0;
}

.auth-landing-grid {
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
  max-width: 1140px;
}

.auth-landing-copy {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.auth-landing-copy-actions {
  width: min(460px, 100%);
}

.auth-landing-kicker {
  margin: 0;
  color: rgba(196, 234, 250, 0.86);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.auth-landing-brand {
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: center;
  justify-items: center;
  width: 100%;
  margin-bottom: 4px;
}

.auth-landing-brand h1 {
  margin: 0;
  font-family: "Zen Dots", sans-serif;
  font-size: clamp(3.9rem, 9.4vw, 7.6rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #f8fafc;
  text-shadow:
    0 14px 34px rgba(2, 10, 18, 0.34),
    0 0 22px rgba(125, 211, 252, 0.12);
  -webkit-text-stroke: 0.6px rgba(226, 244, 251, 0.18);
  max-width: none;
  width: 100%;
  font-weight: 400;
  text-align: center;
}

.auth-landing-brand img {
  width: min(180px, 22vw);
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: 0 18px 40px rgba(3, 12, 20, 0.18);
}

.auth-landing-lede {
  font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  max-width: 76ch;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.66;
  color: rgba(236, 247, 252, 0.94);
  margin: 0;
  text-align: center;
  font-weight: 300;
  letter-spacing: 0;
}

.auth-landing-trust-line {
  margin: 2px 0 0;
  max-width: 74ch;
  color: rgba(232, 245, 251, 0.96);
  line-height: 1.52;
  font-size: 1.08rem;
  font-weight: 700;
  text-align: center;
}

.auth-landing-policy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.auth-landing-policy-links .policy-link-pill {
  background: rgba(5, 15, 24, 0.34);
  border-color: rgba(186, 230, 253, 0.24);
  color: #ecfeff;
}

.auth-landing-policy-links .policy-link-pill:hover {
  border-color: rgba(103, 232, 249, 0.52);
  box-shadow: 0 10px 28px rgba(5, 15, 24, 0.22);
}

.auth-landing-trust-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.auth-landing-trust-card {
  display: grid;
  gap: 8px;
  padding: 18px 18px 16px;
  border-radius: 24px;
  border: 1px solid rgba(186, 230, 253, 0.18);
  background: linear-gradient(180deg, rgba(7, 18, 28, 0.34), rgba(7, 18, 28, 0.2));
  box-shadow: 0 18px 42px rgba(3, 12, 20, 0.16);
}

.auth-landing-trust-label {
  margin: 0;
  color: rgba(103, 232, 249, 0.86);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-landing-trust-card h2 {
  margin: 0;
  color: #f8fafc;
  font-size: 1.02rem;
  line-height: 1.3;
}

.auth-landing-trust-card p:last-child {
  margin: 0;
  color: rgba(226, 232, 240, 0.82);
  font-size: 0.92rem;
  line-height: 1.55;
}

.auth-landing-panel {
  gap: 14px;
  padding: 18px 20px 16px;
  border: 1px solid rgba(186, 230, 253, 0.16);
  background: linear-gradient(180deg, rgba(7, 18, 28, 0.32), rgba(7, 18, 28, 0.2));
  box-shadow: 0 24px 60px rgba(3, 12, 20, 0.18);
  max-width: 1080px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
}

.auth-landing-panel-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  align-items: center;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(186, 230, 253, 0.1);
  text-align: center;
}

.auth-landing-panel-head h2 {
  margin: 0;
  font-size: clamp(1.14rem, 1.65vw, 1.48rem);
  letter-spacing: -0.02em;
  color: #f8fafc;
}

.auth-landing-panel-head p {
  margin: 0;
  max-width: none;
  text-align: center;
  color: rgba(212, 232, 244, 0.72);
  font-size: 0.92rem;
  line-height: 1.4;
}

.auth-landing-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.auth-landing-fields .field {
  margin-bottom: 0;
  gap: 8px;
}

.auth-landing-fields .field span {
  color: rgba(226, 232, 240, 0.82);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.auth-landing-fields input {
  min-height: 52px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(186, 230, 253, 0.18);
  background: rgba(6, 14, 22, 0.36);
  color: #f8fafc;
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-size: 0.92rem;
}

.auth-landing-fields input::placeholder {
  color: rgba(226, 232, 240, 0.46);
}

.auth-landing-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  max-width: none;
  gap: 10px;
}

.auth-landing-status {
  gap: 2px;
  max-width: none;
}

.auth-landing-status p,
#authFormStatus {
  font-size: 0.88rem;
  color: rgba(226, 232, 240, 0.78);
}

.auth-landing-escape {
  display: block;
}

.auth-landing-escape .text-link {
  color: rgba(216, 242, 255, 0.9);
}

.password-reset-shell {
  justify-content: center;
}

.password-reset-wrap {
  display: flex;
  justify-content: center;
}

.password-reset-card {
  width: min(640px, 100%);
}

.password-reset-head {
  text-align: center;
}

.password-reset-head .auth-landing-kicker {
  justify-self: center;
}

.password-reset-form {
  max-width: 460px;
  margin: 0 auto;
}

.password-reset-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.auth-landing-skip {
  width: 100%;
}

.auth-landing-skip-hero {
  min-height: 56px;
  background: #67E8F9;
  border-color: rgba(103, 232, 249, 0.72);
  color: #052029;
  box-shadow: 0 14px 28px rgba(10, 28, 40, 0.18);
}

.auth-landing-actions .button {
  min-height: 52px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.auth-landing-actions .button-secondary {
  background: rgba(7, 18, 28, 0.32);
  border-color: rgba(186, 230, 253, 0.18);
  color: #f8fafc;
}

.landing-linkedin-button {
  background: rgba(7, 18, 28, 0.36);
  color: #f8fafc;
}

.profile-signal-topline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}

.profile-signal-grid-meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.profile-signal-metric-wide {
  grid-column: 1 / -1;
}

.profile-signal-metric strong {
  display: block;
  margin-bottom: 6px;
}

.profile-signal-grid.profile-signal-grid-condensed.profile-signal-grid-meta {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vendor-statement-panel {
  background:
    radial-gradient(circle at top right, rgba(45, 212, 191, 0.09), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 251, 0.98));
}

.vendor-statement-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  margin-bottom: 16px;
}

.vendor-statement-head p {
  margin: 6px 0 0;
}

.vendor-statement-body p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.72;
  color: var(--ink);
}

.review-score-band.review-score-band-compact {
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  align-items: center;
  padding: 20px 22px;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 252, 0.94));
}

.review-score-band-compact h2 {
  margin: 0 0 8px;
}

.review-overall-score-field {
  margin-bottom: 0;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.review-overall-score-field select,
.review-form-layout select {
  background:
    linear-gradient(180deg, rgba(12, 29, 34, 0.02), rgba(12, 29, 34, 0.05)),
    #fff;
  border-width: 1.5px;
}

.review-form-layout select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 46px;
  background-image:
    linear-gradient(180deg, rgba(12, 29, 34, 0.02), rgba(12, 29, 34, 0.05)),
    linear-gradient(135deg, transparent 50%, rgba(18, 50, 69, 0.78) 50%),
    linear-gradient(45deg, rgba(18, 50, 69, 0.78) 50%, transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 252, 0.96));
  background-position:
    0 0,
    calc(100% - 21px) calc(50% - 3px),
    calc(100% - 15px) calc(50% - 3px),
    0 0;
  background-size:
    auto,
    7px 7px,
    7px 7px,
    auto;
  background-repeat: no-repeat;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 10px 22px rgba(15, 23, 42, 0.04);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.review-form-layout select:hover {
  border-color: rgba(8, 145, 178, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 12px 24px rgba(15, 23, 42, 0.06);
}

.review-form-layout select:focus {
  outline: none;
  border-color: rgba(8, 145, 178, 0.5);
  box-shadow: 0 0 0 4px rgba(103, 232, 249, 0.12), 0 14px 28px rgba(15, 23, 42, 0.08);
}

.review-form-layout .review-score-input {
  min-height: 52px;
  border-radius: 18px;
  font-weight: 600;
  color: #112331;
}

.review-form-layout .field:has(.review-score-input) {
  padding: 12px 12px 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 251, 253, 0.94));
  border: 1px solid rgba(8, 145, 178, 0.1);
}

.vendor-rfp-hero-simple {
  background:
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.14), transparent 30%),
    radial-gradient(circle at bottom left, rgba(45, 212, 191, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(14, 29, 36, 0.98), rgba(18, 38, 46, 0.96));
}

.vendor-rfp-pricing-panel,
.vendor-rfp-contact-panel {
  min-height: 100%;
}

.vendor-rfp-pricing-panel {
  background:
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(14, 29, 36, 0.98), rgba(18, 38, 46, 0.96));
  border-color: rgba(148, 163, 184, 0.16);
}

.vendor-rfp-pricing-panel .section-heading h2,
.vendor-rfp-pricing-panel .section-heading .muted,
.vendor-rfp-pricing-panel .eyebrow {
  color: #f8fafc;
}

.vendor-rfp-pricing-panel .muted {
  color: rgba(226, 232, 240, 0.78);
}

.vendor-rfp-tier-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.vendor-route-card {
  display: grid;
  gap: 12px;
  min-height: 0;
  align-content: start;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(125, 211, 252, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 18px 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.vendor-route-card strong {
  display: block;
  color: #f8fafc;
  font-size: 1.25rem;
  line-height: 1.08;
}

.vendor-route-card p {
  margin: 0;
  color: rgba(226, 232, 240, 0.78);
  line-height: 1.55;
}

.vendor-route-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(186, 230, 253, 0.14);
  color: rgba(186, 230, 253, 0.88);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: "IBM Plex Mono", monospace;
}

.vendor-route-points {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: rgba(226, 232, 240, 0.84);
  font-size: 0.9rem;
  line-height: 1.45;
}

.vendor-rfp-route-visual {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.vendor-rfp-route-flow {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.vendor-rfp-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.vendor-rfp-route-node {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(8, 16, 22, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vendor-rfp-route-node strong {
  color: #f8fafc;
  font-size: 0.98rem;
  line-height: 1.2;
}

.vendor-rfp-route-node span {
  color: rgba(226, 232, 240, 0.76);
  font-size: 0.88rem;
  line-height: 1.45;
}

.vendor-rfp-route-node-primary {
  background:
    radial-gradient(circle at top right, rgba(45, 212, 191, 0.12), transparent 36%),
    rgba(8, 16, 22, 0.34);
  border-color: rgba(45, 212, 191, 0.18);
}

.vendor-rfp-contact-panel {
  background:
    radial-gradient(circle at top right, rgba(45, 212, 191, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 252, 0.96));
}

.vendor-rfp-contact-panel .action-row .button {
  width: 100%;
}

body[data-page="rfp-detail"].theme-inverse .rfp-brief-panel .eyebrow,
body[data-page="rfp-detail"].theme-inverse .rfp-brief-panel h2,
body[data-page="rfp-detail"].theme-inverse .rfp-brief-panel strong,
body[data-page="rfp-detail"].theme-inverse .rfp-brief-panel b {
  color: rgba(255, 255, 255, 0.96);
}

body[data-page="rfp-detail"].theme-inverse .rfp-brief-panel .metric-list span,
body[data-page="rfp-detail"].theme-inverse .rfp-brief-panel .inline-note p {
  color: rgba(255, 255, 255, 0.82);
}

body[data-page="rfp-detail"].theme-inverse .rfp-access-panel .field-help {
  color: rgba(255, 255, 255, 0.82);
}

body[data-page="rfp-detail"].theme-inverse .rfp-access-grid {
  margin-top: 12px;
}

.why-cvc-map-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(8, 145, 178, 0.16);
  background:
    radial-gradient(circle at top right, rgba(103, 232, 249, 0.14), transparent 34%),
    linear-gradient(160deg, #0f2230 0%, #102936 48%, #0b1722 100%);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.16);
}

.why-cvc-map-card .eyebrow {
  color: rgba(186, 230, 253, 0.92);
}

.why-cvc-map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.why-cvc-map-node {
  display: grid;
  gap: 8px;
  min-height: 120px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.why-cvc-map-node.is-accent {
  background:
    radial-gradient(circle at top right, rgba(103, 232, 249, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(125, 211, 252, 0.22);
}

.why-cvc-map-node strong {
  color: #f8fafc;
  font-size: 1rem;
}

.why-cvc-map-node p {
  margin: 0;
  color: rgba(226, 232, 240, 0.8);
  line-height: 1.5;
}

.benchmark-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.benchmark-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.1);
  border-color: rgba(8, 145, 178, 0.2);
}

.why-cvc-thesis-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  line-height: 1.6;
}

@media (min-width: 1180px) {
  body[data-page="home"] .hero-grid,
  body[data-page="freelancers"] .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.64fr);
    align-items: start;
  }

  body[data-page="home"] .hero-aside-mini-grid,
  body[data-page="freelancers"] .hero-aside-mini-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1200px) {
  .auth-landing-actions,
  .vendor-rfp-tier-grid,
  .profile-signal-grid-meta,
  .why-cvc-map-grid,
  .auth-landing-trust-band {
    grid-template-columns: 1fr;
  }

  .review-score-band.review-score-band-compact {
    grid-template-columns: 1fr;
  }

  .auth-landing-fields {
    grid-template-columns: 1fr 1fr;
  }

  .header-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
    align-items: center;
    gap: 14px 16px;
  }

  .brand {
    grid-area: brand;
  }

  .site-nav {
    grid-area: nav;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav-right {
    grid-area: actions;
    justify-content: flex-end;
    align-self: start;
  }

  .site-nav a {
    font-size: 0.92rem;
  }
}

@media (max-width: 980px) {
  .header-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav"
      "actions";
    align-items: start;
  }

  .site-nav,
  .nav-right {
    justify-content: flex-start;
  }

  .admin-export-grid {
    grid-template-columns: 1fr;
  }

  .auth-landing-panel-head {
    grid-template-columns: 1fr;
  }

  .auth-landing-panel-head p {
    text-align: left;
    max-width: none;
  }

  .auth-landing-brand {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .workflow-links {
    grid-template-columns: 1fr;
  }

  .auth-landing-fields {
    grid-template-columns: 1fr;
  }

  .auth-landing-trust-card {
    padding: 16px;
  }

  .brand {
    align-items: center;
  }
}

@media (max-width: 760px) {
  .header-shell {
    gap: 12px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 72px;
    height: 34px;
    flex-basis: 72px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .site-header .brand-copy small:first-of-type {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .site-header .brand-copy small:last-of-type {
    font-size: 0.76rem;
    max-width: none;
  }

  .nav-right {
    flex-direction: column;
    width: 100%;
  }

  .nav-right .button {
    width: 100%;
    justify-content: center;
  }
}

.site-header .brand {
  gap: 18px;
}

.site-header .brand-mark {
  width: 100px;
  height: 46px;
  flex: 0 0 100px;
}

.site-header .brand-copy {
  display: grid;
  gap: 2px;
}

.site-header .brand-copy strong {
  font-size: 0.96rem;
  line-height: 1;
}

.hero-brand-row {
  grid-template-columns: 236px minmax(0, 1fr);
  gap: 26px;
}

.hero-logo-block {
  width: 236px;
  height: 98px;
}

.hero-brand-row h1 {
  font-size: clamp(3.45rem, 5vw, 4.75rem);
  line-height: 0.92;
}

.hero-actions-row .hero-button-sponsor {
  background: linear-gradient(135deg, #1d5a7f, #4d84a4);
  border-color: rgba(103, 232, 249, 0.18);
  color: #f8fafc;
  box-shadow: 0 12px 28px rgba(18, 57, 88, 0.18);
}

.hero-actions-row .hero-button-review {
  background: linear-gradient(135deg, #1f536e, #48a6c7);
  border-color: rgba(72, 166, 199, 0.22);
  color: #f8fafc;
  box-shadow: 0 12px 28px rgba(31, 83, 110, 0.22);
}

.hero-aside-mini-grid .role-card {
  min-height: 178px;
  text-align: center;
  justify-items: center;
  align-content: center;
}

.hero-aside-mini-grid .role-card .eyebrow,
.hero-aside-mini-grid .role-card h3,
.hero-aside-mini-grid .role-card p,
.hero-aside-mini-grid .role-card-link {
  text-align: center;
}

.hero-aside-mini-grid .role-card p {
  max-width: 26ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-aside-mini-grid .role-card-link {
  justify-self: center;
}

.profile-hero-grid {
  grid-template-columns: 1fr;
  align-items: start;
}

.profile-shell {
  padding: 20px 0;
}

.profile-hero-copy {
  gap: 12px;
}

.profile-hero-copy-head {
  gap: 16px;
  align-items: center;
}

.profile-hero-copy-main {
  display: grid;
  gap: 8px;
}

.profile-hero-visual {
  width: 100%;
}

.profile-hero-logo-shell {
  width: 156px;
  min-height: 94px;
  padding: 11px 13px;
}

.profile-hero-logo {
  max-height: 58px;
}

.profile-hero-actions {
  gap: 8px;
}

.profile-hero-actions .button {
  min-height: 38px;
  padding: 0 14px;
}

.profile-hero .lede.narrow {
  max-width: 56ch;
}

.profile-signal-card {
  width: 100%;
}

.profile-signal-mesh {
  display: none;
}

body[data-page="vendor-rfp"] .vendor-rfp-hero h1 {
  max-width: none;
  width: 100%;
}

body[data-page="vendor-rfp"] .vendor-rfp-hero .lede.narrow {
  max-width: none;
  width: 100%;
}

body[data-page="home"] .results-head,
body[data-page="freelancers"] .results-head {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: start;
  gap: 26px;
}

body[data-page="home"] .results-copy-block,
body[data-page="home"] .results-copy-block h2,
body[data-page="home"] .results-copy-block .muted,
body[data-page="freelancers"] .results-copy-block,
body[data-page="freelancers"] .results-copy-block h2,
body[data-page="freelancers"] .results-copy-block .muted {
  width: 100%;
  max-width: none;
}

body[data-page="home"] .results-summary,
body[data-page="freelancers"] .results-summary {
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-items: stretch;
  align-content: start;
  gap: 10px 14px;
}

body[data-page="home"] .results-summary strong,
body[data-page="home"] .results-summary span,
body[data-page="freelancers"] .results-summary strong,
body[data-page="freelancers"] .results-summary span {
  text-align: right;
  grid-column: 1 / -1;
}

body[data-page="home"] .results-summary .field,
body[data-page="freelancers"] .results-summary .field {
  width: 100%;
  min-width: 0;
}

body[data-page="home"] .directory-results-search-field,
body[data-page="home"] .directory-sort-field,
body[data-page="freelancers"] .directory-results-search-field,
body[data-page="freelancers"] .directory-sort-field {
  min-width: 0;
}

body[data-page="home"] .directory-results-search-field input,
body[data-page="home"] .directory-sort-field select,
body[data-page="freelancers"] .directory-results-search-field input,
body[data-page="freelancers"] .directory-sort-field select {
  min-width: 0;
  width: 100%;
}

body[data-page="home"] .directory-sort-status,
body[data-page="freelancers"] .directory-sort-status {
  grid-column: 1 / -1;
  max-width: none;
  text-align: center;
}

@media (max-width: 980px) {
  body[data-page="home"] .results-head,
  body[data-page="freelancers"] .results-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body[data-page="home"] .results-summary,
  body[data-page="freelancers"] .results-summary {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .results-summary strong,
  body[data-page="home"] .results-summary span,
  body[data-page="home"] .directory-sort-status,
  body[data-page="freelancers"] .results-summary strong,
  body[data-page="freelancers"] .results-summary span,
  body[data-page="freelancers"] .directory-sort-status {
    text-align: left;
  }
}

.compare-strip .button-secondary {
  background: linear-gradient(135deg, #2f5f7f, #5e99bc);
  border-color: rgba(147, 197, 253, 0.22);
  color: #f8fafc;
  box-shadow: 0 12px 28px rgba(23, 58, 88, 0.2);
}


@media (max-width: 860px) {
  .why-cvc-thesis-grid {
    grid-template-columns: 1fr;
  }
  .why-cvc-pillars li {
    padding: 10px 14px;
    font-size: 0.85rem;
  }
}

@media (max-width: 1120px) {
  .why-cvc-thesis-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-cvc-thesis-card:last-child {
    grid-column: 1 / -1;
  }
}
