:root {
	color-scheme: light dark;
	--backgroundColor: rgb(255,255,255);
	--navBackgroundColor: rgb(232,232,232);
	--textColor: rgb(0,0,0);
	--headerColor: rgb(232,232,232);
	--footerColor: rgb(232,232,232);
	--linkColor: rgb(22,0,254);
	--linkHoverColor: rgb(109,109,109);
	--titleColor: rgb(0,0,0);
	--h2HeaderColor: rgb(60,60,60);
	--tableBorderColor: rgb(20,20,20);
	--tableHeaderBackgroundColor: rgb(215,215,215);
	--tableAlternatingColor: rgb(249,249,249);
	--asideBackgroundColor: rgb(234,234,234);
	--lingonProAccentColor: rgb(28,28,29);
}

@media (prefers-color-scheme: dark) {
	:root {
		--backgroundColor: rgb(44,44,48);
		--navBackgroundColor: rgb(26,26,30);
		--textColor: rgb(214,214,214);
		--headerColor: rgb(100,100,100);
		--footerColor: rgb(100,100,100);
		--linkColor: rgb(0,150,255);
		--linkHoverColor: rgb(146,146,146);
		--titleColor: rgb(245,245,245);
		--h2HeaderColor: rgb(180,180,180);
		--tableBorderColor: rgb(220,220,220);
		--tableHeaderBackgroundColor: rgb(40,40,40);
		--tableAlternatingColor: rgb(56,56,56);
		--asideBackgroundColor: rgb(26,26,30);
		--lingonProAccentColor: rgb(227,227,228);
	}
}

@view-transition {
	navigation: auto;
}


body {
	font: -apple-system-body;
	font-family: system-ui, "SF Pro Display", "Helvetica Neue", Helvetica, Verdana, sans-serif;
	font-size: 1.0em;
	line-height: 1.6em;
	margin: 0;
	padding: 0;
	margin-left: auto;
	margin-right: auto;
	background: var(--backgroundColor);
	color: var(--textColor);
	height: 100%;
	max-width: 38em;
	min-width: 12em;
	text-wrap: pretty;
}

header {
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-bottom-color: var(--headerColor);
	height: 6.6em;
	margin-top: 0.6em;
}

nav {
	min-height: 1.5em;
	clear: both;
	text-align: center;
	padding: 0.5em;
	justify-content: space-between;
	background: var(--navBackgroundColor);
	border-radius: 0 0 0.6em 0.6em;
}

nav h3 {
	display: inline;
	padding-left: 1.06em;
	padding-right: 1.06em;
	font-size: 0.9em;
	margin-top: 0.9em;
	font-weight: 500;
}

nav h3:before {
	/*content: "• ";*/
}

.navGroup {
}

main {
	margin-left: 0.4em;
	margin-right: 0.4em;
	margin-bottom: 2em;
}

section {
	padding-bottom: 0.8em;
	padding-top: 0.2em;
}

strong {
	font-weight: 600;
}

footer {
	border-top-style: solid;
	border-top-width: 1px;
	border-top-color: var(--footerColor);
	bottom: 0;
	left: 0;
	right: 0;
	clear: both;
	text-align: center;
	padding: 0.5em;
	font-size: 92%;
}

a, a:link, a:visited {
	text-decoration: none;
	color: var(--linkColor);
}

a:hover {
	text-decoration: underline;
	color: var(--linkHoverColor);;
}

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

a.noLink, a.noLink:link, a.noLink:visited, a.noLink:hover {
	text-decoration: none;
	color: var(--titleColor);
}

img {
	border: 0;
}


h1, h2, h3, h4, h5 {
	color: var(--titleColor);
	font-weight: normal;
}


h1 {
	font-size: 2.6em;
}

h2 {
	font-size: 1.7em;
}

header h1 {
	margin-left: 2.04em;
	margin-top: 30px;
	position: absolute;
	clear: both;
	white-space: nowrap;
	font-weight: 500;
}

header h2 {
	position: absolute;
	margin-top: 68px;
	margin-left: 5.6em;
	padding-bottom: 0em;
	font-style: normal;
	font-weight: 500;
	color: var(--h2HeaderColor);
	font-size: 96%;
	float: left;
	display: inline-block;
	text-wrap: nowrap;
}

