@font-face {
	font-family: 'IBM Plex Sans';
	src: url('./fonts/ibm-plex-sans/IBMPlexSans-latin-ext.woff2') format('woff2');
	font-weight: 300 700;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: 'IBM Plex Sans';
	src: url('./fonts/ibm-plex-sans/IBMPlexSans-latin.woff2') format('woff2');
	font-weight: 300 700;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--bg: #f4f2ec;
	--surface: #ffffff;
	--surface-muted: #f8fafc;
	--text: #1f2933;
	--text-light: #5f6b76;
	--primary: #1f4d6b;
	--primary-hover: #17384e;
	--accent: #c17a31;
	--border: #d8dde1;
	--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

body {
	font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
	font-size: 16px;
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: var(--primary);
	color: white;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.2s ease;
	border: none;
	cursor: pointer;
}

.btn:hover {
	background: var(--primary-hover);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.btn-outline {
	background: transparent;
	border: 2px solid var(--border);
	color: var(--text);
}

.btn-outline:hover {
	border-color: var(--primary);
	color: var(--primary);
}

header {
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border);
	padding: 20px 0;
	position: sticky;
	top: 0;
	z-index: 50;
}

header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--text);
	letter-spacing: -0.5px;
}

.logo span {
	color: var(--primary);
}

.header-nav {
	display: flex;
	gap: 32px;
	align-items: center;
}

.header-nav a {
	color: var(--text-light);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
	transition: color 0.2s;
}

.header-nav a:hover {
	color: var(--primary);
}

.hero {
	padding: 120px 0 80px;
	background: var(--surface);
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top center, rgba(31, 77, 107, 0.08), transparent 45%);
	pointer-events: none;
}

.hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100px;
	background: var(--bg);
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.hero h1 {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 24px;
	letter-spacing: -1px;
}

.hero h1 span {
	background: linear-gradient(135deg, var(--primary), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	margin-bottom: 20px;
	border-radius: 999px;
	background: rgba(31, 77, 107, 0.08);
	color: var(--primary);
	font-size: 0.9rem;
	font-weight: 600;
}

.hero p {
	font-size: 1.25rem;
	color: var(--text-light);
	margin-bottom: 40px;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.hero-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	margin-bottom: 48px;
}

.hero-tags {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.hero-tag {
	background: var(--bg);
	padding: 8px 16px;
	border-radius: 100px;
	font-size: 0.875rem;
	color: var(--text-light);
	border: 1px solid var(--border);
}

.hero-visual {
	margin-top: 60px;
	position: relative;
	z-index: 1;
}

.hero-image {
	background: var(--surface);
	border-radius: 16px;
	box-shadow: var(--shadow-lg);
	padding: 16px;
	border: 1px solid var(--border);
}

.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

section {
	padding: 100px 0;
}

.section-header {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 60px;
}

.section-header h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 16px;
	letter-spacing: -0.5px;
}

.section-header p {
	font-size: 1.125rem;
	color: var(--text-light);
}

.card {
	background: var(--surface);
	border-radius: 16px;
	padding: 32px;
	border: 1px solid var(--border);
	transition: all 0.3s ease;
}

.card:hover,
.capability-card:hover,
.report-card:hover,
.hosting-card:hover {
	border-color: var(--primary);
	box-shadow: var(--shadow-lg);
	transform: translateY(-4px);
}

.card-highlight {
	margin-top: 20px;
	padding: 16px;
	background: #f6ead8;
	border-radius: 8px;
	color: var(--text);
}

.card h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 12px;
}

.card p {
	color: var(--text-light);
	font-size: 0.95rem;
}

.card ul,
.capability-card ul,
.report-card ul {
	list-style: none;
	margin-top: 16px;
}

.card li,
.capability-card li,
.report-card li {
	padding: 6px 0 6px 24px;
	position: relative;
	color: var(--text-light);
	font-size: 0.95rem;
}

.card li::before,
.capability-card li::before,
.report-card li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--primary);
	font-weight: 600;
}

.capabilities {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(248, 250, 252, 0.9));
}

.capabilities-grid,
.reporting-grid {
	align-items: stretch;
}

.capability-card,
.report-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 32px;
	transition: all 0.3s ease;
}

.capability-icon {
	width: 56px;
	height: 56px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(31, 77, 107, 0.12), rgba(193, 122, 49, 0.12));
	font-size: 1.6rem;
	margin-bottom: 20px;
}

.capability-card h3,
.report-card h3 {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 12px;
}

.capability-card p,
.report-card p {
	color: var(--text-light);
}

.features-full {
	background: var(--surface);
}

.feature-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
	margin-bottom: 80px;
}

.feature-block:last-child {
	margin-bottom: 0;
}

.feature-block.reverse {
	direction: rtl;
}

.feature-block.reverse > * {
	direction: ltr;
}

.feature-text h3 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 16px;
}

.feature-text p {
	color: var(--text-light);
	font-size: 1.1rem;
	margin-bottom: 24px;
}

.feature-text ul {
	list-style: none;
}

.feature-text li {
	padding: 10px 0 10px 32px;
	position: relative;
	border-bottom: 1px solid var(--border);
}

.feature-text li:last-child {
	border-bottom: none;
}

.feature-text li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--accent);
	font-weight: 600;
}

.feature-image {
	background: var(--bg);
	border-radius: 16px;
	padding: 24px;
	border: 1px solid var(--border);
}

.screenshot-sm {
	margin: 0 32px;
	border-radius: 16px;
	background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px dashed #cbd5e1;
	padding: 16px;
}

.screenshot-sm img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	display: block;
}

.reporting-section {
	background: var(--surface-muted);
}

.hosting-card {
	text-align: center;
	padding: 48px 32px;
	background: var(--surface);
	border-radius: 16px;
	border: 2px solid var(--border);
	transition: all 0.3s ease;
}

.hosting-icon {
	font-size: 3rem;
	margin-bottom: 20px;
}

.hosting-card h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 12px;
}

.hosting-card p {
	color: var(--text-light);
}

.cta {
	background: linear-gradient(135deg, #214760, #2b5d78);
	color: white;
	padding: 100px 0;
	text-align: center;
}

.cta h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 16px;
}

.cta p {
	font-size: 1.25rem;
	opacity: 0.92;
	margin-bottom: 32px;
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}

.cta .btn {
	background: white;
	color: var(--primary);
}

.cta .btn:hover {
	background: #f4f4f5;
}

footer {
	background: var(--surface);
	border-top: 1px solid var(--border);
	padding: 40px 0;
	text-align: center;
}

footer p {
	color: var(--text-light);
	font-size: 0.9rem;
}

footer a {
	color: var(--primary);
}

@media (max-width: 1024px) {
	.grid-3 {
		grid-template-columns: 1fr 1fr;
	}

	.grid-2 {
		grid-template-columns: 1fr;
	}

	.feature-block {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.feature-block.reverse {
		direction: ltr;
	}
}

@media (max-width: 768px) {
	.hero h1 {
		font-size: 2.5rem;
	}

	.hero p,
	.cta p {
		font-size: 1.1rem;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.grid-3 {
		grid-template-columns: 1fr;
	}

	.header-nav {
		display: none;
	}

	.container {
		padding: 0 20px;
	}

	.screenshot-sm {
		margin: 0;
	}

	section,
	.cta {
		padding: 80px 0;
	}
}
