/* =========================================================================
   Phantom Findings 2026
   Mobile-first. Dark navy ground, brand violet accent, fog and film grain.
   ========================================================================= */

/* ------------------------------------------------------------ tokens --- */

:root {
	--pf-violet: #8a5cff;
	--pf-lavender: #d4a0ff;
	--pf-deep: #6a4c93;

	--pf-ink: #0f0f1e;
	--pf-ink-2: #101020;
	--pf-ink-3: #1a1a2e;
	--pf-ink-4: #23233f;

	--pf-text: #e8e6f3;
	--pf-muted: #9b98b8;
	--pf-faint: #6f6c8c;
	--pf-line: rgba(138, 92, 255, 0.18);

	--pf-serif: "Bodoni Moda", "Didot", "Playfair Display", Georgia, serif;
	--pf-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--pf-mono: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

	--pf-shell: 1200px;
	--pf-pad: 1.25rem;
	--pf-radius: 14px;
	--pf-radius-lg: 20px;

	--pf-glow: 0 0 0 3px rgba(138, 92, 255, 0.45), 0 0 22px rgba(138, 92, 255, 0.35);
	--pf-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ------------------------------------------------------------- reset --- */

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

[hidden] {
	display: none !important;
}

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

html.pf-locked {
	overflow: hidden;
}

body.pf {
	margin: 0;
	background: var(--pf-ink);
	color: var(--pf-text);
	font-family: var(--pf-sans);
	font-size: 1rem;
	line-height: 1.65;
	font-weight: 400;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

img,
svg,
video,
audio,
iframe {
	max-width: 100%;
}

img,
svg,
video {
	height: auto;
	display: block;
}

a {
	color: var(--pf-lavender);
	text-decoration-color: rgba(212, 160, 255, 0.4);
	text-underline-offset: 3px;
	transition: color 0.25s var(--pf-ease);
}

a:hover {
	color: #fff;
}

:focus-visible {
	outline: none;
	box-shadow: var(--pf-glow);
	border-radius: 6px;
}

button {
	font: inherit;
	color: inherit;
}

.pf-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	background: var(--pf-violet);
	color: #fff;
	padding: 0.75rem 1.25rem;
	border-radius: 0 0 8px 0;
}

.pf-skip:focus {
	left: 0;
}

/* ------------------------------------------------------------ layout --- */

.pf-shell {
	width: 100%;
	max-width: var(--pf-shell);
	margin-inline: auto;
	padding-inline: var(--pf-pad);
}

.pf-main {
	display: block;
}

.pf-section {
	position: relative;
	padding-block: 4.5rem;
}

.pf-section__head {
	text-align: center;
	max-width: 46rem;
	margin: 0 auto 2.5rem;
}

.pf-section__title {
	font-family: var(--pf-serif);
	font-weight: 500;
	text-transform: uppercase;
	font-size: clamp(2rem, 7.5vw, 3.5rem);
	line-height: 1.05;
	letter-spacing: 0.01em;
	margin: 0.35rem 0 0.75rem;
	color: #f4f2ff;
}

.pf-section__lede {
	color: var(--pf-muted);
	margin: 0;
	font-size: 1.0625rem;
}

.pf-label {
	font-family: var(--pf-mono);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--pf-deep);
	margin: 0;
}

.pf-label--lg {
	font-size: 0.875rem;
	letter-spacing: 0.16em;
	color: var(--pf-lavender);
}

/* ------------------------------------------------ atmosphere: grain ---- */

.pf-grain {
	position: fixed;
	inset: 0;
	z-index: 900;
	pointer-events: none;
	opacity: 0.05;
	mix-blend-mode: screen;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
	animation: pf-grain-shift 620ms steps(2) infinite;
}

@keyframes pf-grain-shift {
	0% { transform: translate(0, 0); }
	50% { transform: translate(-3px, 2px); }
	100% { transform: translate(2px, -2px); }
}

/* ------------------------------------------------- atmosphere: fog ----- */

.pf-fog {
	position: absolute;
	inset: -10%;
	pointer-events: none;
	opacity: 0.5;
	background-repeat: repeat-x;
	background-size: 200% 100%;
	background-image:
		radial-gradient(60% 40% at 20% 70%, rgba(138, 92, 255, 0.18), transparent 70%),
		radial-gradient(50% 35% at 75% 60%, rgba(106, 76, 147, 0.22), transparent 72%),
		radial-gradient(40% 30% at 50% 85%, rgba(212, 160, 255, 0.10), transparent 70%);
	filter: blur(14px);
}

