:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface2: #f8fafc;
  --border: #e2e8f0;
  --text: #0b1220;
  --muted: #475569;
  --muted2: #64748b;
  --shadow: 0 12px 34px rgba(2, 6, 23, 0.08);
  --shadow2: 0 8px 18px rgba(2, 6, 23, 0.06);
  --r22: 22px;
  --r18: 18px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    Helvetica, Arial;
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
/* top announcement */
.topbar {
  width: 100%;
  background: #053bee;
  color: #fff;
  padding: 8px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 35px;
  font-size: 14px;
}

.fade-marquee {
  position: relative;
}

.fade-announcement {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 1s;
  white-space: nowrap;
}

.fade-announcement a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.logo {
  width: 120px;
}

.link {
  margin-bottom: 10px;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 22px;
}

.navlinks > a {
  font-size: 14px;
  opacity: 0.88;
  text-decoration: none;
  color: inherit;
}

.navlinks a:hover {
  opacity: 1;
}

.dropdownWrapper {
  position: relative;
}

/* Invisible hover bridge */
.dropdownWrapper::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 100%;
  height: 14px;
}

.drop {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Menu container */
.dropdownMenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #fff;
  color: #000;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 10px 0;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.16s ease;
  z-index: 99;
}

/* Show on hover */
.dropdownWrapper:hover .dropdownMenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Dropdown items with icons */
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  font-size: 13px;
  opacity: 0.85;
  user-select: text;
  transition: all 0.15s ease;
}

.dropdown-item i {
  font-size: 18px;
  color: #4a8dff;
  width: 20px;
}

.dropdown-item:hover {
  opacity: 1;
  background: rgba(74, 141, 255, 0.06);
}

.dropdown-item span {
  flex: 1;
}

/* Mega Menu */
.megaWrapper {
  position: relative;
}

/* Invisible hover bridge */
.megaWrapper::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  height: 20px;
}

/* Mega menu container */
.megaMenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  background: #fff;
  color: #000;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 28px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.18s ease;
  z-index: 99;
}

/* Show on hover */
.megaWrapper:hover .megaMenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mega-icon i {
  font-size: 24px;
}

.megaItem {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 12px;
  transition: 0.15s ease;
  cursor: pointer;
}

.megaItem:hover {
  background: var(--soft);
}

.megaItem i {
  font-size: 20px;
  color: #4a8dff;
  flex-shrink: 0;
  margin-top: 2px;
}

.megaItem h5 {
  font-size: 16.5px;
  margin: 0 0 2px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.megaItem p {
  font-size: 12.5px;
  margin: 0;
  opacity: 0.75;
  line-height: 1.45;
}

.megaCol h4 {
  font-size: 15px;
  margin-bottom: 44px;
  letter-spacing: -0.01em;
  border-bottom: 2px solid #4a8dff;
  padding-bottom: 5px;
}

/* Grid */
.megaGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}


/* Column text selectable */
.megaCol p,
.megaCol h4 {
  user-select: text;
}

.megaCol h4  {
  font-size: 1.2rem;
}


/* Hover text */
.megaCol p {
  font-size: 13px;
  opacity: 0.75;
  margin-bottom: 8px;
  line-height: 1.5;
  cursor: pointer;
}

.megaCol p:hover {
  opacity: 1;
}

/* Mobile Styles */
.mobileToggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
  padding: 8px 10px;
  font-weight: 800;
  cursor: pointer;
  width: 42px;
  height: 42px;
  position: relative;
}

.hamburger-icon,
.close-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.close-icon {
  opacity: 0;
}

.mobileToggle.active .hamburger-icon {
  opacity: 0;
}

.mobileToggle.active .close-icon {
  opacity: 1;
}

.mobileMenu {
  display: none;
  border-top: 1px solid var(--border);
  max-height: 80vh;
  overflow-y: auto;
}

.mobileMenu.show {
  display: block;
}

.mobileMenu a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}

/* Mobile Dropdown Styles */
.mobile-dropdownWrapper {
  border-bottom: 1px solid var(--border);
}

.mobile-dropdownHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  cursor: pointer;
}

.mobile-dropdownHeader a {
  border-bottom: none;
  padding: 0;
  flex: 1;
}

