:root {
	--ink: #171a18;
	--paper: #ffffff;
	--canvas: #f3f4f1;
	--line: #d7dcd7;
	--muted: #69716b;
	--lime: #c8f16b;
	--blue: #2f63df;
	--coral: #ff735e;
	--cyan: #59d3da;
	--yellow: #ffd95a;
	--shadow: 0 18px 45px rgba(23, 26, 24, 0.09);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: clip;
}

body {
	margin: 0;
	background: var(--canvas);
	color: var(--ink);
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	font-size: 15px;
	letter-spacing: 0;
	overflow-x: clip;
}

body.drawer-open {
	overflow: hidden;
}

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

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

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

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

.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;
}

.spectrum-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--ink);
	color: var(--paper);
	border-bottom: 4px solid var(--lime);
}

.header-frame {
	display: grid;
	grid-template-columns: 245px auto minmax(260px, 390px) 44px;
	align-items: center;
	gap: 24px;
	width: min(100% - 40px, 1240px);
	min-height: 74px;
	margin: 0 auto;
}

.spectrum-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.spectrum-brand-mark {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	background: var(--lime);
	color: var(--ink);
	font-size: 21px;
	font-weight: 900;
}

.spectrum-brand strong,
.spectrum-brand small {
	display: block;
}

.spectrum-brand strong {
	font-size: 18px;
	line-height: 1.1;
}

.spectrum-brand small {
	margin-top: 4px;
	color: #aeb5b0;
	font-size: 11px;
}

.desktop-nav {
	display: flex;
	align-items: center;
	gap: 25px;
	font-size: 13px;
	font-weight: 800;
}

.desktop-nav a {
	position: relative;
	padding: 27px 0 25px;
}

.desktop-nav a::after {
	position: absolute;
	right: 0;
	bottom: 18px;
	left: 0;
	height: 3px;
	background: var(--lime);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 160ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
	transform: scaleX(1);
}

.spectrum-search {
	display: grid;
	grid-template-columns: 1fr 76px;
	height: 42px;
	background: var(--paper);
	border: 1px solid #373c38;
}

.spectrum-search input {
	min-width: 0;
	padding: 0 14px;
	border: 0;
	outline: 0;
	color: var(--ink);
}

.spectrum-search button {
	border: 0;
	background: var(--lime);
	color: var(--ink);
	font-size: 12px;
	font-weight: 900;
	cursor: pointer;
}

.drawer-toggle {
	display: grid;
	align-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0 12px;
	border: 1px solid #444a45;
	background: transparent;
	cursor: pointer;
}

.drawer-toggle span {
	display: block;
	height: 2px;
	background: var(--paper);
}

.drawer-shade {
	position: fixed;
	inset: 0;
	z-index: 79;
	background: rgba(10, 12, 10, 0.64);
	opacity: 0;
	pointer-events: none;
	transition: opacity 180ms ease;
}

.spectrum-drawer {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 80;
	width: min(560px, 100%);
	height: 100dvh;
	padding: 28px;
	overflow-y: auto;
	background: var(--paper);
	box-shadow: -20px 0 70px rgba(0, 0, 0, 0.2);
	transform: translateX(102%);
	transition: transform 220ms ease;
}

.drawer-open .drawer-shade {
	opacity: 1;
	pointer-events: auto;
}

.drawer-open .spectrum-drawer {
	transform: translateX(0);
}

.drawer-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-bottom: 24px;
	border-bottom: 2px solid var(--ink);
}

.drawer-heading small,
.drawer-heading strong {
	display: block;
}