p {
	margin-top: 0.6em;
	margin-bottom: 0.6em;
}

h4 {
	margin-bottom: 0;
	padding-bottom: 0;
	margin-top: 1.0em;
	font-size: 1.8em;
	line-height: 1.3em;
}

h5 {
	margin-bottom: 0;
	padding-bottom: 0.34em;
	margin-top: 1.0em;
	font-size: 1.8em;
	line-height: 1.3em;
}

h5.text {
	padding-bottom: 0.0em;
}

hr {
	border: 0;
	border-top: 1px solid var(--headerColor);
}

.indented {
	margin-left: 2em;
}

.logo {
	position: absolute;
	width: 64px;
	height: 64px;
	margin-left: 0.3em;
	margin-top: 23px;
}

dt {
	font-size: 1.3em;
	margin-top: 1.4em;
	margin-bottom: 0.4em;
	color: var(--titleColor);
}

dd {
	padding: 0;
	margin: 0;
	padding-bottom: 0.5em;
}

dl {
	padding: 0;
	margin: 0;
}

pre {
	margin-top: 0.1em;
	margin-bottom: 0.1em;
	white-space: pre-wrap;
}

ul, ol {
	margin-top: 0.2em;
	margin-bottom: 0.1em;
	padding-left: 2em;
}

ol {
	padding-left: 3em;
}

table {
	border-collapse: collapse;
	margin-top: 1em;
}

table, th, td {
	border: 1px solid var(--tableBorderColor);
}

td {
	padding-left: 0.4em;
	padding-right: 0.4em;
	font-size: 90%;
}

th {
	background: var(--tableHeaderBackgroundColor);
	font-weight: 400;
	font-size: 0.9em;
}

tr:nth-child(even) {
	background: var(--tableAlternatingColor);
}

.checkmark {
	color: rgb(67,214,81);
	font-weight: 900;
	font-size: 1.3em;
}

aside {
	padding: 0.8em;
	padding-left: 1.2em;
	margin: 0.6em;
	margin-top: -2.1em;
	margin-right: 0;
	float: right;
	width: 13em;
	font-size: 92%;
	line-height: 1.3em;
	background: var(--asideBackgroundColor);
	border-radius: 6px;
}

.contentPadding {
	padding-top: 1em;
}

.sectionPadding {
	padding-top: 3em;
}

.bottomPadding {
	padding-bottom: 0.3em;
}

.center {
	text-align: center;
}

.appLogo {
	display: inline-block;
	vertical-align: middle;
	width: 24px;
	height: 24px;
}

.newRelease {
	color: rgb(185,41,31);
	margin-bottom: -0.3em;
	font-size: 2.6em;
	font-weight: 500;
	margin-top: 0.7em;
	line-height: 1.3em;
}

.store-style-digital-only .store-section-customer-contact {
	display: inline-block;
	width: 48%;
}

.store-style-digital-only .store-section-payment {
	clear: none !important;
	display: inline-block;
	float: right;
	width: 48%;
}

.instagramLogo {
	vertical-align: -10%;
	width: 16px;
	height: 16px;
}

video {
	padding-top: 1em;
}

button {
	display: inline;
	padding: 4px 24px;
	margin-bottom: 6px;
	border-radius: 16px;
	border: 1px;
	font-weight: 660;
	font-size: 0.92em;
	color: rgb(255,255,255);
	background: rgb(0,113,227);
}

select {
	margin: 4px;
	padding: 4px;
}

.screenshots {
	border-radius: 6px;
	cursor: pointer;
	transition: 0.3s;
	padding-right: 3px;
}

.screenshots:hover {
	opacity: 0.8;
}

.modal {
	display: none;
	position: fixed;
	z-index: 1;
	padding-top: 12%;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0.0,0.0,0.0,0.8);
}

.modal-content {
	margin: auto;
	display: block;
	width: 88%;
	max-width: 864px;
}

@keyframes zoom {
	from {
		transform: scale(0)
	}
	to {
		transform: scale(1)
	}
}