.pf-fog--a { animation: pf-drift 46s linear infinite; }
.pf-fog--b { animation: pf-drift 74s linear infinite reverse; opacity: 0.35; }
.pf-fog--soft { opacity: 0.28; }
.pf-fog--footer { opacity: 0.3; }

@keyframes pf-drift {
	from { transform: translate3d(-4%, 0, 0); }
	to { transform: translate3d(4%, 0, 0); }
}

/* --------------------------------------------------------- buttons ----- */

.pf-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	padding: 0.9rem 2rem;
	border-radius: 999px;
	border: 1px solid transparent;
	font-family: var(--pf-sans);
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.25s var(--pf-ease), box-shadow 0.25s var(--pf-ease),
		background-color 0.25s var(--pf-ease), border-color 0.25s var(--pf-ease), color 0.25s var(--pf-ease);
}

.pf-btn__icon {
	width: 1.1em;
	height: 1.1em;
	flex: none;
}

.pf-btn--primary {
	background: var(--pf-violet);
	color: #fff;
	box-shadow: 0 8px 30px rgba(138, 92, 255, 0.35);
}

.pf-btn--primary:hover {
	background: #9a70ff;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 12px 38px rgba(138, 92, 255, 0.5);
}

.pf-btn--ghost {
	background: rgba(26, 26, 46, 0.55);
	border-color: rgba(138, 92, 255, 0.5);
	color: var(--pf-text);
}

.pf-btn--ghost:hover {
	border-color: var(--pf-lavender);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(106, 76, 147, 0.4);
}

.pf-btn--sm {
	padding: 0.55rem 1.15rem;
	font-size: 0.75rem;
}

/* ---------------------------------------------------------- header ----- */

.pf-header {
	position: sticky;
	top: 0;
	z-index: 800;
	background: linear-gradient(to bottom, rgba(15, 15, 30, 0.92), rgba(15, 15, 30, 0));
	transition: background-color 0.3s var(--pf-ease), backdrop-filter 0.3s var(--pf-ease);
}

.pf-header.is-stuck {
	background: rgba(15, 15, 30, 0.9);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--pf-line);
}

.pf-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 68px;
	flex-wrap: wrap;
}

.pf-brand {
	/* flex-basis 0 keeps a long site name from wrapping the burger to its own
	   row: the name ellipsizes instead of forcing a line break. */
	flex: 1 1 0;
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	min-width: 0;
	text-decoration: none;
	color: var(--pf-text);
}

.pf-brand__mark,
.pf-mark {
	flex: none;
	width: 34px;
	height: auto;
	filter: drop-shadow(0 0 10px rgba(138, 92, 255, 0.55));
	transition: transform 0.4s var(--pf-ease);
}

.pf-brand:hover .pf-brand__mark {
	transform: translateY(-3px);
}

.pf-brand__name {
	font-family: var(--pf-sans);
	font-weight: 600;
	font-size: 1.0625rem;
	letter-spacing: 0.01em;
	color: #f2f0ff;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pf-burger {
	flex: none;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	padding: 0 9px;
	background: none;
	border: 1px solid var(--pf-line);
	border-radius: 10px;
	cursor: pointer;
}

.pf-burger span {
	display: block;
	height: 2px;
	background: var(--pf-lavender);
	border-radius: 2px;
	transition: transform 0.3s var(--pf-ease), opacity 0.2s var(--pf-ease);
}

.pf-header.is-open .pf-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pf-header.is-open .pf-burger span:nth-child(2) { opacity: 0; }
.pf-header.is-open .pf-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.pf-nav {
	display: none;
	width: 100%;
}

.pf-header.is-open .pf-nav {
	display: block;
	padding-bottom: 1rem;
}

.pf-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.pf-nav__list a {
	display: block;
	padding: 0.6rem 0.25rem;
	font-family: var(--pf-mono);
	font-size: 0.8125rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--pf-muted);
}

.pf-nav__list a:hover,
.pf-nav__list .current-menu-item > a {
	color: #fff;
}

/* ------------------------------------------------------------ hero ----- */

.pf-hero {
	position: relative;
	min-height: 100svh;
	display: grid;
	place-items: center;
	overflow: hidden;
	isolation: isolate;
	margin-top: -68px;
	padding-top: 68px;
}

