/* stylelint-disable no-descending-specificity */
/* stylelint-disable value-keyword-case */
/* stylelint-disable declaration-colon-newline-after */
/* stylelint-disable value-list-comma-newline-after */
/* stylelint-disable function-parentheses-space-inside */
/* stylelint-disable function-comma-space-after */

:root {
	--cream: #fff8e7;
	--white: #fffef8;
	--ink: #151515;
	--yellow: #ffd93d;
	--pink: #ff5ba7;
	--blue: #5547d9;
	--cyan: #79e5f3;
	--lime: #b9ff48;
	--orange: #ff754b;
	--border: 3px solid var(--ink);
	--shadow-small: 4px 4px 0 var(--ink);
	--shadow: 7px 7px 0 var(--ink);
	--shadow-large: 12px 12px 0 var(--ink);
	--shell: min(1240px, calc(100vw - 48px));
	--sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
		sans-serif;
	--serif: Georgia, "Times New Roman", serif;
}

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

html {
	scroll-behavior: auto;
	scroll-padding-top: 96px;
}

body {
	margin: 0;
	background: var(--cream);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

body::selection {
	background: var(--pink);
	color: var(--ink);
}

button,
input,
select,
textarea {
	font: inherit;
}

button,
a,
summary {
	-webkit-tap-highlight-color: transparent;
}

a {
	color: inherit;
}

img,
svg {
	display: block;
}

img {
	max-width: 100%;
}

figure,
p,
h1,
h2,
h3 {
	margin-top: 0;
}

.shell {
	width: var(--shell);
	margin-inline: auto;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: fixed;
	z-index: 300;
	top: 12px;
	left: 12px;
	padding: 10px 16px;
	border: var(--border);
	background: var(--lime);
	font-weight: 900;
	text-decoration: none;
	transform: translateY(-180%);
}

.skip-link:focus {
	transform: translateY(0);
}

:focus-visible {
	outline: 4px solid var(--blue);
	outline-offset: 4px;
}

.site-header {
	position: sticky;
	z-index: 100;
	top: 0;
	border-bottom: var(--border);
	background: var(--yellow);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 78px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 17px;
	font-weight: 950;
	letter-spacing: -0.03em;
	text-decoration: none;
}

.brand-mark {
	display: grid;
	grid-template-columns: repeat(2, 8px);
	gap: 3px;
	padding: 7px;
	border: 2px solid var(--ink);
	background: var(--blue);
	box-shadow: 3px 3px 0 var(--ink);
	transform: rotate(-3deg);
}

.brand-mark span {
	width: 8px;
	height: 8px;
	background: var(--lime);
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 28px;
}

.site-nav a {
	font-size: 14px;
	font-weight: 850;
	text-decoration-thickness: 2px;
	text-underline-offset: 5px;
}

.site-nav a:hover {
	text-decoration-line: underline;
}

.site-nav .header-download {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 10px 15px;
	border: var(--border);
	background: var(--pink);
	box-shadow: var(--shadow-small);
	line-height: 1.2;
	text-decoration: none;
}

.site-nav .header-download:active {
	box-shadow: none;
	transform: translate(4px, 4px);
}

.header-download span {
	font-size: 19px;
	line-height: 1;
}

.menu-toggle {
	display: none;
	width: 45px;
	height: 43px;
	padding: 8px;
	border: var(--border);
	background: var(--pink);
	box-shadow: 3px 3px 0 var(--ink);
	cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
	display: block;
	width: 23px;
	height: 3px;
	margin: 5px auto;
	background: var(--ink);
}

.hero {
	position: relative;
	padding: clamp(92px, 10vw, 148px) 0 110px;
	overflow: hidden;
	border-bottom: var(--border);
	background-color: var(--cream);
	background-image: radial-gradient(var(--ink) 1.4px, transparent 1.4px);
	background-size: 28px 28px;
}

.hero::before {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		var(--cream) 0%,
		rgb(255 248 231 / 94%) 43%,
		rgb(255 248 231 / 60%) 100%
	);
	content: "";
}

