* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.marketing-page {
	margin: 0;
	min-height: 100vh;
	background: #f6f1e8;
	color: #07192f;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	line-height: 1.5;
}

.marketing-page img {
	display: block;
	max-width: 100%;
}

.site-nav {
	position: sticky;
	top: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	gap: 24px;
	min-height: 72px;
	padding: 14px clamp(18px, 4vw, 56px);
	background: rgba(246, 241, 232, 0.92);
	border-bottom: 2px solid #07192f;
	backdrop-filter: blur(18px);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #07192f;
	font-size: 18px;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
}

.brand img {
	width: 32px;
	height: 32px;
	border-radius: 7px;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
}

.nav-links a,
.lang-btn,
.button {
	min-height: 40px;
	border: 2px solid #07192f;
	border-radius: 8px;
	font-weight: 800;
	text-decoration: none;
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-links a {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	background: #fffdf8;
	color: #07192f;
}

.nav-links a:hover,
.nav-links a.active,
.lang-btn.active {
	background: #ffe24a;
	box-shadow: 4px 4px 0 #07192f;
	transform: translate(-2px, -2px);
}

.lang-switcher {
	display: flex;
	gap: 6px;
}

.lang-btn {
	min-width: 44px;
	padding: 8px 10px;
	background: #fffdf8;
	color: #07192f;
	cursor: pointer;
}

.hero {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
	align-items: center;
	gap: clamp(28px, 4vw, 60px);
	padding: clamp(42px, 7vw, 96px) clamp(18px, 4vw, 56px) clamp(34px, 5vw, 70px);
	border-bottom: 2px solid #07192f;
}

.hero-about {
	background:
		linear-gradient(90deg, rgba(255, 226, 74, 0.88) 0 34%, rgba(255, 94, 74, 0.82) 34% 58%, rgba(33, 184, 255, 0.75) 58% 100%),
		#f6f1e8;
}

.hero-articles {
	background:
		linear-gradient(90deg, rgba(33, 184, 255, 0.78) 0 32%, rgba(255, 226, 74, 0.9) 32% 62%, rgba(67, 214, 126, 0.75) 62% 100%),
		#f6f1e8;
}

.hero-copy {
	max-width: 760px;
}

.eyebrow,
.section-kicker {
	margin: 0 0 14px;
	color: #07192f;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.hero h1 {
	margin: 0;
	max-width: 820px;
	font-size: clamp(42px, 7vw, 94px);
	line-height: 0.95;
	letter-spacing: 0;
}

.hero p {
	max-width: 620px;
	margin: 24px 0 0;
	color: #0c2542;
	font-size: clamp(17px, 2vw, 22px);
	font-weight: 650;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	color: #07192f;
}

.button:hover {
	box-shadow: 5px 5px 0 #07192f;
	transform: translate(-2px, -2px);
}

.button-primary {
	background: #07192f;
	color: #fffdf8;
}

.button-secondary {
	background: #fffdf8;
}

.button-dark {
	background: #07192f;
	color: #fffdf8;
	width: fit-content;
}

.hero-media {
	position: relative;
	margin: 0;
}

.hero-media img {
	width: 100%;
	aspect-ratio: 1.22 / 1;
	object-fit: cover;
	border: 3px solid #07192f;
	border-radius: 8px;
	box-shadow: 12px 12px 0 #07192f;
	background: #fffdf8;
}

main {
	max-width: 1240px;
	margin: 0 auto;
	padding: clamp(34px, 5vw, 76px) clamp(18px, 4vw, 40px);
}

.stats-strip,
.learning-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: 2px solid #07192f;
	background: #fffdf8;
	box-shadow: 8px 8px 0 #07192f;
}

.learning-strip {
	grid-template-columns: repeat(3, 1fr);
	margin-top: 54px;
}

.stats-strip div,
.learning-strip div {
	padding: clamp(18px, 3vw, 30px);
	border-right: 2px solid #07192f;
}

.stats-strip div:last-child,
.learning-strip div:last-child {
	border-right: 0;
}

.stats-strip strong,
.learning-strip strong {
	display: block;
	color: #07192f;
	font-size: clamp(22px, 3vw, 36px);
	line-height: 1;
}