.close {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #f1f1f1;
	font-size: 40px;
	transition: 0.3s;
}

.close:hover,
.close:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
}

@media only screen and (max-width: 864px) {
	.modal-content {
	width: 100%;
	}
}

.lingonAccent {
	color: rgb(149,7,8);
}

.lingonProAccent {
	color: var(--lingonProAccentColor);
}


details {
	background-color: rgb(247,247,248);
	border: 1px solid rgb(228,228,229);
	border-radius: 8px;
	box-shadow: 1px 1px 1px rgba(0,0,0,0.04);

	> div,
	> p {
		margin: 0;
		padding: 1em;
		padding-top: 0.4em;
	}

	&:not(:last-child) {
		margin-bottom: 1em;
	}
	color: rgb(28,28,29);
	
}

summary {
	font-size: 1.1em;
	font-weight: 630;
	cursor: pointer;
	transition: all 200ms ease-in-out;
	padding: 0.6em;
	color: rgb(28,28,29);
}

.detailsPadding {
	padding-top: 0em;
	padding-bottom: 0.8em;
}

.appStore {
	width: 140px;
	height: 46px;
	background: url("images/appStore.svg") center no-repeat;
	background-size: contain;
	border-radius: 0;
	cursor: pointer;
}

.macAppStore {
	width: 180px;
	height: 46px;
	background: url("images/macAppStore.svg") center no-repeat;
	background-size: contain;
	border-radius: 0;
	cursor: pointer;
}

.goArrow {
	display: inline-block;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	letter-spacing: 0.01em;
	font-size: 1.4em;
	margin-left: 0.28em;
	vertical-align: -0.03em;
	transition: transform 0.3s ease;
}

.downloadIcon {
	width: 1.1em;
	height: 1.1em;
	color: var(--linkColor);
	text-decoration: none;
	display: inline-flex;
	vertical-align: -0.38em;
	margin-left: 0.24em;
	transition: transform 0.2s ease;
}

a:hover .goArrow {
	transform: translateX(4px);
}

a:hover .downloadIcon {
	transform: translateY(2px);
}


details.faq {
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	padding: 0.5rem 0;
	font-family: -apple-system, "SF Pro Text", "Helvetica Neue", sans-serif;
}

details.faq summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.4rem;

	font-size: 1rem;
	font-weight: 500;
	color: #1d1d1f;

	-webkit-tap-highlight-color: transparent;
}

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

details.faq summary::before {
	content: "＋";
	width: 1rem;
	text-align: center;

	font-size: 1.1rem;
	font-weight: 500;
	color: #4e4e43;

	transition: color 0.2s ease;
}

details[open].faq summary::before {
	content: "－";
}

details.faq summary:hover::before,
details.faq summary:focus-visible::before {
	color: #0071e3;
}

details.faq summary::before {
	transition: color 0.15s ease;
}

details.faq summary:hover {
	color: #0071e3;
}

details.faq summary:focus-visible {
	outline: none;
}

.faq-content {
	overflow: hidden;
	max-height: 0;
	opacity: 0;

	transition:
	max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
	opacity 0.2s ease;

	margin-left: 1.0rem;
}

details[open] .faq-content {
	max-height: 40rem;
	opacity: 1;
}

.faq-content p {
	margin: 0.4rem 0 0;
	font-size: 1rem;
	line-height: 1.5;
	color: #303033;
}

.faq-content ul,
.faq-content ol {
	margin: 0.5rem 0 0;
	padding-left: 1.2rem;

	font-size: 1rem;
	line-height: 1.5;
	color: #1e1e13;

	list-style-position: outside;
}

.faq-content li {
	margin: 0.25rem 0;
}

.faq-content ul li::marker,
.faq-content ol li::marker {
	color: #4a4a40;
}

.faq-content > * + * {
	margin-top: 0.5rem;
}

.faq-content pre {
	margin: 0.6rem 0 0.2rem;
	padding: 0.6rem 0.8rem;
	
	font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
	font-size: 0.9rem;
	line-height: 1.45;
	
	color: #1d1d1f;
	background-color: rgba(0, 0, 0, 0.03);
	
	border-radius: 6px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	
	white-space: pre-wrap;
	word-break: break-word;
	overflow-wrap: anywhere;
	overflow-x: auto;
	
	max-width: 100%;
	box-sizing: border-box;
}

