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

@font-face {
	font-family: "Geist Pixel Square";
	src: url("/fonts/geist/GeistPixel-Square.woff2") format("woff2");
	font-style: normal;
	font-weight: 500;
	font-display: swap;
}

:root {
	--bg-primary: #0a0a0a;
	--bg-secondary: #141414;
	--bg-elevated: #1c1c1e;
	--bg-raised: #242426;
	--text-primary: #f5f5f5;
	--text-secondary: #a0a0a0;
	--text-muted: #666666;
	--trust: #3b7bbf;
	--trust-hover: #5491cc;
	--trust-soft: rgba(59, 123, 191, 0.14);
	--accent: #ff2d55;
	--accent-hover: #ff4d6f;
	--border: #2c2c2e;
	--border-strong: #3a3a3c;
	--shell: 1360px;
	--font-sans:
		"Geist Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
		sans-serif;
	--font-display: "Geist Pixel Square", var(--font-sans);
	--shadow-button: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 6px 16px rgba(0, 0, 0, 0.36);
	--shadow-button-hover: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 8px 20px rgba(0, 0, 0, 0.42);
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}

body {
	margin: 0;
	background: var(--bg-primary);
	color: var(--text-primary);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

img,
svg {
	display: block;
}

a:focus-visible,
summary:focus-visible {
	outline: 2px solid var(--trust-hover);
	outline-offset: 4px;
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 100;
	transform: translateY(-160%);
	border-radius: 10px;
	background: var(--text-primary);
	color: var(--bg-primary);
	padding: 10px 14px;
	font-weight: 700;
}

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

.shell {
	width: min(var(--shell), calc(100% - 64px));
	margin-inline: auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	background: rgba(10, 10, 10, 0.9);
	backdrop-filter: blur(20px);
}

.header-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	min-height: 80px;
	gap: 32px;
}

.brand-lockup {
	display: inline-flex;
	align-items: center;
	justify-self: start;
	gap: 15px;
}

.brand-lockup img {
	width: 142px;
	height: auto;
}

.brand-lockup span {
	border-left: 1px solid var(--border-strong);
	padding-left: 15px;
	color: var(--text-secondary);
	font-size: 12px;
	font-weight: 650;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.header-nav,
.header-actions {
	display: flex;
	align-items: center;
}

.header-nav {
	gap: 32px;
	color: var(--text-secondary);
	font-size: 14px;
	font-weight: 540;
}

.header-actions {
	justify-self: end;
	gap: 20px;
}

.header-nav a,
.text-link,
.site-footer a {
	transition: color 180ms ease;
}

.header-nav a:hover,
.text-link:hover,
.site-footer a:hover {
	color: var(--text-primary);
}

.text-link {
	color: var(--text-secondary);
	font-size: 14px;
	font-weight: 600;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	border: 1px solid var(--trust);
	border-radius: 16px;
	background: var(--trust);
	box-shadow: var(--shadow-button);
	color: #fff;
	padding: 0 24px;
	font-size: 15px;
	font-weight: 680;
	letter-spacing: -0.01em;
	transition:
		transform 180ms var(--ease-out),
		background 180ms ease,
		box-shadow 180ms ease;
}

.button:hover {
	transform: translateY(-2px);
	background: var(--trust-hover);
	box-shadow: var(--shadow-button-hover);
}

.button-small {
	min-height: 42px;
	border-radius: 13px;
	padding-inline: 18px;
	font-size: 14px;
}

.button-secondary {
	border-color: var(--border-strong);
	background: var(--bg-secondary);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
	color: var(--text-primary);
}

.button-secondary:hover {
	border-color: #505054;
	background: var(--bg-elevated);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.hero {
	display: grid;
	grid-template-columns: minmax(470px, 0.95fr) minmax(560px, 1.05fr);
	align-items: center;
	gap: 64px;
	min-height: 830px;
	padding-block: 72px 76px;
}

.hero-copy {
	position: relative;
	z-index: 2;
	padding-bottom: 12px;
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 23px;
	color: var(--text-secondary);
	font-size: 11px;
	font-weight: 650;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.eyebrow > span {
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: var(--trust);
}

.hero h1,
.section-heading h2,
.value-heading h2,
.final-cta h2 {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 500;
	letter-spacing: -0.05em;
}

.hero h1 {
	max-width: 700px;
	font-size: clamp(64px, 5.25vw, 86px);
	line-height: 0.95;
}

.hero h1 em {
	color: var(--trust-hover);
	font-style: normal;
}

.hero-lede {
	max-width: 590px;
	margin: 30px 0 0;
	color: var(--text-secondary);
	font-size: clamp(18px, 1.45vw, 21px);
	line-height: 1.55;
}

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

.trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
	margin: 28px 0 0;
	padding: 0;
	color: var(--text-secondary);
	font-size: 13px;
	font-weight: 540;
	list-style: none;
}

.trust-row li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.trust-row li::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 999px;
	background: var(--trust);
}

.product-showcase {
	position: relative;
	justify-self: end;
	width: min(100%, 560px);
	height: 650px;
}

.device {
	position: absolute;
	border: 7px solid #050505;
	border-radius: 36px;
	background: #000;
	box-shadow:
		0 26px 55px rgba(0, 0, 0, 0.48),
		inset 0 0 0 1px rgba(255, 255, 255, 0.08);
	overflow: hidden;
}

.device::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 20;
	border-radius: 28px;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
	pointer-events: none;
}