.pf-hero__sky {
	position: absolute;
	inset: 0;
	z-index: -3;
	background:
		radial-gradient(120% 80% at 50% 12%, #2a2450 0%, #17163a 35%, #101020 62%, #08080f 100%);
}

.pf-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background: radial-gradient(75% 60% at 50% 45%, transparent 40%, rgba(5, 5, 12, 0.85) 100%);
}

.pf-hero .pf-fog {
	z-index: -2;
}

.pf-hero__stones {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -2;
	opacity: 0.9;
}

.pf-hero__stones svg {
	width: 100%;
	height: clamp(160px, 32vh, 340px);
	display: block;
}

.pf-hero__inner {
	position: relative;
	text-align: center;
	padding-block: 6rem 7rem;
}

.pf-hero__eyebrow {
	color: var(--pf-lavender);
	opacity: 0.75;
	margin-bottom: 1.5rem;
}

.pf-hero__title {
	font-family: var(--pf-serif);
	font-weight: 500;
	/* Long single words (a three-word site title) must still fit 375px. */
	font-size: clamp(2.5rem, 11.5vw, 8rem);
	line-height: 0.94;
	/* break-word only breaks within a word when no space exists; prevents orphaned
	   trailing characters (e.g. the trailing S in PRODUCTIONS at 390px). */
	overflow-wrap: break-word;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	margin: 0;
	color: #f7f5ff;
	text-shadow: 0 0 60px rgba(138, 92, 255, 0.35), 0 2px 30px rgba(0, 0, 0, 0.8);
}

.pf-hero__title span {
	display: block;
}

.pf-hero__lede {
	max-width: 34rem;
	margin: 1.75rem auto 0;
	color: var(--pf-muted);
	font-size: 1.0625rem;
}

.pf-hero__cta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.85rem;
	margin-top: 2.5rem;
}

.pf-hero__scroll {
	position: absolute;
	bottom: 1.75rem;
	left: 50%;
	transform: translateX(-50%);
	width: 24px;
	height: 40px;
	border: 1px solid rgba(212, 160, 255, 0.4);
	border-radius: 14px;
	display: grid;
	place-items: start center;
	padding-top: 8px;
}

.pf-hero__scroll span {
	width: 3px;
	height: 8px;
	border-radius: 2px;
	background: var(--pf-lavender);
	animation: pf-scroll 1.8s ease-in-out infinite;
}

@keyframes pf-scroll {
	0%, 100% { transform: translateY(0); opacity: 1; }
	60% { transform: translateY(12px); opacity: 0.1; }
}

/* -------------------------------------------------------- episodes ----- */

.pf-episodes {
	background: linear-gradient(to bottom, #08080f, var(--pf-ink-2) 25%, var(--pf-ink) 100%);
}

.pf-filters {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2.5rem;
}

.pf-toggle {
	display: inline-flex;
	padding: 4px;
	border: 1px solid var(--pf-line);
	border-radius: 999px;
	background: rgba(26, 26, 46, 0.6);
}

.pf-toggle__btn {
	padding: 0.5rem 1.35rem;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--pf-muted);
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.25s var(--pf-ease), color 0.25s var(--pf-ease);
}

.pf-toggle__btn.is-active {
	background: var(--pf-violet);
	color: #fff;
	box-shadow: 0 4px 16px rgba(138, 92, 255, 0.4);
}

.pf-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
}

.pf-tab {
	padding: 0.5rem 1.1rem;
	border: 1px solid var(--pf-line);
	border-radius: 999px;
	background: rgba(26, 26, 46, 0.6);
	color: var(--pf-muted);
	font-family: var(--pf-mono);
	font-size: 0.6875rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
	transition: border-color 0.25s var(--pf-ease), color 0.25s var(--pf-ease),
		background-color 0.25s var(--pf-ease), box-shadow 0.25s var(--pf-ease);
}

.pf-tab:hover {
	color: #fff;
	border-color: rgba(212, 160, 255, 0.6);
}

.pf-tab.is-active {
	background: rgba(138, 92, 255, 0.18);
	border-color: var(--pf-violet);
	color: #fff;
	box-shadow: 0 0 18px rgba(138, 92, 255, 0.25);
}

.pf-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

.pf-grid__actions {
	margin-top: 2.5rem;
	text-align: center;
}