.mobile-dropdownHeader i {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.mobile-dropdownHeader.active i {
  transform: rotate(180deg);
}

.mobile-dropdownMenu {
  display: none;
  padding-left: 16px;
  background: rgba(0, 0, 0, 0.02);
}

.mobile-dropdownMenu.show {
  display: block;
}

.mobile-dropdownMenu a {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 14px;
}

.mobile-dropdownMenu a:last-child {
  border-bottom: none;
}

/* Mobile items with icons */
.mobile-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0 !important;
}

.mobile-item i {
  font-size: 18px;
  color: #4a8dff;
  width: 24px;
}

.mobile-item span {
  flex: 1;
}

.mobile-megaCol {
  margin-bottom: 20px;
}

.mobile-megaCol h4 {
  font-size: 14px;
  margin: 16px 0 12px;
  color: #4a8dff;
  font-weight: 700;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(74, 141, 255, 0.2);
}

.mobile-megaCol a {
  padding: 8px 0;
  font-size: 13px;
  border-bottom: none;
}

/* Responsive */
@media (max-width: 980px) {
  .megaMenu {
    width: 100%;
    left: 0;
    transform: none;
  }

  .megaGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .navlinks {
    display: none;
  }

  .mobileToggle {
    display: block;
  }

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

/* .cta {
  display: flex;
  align-items: center;
  gap: 10px;
} */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 14px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow2);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btnPrimary {
  border: 0;
  color: #fff;
  background: var(--accent);
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(2, 6, 23, 0.1);
}
.btn:active {
  transform: translateY(0px);
}

.btn-primary {
  border: 0;
  color: #fff;
  background: #1E40AF;
  margin-top: 50px;
  border-radius: 5px;
  font-weight: 600;
}

.btn-cta {
  background-color: #3b82f6;
  color: #fff !important;
}

.btn-cta:hover {
  background-color: #2563EB;
}

/* Hero */
.hero {
  padding: 64px 0 28px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 950;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--accent);
}

/* Brochure-style hero */
.heroBrochure {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 22px;
  margin-top: 18px;
  align-items: center;
}
.heroTitleStack {
  font-size: 52px;
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin: 10px 0 10px;
}
.heroTitleStack .line1 {
  display: block;
  color: var(--accent);
  font-weight: 950;
}
.heroTitleStack .line2 {
  display: block;
  font-weight: 980;
  color: var(--text);
}
.heroSub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 700;
  margin: 0;
  max-width: 70ch;
}
.heroActions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.heroArt {
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  padding: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.heroArt img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

/* Trust strip */
.trustStrip {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.92);
  color: var(--muted);
  font-weight: 900;
  font-size: 12px;
}
.badge i {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--accent);
  display: inline-block;
}

/* Sections */
.section {
  padding: 34px 0;
}
.sectionTop {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.h2 {
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: -0.03em;
}
.muted {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 650;
}
.right {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.chip {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.9);
  color: var(--muted);
  font-weight: 900;
  font-size: 12px;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--r22);
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.pad {
  padding: 22px;
}
.item {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  padding: 16px;
  background: var(--accentSoft);
}
.item:nth-child(2n) {
  background: var(--accentSoft2);
}
.item b {
  display: block;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.item span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted2);
  font-weight: 750;
  line-height: 1.45;
}

.note {
  margin-top: 12px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  padding: 14px;
  background: rgba(248, 250, 252, 0.92);
  color: var(--muted);
  font-weight: 750;
  line-height: 1.65;
}
.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.9;
}

.ctaBar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.96);
}
.ctaBar b {
  font-size: 16px;
}
.ctaBar span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.5;
}

/* Cards with icons */
.cards3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.featureCard {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow2);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.featureCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.1);
}
.iconRow {
  display: flex;
  align-items: center;
  gap: 12px;
}
.iconRow img {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #fff;
  padding: 6px;
}
.featureCard h3 {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.featureCard p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.6;
  font-size: 13px;
}
.featureCard a {
  margin-top: 4px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.featureCard a:after {
  content: "→";
  font-weight: 900;
}

/* ===============================
   FOOTER
=================================*/

.footer {
  background: #ffffff;
  border-top: 1px solid #e6e9f0;
  padding: 60px 0 0;
  font-family: inherit;
}

.footerTop {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.4fr;
  gap: 40px;
  align-items: start;
}

.footerCol h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  color: #6b7280;
}

.footerCol a {
  display: block;
  font-size: 14px;
  color: #111827;
  padding: 6px 0;
  text-decoration: none;
  transition: 0.2s ease;
}

.footerCol a:hover {
  opacity: 0.6;
}

