@font-face {
	font-family: 'DM Sans';
	src: url('/fonts/dm-sans.woff2') format('woff2');
	font-display: swap;
	font-style: normal;
	font-weight: 400 600;
}

@font-face {
	font-family: Lora;
	src: url('/fonts/lora.woff2') format('woff2');
	font-display: swap;
	font-style: normal;
	font-weight: 400 500;
}

@font-face {
	font-family: Lora;
	src: url('/fonts/lora-italic.woff2') format('woff2');
	font-display: swap;
	font-style: italic;
	font-weight: 400 500;
}

:root {
	--sand-50: #faf8f5;
	--sand-100: #f3efe9;
	--sand-200: #e8e1d8;
	--sand-300: #d5cab9;
	--sand-500: #7d6b52;
	--sand-700: #6b5c49;
	--sage-50: #f4f7f4;
	--sage-100: #e4ece4;
	--sage-200: #c8d9c8;
	--sage-500: #5f8a5f;
	--sage-600: #4a7249;
	--sage-700: #3d5d3d;
	--sage-900: #1f2d1f;
	--terracotta: #c17f59;
	--ink: #1a150f;
	--ink-soft: #6b5c49;
	--cream: #fffdf8;
	--white: #ffffff;
	--line: rgba(77, 66, 53, 0.16);
	--serif: Lora, Georgia, serif;
	--sans: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	--container: min(100% - 48px, 1180px);
	--section-space: clamp(88px, 10vw, 148px);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	background: var(--sand-50);
}

body {
	margin: 0;
	background: var(--sand-50);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img {
	display: block;
	max-width: 100%;
}

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

a:focus-visible,
summary:focus-visible {
	border-radius: 4px;
	outline: 3px solid var(--terracotta);
	outline-offset: 4px;
}

.skip-link {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 100;
	padding: 10px 16px;
	background: var(--ink);
	color: var(--white);
	transform: translateY(-160%);
}

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

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

.site-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: var(--container);
	height: 88px;
	margin-inline: auto;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
}

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

.brand span {
	padding-left: 14px;
	border-left: 1px solid var(--line);
	color: var(--sage-600);
	font-family: var(--serif);
	font-size: 17px;
	font-style: italic;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 34px;
	color: var(--sand-700);
	font-size: 13px;
}

.nav-links a,
.site-footer nav a {
	position: relative;
}

.nav-links a::after,
.site-footer nav a::after {
	position: absolute;
	right: 0;
	bottom: -5px;
	left: 0;
	height: 1px;
	content: '';
	background: currentColor;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

.nav-links a:hover::after,
.site-footer nav a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.hero {
	position: relative;
	isolation: isolate;
	min-height: min(780px, calc(100svh - 88px));
	overflow: hidden;
	background: var(--sand-50);
}

.hero-haze {
	position: absolute;
	top: -180px;
	left: -120px;
	z-index: -3;
	width: 520px;
	height: 520px;
	border-radius: 50%;
	background: rgba(228, 236, 228, 0.72);
	filter: blur(80px);
}

.hero-photo-wrap {
	position: absolute;
	inset: 0 0 0 auto;
	z-index: -2;
	width: 66%;
}

.hero-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 61% center;
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 25%, #000 100%);
	mask-image: linear-gradient(90deg, transparent 0%, #000 25%, #000 100%);
}

.hero-scrim {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(
			90deg,
			var(--sand-50) 0%,
			var(--sand-50) 35%,
			rgba(250, 248, 245, 0.84) 48%,
			transparent 69%
		),
		linear-gradient(0deg, var(--sand-50) 0%, transparent 14%);
}

.hero-inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.96fr) minmax(390px, 1.04fr);
	align-items: center;
	width: var(--container);
	min-height: min(780px, calc(100svh - 88px));
	margin-inline: auto;
}

.hero-copy {
	z-index: 2;
	max-width: 620px;
	padding: 86px 0 114px;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 22px;
	color: var(--sage-700);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	line-height: 1.4;
	text-transform: uppercase;
}

.eyebrow > span {
	width: 21px;
	height: 1px;
	background: currentColor;
}

h1,
h2,
h3,
p {
	text-wrap: pretty;
}

h1,
h2 {
	margin: 0;
	font-family: var(--serif);
	font-weight: 500;
	letter-spacing: -0.04em;
}

h1 {
	font-size: clamp(60px, 6.7vw, 102px);
	line-height: 0.98;
}

h1 em {
	color: var(--sage-600);
	font-weight: 400;
}