.device-screen {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 28px;
	overflow: hidden;
}

.feed-device {
	top: 0;
	left: 50%;
	z-index: 3;
	width: 326px;
	height: 650px;
	transform: translateX(-50%);
}

.feed-screen {
	background: #101010;
	color: #fff;
	font-family: var(--font-sans);
}

.feed-media {
	position: absolute;
	inset: 0 0 56px;
	width: 100%;
	height: calc(100% - 56px);
	object-fit: cover;
	object-position: 50% 50%;
}

.feed-vignette {
	position: absolute;
	inset: 0 0 56px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.67), transparent 38%);
	pointer-events: none;
}

.feed-actions {
	position: absolute;
	right: 7px;
	bottom: 138px;
	z-index: 4;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 11px;
}

.feed-action {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	min-height: 43px;
	color: #fff;
}

.feed-action svg {
	width: 26px;
	height: 26px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.75));
}

.feed-action.liked {
	color: var(--accent);
}

.feed-action.liked svg {
	fill: currentColor;
}

.feed-action small {
	color: #fff;
	font-size: 9px;
	font-weight: 650;
	line-height: 1;
	text-shadow: 0 2px 4px #000;
}

.feed-credit {
	position: absolute;
	left: 13px;
	right: 55px;
	bottom: 72px;
	z-index: 4;
}

.creator-line {
	display: flex;
	align-items: center;
	gap: 7px;
}

.creator-line img {
	width: 31px;
	height: 31px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	object-fit: cover;
}

.creator-line strong {
	min-width: 0;
	font-size: 12px;
	font-weight: 720;
	text-shadow: 0 2px 5px #000;
}

.verified-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 15px;
	height: 15px;
	border-radius: 999px;
	background: var(--trust);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
}

.destination-line {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-top: 6px;
	color: rgba(255, 255, 255, 0.95);
	font-size: 10px;
	font-weight: 650;
	text-shadow: 0 2px 4px #000;
}

