:root {
	--ink: #171716;
	--muted: #77736c;
	--paper: #f8f6f0;
	--cream: #f1ede3;
	--orange: #f06d4f;
	--orange-dark: #d95339;
	--yellow: #f9cb69;
	--blue: #cfe4df;
	--lilac: #ded8ef;
	--line: rgba(23, 23, 22, 0.14);
	--serif: "Fraunces", Georgia, serif;
	--sans: "DM Sans", Arial, sans-serif;
	--mono: "DM Mono", monospace;
}

* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.5;
}
a {
	color: inherit;
	text-decoration: none;
}
a:focus-visible {
	outline: 3px solid var(--orange-dark);
	outline-offset: 4px;
}
.shell {
	width: min(1160px, calc(100% - 48px));
	margin: 0 auto;
}

.site-header {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding: 27px 0;
}
.wordmark {
	align-items: center;
	display: inline-flex;
	font-size: 18px;
	font-weight: 700;
	gap: 9px;
	letter-spacing: -0.04em;
}
.wordmark-mark {
	align-items: center;
	background: var(--orange);
	border-radius: 50%;
	display: inline-flex;
	font-size: 11px;
	height: 25px;
	justify-content: center;
	width: 25px;
}
nav {
	align-items: center;
	display: flex;
	font-family: var(--mono);
	font-size: 12px;
	gap: 27px;
}
nav a:not(.nav-pill),
.text-link {
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s ease;
}
nav a:not(.nav-pill):hover,
.text-link:hover {
	border-color: currentColor;
}
.nav-pill {
	border: 1px solid var(--ink);
	border-radius: 99px;
	padding: 10px 15px;
}

.hero {
	align-items: center;
	display: grid;
	gap: 50px;
	grid-template-columns: minmax(0, 0.94fr) minmax(260px, 1.06fr);
	min-height: 635px;
	padding-bottom: 92px;
	padding-top: 62px;
}
.eyebrow,
.section-number,
.day-time,
.evidence-row b {
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.eyebrow {
	align-items: center;
	display: flex;
	gap: 8px;
}
.status-dot {
	background: #57a06c;
	border-radius: 50%;
	display: inline-block;
	height: 8px;
	width: 8px;
}
h1,
h2 {
	letter-spacing: -0.065em;
	line-height: 0.98;
	margin: 24px 0;
}
h1 {
	font-size: clamp(58px, 7.7vw, 104px);
	max-width: 700px;
}
h1 em,
h2 span {
	color: var(--orange);
	font-family: var(--serif);
	font-style: italic;
	font-weight: 600;
	letter-spacing: -0.08em;
}
.hero-lede {
	font-size: 19px;
	line-height: 1.45;
	max-width: 480px;
}
.hero-actions,
.closing-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 23px;
	margin-top: 31px;
}
.button {
	border-radius: 100px;
	display: inline-flex;
	font-size: 13px;
	font-weight: 600;
	gap: 15px;
	padding: 15px 20px;
	transition:
		background 0.2s,
		transform 0.2s;
}
.button:hover {
	transform: translateY(-2px);
}
.button-dark {
	background: var(--ink);
	color: var(--paper);
}
.button-dark:hover {
	background: var(--orange-dark);
}
.button-light {
	background: var(--paper);
	border: 1px solid var(--ink);
}
.text-link {
	font-size: 13px;
	font-weight: 600;
	padding-bottom: 3px;
}