h2 {
	font-size: clamp(44px, 5vw, 68px);
	line-height: 1.07;
}

.hero-intro {
	max-width: 560px;
	margin: 30px 0;
	color: var(--ink-soft);
	font-size: 17px;
	line-height: 1.72;
}

.store-links {
	display: flex;
	align-items: center;
	gap: 11px;
	flex-wrap: wrap;
}

.store-links a {
	display: block;
	border-radius: 8px;
	transition:
		transform 180ms ease,
		opacity 180ms ease;
}

.store-links a:hover {
	opacity: 0.84;
	transform: translateY(-2px);
}

.store-links img {
	width: auto;
	height: 44px;
}

.availability {
	margin: 13px 0 0;
	color: var(--sand-500);
	font-size: 12px;
}

.hero-device-wrap {
	position: relative;
	align-self: end;
	justify-self: end;
	width: min(55%, 288px);
	margin: 0 20px -104px 0;
	filter: drop-shadow(0 40px 50px rgba(34, 29, 22, 0.2));
	transform: rotate(2.5deg);
}

.device {
	position: relative;
	width: 100%;
	padding: 5px;
	border: 1px solid rgba(255, 255, 255, 0.52);
	border-radius: 14% / 6.45%;
	background: linear-gradient(
		125deg,
		#777a75 0%,
		#151713 16%,
		#3f423d 50%,
		#090a09 82%,
		#656862 100%
	);
	box-shadow:
		0 30px 60px rgba(24, 26, 23, 0.26),
		inset 0 0 0 1px rgba(0, 0, 0, 0.82),
		inset 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.device::before,
.device::after {
	position: absolute;
	z-index: -1;
	width: 4px;
	content: '';
	background: linear-gradient(90deg, #11130f, #6e716b, #1b1d19);
}

.device::before {
	top: 21%;
	left: -4px;
	height: 13%;
	border-radius: 3px 0 0 3px;
	box-shadow: 0 76px 0 #242620;
}

.device::after {
	top: 28%;
	right: -4px;
	height: 14%;
	border-radius: 0 3px 3px 0;
}

.device-rim {
	padding: 4px;
	border-radius: inherit;
	background: #050605;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.device-screen {
	overflow: hidden;
	border-radius: 12.9% / 6.12%;
	background: #050505;
	transform: translateZ(0);
}

.device-screen img {
	width: 100%;
	height: auto;
}

.section-pad {
	padding-block: var(--section-space);
}

.guidance {
	background: var(--sand-50);
}

.section-heading {
	display: grid;
	grid-template-columns: 0.68fr 1.32fr;
	align-items: start;
	gap: 48px;
	margin-bottom: 68px;
}

.section-heading h2 {
	max-width: 820px;
}

.steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: 0 0 86px;
	padding: 0;
	border-top: 1px solid var(--line);
	list-style: none;
}

.steps li {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 10px;
	min-height: 210px;
	padding: 25px 40px 24px 0;
	border-right: 1px solid var(--line);
}

.steps li + li {
	padding-left: 40px;
}

.steps li:last-child {
	border-right: 0;
}

.step-number {
	color: var(--terracotta);
	font-family: var(--serif);
	font-size: 15px;
}

.steps h3 {
	margin: 58px 0 12px;
	font-family: var(--serif);
	font-size: 23px;
	font-weight: 500;
}

.steps p {
	max-width: 290px;
	margin: 0;
	color: var(--ink-soft);
	font-size: 14px;
}

.session-showcase {
	position: relative;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	align-items: center;
	min-height: 690px;
	overflow: hidden;
	border: 1px solid rgba(200, 217, 200, 0.08);
	border-radius: 32px;
	background:
		radial-gradient(circle at 18% 10%, rgba(125, 163, 125, 0.18), transparent 33%),
		linear-gradient(135deg, #263329, var(--sage-900));
	color: var(--cream);
	box-shadow: 0 24px 70px rgba(50, 44, 35, 0.12);
}

.resonance-rings {
	position: absolute;
	top: -340px;
	right: -290px;
	width: 760px;
	height: 760px;
	border: 1px solid rgba(228, 236, 228, 0.08);
	border-radius: 50%;
	box-shadow:
		0 0 0 76px rgba(228, 236, 228, 0.025),
		0 0 0 152px rgba(228, 236, 228, 0.018);
}

.session-copy {
	z-index: 1;
	padding: clamp(54px, 8vw, 104px);
	padding-right: 24px;
}

.eyebrow-light {
	color: var(--sage-200);
}

.session-copy .quote {
	max-width: 580px;
	margin: 0 0 28px;
	font-family: var(--serif);
	font-size: clamp(40px, 4.5vw, 60px);
	letter-spacing: -0.04em;
	line-height: 1.08;
}

.session-copy > p:last-child {
	max-width: 430px;
	margin: 0;
	color: rgba(255, 253, 248, 0.64);
	font-size: 15px;
}

.session-device-wrap {
	align-self: end;
	justify-self: center;
	width: min(57%, 292px);
	margin-bottom: -112px;
	filter: drop-shadow(0 45px 55px rgba(0, 0, 0, 0.42));
}

.device-session {
	transform: rotate(1deg);
}

.inside {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	border-block: 1px solid rgba(213, 202, 185, 0.45);
	background: linear-gradient(135deg, var(--sand-100), var(--sage-100));
}

.inside-orb {
	position: absolute;
	right: -190px;
	bottom: -280px;
	z-index: -1;
	width: 620px;
	height: 620px;
	border-radius: 50%;
	background: rgba(255, 253, 248, 0.55);
	filter: blur(70px);
}

.inside-grid {
	display: grid;
	grid-template-columns: minmax(330px, 0.78fr) minmax(540px, 1.22fr);
	align-items: center;
	gap: clamp(52px, 8vw, 112px);
}

.inside-copy h2 {
	max-width: 560px;
}

.inside-intro {
	max-width: 490px;
	margin: 28px 0 42px;
	color: var(--ink-soft);
	font-size: 17px;
}

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

.feature-list > div {
	display: grid;
	grid-template-columns: 96px 1fr;
	align-items: start;
	gap: 24px;
	padding: 20px 0;
	border-bottom: 1px solid var(--line);
}

.feature-list strong {
	color: var(--sage-700);
	font-family: var(--serif);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.55;
}

.feature-list span {
	color: var(--ink-soft);
	font-size: 14px;
	line-height: 1.65;
}

.device-stage {
	position: relative;
	min-height: 690px;
}

.device-stage::before {
	position: absolute;
	inset: 7% 2% 5%;
	border: 1px solid rgba(74, 114, 73, 0.12);
	border-radius: 50%;
	content: '';
	transform: rotate(-12deg);
}

.device-heal,
.device-learn {
	position: absolute;
	width: min(43%, 300px);
}

.device-heal {
	top: 0;
	left: 3%;
	transform: rotate(-3deg);
}

.device-learn {
	right: 2%;
	bottom: 0;
	transform: rotate(3deg);
}

.forks {
	background: var(--sand-50);
}

.forks-heading {
	display: grid;
	grid-template-columns: 0.58fr 1.12fr 0.7fr;
	align-items: end;
	gap: 44px;
	margin-bottom: 56px;
}

.forks-heading .eyebrow {
	align-self: start;
}

.forks-heading p:last-child {
	max-width: 380px;
	margin: 0 0 4px;
	color: var(--ink-soft);
	font-size: 15px;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.product-card {
	overflow: hidden;
	border: 1px solid rgba(213, 202, 185, 0.6);
	border-radius: 30px;
	background: linear-gradient(145deg, rgba(255, 253, 249, 0.98), rgba(247, 239, 229, 0.92));
	box-shadow: 0 18px 52px rgba(51, 44, 35, 0.07);
	transition:
		box-shadow 260ms ease,
		transform 260ms ease;
}

.product-card-alt {
	background: linear-gradient(145deg, rgba(255, 252, 248, 0.98), rgba(245, 234, 220, 0.92));
}

.product-card:hover {
	box-shadow: 0 28px 70px rgba(51, 44, 35, 0.12);
	transform: translateY(-5px);
}

.product-card > a {
	display: block;
	overflow: hidden;
}

.product-card > a img {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-card:hover > a img {
	transform: scale(1.025);
}

.product-info {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	padding: 27px 30px 31px;
}

.product-info p {
	margin: 0;
	color: var(--ink-soft);
	font-size: 13px;
}

.product-info .product-kicker {
	margin-bottom: 6px;
	color: var(--sage-700);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.product-info h3 {
	margin: 0 0 4px;
	font-family: var(--serif);
	font-size: 29px;
	font-weight: 500;
	line-height: 1.2;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	flex: 0 0 auto;
	padding-bottom: 3px;
	border-bottom: 1px solid currentColor;
	font-size: 12px;
	font-weight: 600;
}

.text-link span {
	transition: transform 180ms ease;
}

.text-link:hover span {
	transform: translateX(3px);
}

.download {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	border-top: 1px solid rgba(213, 202, 185, 0.55);
	background: linear-gradient(135deg, var(--sand-100), #e9e0d3 62%, var(--sage-100));
}

.download-rings {
	position: absolute;
	right: -260px;
	bottom: -390px;
	z-index: -1;
	width: 720px;
	height: 720px;
	border: 1px solid rgba(74, 114, 73, 0.12);
	border-radius: 50%;
	box-shadow:
		0 0 0 74px rgba(74, 114, 73, 0.045),
		0 0 0 148px rgba(74, 114, 73, 0.025);
}

.download-grid {
	display: grid;
	grid-template-columns: 1.06fr 0.94fr;
	align-items: center;
	gap: clamp(52px, 8vw, 112px);
}

.download h2 {
	max-width: 660px;
	margin-bottom: 38px;
}

.faq {
	padding: 12px 30px;
	border: 1px solid rgba(213, 202, 185, 0.76);
	border-radius: 26px;
	background: rgba(255, 253, 248, 0.64);
	box-shadow: 0 18px 50px rgba(51, 44, 35, 0.06);
	backdrop-filter: blur(10px);
}

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

.faq details:last-child {
	border-bottom: 0;
}

.faq summary {
	position: relative;
	padding: 22px 40px 22px 0;
	cursor: pointer;
	font-family: var(--serif);
	font-size: 17px;
	line-height: 1.4;
	list-style: none;
}

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

.faq summary::after {
	position: absolute;
	top: 50%;
	right: 3px;
	content: '+';
	color: var(--sage-600);
	font-family: var(--sans);
	font-size: 22px;
	font-weight: 400;
	transform: translateY(-50%);
}

.faq details[open] summary::after {
	content: '−';
}

.faq details p {
	margin: -2px 0 23px;
	padding-right: 18px;
	color: var(--ink-soft);
	font-size: 13px;
}

.site-footer {
	padding: 72px 0 34px;
	background: #302a22;
	color: rgba(250, 248, 245, 0.74);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: start;
	gap: 52px;
}

.footer-brand {
	display: inline-block;
}

.footer-brand img {
	width: 104px;
	height: auto;
	filter: brightness(0) invert(1);
}

.footer-intro p {
	max-width: 300px;
	margin: 20px 0 0;
	font-family: var(--serif);
	font-size: 18px;
	line-height: 1.5;
}

.site-footer nav {
	display: flex;
	gap: 25px;
	font-size: 12px;
}

.copyright {
	grid-column: 1 / -1;
	margin: 28px 0 0;
	padding-top: 24px;
	border-top: 1px solid rgba(250, 248, 245, 0.11);
	color: rgba(250, 248, 245, 0.43);
	font-size: 10px;
}

@media (max-width: 1080px) {
	:root {
		--container: min(100% - 40px, 1180px);
	}

	.hero-inner {
		grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
	}

	.hero-copy {
		padding-block: 74px 102px;
	}

	.hero-device-wrap {
		width: min(60%, 260px);
		margin-right: 4px;
	}

	.inside-grid {
		grid-template-columns: minmax(310px, 0.8fr) minmax(460px, 1.2fr);
		gap: 48px;
	}

	.device-stage {
		min-height: 610px;
	}

	.device-heal,
	.device-learn {
		width: min(45%, 260px);
	}

	.forks-heading {
		grid-template-columns: 0.9fr 1.1fr;
	}

	.forks-heading .eyebrow {
		grid-column: 1 / -1;
	}
}

@media (max-width: 920px) {
	.hero {
		display: flex;
		min-height: auto;
		flex-direction: column;
	}

	.hero-inner {
		order: 1;
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.hero-copy {
		max-width: 680px;
		padding: 82px 0 58px;
	}

	.hero-photo-wrap {
		position: relative;
		inset: auto;
		z-index: -2;
		order: 2;
		width: 100%;
		height: 620px;
		margin-top: -8px;
	}

	.hero-photo {
		object-position: 68% center;
		-webkit-mask-image: linear-gradient(
			180deg,
			transparent 0%,
			#000 18%,
			#000 90%,
			transparent 100%
		);
		mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 90%, transparent 100%);
	}

	.hero-scrim {
		background: linear-gradient(
			180deg,
			var(--sand-50) 0%,
			var(--sand-50) 46%,
			transparent 68%,
			var(--sand-50) 100%
		);
	}

	.hero-device-wrap {
		position: absolute;
		right: auto;
		bottom: -510px;
		left: clamp(22px, 6vw, 64px);
		width: clamp(148px, 32vw, 228px);
		margin: 0;
		transform: rotate(-2.5deg);
	}

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

	.steps li,
	.steps li + li {
		padding-inline: 24px;
	}

	.steps li:first-child {
		padding-left: 0;
	}

	.session-showcase {
		grid-template-columns: 1fr 0.8fr;
		min-height: 620px;
	}

	.session-copy {
		padding: 52px;
		padding-right: 12px;
	}

	.session-device-wrap {
		width: min(67%, 252px);
	}

	.inside-grid {
		grid-template-columns: 1fr;
		gap: 70px;
	}

	.inside-copy {
		max-width: 650px;
	}

	.device-stage {
		width: min(100%, 680px);
		min-height: 680px;
		margin-inline: auto;
	}

	.device-heal,
	.device-learn {
		width: min(42%, 285px);
	}

	.download-grid {
		grid-template-columns: 1fr;
	}

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

@media (max-width: 680px) {
	:root {
		--container: calc(100% - 32px);
		--section-space: 88px;
	}

	.site-header {
		height: 76px;
	}

	.brand {
		gap: 10px;
	}

	.brand img {
		width: 94px;
	}

	.brand span {
		padding-left: 10px;
		font-size: 15px;
	}

	.nav-links {
		display: none;
	}

	.hero-copy {
		padding: 58px 0 46px;
	}

	h1 {
		font-size: clamp(52px, 15vw, 70px);
	}

	h2 {
		font-size: clamp(38px, 11.5vw, 50px);
	}

	.hero-intro {
		margin-block: 26px;
		font-size: 16px;
	}

	.store-links {
		gap: 8px;
	}

	.store-links img {
		height: 39px;
	}

	.hero-photo-wrap {
		height: 510px;
	}

	.hero-photo {
		object-position: 70% center;
	}

	.hero-device-wrap {
		bottom: -420px;
		left: 18px;
		width: clamp(148px, 41vw, 178px);
	}

	.section-heading {
		margin-bottom: 46px;
	}

	.section-heading br {
		display: none;
	}

	.eyebrow {
		margin-bottom: 18px;
		font-size: 10px;
	}

	.steps {
		grid-template-columns: 1fr;
		margin-bottom: 58px;
	}

	.steps li,
	.steps li + li,
	.steps li:first-child {
		grid-template-columns: 38px 1fr;
		min-height: auto;
		padding: 21px 0;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.steps h3 {
		margin: 0 0 7px;
		font-size: 21px;
	}

	.session-showcase {
		grid-template-columns: 1fr;
		min-height: 0;
		border-radius: 24px;
	}

	.session-copy {
		padding: 44px 26px 30px;
	}

	.session-copy .quote {
		font-size: 35px;
	}

	.session-device-wrap {
		width: min(58%, 218px);
		margin: 0 auto -86px;
	}

	.inside-grid {
		gap: 52px;
	}

	.inside-intro {
		margin: 23px 0 34px;
		font-size: 16px;
	}

	.device-stage {
		min-height: 470px;
	}

	.device-heal,
	.device-learn {
		width: min(46%, 210px);
	}

	.device-heal {
		left: 1%;
	}

	.device-learn {
		right: 1%;
	}

	.forks-heading {
		grid-template-columns: 1fr;
		gap: 22px;
		margin-bottom: 40px;
	}

	.product-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.product-card {
		border-radius: 24px;
	}

	.product-info {
		align-items: start;
		padding: 21px 22px 24px;
	}

	.product-info h3 {
		font-size: 25px;
	}

	.text-link {
		margin-top: 28px;
	}

	.download h2 {
		margin-bottom: 30px;
	}

	.faq {
		padding-inline: 22px;
		border-radius: 22px;
	}

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

	.site-footer nav {
		flex-wrap: wrap;
		gap: 12px 22px;
	}

	.copyright {
		grid-column: auto;
	}
}

@media (max-width: 390px) {
	.store-links img {
		height: 36px;
	}

	.feature-list > div {
		grid-template-columns: 86px 1fr;
		gap: 18px;
	}

	.hero-photo-wrap {
		height: 470px;
	}

	.hero-device-wrap {
		bottom: -380px;
	}

	.device-stage {
		min-height: 430px;
	}

	.product-info {
		gap: 12px;
	}

	.text-link {
		font-size: 11px;
	}
}

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

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
