:root {
	--navy: #0f1c3a;
	--navy-deep: #071527;
	--ink: #182a46;
	--muted: #5b6b85;
	--teal: #0d9488;
	--teal-dim: #0b7d73;
	--teal-tint: #e4f5f3;
	--grey: #64748b;
	--grey-tint: #eef1f6;
	--white: #ffffff;
	--paper: #f7f9fc;
	--line: #e5e9f0;
	--radius: 14px;
	--radius-sm: 8px;
	--shadow: 0 1px 2px rgba(15, 28, 58, 0.04), 0 12px 28px rgba(15, 28, 58, 0.06);
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', sans-serif;
	color: var(--ink);
	background: var(--white);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
	font-family: 'Fraunces', serif;
	color: var(--navy);
	font-weight: 600;
	letter-spacing: -0.01em;
}

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

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

a:focus-visible {
	outline: 2px solid var(--teal);
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	* {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}
}

.wrap {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 32px;
}

.highlight {
	color: var(--teal);
}

.eyebrow {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--teal);
}

/* Buttons */

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	border-radius: var(--radius-sm);
	font-family: 'Inter', sans-serif;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	border: 1px solid transparent;
}

.btn-outline {
	background: var(--white);
	border-color: var(--line);
	color: var(--navy);
}

.btn-outline:hover {
	border-color: var(--navy);
	color: var(--navy);
}

.btn-primary {
	background: var(--navy);
	color: var(--white);
}

.btn-primary:hover {
	background: var(--navy-deep);
	color: var(--white);
}

/* Header */

.site-header {
	background: var(--white);
	border-bottom: 1px solid var(--line);
}

.site-header nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 32px;
}

.logo {
	font-family: 'Fraunces', serif;
	font-weight: 600;
	font-size: 1.25rem;
	letter-spacing: 0.02em;
	color: var(--navy);
}

.logo:hover {
	color: var(--navy);
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

/* Hero */

.hero {
	background: linear-gradient(180deg, var(--paper) 0%, var(--white) 100%);
	padding: 88px 0 64px;
	text-align: center;
}

.hero .eyebrow {
	margin-bottom: 20px;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--navy);
}

.hero .eyebrow::after {
	content: '';
	display: block;
	width: 40px;
	height: 1px;
	margin: 20px auto 0;
	background: var(--line);
}

.hero h1 {
	max-width: 760px;
	margin: 0 auto;
	font-size: clamp(2.3rem, 4.6vw, 3.5rem);
	line-height: 1.1;
}

/* Pillars */

.pillars-section {
	background: var(--white);
	padding: 40px 0 72px;
}

.pillars {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	align-items: start;
}

.pillar {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 32px 28px;
}

.pillar h2 {
	margin-bottom: 12px;
	font-size: 1.4rem;
}

.pillar > p {
	margin-bottom: 28px;
	color: var(--muted);
	font-size: 0.95rem;
}

.facts-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-bottom: 28px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--line);
}

.facts-grid > div {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.facts-grid span {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 34px;
	height: 34px;
	border-radius: var(--radius-sm);
	font-size: 0.85rem;
	background: var(--grey-tint);
	color: var(--grey);
}

.facts-grid h3 {
	margin-bottom: 2px;
	font-size: 0.95rem;
}

.facts-grid p {
	color: var(--muted);
	font-size: 0.88rem;
}

.key-products-title {
	margin-bottom: 16px;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--navy);
}

.key-products {
	display: grid;
	gap: 4px;
	margin-bottom: 28px;
}

.key-products > div {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px;
	margin: 0 -12px;
	border-radius: var(--radius-sm);
}

.key-products span {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: var(--radius-sm);
	font-size: 1rem;
	background: var(--teal-tint);
	color: var(--teal);
}

.key-product-body {
	flex: 1;
}

.key-product-body h3 {
	margin-bottom: 2px;
	font-family: 'Inter', sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: normal;
	color: var(--navy);
}

.key-product-body p {
	color: var(--muted);
	font-size: 0.85rem;
}

/* Powered by / sources */

.sources-section {
	background: var(--paper);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	padding: 72px 0;
}

.sources-section h2 {
	max-width: 640px;
	margin: 0 auto 48px;
	text-align: center;
	font-size: 2rem;
}

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

.sources-grid > div {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px 26px;
}

.sources-grid span {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: var(--radius-sm);
	background: var(--grey-tint);
	color: var(--grey);
}

.sources-grid h3 {
	margin-bottom: 10px;
	font-size: 1.1rem;
}

.sources-grid p {
	color: var(--muted);
	font-size: 0.92rem;
}

/* Trusted by */

.trusted-section {
	background: var(--white);
	padding: 48px 0;
	text-align: center;
}

.trusted-lede {
	margin-bottom: 28px;
	color: var(--muted);
	font-size: 0.92rem;
}

.trusted-list {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 32px;
	list-style: none;
}

.trusted-list li {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--muted);
	font-weight: 600;
	font-size: 0.9rem;
}

/* Call to action */

.cta-section {
	background: var(--paper);
	padding: 72px 0;
}

.cta-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 48px;
}

.cta-pitch {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.cta-pitch h2 {
	margin-bottom: 16px;
	font-size: 2rem;
}

.cta-lede {
	margin-bottom: 24px;
	color: var(--muted);
	font-size: 1rem;
}

.cta-checklist {
	list-style: none;
	display: grid;
	gap: 12px;
}

.cta-checklist li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--navy);
	font-weight: 500;
}

.cta-checklist .fa-circle-check {
	color: var(--teal);
}

.cta-form {
	display: grid;
	align-content: start;
	gap: 18px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 32px;
}

.form-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.form-field {
	display: grid;
	gap: 6px;
}

.form-field label {
	font-family: 'Inter', sans-serif;
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--muted);
}

.form-field input,
.form-field textarea {
	font-family: 'Inter', sans-serif;
	font-size: 0.95rem;
	color: var(--ink);
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 10px 12px;
}

.form-field textarea {
	resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
	outline: 2px solid var(--teal);
	outline-offset: 1px;
}

.cta-button {
	justify-content: center;
	margin-top: 4px;
	padding: 13px 24px;
}

.cta-privacy {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: var(--muted);
	font-size: 0.82rem;
	text-align: center;
}

/* Footer */

.site-footer {
	background: var(--navy-deep);
	color: rgba(255, 255, 255, 0.5);
	padding: 36px 0;
	font-size: 0.82rem;
	text-align: center;
}

@media (max-width: 860px) {
	.pillars,
	.facts-grid,
	.sources-grid,
	.cta-grid,
	.form-row {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.form-row {
		gap: 18px;
	}
}