/* Modern refresh overrides */
:root {
	--backgroundColor: rgb(249, 249, 251);
	--navBackgroundColor: rgba(230, 231, 234, 0.78);
	--textColor: rgb(24, 24, 28);
	--headerColor: rgba(0, 0, 0, 0.08);
	--footerColor: rgba(0, 0, 0, 0.08);
	--linkColor: rgb(0, 102, 204);
	--linkHoverColor: rgb(20, 20, 20);
	--titleColor: rgb(14, 14, 16);
	--h2HeaderColor: rgb(82, 82, 92);
	--tableBorderColor: rgba(0, 0, 0, 0.12);
	--tableHeaderBackgroundColor: rgba(0, 0, 0, 0.04);
	--tableAlternatingColor: rgba(0, 0, 0, 0.02);
	--asideBackgroundColor: rgba(0, 0, 0, 0.04);
	--lingonProAccentColor: rgb(22, 22, 23);
	--contentWidth: min(100%, 46rem);
	--contentPadding: clamp(1rem, 3vw, 2rem);
	--surfaceColor: rgba(255, 255, 255, 0.7);
	--cardColor: rgba(255, 255, 255, 0.85);
	--mutedTextColor: rgb(70, 70, 78);
	--accentColor: rgb(0, 113, 227);
	--downloadColor: rgb(0, 113, 227);
	--successColor: rgb(28, 171, 87);
	--borderColor: rgba(0, 0, 0, 0.08);
	--shadowColor: rgba(0, 0, 0, 0.08);
}

@media (prefers-color-scheme: dark) {
	:root {
		--backgroundColor: rgb(20, 20, 22);
		--navBackgroundColor: rgba(35, 35, 38, 0.9);
		--textColor: rgb(230, 230, 235);
		--headerColor: rgba(255, 255, 255, 0.12);
		--footerColor: rgba(255, 255, 255, 0.12);
		--linkColor: rgb(78, 170, 255);
		--linkHoverColor: rgb(232, 232, 240);
		--titleColor: rgb(245, 245, 248);
		--h2HeaderColor: rgb(174, 174, 186);
		--tableBorderColor: rgba(255, 255, 255, 0.16);
		--tableHeaderBackgroundColor: rgba(255, 255, 255, 0.05);
		--tableAlternatingColor: rgba(255, 255, 255, 0.03);
		--asideBackgroundColor: rgba(255, 255, 255, 0.05);
		--lingonProAccentColor: rgb(235, 235, 238);
		--surfaceColor: rgba(28, 28, 32, 0.7);
		--cardColor: rgba(32, 32, 36, 0.88);
		--mutedTextColor: rgb(198, 198, 208);
		--accentColor: rgb(52, 148, 255);
		--downloadColor: rgb(52, 148, 255);
		--successColor: rgb(63, 210, 120);
		--borderColor: rgba(255, 255, 255, 0.12);
		--shadowColor: rgba(0, 0, 0, 0.4);
	}
}

html {
	scroll-behavior: smooth;
}

body {
	max-width: var(--contentWidth);
	padding-left: var(--contentPadding);
	padding-right: var(--contentPadding);
	background: radial-gradient(circle at top, rgba(255, 255, 255, 0.9), var(--backgroundColor) 55%);
}

@media (prefers-color-scheme: dark) {
	body {
		background: radial-gradient(circle at top, rgba(60, 60, 70, 0.35), var(--backgroundColor) 55%);
	}
}

nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.25rem 0.6rem;
	backdrop-filter: blur(12px);
}

nav h3 {
	margin: 0.1rem 0;
}

nav a.isCurrent {
	color: var(--titleColor);
	
	position: relative;
}

nav a.isCurrent::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -0.3rem;
	width: 1.2rem;
	height: 2px;
	transform: translateX(-50%);
	background: var(--accentColor);
	border-radius: 999px;
}

nav a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.2rem 0.7rem;
	border-radius: 999px;
	transition: color 0.2s ease, background-color 0.2s ease;
}