.drawer-heading small {
	margin-bottom: 3px;
	color: var(--muted);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.drawer-heading strong {
	font-size: 25px;
}

.drawer-heading button {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	background: var(--ink);
	color: var(--paper);
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
}

.drawer-section {
	margin-top: 28px;
	padding-left: 18px;
	border-left: 6px solid var(--blue);
}

.drawer-section.drawer-apps {
	border-left-color: var(--coral);
}

.drawer-section h2 {
	margin: 0 0 14px;
	font-size: 19px;
}

.drawer-section h2 a:hover {
	text-decoration: underline;
}

.drawer-section > div {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 9px 20px;
}

.drawer-section > div a {
	color: #414843;
	font-size: 13px;
}

.drawer-section > div a:hover {
	color: var(--blue);
}

.drawer-account {
	margin-top: 30px;
	padding-top: 22px;
	border-top: 1px solid var(--line);
}

.spectrum-main {
	width: min(100% - 40px, 1240px);
	min-height: 70vh;
	margin: 0 auto;
}

.launchpad {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(420px, 0.7fr);
	min-height: 330px;
	margin-top: 28px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-top: 8px solid var(--blue);
}

.launch-copy {
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding: 54px 58px;
	border-right: 1px solid var(--line);
}

.signal-label {
	margin: 0 0 10px;
	color: var(--blue);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.launch-copy h1 {
	max-width: 760px;
	margin: 0;
	font-size: clamp(36px, 4.2vw, 58px);
	line-height: 1.02;
	letter-spacing: 0;
}

.launch-copy > p:last-child {
	max-width: 620px;
	margin: 22px 0 0;
	color: var(--muted);
	font-size: 17px;
	line-height: 1.6;
}

.launch-index {
	display: grid;
	grid-template-rows: repeat(3, 1fr);
}

.launch-index a {
	display: grid;
	grid-template-columns: 50px 1fr;
	grid-template-rows: auto auto;
	align-content: center;
	column-gap: 18px;
	padding: 20px 28px;
	border-bottom: 1px solid var(--line);
	transition: background 150ms ease;
}

.launch-index a:last-child {
	border-bottom: 0;
}

.launch-index a:hover {
	background: #f8f9f6;
}

.launch-index span {
	grid-row: 1 / 3;
	align-self: center;
	color: var(--blue);
	font-size: 24px;
	font-weight: 900;
}

.launch-index .index-apps span {
	color: var(--coral);
}

.launch-index .index-guides span {
	color: #18858b;
}

.launch-index strong {
	font-size: 18px;
}

.launch-index small {
	margin-top: 4px;
	color: var(--muted);
}

.catalog-toolbar {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 30px;
	padding: 48px 0 22px;
	border-bottom: 2px solid var(--ink);
}

.catalog-toolbar h2,
.category-stage h1 {
	margin: 0;
	font-size: 31px;
}

.catalog-toolbar nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
}

.catalog-toolbar nav a {
	padding: 9px 12px;
	background: var(--paper);
	border: 1px solid var(--line);
	font-size: 12px;
	font-weight: 800;
}

.catalog-toolbar nav a:nth-child(1) {
	border-bottom: 4px solid var(--blue);
}

.catalog-toolbar nav a:nth-child(2) {
	border-bottom: 4px solid var(--yellow);
}

.catalog-toolbar nav a:nth-child(3) {
	border-bottom: 4px solid var(--cyan);
}

.catalog-toolbar nav a:nth-child(4) {
	border-bottom: 4px solid var(--coral);
}

.spectrum-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	padding: 24px 0 44px;
}

