:root {
	--font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--ink: #080808;
	--ink-soft: #1f1f1f;
	--paper: #f5f2ec;
	--white: #ffffff;
	--muted: #74706a;
	--line: #ded9d1;
	--accent-red: #ff3b30;
	--accent-blue: #1c6cff;
	--accent-lime: #b8ff2c;
	--accent-gold: #d4a629;
	--accent-pink: #ff4f86;
	--radius: 8px;
	--container: 1240px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--white);
	color: var(--ink);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.55;
	letter-spacing: 0;
	text-rendering: optimizeLegibility;
}

body.no-scroll {
	overflow: hidden;
}

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

a:hover {
	color: var(--accent-red);
}

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

.screen-reader-text,
.skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	top: 1rem;
	left: 1rem;
	z-index: 1000;
	width: auto;
	height: auto;
	padding: .75rem 1rem;
	clip: auto;
	background: var(--ink);
	color: var(--white);
}

.container {
	width: min(100% - 32px, var(--container));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, .94);
	border-bottom: 1px solid var(--ink);
	backdrop-filter: blur(18px);
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
	width: min(100% - 32px, 1440px);
	min-height: 72px;
	margin: 0 auto;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	color: var(--ink);
	font-size: clamp(2rem, 5vw, 4.2rem);
	font-weight: 900;
	line-height: .82;
	letter-spacing: 0;
	text-transform: lowercase;
}

.site-logo:hover {
	color: var(--ink);
}

.custom-logo-link img {
	max-height: 58px;
	width: auto;
}

.primary-nav .menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	font-size: .78rem;
	font-weight: 800;
	text-transform: uppercase;
	white-space: nowrap;
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.icon-button,
.header-cta,
.newsletter-form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--ink);
	background: var(--ink);
	color: var(--white);
	font: inherit;
	font-weight: 800;
	cursor: pointer;
	transition: transform .18s ease, background .18s ease, color .18s ease;
}

.icon-button {
	width: 42px;
	height: 42px;
	padding: 0;
}

.icon-button svg {
	fill: currentColor;
}

.header-cta {
	min-height: 42px;
	padding: 0 14px;
	font-size: .78rem;
	text-transform: uppercase;
}

.icon-button:hover,
.header-cta:hover,
.newsletter-form button:hover {
	transform: translateY(-1px);
	background: var(--accent-red);
	border-color: var(--accent-red);
	color: var(--white);
}

.nav-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid var(--ink);
	background: transparent;
	cursor: pointer;
}

.nav-toggle__line,
.nav-toggle__line::before,
.nav-toggle__line::after {
	display: block;
	width: 20px;
	height: 2px;
	margin: 0 auto;
	background: var(--ink);
	content: "";
}

.nav-toggle__line::before {
	transform: translateY(-7px);
}

.nav-toggle__line::after {
	transform: translateY(5px);
}

.site-search {
	border-top: 1px solid var(--line);
	background: var(--white);
}

.site-search__inner {
	width: min(100% - 32px, 760px);
	margin: 0 auto;
	padding: 18px 0;
}

.search-form {
	display: flex;
	gap: 8px;
}

.search-field,
.newsletter-form input {
	width: 100%;
	min-height: 48px;
	border: 1px solid var(--ink);
	background: var(--white);
	color: var(--ink);
	padding: 0 14px;
	font: inherit;
}

.search-submit {
	border: 1px solid var(--ink);
	background: var(--ink);
	color: var(--white);
	padding: 0 16px;
	font: inherit;
	font-weight: 800;
}

.section-band {
	padding: clamp(52px, 8vw, 96px) 0;
}

.section-band--white {
	background: var(--white);
}

.section-band--ink {
	background: var(--ink);
	color: var(--white);
}

.section-band--paper {
	background: var(--paper);
}

.section-band--warm {
	background: #f4eadb;
}

.section-band--tint {
	background: #eef4f2;
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
	border-top: 2px solid currentColor;
	padding-top: 14px;
}

.section-heading h2,
.newsletter-block h2,
.issue-shell__intro h2 {
	max-width: 900px;
	margin: 0;
	font-size: clamp(2.2rem, 8vw, 6.6rem);
	font-weight: 900;
	line-height: .9;
	text-transform: uppercase;
}

.section-kicker,
.story-card__category {
	margin: 0;
	color: var(--accent-red);
	font-size: .75rem;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.section-band--ink .section-kicker,
.section-band--ink .story-card__category {
	color: var(--accent-lime);
}

.hero-section {
	padding-top: 34px;
}

.hero-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 28px;
	align-items: start;
}

.hero-card {
	display: grid;
	grid-template-columns: minmax(0, 1.14fr) minmax(310px, .86fr);
	min-height: 560px;
	border-bottom: 2px solid var(--ink);
	background: var(--white);
}

.hero-card__media,
.story-card__media {
	position: relative;
	display: block;
	overflow: hidden;
	background: #d8d2c8;
}

.hero-card__media {
	min-height: 560px;
}

.hero-card__image,
.story-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease, filter .4s ease;
}

.hero-card:hover .hero-card__image,
.story-card:hover .story-card__image {
	transform: scale(1.035);
	filter: contrast(1.04);
}

.image-fallback {
	display: flex;
	align-items: end;
	justify-content: start;
	min-height: 220px;
	padding: 18px;
	background:
		linear-gradient(135deg, rgba(255, 59, 48, .86), rgba(28, 108, 255, .78)),
		linear-gradient(45deg, #161616, #f2f2f2);
	color: var(--white);
}

.image-fallback span {
	font-size: 1.1rem;
	font-weight: 900;
	text-transform: uppercase;
}

.hero-card__content {
	display: flex;
	flex-direction: column;
	justify-content: end;
	padding: clamp(22px, 4vw, 42px);
	border-top: 2px solid var(--ink);
	border-right: 2px solid var(--ink);
}

.hero-card h1 {
	margin: 12px 0 18px;
	font-size: clamp(2.6rem, 6vw, 6.1rem);
	font-weight: 900;
	line-height: .88;
	text-transform: uppercase;
}

.hero-card p,
.story-card p {
	margin: 0 0 18px;
	color: var(--muted);
	font-size: 1rem;
}

.story-card__date {
	color: var(--muted);
	font-size: .75rem;
	font-weight: 800;
	text-transform: uppercase;
}

.latest-panel {
	border: 2px solid var(--ink);
	background: var(--ink);
	color: var(--white);
}

.latest-panel__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 18px;
	border-bottom: 1px solid rgba(255, 255, 255, .22);
	font-weight: 900;
	text-transform: uppercase;
}

