@font-face {
	font-family: "Satoshi";
	src: url("../fonts/Satoshi-Variable.woff2") format("woff2");
	font-weight: 300 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Geist";
	src: url("../fonts/Geist-Variable.woff2") format("woff2");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "JetBrains Mono";
	src: url("../fonts/JetBrainsMono-Variable.woff2") format("woff2");
	font-weight: 100 800;
	font-style: normal;
	font-display: swap;
}

:root {
	--bg: #07101e;
	--bg-alt: #0a1222;
	--bg-deep: #101b2f;
	--card: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
	--card-solid: rgba(12, 22, 36, 0.9);
	--border: rgba(255, 255, 255, 0.08);
	--border-accent: rgba(77, 139, 255, 0.16);
	--text: #f4f7fb;
	--text-soft: #b8c2d3;
	--text-muted: #7e8ba3;
	--blue: #1d4ed8;
	--blue-deep: #004388;
	--magenta: #df2179;
	--magenta-deep: #75247e;
	--radius: 12px;
	--shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
	--container: 1180px;
	--font-display: "Satoshi", "General Sans", "Space Grotesk", "Inter", system-ui, sans-serif;
	--font-body: "Geist", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-mono: "JetBrains Mono", "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at 70% 10%, rgba(117, 36, 126, 0.18), transparent 35%),
		linear-gradient(180deg, #081120 0%, #07101e 100%);
	color: var(--text);
	font-family: var(--font-body);
	font-weight: 400;
	letter-spacing: -0.015em;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: var(--radius);
}

a {
	color: inherit;
	text-decoration: none;
}

p,
ul,
ol,
blockquote {
	margin: 0 0 1rem;
}

h1,
h2,
h3,
h4,
.display-title,
.section-title {
	font-family: var(--font-display);
	color: var(--text);
}

h1,
.display-title {
	font-weight: 800;
	letter-spacing: -0.055em;
	line-height: 0.95;
}

h2,
h3,
h4,
.section-title {
	font-weight: 750;
	letter-spacing: -0.04em;
	line-height: 1;
}

h1,
h2,
h3,
h4 {
	margin: 0 0 1rem;
}

button,
input,
select,
textarea {
	font-family: var(--font-body);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.skip-link:focus {
	top: 16px;
	left: 16px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: var(--blue);
	border-radius: 10px;
	color: #fff;
	z-index: 100;
}

.container {
	width: min(var(--container), calc(100% - 40px));
	margin: 0 auto;
}

.narrow-container,
.narrow-copy {
	width: min(820px, calc(100% - 40px));
	margin: 0 auto;
}

.section {
	padding: 96px 0;
}

.section-alt {
	background: rgba(8, 18, 34, 0.72);
	border-top: 1px solid rgba(255, 255, 255, 0.03);
	border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.section-compact {
	padding: 42px 0;
}

.section-compact-top {
	padding-top: 56px;
}

.section-cta {
	position: relative;
	overflow: hidden;
}

.section-cta::before {
	content: "";
	position: absolute;
	inset: -20% auto auto 50%;
	width: 440px;
	height: 440px;
	background: radial-gradient(circle, rgba(29, 78, 216, 0.18), transparent 65%);
	transform: translateX(-50%);
	pointer-events: none;
}

.page-shell {
	min-height: 100vh;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	background: rgba(9, 16, 30, 0.92);
	backdrop-filter: blur(18px);
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: 24px;
	min-height: 72px;
}

.brand-lockup {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.brand-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 66px;
	flex: 0 0 66px;
}

.brand-mark img {
	width: 100%;
	border-radius: 0;
}

.site-header .brand-mark {
	width: 112px;
	flex: 0 0 112px;
}

.brand-copy {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.brand-copy strong {
	font-family: var(--font-display);
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 0.16em;
}

.brand-copy small {
	font-family: var(--font-body);
	color: var(--text-soft);
	font-size: 0.88rem;
	font-weight: 500;
	letter-spacing: -0.01em;
}

.site-nav {
	margin-left: auto;
}

.menu {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 0 14px;
	border-radius: 12px;
	color: var(--text-soft);
	font-family: var(--font-body);
	font-size: 0.94rem;
	font-weight: 650;
	letter-spacing: -0.01em;
	transition: 160ms ease;
}

.menu li.current-menu-item a,
.menu a:hover {
	color: var(--text);
	background: rgba(255, 255, 255, 0.045);
}

.site-header__cta {
	margin-left: 8px;
}

@media (min-width: 1101px) {
	.site-header .brand-lockup {
		width: 168px;
	}

	.site-nav {
		flex: 1 1 auto;
		margin-left: 0;
	}

	.site-nav .menu {
		justify-content: center;
	}

	.site-header__cta {
		margin-left: 0;
	}
}

.site-header__toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 48px;
	height: 48px;
	margin-left: auto;
	padding: 0;
	border: 1px solid var(--border);
	border-radius: 12px;
	background: transparent;
}

.site-header__toggle span:not(.screen-reader-text) {
	display: block;
	width: 22px;
	height: 2px;
	margin: 0 auto;
	background: var(--text);
}

.hero {
	padding: 110px 0 80px;
	position: relative;
	overflow: hidden;
}

.hero::after {
	content: "";
	position: absolute;
	inset: auto 5% -120px auto;
	width: 360px;
	height: 360px;
	background: radial-gradient(circle, rgba(29, 78, 216, 0.16), transparent 70%);
	pointer-events: none;
}

.hero-grid,
.split-section {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
	gap: 52px;
	align-items: center;
}

.split-section--wide {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.hero--page .container,
.hero--article .container {
	max-width: 1120px;
}

.hero-media,
.split-media {
	position: relative;
}

.hero-media img,
.split-media img {
	width: 100%;
	aspect-ratio: 1.1 / 0.84;
	object-fit: cover;
	box-shadow: var(--shadow);
}

.display-title {
	max-width: 11ch;
	font-size: clamp(3.8rem, 7vw, 6.8rem);
}

.section-title {
	font-size: clamp(2.4rem, 4.5vw, 4rem);
}

.lead {
	max-width: 760px;
	color: var(--text-soft);
	font-size: clamp(1.15rem, 1.7vw, 1.25rem);
	line-height: 1.6;
	letter-spacing: -0.02em;
}

.lead--narrow {
	max-width: 700px;
}

.eyebrow,
.meta-label,
.card-label,
.technical-label {
	margin-bottom: 18px;
	color: #4d8bff;
	font-family: var(--font-mono);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	line-height: 1.2;
	text-transform: uppercase;
	font-variant-numeric: tabular-nums;
}

.eyebrow--blue {
	color: #4f8dff;
}

.eyebrow--magenta {
	color: var(--magenta);
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 34px 0;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: 12px;
	font-family: var(--font-body);
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.button:hover {
	transform: translateY(-1px);
}

.js [data-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--delay, 0ms);
	will-change: opacity, transform;
}

.js [data-reveal="fade"] {
	transform: none;
}

.js [data-reveal="fade-up"] {
	transform: translateY(18px);
}

.js [data-reveal="fade-down"] {
	transform: translateY(-14px);
}

.js [data-reveal="fade-left"] {
	transform: translateX(18px);
}

.js [data-reveal="fade-right"] {
	transform: translateX(-18px);
}

.js [data-reveal].is-visible {
	opacity: 1;
	transform: translate(0, 0);
}

.js [data-stagger] > * {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: calc(var(--delay, 0ms) + (var(--stagger-index, 0) * 90ms));
	will-change: opacity, transform;
}

.js [data-stagger].is-visible > * {
	opacity: 1;
	transform: translateY(0);
}

.js [data-reveal].button {
	transition:
		opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 160ms ease;
	transition-delay:
		var(--delay, 0ms),
		var(--delay, 0ms),
		0ms;
}

.js [data-stagger] > .button {
	transition:
		opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 160ms ease;
	transition-delay:
		calc(var(--delay, 0ms) + (var(--stagger-index, 0) * 90ms)),
		calc(var(--delay, 0ms) + (var(--stagger-index, 0) * 90ms)),
		0ms;
}

.button-primary {
	background: linear-gradient(135deg, var(--blue-deep), var(--blue));
	box-shadow: 0 18px 40px rgba(29, 78, 216, 0.24);
}

.button-secondary {
	background: linear-gradient(135deg, rgba(223, 33, 121, 0.95), rgba(117, 36, 126, 0.95));
	box-shadow: 0 18px 40px rgba(223, 33, 121, 0.2);
}

.button-ghost {
	border-color: var(--border);
	color: var(--text);
	background: rgba(255, 255, 255, 0.03);
}

.card {
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--card);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
	transition:
		border-color 240ms ease,
		background 240ms ease,
		box-shadow 240ms ease;
}

.js [data-reveal].card {
	transition:
		opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
		border-color 240ms ease,
		background 240ms ease,
		box-shadow 240ms ease;
	transition-delay:
		var(--delay, 0ms),
		var(--delay, 0ms),
		0ms,
		0ms,
		0ms;
}

.js [data-stagger] > .card {
	transition:
		opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
		border-color 240ms ease,
		background 240ms ease,
		box-shadow 240ms ease;
	transition-delay:
		calc(var(--delay, 0ms) + (var(--stagger-index, 0) * 90ms)),
		calc(var(--delay, 0ms) + (var(--stagger-index, 0) * 90ms)),
		0ms,
		0ms,
		0ms;
}

@media (hover: hover) and (pointer: fine) {
	.card:hover,
	.report-card:hover,
	.race-card:hover,
	.result-card:hover {
		transform: translateY(-4px);
		border-color: var(--border-accent);
		background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
		box-shadow:
			0 18px 44px rgba(0, 0, 0, 0.24),
			inset 0 1px 0 rgba(255, 255, 255, 0.05);
	}
}

.card-grid,
.report-grid,
.race-grid,
.sponsor-grid,
.result-grid {
	display: grid;
	gap: 24px;
}

.card-grid--three,
.report-grid,
.sponsor-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--four,
.race-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid--six {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.race-report-meta-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-auto-rows: 1fr;
}

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

.stat-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-top: 30px;
}

.stats-card,
.key-card,
.principle-card,
.story-card,
.achievement-card,
.contact-card,
.result-card,
.achievement-inline,
.race-card,
.sponsor-card {
	padding: 22px;
}

.key-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
}

.key-card h3 {
	margin: 0;
	font-size: clamp(1rem, 1.3vw, 1.45rem);
	line-height: 1.12;
	overflow-wrap: break-word;
	word-break: normal;
	hyphens: auto;
}

.race-report-meta-grid .key-card h3 {
	font-size: clamp(0.95rem, 1.05vw, 1.28rem);
}

.stats-card strong,
.achievement-card strong,
.result-card__position {
	display: block;
	margin-bottom: 6px;
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 850;
	letter-spacing: -0.05em;
	line-height: 0.95;
}

.stats-card span,
.key-card p,
.race-card__meta,
.sponsor-card__type,
.muted-copy,
.report-card__date {
	color: var(--text-muted);
}

.report-card__date,
.race-card__meta,
.status-pill,
.result-card__stats,
.article-meta > :not(.eyebrow),
.quote-card cite {
	font-family: var(--font-mono);
	font-weight: 600;
	letter-spacing: -0.02em;
	font-variant-numeric: tabular-nums;
}

.report-card {
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.report-card__image img {
	width: 100%;
	aspect-ratio: 1.2 / 0.82;
	object-fit: cover;
	border-radius: 0;
}

.report-card__body {
	padding: 20px 22px 24px;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}

.report-card__partner-block {
	margin-top: 14px;
}

.report-card__partner {
	margin-bottom: 8px;
}

.report-card__partner a {
	color: inherit;
	text-decoration: none;
}

.report-card__partner a:hover {
	text-decoration: underline;
}

.report-card__partner-copy {
	color: var(--text-soft);
}

.report-card__partner-story {
	color: var(--text-soft);
	font-size: 0.95rem;
}

.report-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
}

.report-card__title,
.race-card__title,
.sponsor-card__title {
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 2vw, 1.7rem);
	font-weight: 750;
	letter-spacing: -0.04em;
	line-height: 1.05;
}