.hero-layout {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(580px, 1.15fr);
	align-items: center;
	gap: clamp(58px, 7vw, 106px);
}

.hero-copy {
	position: relative;
	z-index: 2;
}

.eyebrow,
.section-label {
	margin-bottom: 22px;
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 7px 11px;
	border: 2px solid var(--ink);
	background: var(--cyan);
	box-shadow: 3px 3px 0 var(--ink);
	transform: rotate(-1deg);
}

.eyebrow span {
	font-size: 16px;
	line-height: 1;
}

.hero h1,
.free-statement h2,
.section-heading h2,
.faq-heading h2,
.cta-copy h2 {
	margin-bottom: 0;
	font-weight: 950;
	letter-spacing: -0.065em;
	line-height: 0.94;
}

.hero h1 {
	max-width: 650px;
	font-size: clamp(58px, 6.6vw, 96px);
}

.hero h1 em,
.free-statement h2 em,
.section-heading h2 em,
.faq-heading h2 em {
	font-family: var(--serif);
	font-weight: 500;
}

.hero h1 em {
	position: relative;
	display: inline-block;
	z-index: 1;
}

.hero h1 em::before {
	position: absolute;
	z-index: -1;
	right: -8px;
	bottom: 4px;
	left: -8px;
	height: 26%;
	border: 2px solid var(--ink);
	background: var(--pink);
	content: "";
	transform: rotate(-2deg);
}

.hero-lead {
	max-width: 600px;
	margin: 30px 0 0;
	font-size: clamp(18px, 1.65vw, 22px);
	font-weight: 600;
	line-height: 1.55;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 17px;
	margin-top: 34px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 53px;
	padding: 12px 20px;
	border: var(--border);
	box-shadow: var(--shadow-small);
	font-size: 15px;
	font-weight: 950;
	line-height: 1.2;
	text-decoration: none;
}

.button:active {
	box-shadow: none;
	transform: translate(4px, 4px);
}

.button span {
	font-size: 20px;
	line-height: 1;
}

.button-primary {
	background: var(--lime);
}

.button-secondary {
	background: var(--white);
}

.compatibility {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0;
	margin: 30px 0 0;
	list-style: none;
}