/* Subscribe Card */
.footerSubscribe {
  background: #f5f7fb;
  padding: 28px;
  border-radius: 16px;
}

.footerSubscribe h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.footerSubscribe p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 18px;
}

.subscribeForm {
  display: flex;
  gap: 10px;
}

.subscribeForm input {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
}

.subscribeForm button {
  padding: 12px 18px;
  border-radius: 8px;
  border: none;
  background: #111827;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.subscribeForm button:hover {
  opacity: 0.85;
}

/* Divider */
.footerDivider {
  margin: 50px 0 30px;
  border-top: 1px solid #e6e9f0;
}

/* Badges */
.footerBadges {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
}

.footerBadges img {
  height: 60px;
  object-fit: contain;
  opacity: 0.9;
}

/* Bottom Bar */
.footerBottom {
  background: #053BEE;
  padding: 18px 80px;
  border-top: 1px solid #e6e9f0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #fff;
}

.bottomLinks {
  display: flex;
  gap: 20px;
}

.bottomLinks a {
  text-decoration: none;
  color: inherit;
}

.bottomLinks a:hover {
  opacity: 0.6;
}

/* ===============================
   RESPONSIVE
=================================*/

@media (max-width: 1100px) {
  .footerTop {
    grid-template-columns: repeat(2, 1fr);
  }

  .footerSubscribe {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {

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

  .footerSubscribe {
    grid-column: span 2;
  }

  .subscribeForm {
    flex-direction: column;
  }

  .footerBottom {
    padding: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .bottomLinks {
    justify-content: center;
  }

  .footerBadges img {
    height: 45px;
  }
}
.small {
  font-size: 12px;
  font-weight: 750;
  color: var(--muted2);
}

/* Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
[data-reveal] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  will-change: opacity, transform;
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}
/* .header.scrolled {
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
} */

@media (max-width: 980px) {
  /* .nav {
    display: none;
  } */
  .heroBrochure {
    grid-template-columns: 1fr;
  }
  .heroTitleStack {
    font-size: 40px;
  }
  .grid3 {
    grid-template-columns: 1fr;
  }
  .grid2 {
    grid-template-columns: 1fr;
  }
  .cards3 {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Diagnostics theme tokens
   ========================= */
body.diagnostics,
body.networks,
body.labs,
body.hospitals {
  --accent: #1e40af;
  --accentSoft: #f1f5ff;
  --accentSoft2: #e6ecff;
}
body.startups {
  --accent: #0ea5a5;
  --accentSoft: #ecfeff;
  --accentSoft2: #ccfbf1;
}

/* ===== Unique section modules ===== */
.metricStrip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.metric {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow2);
  padding: 14px;
}
.metric b {
  display: block;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.metric span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 750;
  font-size: 12px;
  line-height: 1.45;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.panel {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  padding: 22px;
}
.panel h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 720;
  line-height: 1.65;
}
.panel .k {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.new-timeline{
  display: flex;
  align-items: center;
justify-content: space-between;
}

.inner-timeline{
  width: 50%;
}

.new-imageFrame{
  width: 50%;
}

@media (max-width:768px) {
  .new-timeline{
   flex-direction: column;
  }
  
  .inner-timeline{
    width: 100%;
  }
  
  .new-imageFrame{
    width: 100%;
  }
}

.timeline {
  position: relative;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  padding: 20px;
}
.stepRow {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 14px 6px;
}
.stepDot {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: var(--accentSoft2);
  border: 1px solid rgba(226, 232, 240, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  color: var(--accent);
}
.stepRow b {
  display: block;
  font-size: 14px;
}
.stepRow span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 720;
  line-height: 1.55;
  font-size: 12px;
}

.quote {
  border-radius: 22px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(248, 250, 252, 0.92)
  );
  box-shadow: var(--shadow2);
  padding: 20px;
}
.quote p {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.7;
  color: var(--text);
}
.quote span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 750;
  font-size: 12px;
}

.compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--shadow2);
}
.compare th,
.compare td {
  padding: 14px 14px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  background: rgba(255, 255, 255, 0.96);
  font-weight: 750;
  font-size: 13px;
  text-align: left;
}
.compare th {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.compare tr:last-child td {
  border-bottom: none;
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--accentSoft2);
  color: var(--accent);
  font-weight: 950;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.accordion {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow2);
  overflow: hidden;
}
.accItem {
  border-top: 1px solid rgba(226, 232, 240, 0.85);
}
.accItem:first-child {
  border-top: none;
}
.accBtn {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-weight: 900;
  color: var(--text);
}
.accBtn span {
  color: var(--muted);
  font-weight: 750;
  font-size: 12px;
}
.accBody {
  display: none;
  padding: 0 18px 16px;
  color: var(--muted);
  font-weight: 720;
  line-height: 1.65;
  font-size: 13px;
}
.accItem.open .accBody {
  display: block;
}
.accChevron {
  width: 28px;
  height: 28px;
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(248, 250, 252, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 980px) {
  .metricStrip {
    grid-template-columns: 1fr 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
}

/* ===== Extra unique layouts ===== */
.pillsRow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.pill {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.92);
  color: var(--muted);
  font-weight: 900;
  font-size: 12px;
}
.spotlight {
  border-radius: 26px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98),
    rgba(248, 250, 252, 0.92)
  );
  box-shadow: var(--shadow);
  padding: 22px;
}
.spotlight h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.spotlight p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.7;
}

