/* Tonight — rhinebird.com/tonight/
   The page grows out of the app icon: a glass television, sky blue to lilac,
   on a near-white ground that turns pale blue at the bottom. White and
   pale-blue grounds, screenshots sitting on them like objects, the gradient
   kept for emphasis. Instrument Sans for reading, Instrument Serif italic
   for the one phrase in each headline that carries the colour. */

/* ---------- Tokens ---------- */
:root {
	--sky: #52b2fb;
	--peri: #6578f9;
	--lilac: #be91fb;
	--sky-soft: #90c7f8;

	--ground: #fcfdfe;
	--ground-2: #f4f9ff;
	--ground-3: #e8f3fe;
	--white: #ffffff;

	--ink: #0f1524;
	--ink-2: #414b60;
	--ink-3: #5c6679;

	--line: rgba(15, 21, 36, 0.08);
	--line-tint: rgba(101, 120, 249, 0.18);

	--grad: linear-gradient(100deg, var(--sky) 0%, var(--peri) 52%, var(--lilac) 100%);
	--grad-text: linear-gradient(100deg, #2a93f3 0%, #5064f5 52%, #9a62f4 100%);

	--shadow-card: 0 1px 2px rgba(15, 21, 36, 0.04), 0 24px 48px -28px rgba(101, 120, 249, 0.35);
	--shadow-device:
		0 0 0 1px rgba(15, 21, 36, 0.55), 0 40px 80px -30px rgba(15, 21, 36, 0.45),
		0 30px 60px -30px rgba(101, 120, 249, 0.4);

	--radius: 28px;
	--wrap: 1180px;
	--gutter: clamp(16px, 4vw, 40px);

	--font-sans:
		"Instrument Sans", "Helvetica Neue", Helvetica, Arial, system-ui, -apple-system, sans-serif;
	--font-serif: "Instrument Serif", "Iowan Old Style", Georgia, "Times New Roman", serif;
}

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: auto;
}

body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 1.0625rem;
	line-height: 1.6;
	color: var(--ink);
	background: var(--ground);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

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

img {
	height: auto;
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.16em;
}

h1,
h2,
h3,
p,
ul,
ol,
figure {
	margin: 0;
}

h1,
h2,
h3 {
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.1;
	text-wrap: balance;
}

h1 em,
h2 em,
.type-art em {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 400;
	letter-spacing: 0;
	background: var(--grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	padding-right: 0.06em;
}

:focus-visible {
	outline: 2px solid var(--peri);
	outline-offset: 3px;
	border-radius: 6px;
}

.svg-defs {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
}

.wrap {
	width: min(100% - 2 * var(--gutter), var(--wrap));
	margin-inline: auto;
}

.skip-link {
	position: absolute;
	left: 16px;
	top: -60px;
	z-index: 100;
	padding: 10px 14px;
	background: var(--ink);
	color: var(--white);
	border-radius: 999px;
	font-weight: 600;
	text-decoration: none;
}

.skip-link:focus {
	top: 12px;
}

.eyebrow {
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink-3);
	margin-bottom: 14px;
}

.lede {
	font-size: clamp(1.125rem, 1rem + 0.6vw, 1.3125rem);
	line-height: 1.5;
	color: var(--ink-2);
	max-width: 34em;
}

.meta {
	font-size: 0.9375rem;
	color: var(--ink-3);
}

.section-head {
	max-width: 44rem;
	margin-bottom: clamp(36px, 5vw, 56px);
}

h2 {
	font-size: clamp(2rem, 1.4rem + 2.4vw, 3.25rem);
}

/* App icon: iOS radius, and a hairline so its near-white edge reads on a light ground */
.app-icon {
	border-radius: 22.4%;
	box-shadow:
		0 0 0 1px rgba(15, 21, 36, 0.07),
		0 10px 30px -10px rgba(101, 120, 249, 0.45);
}

.app-icon--sm {
	width: 30px;
	height: 30px;
}

.app-icon--lg {
	width: 84px;
	height: 84px;
	margin-bottom: 28px;
	box-shadow:
		0 0 0 1px rgba(15, 21, 36, 0.07),
		0 18px 40px -14px rgba(101, 120, 249, 0.55);
}

.app-icon--xl {
	width: 104px;
	height: 104px;
	margin: 0 auto 28px;
	box-shadow:
		0 0 0 1px rgba(15, 21, 36, 0.07),
		0 24px 50px -16px rgba(101, 120, 249, 0.6);
}

