/* Snowbird Analytics LLC - SCE / AI Clinical Analytics redesign */

:root {
  --ink: #08111f;
  --navy: #0d1b2e;
  --blue: #2457d6;
  --cyan: #18b8c8;
  --teal: #008f8a;
  --green: #2fbf71;
  --amber: #d89b28;
  --paper: #f6f8fb;
  --panel: #ffffff;
  --mist: #dbe4ef;
  --line: #ccd8e6;
  --text: #172238;
  --muted: #5e6b7f;
  --soft: #eff5f8;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(9, 18, 34, 0.12);
  --shadow-sm: 0 8px 24px rgba(9, 18, 34, 0.08);
  --radius: 8px;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  color: var(--teal);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.55rem, 6vw, 5.8rem);
  max-width: 980px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

p {
  margin: 0;
  color: var(--muted);
}

ul {
  margin: 0;
  padding: 0;
}

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

.section {
  padding: 92px 0;
}

.section-tight {
  padding: 68px 0;
}

.section-soft {
  background: var(--paper);
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(8,17,31,.98), rgba(13,32,55,.96)),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255,255,255,.05) 43px);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-dark p {
  color: rgba(255,255,255,.72);
}

.section-dark .check-list li {
  color: rgba(255,255,255,.76);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: currentColor;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  margin-top: 16px;
  font-size: 1.08rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .72rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

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

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(36,87,214,.24);
}

.btn-primary:hover {
  background: #1f4cbd;
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.btn-secondary:hover {
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-dark:hover {
  background: #172238;
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.34);
}

.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.08);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,17,31,.94);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}

.nav-inner {
  width: min(1180px, calc(100% - 40px));
  height: 84px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 64px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: .55rem .8rem;
  border-radius: 6px;
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.nav-links .nav-cta a {
  margin-left: 6px;
  background: var(--cyan);
  color: #06121d;
}

.nav-links .nav-cta a:hover {
  background: #60d9df;
  color: #06121d;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 7px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8,17,31,.97) 0%, rgba(8,17,31,.9) 42%, rgba(8,17,31,.38) 70%, rgba(8,17,31,.16) 100%),
    url("clinical-ai-sce-hero.png") center right / cover no-repeat,
    var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(0deg, var(--white), transparent);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, .72fr);
  gap: 54px;
  align-items: center;
  padding: 88px 0 128px;
}

.hero-copy {
  max-width: 760px;
  animation: heroRise .85s ease both;
}

.hero h1 {
  max-width: 740px;
  color: rgba(255,255,255,.94);
  font-size: clamp(3.2rem, 6.4vw, 5.9rem);
  font-weight: 850;
  line-height: 1.01;
  text-wrap: balance;
  text-shadow: 0 18px 55px rgba(0,0,0,.36);
}

.hero h1 span {
  display: inline;
  color: transparent;
  background: linear-gradient(95deg, #ffffff 0%, #9df4f2 46%, #87b8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255,255,255,.72);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.75;
  text-shadow: 0 10px 28px rgba(0,0,0,.34);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 40px;
  max-width: 720px;
  animation: heroRise .85s .18s ease both;
}

.proof-item {
  position: relative;
  overflow: hidden;
  padding: 14px 15px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.055));
  backdrop-filter: blur(14px);
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.proof-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(124,228,230,.14) 48%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .7s ease;
}

.proof-item:hover {
  transform: translateY(-5px);
  border-color: rgba(124,228,230,.45);
  background: linear-gradient(180deg, rgba(255,255,255,.15), rgba(255,255,255,.075));
  box-shadow: 0 18px 50px rgba(0,0,0,.2);
}

.proof-item:hover::before {
  transform: translateX(120%);
}

.proof-item strong {
  position: relative;
  display: block;
  color: var(--white);
  font-size: 1rem;
}

.proof-item span {
  position: relative;
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.62);
  font-size: .78rem;
  line-height: 1.35;
}

.sce-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(8,17,31,.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  animation: panelFloatIn .9s .12s ease both, panelDrift 8s 1.2s ease-in-out infinite;
}

.sce-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 0%, rgba(124,228,230,.16), transparent 30%),
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,.08) 45%, transparent 62%);
  transform: translateX(-40%);
  opacity: .7;
  animation: panelSheen 6s ease-in-out infinite;
}

