:root {
  --bg: #f8fafc;
  --white: #ffffff;
  --s1: #f1f5f9;
  --s2: #e2e8f0;
  --border: rgba(0, 0, 0, 0.08);
  --txt: #0f172a;
  --txt2: #475569;
  --muted: #64748b;
  --teal: #0ea5e9;
  --pharma: #14b8c8;
  --green: #22c98a;
  --blue: #6c72f0;
  --violet: #a855f7;
  --amber: #f0a500;
  --red: #f04054;
  --shadow: 0 1px 6px rgba(0, 0, 0, 0.14), 0 1px 3px rgba(0, 0, 0, 0.10);
  --shadow2: 0 10px 30px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--txt);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.header-content {
  max-width: 1180px;
}


.hero {
  background:
    radial-gradient(circle at 18% 10%, rgba(14, 165, 233, 0.18), transparent 34%),
    radial-gradient(circle at 82% 20%, rgba(20, 184, 200, 0.16), transparent 28%),
    linear-gradient(135deg, #eef9ff 0%, #ffffff 64%);
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  margin: 0 auto;
  max-width: 1180px;
  padding: 72px 28px 64px;
}

.eyebrow {
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -1.4px;
  line-height: 1.02;
  margin-bottom: 20px;
}

.lead {
  color: var(--txt2);
  font-size: 17px;
  max-width: 720px;
}

.hero-card {
  align-self: stretch;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow2);
  padding: 28px;
}

.hero-card h2 {
  font-size: 18px;
  margin-bottom: 18px;
}

.metric {
  border-top: 1px solid var(--border);
  padding: 14px 0;
}

.metric:first-of-type {
  border-top: 0;
}

.metric strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
}

.metric span {
  color: var(--muted);
  font-size: 12px;
}

.section {
  margin: 0 auto;
  max-width: 1180px;
  padding: 64px 28px 0;
}

.section h2 {
  font-size: 30px;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
}

.section-intro {
  color: var(--txt2);
  margin-bottom: 28px;
  max-width: 720px;
}

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

.panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.panel h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.panel p,
.panel li {
  color: var(--txt2);
  font-size: 13px;
}

.panel ul {
  list-style: none;
}

.panel li {
  margin: 10px 0;
  padding-left: 20px;
  position: relative;
}

.panel li::before {
  color: var(--teal);
  content: '✓';
  font-weight: 800;
  left: 0;
  position: absolute;
}

.workflow {
  display: grid;
  gap: 16px;
}

.step {
  align-items: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: grid;
  gap: 16px;
  grid-template-columns: 42px 1fr;
  padding: 22px;
}

.step-num {
  align-items: center;
  background: linear-gradient(135deg, var(--teal), var(--pharma));
  border-radius: 10px;
  color: #fff;
  display: flex;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.cta {
  background: #08111f;
  color: #fff;
  margin-top: 64px;
}

.cta-inner {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 42px 28px;
}

.cta h2 {
  font-size: 26px;
}

.cta p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 6px;
}

.button {
  background: linear-gradient(135deg, var(--teal), var(--pharma));
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  padding: 12px 22px;
  text-decoration: none;
  white-space: nowrap;
}

/* footer layout handled by site.css */

@media (max-width: 860px) {
  .hero-inner,
  .grid {
    grid-template-columns: 1fr;
  }

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