.destination-line svg {
	width: 13px;
	height: 13px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.product-bottom-nav {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
	display: flex;
	align-items: stretch;
	justify-content: space-around;
	height: 58px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(10, 10, 10, 0.88);
	backdrop-filter: blur(16px);
}

.product-bottom-nav > span {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	color: rgba(255, 255, 255, 0.55);
}

.product-bottom-nav > span.active {
	color: #fff;
}

.product-bottom-nav > span.record-tab {
	color: var(--accent);
}

.product-bottom-nav svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.product-bottom-nav .active svg,
.product-bottom-nav .record-tab svg {
	fill: currentColor;
	stroke-width: 0;
}

.product-bottom-nav small {
	font-size: 8px;
	line-height: 1;
}

.proof-band {
	border-block: 1px solid var(--border);
	background: var(--bg-secondary);
}

.proof-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.proof-grid p {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin: 0;
	padding: 28px 38px;
}

.proof-grid p + p {
	border-left: 1px solid var(--border);
}

.proof-grid strong {
	font-size: 14px;
	font-weight: 650;
}

.proof-grid span {
	color: var(--text-secondary);
	font-size: 12px;
}

.section {
	padding-block: 128px;
}

.section-heading h2,
.value-heading h2,
.final-cta h2 {
	font-size: clamp(48px, 4.6vw, 70px);
	line-height: 1;
}

.section-heading > p:not(.eyebrow) {
	max-width: 520px;
	margin: 26px 0 0;
	color: var(--text-secondary);
	font-size: 18px;
	line-height: 1.55;
}

.how-section {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) 326px minmax(380px, 0.95fr);
	align-items: center;
	gap: 64px;
}

.editor-device {
	position: relative;
	display: flex;
	width: min(100%, 326px);
	aspect-ratio: 326 / 650;
	flex-direction: column;
	justify-self: center;
	border: 7px solid #050505;
	border-radius: 36px;
	background: #000;
	box-shadow:
		0 26px 55px rgba(0, 0, 0, 0.48),
		inset 0 0 0 1px rgba(255, 255, 255, 0.08);
	overflow: hidden;
}

.editor-device::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 20;
	border-radius: 28px;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
	pointer-events: none;
}

.editor-preview {
	position: relative;
	display: flex;
	min-height: 0;
	flex: 1;
	align-items: center;
	justify-content: center;
	background: #000;
	overflow: hidden;
}

.editor-preview::after {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 92px;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
	pointer-events: none;
}

.editor-media {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.editor-topbar {
	position: absolute;
	top: 12px;
	left: 12px;
	right: 12px;
	z-index: 3;
	display: grid;
	grid-template-columns: 42px 1fr auto;
	align-items: start;
	gap: 8px;
}

.editor-back {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.42);
	color: #fff;
	font-size: 31px;
	font-weight: 300;
	line-height: 1;
	backdrop-filter: blur(10px);
}

.editor-next {
	grid-column: 3;
	border-radius: 999px;
	background: #fff;
	color: #000;
	padding: 10px 18px;
	font-size: 12px;
	font-weight: 750;
	box-shadow: 0 7px 20px rgba(0, 0, 0, 0.35);
}

.editor-panel {
	position: relative;
	height: 168px;
	flex: 0 0 168px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	background: linear-gradient(180deg, rgba(18, 18, 22, 0.99), #08080a);
	box-shadow: 0 -20px 42px rgba(0, 0, 0, 0.45);
	padding: 9px 9px 0;
}

.editor-timeline-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--text-muted);
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 8px;
}

.editor-timeline-heading strong {
	font-weight: 500;
}

.editor-zoom {
	display: flex;
	gap: 2px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.3);
	padding: 2px;
}

.editor-zoom b {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	height: 18px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 8px;
	font-weight: 650;
}

.editor-track {
	position: relative;
	display: flex;
	height: 49px;
	align-items: stretch;
	gap: 4px;
	margin-top: 7px;
	overflow: hidden;
}

.editor-clip {
	position: relative;
	display: flex;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 5px;
	background: var(--bg-secondary);
	overflow: hidden;
}

.editor-clip-selected {
	width: 145px;
	border: 2px solid var(--accent);
}

.editor-clip-second {
	width: 87px;
}

.editor-clip img {
	min-width: 42px;
	height: 100%;
	flex: 1;
	object-fit: cover;
}

.editor-clip:nth-child(2) img:first-child {
	object-position: 39% center;
}