.compatibility li {
	padding: 5px 10px;
	border: 2px solid var(--ink);
	background: var(--white);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.compatibility li:nth-child(2) {
	background: var(--yellow);
}

.compatibility li:nth-child(3) {
	background: var(--pink);
}

.hero-visual {
	position: relative;
	min-width: 0;
	transform: rotate(1.25deg);
}

.screenshot-window {
	border: var(--border);
	background: var(--white);
	box-shadow: var(--shadow-large);
}

.window-bar {
	display: flex;
	align-items: center;
	gap: 7px;
	height: 42px;
	padding: 0 14px;
	border-bottom: var(--border);
	background: var(--blue);
}

.window-bar > span {
	width: 11px;
	height: 11px;
	border: 2px solid var(--ink);
	border-radius: 50%;
	background: var(--pink);
}

.window-bar > span:nth-child(2) {
	background: var(--yellow);
}

.window-bar > span:nth-child(3) {
	background: var(--lime);
}

.window-bar strong {
	margin-left: auto;
	color: var(--white);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.hero-crop {
	position: relative;
	height: clamp(460px, 45vw, 575px);
	overflow: hidden;
	background: #f3f3f3;
}

.hero-crop img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.hero-sticker {
	position: absolute;
	z-index: 3;
	right: -30px;
	bottom: -32px;
	display: grid;
	width: 112px;
	height: 112px;
	place-items: center;
	border: var(--border);
	border-radius: 50%;
	background: var(--pink);
	box-shadow: 5px 5px 0 var(--ink);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0.09em;
	line-height: 1.15;
	text-align: center;
	transform: rotate(9deg);
}

.free-section {
	padding: clamp(90px, 10vw, 144px) 0;
	overflow: hidden;
	border-bottom: var(--border);
	background: var(--yellow);
}

.free-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
	align-items: center;
	gap: clamp(56px, 9vw, 130px);
}

.free-statement {
	position: relative;
	padding: clamp(30px, 4vw, 56px);
	border: var(--border);
	background: var(--white);
	box-shadow: var(--shadow-large);
	transform: rotate(-1deg);
}

.free-statement::after {
	position: absolute;
	right: -23px;
	bottom: -23px;
	width: 62px;
	height: 62px;
	border: var(--border);
	background: var(--cyan);
	content: "";
	transform: rotate(8deg);
}

.free-statement .section-label {
	display: inline-block;
	padding: 6px 10px;
	border: 2px solid var(--ink);
	background: var(--lime);
}

.free-statement h2 {
	font-size: clamp(48px, 6.2vw, 88px);
}

.free-statement h2 em {
	position: relative;
	display: inline-block;
	color: var(--blue);
}

.free-statement p:last-child {
	max-width: 610px;
	margin: 30px 0 0;
	font-size: clamp(18px, 1.8vw, 22px);
	font-weight: 650;
}

.free-facts {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.free-facts li {
	display: flex;
	min-height: 178px;
	flex-direction: column;
	justify-content: space-between;
	padding: 22px;
	border: var(--border);
	box-shadow: var(--shadow-small);
}

.free-facts li:nth-child(1),
.free-facts li:nth-child(4) {
	transform: rotate(2deg);
}

.free-facts li:nth-child(2),
.free-facts li:nth-child(3) {
	transform: rotate(-2deg);
}

.free-facts strong {
	font-size: clamp(44px, 5vw, 70px);
	font-weight: 950;
	letter-spacing: -0.07em;
	line-height: 0.9;
}

.free-facts span {
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0.08em;
	line-height: 1.25;
	text-transform: uppercase;
}

.fact-pink {
	background: var(--pink);
}

.fact-blue {
	background: var(--blue);
	color: var(--white);
}

.fact-lime {
	background: var(--lime);
}

.fact-yellow {
	background: var(--cyan);
}

.screenshots-section {
	padding: clamp(100px, 11vw, 160px) 0;
	border-bottom: var(--border);
	background: var(--cream);
}

.section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
	align-items: end;
	gap: 70px;
	margin-bottom: 74px;
}

.section-heading .section-label {
	display: inline-block;
	padding: 6px 10px;
	border: 2px solid var(--ink);
	background: var(--pink);
	box-shadow: 3px 3px 0 var(--ink);
	transform: rotate(-1deg);
}

.section-heading h2,
.faq-heading h2 {
	font-size: clamp(54px, 7vw, 94px);
}

.section-heading h2 em {
	color: var(--blue);
}

.section-heading > p {
	max-width: 510px;
	margin: 0;
	font-size: clamp(18px, 1.8vw, 22px);
	font-weight: 650;
}

.layout-gallery {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: clamp(24px, 3.5vw, 46px);
}

.shot {
	display: block;
	color: var(--ink);
	text-decoration: none;
}

.shot-classic {
	grid-column: 1 / span 7;
	transform: rotate(-0.75deg);
}

.shot-magazine {
	grid-column: 8 / -1;
	padding-top: 86px;
	transform: rotate(1deg);
}

.shot-feed {
	grid-column: 1 / span 5;
	padding-top: 24px;
	transform: rotate(1.2deg);
}

.shot-gallery {
	grid-column: 6 / -1;
	padding-top: 98px;
	transform: rotate(-0.8deg);
}

.shot figure,
.control-shot figure {
	margin: 0;
}

.shot-image {
	height: 360px;
	overflow: hidden;
	border: var(--border);
	background: #ddd;
	box-shadow: var(--shadow);
}

.shot-magazine .shot-image,
.shot-feed .shot-image {
	height: 310px;
}

.shot-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 18%;
}

.shot figcaption {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 20px;
	padding: 16px 3px 0;
}

.shot figcaption strong {
	font-size: clamp(21px, 2.5vw, 31px);
	font-weight: 950;
	letter-spacing: -0.045em;
}

.shot figcaption span {
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-align: right;
	text-transform: uppercase;
}