nav a:hover {
	text-decoration: none;
	background-color: var(--surfaceColor);
}

header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
	height: auto;
	margin-top: 1.1rem;
	padding-bottom: 0.6rem;
	position: relative;
	text-align: center;
}

header h1,
header h2 {
	position: static;
	margin: 0;
	white-space: normal;
}

header a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

header h1 {
	font-size: clamp(2.6rem, 3.6vw, 3.4rem);
}

header h2 {
	font-size: clamp(1.05rem, 1.4vw, 1.35rem);
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}

.logo {
	position: static;
	margin: 0;
}

.appLogo {
	display: inline-block;
	vertical-align: middle;
}

main {
	margin-left: 0;
	margin-right: 0;
}

section {
	padding-top: 1.0rem;
	padding-bottom: 1.0rem;
}

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

.screenshots {
	border-radius: 12px;
	box-shadow: 0 12px 30px var(--shadowColor);
	background-color: var(--surfaceColor);
}

.screenshot-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 0.8rem;
}

.feature-callout {
	display: grid;
	grid-template-columns: minmax(160px, 1fr) minmax(220px, 1.2fr);
	gap: 1rem;
	align-items: center;
	padding: 1rem;
	border-radius: 16px;
	background: var(--cardColor);
	border: 1px solid var(--borderColor);
	box-shadow: 0 12px 28px var(--shadowColor);
}

.feature-callout img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	border: 1px solid var(--borderColor);
	background: var(--surfaceColor);
}

.downloadActions {
	margin-top: 1.6rem;
	margin-bottom: 1.2rem;
}

.buyActions {
	margin-top: 1.6rem;
}

.purchaseLinks {
	display: inline-block;
	padding: 0.4rem 1rem;
	background: linear-gradient(180deg, rgba(0, 113, 227, 0.015), rgba(0, 113, 227, 0.04));
	border: 1px solid var(--borderColor);
	border-radius: 16px;
	font-weight: normal;
	white-space: nowrap;
	font-size: 0.96rem;
}

.purchaseLinks a {
	font-weight: normal;
}

@media (max-width: 520px) {
	.purchaseLinks {
		white-space: normal;
	}
}

.prominentLink {
	display: inline-block;
	font-weight: 600;
	font-size: 1.05rem;
	color: var(--linkColor);
}

.checkItem {
	display: flex;
	align-items: baseline;
	gap: 0.4rem;
}

.checkmark {
	color: var(--successColor);
	font-weight: 700;
}

.priceAside {
	float: right;
	margin-top: 0;
	width: 14rem;
}

.feature-callout + .feature-callout {
	margin-top: 1rem;
}

.placeholderImage {
	aspect-ratio: 4 / 3;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(0, 113, 227, 0.15), rgba(0, 0, 0, 0.04));
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	color: var(--mutedTextColor);
	border: 1px dashed var(--borderColor);
	text-align: center;
	padding: 0.6rem;
}

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

.modal {
	display: grid;
	place-items: center;
	padding: clamp(1rem, 6vw, 4rem);
}

.modal[hidden] {
	display: none;
}

.modal {
	position: fixed;
	inset: 0;
	justify-items: center;
	align-items: center;
}

.modal-content {
	margin: 0 auto;
}