.hero-art {
	background: var(--yellow);
	border-radius: 50% 48% 53% 46%;
	min-height: 480px;
	overflow: hidden;
	position: relative;
	transform: rotate(-2deg);
}
.printer-illustration {
	bottom: 8%;
	height: auto;
	left: 50%;
	max-height: 84%;
	max-width: 560px;
	object-fit: contain;
	position: absolute;
	transform: translateX(-50%) rotate(2deg);
	width: 88%;
}
.printer-body,
.printer-front {
	fill: #f5f1e9;
	stroke: var(--ink);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 5;
}
.printer-top {
	fill: #e8e2d6;
	stroke: var(--ink);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 5;
}
.printer-slot {
	fill: #b9b1a4;
	stroke: var(--ink);
	stroke-linejoin: round;
	stroke-width: 5;
}
.printer-slot-inner {
	stroke: var(--ink);
	stroke-linecap: round;
	stroke-width: 4;
}
.printer-seam,
.printer-detail {
	stroke: var(--ink);
	stroke-linecap: round;
	stroke-width: 4;
}
.paper {
	fill: #fffdf8;
	stroke: var(--ink);
	stroke-linejoin: round;
	stroke-width: 5;
}
.paper-line {
	stroke: var(--orange);
	stroke-linecap: round;
	stroke-width: 4;
}
.paper-sun {
	fill: var(--yellow);
	stroke: var(--ink);
	stroke-width: 3;
}
.paper-back {
	transform: rotate(-3deg);
	transform-origin: 250px 170px;
}
.paper-front {
	stroke-width: 4;
}
.shadow {
	stroke: rgba(23, 23, 22, 0.2);
	stroke-linecap: round;
	stroke-width: 12;
}
.screen {
	fill: var(--blue);
	stroke: var(--ink);
	stroke-width: 4;
}
.print-button {
	fill: var(--orange);
	stroke: var(--ink);
	stroke-width: 4;
}
.button-mark,
.small-button {
	fill: none;
	stroke: var(--ink);
	stroke-linecap: round;
	stroke-width: 3;
}
.small-button {
	fill: var(--yellow);
}
.logo-dot {
	fill: var(--orange);
	stroke: var(--ink);
	stroke-width: 3;
}
.logo-star {
	fill: var(--paper);
}
.story-section,
.flow-section,
.questions-section {
	border-top: 1px solid var(--line);
}
.story-section {
	padding-bottom: 145px;
	padding-top: 30px;
}
.section-number {
	color: var(--muted);
	margin: 0;
}
.manifesto-grid {
	display: grid;
	gap: 80px;
	grid-template-columns: 1.1fr 0.9fr;
	margin-top: 55px;
}
h2 {
	font-size: clamp(47px, 6.3vw, 80px);
}
.story-section .manifesto-grid h2 {
	margin: 0;
}
.large-copy {
	font-size: 25px;
	letter-spacing: -0.03em;
	line-height: 1.25;
	margin: 0 0 24px;
}
.manifesto-grid div > p:last-child,
.evidence-copy > p:not(.section-number) {
	color: var(--muted);
	max-width: 430px;
}