/* Pills and the App Store badge */
.pill {
	display: inline-flex;
	align-items: center;
	padding: 9px 16px;
	border-radius: 999px;
	background: var(--ink);
	color: var(--white);
	font-weight: 600;
	font-size: 0.9375rem;
	text-decoration: none;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.pill:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 24px -12px rgba(15, 21, 36, 0.6);
}

.badge {
	display: inline-block;
	border-radius: 8px;
	transition: transform 0.2s ease;
}

.badge:hover {
	transform: translateY(-1px);
}

.badge img {
	height: 54px;
	width: auto;
}

.cta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px 24px;
	margin-top: 34px;
}

.cta-row--center {
	justify-content: center;
}

/* Gradient orbs: emphasis, never a flood */
.orb {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	filter: blur(48px);
	will-change: transform;
}

.orb--sky {
	width: 520px;
	height: 520px;
	left: -160px;
	bottom: -180px;
	background: radial-gradient(
		circle at 40% 40%,
		rgba(82, 178, 251, 0.5),
		rgba(82, 178, 251, 0) 68%
	);
}

.orb--lilac {
	width: 620px;
	height: 620px;
	right: -140px;
	top: -220px;
	background: radial-gradient(
		circle at 50% 50%,
		rgba(190, 145, 251, 0.42),
		rgba(190, 145, 251, 0) 68%
	);
}

/* ---------- Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(252, 253, 254, 0.78);
	-webkit-backdrop-filter: saturate(160%) blur(18px);
	backdrop-filter: saturate(160%) blur(18px);
	border-bottom: 1px solid var(--line);
}

.header-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	height: 66px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 600;
	font-size: 1.0625rem;
	letter-spacing: -0.01em;
	text-decoration: none;
}

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

.site-nav a:not(.pill) {
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--ink-2);
	text-decoration: none;
}

.site-nav a:not(.pill):hover {
	color: var(--ink);
}

.nav-toggle {
	display: none;
	appearance: none;
	border: 1px solid var(--line);
	background: var(--white);
	color: var(--ink);
	font: inherit;
	font-weight: 600;
	font-size: 0.9375rem;
	padding: 8px 14px;
	border-radius: 999px;
	cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, var(--white) 0%, var(--ground-2) 60%, var(--ground-3) 100%);
}

.hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	align-items: center;
	gap: clamp(32px, 5vw, 72px);
	padding-block: clamp(48px, 5vw, 64px) clamp(40px, 5vw, 56px);
	min-height: calc(100vh - 66px);
	max-height: 960px;
}

h1 {
	font-size: clamp(2.75rem, 1.6rem + 4.2vw, 4.75rem);
	letter-spacing: -0.03em;
	margin-bottom: 22px;
}

.hero-visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.device--hero {
	width: min(296px, 78vw);
}

/* ---------- Device frames ---------- */
.device {
	position: relative;
	background: #0c0f16;
	padding: 10px;
	border-radius: 48px;
	box-shadow: var(--shadow-device);
}

.device::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.14);
	pointer-events: none;
}

.device img {
	width: 100%;
	border-radius: 38px;
	background: #000;
}

.device--pad {
	padding: 14px;
	border-radius: 30px;
}

.device--pad img {
	border-radius: 16px;
}

/* ---------- Trust strip ---------- */
.trust {
	background: var(--ground-3);
	border-top: 1px solid rgba(101, 120, 249, 0.12);
	border-bottom: 1px solid var(--line);
}

.trust-list {
	list-style: none;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	padding-block: 28px;
}

.trust-list li {
	display: grid;
	grid-template-columns: 10px 1fr;
	column-gap: 14px;
	align-items: baseline;
}

.trust-list strong {
	font-weight: 600;
	font-size: 1.0625rem;
}

.trust-list li > span:last-child {
	grid-column: 2;
	font-size: 0.9375rem;
	color: var(--ink-2);
}

.dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--grad);
	box-shadow: 0 0 0 3px rgba(101, 120, 249, 0.14);
	transform: translateY(1px);
}

/* ---------- Features ---------- */
.features {
	padding-block: clamp(72px, 9vw, 128px);
}

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

.feat {
	display: flex;
	flex-direction: column;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
	overflow: hidden;
	min-height: 600px;
}

.feat-text {
	padding: 36px 36px 28px;
}

