@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&family=Crimson+Pro:wght@600;700&display=swap');

:root {
  --navy: #11172a;
  --navy2: #1a2038;
  --ink: #1a2236;
  --muted: #67728a;
  --surface: #ffffff;
  --soft: #f5f7fb;
  --line: #e3e8f1;
  --cyan: #00d4ff;
  --blue: #6366f1;
  --violet: #8b5cf6;
  --gold: #f59e0b;
  --green: #10b981;
  --shadow: 0 18px 45px rgba(17, 23, 42, 0.1);
  --shadow-sm: 0 8px 24px rgba(17, 23, 42, 0.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Instrument Sans', Arial, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.55;
}

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17, 23, 42, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navInner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  display: block;
  width: 190px;
  height: auto;
}

.navLinks {
  display: flex;
  gap: 8px;
  align-items: center;
}

.navLinks a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
}

.navLinks a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.navLinks .navCta {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  padding-inline: 16px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.22), transparent 32%),
    radial-gradient(circle at 80% 15%, rgba(0, 212, 255, 0.14), transparent 28%),
    linear-gradient(180deg, var(--navy), #171d33);
  color: white;
  padding: 88px 0 76px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.eyebrow {
  color: #a5b4fc;
}

.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.12);
}

.hero h1 {
  margin: 18px 0 0;
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: clamp(46px, 7vw, 78px);
  line-height: 0.98;
  max-width: 880px;
  letter-spacing: -0.03em;
}

.hero h1 span {
  background: linear-gradient(90deg, #b7c0ff, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.heroCopy {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  margin: 24px 0 32px;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: 0.2s transform, 0.2s box-shadow;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: white;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.28);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: white;
}

.btn.pale {
  background: #eef2ff;
  color: #4f46e5;
}

.heroProof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 58px;
  max-width: 920px;
}

.heroProof > div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.heroProof strong,
.heroProof span {
  display: block;
}

.heroProof strong {
  font-size: 16px;
  color: white;
}

.heroProof span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

section {
  padding: 82px 0;
}

.sectionHead {
  max-width: 760px;
  margin-bottom: 34px;
}

.sectionHead.compact {
  margin-bottom: 28px;
}

.sectionHead h2,
.ctaBox h2,
.careerBox h2 {
  font-family: 'Crimson Pro', Georgia, serif;
}

.sectionHead h2 {
  font-size: 44px;
  line-height: 1.05;
  margin: 8px 0 12px;
}

.sectionHead p {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
}

.solutionsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.solutionCard {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

.solutionCard::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.solutionCard.health::before {
  background: linear-gradient(90deg, #0ea5e9, var(--green));
}

.solutionCard.biasguard::before {
  background: linear-gradient(90deg, var(--violet), #ec4899);
}

.solutionBrand {
  min-height: 70px;
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.healthLogo {
  width: min(260px, 100%);
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.productMark {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: white;
  font-family: 'Crimson Pro', serif;
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(145deg, var(--cyan), #1686c7);
  box-shadow: 0 7px 18px rgba(0, 153, 204, 0.18);
}

.productMark.biasguard {
  background: linear-gradient(145deg, #8b5cf6, #ec4899);
}

.solutionEyebrow {
  font-size: 11px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 800;
  margin-bottom: 8px;
}

.solutionCard h3 {
  font-size: 23px;
  margin: 0 0 10px;
}

.solutionCard p,
.whyCard p,
.careerBox p,
.ctaBox p {
  color: var(--muted);
}

.ticks {
  display: grid;
  gap: 10px;
  margin: 8px 0 24px;
}

.tick {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 14px;
  color: #46516a;
}

.tick::before {
  content: '✓';
  font-weight: 800;
  color: var(--green);
}

.learn {
  margin-top: auto;
  text-decoration: none;
  color: var(--blue);
  font-weight: 800;
  font-size: 14px;
}

.intelligence {
  background: #eef2f8;
}

.intelGrid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.liveCard,
.whyCard {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.liveHead {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: white;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.liveHead strong {
  font-size: 17px;
}

.liveHead span {
  font-size: 11px;
  background: rgba(16, 185, 129, 0.15);
  color: #6ee7b7;
  padding: 6px 10px;
  border-radius: 99px;
}

.newsList {
  padding: 6px 22px;
}

.newsItem {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.newsItem:last-child {
  border-bottom: 0;
}

.newsMeta {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 5px;
}

.tag {
  padding: 3px 7px;
  border-radius: 5px;
  background: #eef2ff;
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
}

.newsItem > a {
  text-decoration: none;
  font-weight: 700;
  color: var(--ink);
}

.newsItem p {
  font-size: 13px;
  color: var(--muted);
  margin: 5px 0 0;
}

.whyCard {
  padding: 28px;
}

.whyCard h3 {
  font-family: 'Crimson Pro', serif;
  font-size: 31px;
  margin: 0 0 10px;
}

.metric {
  display: flex;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.metric strong {
  min-width: 92px;
  color: var(--blue);
}

.metric span {
  font-size: 14px;
  color: #556078;
}

.audienceGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.audience {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}

.audience b,
.audience span {
  display: block;
}

.audience b {
  margin-bottom: 5px;
}

.audience span {
  font-size: 13px;
  color: var(--muted);
}

.careerBox {
  background: linear-gradient(135deg, #11172a, #1f2643);
  color: white;
  border-radius: 30px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 30px;
  align-items: center;
}

.careerBox .light {
  color: #a5b4fc;
}

.careerBox h2 {
  font-size: 38px;
  margin: 8px 0 8px;
}

.careerBox p {
  color: rgba(255, 255, 255, 0.67);
  margin-bottom: 0;
}

.ctaSection {
  padding-top: 28px;
}

.ctaBox {
  background: white;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow);
}

.ctaBox h2 {
  font-size: 44px;
  margin: 8px 0 0;
}

.ctaBox p {
  font-size: 18px;
  max-width: 700px;
  margin: 12px auto 24px;
}

.centered {
  justify-content: center;
}

footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  padding: 36px 0;
  margin-top: 78px;
}

.footerInner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footerLogo {
  width: 205px;
  height: auto;
}

.footerTag {
  font-size: 12px;
  margin-top: 8px;
}

.footerLinks {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footerLinks a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 13px;
}

@media (max-width: 920px) {
  .navLinks a:not(.navCta) {
    display: none;
  }

  .solutionsGrid,
  .audienceGrid {
    grid-template-columns: 1fr 1fr;
  }

  .intelGrid,
  .careerBox {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .brand img {
    width: 160px;
  }

  .navCta {
    font-size: 12px !important;
    padding: 9px 10px !important;
  }

  .solutionsGrid,
  .audienceGrid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 60px 0;
  }

  .hero {
    padding: 68px 0 56px;
  }

  .heroCopy {
    font-size: 17px;
  }

  .sectionHead h2,
  .ctaBox h2 {
    font-size: 36px;
  }

  .careerBox,
  .ctaBox {
    padding: 28px;
  }

  .footerInner {
    flex-direction: column;
    align-items: flex-start;
  }
}


.solutionBrand img:not(.healthLogo) {
  width: min(285px, 100%);
  height: auto;
  object-fit: contain;
  object-position: left center;
}


.newsVisualWrap {
  padding: 18px;
}

.dashboardPreview {
  display: block;
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #0f1730;
}

.newsVisualCta {
  margin-top: 14px;
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f7f9ff, #eef3ff);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.newsVisualCta strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
}

.newsVisualCta p {
  margin: 5px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.solutionBrand img {
  max-height: 86px;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 640px) {
  .newsVisualCta {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* v4: animated Compliance Console */
.complianceConsole {
  display: block;
  width: min(100%, 610px);
  height: auto;
  margin: 0 auto;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 40%, rgba(0, 212, 255, 0.10), transparent 58%),
    linear-gradient(145deg, #0b1530, #111b38);
  border: 1px solid rgba(99, 102, 241, 0.18);
  box-shadow: inset 0 0 34px rgba(0, 212, 255, 0.05);
}

.newsVisualWrap {
  padding: 20px;
}

.newsVisualCta {
  margin-top: 12px;
}

/* v4: filing services bridge */
.filingServices {
  padding-top: 36px;
  padding-bottom: 36px;
  background: #eef2f8;
}

.filingBox {
  border-radius: 26px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 10%, rgba(99, 102, 241, 0.10), transparent 28%),
    linear-gradient(135deg, #ffffff, #f8f9ff);
  box-shadow: var(--shadow-sm);
  padding: 34px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 28px;
  align-items: center;
}

.filingBox h2 {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 34px;
  margin: 6px 0 8px;
}

.filingBox p {
  color: var(--muted);
  margin: 0;
  max-width: 720px;
}

.filingChips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.filingChips span {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: #eef2ff;
  color: #4f46e5;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid #dde3ff;
}

.solutionCard.biasguard .solutionBrand img {
  width: min(250px, 100%);
  max-height: 92px;
  object-fit: contain;
  object-position: left center;
}

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


/* v5 finishing touches */
.solutionCard.health .solutionBrand {
  align-items: center;
}

.solutionCard.health .healthLogo {
  transform: translateY(8px);
}

.solutionActions {
  margin-top: auto;
  display: grid;
  gap: 8px;
}

.solutionActions .learn,
.solutionActions .demoLink {
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}

.solutionActions .learn {
  color: var(--blue);
}

.solutionActions .demoLink {
  color: #0f766e;
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.solutionActions .demoLink:hover {
  text-decoration: underline;
}