.latest-panel__head a {
	color: var(--accent-lime);
	font-size: .78rem;
}

.latest-list {
	padding: 0;
	margin: 0;
	list-style: none;
	counter-reset: latest;
}

.latest-list li + li {
	border-top: 1px solid rgba(255, 255, 255, .18);
}

.latest-list a {
	display: grid;
	grid-template-columns: 44px 1fr;
	gap: 14px;
	padding: 18px;
}

.latest-list__number {
	color: var(--accent-lime);
	font-size: .76rem;
	font-weight: 900;
}

.latest-list__title {
	font-size: .98rem;
	font-weight: 850;
	line-height: 1.18;
}

.hero-secondary-grid,
.three-card-grid,
.spoilers-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.hero-secondary-grid {
	margin-top: 26px;
}

.spoilers-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px 22px;
}

.story-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: transparent;
}

.story-card__media {
	aspect-ratio: 16 / 10;
	margin-bottom: 14px;
}

.story-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;
}

.story-card h3 {
	margin: 8px 0 10px;
	font-size: clamp(1.25rem, 2vw, 2rem);
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.story-card--compact {
	border-top: 2px solid var(--ink);
	padding-top: 14px;
}

.story-card--compact h3,
.story-card--product h3 {
	font-size: 1.2rem;
	line-height: 1.05;
}

.recommended-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, .75fr);
	gap: 24px;
	align-items: stretch;
}

.story-card--feature-dark {
	grid-row: span 2;
	min-height: 640px;
}

.story-card--feature-dark .story-card__media {
	flex: 1;
	min-height: 420px;
	aspect-ratio: auto;
}

.story-card--feature-dark h3 {
	font-size: clamp(2.4rem, 5vw, 5.2rem);
}

.story-card--stacked-dark {
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, .28);
}

.story-card--stacked-dark .story-card__media {
	aspect-ratio: 16 / 8;
}

.section-band--ink .story-card p,
.section-band--ink .story-card__date {
	color: rgba(255, 255, 255, .7);
}

.three-card-grid--separated .story-card {
	padding-right: 22px;
	border-right: 1px solid var(--line);
}

.three-card-grid--separated .story-card:last-child {
	border-right: 0;
}

.issue-section {
	background: #111;
	color: var(--white);
}

.issue-shell {
	padding: clamp(24px, 5vw, 54px);
	border: 1px solid rgba(255, 255, 255, .24);
	background: linear-gradient(180deg, #191919, #050505);
}

.issue-shell__intro {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 24px;
	align-items: start;
	margin-bottom: 34px;
}

.issue-feature {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
	gap: 24px;
	align-items: stretch;
}

.story-card--issue-visual .story-card__media {
	height: 100%;
	min-height: 520px;
	aspect-ratio: auto;
	margin-bottom: 0;
}

.story-card--issue-visual .story-card__content {
	position: absolute;
	right: 22px;
	bottom: 22px;
	left: 22px;
	padding: 20px;
	background: rgba(0, 0, 0, .72);
	color: var(--white);
}

.story-card--issue-text {
	justify-content: center;
	padding: clamp(24px, 5vw, 48px);
	background: var(--white);
	color: var(--ink);
}

.story-card--issue-text .story-card__media {
	display: none;
}

.story-card--issue-text h3 {
	font-size: clamp(2.3rem, 5vw, 5rem);
}

.issue-supporting {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin-top: 26px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, .22);
}

.story-card--issue-support .story-card__media {
	display: none;
}

.story-card--issue-support h3 {
	font-size: 1.22rem;
}

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

.story-card--product {
	padding: 14px;
	border: 1px solid rgba(0, 0, 0, .16);
	background: rgba(255, 255, 255, .46);
}

.story-card--product .story-card__media {
	aspect-ratio: 1 / 1;
}

.reviews-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
	gap: 24px;
	align-items: stretch;
}

.story-card--review-feature,
.story-card--review-secondary {
	padding: 18px;
	border: 2px solid var(--ink);
	background: var(--white);
}

.story-card--review-feature .story-card__media {
	aspect-ratio: 16 / 8.7;
}

.story-card--review-feature h3 {
	font-size: clamp(2.1rem, 4vw, 4.4rem);
}

.score-badge {
	position: absolute;
	right: 12px;
	bottom: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	border: 2px solid var(--ink);
	background: var(--accent-lime);
	color: var(--ink);
	font-weight: 900;
}

.story-card--portrait-dark .story-card__media {
	aspect-ratio: 4 / 5;
	filter: grayscale(.18);
}

.newsletter-block {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
	gap: 28px;
	align-items: end;
	padding: clamp(24px, 5vw, 46px);
	border-top: 3px solid var(--ink);
	border-bottom: 3px solid var(--ink);
}

.newsletter-form {
	display: flex;
	gap: 10px;
}

.newsletter-form button {
	min-height: 48px;
	padding: 0 22px;
}

.homepage-widget-area {
	margin-top: 36px;
}

.archive-main {
	padding: 56px 0 80px;
}

.archive-header h1,
.empty-state h1 {
	font-size: clamp(2.4rem, 6vw, 5rem);
	line-height: .9;
	text-transform: uppercase;
}

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

.site-footer {
	background: var(--ink);
	color: var(--white);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: minmax(260px, .8fr) 1fr auto;
	gap: 32px;
	width: min(100% - 32px, var(--container));
	margin: 0 auto;
	padding: 44px 0;
	border-top: 1px solid rgba(255, 255, 255, .2);
}

.site-logo--footer {
	color: var(--white);
}

.site-footer__brand p {
	max-width: 420px;
	color: rgba(255, 255, 255, .68);
}