.report-card__title {
	font-size: 1.18rem;
	line-height: 1.18;
}

.report-card__cta {
	margin-top: auto;
	align-self: flex-start;
}

.section-intro {
	margin-bottom: 30px;
}

.section-intro > *:last-child,
.hero-copy__intro > *:last-child {
	margin-bottom: 0;
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 30px;
}

.status-pill {
	display: inline-flex;
	padding: 6px 10px;
	margin-top: 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	color: var(--text-soft);
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
}

.status-pill--completed {
	background: rgba(59, 130, 246, 0.16);
	color: #9fc0ff;
}

.status-pill--planned,
.status-pill--upcoming {
	background: rgba(223, 33, 121, 0.14);
	color: #f2a5ca;
}

.split-copy > p:not(.eyebrow):not(.lead),
.prose p {
	color: var(--text-soft);
}

.quote-card {
	padding: 26px;
	margin-top: 26px;
	background: rgba(12, 26, 48, 0.72);
}

.quote-card cite {
	display: block;
	margin-top: 16px;
	color: var(--text-muted);
	font-style: normal;
	font-size: 0.9rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.gallery-grid__item {
	display: block;
	overflow: hidden;
	border-radius: var(--radius);
}

.gallery-grid__item img {
	width: 100%;
	height: 100%;
	min-height: 220px;
	object-fit: cover;
	transition: transform 180ms ease;
}

.gallery-grid__item:hover img {
	transform: scale(1.02);
}

.program-gallery {
	margin-top: 34px;
}

.gallery-grid--masonry {
	display: block;
	column-count: 3;
	column-gap: 14px;
}

.gallery-grid--masonry .gallery-grid__item {
	margin: 0 0 14px;
	break-inside: avoid;
}

.gallery-grid--masonry .gallery-grid__item img {
	min-height: 0;
	aspect-ratio: auto;
}

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

.check-list li {
	padding: 17px 18px 17px 52px;
	border: 1px solid rgba(77, 139, 255, 0.12);
	border-radius: 12px;
	background: rgba(13, 23, 40, 0.72);
	color: var(--text-soft);
	position: relative;
}

.check-list li::before {
	content: "\2713";
	position: absolute;
	left: 16px;
	top: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 8px;
	background: rgba(29, 78, 216, 0.16);
	color: #9fc0ff;
	font-weight: 800;
}

.centered-copy {
	position: relative;
	z-index: 1;
	text-align: center;
}

.centered-copy[data-stagger],
.centered-copy .section-intro {
	justify-items: center;
}

.centered-copy[data-stagger] {
	display: grid;
}

.centered-copy[data-stagger] > * {
	margin-inline: auto;
}

.centered-copy .lead {
	margin-inline: auto;
	text-align: center;
}

.centered-copy--wide .lead {
	margin-inline: auto;
}

.site-footer {
	background: rgba(7, 16, 30, 0.88);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.3fr 0.8fr 0.9fr;
	gap: 48px;
	padding: 56px 0;
}

.brand-lockup--footer {
	margin-bottom: 20px;
}

.site-footer__blurb {
	max-width: 420px;
	color: var(--text-soft);
}

.footer-links {
	display: grid;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-links a,
.text-link,
.contact-highlight a {
	color: var(--text);
}

.footer-links a,
.footer-links--contact li,
.contact-card strong,
.contact-form label span {
	font-family: var(--font-body);
	font-weight: 650;
	letter-spacing: -0.01em;
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 0;
	color: var(--text-muted);
	font-family: var(--font-body);
	font-size: 0.92rem;
	font-weight: 500;
	letter-spacing: -0.01em;
}

.pill-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 34px;
}

.filter-pill {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0 18px;
	border: 1px solid rgba(77, 139, 255, 0.18);
	border-radius: 999px;
	background: rgba(10, 18, 34, 0.82);
	color: var(--text-soft);
	font-family: var(--font-body);
	font-size: 0.94rem;
	font-weight: 650;
	text-transform: uppercase;
	letter-spacing: -0.01em;
}

.filter-pill.is-active {
	background: linear-gradient(135deg, var(--blue-deep), var(--blue));
	color: #fff;
}

.article-meta,
.back-link {
	color: var(--text-soft);
}

.article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin: 18px 0 12px;
}