.feat-text h3 {
	font-size: 1.5rem;
	margin-bottom: 10px;
}

.feat-text p {
	color: var(--ink-2);
	max-width: 36em;
}

.num {
	display: inline-block;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	margin-bottom: 14px;
	background: var(--grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.feat-visual {
	position: relative;
	flex: 1;
	min-height: 320px;
	overflow: hidden;
	background:
		radial-gradient(120% 90% at 50% 100%, rgba(82, 178, 251, 0.22), rgba(82, 178, 251, 0) 60%),
		linear-gradient(180deg, var(--white), var(--ground-3));
}

.feat--phone .feat-visual .device {
	position: absolute;
	left: 50%;
	top: 40px;
	width: 264px;
	transform: translateX(-50%);
}

/* The real Play Trailer row, cropped from the Home screenshot */
.feat--crop .feat-visual {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px;
}

.crop {
	width: min(100%, 440px);
	text-align: center;
}

.crop-frame {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1100 / 440;
	border-radius: 22px;
	background: #000;
	box-shadow:
		0 0 0 1px rgba(15, 21, 36, 0.55),
		0 30px 60px -28px rgba(15, 21, 36, 0.5);
}

.crop-frame img {
	width: 100%;
	margin-top: -99%;
}

.crop figcaption {
	margin-top: 18px;
	font-size: 0.875rem;
	color: var(--ink-3);
}

/* Typographic chapters */
.feat--type .feat-visual {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
}

.orb--card {
	width: 420px;
	height: 420px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -30%);
	background: radial-gradient(
		circle at 50% 50%,
		rgba(82, 178, 251, 0.42),
		rgba(190, 145, 251, 0.18) 45%,
		rgba(190, 145, 251, 0) 70%
	);
}

.orb--card-alt {
	background: radial-gradient(
		circle at 50% 50%,
		rgba(190, 145, 251, 0.42),
		rgba(82, 178, 251, 0.18) 45%,
		rgba(82, 178, 251, 0) 70%
	);
}

.type-art {
	position: relative;
	text-align: center;
	line-height: 1.1;
	text-wrap: balance;
}

.type-art span {
	display: block;
	font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
	font-weight: 600;
	letter-spacing: -0.02em;
	margin-bottom: 6px;
}

.type-art em {
	display: block;
	font-size: clamp(2.5rem, 1.8rem + 2.4vw, 3.75rem);
}

/* ---------- How it works ---------- */
.how {
	position: relative;
	padding-block: clamp(72px, 9vw, 128px);
	background: linear-gradient(180deg, var(--ground) 0%, var(--ground-2) 100%);
	border-top: 1px solid var(--line);
}

.how-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
	grid-template-rows: auto 1fr;
	column-gap: clamp(40px, 6vw, 96px);
	align-items: start;
}

.how-head {
	grid-column: 1;
	margin-bottom: 8px;
}

.how-copy {
	grid-column: 1;
}

.how-visual {
	grid-column: 2;
	grid-row: 1 / 3;
	align-self: center;
}

.steps {
	list-style: none;
	padding: 0;
	display: grid;
	gap: 28px;
	margin-top: 32px;
}

.steps li {
	display: grid;
	grid-template-columns: 44px 1fr;
	gap: 18px;
}

.step-num {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-weight: 700;
	font-size: 1rem;
	color: var(--white);
	background: var(--grad);
	box-shadow: 0 10px 22px -10px rgba(101, 120, 249, 0.7);
}

.steps h3 {
	font-size: 1.25rem;
	margin-bottom: 6px;
	padding-top: 8px;
}

.steps p {
	color: var(--ink-2);
	max-width: 36em;
}

.how-visual {
	position: relative;
	display: flex;
	justify-content: center;
}

.orb--pad {
	width: 90%;
	aspect-ratio: 1;
	left: 5%;
	top: 10%;
	background: radial-gradient(
		circle at 50% 50%,
		rgba(101, 120, 249, 0.35),
		rgba(190, 145, 251, 0.2) 50%,
		rgba(190, 145, 251, 0) 72%
	);
}

.device--pad {
	width: min(100%, 460px);
}

/* ---------- Privacy ---------- */
.privacy {
	padding-block: clamp(72px, 9vw, 128px);
	background: var(--ground-3);
	border-top: 1px solid rgba(101, 120, 249, 0.12);
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 22px;
	padding: 30px 28px 32px;
	box-shadow: var(--shadow-card);
}