.footer-nav .menu {
	display: grid;
	gap: 8px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-nav a,
.footer-widget a {
	color: rgba(255, 255, 255, .78);
}

.site-footer__bar {
	width: min(100% - 32px, var(--container));
	margin: 0 auto;
	padding: 16px 0 28px;
	color: rgba(255, 255, 255, .54);
	font-size: .82rem;
}

@media (max-width: 1100px) {
	.site-header__inner {
		grid-template-columns: auto auto 1fr;
	}

	.nav-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.primary-nav {
		position: absolute;
		top: 72px;
		right: 0;
		left: 0;
		display: none;
		background: var(--white);
		border-bottom: 1px solid var(--ink);
	}

	.primary-nav.is-open {
		display: block;
	}

	.primary-nav .menu {
		display: grid;
		justify-content: stretch;
		gap: 0;
		width: min(100% - 32px, var(--container));
		margin: 0 auto;
		padding: 12px 0;
	}

	.primary-nav li + li {
		border-top: 1px solid var(--line);
	}

	.primary-nav a {
		min-height: 48px;
	}

	.site-header__actions {
		justify-self: end;
	}

	.hero-layout,
	.hero-card,
	.recommended-layout,
	.issue-feature,
	.reviews-layout,
	.newsletter-block,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.hero-card,
	.hero-card__media {
		min-height: auto;
	}

	.hero-card__media {
		aspect-ratio: 16 / 10;
	}

	.hero-card__content {
		border-right: 0;
	}

	.latest-panel {
		margin-top: 4px;
	}

	.horizontal-card-row,
	.archive-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.container,
	.site-header__inner,
	.site-search__inner {
		width: min(100% - 24px, var(--container));
	}

	.site-header__inner {
		gap: 12px;
		min-height: 64px;
	}

	.site-logo {
		font-size: 2.1rem;
	}

	.primary-nav {
		top: 64px;
	}

	.header-cta {
		display: none;
	}

	.section-band {
		padding: 46px 0;
	}

	.section-heading,
	.issue-shell__intro {
		display: block;
	}

	.section-heading h2,
	.newsletter-block h2,
	.issue-shell__intro h2 {
		margin-top: 8px;
		font-size: clamp(2.15rem, 18vw, 4.5rem);
	}

	.hero-secondary-grid,
	.three-card-grid,
	.spoilers-grid,
	.issue-supporting,
	.horizontal-card-row,
	.archive-grid {
		grid-template-columns: 1fr;
	}

	.hero-card h1 {
		font-size: clamp(2.35rem, 16vw, 4.4rem);
	}

	.story-card--feature-dark {
		min-height: 0;
	}

	.story-card--feature-dark .story-card__media,
	.story-card--issue-visual .story-card__media {
		min-height: 320px;
	}

	.three-card-grid--separated .story-card {
		padding-right: 0;
		padding-bottom: 18px;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.three-card-grid--separated .story-card:last-child {
		border-bottom: 0;
	}

	.newsletter-form,
	.search-form {
		display: grid;
	}

	.site-footer__inner {
		padding: 34px 0;
	}
}

/* Inverse-inspired editorial refresh for the testing theme. */
:root {
	--font-display: "Roboto Condensed", "Arial Narrow", var(--font-sans);
	--font-brand: "Archivo Black", "Arial Black", var(--font-sans);
	--font-editorial: "Space Grotesk", var(--font-sans);
	--page: #f4f4f5;
	--neon: #ccff00;
	--mustard: #f4d068;
	--periwinkle: #cdd9ff;
	--hairline: #1a1a1a;
}

body {
	background: var(--page);
}

.site-header {
	background: rgba(244, 244, 245, .96);
	border-bottom: 1px solid rgba(0, 0, 0, .18);
	transition: background .2s ease, box-shadow .2s ease;
}

.site-header__inner {
	position: relative;
	grid-template-columns: 1fr auto;
	min-height: 94px;
	transition: min-height .22s ease;
}

.site-header__brand {
	position: absolute;
	left: 50%;
	justify-self: auto;
	transform: translateX(-50%);
}

.site-logo {
	font-family: var(--font-brand);
	font-size: clamp(3.6rem, 11vw, 9.5rem);
	line-height: .76;
	text-transform: uppercase;
	transform: scaleX(1.16);
	transform-origin: center;
	transition: font-size .22s ease, transform .22s ease;
}

.site-header__actions {
	grid-column: 2;
	justify-self: end;
}

.site-header__actions .nav-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	width: auto;
	min-width: 92px;
	padding: 0 13px;
	background: transparent;
	font-size: .74rem;
	font-weight: 900;
	text-transform: uppercase;
}

.nav-toggle__text {
	display: inline-block;
	line-height: 1;
}

.site-header__nav-row {
	border-top: 1px solid rgba(0, 0, 0, .08);
}

.primary-nav {
	display: none;
	width: min(100% - 32px, var(--container));
	margin: 0 auto;
}

.primary-nav.is-open {
	display: block;
}

.site-header.is-scrolled {
	background: rgba(244, 244, 245, .98);
	box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
}

.site-header.is-scrolled .site-header__inner {
	min-height: 46px;
}

.site-header.is-scrolled .site-logo {
	font-size: clamp(1.45rem, 3.4vw, 2.45rem);
	transform: scaleX(1.08);
}

.site-header.is-scrolled .icon-button,
.site-header.is-scrolled .nav-toggle {
	height: 34px;
	min-height: 34px;
}

.primary-nav a {
	min-height: 34px;
	font-size: .72rem;
	letter-spacing: 0;
}

.section-band {
	padding: clamp(44px, 7vw, 86px) 0;
}

.section-heading {
	border-top: 0;
	padding-top: 0;
}

.section-heading h2,
.newsletter-block h2,
.issue-main-headline h2,
.issue-shell__intro h2 {
	font-family: var(--font-display);
	font-weight: 900;
	letter-spacing: 0;
	transform: scaleX(1.04);
	transform-origin: left center;
}

.hero-section {
	padding-top: 28px;
}

.hero-section .container {
	padding: clamp(18px, 3vw, 30px);
	background: #000;
	color: #fff;
}

.hero-layout {
	grid-template-columns: minmax(0, 2.2fr) minmax(280px, .8fr);
	gap: 24px;
}

.hero-card {
	position: relative;
	display: block;
	min-height: 630px;
	border: 0;
	background: #050505;
	overflow: hidden;
}

.hero-card__media {
	min-height: 630px;
}

.hero-card__image {
	opacity: .86;
}

.hero-card__content {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: clamp(20px, 3vw, 34px);
	border: 0;
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .92));
	color: #fff;
}

