nav {
	background: rgba(255, 255, 255, 1);
}

.nav-logo {
	color: #0b2a57;
}

.nav-links a,
.nav-links li> span,
.nav-links-angle {
	color: #1a2536;
	fill: #1a2536;
}

.nav-links a:hover,
.nav-links li> span:hover,
.nav-links li> span:hover .nav-links-angle {
	color: #1b6bc9;
	fill: #1b6bc9;
}

.nav-btn {
	background: #0b2a57;
	padding: 10px 15px;
	border-radius: 7px;
	transition: transform 0.15s;
}

.nav-btn:hover {
  background: #0b2a57 !important;
	transform: translateY(-1px);
}

.nav-burger svg {
  fill: #000;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -2;
	background: linear-gradient(135deg, #0b2a57 0%, #061a37 60%, #0a1f3f 100%);
}

.hero::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(
			ellipse 80% 50% at 80% 0%,
			rgba(27, 107, 201, 0.35),
			transparent 60%
		),
		radial-gradient(
			ellipse 60% 40% at 0% 100%,
			rgba(46, 134, 193, 0.25),
			transparent 60%
		);
	pointer-events: none;
}

.hero .grid-pattern {
	position: absolute;
	inset: 0;
	z-index: -1;
	opacity: 0.07;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
	background-size: 40px 40px;
}

.hero-wrapper {
  min-height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 900px;
}

.hero .eyebrow {
	font-size: clamp(10px, calc(9.423px + 0.18vw), 12px);
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #7bb6f0;
	margin-bottom: clamp(10px, calc(7.117px + 0.901vw), 20px);
	padding: 7px 14px;
	border: 1px solid rgba(123, 182, 240, 0.3);
	border-radius: 30px;
	background: rgba(123, 182, 240, 0.08);
  width: fit-content;
}

.hero h1 {
	font-size: clamp(36px, calc(28.505px + 2.342vw), 62px);
	line-height: 1.04;
	font-weight: 700;
	margin-bottom: clamp(15px, calc(12.117px + 0.901vw), 25px);
}

.hero h1 em {
	color: #7bb6f0;
	font-style: normal;
	background: linear-gradient(135deg, #7bb6f0, #a9ccef);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero p.sub {
	font-size: clamp(16px, calc(14.27px + 0.541vw), 22px);
	line-height: 1.5;
	color: #cbd5e1;
	margin-bottom: clamp(25px, calc(20.676px + 1.351vw), 40px);
	font-weight: 400;
}

.hero .ctarow {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.hero .cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: clamp(10px, calc(8.559px + 0.45vw), 15px) clamp(20px, calc(18.559px + 0.45vw), 25px);
	border-radius: 9px;
	font-weight: 600;
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	transition: transform 0.18s;
}

.hero .cta.primary {
	background: #fff;
	color: #0b2a57;
}

.hero .cta.primary:hover {
	background: #e6f0fa;
	transform: translateY(-2px);
}

.hero .cta.ghost {
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.hero .cta.ghost:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.06);
}

.hero .arrow {
	display: inline-block;
	transition: transform 0.15s;
}

.hero .cta:hover .arrow {
	transform: translateX(3px);
}

section.alt {
	background: linear-gradient(180deg, #f7f9fb 0%, #fff 100%);
}

section.dark {
	background: #0b2a57;
	color: #fff;
}

section.dark h2 {
	color: #fff;
}

section.dark p {
	color: #cbd5e1;
}

.title {
	font-size: clamp(22px, calc(18.541px + 1.081vw), 34px);
	line-height: 1.15;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #0b2a57;
	margin-bottom: clamp(10px, calc(7.117px + 0.901vw), 20px);
}

h3 {
	line-height: 1.3;
	font-weight: 600;
	color: #0b2a57;
}

p {
	color: #374151;
}

p.lead {
	font-size: clamp(14px, calc(12.847px + 0.36vw), 18px);
	line-height: 1.4;
}

.eyebrow-section {
	display: inline-block;
	font-size: clamp(10px, calc(9.423px + 0.18vw), 12px);
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #1b6bc9;
	margin-bottom: clamp(5px, calc(3.559px + 0.45vw), 10px);
}

.sec-head {
	max-width: 840px;
}

.sec-head p.intro {
	font-size: clamp(16px, calc(15.423px + 0.18vw), 18px);
	color: #4b5563;
}

.audience {
  padding: var(--vertical-padding) 0;
}

.tile-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(453px, 1fr));
	gap: 20px;
	margin-top: clamp(30px, calc(24.234px + 1.802vw), 50px);
}

.tile {
	position: relative;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: clamp(15px, calc(12.117px + 0.901vw), 25px);
	transition:
		transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1),
		box-shadow 0.22s,
		border-color 0.22s;
	overflow: hidden;
}

.tile::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #1b6bc9, #7bb6f0);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s;
}

.tile:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 40px rgba(11, 42, 87, 0.13);
	border-color: #cbd5e1;
	text-decoration: none;
}

.tile:hover::before {
	transform: scaleX(1);
}