.back-link {
	display: inline-flex;
	margin-bottom: 12px;
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 650;
	letter-spacing: -0.01em;
}

.article-layout {
	max-width: 800px;
}

.article-section {
	margin-bottom: 28px;
}

.article-section .eyebrow {
	margin-bottom: 8px;
}

.article-content {
	margin-top: 30px;
	color: var(--text-soft);
}

.result-card__stats {
	padding-left: 0;
	margin: 16px 0 0;
	list-style: none;
	color: var(--text-soft);
	font-size: 0.94rem;
}

.sponsor-card {
	display: flex;
	flex-direction: column;
}

.sponsor-card__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 90px;
	margin-bottom: 18px;
	text-align: center;
}

.sponsor-card__logo img {
	max-width: 180px;
	max-height: 72px;
	border-radius: 0;
	object-fit: contain;
	margin-inline: auto;
}

.sponsor-card--story {
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.sponsor-story-card {
	padding: 22px;
}

.sponsor-story-card__header .sponsor-card {
	padding-bottom: 14px;
}

.sponsor-story-card__cta {
	margin-top: 18px;
	align-self: flex-start;
}

.sponsor-story-card__story {
	color: var(--text-soft);
}

@media (hover: hover) and (pointer: fine) {
	.sponsor-card--story:hover {
		transform: none;
		border-color: transparent;
		background: transparent;
		box-shadow: none;
	}
}

.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 36px;
}