.sce-panel-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.sce-panel-header strong {
  color: var(--white);
  font-size: .88rem;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #83f0b6;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.status-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #3ee68b;
  box-shadow: 0 0 0 5px rgba(62,230,139,.12);
}

.pipeline {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 16px;
}

.pipeline-row {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 7px;
  background: rgba(255,255,255,.06);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.pipeline-row:hover {
  transform: translateX(5px);
  border-color: rgba(124,228,230,.34);
  background: rgba(255,255,255,.09);
}

.pipeline-row:nth-child(1) { animation: rowIn .5s .25s ease both; }
.pipeline-row:nth-child(2) { animation: rowIn .5s .34s ease both; }
.pipeline-row:nth-child(3) { animation: rowIn .5s .43s ease both; }
.pipeline-row:nth-child(4) { animation: rowIn .5s .52s ease both; }
.pipeline-row:nth-child(5) { animation: rowIn .5s .61s ease both; }

.pipeline-row .tag {
  color: #7ce4e6;
  font-size: .72rem;
  font-weight: 900;
}

.pipeline-row strong {
  color: var(--white);
  font-size: .9rem;
}

.pipeline-row span:last-child {
  color: rgba(255,255,255,.56);
  font-size: .75rem;
  font-weight: 700;
}

.tech-strip {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 18px;
}

.tech-strip .chip {
  transition: transform .2s ease, background .2s ease;
}

.tech-strip .chip:hover {
  transform: translateY(-3px);
  background: rgba(124,228,230,.22);
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: .25rem .62rem;
  border-radius: 99px;
  background: var(--soft);
  color: #31425d;
  font-size: .78rem;
  font-weight: 800;
}

.section-dark .chip,
.hero .chip {
  background: rgba(124,228,230,.13);
  color: #c9fbfb;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 20px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature,
.service,
.step,
.bio-card,
.contact-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}

.feature,
.service,
.step,
.contact-card {
  padding: 24px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.feature:hover,
.service:hover,
.step:hover,
.contact-card:hover,
.compare-panel:hover,
.workflow-step:hover {
  transform: translateY(-5px);
  border-color: rgba(24,184,200,.38);
  box-shadow: 0 20px 56px rgba(9, 18, 34, 0.13);
}

.feature h3,
.service h3,
.step h3,
.contact-card h3 {
  margin-bottom: 10px;
}

.feature p,
.service p,
.step p,
.contact-card p {
  font-size: .96rem;
}

.icon-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: #e6f8f9;
  color: var(--teal);
  font-weight: 900;
}

.service {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 900;
}

.text-link::after {
  content: " ->";
}

.product-hero {
  position: relative;
  overflow: hidden;
}

.product-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 18%, rgba(24,184,200,.2), transparent 28%),
    radial-gradient(circle at 20% 90%, rgba(36,87,214,.18), transparent 30%);
}

.product-hero .container {
  position: relative;
  z-index: 1;
}

.product-cards {
  align-items: stretch;
}

.product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(24,184,200,.12), transparent 34%);
  opacity: .75;
  pointer-events: none;
}

.product-card > * {
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(24,184,200,.38);
  box-shadow: 0 24px 64px rgba(9, 18, 34, .14);
}

.product-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.product-card .btn {
  width: fit-content;
  margin-top: auto;
}

.solution-map {
  display: grid;
  gap: 14px;
}

.map-node,
.artifact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.map-node {
  padding: 20px;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.map-node:hover {
  transform: translateX(6px);
  border-color: rgba(24,184,200,.38);
  box-shadow: 0 18px 48px rgba(9,18,34,.1);
}

.map-node span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.map-node strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.08rem;
}

.artifact-panel {
  overflow: hidden;
}

.artifact-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease, transform .2s ease;
}

.artifact-row:last-child {
  border-bottom: 0;
}

.artifact-row:hover {
  background: #f2fbfb;
  transform: translateX(4px);
}