.pf-grid__count {
	margin: 1rem 0 0;
	color: var(--pf-faint);
	font-family: var(--pf-mono);
	font-size: 0.75rem;
	letter-spacing: 0.1em;
}

/* ------------------------------------------------------------ card ----- */

.pf-card {
	position: relative;
	border-radius: var(--pf-radius-lg);
	overflow: hidden;
	background: var(--pf-ink-3);
	border: 1px solid rgba(138, 92, 255, 0.12);
	transition: transform 0.35s var(--pf-ease), border-color 0.35s var(--pf-ease), box-shadow 0.35s var(--pf-ease);
}

.pf-card:hover {
	transform: translateY(-6px);
	border-color: rgba(138, 92, 255, 0.55);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.6), 0 0 30px rgba(138, 92, 255, 0.22);
}

.pf-card__link {
	display: block;
	position: relative;
	text-decoration: none;
	color: inherit;
}

.pf-card__link:focus-visible {
	box-shadow: var(--pf-glow);
	border-radius: var(--pf-radius-lg);
}

.pf-card__media {
	display: block;
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #0b0b16;
}

.pf-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.75) brightness(0.72);
	transform: scale(1.02);
	transition: transform 0.6s var(--pf-ease), filter 0.4s var(--pf-ease);
}

.pf-card:hover .pf-card__img {
	transform: scale(1.07);
	filter: saturate(0.95) brightness(0.9);
}

.pf-card__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(10, 10, 22, 0.1) 30%, rgba(10, 10, 22, 0.85) 100%);
}

.pf-card__play {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 54px;
	height: 54px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(138, 92, 255, 0.9);
	color: #fff;
	opacity: 0;
	transform: scale(0.85);
	transition: opacity 0.3s var(--pf-ease), transform 0.3s var(--pf-ease);
	box-shadow: 0 0 26px rgba(138, 92, 255, 0.6);
}

.pf-card__play svg {
	width: 26px;
	height: 26px;
}

.pf-card:hover .pf-card__play,
.pf-card__link:focus-visible .pf-card__play {
	opacity: 1;
	transform: scale(1);
}

.pf-card__duration {
	position: absolute;
	right: 0.65rem;
	top: 0.65rem;
	padding: 0.15rem 0.5rem;
	border-radius: 6px;
	background: rgba(8, 8, 16, 0.8);
	color: var(--pf-text);
	font-family: var(--pf-mono);
	font-size: 0.6875rem;
	letter-spacing: 0.06em;
}

.pf-card__body {
	display: block;
	padding: 1.1rem 1.15rem 1.4rem;
}

.pf-chip {
	display: inline-block;
	padding: 0.25rem 0.7rem;
	margin-bottom: 0.65rem;
	border-radius: 999px;
	background: var(--pf-violet);
	color: #fff;
	font-family: var(--pf-mono);
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.pf-card__title {
	display: block;
	font-family: var(--pf-serif);
	font-weight: 500;
	font-size: 1.375rem;
	line-height: 1.15;
	color: #f4f2ff;
	margin-bottom: 0.5rem;
}

.pf-card__meta {
	display: block;
	color: var(--pf-faint);
	font-family: var(--pf-mono);
	font-size: 0.6875rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.pf-card__flag {
	color: var(--pf-lavender);
}

.pf-empty {
	text-align: center;
	color: var(--pf-muted);
	padding: 2.5rem 0;
	margin: 0;
}

/* -------------------------------------------------------- lightbox ----- */

.pf-lightbox {
	position: fixed;
	inset: 0;
	z-index: 950;
	display: grid;
	place-items: center;
	padding: var(--pf-pad);
}

.pf-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(5, 5, 12, 0.92);
	backdrop-filter: blur(6px);
}

.pf-lightbox__panel {
	position: relative;
	width: min(100%, 1000px);
}

.pf-lightbox__frame {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: var(--pf-radius);
	overflow: hidden;
	background: #000;
	box-shadow: 0 0 60px rgba(138, 92, 255, 0.35);
}

.pf-lightbox__frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.pf-lightbox__close {
	position: absolute;
	top: -2.75rem;
	right: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--pf-line);
	background: rgba(26, 26, 46, 0.9);
	color: var(--pf-text);
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
}

.pf-lightbox__close:hover {
	border-color: var(--pf-lavender);
	color: #fff;
}

/* --------------------------------------------------------- podcast ----- */