.hero-card h1 {
	max-width: 720px;
	color: #fff;
	font-family: var(--font-editorial);
	font-size: clamp(2rem, 4.1vw, 4.35rem);
	font-weight: 700;
	line-height: .96;
	text-transform: none;
}

.hero-card p,
.hero-card .story-card__date {
	max-width: 560px;
	color: rgba(255, 255, 255, .78);
}

.hero-secondary-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: calc((100% - 384px) * .69);
	margin-top: 22px;
}

.hero-secondary-grid .story-card--compact {
	display: grid;
	grid-template-columns: 124px minmax(0, 1fr);
	gap: 14px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, .24);
	color: #fff;
}

.hero-secondary-grid .story-card--compact .story-card__media {
	aspect-ratio: 1 / 1;
	margin-bottom: 0;
}

.hero-secondary-grid .story-card--compact h3 {
	color: #fff;
	font-size: 1.08rem;
}

.latest-panel {
	border: 0;
	background: #000;
}

.latest-panel__head {
	padding: 0 0 14px;
	border-bottom: 1px dashed rgba(255, 255, 255, .38);
	font-family: var(--font-editorial);
	font-size: .95rem;
	font-weight: 700;
}

.latest-panel__head::before {
	width: 12px;
	height: 12px;
	margin-right: 8px;
	border-radius: 50%;
	background: var(--neon);
	content: "";
}

.latest-panel__head {
	justify-content: flex-start;
	gap: 8px;
}

.latest-panel__head a {
	margin-left: auto;
}

.latest-list li + li {
	border-top: 1px dashed rgba(255, 255, 255, .35);
}

.latest-list a {
	grid-template-columns: 1fr;
	gap: 5px;
	padding: 18px 0;
}

.latest-list__number {
	color: var(--neon);
	font-size: .68rem;
}

.latest-list__title {
	font-size: 1rem;
}

.folder-section {
	background: transparent;
	color: var(--ink);
}

.folder-section .container {
	position: relative;
	padding-top: 58px;
}

.folder-section .section-heading {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	display: inline-flex;
	min-height: 58px;
	align-items: center;
	margin: 0;
	padding: 0 54px 0 24px;
	border-radius: 18px 0 0 0;
	clip-path: polygon(0 0, calc(100% - 42px) 0, 100% 100%, 0 100%);
}

.folder-section .section-heading::after {
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	width: 52px;
	height: 58px;
	background: inherit;
	content: "";
	opacity: 0;
}

.folder-section .section-heading::before {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 34px;
	height: 16px;
	background: inherit;
	border-bottom-left-radius: 18px;
	content: "";
}

.folder-section .section-heading .section-kicker {
	display: none;
}

.folder-section .section-heading h2 {
	font-size: clamp(1.1rem, 2.6vw, 2.1rem);
	font-weight: 800;
	line-height: 1;
	transform: none;
}

.folder-section--dark .section-heading,
.folder-section--dark .recommended-layout,
.folder-section--dark .three-card-grid {
	background: #000;
	color: #fff;
}

.folder-section--reviews .section-heading,
.folder-section--reviews .reviews-layout {
	background: var(--periwinkle);
	color: #000;
}

.recommended-layout {
	grid-template-columns: minmax(240px, .9fr) minmax(0, 1.1fr) minmax(260px, .8fr);
	gap: 26px;
	padding: clamp(26px, 5vw, 52px);
}

.recommends-graphic {
	position: relative;
	display: grid;
	grid-row: span 2;
	min-height: 420px;
	place-items: center;
	overflow: hidden;
}

.recommends-orbit {
	position: absolute;
	width: min(90%, 360px);
	aspect-ratio: 1;
	border: 2px dashed rgba(255, 255, 255, .68);
	border-radius: 50%;
}

.recommends-orbit::before,
.recommends-orbit::after {
	position: absolute;
	inset: 14%;
	border: 1px dashed rgba(255, 255, 255, .45);
	border-radius: 50%;
	content: "";
	transform: rotate(58deg) scaleX(1.45);
}

.recommends-orbit::after {
	transform: rotate(-58deg) scaleX(1.45);
}

.recommends-word {
	z-index: 1;
	color: #fff;
	font-family: var(--font-brand);
	font-size: clamp(2.4rem, 6vw, 5.8rem);
	letter-spacing: .16em;
}

.story-card--feature-dark {
	grid-row: span 2;
	min-height: 0;
}

.story-card--feature-dark .story-card__media {
	min-height: 290px;
}

.story-card--feature-dark h3 {
	font-size: clamp(2rem, 4vw, 4.6rem);
}

.story-card--stacked-dark .story-card__media {
	display: none;
}

.story-card--stacked-dark {
	grid-column: 3;
	border-top: 1px dashed rgba(255, 255, 255, .35);
	border-bottom: 0;
	padding-top: 20px;
}

.science-section {
	background: transparent;
}

.science-section .section-heading {
	display: block;
	margin-bottom: 28px;
}

.science-section .section-heading h2,
.spoilers-section .section-heading h2 {
	font-size: clamp(3rem, 8vw, 7rem);
}

.science-section .section-heading .section-kicker,
.spoilers-section .section-heading .section-kicker {
	color: var(--muted);
}

.three-card-grid--separated {
	gap: 34px;
}

.three-card-grid--separated .story-card {
	padding: 18px 0 0;
	border-top: 1px solid #000;
	border-right: 0;
}

.three-card-grid--separated .story-card::before {
	position: absolute;
	top: -4px;
	left: 0;
	width: 56px;
	height: 8px;
	background: var(--neon);
	content: "";
}