.day-section {
	padding-top: 185px;
}
.section-intro {
	align-items: end;
	display: flex;
	justify-content: space-between;
}
.section-intro h2 {
	margin: 52px 0 0;
}
.day-agent-map {
	height: 148px;
	margin: 35px 0 0;
	position: relative;
}
.day-agent-node {
	align-items: center;
	background: var(--orange);
	border: 4px solid var(--ink);
	border-radius: 999px;
	display: flex;
	gap: 18px;
	height: 100px;
	justify-content: flex-start;
	left: 50%;
	padding: 10px 25px 10px 18px;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	width: min(460px, calc(100% - 32px));
	white-space: nowrap;
	z-index: 1;
}
.day-printer-icon {
	height: 70px;
	flex: 0 0 70px;
	width: 70px;
}
.day-printer-icon .printer-body,
.day-printer-icon .printer-front {
	stroke-width: 7;
}
.day-printer-icon .printer-top,
.day-printer-icon .printer-slot {
	stroke-width: 7;
}
.day-printer-icon .printer-slot-inner,
.day-printer-icon .printer-seam,
.day-printer-icon .button-mark {
	stroke-width: 5;
}
.day-printer-icon .screen {
	stroke-width: 6;
}
.day-printer-icon .print-button,
.day-printer-icon .logo-dot {
	stroke-width: 6;
}
.day-agent-node strong {
	font-size: 22px;
}
.day-agent-node small {
	color: rgba(23, 23, 22, 0.65);
	font-family: var(--mono);
	font-size: 15px;
	margin-left: 4px;
}
.day-agent-node::after {
	border-left: 1px solid var(--ink);
	bottom: -24px;
	content: "";
	height: 24px;
	left: 50%;
	position: absolute;
}
.day-agent-branches {
	border-top: 1px solid var(--ink);
	height: 24px;
	left: calc((100% - 38px) / 6);
	position: absolute;
	top: 124px;
	width: calc(100% - ((100% - 38px) / 3));
}
.day-agent-branches span {
	border-left: 1px solid var(--ink);
	height: 24px;
	position: absolute;
	top: 0;
}
.day-agent-branches span:nth-child(1) {
	left: 0;
}
.day-agent-branches span:nth-child(2) {
	left: 50%;
}
.day-agent-branches span:nth-child(3) {
	right: 0;
}
.day-list {
	display: grid;
	gap: 19px;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 0;
}
.day-card {
	min-height: 392px;
	padding: 22px 22px 26px;
	position: relative;
}
.day-morning {
	background: var(--blue);
}
.day-afternoon {
	background: var(--orange);
}
.day-night {
	background: var(--lilac);
}
.day-time {
	display: flex;
	justify-content: space-between;
}
.day-time span {
	opacity: 0.62;
}
.receipt {
	background: #fffdf8;
	box-shadow: 2px 4px 0 rgba(23, 23, 22, 0.12);
	display: flex;
	flex-direction: column;
	font-family: var(--mono);
	font-size: 10px;
	gap: 7px;
	left: 50%;
	min-height: 206px;
	padding: 22px 18px;
	position: absolute;
	text-align: center;
	top: 78px;
	transform: translateX(-50%) rotate(-3deg);
	width: min(190px, calc(100% - 46px));
}
.receipt::after {
	background:
		linear-gradient(135deg, transparent 6px, #fffdf8 0) 0 0 / 12px 12px repeat-x;
	bottom: -9px;
	content: "";
	height: 10px;
	left: 0;
	position: absolute;
	width: 100%;
}
.receipt strong {
	font-size: 12px;
	letter-spacing: 0.05em;
	margin-bottom: 8px;
}
.receipt-icon {
	font-family: var(--serif);
	font-size: 29px;
	line-height: 1;
}
.receipt-fact {
	transform: translateX(-50%) rotate(3deg);
}
.receipt-story {
	transform: translateX(-50%) rotate(-2deg);
}
.day-card > p {
	bottom: 21px;
	font-size: 13px;
	left: 22px;
	line-height: 1.35;
	margin: 0;
	position: absolute;
}
.day-card > p strong {
	font-size: 15px;
}

.flow-section {
	padding-bottom: 140px;
	padding-top: 31px;
}
.flow-heading {
	display: flex;
	justify-content: space-between;
}
.flow-heading h2 {
	margin: 52px 0 0;
}
.flow {
	align-items: center;
	display: flex;
	justify-content: center;
	margin: 100px 0 35px;
}
.flow-node {
	align-items: center;
	background: var(--yellow);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	height: 173px;
	justify-content: center;
	text-align: center;
	width: 173px;
}
.flow-agent {
	background: var(--orange);
}
.flow-paper {
	background: var(--blue);
}
.flow-icon {
	font-size: 29px;
	line-height: 1;
	margin-bottom: 11px;
}
.flow-node strong {
	font-size: 15px;
}
.flow-node small {
	color: rgba(23, 23, 22, 0.62);
	font-family: var(--mono);
	font-size: 9px;
	margin-top: 5px;
}
.flow-arrow {
	font-size: 25px;
	margin: 0 25px;
}
.flow-note {
	color: var(--muted);
	font-size: 14px;
	margin: auto;
	max-width: 520px;
	text-align: center;
}

.questions-section {
	display: grid;
	gap: 80px;
	grid-template-columns: 0.9fr 1.1fr;
	padding-bottom: 145px;
	padding-top: 31px;
}
.questions-section .section-intro {
	display: block;
}
.questions-section h2 {
	margin: 52px 0 0;
}
.question-list {
	border-top: 1px solid var(--line);
	margin-top: 51px;
}
.question {
	align-items: start;
	border-bottom: 1px solid var(--line);
	display: grid;
	gap: 30px;
	grid-template-columns: 36px 1fr;
	padding: 22px 0;
}
.question span {
	color: var(--orange-dark);
	font-family: var(--mono);
	font-size: 11px;
}
.question p {
	font-family: var(--serif);
	font-size: 24px;
	line-height: 1.15;
	margin: -5px 0 0;
}

.evidence-section {
	align-items: start;
	background: var(--ink);
	color: var(--paper);
	display: grid;
	gap: 90px;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	margin-bottom: 0;
	margin-left: calc(50% - 50vw);
	padding: 31px max(24px, calc((100vw - 1160px) / 2)) 130px;
	width: 100vw;
}
.evidence-section .section-number {
	color: rgba(248, 246, 240, 0.55);
}
.evidence-copy h2 {
	margin-top: 52px;
}
.evidence-copy > p:not(.section-number) {
	color: rgba(248, 246, 240, 0.65);
}
.evidence-copy .text-link {
	border-color: rgba(248, 246, 240, 0.4);
	display: inline-block;
	margin-top: 12px;
}
.evidence-card {
	margin-top: 56px;
}
.evidence-row {
	align-items: center;
	border-bottom: 1px solid rgba(248, 246, 240, 0.2);
	display: flex;
	font-size: 14px;
	justify-content: space-between;
	padding: 16px 0;
}
.evidence-row b {
	color: var(--yellow);
	font-size: 10px;
	font-weight: 400;
}
.evidence-row-muted {
	color: rgba(248, 246, 240, 0.48);
}
.evidence-row-muted b {
	color: var(--orange);
}
.evidence-footnote {
	color: rgba(248, 246, 240, 0.5);
	font-family: var(--mono);
	font-size: 10px;
	line-height: 1.5;
	margin-top: 28px;
	max-width: 450px;
}

.closing {
	align-items: center;
	display: flex;
	flex-direction: column;
	padding-bottom: 150px;
	padding-top: 135px;
	text-align: center;
}
.closing-art {
	display: flex;
	gap: 8px;
	margin-bottom: 40px;
}
.closing-art span {
	align-items: center;
	border-radius: 50%;
	display: inline-flex;
	height: 50px;
	justify-content: center;
	width: 50px;
}
.closing-art span:nth-child(1) {
	background: var(--orange);
}
.closing-art span:nth-child(2) {
	background: var(--yellow);
}
.closing-art span:nth-child(3) {
	background: var(--lilac);
}
.closing-art span:nth-child(4) {
	background: var(--blue);
}
.closing h2 {
	margin: 22px 0 15px;
}
.closing > p:not(.eyebrow) {
	color: var(--muted);
	margin: 0;
	max-width: 400px;
}
.site-footer {
	border-top: 1px solid var(--line);
	color: var(--muted);
	display: flex;
	font-family: var(--mono);
	font-size: 10px;
	justify-content: space-between;
	padding: 21px 0 28px;
	text-transform: uppercase;
}

.evidence-section > * {
	min-width: 0;
}
@media (max-width: 800px) {
	.hero {
		grid-template-columns: 1fr;
		padding-top: 35px;
	}
	.hero-art {
		min-height: 410px;
	}
	.manifesto-grid,
	.questions-section {
		gap: 35px;
		grid-template-columns: 1fr;
	}
	.section-intro,
	.flow-heading {
		align-items: start;
		display: block;
	}
	.section-intro h2,
	.flow-heading h2,
	.questions-section h2 {
		margin-top: 35px;
	}
	.day-list {
		grid-template-columns: 1fr;
	}
	.day-card {
		min-height: 380px;
	}
	.flow {
		flex-direction: column;
		margin-top: 60px;
	}
	.flow-arrow {
		margin: 16px 0;
		transform: rotate(90deg);
	}
	.day-agent-node {
		height: 76px;
		gap: 11px;
		padding: 8px 15px 8px 11px;
	}
	.day-printer-icon {
		flex-basis: 52px;
		height: 52px;
		width: 52px;
	}
	.day-agent-node strong {
		font-size: 15px;
	}
	.day-agent-node small {
		font-size: 9px;
	}
	.day-agent-map {
		height: 100px;
	}
	.day-agent-branches {
		display: none;
	}
	.day-agent-node::after {
		bottom: -24px;
	}
	.evidence-section {
		margin-left: 0;
		width: 100%;
		gap: 20px;
		grid-template-columns: 1fr;
	}
	.evidence-section > * {
		width: 100%;
	}
	.evidence-card {
		margin-top: 15px;
	}
}
@media (max-width: 560px) {
	.shell {
		width: min(100% - 32px, 1160px);
	}
	nav a:not(.nav-pill) {
		display: none;
	}
	.site-header {
		padding: 19px 0;
	}
	.nav-pill {
		font-size: 10px;
		padding: 8px 11px;
	}
	.hero {
		min-height: 0;
		padding-bottom: 80px;
	}
	h1 {
		font-size: clamp(51px, 15vw, 78px);
	}
	.hero-lede {
		font-size: 17px;
	}
	.hero-art {
		min-height: 325px;
	}
	.story-section,
	.flow-section,
	.questions-section {
		padding-bottom: 90px;
	}
	.large-copy {
		font-size: 22px;
	}
	.question p {
		font-size: 21px;
	}
	.evidence-section {
		margin-left: -16px;
		padding-bottom: 90px;
		width: calc(100% + 32px);
	}
	.evidence-row {
		align-items: start;
		flex-direction: column;
		gap: 5px;
	}
	.closing {
		padding-bottom: 90px;
		padding-top: 90px;
	}
	.closing h2 {
		font-size: 53px;
	}
	.site-footer {
		gap: 12px;
		flex-direction: column;
	}
}
@media (max-width: 360px) {
	.day-agent-node small {
		display: none;
	}
}
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	.button:hover {
		transform: none;
	}
}