.controls-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding: 28px 32px;
	margin: 110px 0 40px;
	border: var(--border);
	background: var(--blue);
	box-shadow: var(--shadow);
	color: var(--white);
	transform: rotate(0.5deg);
}

.controls-heading span {
	padding: 5px 8px;
	border: 2px solid var(--ink);
	background: var(--lime);
	color: var(--ink);
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.controls-heading h3 {
	margin: 0;
	font-size: clamp(26px, 3.8vw, 48px);
	font-weight: 950;
	letter-spacing: -0.05em;
	line-height: 1;
	text-align: right;
}

.controls-gallery {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	align-items: start;
	gap: clamp(24px, 4vw, 58px);
}

.control-shot {
	color: var(--ink);
	text-decoration: none;
}

.control-query {
	grid-column: 1 / span 4;
	padding-top: 80px;
	transform: rotate(-1.2deg);
}

.control-layout {
	grid-column: 5 / span 4;
	transform: rotate(1deg);
}

.control-card {
	grid-column: 9 / span 4;
	padding-top: 120px;
	transform: rotate(-0.5deg);
}

.control-image {
	position: relative;
	height: 560px;
	overflow: hidden;
	border: var(--border);
	background: var(--white);
	box-shadow: var(--shadow);
}

.control-image img {
	width: 100%;
	height: auto;
}

.control-image::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100px;
	background: linear-gradient(transparent, rgb(21 21 21 / 45%));
	content: "";
	pointer-events: none;
}

.control-image-cta {
	position: absolute;
	z-index: 1;
	right: 14px;
	bottom: 14px;
	left: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 9px 11px;
	border: 2px solid var(--ink);
	background: var(--yellow);
	box-shadow: 3px 3px 0 var(--ink);
	font-size: 10px;
	font-weight: 950;
	letter-spacing: 0.04em;
	line-height: 1.2;
	text-transform: uppercase;
	transition:
		background 150ms ease,
		box-shadow 150ms ease,
		transform 150ms ease;
}

.control-image-cta strong {
	font-size: 11px;
	white-space: nowrap;
}

.control-shot:hover .control-image-cta,
.control-shot:focus-visible .control-image-cta {
	background: var(--pink);
	box-shadow: 5px 5px 0 var(--ink);
	transform: translate(-2px, -2px);
}