.stats-strip span,
.learning-strip span {
	display: block;
	margin-top: 8px;
	color: #294057;
	font-size: 15px;
	font-weight: 700;
}

.split-section {
	display: grid;
	grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
	gap: clamp(30px, 6vw, 90px);
	padding: clamp(58px, 8vw, 104px) 0;
}

.split-section h2,
.section-heading h2,
.content-panel h2,
.contact-section h2,
.featured-content h2,
.article-card h3 {
	margin: 0;
	color: #07192f;
	letter-spacing: 0;
}

.split-section h2,
.section-heading h2,
.content-panel h2,
.contact-section h2 {
	font-size: clamp(30px, 4.8vw, 58px);
	line-height: 1;
}

.rich-text p,
.content-panel p,
.contact-section p,
.article-card p,
.featured-content p {
	color: #294057;
	font-size: 17px;
}

.rich-text p {
	margin: 0 0 18px;
}

.feature-band,
.article-section {
	padding: clamp(36px, 6vw, 70px);
	background: #07192f;
	color: #fffdf8;
	border-radius: 8px;
}

.feature-band .section-kicker,
.feature-band h2,
.article-section .section-kicker,
.article-section h2 {
	color: #fffdf8;
}

.feature-grid,
.articles-grid,
.content-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-top: 32px;
}

.articles-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.articles-grid-large {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.content-grid {
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
	margin-top: 0;
}

.feature-card,
.article-card,
.content-panel,
.contact-card,
.featured-article {
	border: 2px solid #07192f;
	border-radius: 8px;
	background: #fffdf8;
	color: #07192f;
}

.feature-card,
.article-card,
.content-panel,
.contact-card {
	min-width: 0;
	padding: clamp(20px, 3vw, 30px);
}

.feature-card {
	min-height: 250px;
}

.feature-icon,
.article-category {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #07192f;
	border-radius: 999px;
	background: #ffe24a;
	color: #07192f;
	font-size: 12px;
	font-weight: 900;
}

.feature-icon {
	width: 42px;
	height: 42px;
	margin-bottom: 24px;
}

.feature-card h3 {
	margin: 0 0 12px;
	color: #07192f;
	font-size: 22px;
}

.feature-card p {
	margin: 0;
	color: #294057;
	font-size: 15px;
}

.content-grid {
	padding: clamp(58px, 8vw, 104px) 0 0;
}

.accent-panel {
	background: #21b8ff;
}

.check-list {
	display: grid;
	gap: 14px;
	margin: 26px 0 0;
	padding: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 28px;
	color: #294057;
	font-size: 16px;
}

.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 12px;
	height: 12px;
	background: #43d67e;
	border: 2px solid #07192f;
	border-radius: 50%;
}

.text-link,
.contact-card a,
.site-footer a {
	color: #07192f;
	font-weight: 900;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

.contact-section {
	display: grid;
	grid-template-columns: 1fr minmax(280px, 420px);
	gap: 28px;
	align-items: center;
	padding: clamp(42px, 7vw, 80px);
	margin-top: clamp(50px, 8vw, 92px);
	background: #ff5e4a;
	border: 2px solid #07192f;
	border-radius: 8px;
	box-shadow: 8px 8px 0 #07192f;
}

.contact-section p {
	margin-bottom: 0;
}

.contact-card {
	background: #fffdf8;
}

.featured-article {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 28px;
	padding: clamp(24px, 4vw, 42px);
	margin-bottom: 58px;
	background: #ffe24a;
	box-shadow: 8px 8px 0 #07192f;
}

.featured-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 110px;
	min-height: 110px;
	padding: 16px;
	background: #ff5e4a;
	border: 2px solid #07192f;
	border-radius: 999px;
	color: #07192f;
	font-size: 14px;
	font-weight: 900;
	text-align: center;
}

.featured-content h2 {
	font-size: clamp(30px, 4vw, 50px);
	line-height: 1;
}

.featured-content p {
	max-width: 650px;
	margin: 14px 0 18px;
}

.meta-row,
.card-topline,
.article-footer {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	color: #294057;
	font-size: 13px;
	font-weight: 800;
}