.pf-podcast {
	position: relative;
	overflow: hidden;
	background: linear-gradient(to bottom, var(--pf-ink), var(--pf-ink-2));
	border-block: 1px solid var(--pf-line);
}

.pf-podcast > .pf-shell {
	position: relative;
}

.pf-eps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1rem;
}

.pf-ep {
	display: grid;
	grid-template-columns: 84px 1fr;
	gap: 1rem;
	align-items: start;
	padding: 1rem;
	border-radius: var(--pf-radius);
	background: rgba(26, 26, 46, 0.7);
	border: 1px solid rgba(138, 92, 255, 0.14);
	transition: border-color 0.3s var(--pf-ease), box-shadow 0.3s var(--pf-ease);
}

.pf-ep:hover {
	border-color: rgba(138, 92, 255, 0.5);
	box-shadow: 0 0 26px rgba(138, 92, 255, 0.18);
}

.pf-ep__art img {
	width: 84px;
	height: 84px;
	object-fit: cover;
	border-radius: 10px;
}

.pf-ep__title {
	font-family: var(--pf-serif);
	font-weight: 500;
	font-size: 1.25rem;
	line-height: 1.2;
	margin: 0 0 0.35rem;
}

.pf-ep__title a {
	color: #f4f2ff;
	text-decoration: none;
}

.pf-ep__title a:hover {
	color: var(--pf-lavender);
}

.pf-ep__meta {
	margin: 0 0 0.75rem;
	color: var(--pf-faint);
	font-family: var(--pf-mono);
	font-size: 0.6875rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.pf-ep__audio {
	width: 100%;
	height: 40px;
	filter: invert(0.92) hue-rotate(190deg) saturate(0.6);
	border-radius: 999px;
}

.pf-subscribe {
	margin-top: 2.5rem;
	text-align: center;
}

.pf-subscribe__list {
	list-style: none;
	margin: 1rem 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.6rem;
}

/* ---------------------------------------------------------- submit ----- */

.pf-submit {
	background: radial-gradient(90% 60% at 50% 0%, #1b1738 0%, var(--pf-ink) 60%);
}

.pf-submit__inner {
	display: grid;
	gap: 2.5rem;
}

.pf-submit__intro .pf-section__title,
.pf-submit__intro .pf-section__lede {
	text-align: left;
}

.pf-submit__mascot {
	width: 120px;
	margin-top: 1.5rem;
	opacity: 0.9;
	filter: drop-shadow(0 0 26px rgba(138, 92, 255, 0.5));
	animation: pf-float 6s ease-in-out infinite;
}

@keyframes pf-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-12px); }
}

.pf-form {
	padding: 1.5rem;
	border-radius: var(--pf-radius-lg);
	background: rgba(16, 16, 32, 0.75);
	border: 1px solid var(--pf-line);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.pf-form__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.pf-field {
	margin: 0 0 1.25rem;
	display: grid;
	gap: 0.4rem;
}

.pf-field label {
	font-family: var(--pf-mono);
	font-size: 0.6875rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--pf-lavender);
}

.pf-req {
	color: var(--pf-violet);
}

.pf-field input[type="text"],
.pf-field input[type="email"],
.pf-field select,
.pf-field textarea {
	width: 100%;
	padding: 0.75rem 0.9rem;
	border-radius: 10px;
	border: 1px solid var(--pf-line);
	background: rgba(10, 10, 22, 0.8);
	color: var(--pf-text);
	font-family: var(--pf-sans);
	font-size: 1rem;
	transition: border-color 0.25s var(--pf-ease), box-shadow 0.25s var(--pf-ease);
}

.pf-field textarea {
	resize: vertical;
	min-height: 9rem;
	line-height: 1.6;
}

.pf-field input:focus,
.pf-field select:focus,
.pf-field textarea:focus {
	outline: none;
	border-color: var(--pf-violet);
	box-shadow: var(--pf-glow);
}

.pf-field input[type="file"] {
	color: var(--pf-muted);
	font-size: 0.875rem;
}

.pf-field input[type="file"]::file-selector-button {
	margin-right: 0.75rem;
	padding: 0.5rem 1rem;
	border-radius: 999px;
	border: 1px solid var(--pf-line);
	background: rgba(26, 26, 46, 0.9);
	color: var(--pf-text);
	cursor: pointer;
}

.pf-field__hint {
	color: var(--pf-faint);
	font-size: 0.8125rem;
}