.contact-grid > :first-child {
	display: grid;
	gap: 28px;
	align-content: start;
}

.contact-card {
	display: grid;
	gap: 10px;
	align-content: start;
}

.contact-card strong,
.contact-card a,
.contact-card span {
	display: block;
}

.contact-form-card {
	padding: 28px;
}

.contact-form {
	display: grid;
	gap: 16px;
}

.contact-form label {
	display: grid;
	gap: 8px;
	color: var(--text-soft);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	background: rgba(8, 18, 34, 0.9);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: -0.015em;
	line-height: 1.65;
}

.notice {
	padding: 14px 16px;
	margin-bottom: 18px;
	border-radius: 12px;
	font-family: var(--font-body);
	font-weight: 650;
	letter-spacing: -0.01em;
}

.notice--success {
	background: rgba(29, 78, 216, 0.14);
	color: #c8dbff;
}

.notice--error {
	background: rgba(223, 33, 121, 0.14);
	color: #ffc7e3;
}

.contact-highlight {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	margin-bottom: 0;
}

.achievement-card {
	display: grid;
	gap: 8px;
	align-content: start;
}

.achievement-card span,
.achievement-card small {
	display: block;
}

.achievement-card span {
	color: var(--text);
	font-size: 1.02rem;
	font-weight: 650;
	line-height: 1.2;
}