.artifact-row span {
  color: var(--teal);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.artifact-row strong {
  color: var(--ink);
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.compare-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.compare-panel.highlight {
  border-color: rgba(0,143,138,.38);
  background: linear-gradient(180deg, #f2fbfb, var(--white));
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--green);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.workflow-step {
  position: relative;
  overflow: hidden;
  padding: 18px;
  min-height: 150px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.workflow-step::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  transform: scaleX(.35);
  transform-origin: left;
  opacity: .65;
  transition: transform .24s ease;
}

.workflow-step:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(124,228,230,.38);
}

.workflow-step:hover::after {
  transform: scaleX(1);
}

.workflow-step span {
  color: #7ce4e6;
  font-size: .75rem;
  font-weight: 900;
}

.workflow-step h3 {
  margin: 12px 0 8px;
  font-size: 1.08rem;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panelFloatIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes panelDrift {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes panelSheen {
  0%, 42% {
    transform: translateX(-70%);
    opacity: 0;
  }
  55% {
    opacity: .65;
  }
  100% {
    transform: translateX(75%);
    opacity: 0;
  }
}

@keyframes rowIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.page-hero {
  padding: 74px 0 76px;
  background:
    linear-gradient(135deg, rgba(8,17,31,.98), rgba(15,45,70,.94)),
    var(--ink);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.35rem, 5vw, 4.6rem);
}

.page-hero p {
  max-width: 760px;
  margin-top: 16px;
  color: rgba(255,255,255,.74);
  font-size: 1.12rem;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.split h2 + p {
  margin-top: 28px;
  max-width: 760px;
}

.split > div:first-child h2 {
  text-wrap: balance;
}

.bio-card {
  padding: 26px;
}

.bio-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 7px;
  margin-bottom: 18px;
}

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

.quote-band {
  padding: 36px;
  border-left: 5px solid var(--teal);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.quote-band p {
  font-size: 1.18rem;
  color: var(--text);
}

.contact-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.contact-card.dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.contact-card.dark h3 {
  color: var(--white);
}

.contact-card.dark p,
.contact-card.dark li {
  color: rgba(255,255,255,.7);
}

.contact-detail {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-detail a {
  color: #8cecef;
  overflow-wrap: anywhere;
}

form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: .78rem .88rem;
  color: var(--text);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(24,184,200,.16);
  border-color: var(--cyan);
}

.form-note {
  color: var(--muted);
  font-size: .86rem;
}

.form-feedback {
  display: none;
  padding: 14px;
  border: 1px solid rgba(47,191,113,.35);
  border-radius: 7px;
  background: #edf9f2;
  color: #17633c;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 20px 22px;
}

.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.cta {
  padding: 74px 0;
  background:
    linear-gradient(135deg, rgba(8,17,31,.98), rgba(11,52,72,.95)),
    var(--ink);
  text-align: center;
}

.cta h2 {
  max-width: 820px;
  margin-inline: auto;
  color: var(--white);
}

.cta p {
  max-width: 650px;
  margin: 16px auto 28px;
  color: rgba(255,255,255,.72);
}

.footer {
  padding: 52px 0 28px;
  background: #06101d;
  color: rgba(255,255,255,.64);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 34px;
}

.footer h3,
.footer h4 {
  color: var(--white);
}

.footer h4 {
  margin-bottom: 12px;
  font-size: .88rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer p,
.footer li {
  color: rgba(255,255,255,.62);
  font-size: .92rem;
}

.footer ul {
  display: grid;
  gap: 7px;
  list-style: none;
}

.footer a {
  color: rgba(255,255,255,.72);
}

.footer a:hover {
  color: #8cecef;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .82rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .contact-layout,
  .compare {
    grid-template-columns: 1fr;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(8,17,31,.98), rgba(8,17,31,.82)),
      url("clinical-ai-sce-hero.png") center right / cover no-repeat,
      var(--ink);
  }

  .grid-3,
  .grid-4,
  .workflow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container,
  .nav-inner {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 64px 0;
  }

  .nav-inner {
    height: 74px;
  }

  .nav-logo img {
    height: 54px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    inset: 74px 0 auto;
    padding: 14px;
    background: rgba(8,17,31,.98);
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    width: 100%;
  }

  .nav-links .nav-cta a {
    margin-left: 0;
  }

  .hero-grid {
    padding: 58px 0 90px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 15vw, 4.3rem);
  }

  .sce-panel {
    display: none;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .workflow,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pipeline-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