.pf-form__actions {
	margin: 0;
}

.pf-notice {
	padding: 1rem 1.15rem;
	margin-bottom: 1.25rem;
	border-radius: 10px;
	border: 1px solid;
	font-size: 0.9375rem;
}

.pf-notice--ok {
	border-color: rgba(138, 92, 255, 0.6);
	background: rgba(138, 92, 255, 0.14);
	color: #eae4ff;
}

.pf-notice--error {
	border-color: rgba(255, 120, 120, 0.55);
	background: rgba(255, 90, 90, 0.12);
	color: #ffd9d9;
}

/* --------------------------------------------------------- episode ----- */

.pf-episode {
	padding-block: 2rem 4.5rem;
}

.pf-episode__stage {
	position: relative;
	border-radius: var(--pf-radius-lg);
	overflow: hidden;
	background: #0b0b16;
	border: 1px solid var(--pf-line);
	margin-bottom: 1.75rem;
}

.pf-episode__cover {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	filter: brightness(0.55) saturate(0.8);
}

.pf-episode__player {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1rem;
	background: linear-gradient(to top, rgba(8, 8, 16, 0.95), rgba(8, 8, 16, 0));
}

.pf-episode__audio {
	width: 100%;
	filter: invert(0.92) hue-rotate(190deg) saturate(0.6);
}

.pf-episode__title {
	font-family: var(--pf-serif);
	font-weight: 500;
	font-size: clamp(2rem, 8vw, 3.5rem);
	line-height: 1.02;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	margin: 0.35rem 0 0.6rem;
	color: #f7f5ff;
}

.pf-episode__meta {
	margin: 0;
	color: var(--pf-muted);
	font-family: var(--pf-mono);
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.pf-episode__body {
	margin-top: 1.5rem;
	display: grid;
	gap: 1.25rem;
}

.pf-episode__actions {
	display: flex;
	gap: 0.6rem;
}

.pf-episode__more {
	margin-top: 3.5rem;
}

.pf-episode__more .pf-label--lg {
	margin-bottom: 1.25rem;
}

.pf-strip {
	margin-top: 3rem;
	padding: 1.25rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	border-radius: var(--pf-radius);
	background: linear-gradient(90deg, rgba(30, 24, 64, 0.9), rgba(16, 16, 32, 0.9));
	border: 1px solid var(--pf-line);
}

.pf-strip__mark {
	width: 48px;
	filter: drop-shadow(0 0 14px rgba(138, 92, 255, 0.5));
}

.pf-strip__text {
	flex: 1 1 10rem;
}

.pf-strip__name {
	margin: 0;
	font-family: var(--pf-sans);
	font-weight: 600;
	font-size: 1.125rem;
	color: #f2f0ff;
}

/* ------------------------------------------------------- prose/page ---- */

.pf-page {
	padding-block: 3rem 4.5rem;
}

.pf-page__head {
	margin-bottom: 1.75rem;
}

.pf-page__title {
	font-family: var(--pf-serif);
	font-weight: 500;
	font-size: clamp(2rem, 7vw, 3.25rem);
	line-height: 1.06;
	margin: 0.35rem 0 0;
	color: #f7f5ff;
}

.pf-page__art {
	margin: 0 0 2rem;
	border-radius: var(--pf-radius-lg);
	overflow: hidden;
}

.pf-prose {
	max-width: 46rem;
}

.pf-prose > * + * {
	margin-top: 1.15rem;
}

.pf-prose h2,
.pf-prose h3 {
	font-family: var(--pf-serif);
	font-weight: 500;
	line-height: 1.2;
	color: #f2f0ff;
	margin-top: 2.25rem;
}

.pf-prose blockquote {
	margin-inline: 0;
	padding-left: 1.25rem;
	border-left: 2px solid var(--pf-violet);
	color: var(--pf-muted);
	font-style: italic;
}

.pf-list {
	display: grid;
	gap: 1.5rem;
}

.pf-list__item {
	display: grid;
	gap: 1rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--pf-line);
}

.pf-list__art img {
	border-radius: var(--pf-radius);
	width: 100%;
	object-fit: cover;
}

.pf-list__title {
	font-family: var(--pf-serif);
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 1.15;
	margin: 0 0 0.35rem;
}

.pf-list__title a {
	color: #f4f2ff;
	text-decoration: none;
}