.card-icon {
	width: 40px;
	height: 40px;
	margin-bottom: 22px;
	fill: none;
	stroke: url(#tg);
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.card h3 {
	font-size: 1.25rem;
	margin-bottom: 10px;
}

.card p {
	color: var(--ink-2);
	font-size: 1rem;
}

/* ---------- FAQ ---------- */
.faq {
	padding-block: clamp(72px, 9vw, 128px);
}

.faq-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: clamp(32px, 5vw, 80px);
	align-items: start;
}

.faq-grid .section-head {
	margin-bottom: 0;
	position: sticky;
	top: 96px;
}

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

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

.faq-list summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 4px;
	font-weight: 600;
	font-size: 1.125rem;
	letter-spacing: -0.01em;
}

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

.faq-list summary::after {
	content: "";
	flex: none;
	width: 12px;
	height: 12px;
	background:
		linear-gradient(var(--peri), var(--peri)) center / 12px 1.5px no-repeat,
		linear-gradient(var(--peri), var(--peri)) center / 1.5px 12px no-repeat;
	transition: transform 0.25s ease;
}

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

.faq-list details p {
	padding: 0 4px 22px;
	color: var(--ink-2);
	max-width: 40em;
}

.faq-list details p a {
	color: var(--peri);
	font-weight: 500;
}

/* ---------- Studio note ---------- */
.studio {
	padding-block: clamp(72px, 9vw, 128px);
	background: var(--ground-2);
	border-top: 1px solid var(--line);
}

.studio-inner {
	max-width: 42rem;
}

.prose {
	margin-top: 28px;
	display: grid;
	gap: 18px;
	font-size: 1.125rem;
	color: var(--ink-2);
}

.prose p:first-child {
	color: var(--ink);
}

.prose a {
	color: var(--peri);
	font-weight: 500;
}

/* ---------- Closing ---------- */
.closing {
	position: relative;
	overflow: hidden;
	padding-block: clamp(80px, 10vw, 140px) clamp(48px, 6vw, 72px);
	background: linear-gradient(180deg, var(--ground-2) 0%, var(--ground-3) 100%);
	text-align: center;
}

.orb--closing {
	left: 50%;
	bottom: auto;
	top: -140px;
	transform: translateX(-90%);
}

.orb--closing-alt {
	right: auto;
	left: 50%;
	top: -160px;
	transform: translateX(-10%);
}

.closing-inner {
	position: relative;
	max-width: 44rem;
}

.closing .lede {
	margin: 18px auto 0;
}

.credit {
	position: relative;
	margin-top: clamp(56px, 8vw, 96px);
	margin-inline: auto;
	max-width: 42rem;
	padding: 26px 28px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid var(--line);
	font-size: 0.9375rem;
	color: var(--ink-2);
	text-align: left;
}

.credit h3 {
	font-size: 1rem;
	margin-bottom: 8px;
	color: var(--ink);
}

.credit p + p {
	margin-top: 8px;
}

/* ---------- Footer ---------- */
.site-footer {
	background: var(--ground-3);
	border-top: 1px solid rgba(101, 120, 249, 0.12);
	padding-block: 36px 40px;
	font-size: 0.9375rem;
	color: var(--ink-2);
}

.footer-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px 32px;
}

.footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	color: var(--ink);
	text-decoration: none;
}

.bird {
	width: 20px;
	height: 20px;
	background: var(--grad);
	-webkit-mask: url("/assets/images/rhinebird-mark.png") center / contain no-repeat;
	mask: url("/assets/images/rhinebird-mark.png") center / contain no-repeat;
}

.footer-links {
	list-style: none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
}

.footer-links a {
	text-decoration: none;
}

.footer-links a:hover {
	text-decoration: underline;
}

.footer-legal {
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid var(--line);
	display: flex;
	flex-wrap: wrap;
	gap: 6px 32px;
	font-size: 0.875rem;
	color: var(--ink-3);
}

/* ---------- Legal pages ---------- */
.legal {
	padding-block: clamp(48px, 7vw, 96px);
}

.page--narrow {
	width: min(100% - 2 * var(--gutter), 46rem);
	margin-inline: auto;
}

.legal h1 {
	font-size: clamp(2.25rem, 1.6rem + 2.4vw, 3.25rem);
	margin-bottom: 14px;
}

.legal-meta {
	color: var(--ink-3);
	margin-bottom: 24px;
}