.story-card--editorial .story-card__media {
	display: none;
}

.story-card--editorial h3 {
	font-size: clamp(1.45rem, 2.4vw, 2.3rem);
	line-height: 1.02;
}

.science-daily-banner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 18px;
	align-items: center;
	margin-top: 42px;
	padding: 18px 0;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
}

.science-daily-banner span {
	font-family: var(--font-editorial);
	font-weight: 700;
	text-transform: uppercase;
}

.science-daily-banner p {
	margin: 0;
	color: var(--muted);
}

.science-daily-banner a {
	padding: 10px 18px;
	border-radius: 999px;
	background: var(--neon);
	color: #000;
	font-weight: 900;
	text-transform: uppercase;
}

.issue-section {
	background: transparent;
	color: #000;
}

.issue-shell {
	padding: 0;
	border: 0;
	background: transparent;
}

.issue-feature {
	grid-template-columns: minmax(0, 1.55fr) minmax(260px, .85fr);
	gap: 28px;
	align-items: end;
}

.hollywood-visual {
	position: relative;
	min-height: 520px;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(23, 5, 90, .9), rgba(13, 11, 52, .78)),
		linear-gradient(180deg, #101a5c, #09071f 72%, #120717);
}

.hollywood-visual::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(105deg, transparent 0 43%, rgba(255, 42, 172, .7) 44% 45%, transparent 46%),
		linear-gradient(75deg, transparent 0 55%, rgba(0, 255, 255, .6) 56% 57%, transparent 58%);
	content: "";
}

.hollywood-grid {
	position: absolute;
	right: -10%;
	bottom: -20%;
	left: -10%;
	height: 46%;
	background:
		linear-gradient(rgba(204, 255, 0, .4) 1px, transparent 1px),
		linear-gradient(90deg, rgba(204, 255, 0, .4) 1px, transparent 1px);
	background-size: 100% 28px, 54px 100%;
	transform: perspective(420px) rotateX(62deg);
	transform-origin: bottom;
}

.hollywood-stars {
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle, rgba(255,255,255,.9) 0 1px, transparent 1.4px),
		radial-gradient(circle, rgba(255,255,255,.55) 0 1px, transparent 1.4px);
	background-position: 20px 30px, 80px 120px;
	background-size: 120px 90px, 190px 140px;
}

.hollywood-visual strong {
	position: absolute;
	right: 6%;
	bottom: 26%;
	left: 6%;
	color: #fff;
	font-family: var(--font-brand);
	font-size: clamp(3.2rem, 9vw, 8.4rem);
	line-height: .85;
	text-align: center;
	text-shadow: 0 0 16px rgba(255, 52, 193, .85), 0 0 32px rgba(0, 228, 255, .55);
}

.hollywood-visual span {
	position: absolute;
	right: 8%;
	bottom: 17%;
	color: var(--neon);
	font-weight: 900;
	letter-spacing: .18em;
}

.issue-main-headline {
	padding-bottom: 32px;
}

.issue-main-headline h2 {
	margin: 10px 0 22px;
	font-size: clamp(2.5rem, 6vw, 6.2rem);
	line-height: .9;
	text-transform: uppercase;
}

.issue-main-headline__line {
	height: 1px;
	background: #000;
}

.story-card--issue-text {
	display: none;
}

.issue-supporting {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin-top: 26px;
	border-top: 0;
	padding-top: 0;
}

.story-card--issue-support {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	gap: 14px;
	border-top: 1px solid #000;
	padding-top: 14px;
}

.story-card--issue-support .story-card__media {
	display: block;
	aspect-ratio: 1 / 1;
	margin-bottom: 0;
}

.story-card--issue-support h3 {
	font-size: 1.05rem;
}

.cool-section {
	background: transparent;
}

.cool-section .section-heading {
	justify-content: flex-start;
	margin-bottom: 22px;
}

.cool-section .section-heading::before {
	display: inline-block;
	width: 34px;
	height: 34px;
	margin-right: 8px;
	background: var(--mustard);
	clip-path: polygon(50% 0, 60% 38%, 100% 38%, 68% 60%, 80% 100%, 50% 74%, 20% 100%, 32% 60%, 0 38%, 40% 38%);
	content: "";
}

.horizontal-card-row {
	display: flex;
	gap: 22px;
	overflow-x: auto;
	padding: 4px 0 16px;
	scroll-snap-type: x mandatory;
}

.story-card--product {
	flex: 0 0 min(280px, 78vw);
	padding: 18px;
	border: 1px solid #000;
	box-shadow: 7px 7px 0 #000;
	background: var(--mustard);
	scroll-snap-align: start;
}

.story-card--product .story-card__media {
	background: rgba(255, 255, 255, .36);
}

.story-card--product h3 {
	font-size: 1.14rem;
}

.reviews-layout {
	grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
	padding: clamp(26px, 5vw, 52px);
}

.story-card--review-feature,
.story-card--review-secondary {
	border: 0;
	background: transparent;
	padding: 0;
}

.story-card--review-feature .story-card__media {
	aspect-ratio: 1 / 1;
}

.story-card--review-feature h3 {
	font-size: clamp(2rem, 4vw, 4rem);
}

.story-card--review-secondary {
	padding-top: 18px;
	border-top: 1px solid rgba(0, 0, 0, .45);
}

.interview-section .three-card-grid {
	grid-template-columns: minmax(0, .8fr) minmax(0, .8fr) minmax(320px, 1.15fr);
	gap: 28px;
	padding: clamp(26px, 5vw, 52px);
}

.interview-section .story-card--portrait-dark {
	border-top: 1px dashed rgba(255, 255, 255, .35);
	padding-top: 18px;
}

.interview-section .story-card--portrait-dark:nth-child(3) {
	grid-row: span 2;
	border-top: 0;
	padding-top: 0;
}

.interview-section .story-card--portrait-dark:nth-child(3) .story-card__media {
	aspect-ratio: 4 / 5.4;
}

.interview-section .story-card--portrait-dark h3 {
	color: #fff;
}

