:root {
	--bg: #FFFFFF;
	--fg: #262626;
	--maxw: 900px;
	--gutter: 20px
}

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

img,
svg,
video {
	display: block;
	max-width: 100%;
	height: auto
}

body {
	margin: 0;
	font-family: "Outfit", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	background: var(--bg);
	color: var(--fg);
	overflow-wrap: anywhere
}

a,
a:visited {
	color: inherit;
	text-decoration: underline;
	font-weight: 700
}

.circle-link {
	text-decoration: none;
	font-weight: inherit
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-block: 20px
}

.logo,
.circle-link {
	height: 50px
}

.logo svg,
.circle-link svg {
	height: 100%;
	width: auto
}

.hero-text {
	font-size: clamp(4.7rem, 13vw, 10rem);
	font-weight: 700;
	line-height: 1.15;
	margin: 5px 0 10px
}

.hero-text:last-of-type {
	margin-bottom: 60px
}

.secondary-text {
	font-size: clamp(2rem, 4vw, 6rem);
	font-weight: 700;
	line-height: 1.25;
	margin: 20px 0 40px
}

.secondary-text a {
	color: inherit;
	text-decoration: underline
}

.secondary-text a:hover {
	text-decoration: underline
}

.images {
	display: flex;
	flex-direction: column;
	margin: 60px 0 20px
}

.image-block img {
	width: 100%;
	height: auto;
	border: none;
	border-radius: 0
}

.image-block:not(:last-child) {
	margin-bottom: 20px
}

.image-caption {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin: 8px 0 40px
}

.image-caption .secondary-text {
	margin: 0
}

.image-caption .circle-link {
	height: clamp(28px, 5vw, 50px)
}

.image-block .secondary-text+.circle-link {
	display: inline-flex;
	align-items: center;
	height: clamp(28px, 5vw, 50px);
	float: right;
	margin-left: 12px
}

.image-block::after {
	content: "";
	display: block;
	clear: both
}

.blacked-out,
.redacted {
	position: relative;
	display: inline-block;
	color: var(--fg);
	font-weight: 700
}

.blacked-out::before,
.redacted::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: .6em;
	background: var(--fg);
	transform: rotate(var(--angle, 0deg)) translateY(-50%);
	transform-origin: center;
	pointer-events: none;
	z-index: 1
}

.redact-delay {
	color: inherit;
	background: transparent;
	transition: none;
	display: inline-block
}

.form-section {
	padding: 20px 0
}

form {
	display: flex;
	flex-direction: column;
	gap: 20px
}

.form-input {
	font-size: clamp(2rem, 4vw, 6rem);
	font-weight: 700;
	font-family: "Outfit", sans-serif;
	background: #fff;
	color: var(--fg);
	padding: 20px;
	width: 100%;
	border: none;
	box-shadow: none
}

.form-input::placeholder {
	color: var(--fg);
	font-size: clamp(2rem, 4vw, 6rem);
	font-weight: 700
}

textarea.form-input {
	resize: none
}

.form-submit {
	font-size: clamp(2rem, 4vw, 6rem);
	font-weight: 700;
	font-family: "Outfit", sans-serif;
	text-align: left;
	padding: 20px;
	background: var(--fg);
	color: #fff;
	border: none;
	cursor: pointer;
	border-radius: 0;
	width: fit-content
}

.form-input:focus {
	outline: 5px solid var(--fg)
}

a:focus-visible,
.circle-link:focus-visible,
.form-submit:focus-visible {
	outline: 5px solid var(--fg);
	outline-offset: 2px
}

.container {
	max-width: var(--maxw);
	margin: 0 auto;
	padding-inline: var(--gutter)
}

.site-footer,
.download-cta {
	max-width: var(--maxw);
	margin: 24px auto;
	padding-inline: var(--gutter)
}

.site-footer {
	margin-top: 48px;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between
}

.site-footer .circle-link {
	height: 50px;
}

.site-footer .circle-link svg {
	height: 100%;
	width: auto;
}