.editor-clip small {
	position: absolute;
	left: 5px;
	bottom: 2px;
	color: rgba(255, 255, 255, 0.9);
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 7px;
	line-height: 1;
	text-shadow: 0 1px 3px #000;
}

.editor-trim {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 2;
	width: 17px;
	background: var(--accent);
}

.editor-trim::after {
	content: "";
	position: absolute;
	top: 15px;
	left: 8px;
	width: 2px;
	height: 17px;
	border-radius: 999px;
	background: #fff;
}

.editor-trim-start {
	left: 0;
}

.editor-trim-end {
	right: 0;
}

.editor-add {
	display: flex;
	width: 40px;
	flex: 0 0 40px;
	align-items: center;
	justify-content: center;
	border: 1px dashed rgba(255, 255, 255, 0.3);
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.05);
	color: rgba(255, 255, 255, 0.85);
	font-size: 22px;
}

.editor-playhead {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 41%;
	z-index: 5;
	width: 2px;
	background: #fff;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.42);
}

.editor-tools {
	display: flex;
	height: 54px;
	align-items: center;
	justify-content: flex-end;
	gap: 7px;
	margin-top: 5px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	color: var(--text-primary);
	font-size: 11px;
	font-weight: 650;
}

.editor-tools span {
	min-width: 80px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	padding: 10px 15px;
	text-align: center;
}

.editor-tools .editor-delete {
	background: rgba(255, 69, 90, 0.15);
	color: #ff6b7e;
}

.steps {
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--border);
	list-style: none;
}

.steps li {
	display: grid;
	grid-template-columns: 70px 1fr;
	gap: 28px;
	border-bottom: 1px solid var(--border);
	padding: 31px 0 32px;
}

.step-number,
.value-grid article > span {
	color: var(--trust-hover);
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 12px;
	font-weight: 650;
}

.steps h3,
.value-grid h3 {
	margin: 0;
	font-size: 21px;
	font-weight: 650;
	letter-spacing: -0.025em;
}

.steps p,
.value-grid p {
	max-width: 520px;
	margin: 9px 0 0;
	color: var(--text-secondary);
	font-size: 15px;
	line-height: 1.55;
}

.value-section {
	border-block: 1px solid var(--border);
	background: var(--bg-secondary);
}

.value-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(380px, 0.8fr);
	align-items: end;
	gap: 80px;
}

.value-heading h2 {
	max-width: 760px;
}

.value-heading > p {
	margin: 0 0 7px;
	color: var(--text-secondary);
	font-size: 18px;
	line-height: 1.55;
}

.value-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-top: 72px;
}

.value-grid article {
	min-height: 260px;
	border: 1px solid var(--border);
	border-radius: 22px;
	background: var(--bg-elevated);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
	padding: 28px;
}

.value-grid h3 {
	margin-top: 77px;
}

.faq-section {
	display: grid;
	grid-template-columns: minmax(320px, 0.75fr) minmax(560px, 1.25fr);
	gap: 110px;
	border-top: 1px solid var(--border);
}

.faq-heading {
	align-self: start;
	position: sticky;
	top: 125px;
}

.faq-list {
	border-top: 1px solid var(--border);
}

.faq-list details {
	border-bottom: 1px solid var(--border);
}

.faq-list summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	cursor: pointer;
	padding: 26px 0;
	font-size: 18px;
	font-weight: 590;
	list-style: none;
}

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

.faq-list summary span {
	color: var(--trust-hover);
	font-size: 24px;
	font-weight: 360;
	transition: transform 180ms var(--ease-out);
}

.faq-list details[open] summary span {
	transform: rotate(45deg);
}

.faq-list details p {
	max-width: 650px;
	margin: -7px 0 26px;
	color: var(--text-secondary);
	font-size: 15px;
	line-height: 1.6;
}

.final-cta {
	border-block: 1px solid var(--border);
	background: var(--bg-secondary);
}

.final-cta-inner {
	display: grid;
	place-items: center;
	padding-block: 126px;
	text-align: center;
}

.final-cta h2 {
	font-size: clamp(66px, 7vw, 104px);
}