.newsletter-section {
	background: transparent;
}

.newsletter-block {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .18);
}

.newsletter-block h2 {
	font-size: clamp(2rem, 5vw, 4.8rem);
}

.spoilers-section {
	background: transparent;
	padding-top: 18px;
}

@media (max-width: 1100px) {
	.site-header__inner {
		grid-template-columns: 1fr auto;
	}

	.site-header__nav-row .primary-nav {
		position: absolute;
		top: 95px;
		right: 0;
		left: 0;
		width: auto;
	}

	.site-header__nav-row .primary-nav.is-open {
		display: block;
	}

	.hero-secondary-grid {
		max-width: none;
	}

	.recommended-layout,
	.issue-feature,
	.reviews-layout,
	.interview-section .three-card-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 760px) {
	.site-header__inner {
		grid-template-columns: 1fr auto;
		min-height: 68px;
	}

	.site-logo {
		font-size: clamp(2.1rem, 14vw, 4rem);
		transform: scaleX(1.08);
	}

	.site-header__nav-row .primary-nav {
		top: 69px;
	}

	.hero-section .container,
	.recommended-layout,
	.reviews-layout,
	.interview-section .three-card-grid {
		padding: 18px;
	}

	.hero-card,
	.hero-card__media {
		min-height: 420px;
	}

	.hero-secondary-grid,
	.science-daily-banner,
	.issue-supporting {
		grid-template-columns: 1fr;
	}

	.hero-secondary-grid .story-card--compact,
	.story-card--issue-support {
		grid-template-columns: 96px minmax(0, 1fr);
	}

	.recommends-graphic {
		min-height: 260px;
	}

	.hollywood-visual {
		min-height: 340px;
	}

	.folder-section .section-heading {
		min-height: 48px;
		margin-left: 0;
		padding-right: 30px;
	}

	.folder-section .section-heading::after {
		width: 54px;
		height: 48px;
	}

	.folder-section .section-heading::before {
		right: 0;
	}
}

/* Stable folder tab rebuild: draw the slanted tab as a backing shape. */
.folder-section .section-heading {
	--folder-tab-bg: #000;
	--folder-page-bg: var(--page);
	overflow: visible;
	background: transparent !important;
	clip-path: none;
}

.folder-section--dark .section-heading {
	--folder-tab-bg: #000;
}

.folder-section--reviews .section-heading {
	--folder-tab-bg: var(--periwinkle);
}

.folder-section .section-heading::before {
	position: absolute;
	inset: 0 auto auto 0;
	z-index: -1;
	width: calc(100% + 42px);
	height: 100%;
	border-radius: 18px 0 0 0;
	background: var(--folder-tab-bg);
	clip-path: polygon(0 0, calc(100% - 46px) 0, 100% calc(100% - 12px), calc(100% - 8px) 100%, 0 100%);
	content: "";
	transform: none;
}

.folder-section .section-heading::after {
	position: absolute;
	top: 0;
	right: -42px;
	z-index: -1;
	display: block;
	width: 42px;
	height: 100%;
	background:
		radial-gradient(22px 22px at 100% 0, var(--folder-page-bg) 98%, transparent 100%),
		radial-gradient(22px 22px at 100% 100%, var(--folder-page-bg) 98%, transparent 100%);
	content: "";
	pointer-events: none;
}

/* Futuristic cut-corner system: replaces the folder-tab feel with missing-edge panels. */
:root {
	--cut-lg: 34px;
	--cut-sm: 14px;
	--panel-line: rgba(204, 255, 0, .62);
}

.hero-section .container,
.recommended-layout,
.reviews-layout,
.interview-section .three-card-grid,
.newsletter-block,
.latest-panel,
.story-card--product,
.story-card--review-feature,
.story-card--review-secondary {
	clip-path: polygon(var(--cut-lg) 0, 100% 0, 100% calc(100% - var(--cut-lg)), calc(100% - var(--cut-lg)) 100%, 0 100%, 0 var(--cut-lg));
}

.folder-section .container {
	padding-top: 0;
}

.folder-section .section-heading {
	position: relative;
	top: auto;
	left: auto;
	z-index: 3;
	display: inline-flex;
	min-height: 48px;
	margin: 0 0 14px;
	padding: 0 28px 0 18px;
	overflow: visible;
	background: #000 !important;
	color: #fff;
	clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.folder-section--reviews .section-heading {
	background: var(--periwinkle) !important;
	color: #000;
}

.folder-section .section-heading::before,
.folder-section .section-heading::after {
	position: absolute;
	display: block;
	width: 18px;
	height: 18px;
	background: transparent;
	content: "";
	pointer-events: none;
}

.folder-section .section-heading::before {
	top: -1px;
	left: -1px;
	border-top: 2px solid var(--neon);
	border-left: 2px solid var(--neon);
}

.folder-section .section-heading::after {
	right: -1px;
	bottom: -1px;
	border-right: 2px solid var(--neon);
	border-bottom: 2px solid var(--neon);
}

.folder-section--reviews .section-heading::before,
.folder-section--reviews .section-heading::after {
	border-color: #000;
}

.recommended-layout,
.reviews-layout,
.interview-section .three-card-grid {
	position: relative;
	border: 1px solid rgba(255, 255, 255, .22);
	box-shadow: inset 0 0 0 1px rgba(204, 255, 0, .18), 0 18px 50px rgba(0, 0, 0, .18);
}

.reviews-layout {
	border-color: rgba(0, 0, 0, .28);
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .16), 0 18px 45px rgba(24, 42, 95, .18);
}

.recommended-layout::before,
.reviews-layout::before,
.interview-section .three-card-grid::before {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 52px;
	height: 52px;
	border-top: 2px solid var(--neon);
	border-right: 2px solid var(--neon);
	content: "";
	pointer-events: none;
}

.recommended-layout::after,
.reviews-layout::after,
.interview-section .three-card-grid::after {
	position: absolute;
	bottom: 16px;
	left: 16px;
	width: 52px;
	height: 52px;
	border-bottom: 2px solid var(--neon);
	border-left: 2px solid var(--neon);
	content: "";
	pointer-events: none;
}