.spectrum-card {
	position: relative;
	min-width: 0;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 4px;
	overflow: hidden;
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.spectrum-card:hover {
	box-shadow: var(--shadow);
	transform: translateY(-3px);
}

.spectrum-card-image {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	padding: 22px;
	background: #e7efff;
	border-bottom: 1px solid var(--line);
}

.spectrum-card:nth-child(4n+2) .spectrum-card-image {
	background: #fff0ed;
}

.spectrum-card:nth-child(4n+3) .spectrum-card-image {
	background: #eef9cd;
}

.spectrum-card:nth-child(4n+4) .spectrum-card-image {
	background: #e3f6f7;
}

.spectrum-card-image img {
	width: 100%;
	height: 100%;
	border: 1px solid rgba(23, 26, 24, 0.08);
	border-radius: 18%;
	object-fit: cover;
	box-shadow: 0 12px 28px rgba(23, 26, 24, 0.12);
}

.card-filetype {
	position: absolute;
	right: 10px;
	bottom: 10px;
	padding: 6px 8px;
	background: var(--ink);
	color: var(--paper);
	font-size: 9px;
	font-weight: 900;
}

.spectrum-card-copy {
	padding: 18px;
}

.card-category {
	min-height: 16px;
	overflow: hidden;
	color: var(--blue);
	font-size: 10px;
	font-weight: 900;
	line-height: 1.45;
	text-overflow: ellipsis;
	text-transform: uppercase;
	white-space: nowrap;
}

.card-category a:hover {
	text-decoration: underline;
}

.spectrum-card h2 {
	display: -webkit-box;
	min-height: 48px;
	margin: 9px 0 12px;
	overflow: hidden;
	font-size: 17px;
	line-height: 1.4;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.spectrum-card h2 a:hover {
	color: var(--blue);
}

.card-facts {
	display: flex;
	gap: 8px;
	min-height: 18px;
	overflow: hidden;
	color: var(--muted);
	font-size: 11px;
	white-space: nowrap;
}

.card-facts span + span::before {
	margin-right: 8px;
	content: "•";
}

.card-more {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 17px;
	padding-top: 13px;
	border-top: 1px solid var(--line);
	font-size: 12px;
	font-weight: 900;
}

.card-more span {
	font-size: 18px;
}

.category-stage {
	margin-top: 28px;
	padding: 42px 48px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-left: 10px solid var(--coral);
}

.category-stage > p:last-child {
	margin: 13px 0 0;
	color: var(--muted);
}

.spectrum-breadcrumbs,
.full-trail {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	margin-bottom: 24px;
	overflow: hidden;
	color: var(--muted);
	font-size: 12px;
	white-space: nowrap;
}

.spectrum-breadcrumbs a,
.full-trail a {
	color: #315b49;
}

.spectrum-breadcrumbs a:hover,
.full-trail a:hover {
	text-decoration: underline;
}

.spectrum-seo {
	display: grid;
	grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
	gap: 70px;
	margin: 8px 0 54px;
	padding: 48px;
	background: var(--ink);
	color: var(--paper);
	border-top: 8px solid var(--coral);
}

.spectrum-seo .signal-label {
	color: var(--lime);
}

.spectrum-seo h2 {
	margin: 0;
	font-size: 35px;
	line-height: 1.12;
}

.seo-copy {
	columns: 2;
	column-gap: 38px;
	color: #c7cdc8;
	font-size: 14px;
	line-height: 1.75;
}

.seo-copy p {
	margin: 0;
	break-inside: avoid;
}

.seo-copy p + p {
	margin-top: 18px;
}

.spectrum-footer {
	background: var(--paper);
	border-top: 1px solid var(--line);
}

.footer-frame {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	width: min(100% - 40px, 1240px);
	min-height: 120px;
	margin: 0 auto;
}

.footer-frame > div > a {
	font-size: 21px;
	font-weight: 900;
}

.footer-frame p {
	margin: 4px 0 0;
	color: var(--muted);
	font-size: 12px;
}

.footer-frame nav {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	font-size: 12px;
	font-weight: 800;
}

.full-trail {
	margin: 30px 0 18px;
}

.product-stage {
	display: grid;
	grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
	min-height: 410px;
	background: var(--paper);
	border: 1px solid var(--line);
}

.product-art {
	position: relative;
	display: grid;
	place-items: center;
	min-width: 0;
	padding: 64px;
	overflow: hidden;
	background: var(--blue);
	color: var(--paper);
}

.art-kicker {
	position: absolute;
	top: 22px;
	left: 24px;
	font-size: 10px;
	font-weight: 900;
	text-transform: uppercase;
}

.art-code {
	position: absolute;
	right: 24px;
	bottom: 20px;
	font-size: 15px;
	font-weight: 900;
}

.product-icon {
	width: min(250px, 80%);
	aspect-ratio: 1;
}

.product-icon img {
	width: 100%;
	height: 100%;
	border: 8px solid var(--paper);
	border-radius: 22%;
	object-fit: cover;
	box-shadow: 18px 18px 0 rgba(23, 26, 24, 0.22);
}

.product-intro {
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding: 54px 60px;
}

.product-category {
	margin-bottom: 16px;
	color: var(--blue);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.product-intro h1 {
	max-width: 760px;
	margin: 0;
	font-size: clamp(36px, 4vw, 56px);
	line-height: 1.04;
	word-break: break-word;
}

.product-intro > p {
	max-width: 650px;
	margin: 20px 0 0;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.6;
}

.product-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 22px;
}

.product-tags span {
	padding: 8px 11px;
	background: var(--canvas);
	border-left: 4px solid var(--yellow);
	font-size: 11px;
	font-weight: 800;
}

.product-tags span:nth-child(2) {
	border-left-color: var(--cyan);
}

.product-tags span:nth-child(3) {
	border-left-color: var(--coral);
}

.product-action {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 28px;
}

.product-action small {
	color: var(--muted);
	font-size: 11px;
}

.spectrum-download {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-width: 210px;
	min-height: 50px;
	padding: 0 19px;
	background: var(--ink);
	color: var(--paper);
	font-size: 13px;
	font-weight: 900;
	transition: background 150ms ease, color 150ms ease;
}

.spectrum-download:hover,
.spectrum-download:focus-visible {
	background: var(--lime);
	color: var(--ink);
}

.spectrum-download span {
	font-size: 19px;
}

.product-facts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	background: var(--ink);
	color: var(--paper);
}

.product-facts > div {
	min-width: 0;
	padding: 22px 24px;
	border-right: 1px solid #3b403c;
}

.product-facts > div:last-child {
	border-right: 0;
}

.product-facts span,
.product-facts strong {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.product-facts span {
	margin-bottom: 6px;
	color: #aeb5b0;
	font-size: 9px;
	font-weight: 900;
	text-transform: uppercase;
}

.product-facts strong {
	font-size: 13px;
}

.reading-layout {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	gap: 54px;
	padding: 56px 0;
	border-bottom: 2px solid var(--ink);
}

.specification-panel {
	align-self: start;
	padding: 26px;
	background: var(--paper);
	border-top: 7px solid var(--cyan);
}

.specification-panel h2 {
	margin: 0 0 22px;
	font-size: 23px;
}

.specification-panel dl {
	margin: 0;
}

.specification-panel dl > div {
	padding: 13px 0;
	border-top: 1px solid var(--line);
}

.specification-panel dt {
	margin-bottom: 5px;
	color: var(--muted);
	font-size: 9px;
	font-weight: 900;
	text-transform: uppercase;
}

.specification-panel dd {
	margin: 0;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.45;
	word-break: break-word;
}

.story-heading {
	padding-bottom: 20px;
	border-bottom: 2px solid var(--ink);
}

.story-heading h2 {
	margin: 0;
	font-size: 31px;
	line-height: 1.2;
	word-break: break-word;
}

.spectrum-movie {
	min-height: 1px;
}

.story-body {
	max-width: 850px;
	padding-top: 28px;
	color: #333a35;
	font-size: 17px;
	line-height: 1.8;
}

.story-body > :first-child {
	margin-top: 0;
}

.story-body h2,
.story-body h3 {
	margin: 32px 0 12px;
	color: var(--ink);
	line-height: 1.25;
}

.story-body a {
	color: var(--blue);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.story-body img {
	height: auto;
	border: 1px solid var(--line);
}

.spectrum-screens {
	padding: 48px 0;
	border-bottom: 2px solid var(--ink);
}

.screens-heading,
.related-heading,
.comments-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 22px;
}

.screens-heading h2,
.related-heading h2,
.comments-heading h2 {
	margin: 0;
	font-size: 30px;
	line-height: 1.2;
}

.screens-heading > span {
	color: var(--muted);
	font-size: 11px;
	font-weight: 800;
}

.spectrum-screens-track {
	display: flex;
	gap: 14px;
	padding-bottom: 13px;
	overflow-x: auto;
	scroll-snap-type: x proximity;
	scrollbar-color: var(--blue) transparent;
	scrollbar-width: thin;
}

.spectrum-screens-track > .xfieldimagegallery {
	display: flex;
	gap: 14px;
	width: max-content;
	margin: 0;
	padding: 0;
	list-style: none;
}

.spectrum-screens-track > .xfieldimagegallery > li {
	flex: 0 0 auto;
	margin: 0;
	padding: 0;
	scroll-snap-align: start;
}

.spectrum-screens-track a {
	display: block;
	flex: 0 0 auto;
}

.spectrum-screens-track img {
	width: auto;
	height: 390px;
	max-width: 720px;
	background: var(--paper);
	border: 1px solid var(--line);
	object-fit: contain;
}

.spectrum-download-band {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
	margin: 48px 0;
	padding: 38px 42px;
	background: var(--yellow);
	border-left: 10px solid var(--coral);
}

.spectrum-download-band h2 {
	margin: 0;
	font-size: 30px;
	line-height: 1.2;
}

.spectrum-download-band p:not(.signal-label) {
	margin: 9px 0 0;
	font-size: 13px;
}

.spectrum-related-section,
.spectrum-comments {
	padding: 44px 0;
	border-top: 2px solid var(--ink);
}

.spectrum-related-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
}

.spectrum-related {
	min-width: 0;
	background: var(--paper);
	border: 1px solid var(--line);
}

.related-visual {
	display: block;
	aspect-ratio: 1;
	padding: 14px;
	background: #e7efff;
	border-bottom: 1px solid var(--line);
}

.spectrum-related:nth-child(3n+2) .related-visual {
	background: #fff0ed;
}

.spectrum-related:nth-child(3n+3) .related-visual {
	background: #eef9cd;
}

.related-visual img {
	width: 100%;
	height: 100%;
	border-radius: 18%;
	object-fit: cover;
}

.spectrum-related > div {
	padding: 13px;
}

.spectrum-related h3 {
	display: -webkit-box;
	min-height: 40px;
	margin: 0 0 7px;
	overflow: hidden;
	font-size: 14px;
	line-height: 1.4;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.spectrum-related span {
	color: var(--muted);
	font-size: 10px;
}

.spectrum-comments {
	border-bottom: 0;
}

.spectrum-comment {
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr);
	gap: 16px;
	margin-bottom: 12px;
	padding: 20px;
	background: var(--paper);
	border-left: 5px solid var(--cyan);
}

.comment-avatar img {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	object-fit: cover;
}

.comment-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 9px;
}

