/* ===========================
   TOKENS
=========================== */
:root {
	--blue-deep: #0051A2;
	--blue-bright: #2E86FF;
	--ink: #101820;
	--muted: #5B6672;
	--bg: #F7F9FC;
	--card: #FFFFFF;
	--border: #E4E9F0;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

body {
	background: var(--bg);
	color: var(--ink);
}

h1, h2, h3 {
	font-family: 'Archivo Black', sans-serif;
	line-height: 1.15;
}

.eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.eyebrow-dark {
	color: var(--blue-deep);
}

.centered {
	display: block;
	text-align: center;
}

/* ===========================
   HERO
=========================== */
.hero-wrap {
	background:
		linear-gradient(to bottom, rgba(4, 15, 30, 0.85), rgba(4, 15, 30, 0.65)),
		url('hero-about.jpeg');
	background-size: cover;
	background-position: center;
	color: white;
	padding-bottom: 60px;
}

.navbar {
	max-width: 1200px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 25px 20px 0;
}

.menu ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	gap: 32px;
}

.menu ul li a {
	color: white;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	padding-bottom: 6px;
	border-bottom: 2px solid transparent;
	transition: 0.25s;
}

.menu ul li a:hover,
.menu ul li a.current {
	border-bottom: 2px solid var(--blue-bright);
}

.hero-content {
	max-width: 700px;
	margin: 70px auto 0;
	padding: 0 20px;
	text-align: center;
}

.hero-content .eyebrow {
	color: var(--blue-bright);
}

.hero-content h1 {
	font-size: 46px;
	letter-spacing: -0.5px;
	margin-bottom: 20px;
}

.hero-content p {
	font-size: 17px;
	color: #dbe3ee;
	line-height: 1.6;
}

.stat-strip {
	max-width: 900px;
	margin: 50px auto 0;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(6px);
	border-radius: 18px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 28px 10px;
}

.stat {
	text-align: center;
	border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.stat:last-child {
	border-right: none;
}

.stat-num {
	display: block;
	font-family: 'Archivo Black', sans-serif;
	font-size: 32px;
	color: var(--blue-bright);
}

.stat-label {
	display: block;
	font-size: 13px;
	color: #cbd5e1;
	margin-top: 4px;
	letter-spacing: 0.5px;
}

/* ===========================
   STORY (with fixture card)
=========================== */
.story {
	max-width: 1100px;
	margin: auto;
	padding: 90px 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
	align-items: center;
}

.story-text {
	flex: 1 1 420px;
}

.story-text h2 {
	font-size: 32px;
	margin-bottom: 22px;
}

.story-text p {
	color: var(--muted);
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 16px;
}

/* Signature element: the "fixture card" ticket */
.fixture-card {
	flex: 1 1 320px;
	max-width: 360px;
	background: var(--card);
	border: 1.5px dashed var(--blue-deep);
	border-radius: 18px;
	overflow: hidden;
	position: relative;
	margin: auto;
}

.fixture-card::before,
.fixture-card::after {
	content: '';
	position: absolute;
	width: 24px;
	height: 24px;
	background: var(--bg);
	border-radius: 50%;
	top: 62px;
}

.fixture-card::before {
	left: -12px;
}

.fixture-card::after {
	right: -12px;
}

.fixture-head {
	background: var(--blue-deep);
	color: white;
	display: flex;
	justify-content: space-between;
	padding: 14px 24px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.fixture-body {
	padding: 30px 24px 20px;
	border-bottom: 1.5px dashed var(--border);
}

.fixture-row {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 18px;
}

.fixture-row i {
	color: var(--blue-deep);
	width: 18px;
	text-align: center;
}

.fixture-foot {
	padding: 16px 24px;
	font-size: 13px;
	color: var(--muted);
	font-style: italic;
}

/* ===========================
   JOURNEY / TIMELINE
=========================== */
.journey {
	max-width: 1100px;
	margin: auto;
	padding: 30px 20px 100px;
	text-align: center;
}

.journey h2 {
	font-size: 30px;
	margin-bottom: 55px;
}

.timeline {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: left;
}

.timeline-item {
	position: relative;
	padding-top: 20px;
	border-top: 3px solid var(--blue-deep);
}

.timeline-num {
	display: block;
	font-family: 'Archivo Black', sans-serif;
	font-size: 22px;
	color: var(--blue-bright);
	margin-bottom: 10px;
}

.timeline-item h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.timeline-item p {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.6;
}

/* ===========================
   VALUES
=========================== */
.values {
	background: var(--card);
	padding: 90px 20px;
	text-align: center;
}

.values h2 {
	font-size: 30px;
	margin-bottom: 55px;
}

.values-grid {
	max-width: 1100px;
	margin: auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.value-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 32px 22px;
	text-align: left;
	transition: 0.25s;
}

.value-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 30px rgba(0, 81, 162, 0.1);
}

.value-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--blue-deep);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	margin-bottom: 18px;
}

.value-card h3 {
	font-size: 18px;
	margin-bottom: 10px;
}

.value-card p {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.6;
}

/* ===========================
   CTA
=========================== */
.cta-banner {
	max-width: 700px;
	margin: auto;
	padding: 100px 20px;
	text-align: center;
}

.cta-banner h2 {
	font-size: 30px;
	margin-bottom: 14px;
}

.cta-banner p {
	color: var(--muted);
	margin-bottom: 30px;
}

.cta-btn {
	display: inline-block;
	background: var(--blue-deep);
	color: white;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	padding: 16px 38px;
	border-radius: 14px;
	transition: 0.25s;
}

.cta-btn:hover {
	background: var(--blue-bright);
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
	text-align: center;
	padding: 30px;
	font-size: 13px;
	color: var(--muted);
	border-top: 1px solid var(--border);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
	.stat-strip {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 20px;
	}

	.stat:nth-child(2) {
		border-right: none;
	}

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

@media (max-width: 600px) {
	.hero-content h1 {
		font-size: 32px;
	}

	.story {
		padding: 60px 20px;
	}

	.timeline,
	.values-grid {
		grid-template-columns: 1fr;
	}
}

/* ===========================
   ACCESSIBILITY
=========================== */
a:focus-visible,
button:focus-visible {
	outline: 3px solid var(--blue-bright);
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	* {
		transition: none !important;
	}
}