.reviews-layout::before,
.reviews-layout::after {
	border-color: #000;
}

.hero-section .container {
	position: relative;
	box-shadow: inset 0 0 0 1px rgba(204, 255, 0, .22), 0 24px 70px rgba(0, 0, 0, .28);
}

.hero-section .container::before,
.hero-section .container::after {
	position: absolute;
	z-index: 2;
	width: 58px;
	height: 58px;
	content: "";
	pointer-events: none;
}

.hero-section .container::before {
	top: 14px;
	left: 14px;
	border-top: 2px solid var(--neon);
	border-left: 2px solid var(--neon);
}

.hero-section .container::after {
	right: 14px;
	bottom: 14px;
	border-right: 2px solid var(--neon);
	border-bottom: 2px solid var(--neon);
}

.story-card__media,
.hero-card,
.hollywood-visual {
	clip-path: polygon(var(--cut-sm) 0, 100% 0, 100% calc(100% - var(--cut-sm)), calc(100% - var(--cut-sm)) 100%, 0 100%, 0 var(--cut-sm));
}

.site-header {
	box-shadow: inset 0 -1px 0 rgba(204, 255, 0, .24);
}

.site-logo {
	text-shadow: 1px 0 0 rgba(204, 255, 0, .55), -1px 0 0 rgba(28, 108, 255, .32);
}

@media (max-width: 760px) {
	:root {
		--cut-lg: 20px;
		--cut-sm: 10px;
	}

	.folder-section .section-heading {
		min-height: 42px;
	}
}