.tile .ticon {
	width: clamp(36px, calc(33.117px + 0.901vw), 46px);
	height: clamp(36px, calc(33.117px + 0.901vw), 46px);
	border-radius: clamp(7px, calc(5.847px + 0.36vw), 11px);
	background: linear-gradient(135deg, #e6f0fa, #cfe1f5);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: clamp(10px, calc(7.694px + 0.721vw), 18px);
	color: #1b6bc9;
}

.tile .ticon svg {
	width: clamp(20px, calc(18.847px + 0.36vw), 24px);
	height: clamp(20px, calc(18.847px + 0.36vw), 24px);
	stroke: #0b2a57;
	stroke-width: 2;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.tile h3 {
	margin-bottom: clamp(5px, calc(3.559px + 0.45vw), 10px);
	font-size: clamp(18px, calc(16.847px + 0.36vw), 22px);
	color: #0b2a57;
}

.tile p {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	color: #4b5563;
	margin-bottom: clamp(10px, calc(7.117px + 0.901vw), 20px);
}

.tile .more {
	font-size: 14px;
	font-weight: 600;
	color: #1b6bc9;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.tile .more .arrow {
	transition: transform 0.15s;
}

.tile:hover .more .arrow {
	transform: translateX(4px);
}

.clinical-development {
  padding: var(--vertical-padding) 0;
}

.statgrid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: clamp(15px, calc(13.559px + 0.45vw), 20px);
	margin-top: clamp(30px, calc(24.234px + 1.802vw), 50px);
}

.stat {
	position: relative;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: clamp(15px, calc(12.117px + 0.901vw), 25px);
	overflow: hidden;
}

.stat::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
  width: 100%;
	height: 3px;
	background: linear-gradient(90deg, #1b6bc9, #7bb6f0);
}

.stat .num {
	font-size: clamp(22px, calc(16.811px + 1.622vw), 40px);
	font-weight: 700;
	color: #0b2a57;
	line-height: 1;
	margin-bottom: 10px;
}

.stat .num .sub {
	font-size: clamp(14px, calc(11.117px + 0.901vw), 24px);
	color: #1b6bc9;
}

.stat .lbl {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	color: #4b5563;
	line-height: 1.45;
}

.highlight-band {
	background: linear-gradient(135deg, #0b2a57 0%, #0a1f3f 100%);
	color: #fff;
	padding: clamp(15px, calc(12.117px + 0.901vw), 25px);
	border-radius: 18px;
	margin-top: clamp(25px, calc(17.793px + 2.252vw), 50px);
	position: relative;
	overflow: hidden;
}

.highlight-band::after {
	content: '';
	position: absolute;
	top: -50%;
	right: -15%;
	width: 50%;
	height: 200%;
	background: radial-gradient(
		ellipse,
		rgba(27, 107, 201, 0.25),
		transparent 70%
	);
	pointer-events: none;
}

.highlight-band .label {
	display: inline-block;
	font-size: clamp(10px, calc(9.423px + 0.18vw), 12px);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #7bb6f0;
	margin-bottom: 5px;
}

.highlight-band h3 {
	color: #fff;
	font-size: clamp(18px, calc(16.27px + 0.541vw), 24px);
	margin-bottom: clamp(10px, calc(8.559px + 0.45vw), 15px);
}

.highlight-band p {
	color: #cbd5e1;
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
  line-height: 1.5;
}

.funding-pathways {
  padding: var(--vertical-padding) 0;
}

.funding-pathways .sec-head {
  max-width: 100%;
}

.funding-pathways .eyebrow-section {
  color:#7BB6F0
}

.funding-pathways-description {
  font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
  line-height: 1.5;
}

.ctaband {
	position: relative;
	background: linear-gradient(135deg, #0b2a57, #1b6bc9);
	color: #fff;
	padding: var(--vertical-padding) 0;
	text-align: center;
	overflow: hidden;
	isolation: isolate;
}

.ctaband::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	background: radial-gradient(
		ellipse 50% 50% at 50% 0%,
		rgba(255, 255, 255, 0.12),
		transparent 70%
	);
}

.ctaband h2 {
	color: #fff;
}

.ctaband p {
	color: #dbeafe;
	font-size: clamp(16px, calc(15.423px + 0.18vw), 18px);
	max-width: 680px;
	margin: 0 auto clamp(25px, calc(23.559px + 0.45vw), 30px);
}

.ctaband .cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: clamp(10px, calc(8.559px + 0.45vw), 15px) clamp(20px, calc(18.559px + 0.45vw), 25px);
	background: #fff;
	color: #0b2a57;
	border-radius: 9px;
	font-weight: 600;
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	transition:
		transform 0.15s,
		box-shadow 0.15s;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}

.ctaband .cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
	text-decoration: none;
}

footer {
	background: #061a37;
}

@media (max-width: 780px) {
  .nav-links {
    flex-direction: row;
    position: relative;
    height: 100%;
    padding: 0;
    background: transparent;
    transform: translateX(0);
  }
  .nav-burger {
    display: none;
  }
}

@media (max-width: 575px) {
  .nav-links {
    flex-direction: column;
    position: fixed;
    height: 100%;
    padding: 20px;
    background: rgba(24, 56, 94, 0.97);
    transform: translateX(100%);
  }
  .nav-burger {
    display: block;
  }
  .nav-burger.nav-close svg {
    fill: #fff;
  }
  .nav-links a {
    color: #fff;
  }
}

@media (max-width: 535px) {
  .cta {
    width: 100%;
    justify-content: center;
  }
}

@media(max-width: 485px) {
  .tile-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}