.final-cta > .shell > p:not(.eyebrow) {
	max-width: 550px;
	margin: 25px 0 0;
	color: var(--text-secondary);
	font-size: 18px;
}

.final-cta .button {
	margin-top: 34px;
}

.site-footer {
	padding-block: 42px;
}

.footer-inner {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
}

.footer-brand img {
	width: 126px;
	height: auto;
}

.footer-brand p {
	margin: 13px 0 0;
	color: var(--text-muted);
	font-size: 12px;
}

.site-footer nav {
	display: flex;
	gap: 25px;
	color: var(--text-secondary);
	font-size: 13px;
}

@media (max-width: 1240px) {
	.hero {
		grid-template-columns: minmax(410px, 0.9fr) minmax(520px, 1.1fr);
		gap: 38px;
	}

	.how-section {
		grid-template-columns: minmax(0, 1fr) 326px;
		gap: 70px;
	}

	.how-section .section-heading {
		grid-row: 1;
		grid-column: 1;
	}

	.how-section .steps {
		grid-row: 2;
		grid-column: 1;
	}

	.editor-device {
		grid-row: 1 / 3;
		grid-column: 2;
	}
}

@media (max-width: 1050px) {
	.header-inner {
		grid-template-columns: 1fr auto;
	}

	.header-nav {
		display: none;
	}

	.hero {
		grid-template-columns: 1fr;
		gap: 64px;
		padding-block: 94px 80px;
	}

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

	.product-showcase {
		justify-self: center;
		width: min(100%, 560px);
		height: 650px;
	}

	.faq-section {
		grid-template-columns: 1fr;
		gap: 65px;
	}

	.value-heading {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.value-heading > p {
		max-width: 650px;
	}

	.faq-heading {
		position: static;
	}
}

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

	.site-header {
		position: relative;
	}

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

	.brand-lockup img {
		width: 116px;
	}

	.brand-lockup span,
	.text-link {
		display: none;
	}

	.button-small {
		min-height: 40px;
		padding-inline: 15px;
	}

	.hero {
		padding-block: 70px 56px;
	}

	.hero h1 {
		font-size: clamp(50px, 14vw, 72px);
	}

	.hero-lede {
		font-size: 18px;
	}

	.hero-actions {
		flex-direction: column;
	}

	.hero-actions .button {
		width: 100%;
	}

	.product-showcase {
		height: 514px;
	}

	.feed-device {
		top: 0;
		left: 50%;
		transform: translateX(-50%) scale(0.79);
		transform-origin: center top;
	}

	.proof-grid {
		grid-template-columns: 1fr;
		padding-block: 8px;
	}

	.proof-grid p {
		padding: 20px 0;
	}

	.proof-grid p + p {
		border-top: 1px solid var(--border);
		border-left: 0;
	}

	.section {
		padding-block: 88px;
	}

	.section-heading h2,
	.value-heading h2,
	.final-cta h2 {
		font-size: clamp(44px, 12vw, 60px);
	}

	.faq-section {
		gap: 50px;
	}

	.how-section {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.how-section .section-heading,
	.how-section .steps,
	.editor-device {
		grid-row: auto;
		grid-column: 1;
	}

	.steps li {
		grid-template-columns: 45px 1fr;
		gap: 15px;
	}

	.value-grid {
		grid-template-columns: 1fr;
		margin-top: 50px;
	}

	.value-grid article {
		min-height: 220px;
	}

	.value-grid h3 {
		margin-top: 48px;
	}

	.final-cta-inner {
		padding-block: 90px;
	}

	.footer-inner {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 470px) {
	.product-showcase {
		height: 436px;
	}

	.feed-device {
		top: 0;
		left: 50%;
		transform: translateX(-50%) scale(0.67);
	}

	.site-footer nav {
		flex-wrap: wrap;
	}
}

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

	*,
	*::before,
	*::after {
		scroll-behavior: auto;
		transition-duration: 0.01ms;
	}
}