.article-card {
	display: flex;
	flex-direction: column;
	min-height: 310px;
	background: #fffdf8;
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.article-card-hot {
	background: #43d67e;
}

.article-card:hover {
	box-shadow: 8px 8px 0 #ffe24a;
	transform: translate(-2px, -2px);
}

.card-topline {
	justify-content: space-between;
	margin-bottom: 28px;
}

.article-category {
	padding: 6px 12px;
	background: #21b8ff;
}

.article-card h3 {
	font-size: clamp(26px, 3vw, 38px);
	line-height: 1;
	overflow-wrap: anywhere;
}

.article-card p {
	margin: 18px 0 28px;
	overflow-wrap: anywhere;
}

.article-footer {
	justify-content: space-between;
	margin-top: auto;
}

.read-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 8px 14px;
	border: 2px solid #07192f;
	border-radius: 8px;
	background: #07192f;
	color: #fffdf8;
	font-size: 14px;
	font-weight: 900;
	text-decoration: none;
}

.site-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 28px clamp(18px, 4vw, 56px);
	background: #07192f;
	color: #fffdf8;
}

.site-footer p {
	margin: 0;
}

.site-footer div {
	display: flex;
	gap: 18px;
}

.site-footer a {
	color: #fffdf8;
}

.policy-hero {
	padding: clamp(42px, 7vw, 92px) clamp(18px, 4vw, 56px);
	background:
		linear-gradient(90deg, rgba(255, 226, 74, 0.9) 0 38%, rgba(33, 184, 255, 0.72) 38% 72%, rgba(67, 214, 126, 0.7) 72% 100%),
		#f6f1e8;
	border-bottom: 2px solid #07192f;
}

.policy-hero h1 {
	max-width: 900px;
	margin: 0;
	color: #07192f;
	font-size: clamp(42px, 7vw, 86px);
	line-height: 0.96;
	letter-spacing: 0;
}

.policy-hero p:last-child {
	margin: 22px 0 0;
	color: #0c2542;
	font-size: 18px;
	font-weight: 800;
}

.policy-shell {
	display: grid;
	gap: 22px;
	max-width: 940px;
}

.policy-panel {
	padding: clamp(22px, 4vw, 36px);
	border: 2px solid #07192f;
	border-radius: 8px;
	background: #fffdf8;
}

.policy-panel h2 {
	margin: 0 0 14px;
	color: #07192f;
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.05;
}

.policy-panel p {
	margin: 0 0 16px;
	color: #294057;
	font-size: 17px;
	line-height: 1.75;
}

.policy-panel p:last-child {
	margin-bottom: 0;
}

.policy-panel a {
	color: #07192f;
	font-weight: 900;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

@media (max-width: 980px) {
	.site-nav,
	.site-footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.nav-links {
		margin-left: 0;
		flex-wrap: wrap;
	}

	.site-footer div {
		flex-wrap: wrap;
	}

	.hero,
	.split-section,
	.contact-section,
	.featured-article {
		grid-template-columns: 1fr;
	}

	.feature-grid,
	.articles-grid,
	.content-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.stats-strip,
	.learning-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.stats-strip div:nth-child(2),
	.learning-strip div:nth-child(2) {
		border-right: 0;
	}

	.stats-strip div:nth-child(-n+2),
	.learning-strip div:nth-child(-n+2) {
		border-bottom: 2px solid #07192f;
	}
}

@media (max-width: 640px) {
	.site-nav {
		min-height: 0;
	}

	.nav-links a,
	.lang-btn {
		font-size: 14px;
	}

	.hero {
		padding-top: 34px;
	}

	.hero h1 {
		font-size: clamp(38px, 14vw, 56px);
	}

	.hero-media img {
		box-shadow: 7px 7px 0 #07192f;
	}

	main {
		padding-top: 30px;
	}

	.feature-band,
	.article-section,
	.contact-section {
		padding: 24px;
	}

	.feature-grid,
	.articles-grid,
	.articles-grid-large,
	.content-grid,
	.stats-strip,
	.learning-strip {
		grid-template-columns: 1fr;
	}

	.stats-strip div,
	.learning-strip div {
		border-right: 0;
		border-bottom: 2px solid #07192f;
	}

	.stats-strip div:last-child,
	.learning-strip div:last-child {
		border-bottom: 0;
	}

	.featured-label {
		min-width: 86px;
		min-height: 86px;
	}
}