/* XBlog Future System v1.2: cohesive sci-fi editorial language. */
:root {
	--xb-bg: #eef0f3;
	--xb-panel: #07090d;
	--xb-panel-2: #10141c;
	--xb-text: #07090d;
	--xb-text-soft: #596171;
	--xb-invert: #f8fbff;
	--xb-cyan: #00e5ff;
	--xb-lime: #ccff00;
	--xb-violet: #7167ff;
	--xb-rose: #ff4f8b;
	--xb-amber: #f6c945;
	--xb-ice: #dce7ff;
	--xb-grid: rgba(0, 229, 255, .12);
	--xb-line: rgba(7, 9, 13, .18);
	--xb-line-invert: rgba(248, 251, 255, .22);
	--font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

body {
	background:
		linear-gradient(90deg, rgba(7, 9, 13, .035) 1px, transparent 1px),
		linear-gradient(180deg, rgba(7, 9, 13, .035) 1px, transparent 1px),
		radial-gradient(circle at 12% 0, rgba(0, 229, 255, .12), transparent 28%),
		radial-gradient(circle at 88% 18%, rgba(113, 103, 255, .1), transparent 30%),
		var(--xb-bg);
	background-size: 56px 56px, 56px 56px, auto, auto, auto;
	color: var(--xb-text);
	font-family: var(--font-sans);
}

a,
button,
.story-card,
.story-card__media,
.hero-card__media,
.primary-nav a,
.latest-list a {
	transition: color .18s ease, background .18s ease, border-color .18s ease, box-shadow .22s ease, transform .22s ease, filter .22s ease;
}

a:hover {
	color: var(--xb-cyan);
}

.site-header {
	background: rgba(238, 240, 243, .78);
	border-bottom: 1px solid rgba(7, 9, 13, .18);
	backdrop-filter: blur(22px) saturate(1.2);
	box-shadow: inset 0 -1px 0 rgba(0, 229, 255, .32);
}

.site-logo {
	color: var(--xb-text);
	text-shadow: 1px 0 0 rgba(0, 229, 255, .72), -1px 0 0 rgba(255, 79, 139, .48);
}

.site-logo:hover {
	color: var(--xb-text);
	filter: drop-shadow(0 0 12px rgba(0, 229, 255, .36));
}

.nav-toggle,
.icon-button,
.search-submit,
.newsletter-form button {
	border-color: rgba(7, 9, 13, .72);
	background: rgba(248, 251, 255, .66);
	color: var(--xb-text);
	clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.nav-toggle:hover,
.icon-button:hover,
.search-submit:hover,
.newsletter-form button:hover {
	background: var(--xb-text);
	border-color: var(--xb-cyan);
	color: var(--xb-invert);
	box-shadow: 0 0 0 1px rgba(0, 229, 255, .38), 0 10px 30px rgba(0, 229, 255, .18);
	transform: translateY(-2px);
}

.nav-toggle__line,
.nav-toggle__line::before,
.nav-toggle__line::after {
	background: currentColor;
}

.primary-nav {
	padding: 10px 0 12px;
}

.primary-nav .menu {
	justify-content: center;
	gap: 8px;
}

.primary-nav a {
	min-height: 34px;
	padding: 0 12px;
	border: 1px solid rgba(7, 9, 13, .2);
	background: rgba(248, 251, 255, .48);
	color: var(--xb-text);
	font-family: var(--font-mono);
	font-size: .69rem;
	font-weight: 700;
	clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.primary-nav a:hover {
	background: var(--xb-panel);
	border-color: var(--xb-cyan);
	color: var(--xb-cyan);
	box-shadow: inset 0 0 0 1px rgba(0, 229, 255, .24);
}

.section-band {
	padding: clamp(54px, 8vw, 106px) 0;
}

.section-heading h2,
.issue-main-headline h2,
.newsletter-block h2 {
	color: inherit;
	font-family: var(--font-display);
	font-weight: 900;
	line-height: .88;
	text-transform: uppercase;
}

.section-kicker,
.story-card__category,
.latest-list__number {
	color: var(--xb-cyan);
	font-family: var(--font-mono);
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: 0;
}

.story-card__date {
	color: var(--xb-text-soft);
	font-family: var(--font-mono);
	font-size: .68rem;
}

.hero-section .container {
	background:
		linear-gradient(90deg, rgba(0, 229, 255, .12) 1px, transparent 1px),
		linear-gradient(180deg, rgba(0, 229, 255, .1) 1px, transparent 1px),
		linear-gradient(135deg, #030407, #0c1018 54%, #050609);
	background-size: 42px 42px, 42px 42px, auto;
	color: var(--xb-invert);
	box-shadow: inset 0 0 0 1px rgba(0, 229, 255, .32), 0 28px 80px rgba(7, 9, 13, .28);
}

.hero-card {
	background: #020305;
}

.hero-card__image,
.story-card__image {
	filter: saturate(.95) contrast(1.04);
}

.hero-card:hover .hero-card__image,
.story-card:hover .story-card__image {
	transform: scale(1.045);
	filter: saturate(1.12) contrast(1.08);
}

.hero-card__content {
	background: linear-gradient(180deg, transparent, rgba(2, 3, 5, .96) 72%);
}

.hero-card h1 {
	font-family: var(--font-editorial);
	font-weight: 700;
	letter-spacing: 0;
}

.hero-card h1 a:hover,
.story-card h3 a:hover {
	color: var(--xb-cyan);
	text-shadow: 0 0 18px rgba(0, 229, 255, .18);
}

.latest-panel {
	background:
		linear-gradient(135deg, rgba(0, 229, 255, .08), transparent 44%),
		var(--xb-panel);
	border: 1px solid var(--xb-line-invert);
}

.latest-panel__head {
	color: var(--xb-invert);
	font-family: var(--font-mono);
}

.latest-panel__head::before {
	background: var(--xb-cyan);
	box-shadow: 0 0 18px rgba(0, 229, 255, .8);
}

.latest-list a:hover {
	color: var(--xb-cyan);
	transform: translateX(4px);
}

.folder-section .section-heading {
	background: var(--xb-panel) !important;
	color: var(--xb-invert);
	box-shadow: 0 10px 30px rgba(7, 9, 13, .18);
}

.folder-section .section-heading::before,
.folder-section .section-heading::after {
	border-color: var(--xb-cyan);
}

.folder-section--reviews .section-heading {
	background: var(--xb-ice) !important;
	color: var(--xb-text);
}

.folder-section--reviews .section-heading::before,
.folder-section--reviews .section-heading::after {
	border-color: var(--xb-violet);
}

.recommended-layout,
.interview-section .three-card-grid {
	background:
		linear-gradient(90deg, rgba(0, 229, 255, .1) 1px, transparent 1px),
		linear-gradient(180deg, rgba(0, 229, 255, .08) 1px, transparent 1px),
		linear-gradient(135deg, #05070b, #111725);
	background-size: 38px 38px, 38px 38px, auto;
	color: var(--xb-invert);
}

.reviews-layout {
	background:
		linear-gradient(135deg, rgba(113, 103, 255, .18), transparent 48%),
		var(--xb-ice);
}

.recommended-layout::before,
.recommended-layout::after,
.interview-section .three-card-grid::before,
.interview-section .three-card-grid::after {
	border-color: var(--xb-cyan);
	box-shadow: 0 0 18px rgba(0, 229, 255, .24);
}

.recommends-word,
.hollywood-visual strong {
	text-shadow: 0 0 18px rgba(0, 229, 255, .42), 0 0 34px rgba(255, 79, 139, .3);
}

.science-section .section-heading h2,
.spoilers-section .section-heading h2,
.cool-section .section-heading h2 {
	color: var(--xb-text);
	text-shadow: 1px 0 0 rgba(0, 229, 255, .26);
}

.three-card-grid--separated .story-card {
	border-top-color: rgba(7, 9, 13, .35);
}

.three-card-grid--separated .story-card::before {
	background: linear-gradient(90deg, var(--xb-cyan), var(--xb-lime));
	box-shadow: 0 0 16px rgba(0, 229, 255, .32);
}

.story-card {
	will-change: transform;
}

.story-card:hover {
	transform: translateY(-4px);
}

.section-band--ink .story-card__date,
.section-band--ink .story-card p,
.folder-section--dark .story-card__date,
.folder-section--dark .story-card p {
	color: rgba(248, 251, 255, .68);
}

.story-card__media {
	border: 1px solid rgba(7, 9, 13, .16);
}

.folder-section--dark .story-card__media,
.hero-section .story-card__media {
	border-color: rgba(248, 251, 255, .16);
}

.story-card--product {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .34), transparent 44%),
		var(--xb-amber);
	border-color: rgba(7, 9, 13, .72);
	box-shadow: 8px 8px 0 var(--xb-panel), 0 18px 38px rgba(7, 9, 13, .16);
}

.story-card--product:hover {
	box-shadow: 11px 11px 0 var(--xb-panel), 0 24px 44px rgba(7, 9, 13, .2);
}

.story-card--review-feature,
.story-card--review-secondary {
	background: rgba(255, 255, 255, .28);
	border: 1px solid rgba(7, 9, 13, .16);
}

.score-badge {
	background: var(--xb-lime);
	box-shadow: 0 0 22px rgba(204, 255, 0, .36);
	clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.hollywood-visual {
	border: 1px solid rgba(0, 229, 255, .22);
	box-shadow: inset 0 0 0 1px rgba(204, 255, 0, .14), 0 18px 48px rgba(7, 9, 13, .2);
}

.newsletter-block {
	background:
		linear-gradient(135deg, rgba(0, 229, 255, .08), transparent 42%),
		rgba(248, 251, 255, .82);
	border: 1px solid rgba(7, 9, 13, .2);
	box-shadow: 0 18px 50px rgba(7, 9, 13, .1);
}

.newsletter-form input,
.search-field {
	background: rgba(255, 255, 255, .72);
	border-color: rgba(7, 9, 13, .4);
	clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.newsletter-form input:focus,
.search-field:focus {
	outline: none;
	border-color: var(--xb-cyan);
	box-shadow: 0 0 0 3px rgba(0, 229, 255, .18);
}

.site-footer {
	background:
		linear-gradient(90deg, rgba(0, 229, 255, .08) 1px, transparent 1px),
		linear-gradient(180deg, rgba(0, 229, 255, .06) 1px, transparent 1px),
		#05070b;
	background-size: 42px 42px;
	border-top: 1px solid rgba(0, 229, 255, .28);
}

.site-footer .site-logo {
	color: var(--xb-invert);
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
	}
}