.achievement-card small {
	color: var(--text-muted);
	font-family: var(--font-mono);
	font-size: 0.82rem;
	letter-spacing: -0.01em;
}

.race-card {
	display: grid;
	gap: 12px;
	align-content: start;
}

.race-card__title,
.race-card__meta {
	margin-bottom: 0;
}

.race-card__highlights {
	display: grid;
	gap: 8px;
	padding: 0;
	margin: 6px 0 0;
	list-style: none;
}

.race-card__highlights li {
	padding: 8px 10px;
	border: 1px solid rgba(77, 139, 255, 0.12);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.03);
	color: var(--text-soft);
	font-family: var(--font-mono);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.prose > * + * {
	margin-top: 1.05rem;
}

.sponsor-hero {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: 30px;
	align-items: center;
}

.sponsor-hero__logo {
	padding: 24px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--card);
}

.lightbox {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 32px;
	background: rgba(2, 6, 16, 0.88);
	backdrop-filter: blur(10px);
	z-index: 80;
}

.lightbox.is-active {
	display: flex;
}

.lightbox img {
	max-width: min(1100px, 100%);
	max-height: 86vh;
	object-fit: contain;
	border-radius: 18px;
}

body.nav-open {
	overflow: hidden;
}

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

	.js [data-reveal],
	.js [data-stagger] > * {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
		transition-delay: 0ms !important;
	}

	.card,
	.report-card,
	.race-card,
	.sponsor-card,
	.result-card {
		transition:
			border-color 240ms ease,
			background 240ms ease,
			box-shadow 240ms ease !important;
	}

	.card:hover,
	.report-card:hover,
	.race-card:hover,
	.sponsor-card:hover,
	.result-card:hover {
		transform: none !important;
	}
}

@media (max-width: 1100px) {
	.card-grid--four,
	.race-grid,
	.result-grid,
	.card-grid--six {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.race-report-meta-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.site-footer__grid,
	.contact-grid,
	.sponsor-hero,
	.hero-grid,
	.split-section,
	.split-section--wide {
		grid-template-columns: 1fr;
	}

	.site-nav {
		position: fixed;
		inset: 73px 0 auto;
		padding: 16px 20px 24px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
		background: rgba(8, 18, 34, 0.98);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px);
		transition: 180ms ease;
	}

	body.nav-open .site-nav {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.menu {
		flex-direction: column;
		align-items: stretch;
	}

	.menu a {
		padding: 12px 14px;
	}

	.site-header__toggle {
		display: inline-flex;
	}

	.site-header__cta {
		display: none;
	}

	.gallery-grid--masonry {
		column-count: 2;
	}
}

@media (max-width: 820px) {
	.section,
	.hero {
		padding: 56px 0;
	}

	.display-title {
		font-size: clamp(2.7rem, 12vw, 4rem);
	}

	.section-title {
		font-size: clamp(2rem, 8vw, 3rem);
	}

	.card-grid--three,
	.report-grid,
	.sponsor-grid,
	.card-grid--four,
	.race-grid,
	.result-grid,
	.card-grid--six,
	.stat-grid,
	.gallery-grid {
		grid-template-columns: 1fr;
	}

	.race-report-meta-grid {
		grid-template-columns: 1fr;
	}

	.section-heading,
	.site-footer__bottom-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.site-header__inner {
		gap: 16px;
	}

	.brand-mark {
		width: 54px;
		flex-basis: 54px;
	}

	.brand-copy strong {
		font-size: 0.82rem;
		letter-spacing: 0.14em;
	}

	.brand-copy small {
		font-size: 0.75rem;
	}

	.gallery-grid--masonry {
		column-count: 1;
	}
}