.comment-meta strong {
	font-size: 13px;
}

.comment-meta time {
	color: var(--muted);
	font-size: 10px;
}

.comment-text {
	color: #3b423d;
	font-size: 14px;
	line-height: 1.65;
}

.spectrum-comment-form {
	margin-top: 22px;
	padding: 28px;
	background: var(--paper);
	border-top: 7px solid var(--coral);
}

.spectrum-comment-form h3 {
	margin: 0 0 20px;
	font-size: 22px;
}

.comment-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.comment-form-grid .form-wide {
	grid-column: 1 / -1;
}

.spectrum-comment-form input,
.spectrum-comment-form textarea,
.system-surface input,
.system-surface textarea,
.system-surface select {
	width: 100%;
	padding: 12px 13px;
	border: 1px solid var(--line);
	border-radius: 0;
	background: #fafbf9;
	color: var(--ink);
	outline: none;
}

.spectrum-comment-form input:focus,
.spectrum-comment-form textarea:focus,
.system-surface input:focus,
.system-surface textarea:focus,
.system-surface select:focus {
	border-color: var(--blue);
}

.spectrum-comment-form textarea {
	min-height: 150px;
	resize: vertical;
}

.spectrum-submit,
.system-surface button,
.system-surface input[type="submit"] {
	min-height: 44px;
	padding: 0 18px;
	border: 0;
	background: var(--ink);
	color: var(--paper);
	font-weight: 900;
	cursor: pointer;
}