.control-shot figcaption {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 14px 4px 0;
	font-size: 13px;
	font-weight: 950;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.faq-section {
	padding: clamp(100px, 11vw, 160px) 0;
	border-bottom: var(--border);
	background: var(--cyan);
}

.faq-layout {
	display: grid;
	grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
	align-items: start;
	gap: clamp(60px, 9vw, 130px);
}

.faq-heading {
	position: sticky;
	top: 128px;
}

.faq-heading .section-label {
	display: inline-block;
	padding: 6px 10px;
	border: 2px solid var(--ink);
	background: var(--yellow);
	box-shadow: 3px 3px 0 var(--ink);
	transform: rotate(-1deg);
}

.faq-heading h2 em {
	color: var(--blue);
}

.faq-stamp {
	display: grid;
	width: 110px;
	height: 110px;
	place-items: center;
	margin: 50px 0 0 12px;
	border: var(--border);
	border-radius: 50%;
	background: var(--pink);
	box-shadow: 5px 5px 0 var(--ink);
	font-size: 14px;
	font-weight: 950;
	letter-spacing: 0.08em;
	line-height: 1.05;
	text-align: center;
	transform: rotate(9deg);
}

.faq-list {
	display: grid;
	gap: 20px;
}

.faq-list details {
	border: var(--border);
	background: var(--white);
	box-shadow: var(--shadow-small);
}

.faq-list details:nth-child(2) {
	background: var(--yellow);
}

.faq-list details:nth-child(4) {
	background: var(--pink);
}

.faq-list summary {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 23px 26px;
	font-size: clamp(17px, 1.7vw, 21px);
	font-weight: 900;
	letter-spacing: -0.025em;
	line-height: 1.3;
	cursor: pointer;
	list-style: none;
}

.faq-list summary::-webkit-details-marker {
	display: none;
}

.faq-list summary span {
	position: relative;
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
}

.faq-list summary span::before,
.faq-list summary span::after {
	position: absolute;
	top: 9px;
	right: 0;
	left: 0;
	height: 3px;
	background: var(--ink);
	content: "";
}

.faq-list summary span::after {
	transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
	display: none;
}

.faq-list details[open] summary {
	border-bottom: var(--border);
}

.faq-list details p {
	max-width: 710px;
	padding: 0 26px 26px;
	margin: 22px 0 0;
	font-size: 17px;
	font-weight: 600;
}

.cta-section {
	padding: clamp(80px, 9vw, 130px) 0;
	border-bottom: var(--border);
	background: var(--pink);
}

.cta-banner {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
	min-height: 480px;
	overflow: hidden;
	border: var(--border);
	background: var(--blue);
	box-shadow: var(--shadow-large);
	color: var(--white);
	transform: rotate(-0.5deg);
}

.cta-copy {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(40px, 6vw, 78px);
}

.cta-copy > p {
	display: inline-block;
	padding: 6px 9px;
	margin-bottom: 24px;
	border: 2px solid var(--ink);
	background: var(--yellow);
	box-shadow: 3px 3px 0 var(--ink);
	color: var(--ink);
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 0.11em;
}

.cta-copy h2 {
	font-size: clamp(54px, 6.5vw, 86px);
}

.button-cta {
	margin-top: 38px;
	background: var(--lime);
	color: var(--ink);
}

.cta-art {
	position: relative;
	min-height: 480px;
	border-left: var(--border);
	background: var(--orange);
}

.art-word {
	position: absolute;
	top: 32px;
	left: 34px;
	color: var(--ink);
	font-size: clamp(68px, 9vw, 132px);
	font-weight: 950;
	letter-spacing: -0.09em;
	line-height: 0.8;
	transform: rotate(-5deg);
}

.art-grid {
	position: absolute;
	right: -34px;
	bottom: -38px;
	display: grid;
	grid-template-columns: repeat(3, 105px);
	gap: 12px;
	padding: 20px;
	border: var(--border);
	background: var(--yellow);
	box-shadow: var(--shadow);
	transform: rotate(7deg);
}

.art-grid span {
	aspect-ratio: 1;
	border: var(--border);
	background: var(--pink);
}

.art-grid span:nth-child(2),
.art-grid span:nth-child(6),
.art-grid span:nth-child(7) {
	background: var(--cyan);
}

.art-grid span:nth-child(3),
.art-grid span:nth-child(5),
.art-grid span:nth-child(8) {
	background: var(--blue);
}

.art-grid span:nth-child(4),
.art-grid span:nth-child(9) {
	background: var(--lime);
}

.art-badge {
	position: absolute;
	z-index: 2;
	top: 157px;
	left: 34px;
	display: grid;
	width: 130px;
	height: 130px;
	place-items: center;
	border: var(--border);
	border-radius: 50%;
	background: var(--lime);
	box-shadow: 6px 6px 0 var(--ink);
	color: var(--ink);
	font-size: 20px;
	font-weight: 950;
	letter-spacing: 0.03em;
	line-height: 1.05;
	text-align: center;
	transform: rotate(10deg);
}

.site-footer {
	padding: 54px 0 28px;
	background: var(--ink);
	color: var(--white);
}

.footer-main {
	display: grid;
	grid-template-columns: 1fr 1fr auto;
	align-items: center;
	gap: 40px;
	padding-bottom: 42px;
	border-bottom: 2px solid rgb(255 255 255 / 28%);
}

.footer-brand .brand-mark {
	border-color: var(--white);
	box-shadow: 3px 3px 0 var(--pink);
}

.footer-main p {
	margin: 0;
	color: #d9d9d9;
	font-size: 14px;
}

.footer-main nav {
	display: flex;
	gap: 24px;
}

.footer-main nav a {
	font-size: 13px;
	font-weight: 850;
	text-underline-offset: 4px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	padding-top: 24px;
	color: #bdbdbd;
	font-size: 11px;
	font-weight: 750;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

@media (max-width: 1120px) {
	.hero-layout {
		grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1.14fr);
		gap: 54px;
	}

	.hero-crop {
		height: 500px;
	}

	.free-grid {
		gap: 62px;
	}

	.control-image {
		height: 500px;
	}

	.art-grid {
		grid-template-columns: repeat(3, 90px);
	}
}

@media (max-width: 960px) {
	:root {
		--shell: min(100% - 36px, 760px);
	}

	.site-nav {
		gap: 18px;
	}

	.hero {
		padding-top: 96px;
	}

	.hero::before {
		background: rgb(255 248 231 / 84%);
	}

	.hero-layout {
		grid-template-columns: 1fr;
		gap: 76px;
	}

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

	.hero h1 {
		font-size: clamp(62px, 10.5vw, 88px);
	}

	.hero-crop {
		height: 540px;
	}

	.hero-sticker {
		right: -10px;
	}

	.free-grid,
	.faq-layout {
		grid-template-columns: 1fr;
	}

	.free-grid {
		gap: 78px;
	}

	.free-facts {
		max-width: 680px;
		margin-inline: auto;
	}

	.section-heading {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.section-heading > p {
		max-width: 620px;
	}

	.shot-image,
	.shot-magazine .shot-image,
	.shot-feed .shot-image {
		height: 300px;
	}

	.controls-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.controls-heading h3 {
		text-align: left;
	}

	.control-query,
	.control-layout,
	.control-card {
		grid-column: auto / span 4;
		padding-top: 0;
	}

	.control-image {
		height: 430px;
	}

	.faq-layout {
		gap: 68px;
	}

	.faq-heading {
		position: relative;
		top: auto;
	}

	.faq-stamp {
		position: absolute;
		right: 12px;
		bottom: -12px;
		margin: 0;
	}

	.cta-banner {
		grid-template-columns: 1fr;
	}

	.cta-art {
		min-height: 440px;
		border-top: var(--border);
		border-left: 0;
	}

	.art-grid {
		right: 4%;
		bottom: -48px;
	}

	.footer-main {
		grid-template-columns: 1fr auto;
	}

	.footer-main p {
		grid-column: 1 / -1;
		grid-row: 2;
	}
}

@media (max-width: 680px) {
	:root {
		--border: 2px solid var(--ink);
		--shadow-small: 3px 3px 0 var(--ink);
		--shadow: 5px 5px 0 var(--ink);
		--shadow-large: 7px 7px 0 var(--ink);
		--shell: calc(100vw - 30px);
	}

	html {
		scroll-padding-top: 76px;
	}

	.header-inner {
		min-height: 66px;
	}

	.brand {
		font-size: 15px;
	}

	.brand-mark {
		grid-template-columns: repeat(2, 6px);
		gap: 2px;
		padding: 6px;
		box-shadow: 2px 2px 0 var(--ink);
	}

	.brand-mark span {
		width: 6px;
		height: 6px;
	}

	.menu-toggle {
		display: block;
	}

	.site-nav {
		position: absolute;
		top: 65px;
		right: 0;
		left: 0;
		display: none;
		align-items: stretch;
		flex-direction: column;
		gap: 0;
		padding: 14px 15px 18px;
		border-bottom: var(--border);
		background: var(--yellow);
	}

	.site-nav[data-open] {
		display: flex;
	}

	.site-nav > a:not(.header-download) {
		display: block;
		padding: 13px 4px;
		border-bottom: 2px solid var(--ink);
	}

	.site-nav .header-download {
		justify-content: center;
		margin-top: 16px;
	}

	.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
		transform: translateY(4px) rotate(45deg);
	}

	.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
		transform: translateY(-4px) rotate(-45deg);
	}

	.hero {
		padding: 72px 0 82px;
	}

	.hero-layout {
		gap: 58px;
	}

	.hero h1 {
		font-size: clamp(49px, 15.5vw, 67px);
		line-height: 0.96;
	}

	.hero-lead {
		margin-top: 25px;
		font-size: 17px;
	}

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

	.button {
		width: 100%;
	}

	.compatibility {
		gap: 6px;
	}

	.compatibility li {
		padding: 4px 7px;
		font-size: 9px;
	}

	.hero-crop {
		height: 360px;
	}

	.hero-sticker {
		right: -4px;
		bottom: -35px;
		width: 86px;
		height: 86px;
		font-size: 9px;
	}

	.free-section,
	.screenshots-section,
	.faq-section {
		padding: 82px 0;
	}

	.free-statement {
		padding: 28px 22px 34px;
	}

	.free-statement::after {
		right: -10px;
		bottom: -12px;
		width: 42px;
		height: 42px;
	}

	.free-statement h2,
	.section-heading h2,
	.faq-heading h2,
	.cta-copy h2 {
		font-size: clamp(44px, 13vw, 60px);
	}

	.free-statement p:last-child {
		font-size: 17px;
	}

	.free-grid {
		gap: 60px;
	}

	.free-facts {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}

	.free-facts li {
		min-height: 135px;
		padding: 16px;
	}

	.free-facts strong {
		font-size: 42px;
	}

	.free-facts span {
		font-size: 9px;
	}

	.section-heading {
		gap: 26px;
		margin-bottom: 50px;
	}

	.section-heading > p {
		font-size: 17px;
	}

	.layout-gallery {
		display: flex;
		flex-direction: column;
		gap: 52px;
	}

	.shot-magazine,
	.shot-feed,
	.shot-gallery {
		padding-top: 0;
	}

	.shot-image,
	.shot-magazine .shot-image,
	.shot-feed .shot-image {
		height: 230px;
	}

	.shot figcaption {
		align-items: flex-start;
		flex-direction: column;
		gap: 2px;
	}

	.shot figcaption strong {
		font-size: 23px;
	}

	.shot figcaption span {
		font-size: 10px;
		text-align: left;
	}

	.controls-heading {
		padding: 22px;
		margin: 82px 0 38px;
	}

	.controls-heading h3 {
		font-size: 30px;
	}

	.controls-gallery {
		display: flex;
		overflow-x: auto;
		gap: 18px;
		padding: 7px 6px 18px 0;
		scroll-snap-type: x mandatory;
	}

	.control-shot {
		width: min(78vw, 300px);
		flex: 0 0 min(78vw, 300px);
		scroll-snap-align: start;
	}

	.control-query,
	.control-card {
		padding-top: 26px;
	}

	.control-image {
		height: 430px;
	}

	.control-shot figcaption {
		font-size: 10px;
	}

	.faq-layout {
		gap: 58px;
	}

	.faq-heading {
		padding-bottom: 76px;
	}

	.faq-stamp {
		right: 8px;
		bottom: -2px;
		width: 88px;
		height: 88px;
		font-size: 11px;
	}

	.faq-list {
		gap: 13px;
	}

	.faq-list summary {
		padding: 18px;
		font-size: 16px;
	}

	.faq-list details p {
		padding: 0 18px 20px;
		margin-top: 18px;
		font-size: 15px;
	}

	.cta-section {
		padding: 70px 0;
	}

	.cta-copy {
		padding: 42px 24px 50px;
	}

	.button-cta {
		margin-top: 30px;
	}

	.cta-art {
		min-height: 350px;
	}

	.art-word {
		top: 28px;
		left: 20px;
		font-size: 70px;
	}

	.art-badge {
		top: 115px;
		left: 24px;
		width: 100px;
		height: 100px;
		font-size: 16px;
	}

	.art-grid {
		right: -35px;
		bottom: -55px;
		grid-template-columns: repeat(3, 67px);
		gap: 8px;
		padding: 12px;
	}

	.footer-main {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.footer-main p {
		grid-column: auto;
		grid-row: auto;
	}

	.footer-main nav {
		gap: 20px;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}
}

@media (max-width: 380px) {
	.brand {
		font-size: 13px;
	}

	.free-facts {
		grid-template-columns: 1fr;
	}

	.free-facts li {
		min-height: 120px;
	}
}