.matrix {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--shadow2);
}
.matrix th,
.matrix td {
  padding: 12px 12px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  background: rgba(255, 255, 255, 0.96);
  font-weight: 750;
  font-size: 13px;
  text-align: left;
  vertical-align: top;
}
.matrix th {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(248, 250, 252, 0.92);
}
.matrix tr:last-child td {
  border-bottom: none;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--accentSoft);
  border: 1px solid rgba(226, 232, 240, 0.9);
  color: var(--text);
  font-weight: 900;
  font-size: 12px;
}
.tag i {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--accent);
  display: inline-block;
}

.riskGrid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}
@media (max-width: 980px) {
  .riskGrid {
    grid-template-columns: 1fr;
  }
}


.governanceSplit {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: center;
  }
  
  .governanceContent {
  padding-right: 10px;
  }
  
  .governanceList {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  }
  
  .govItem {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--r18);
  padding: 14px;
  box-shadow: var(--shadow2);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
  }
  
  .govItem:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  }
  
  .govItem b {
  display: block;
  font-size: 14px;
  letter-spacing: -0.01em;
  }
  
  .govItem span {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
  }
  
  .governanceArt {
  padding: 14px;
  border-radius: 24px;
  }
  
  .governanceArt img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  }
  
  /* Responsive */
  
  @media (max-width: 980px) {
  
  .governanceSplit {
  grid-template-columns: 1fr;
  }
  
  .governanceContent {
  padding-right: 0;
  }
  
  .governanceList {
  grid-template-columns: 1fr;
  }
  
  }


  .longitudinalGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 18px;
    }
    
    .longCard {
    border-radius: var(--r22);
    }
    
    .longTitle {
    margin: 0 0 12px;
    font-size: 18px;
    letter-spacing: -0.02em;
    }
    
    .longList {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    }
    
    .longItem {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
    background: var(--surface2);
    transition: transform 0.16s ease, box-shadow 0.16s ease;
    }
    
    .longItem:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow2);
    }
    
    .longItem b {
    display: block;
    font-size: 14px;
    letter-spacing: -0.01em;
    }
    
    .longItem span {
    display: block;
    margin-top: 6px;
    font-size: 12.5px;
    color: var(--muted);
    font-weight: 700;
    line-height: 1.5;
    }
    
    .longNote {
      text-align: center;
    border: 1px solid var(--border);
    background-color: #f8fafc;
    border-radius: 18px;
    padding: 32px 16px;
    font-weight: 800;
    color: var(--text);
    box-shadow: var(--shadow2);
    }
    
    /* Responsive */
    
    @media (max-width: 980px) {
    
    .longitudinalGrid {
    grid-template-columns: 1fr;
    }
    
    }

      
      .imageFrame {
      width: 100%;
      border-radius: 26px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--surface);
      box-shadow: var(--shadow);
      }
      
      .imageFrame img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      }
      
      /* Optional max height control */
      
      .imageFrame.large img {
      max-height: 520px;
      }
      
      /* Responsive spacing */
      
      @media (max-width: 980px) {
      
      .imageShowcase {
     display: none;
      }
      
      
      }


      .heroPoints {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 14px;
        }
        
        .heroPoints .point {
        font-size: 12.5px;
        padding: 7px 10px;
        border-radius: 999px;
        background: var(--surface2);
        border: 1px solid var(--border);
        font-weight: 700;
        white-space: nowrap;
        }