.legal-meta strong {
	font-weight: 500;
}

.legal-intro {
	font-size: 1.125rem;
	color: var(--ink-2);
}

.legal address {
	font-style: normal;
	color: var(--ink-2);
	padding: 18px 22px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: var(--white);
	margin-block: 8px 24px;
}

.legal h2 {
	font-size: 1.375rem;
	margin: 40px 0 12px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
}

.legal p,
.legal li {
	color: var(--ink-2);
}

.legal p + p {
	margin-top: 12px;
}

.legal ul {
	padding-left: 1.25em;
	display: grid;
	gap: 10px;
	margin-block: 12px;
}

.legal a {
	color: var(--peri);
}

/* ---------- Reveal (gated: no JS, reduced motion or ?nomotion = everything visible) ---------- */
@media (prefers-reduced-motion: no-preference) {
	.js:not(.nomotion) .reveal {
		opacity: 0;
		transform: translateY(18px);
		transition:
			opacity 0.7s ease,
			transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
	}

	.js:not(.nomotion) .reveal.is-visible {
		opacity: 1;
		transform: none;
	}

	html {
		scroll-behavior: smooth;
	}
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
	.faq-grid {
		grid-template-columns: 1fr;
	}

	.faq-grid .section-head {
		margin-bottom: 8px;
		position: static;
	}
}

@media (max-width: 900px) {
	.hero-grid {
		grid-template-columns: 1fr;
		min-height: 0;
		max-height: none;
		padding-top: 48px;
		gap: 40px;
	}

	.device--hero {
		width: min(264px, 70vw);
	}

	.how-grid {
		grid-template-columns: 1fr;
		grid-template-rows: none;
	}

	.how-head,
	.how-copy,
	.how-visual {
		grid-column: 1;
		grid-row: auto;
	}

	.how-head {
		order: 0;
	}

	.how-visual {
		order: 1;
		margin-block: 8px 40px;
	}

	.how-copy {
		order: 2;
	}

	.device--pad {
		width: min(100%, 520px);
	}

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

	.trust-list {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

@media (max-width: 860px) {
	.nav-toggle {
		display: inline-flex;
	}

	.site-nav {
		display: none;
		position: absolute;
		top: calc(100% + 8px);
		right: 0;
		left: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
		padding: 10px;
		background: var(--white);
		border: 1px solid var(--line);
		border-radius: 20px;
		box-shadow: 0 30px 60px -30px rgba(15, 21, 36, 0.35);
	}

	.site-nav.is-open {
		display: flex;
	}

	.site-nav a:not(.pill) {
		padding: 12px 14px;
		border-radius: 12px;
		font-size: 1.0625rem;
	}

	.site-nav a:not(.pill):hover {
		background: var(--ground-2);
	}

	.site-nav .pill {
		justify-content: center;
		margin: 6px 4px 2px;
		padding: 12px 16px;
	}

	/* Without JavaScript the nav simply stays in the header */
	html:not(.js) .nav-toggle {
		display: none;
	}

	html:not(.js) .site-nav {
		display: flex;
		position: static;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 8px 16px;
		padding: 0;
		border: 0;
		box-shadow: none;
		background: transparent;
	}
}

@media (max-width: 720px) {
	.feat-grid {
		grid-template-columns: 1fr;
	}

	.feat {
		min-height: 0;
	}

	.feat-text {
		padding: 28px 24px 22px;
	}

	.feat-visual {
		min-height: 300px;
	}

	.feat--phone .feat-visual .device {
		width: 236px;
		top: 32px;
	}

	.feat--crop .feat-visual,
	.feat--type .feat-visual {
		padding: 28px 20px;
	}

	.feat--crop .feat-visual {
		min-height: 0;
	}

	.orb--sky,
	.orb--lilac {
		width: 380px;
		height: 380px;
	}

	.device {
		padding: 8px;
		border-radius: 40px;
	}

	.device img {
		border-radius: 32px;
	}

	.device--pad {
		padding: 10px;
		border-radius: 22px;
	}

	.device--pad img {
		border-radius: 12px;
	}

	.steps li {
		grid-template-columns: 36px 1fr;
		gap: 14px;
	}

	.step-num {
		width: 36px;
		height: 36px;
		font-size: 0.9375rem;
	}

	.steps h3 {
		padding-top: 4px;
	}

	.credit {
		padding: 22px 20px;
	}
}