.modal-content {
	width: min(92vw, 980px);
	border-radius: 14px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.close {
	position: fixed;
	top: 1.2rem;
	right: 1.6rem;
	z-index: 2;
	background: rgba(0, 0, 0, 0.6);
	color: #ffffff;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.close:hover,
.close:focus {
	background: rgba(0, 0, 0, 0.8);
	color: #ffffff;
}

button,
.ctaButton {
	border: none;
	border-radius: 999px;
	padding: 0 1.9rem;
	height: 44px;
	box-sizing: border-box;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1;
	background: var(--accentColor);
	color: white;
	cursor: pointer;
	appearance: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	white-space: nowrap;
	flex: 0 0 auto;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.14);
}

.buttonIcon {
	width: 1.05rem;
	height: 1.05rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.ctaButton,
.ctaButton:link,
.ctaButton:visited {
	color: white;
	text-decoration: none;
}

button:hover,
.ctaButton:hover {
	transform: translateY(-1px);
	color: rgb(0, 0, 0);
}

.ctaButton.secondary {
	background: transparent;
	color: var(--linkColor);
	box-shadow: none;
	border: 1px solid var(--borderColor);
}

.ctaButton.download {
	background: var(--downloadColor);
}

.ctaButton.buy {
	background: var(--downloadColor);
}

.ctaButton.ghost {
	background: var(--cardColor);
	color: var(--titleColor);
	border: 1px solid var(--borderColor);
}

.ctaButton.ghost,
.ctaButton.ghost:link,
.ctaButton.ghost:visited {
	color: var(--titleColor);
}

.ctaButton:hover,
button.ctaButton:hover {
	background: rgb(207, 232, 255);
}

.ctaButton.download:hover,
.ctaButton.buy:hover {
	background: rgb(200, 230, 255);
}

.ctaButton.ghost:hover {
	background: var(--surfaceColor);
	color: var(--titleColor);
}

button:focus-visible,
.ctaButton:focus-visible {
	outline: 3px solid var(--accentColor);
	outline-offset: 3px;
}

button:active,
.ctaButton:active {
	transform: scale(0.97);
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.macAppStore,
.appStore {
	padding: 0;
	box-shadow: none;
	background-color: transparent;
}

aside {
	background: var(--cardColor);
	border: 1px solid var(--borderColor);
	box-shadow: 0 12px 28px var(--shadowColor);
	border-radius: 16px;
}

.priceAside {
	margin-top: 0.2rem;
}

.feature-callout {
	max-width: 30rem;
}

@media (min-width: 900px) {
	.feature-callout {
		max-width: 26rem;
	}
}

details {
	background-color: var(--cardColor);
	border: 1px solid var(--borderColor);
	color: var(--textColor);
}

details.faq summary {
	color: var(--textColor);
}

.faq-content p,
.faq-content ul,
.faq-content ol {
	color: var(--mutedTextColor);
}

.skipLink {
	position: absolute;
	top: 0.6rem;
	left: 0.6rem;
	padding: 0.4rem 0.7rem;
	border-radius: 999px;
	background: var(--surfaceColor);
	color: var(--linkColor);
	transform: translateY(-200%);
	transition: transform 0.2s ease;
	z-index: 10;
}

.skipLink:focus {
	transform: translateY(0);
}

@media (max-width: 640px) {
	header h1,
	header h2 {
		text-align: center;
	}
}

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

	* {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}
}

.appGrid {
	display: grid;
	gap: 1rem;
}

.appCard {
	padding: 1rem 1.1rem;
	border-radius: 16px;
	background: var(--cardColor);
	border: 1px solid var(--borderColor);
	box-shadow: 0 16px 32px var(--shadowColor);
}

.appCard h4 {
	margin-top: 0;
}

.appCard h4 a {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
}

.appMeta {
	color: var(--mutedTextColor);
	font-size: 0.95rem;
}

.cardActions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	align-items: center;
	margin-top: 0.8rem;
}

.heroText {
	font-size: 1.05rem;
	color: var(--mutedTextColor);
}

.sectionIntro {
	margin-top: 0.9rem;
}

.sectionIntro.jumpLinks {
	margin-top: 1.2rem;
}

.pullQuote {
	margin: 1.1rem 0 1.4rem;
	padding: 0.85rem 1rem 0.9rem;
	border-left: 3px solid var(--accentColor);
	border-radius: 0 8px 8px 0;
	background: var(--surfaceColor);
	color: var(--mutedTextColor);
}

.pullQuote p {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.45;
	color: var(--titleColor);
}

.pullQuote footer {
	margin-top: 0.35rem;
	padding: 0;
	border: 0;
	clear: none;
	text-align: left;
	font-size: 0.92rem;
	line-height: 1.35;
	color: var(--mutedTextColor);
}

.pullQuote cite {
	font-style: normal;
}

.featureList {
	margin: 0.6rem 0 0;
	padding-left: 1.2rem;
}

.featureList li {
	margin: 0.25rem 0;
}

