:root {
	--orange: #ed481c;
	--orange-dark: #bd3212;
	--ink: #20201d;
	--muted: #6c6a62;
	--paper: #ffffff;
	--line: rgba(32, 32, 29, 0.16);
}

* { box-sizing: border-box; }

body {
	margin: 0;
	min-height: 100vh;
	color: var(--ink);
	background: var(--paper);
	font-family: "DM Sans", sans-serif;
}

.page {
	min-height: 100vh;
	display: grid;
	grid-template-rows: auto 1fr auto;
	overflow: hidden;
	position: relative;
}

.page::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: .3;
	background-image: radial-gradient(rgba(32, 32, 29, .16) .7px, transparent .7px);
	background-size: 7px 7px;
	-webkit-mask-image: linear-gradient(to bottom, black, transparent 75%);
	mask-image: linear-gradient(to bottom, black, transparent 75%);
}

header, main, footer { position: relative; z-index: 1; }

header {
	width: min(1180px, calc(100% - 64px));
	margin: 0 auto;
	padding: 28px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--line);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: var(--ink);
	font-family: "Space Grotesk", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: .04em;
	text-decoration: none;
}

.brand img { width: 112px; height: auto; display: block; }

.status {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--orange-dark);
	font-size: .73rem;
	font-weight: 700;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.status::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--orange);
	box-shadow: 0 0 0 5px rgba(237, 72, 28, .13);
}

main {
	width: min(1180px, calc(100% - 64px));
	margin: 0 auto;
	padding: clamp(58px, 9vw, 126px) 0 clamp(60px, 8vw, 108px);
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(290px, .8fr);
	gap: clamp(50px, 9vw, 150px);
	align-items: center;
}

.eyebrow {
	margin: 0 0 22px;
	color: var(--orange);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
}

h1 {
	max-width: 730px;
	margin: 0;
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(3.5rem, 8vw, 7.6rem);
	line-height: .91;
	letter-spacing: -.055em;
}

.underline {
    text-decoration: underline;
    text-decoration-color: var(--orange);
}
.highlight {
    color: var(--orange);
}
.title-line {
    line-height: 1.2;
}

.intro {
	max-width: 520px;
	margin: 32px 0 0;
	color: var(--muted);
	font-size: clamp(1.05rem, 1.7vw, 1.28rem);
	line-height: 1.55;
}

.note {
	padding: 28px;
	border: 1px solid var(--ink);
	border-radius: 2px;
	background: #ffffff;
	box-shadow: 9px 9px 0 var(--orange);
	animation: reveal .7s ease-out both;
}

.note-kicker {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 21px;
	border-bottom: 1px solid var(--line);
	color: var(--muted);
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.note-kicker strong { color: var(--ink); }

.note h2 {
	margin: 25px 0 13px;
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(1.55rem, 3vw, 2.15rem);
	line-height: 1.05;
}

.note p { margin: 0; color: var(--muted); line-height: 1.6; }

.topics {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 25px;
}

.topics span {
	padding: 8px 10px;
	border: 1px solid var(--line);
	color: var(--ink);
	font-size: .74rem;
	font-weight: 700;
}

footer {
	width: min(1180px, calc(100% - 64px));
	margin: 0 auto;
	padding: 20px 0 26px;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	border-top: 1px solid var(--line);
	color: var(--muted);
	font-size: .78rem;
}

footer p { margin: 0; }
footer strong { color: var(--ink); }

@keyframes reveal {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 700px) {
	header, main, footer { width: min(100% - 40px, 520px); }
	header { padding: 20px 0; }
	.brand { font-size: .88rem; }
	.brand img { width: 84px; }
	.brand span { display: none; }
	.status { font-size: .62rem; letter-spacing: .08em; }
	main { grid-template-columns: 1fr; gap: 48px; padding-top: 68px; }
	h1 { font-size: clamp(3.45rem, 17vw, 5.5rem); }
	.intro { margin-top: 24px; }
	.note { padding: 22px; box-shadow: 6px 6px 0 var(--orange); }
	footer { flex-direction: column; gap: 8px; padding-bottom: 20px; }
}