.pf-list__meta {
	margin: 0 0 0.5rem;
	color: var(--pf-faint);
	font-family: var(--pf-mono);
	font-size: 0.6875rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.pf-pagination {
	margin-top: 2.5rem;
}

.pf-pagination .page-numbers {
	display: inline-block;
	padding: 0.4rem 0.8rem;
	margin-right: 0.25rem;
	border-radius: 8px;
	border: 1px solid var(--pf-line);
	text-decoration: none;
	color: var(--pf-muted);
}

.pf-pagination .page-numbers.current,
.pf-pagination .page-numbers:hover {
	border-color: var(--pf-violet);
	color: #fff;
}

.pf-404 {
	text-align: center;
}

.pf-404__mark {
	width: 110px;
	margin: 0 auto 1.5rem;
	animation: pf-float 6s ease-in-out infinite;
	filter: drop-shadow(0 0 30px rgba(138, 92, 255, 0.5));
}

/* ---------------------------------------------------------- footer ----- */

.pf-footer {
	position: relative;
	overflow: hidden;
	padding-top: 3.5rem;
	background: linear-gradient(to bottom, var(--pf-ink), #07070e);
	border-top: 1px solid var(--pf-line);
}

.pf-footer__inner {
	position: relative;
	display: grid;
	gap: 2.25rem;
	padding-bottom: 2.5rem;
}

.pf-footer__mark {
	width: 56px;
	margin-bottom: 0.85rem;
	filter: drop-shadow(0 0 18px rgba(138, 92, 255, 0.5));
}

.pf-footer__name {
	margin: 0;
	font-family: var(--pf-serif);
	font-size: 1.5rem;
	color: #f2f0ff;
}

.pf-footer__tag {
	margin: 0.35rem 0 0;
	color: var(--pf-faint);
	font-size: 0.9375rem;
	max-width: 24rem;
}

.pf-footer__list {
	list-style: none;
	margin: 0.85rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.4rem;
}

.pf-footer__list a {
	color: var(--pf-muted);
	text-decoration: none;
	font-size: 0.9375rem;
}

.pf-footer__list a:hover {
	color: #fff;
}

.pf-footer__base {
	position: relative;
	padding-block: 1.25rem;
	border-top: 1px solid var(--pf-line);
	color: var(--pf-faint);
	font-family: var(--pf-mono);
	font-size: 0.6875rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.pf-footer__base p {
	margin: 0;
}

/* ------------------------------------------------------ breakpoints ---- */

@media (min-width: 640px) {
	.pf-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.pf-form {
		padding: 2rem;
	}

	.pf-list__item {
		grid-template-columns: 200px 1fr;
		align-items: start;
	}
}

@media (min-width: 900px) {
	:root {
		--pf-pad: 2rem;
	}

	.pf-section {
		padding-block: 6.5rem;
	}

	.pf-burger {
		display: none;
	}

	.pf-nav {
		display: block;
		width: auto;
	}

	.pf-nav__list {
		flex-direction: row;
		gap: 2rem;
	}

	.pf-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}

	.pf-grid--three {
		grid-template-columns: repeat(3, 1fr);
	}

	.pf-filters {
		flex-direction: row;
		justify-content: center;
		gap: 1.5rem;
	}

	.pf-eps {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.25rem;
	}

	.pf-submit__inner {
		grid-template-columns: 0.85fr 1.15fr;
		align-items: start;
		gap: 3.5rem;
	}

	.pf-submit__mascot {
		width: 180px;
	}

	.pf-episode__body {
		grid-template-columns: 1fr auto;
		align-items: end;
	}

	.pf-footer__inner {
		grid-template-columns: 1.4fr 1fr 1fr;
		gap: 3rem;
	}
}

@media (min-width: 1200px) {
	.pf-hero__inner {
		padding-block: 8rem;
	}
}

/* ------------------------------------------------------ preferences ---- */

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

	.pf-grain,
	.pf-fog--a,
	.pf-fog--b,
	.pf-hero__scroll span,
	.pf-submit__mascot,
	.pf-404__mark {
		animation: none;
	}

	*,
	*::before,
	*::after {
		transition-duration: 0.01ms !important;
	}
}

@media print {
	.pf-grain,
	.pf-fog,
	.pf-header,
	.pf-footer,
	.pf-lightbox {
		display: none !important;
	}

	body.pf {
		background: #fff;
		color: #000;
	}
}