.spectrum-submit {
	margin-top: 14px;
}

.system-surface {
	margin: 30px 0 50px;
	padding: 34px;
	background: var(--paper);
	border-top: 7px solid var(--blue);
}

.system-surface h1,
.system-surface h2,
.system-surface h3 {
	word-break: break-word;
}

.spectrum-search-result {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr);
	gap: 20px;
	padding: 18px 0;
	border-bottom: 1px solid var(--line);
}

.spectrum-search-result img {
	width: 120px;
	height: 120px;
	object-fit: cover;
}

.spectrum-search-result h2 {
	margin: 4px 0 10px;
	font-size: 20px;
}

.spectrum-search-result p {
	margin: 0;
	color: var(--muted);
	line-height: 1.6;
}

.spectrum-pagination {
	display: grid;
	grid-template-columns: 90px 1fr 90px;
	align-items: center;
	gap: 16px;
	padding: 14px 0 48px;
	font-size: 12px;
	font-weight: 900;
}

.pagination-pages {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.pagination-pages span,
.pagination-pages a,
.pagination-prev a,
.pagination-next a {
	display: inline-grid;
	place-items: center;
	min-width: 38px;
	height: 38px;
	padding: 0 9px;
	background: var(--paper);
	border: 1px solid var(--line);
}

.pagination-pages span {
	background: var(--blue);
	border-color: var(--blue);
	color: var(--paper);
}

.pagination-next {
	text-align: right;
}

.dle-alert,
.berrors {
	margin: 20px 0;
	padding: 16px;
	background: #fff0ed;
	border-left: 5px solid var(--coral);
}

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

	.desktop-nav {
		display: none;
	}

	.launchpad {
		grid-template-columns: minmax(0, 1fr) 360px;
	}

	.launch-copy {
		padding: 42px;
	}

	.spectrum-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.product-stage {
		grid-template-columns: 330px minmax(0, 1fr);
	}

	.product-art {
		padding: 48px;
	}

	.product-intro {
		padding: 42px;
	}

	.spectrum-related-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 780px) {
	.header-frame,
	.spectrum-main,
	.footer-frame {
		width: min(100% - 28px, 1240px);
	}

	.header-frame {
		grid-template-columns: 1fr 44px;
		gap: 12px;
		padding: 10px 0;
	}

	.spectrum-search {
		grid-column: 1 / -1;
		grid-row: 2;
	}

	.launchpad {
		grid-template-columns: 1fr;
		min-height: 0;
		margin-top: 18px;
	}

	.launch-copy {
		padding: 34px 28px;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.launch-copy h1 {
		font-size: 38px;
	}

	.launch-index {
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: auto;
	}

	.launch-index a {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto auto;
		padding: 18px;
		border-right: 1px solid var(--line);
		border-bottom: 0;
	}

	.launch-index a:last-child {
		border-right: 0;
	}

	.launch-index span {
		grid-row: auto;
		margin-bottom: 12px;
		font-size: 18px;
	}

	.launch-index strong {
		font-size: 14px;
	}

	.launch-index small {
		display: none;
	}

	.catalog-toolbar {
		align-items: start;
		flex-direction: column;
		padding-top: 34px;
	}

	.catalog-toolbar nav {
		justify-content: flex-start;
	}

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

	.spectrum-card-image {
		padding: 15px;
	}

	.spectrum-card-copy {
		padding: 14px;
	}

	.spectrum-card h2 {
		font-size: 15px;
	}

	.spectrum-seo {
		grid-template-columns: 1fr;
		gap: 26px;
		padding: 34px 28px;
	}

	.seo-copy {
		columns: 1;
	}

	.footer-frame {
		align-items: flex-start;
		flex-direction: column;
		padding: 30px 0;
	}

	.product-stage {
		grid-template-columns: 1fr;
	}

	.product-art {
		min-height: 330px;
	}

	.product-icon {
		width: 210px;
	}

	.product-intro h1 {
		font-size: 38px;
	}

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

	.product-facts > div:nth-child(2) {
		border-right: 0;
	}

	.product-facts > div:nth-child(-n+2) {
		border-bottom: 1px solid #3b403c;
	}

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

	.specification-panel {
		order: 2;
	}

	.editorial-story {
		order: 1;
	}

	.spectrum-screens-track img {
		height: 320px;
		max-width: 84vw;
	}

	.spectrum-download-band {
		align-items: stretch;
		flex-direction: column;
		padding: 30px;
	}

	.spectrum-related-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 480px) {
	.spectrum-brand small {
		display: none;
	}

	.spectrum-drawer {
		padding: 22px;
	}

	.drawer-section > div {
		grid-template-columns: 1fr;
	}

	.launch-copy {
		padding: 28px 22px;
	}

	.launch-copy h1 {
		font-size: 32px;
	}

	.launch-copy > p:last-child {
		font-size: 15px;
	}

	.launch-index a {
		padding: 14px 10px;
	}

	.catalog-toolbar h2,
	.category-stage h1 {
		font-size: 26px;
	}

	.catalog-toolbar nav a:nth-child(n+4) {
		display: none;
	}

	.spectrum-grid {
		gap: 10px;
		padding-top: 16px;
	}

	.spectrum-card-image {
		aspect-ratio: 1;
		padding: 12px;
	}

	.spectrum-card-copy {
		padding: 12px;
	}

	.spectrum-card h2 {
		min-height: 42px;
		font-size: 14px;
	}

	.card-facts span:nth-child(n+2) {
		display: none;
	}

	.card-more {
		margin-top: 12px;
	}

	.category-stage {
		padding: 30px 22px;
	}

	.spectrum-seo h2 {
		font-size: 29px;
	}

	.full-trail {
		margin-top: 22px;
	}

	.product-art {
		min-height: 280px;
		padding: 46px;
	}

	.product-icon {
		width: 170px;
	}

	.product-intro {
		padding: 30px 24px;
	}

	.product-intro h1 {
		font-size: 31px;
	}

	.product-intro > p {
		font-size: 14px;
	}

	.product-action {
		align-items: stretch;
		flex-direction: column;
	}

	.product-action small {
		text-align: center;
	}

	.product-facts > div {
		padding: 17px;
	}

	.reading-layout {
		padding: 38px 0;
	}

	.story-heading h2,
	.screens-heading h2,
	.related-heading h2,
	.comments-heading h2,
	.spectrum-download-band h2 {
		font-size: 25px;
	}

	.story-body {
		font-size: 16px;
	}

	.screens-heading > span {
		display: none;
	}

	.spectrum-screens-track img {
		height: 290px;
	}

	.spectrum-download-band {
		padding: 26px 22px;
	}

	.spectrum-download {
		width: 100%;
	}

	.spectrum-comment {
		grid-template-columns: 1fr;
	}

	.spectrum-comment-form {
		padding: 22px;
	}

	.comment-form-grid {
		grid-template-columns: 1fr;
	}

	.comment-form-grid .form-wide {
		grid-column: auto;
	}

	.system-surface {
		padding: 24px;
	}

	.spectrum-search-result {
		grid-template-columns: 80px minmax(0, 1fr);
	}

	.spectrum-search-result img {
		width: 80px;
		height: 80px;
	}

	.spectrum-pagination {
		grid-template-columns: 1fr;
	}

	.pagination-prev,
	.pagination-next {
		display: none;
	}
}
