/* ============================================================
   TUSK TALK WITH TY — MAIN STYLESHEET
   ============================================================ */

:root {
	--red: #9D2235;
	--red-bright: #C8102E;
	--red-dark: #6B1623;
	--black: #0A0A0A;
	--ink: #1A1A1A;
	--paper: #FAF7F2;
	--paper-2: #F2EDE4;
	--paper-3: #EAE3D5;
	--rule: #1A1A1A;
	--muted: #6B6560;
	--gold: #D4A82C;
	--discord: #5865F2;
	--discord-dark: #4752C4;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	font-family: 'Source Serif 4', Georgia, serif;
	background: var(--paper);
	color: var(--ink);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
.display { font-family: 'Oswald', 'Arial Narrow', sans-serif; letter-spacing: -0.01em; }
.mono { font-family: 'JetBrains Mono', monospace; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }

/* ============================================================
   LIVE STREAM
   ============================================================ */
.live-bar {
	background: var(--red-bright);
	color: white;
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.4s ease;
}
.live-bar.active { max-height: 80px; }
.live-bar-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 14px 0;
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	cursor: pointer;
	transition: background 0.2s;
}
.live-bar-inner:hover { background: rgba(0,0,0,0.15); }
.live-bar-pulse {
	width: 10px; height: 10px;
	background: white;
	border-radius: 50%;
	animation: livePulse 1.4s ease-in-out infinite;
}
@keyframes livePulse {
	0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
	70% { box-shadow: 0 0 0 14px rgba(255,255,255,0); }
	100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.live-bar-arrow { transition: transform 0.3s ease; display: inline-block; }
.live-bar.expanded .live-bar-arrow { transform: rotate(180deg); }

.live-player {
	background: var(--black);
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.5s ease;
}
.live-player.active { max-height: 1200px; }
.live-player-inner { padding: 32px 0 40px; }
.live-player-frame {
	aspect-ratio: 16 / 9;
	width: 100%;
	background: #000;
	border: 2px solid var(--red-bright);
	box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 20px 60px rgba(200,16,46,0.25);
	position: relative;
	overflow: hidden;
}
.live-player-frame iframe {
	width: 100%; height: 100%;
	display: block;
	border: 0;
	position: absolute;
	inset: 0;
}
.live-player-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 18px;
	color: var(--paper);
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}
.live-player-meta .left { display: flex; align-items: center; gap: 12px; min-width: 0; }
.lpm-pulse {
	width: 8px; height: 8px;
	background: var(--red-bright);
	border-radius: 50%;
	animation: livePulse 1.4s ease-in-out infinite;
	flex-shrink: 0;
}
.lpm-title {
	color: var(--paper);
	font-family: 'Oswald', sans-serif;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.live-player-close {
	color: rgba(250,247,242,0.6);
	cursor: pointer;
	transition: color 0.2s;
	flex-shrink: 0;
}
.live-player-close:hover { color: var(--paper); }

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
	background: var(--black);
	color: var(--paper);
	border-bottom: 1px solid #222;
	overflow: hidden;
}
.ticker-inner {
	display: flex;
	align-items: stretch;
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
}
.ticker-tag {
	background: var(--red-bright);
	color: white;
	padding: 10px 14px;
	font-weight: 700;
	flex-shrink: 0;
	letter-spacing: 0.12em;
	display: flex;
	align-items: center;
}
.ticker-viewport { overflow: hidden; flex: 1; display: flex; align-items: center; }
.ticker-track {
	display: inline-flex;
	gap: 40px;
	padding-left: 24px;
	animation: scroll 50s linear infinite;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 10px; }
.ticker-track span::before {
	content: '';
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--gold);
}
@keyframes scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* ============================================================
   MASTHEAD
   ============================================================ */
.masthead {
	background: var(--paper);
	border-bottom: 1px solid rgba(0,0,0,0.08);
	padding: 14px 0;
}
.masthead-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 32px;
}
.masthead-left, .masthead-right {
	display: flex;
	gap: 24px;
	align-items: center;
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--muted);
}
.masthead-right { justify-content: flex-end; }
.masthead-right a { transition: color 0.2s; }
.masthead-right a:hover { color: var(--red-bright); }
.masthead-right .subscribe { color: var(--red-bright); font-weight: 700; }
.logo { text-align: center; line-height: 1; display: block; }
.logo-image {
	width: auto;
	max-height: 90px;
	height: auto;
	margin: 0 auto;
	display: block;
}
.logo .word {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 32px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}
.logo .red { color: var(--red-bright); }
.logo .tagline {
	font-family: 'Source Serif 4', serif;
	font-style: italic;
	font-size: 11px;
	color: var(--muted);
	margin-top: 4px;
	letter-spacing: 0.04em;
	display: block;
}
.footer-logo { display: inline-block; margin-bottom: 16px; }
.footer-logo img {
	max-height: 100px;
	width: auto;
	display: block;
	/* Logo already designed for dark backgrounds — no filter needed */
}

/* ============================================================
   PRIMARY NAV
   ============================================================ */
.primary {
	background: var(--black);
	border-top: 3px solid var(--red-bright);
	position: sticky;
	top: 0;
	z-index: 100;
}
.nav-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 56px;
}
.nav-links {
	display: flex;
	list-style: none;
	gap: 0;
	height: 100%;
}
.nav-links li { height: 100%; }
.nav-links a {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 18px;
	color: var(--paper);
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: color 0.2s;
	border-bottom: 3px solid transparent;
}
.nav-links a:hover, .nav-links a.active, .nav-links .current-menu-item a {
	color: var(--red-bright);
	border-bottom-color: var(--red-bright);
}
.nav-cta {
	display: flex;
	gap: 14px;
	align-items: center;
}
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 16px;
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border: 1px solid var(--paper);
	color: var(--paper);
	transition: all 0.2s;
	cursor: pointer;
}
.btn:hover { background: var(--paper); color: var(--black); }
.btn-red {
	background: var(--red-bright);
	border-color: var(--red-bright);
	color: white;
}
.btn-red:hover { background: white; color: var(--red-bright); }

/* ============================================================
   SOCIAL ICONS (nav + footer + share)
   ============================================================ */
.social-icons {
	display: flex;
	align-items: center;
	gap: 10px;
}
.social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	color: var(--paper);
	transition: all 0.2s ease;
	border-radius: 4px;
}
.social-icon:hover { transform: translateY(-2px); }
.social-youtube:hover { color: #FF0000; }
.social-x:hover { color: var(--paper); background: var(--ink); }
.social-discord:hover { color: var(--discord); }

.nav-socials .social-icon { color: var(--paper); }
.footer-socials {
	margin-top: 18px;
	gap: 14px;
}
.footer-socials .social-icon {
	width: 42px; height: 42px;
	background: rgba(255,255,255,0.06);
}
.footer-socials .social-icon:hover {
	background: rgba(255,255,255,0.12);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
	background: var(--paper);
	padding: 56px 0 80px;
	border-bottom: 1px solid rgba(0,0,0,0.08);
}
.hero-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 48px;
}
.hero-feature {
	border-bottom: 1px solid var(--ink);
	padding-bottom: 32px;
	animation: fadeUp 0.7s ease;
}
@keyframes fadeUp {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
	display: flex;
	gap: 12px;
	align-items: center;
	margin-bottom: 18px;
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--muted);
	flex-wrap: wrap;
}
.badge {
	background: var(--red-bright);
	color: white;
	padding: 4px 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
}
.hero-feature h1 {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: clamp(48px, 6vw, 88px);
	line-height: 0.95;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	margin-bottom: 18px;
}
.accent { color: var(--red-bright); font-style: italic; }
.hero-deck {
	font-family: 'Source Serif 4', serif;
	font-size: 20px;
	line-height: 1.45;
	color: var(--ink);
	max-width: 620px;
	margin-bottom: 24px;
}
.hero-byline {
	display: flex;
	gap: 14px;
	align-items: center;
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--muted);
	border-top: 1px solid rgba(0,0,0,0.1);
	padding-top: 16px;
	flex-wrap: wrap;
}
.hero-byline .by { color: var(--ink); font-weight: 700; }
.hero-byline .dot { width: 4px; height: 4px; background: var(--muted); border-radius: 50%; }
.hero-byline a { color: var(--red-bright); font-weight: 700; }

/* ===== HERO ASIDE ===== */
.hero-aside { display: flex; flex-direction: column; gap: 24px; }
.now-playing {
	background: var(--black);
	color: var(--paper);
	padding: 22px;
	position: relative;
	overflow: hidden;
}
.now-playing::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: var(--red-bright);
}
.np-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--gold);
	margin-bottom: 12px;
}
.np-pulse {
	width: 8px; height: 8px;
	background: var(--red-bright);
	border-radius: 50%;
	animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(1.2); }
}
.np-title {
	font-family: 'Oswald', sans-serif;
	font-size: 22px;
	text-transform: uppercase;
	line-height: 1.1;
	margin-bottom: 12px;
}
.np-meta {
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 18px;
}
.np-progress {
	height: 3px;
	background: rgba(255,255,255,0.15);
	margin-bottom: 8px;
	position: relative;
}
.np-progress::after {
	content: '';
	position: absolute;
	left: 0; top: 0; bottom: 0;
	width: 38%;
	background: var(--red-bright);
}
.np-time {
	display: flex;
	justify-content: space-between;
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	color: var(--muted);
	margin-bottom: 16px;
}
.np-controls { display: flex; gap: 8px; }
.np-btn {
	flex: 1;
	background: var(--red-bright);
	color: white;
	padding: 10px;
	text-align: center;
	font-family: 'Oswald', sans-serif;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition: background 0.2s;
}
.np-btn:hover { background: white; color: var(--red-bright); }
.np-btn.outline {
	background: transparent;
	border: 1px solid rgba(255,255,255,0.3);
	color: var(--paper);
}
.np-btn.outline:hover { background: var(--paper); color: var(--black); border-color: var(--paper); }

.hero-list {
	background: var(--paper-2);
	padding: 20px;
}
.hero-list-head {
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--muted);
	margin-bottom: 14px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}
.hero-list ul { list-style: none; }
.hero-list li {
	display: flex;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(0,0,0,0.06);
	cursor: pointer;
	transition: padding-left 0.2s;
}
.hero-list li:hover { padding-left: 6px; }
.hero-list li:last-child { border-bottom: 0; }
.hl-num {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	color: var(--red-bright);
	font-size: 18px;
	line-height: 1;
	flex-shrink: 0;
	width: 30px;
}
.hl-text {
	font-family: 'Source Serif 4', serif;
	font-size: 14px;
	line-height: 1.3;
	display: block;
}
.hl-meta {
	display: block;
	font-family: 'JetBrains Mono', monospace;
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--muted);
	margin-top: 4px;
}

/* ============================================================
   SECTION HEAD
   ============================================================ */
.section-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 32px;
	padding-bottom: 14px;
	border-bottom: 2px solid var(--ink);
	flex-wrap: wrap;
	gap: 16px;
}
.section-title {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 28px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}
.section-title .red-bar {
	display: inline-block;
	width: 8px;
	height: 24px;
	background: var(--red-bright);
	margin-right: 12px;
	vertical-align: middle;
}
.section-link {
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--red-bright);
	font-weight: 700;
}

/* ============================================================
   EPISODES GRID
   ============================================================ */
.episodes { background: var(--paper); padding: 80px 0; }
.ep-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.ep-card-link { text-decoration: none; color: inherit; display: block; }
.ep-card {
	background: var(--paper);
	border-top: 1px solid var(--ink);
	padding-top: 18px;
	cursor: pointer;
	transition: transform 0.25s ease;
}
.ep-card:hover { transform: translateY(-4px); }
.ep-thumb {
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, var(--red-dark), var(--red), var(--black));
	margin-bottom: 16px;
	position: relative;
	overflow: hidden;
}
.ep-thumb img {
	position: absolute;
	inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}
.ep-card:hover .ep-thumb img { transform: scale(1.05); }
.ep-thumb::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.4) 100%);
	z-index: 1;
}
.ep-thumb-tag, .ep-thumb-num, .ep-thumb-play { z-index: 2; }
.ep-thumb-tag {
	position: absolute;
	top: 12px; left: 12px;
	background: var(--black);
	color: var(--gold);
	padding: 4px 10px;
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 700;
}
.ep-thumb-num {
	position: absolute;
	bottom: 12px; right: 14px;
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 56px;
	color: rgba(255,255,255,0.3);
	line-height: 1;
	text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.ep-thumb-play {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	width: 56px; height: 56px;
	border-radius: 50%;
	background: var(--paper);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s;
}
.ep-card:hover .ep-thumb-play { transform: translate(-50%, -50%) scale(1.1); }
.ep-thumb-play::before {
	content: '';
	width: 0; height: 0;
	border-left: 14px solid var(--black);
	border-top: 9px solid transparent;
	border-bottom: 9px solid transparent;
	margin-left: 4px;
}
.ep-meta {
	display: flex;
	gap: 10px;
	align-items: center;
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--muted);
	margin-bottom: 8px;
	flex-wrap: wrap;
}
.ep-meta .cat { color: var(--red-bright); font-weight: 700; }
.ep-card h3 {
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	font-size: 22px;
	line-height: 1.15;
	text-transform: uppercase;
	letter-spacing: -0.005em;
	margin-bottom: 10px;
}
.ep-card p {
	font-family: 'Source Serif 4', serif;
	font-size: 14px;
	color: var(--muted);
	line-height: 1.45;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
	background: var(--black);
	color: var(--paper);
	padding: 50px 0;
	position: relative;
	overflow: hidden;
}
.stats-strip::before {
	content: 'TUSK · TUSK · TUSK · TUSK · TUSK';
	position: absolute;
	bottom: -20px; left: 0; right: 0;
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 140px;
	color: rgba(255,255,255,0.03);
	white-space: nowrap;
	letter-spacing: 0.05em;
}
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	position: relative;
	z-index: 1;
}
.stat {
	border-left: 2px solid var(--red-bright);
	padding-left: 18px;
}
.stat-num {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 56px;
	line-height: 1;
	margin-bottom: 6px;
}
.stat-num .plus { color: var(--gold); }
.stat-label {
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--muted);
}

/* ============================================================
   ABOUT (homepage teaser)
   ============================================================ */
.about { background: var(--paper-2); padding: 80px 0; }
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 56px;
	align-items: center;
}
.about-portrait, .about-portrait-large {
	aspect-ratio: 4/5;
	background: linear-gradient(165deg, var(--red-dark) 0%, var(--red) 50%, var(--black) 100%);
	position: relative;
	overflow: hidden;
}
.about-portrait.has-photo,
.about-portrait-large.has-photo {
	background: var(--ink);
}
.about-portrait.has-photo img,
.about-portrait-large.has-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	position: absolute;
	inset: 0;
	z-index: 1;
}
.about-portrait.has-photo::before,
.about-portrait-large.has-photo::before,
.about-portrait.has-photo::after,
.about-portrait-large.has-photo::after {
	display: none;
}
.about-portrait::before, .about-portrait-large::before {
	content: 'TY';
	position: absolute;
	bottom: -30px; left: 20px;
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 240px;
	color: rgba(0,0,0,0.25);
	line-height: 1;
}
.about-portrait::after, .about-portrait-large::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,0.04) 3px, rgba(0,0,0,0.04) 4px);
}
.about-portrait .corner-tag, .about-portrait-large .corner-tag {
	position: absolute;
	top: 20px; left: 20px;
	background: var(--paper);
	color: var(--black);
	padding: 6px 12px;
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 700;
	z-index: 2;
}
.about-eyebrow {
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--red-bright);
	font-weight: 700;
	margin-bottom: 16px;
}
.about-content h2 {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 56px;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	margin-bottom: 20px;
}
.about-content h2 .red { color: var(--red-bright); font-style: italic; }
.about-content .lede {
	font-family: 'Source Serif 4', serif;
	font-size: 22px;
	line-height: 1.4;
	margin-bottom: 18px;
}
.about-content p {
	font-family: 'Source Serif 4', serif;
	font-size: 16px;
	line-height: 1.65;
	color: var(--ink);
	margin-bottom: 14px;
}
.about-socials {
	display: flex;
	gap: 16px;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid rgba(0,0,0,0.15);
	flex-wrap: wrap;
}
.about-socials a {
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ink);
	transition: color 0.2s;
}
.about-socials a:hover { color: var(--red-bright); }

/* ============================================================
   DISCORD TEASER (homepage)
   ============================================================ */
.discord-teaser {
	background: linear-gradient(135deg, var(--discord-dark) 0%, var(--discord) 100%);
	color: white;
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}
.discord-teaser::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(135deg, transparent, transparent 60px, rgba(255,255,255,0.03) 60px, rgba(255,255,255,0.03) 120px);
}
.discord-teaser-inner {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 48px;
	align-items: center;
	position: relative;
	z-index: 1;
}
.discord-icon-large {
	color: white;
	background: rgba(255,255,255,0.12);
	width: 120px; height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 24px;
	border: 2px solid rgba(255,255,255,0.2);
}
.discord-eyebrow {
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: rgba(255,255,255,0.7);
	font-weight: 700;
	margin-bottom: 14px;
}
.discord-teaser-content h2 {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 52px;
	line-height: 1;
	text-transform: uppercase;
	margin-bottom: 14px;
}
.discord-teaser-content h2 .discord-purple { font-style: italic; opacity: 0.85; }
.discord-teaser-content p {
	font-family: 'Source Serif 4', serif;
	font-size: 18px;
	line-height: 1.5;
	max-width: 580px;
	margin-bottom: 24px;
	opacity: 0.92;
}
.discord-cta, .discord-hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 28px;
	background: white;
	color: var(--discord-dark);
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	transition: all 0.2s;
}
.discord-cta:hover, .discord-hero-cta:hover { background: var(--paper); transform: translateY(-2px); }

/* ============================================================
   SPONSOR (homepage band)
   ============================================================ */
.sponsor {
	background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, var(--black) 100%);
	color: var(--paper);
	padding: 64px 0;
	position: relative;
	overflow: hidden;
}
.sponsor::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(135deg, transparent, transparent 60px, rgba(255,255,255,0.02) 60px, rgba(255,255,255,0.02) 120px);
}
.sponsor-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 48px;
	align-items: center;
	position: relative;
	z-index: 1;
}
.sponsor-tag {
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--gold);
	font-weight: 700;
	line-height: 1.4;
	border-left: 2px solid var(--gold);
	padding-left: 14px;
}
.sponsor-tag .small { display: block; color: var(--paper); opacity: 0.7; font-weight: 400; margin-top: 4px; }
.sponsor-content h3 {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 42px;
	line-height: 1;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.sponsor-content h3 .accent { color: var(--gold); font-style: italic; }
.sponsor-content p {
	font-family: 'Source Serif 4', serif;
	font-size: 16px;
	line-height: 1.5;
	max-width: 560px;
	opacity: 0.9;
}
.sponsor-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 24px;
	background: var(--paper);
	color: var(--ink);
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	transition: all 0.2s;
	white-space: nowrap;
}
.sponsor-cta:hover { background: var(--gold); transform: translateX(4px); }
.sponsor-cta::after { content: '→'; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
	background: var(--black);
	color: var(--paper);
	padding: 64px 0 0;
}
.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo .word { color: var(--paper); }
.footer-brand p {
	font-family: 'Source Serif 4', serif;
	font-size: 14px;
	line-height: 1.55;
	color: rgba(250,247,242,0.7);
	margin-top: 18px;
	max-width: 360px;
}
.footer-sponsor-block {
	margin-top: 22px;
	padding: 16px;
	background: rgba(255,255,255,0.04);
	border-left: 2px solid var(--red-bright);
}
.fsb-label {
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--gold);
	font-weight: 700;
	margin-bottom: 6px;
}
.fsb-name {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin-bottom: 4px;
}
.fsb-url {
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	color: rgba(250,247,242,0.7);
	transition: color 0.2s;
}
.fsb-url:hover { color: var(--red-bright); }
.footer-col-head {
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--red-bright);
	margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
	font-family: 'Source Serif 4', serif;
	font-size: 14px;
	color: rgba(250,247,242,0.75);
	transition: color 0.2s;
}
.footer-links a:hover { color: var(--paper); }
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px 0;
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: rgba(250,247,242,0.5);
	flex-wrap: wrap;
	gap: 12px;
}
.woopig {
	color: var(--red-bright);
	font-weight: 700;
	letter-spacing: 0.2em;
}

/* ============================================================
   SINGLE EPISODE PAGE
   ============================================================ */
.single-episode { background: var(--paper); }
.ep-header {
	background: var(--paper-2);
	padding: 56px 0 40px;
	border-bottom: 1px solid rgba(0,0,0,0.08);
}
.ep-header-inner { max-width: 900px; }
.ep-header-eyebrow {
	display: flex;
	gap: 12px;
	align-items: center;
	margin-bottom: 18px;
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--muted);
	flex-wrap: wrap;
}
.ep-cat-link { color: var(--red-bright); font-weight: 700; }
.ep-title {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: clamp(36px, 5vw, 64px);
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	margin-bottom: 18px;
}
.ep-byline {
	display: flex;
	gap: 12px;
	align-items: center;
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--muted);
	flex-wrap: wrap;
}
.ep-byline .by { color: var(--ink); font-weight: 700; }
.ep-byline .dot { width: 4px; height: 4px; background: var(--muted); border-radius: 50%; }

.ep-player-section { background: var(--black); padding: 40px 0; }
.ep-player {
	aspect-ratio: 16 / 9;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	background: #000;
	border: 2px solid var(--red-bright);
	box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 20px 60px rgba(200,16,46,0.2);
	overflow: hidden;
}
.ep-player iframe {
	width: 100%; height: 100%;
	display: block;
	border: 0;
}
.ep-player-actions {
	max-width: 1200px;
	margin: 24px auto 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}
.ep-share-icons .social-icon { color: var(--paper); }
.ep-share-icons .social-icon:hover { background: rgba(255,255,255,0.08); border-radius: 4px; }

.ep-content-section { padding: 60px 0; }
.ep-content-grid {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 56px;
}
.ep-body {
	font-family: 'Source Serif 4', serif;
	font-size: 17px;
	line-height: 1.7;
}
.ep-body p { margin-bottom: 18px; }
.ep-body h2, .ep-body h3 {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	margin: 32px 0 14px;
}
.ep-body h2 { font-size: 28px; }
.ep-body h3 { font-size: 22px; color: var(--red-bright); }
.ep-body a { color: var(--red-bright); text-decoration: underline; }

.ep-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card {
	background: var(--paper-2);
	padding: 24px;
}
.sb-head {
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--red-bright);
	font-weight: 700;
	margin-bottom: 14px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}
.ep-details { font-family: 'JetBrains Mono', monospace; font-size: 12px; }
.ep-details dt {
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 10px;
	margin-bottom: 4px;
}
.ep-details dd { margin-bottom: 12px; font-weight: 700; color: var(--ink); }

.sidebar-discord {
	background: linear-gradient(135deg, var(--discord-dark), var(--discord));
	color: white;
}
.sidebar-discord .sb-head { color: white; opacity: 0.8; border-bottom-color: rgba(255,255,255,0.15); }
.sidebar-discord p {
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 14px;
	opacity: 0.95;
}
.sidebar-discord-cta {
	display: inline-block;
	padding: 10px 16px;
	background: white;
	color: var(--discord-dark);
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	transition: background 0.2s;
}
.sidebar-discord-cta:hover { background: var(--paper); }

.related-episodes { background: var(--paper-2); padding: 60px 0; }

/* ============================================================
   ARCHIVE PAGE
   ============================================================ */
.archive-page { padding: 60px 0; }
.archive-filter {
	display: flex;
	gap: 8px;
	margin-bottom: 32px;
	flex-wrap: wrap;
}
.filter-pill {
	padding: 8px 16px;
	background: var(--paper-2);
	font-family: 'Oswald', sans-serif;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ink);
	transition: all 0.2s;
}
.filter-pill:hover { background: var(--ink); color: var(--paper); }
.filter-pill.active { background: var(--red-bright); color: white; }

.pagination { margin-top: 40px; text-align: center; }
.pagination .page-numbers {
	display: inline-block;
	padding: 8px 14px;
	margin: 0 2px;
	background: var(--paper-2);
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.05em;
}
.pagination .page-numbers.current { background: var(--red-bright); color: white; }
.pagination .page-numbers:hover { background: var(--ink); color: var(--paper); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-page { padding: 60px 0; background: var(--paper); }
.about-hero {
	text-align: center;
	margin-bottom: 56px;
	padding-bottom: 40px;
	border-bottom: 2px solid var(--ink);
}
.about-hero-eyebrow {
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--red-bright);
	font-weight: 700;
	margin-bottom: 16px;
}
.about-hero-title {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: clamp(56px, 8vw, 120px);
	line-height: 0.9;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
}
.about-hero-title .red { color: var(--red-bright); font-style: italic; }
.about-hero-tagline {
	font-family: 'Source Serif 4', serif;
	font-style: italic;
	font-size: 22px;
	color: var(--muted);
}
.about-body-grid {
	display: grid;
	grid-template-columns: 0.8fr 1.4fr;
	gap: 56px;
	align-items: start;
}
.about-portrait-large { aspect-ratio: 4/5; }
.about-body { font-family: 'Source Serif 4', serif; font-size: 17px; line-height: 1.7; }
.about-body p { margin-bottom: 18px; }
.about-body .lede {
	font-size: 22px;
	line-height: 1.5;
	color: var(--ink);
	margin-bottom: 22px;
	font-weight: 600;
}
.about-body h3 {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 24px;
	text-transform: uppercase;
	color: var(--red-bright);
	margin: 32px 0 14px;
}
.about-body ul { list-style: none; padding-left: 0; }
.about-body ul li {
	padding: 10px 0 10px 24px;
	border-bottom: 1px dashed rgba(0,0,0,0.1);
	position: relative;
}
.about-body ul li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--red-bright);
	font-weight: 700;
}
.about-page-socials {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-top: 32px;
	padding-top: 32px;
	border-top: 1px solid rgba(0,0,0,0.1);
}
.apx-social {
	display: flex;
	flex-direction: column;
	padding: 14px 18px;
	background: var(--paper-2);
	transition: all 0.2s;
}
.apx-social:hover { background: var(--ink); color: var(--paper); }
.apx-label {
	font-family: 'JetBrains Mono', monospace;
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--red-bright);
	margin-bottom: 4px;
}
.apx-handle {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 16px;
}

/* ============================================================
   DISCORD PAGE
   ============================================================ */
.discord-page { padding: 60px 0; background: var(--paper); }
.discord-hero {
	background: linear-gradient(135deg, var(--discord-dark) 0%, var(--discord) 100%);
	color: white;
	padding: 80px 40px;
	text-align: center;
	position: relative;
	overflow: hidden;
	border-radius: 4px;
	margin-bottom: 64px;
}
.discord-hero-bg {
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(135deg, transparent, transparent 60px, rgba(255,255,255,0.04) 60px, rgba(255,255,255,0.04) 120px);
	pointer-events: none;
}
.discord-hero-content { position: relative; z-index: 1; }
.discord-icon-xl {
	margin: 0 auto 20px;
	width: 120px; height: 120px;
	background: rgba(255,255,255,0.12);
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid rgba(255,255,255,0.2);
	color: white;
}
.discord-hero .discord-eyebrow {
	color: rgba(255,255,255,0.75);
	margin-bottom: 14px;
}
.discord-hero-title {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: clamp(48px, 7vw, 88px);
	line-height: 0.95;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	margin-bottom: 18px;
}
.discord-hero-title .discord-purple { font-style: italic; opacity: 0.85; }
.discord-hero-deck {
	font-family: 'Source Serif 4', serif;
	font-size: 20px;
	line-height: 1.5;
	max-width: 640px;
	margin: 0 auto 32px;
	opacity: 0.95;
}
.discord-invite-code {
	margin-top: 18px;
	font-family: 'JetBrains Mono', monospace;
	font-size: 13px;
	letter-spacing: 0.08em;
	color: rgba(255,255,255,0.7);
}

.discord-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 56px;
}
.discord-feature {
	background: var(--paper-2);
	padding: 28px;
	border-top: 3px solid var(--discord);
	transition: transform 0.2s, box-shadow 0.2s;
}
.discord-feature:hover {
	transform: translateY(-4px);
	box-shadow: 6px 6px 0 var(--ink);
}
.df-icon {
	font-size: 36px;
	margin-bottom: 14px;
	line-height: 1;
}
.discord-feature h3 {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 22px;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.discord-feature p {
	font-family: 'Source Serif 4', serif;
	font-size: 15px;
	line-height: 1.5;
	color: var(--muted);
}

.discord-secondary-cta {
	background: var(--ink);
	color: white;
	padding: 48px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 32px;
	align-items: center;
}
.dsc-content h2 {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 36px;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.dsc-content p {
	font-family: 'Source Serif 4', serif;
	font-size: 16px;
	opacity: 0.85;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page { padding: 60px 0; }
.contact-header {
	text-align: center;
	margin-bottom: 56px;
	padding-bottom: 40px;
	border-bottom: 2px solid var(--ink);
}
.contact-eyebrow {
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--red-bright);
	font-weight: 700;
	margin-bottom: 16px;
}
.contact-title {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: clamp(48px, 7vw, 88px);
	line-height: 0.95;
	text-transform: uppercase;
	margin-bottom: 16px;
}
.contact-title .red { color: var(--red-bright); font-style: italic; }
.contact-deck {
	font-family: 'Source Serif 4', serif;
	font-style: italic;
	font-size: 20px;
	color: var(--muted);
	max-width: 640px;
	margin: 0 auto;
}
.contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 56px;
}
.contact-card {
	background: var(--paper-2);
	padding: 32px;
	border-top: 3px solid var(--red-bright);
	transition: all 0.2s;
	color: var(--ink);
}
.contact-card:hover {
	transform: translateY(-4px);
	box-shadow: 6px 6px 0 var(--ink);
}
.cc-icon {
	color: var(--red-bright);
	margin-bottom: 16px;
}
.contact-card h3 {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 24px;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.contact-card p {
	font-family: 'Source Serif 4', serif;
	font-size: 15px;
	line-height: 1.5;
	color: var(--muted);
	margin-bottom: 18px;
}
.cc-link {
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--red-bright);
	font-weight: 700;
}
.contact-sponsor-band {
	background: var(--ink);
	color: white;
	padding: 48px;
	text-align: center;
}
.csb-content h2 {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 36px;
	text-transform: uppercase;
	margin-bottom: 14px;
}
.csb-content p {
	font-family: 'Source Serif 4', serif;
	font-size: 16px;
	line-height: 1.6;
	max-width: 640px;
	margin: 0 auto 12px;
	opacity: 0.9;
}

/* ============================================================
   GENERIC PAGE
   ============================================================ */
.generic-page { padding: 60px 0; }
.page-header { margin-bottom: 32px; padding-bottom: 18px; border-bottom: 2px solid var(--ink); }
.page-title {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: clamp(36px, 5vw, 64px);
	line-height: 1;
	text-transform: uppercase;
}
.page-body {
	font-family: 'Source Serif 4', serif;
	font-size: 17px;
	line-height: 1.7;
	max-width: 800px;
}
.page-body p { margin-bottom: 18px; }
.page-body h2, .page-body h3 {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	margin: 32px 0 14px;
}
.page-body a { color: var(--red-bright); text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
	.hero-grid, .ep-grid, .stats-grid, .about-grid, .footer-grid, .sponsor-inner,
	.discord-features, .contact-grid, .ep-content-grid, .about-body-grid,
	.discord-teaser-inner, .discord-secondary-cta, .sp-stats {
		grid-template-columns: 1fr;
	}
	.ep-grid { grid-template-columns: 1fr 1fr; }
	.discord-features { grid-template-columns: 1fr 1fr; }
	.contact-grid { grid-template-columns: 1fr; }
	.stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
	.sp-stats { grid-template-columns: 1fr 1fr; }
	.nav-links { display: none; }
	.masthead-inner { grid-template-columns: 1fr; gap: 12px; }
	.masthead-left, .masthead-right { display: none; }
	.hero-feature h1, .about-content h2 { font-size: 44px; }
	.sponsor-inner { gap: 24px; text-align: left; }
}

@media (max-width: 640px) {
	.ep-grid { grid-template-columns: 1fr; }
	.discord-features { grid-template-columns: 1fr; }
	.stats-grid { grid-template-columns: 1fr; }
	.sp-stats { grid-template-columns: 1fr 1fr; }
	.container { padding: 0 20px; }
	.discord-secondary-cta { padding: 32px 20px; }
	.sp-become, .sp-current-card, .contact-sponsor-band { padding: 32px 20px; }
}

/* ============================================================
   SERVICEBUILT CREDIT (footer)
   ============================================================ */
.footer-credit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 18px 0 24px;
	border-top: 1px solid rgba(255,255,255,0.04);
	margin-top: 12px;
}
.footer-credit-label {
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	letter-spacing: 0.06em;
	color: rgba(250,247,242,0.3);
}
.footer-credit a { display: inline-flex; align-items: center; }
.footer-credit img {
	height: 22px;
	width: auto;
	opacity: 0.5;
	transition: opacity 0.2s;
}
.footer-credit a:hover img { opacity: 0.85; }

/* ============================================================
   PATREON POP-UP CARD (compact, bottom-right)
   ============================================================ */
.patreon-banner {
	position: fixed;
	right: 24px;
	bottom: 24px;
	left: auto;
	z-index: 200;
	width: 360px;
	max-width: calc(100vw - 32px);
	background: linear-gradient(135deg, #FF424D 0%, #E03A45 100%);
	color: white;
	box-shadow: 0 18px 48px rgba(0,0,0,0.32), 0 4px 12px rgba(224,58,69,0.4);
	border-radius: 12px;
	border: 2px solid rgba(255,255,255,0.18);
	transform: translateY(140%);
	opacity: 0;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
	overflow: hidden;
}
.patreon-banner.show {
	transform: translateY(0);
	opacity: 1;
}
.patreon-banner.dismissed { display: none; }

.patreon-banner-inner {
	padding: 18px 18px 16px;
	display: grid;
	grid-template-columns: 44px 1fr;
	grid-template-rows: auto auto auto;
	column-gap: 12px;
	row-gap: 8px;
	align-items: start;
}

.pb-icon {
	width: 44px;
	height: 44px;
	background: rgba(255,255,255,0.16);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	grid-row: 1;
	grid-column: 1;
}
.pb-icon svg { width: 22px; height: 22px; }

.pb-content {
	grid-row: 1;
	grid-column: 2;
	min-width: 0;
}
.pb-eyebrow {
	font-family: 'JetBrains Mono', monospace;
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-weight: 700;
	color: rgba(255,255,255,0.85);
	margin-bottom: 3px;
}
.pb-title {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: -0.005em;
	line-height: 1.15;
	margin-bottom: 0;
}
.pb-deck {
	grid-row: 2;
	grid-column: 1 / -1;
	font-family: 'Source Serif 4', serif;
	font-size: 13px;
	line-height: 1.4;
	opacity: 0.95;
	margin: 4px 0 4px;
}
.pb-cta {
	grid-row: 3;
	grid-column: 1 / -1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 16px;
	background: white;
	color: #E03A45;
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	transition: transform 0.2s, background 0.2s;
	border-radius: 6px;
	margin-top: 6px;
	width: 100%;
	text-align: center;
}
.pb-cta:hover {
	background: var(--paper);
	transform: translateY(-1px);
}
.pb-close {
	position: absolute;
	top: 8px;
	right: 8px;
	background: rgba(0,0,0,0.18);
	border: 0;
	color: rgba(255,255,255,0.85);
	font-size: 18px;
	width: 26px;
	height: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	line-height: 1;
	padding: 0;
	border-radius: 50%;
	transition: all 0.2s;
}
.pb-close:hover {
	background: rgba(0,0,0,0.35);
	color: white;
	transform: scale(1.08);
}

@media (max-width: 480px) {
	.patreon-banner {
		right: 12px;
		bottom: 12px;
		width: calc(100vw - 24px);
	}
	.pb-title { font-size: 15px; }
	.pb-deck { font-size: 12px; }
}

/* ============================================================
   SPONSORS PAGE — HIGH-CONVERTING REWRITE
   ============================================================ */
.sponsors-page { padding: 60px 0; }

/* HERO */
.sp-hero {
	text-align: center;
	margin-bottom: 64px;
	padding: 56px 24px;
	background: linear-gradient(165deg, var(--paper) 0%, var(--paper-2) 100%);
	border: 1px solid rgba(0,0,0,0.06);
	position: relative;
	overflow: hidden;
}
.sp-hero::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; height: 4px;
	background: linear-gradient(90deg, var(--red-bright), var(--gold), var(--red-bright));
}
.sp-hero-eyebrow {
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--red-bright);
	font-weight: 700;
	margin-bottom: 18px;
}
.sp-hero-title {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: clamp(40px, 6vw, 84px);
	line-height: 0.95;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	margin-bottom: 22px;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}
.sp-hero-title .red { color: var(--red-bright); font-style: italic; }
.sp-hero-deck {
	font-family: 'Source Serif 4', serif;
	font-size: 20px;
	line-height: 1.45;
	color: var(--ink);
	max-width: 760px;
	margin: 0 auto 32px;
}
.sp-hero-cta-row {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 32px;
}
.sp-cta-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 16px 28px;
	background: var(--red-bright);
	color: white;
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	transition: all 0.2s;
	border: 2px solid var(--red-bright);
}
.sp-cta-primary:hover {
	background: var(--ink);
	border-color: var(--ink);
	transform: translateY(-2px);
}
.sp-cta-ghost {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 16px 28px;
	background: transparent;
	color: var(--ink);
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	transition: all 0.2s;
	border: 2px solid var(--ink);
}
.sp-cta-ghost:hover {
	background: var(--ink);
	color: var(--paper);
}
.sp-hero-trust {
	display: flex;
	gap: 14px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	font-family: 'JetBrains Mono', monospace;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--muted);
}
.sp-trust-item strong { color: var(--ink); margin-right: 4px; }
.sp-trust-divider { color: var(--red-bright); font-weight: 700; }

/* PROBLEM */
.sp-problem {
	background: var(--ink);
	color: var(--paper);
	padding: 64px 32px;
	margin-bottom: 64px;
	position: relative;
	overflow: hidden;
}
.sp-problem::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(135deg, transparent, transparent 60px, rgba(255,255,255,0.02) 60px, rgba(255,255,255,0.02) 120px);
}
.sp-problem-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.sp-problem-eyebrow {
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--red-bright);
	font-weight: 700;
	margin-bottom: 14px;
}
.sp-problem h2 {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: clamp(36px, 5vw, 56px);
	line-height: 1;
	text-transform: uppercase;
	margin-bottom: 24px;
}
.sp-problem h2 .red { color: var(--red-bright); font-style: italic; }
.sp-problem p {
	font-family: 'Source Serif 4', serif;
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 16px;
}
.sp-problem-bridge {
	font-style: italic;
	color: var(--gold);
	font-size: 22px !important;
	margin-top: 24px !important;
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,0.1);
}

/* WHY SPONSOR */
.sp-why {
	margin-bottom: 64px;
	text-align: center;
}
.sp-why-eyebrow, .sp-tiers-eyebrow, .sp-how-eyebrow, .sp-faq-eyebrow,
.sp-demo-eyebrow, .sp-mk-eyebrow, .sp-current-eyebrow {
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--red-bright);
	font-weight: 700;
	margin-bottom: 14px;
}
.sp-why h2, .sp-tiers h2, .sp-how h2, .sp-faq h2, .sp-demo h2, .sp-mk-content h2 {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: clamp(32px, 4vw, 48px);
	line-height: 1;
	text-transform: uppercase;
	margin-bottom: 32px;
}
.sp-why h2 .red, .sp-how h2 .red, .sp-mk-content h2 .red { color: var(--red-bright); font-style: italic; }
.sp-why-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	text-align: left;
}
.sp-why-card {
	background: var(--paper-2);
	padding: 32px;
	border-top: 3px solid var(--red-bright);
	position: relative;
	transition: transform 0.2s, box-shadow 0.2s;
}
.sp-why-card:hover {
	transform: translateY(-4px);
	box-shadow: 6px 6px 0 var(--ink);
}
.sp-why-num {
	position: absolute;
	top: 18px; right: 22px;
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 56px;
	color: rgba(157,34,53,0.08);
	line-height: 1;
}
.sp-why-card h3 {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 22px;
	text-transform: uppercase;
	margin-bottom: 12px;
	max-width: 78%;
}
.sp-why-card p {
	font-family: 'Source Serif 4', serif;
	font-size: 15px;
	line-height: 1.55;
	color: var(--ink);
}

/* DEMOGRAPHICS */
.sp-demo {
	margin-bottom: 64px;
	text-align: center;
}
.sp-demo-deck {
	font-family: 'Source Serif 4', serif;
	font-size: 17px;
	line-height: 1.5;
	color: var(--muted);
	max-width: 720px;
	margin: -16px auto 32px;
}
.sp-demo-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	text-align: left;
}
.sp-demo-card {
	background: var(--paper);
	border: 1px solid rgba(0,0,0,0.1);
	padding: 24px;
	transition: all 0.2s;
}
.sp-demo-card:hover {
	border-color: var(--red-bright);
	background: var(--paper-2);
}
.sp-demo-stat {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 38px;
	color: var(--red-bright);
	line-height: 1;
	margin-bottom: 6px;
}
.sp-demo-label {
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--muted);
	font-weight: 700;
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(0,0,0,0.08);
}
.sp-demo-card p {
	font-family: 'Source Serif 4', serif;
	font-size: 14px;
	line-height: 1.5;
	color: var(--ink);
	margin: 0;
}

/* TIERS */
.sp-tiers { margin-bottom: 64px; text-align: center; }
.sp-tiers-deck {
	font-family: 'Source Serif 4', serif;
	font-size: 17px;
	line-height: 1.5;
	color: var(--muted);
	max-width: 720px;
	margin: -16px auto 40px;
}
.sp-tier-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	text-align: left;
	align-items: stretch;
}
.sp-tier-card {
	background: var(--paper-2);
	padding: 32px;
	border-top: 3px solid var(--ink);
	position: relative;
	display: flex;
	flex-direction: column;
}
.sp-tier-card.sp-tier-featured {
	background: var(--ink);
	color: var(--paper);
	border-top-color: var(--gold);
	transform: scale(1.04);
	box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.sp-tier-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--gold);
	color: var(--ink);
	padding: 6px 14px;
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	border-radius: 2px;
	white-space: nowrap;
}
.sp-tier-tag {
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--red-bright);
	font-weight: 700;
	margin-bottom: 10px;
}
.sp-tier-card.sp-tier-featured .sp-tier-tag { color: var(--gold); }
.sp-tier-card h3 {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 28px;
	text-transform: uppercase;
	margin-bottom: 12px;
	line-height: 1;
}
.sp-tier-pitch {
	font-family: 'Source Serif 4', serif;
	font-size: 15px;
	line-height: 1.5;
	margin-bottom: 18px;
	opacity: 0.9;
}
.sp-tier-features {
	list-style: none;
	padding: 0;
	margin: 0 0 18px;
	flex: 1;
}
.sp-tier-features li {
	padding: 8px 0 8px 22px;
	border-bottom: 1px dashed rgba(0,0,0,0.1);
	position: relative;
	font-family: 'Source Serif 4', serif;
	font-size: 14px;
	line-height: 1.4;
}
.sp-tier-card.sp-tier-featured .sp-tier-features li {
	border-bottom-color: rgba(255,255,255,0.1);
}
.sp-tier-features li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--red-bright);
	font-weight: 700;
}
.sp-tier-card.sp-tier-featured .sp-tier-features li::before { color: var(--gold); }
.sp-tier-features li:last-child { border-bottom: 0; }
.sp-tier-footer {
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--muted);
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid rgba(0,0,0,0.08);
}
.sp-tier-card.sp-tier-featured .sp-tier-footer {
	color: rgba(255,255,255,0.6);
	border-top-color: rgba(255,255,255,0.1);
}

/* HOW IT WORKS */
.sp-how {
	margin-bottom: 64px;
	background: var(--paper-2);
	padding: 56px 32px;
	text-align: center;
}
.sp-how-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: left;
	margin-top: 12px;
}
.sp-how-step { position: relative; padding-left: 8px; }
.sp-how-step::before {
	content: '';
	position: absolute;
	left: 0; top: 12px; bottom: 0;
	width: 2px;
	background: var(--red-bright);
}
.sp-how-num {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 48px;
	color: var(--red-bright);
	line-height: 1;
	margin-bottom: 8px;
	margin-left: 16px;
}
.sp-how-step h3 {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 19px;
	text-transform: uppercase;
	margin-bottom: 8px;
	margin-left: 16px;
}
.sp-how-step p {
	font-family: 'Source Serif 4', serif;
	font-size: 14px;
	line-height: 1.5;
	color: var(--muted);
	margin: 0;
	margin-left: 16px;
}

/* FAQ */
.sp-faq { margin-bottom: 64px; text-align: center; }
.sp-faq-list {
	max-width: 880px;
	margin: 0 auto;
	text-align: left;
}
.sp-faq-item {
	border-bottom: 1px solid rgba(0,0,0,0.1);
	padding: 4px 0;
}
.sp-faq-item summary {
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	padding: 18px 30px 18px 0;
	cursor: pointer;
	position: relative;
	list-style: none;
	transition: color 0.2s;
}
.sp-faq-item summary::-webkit-details-marker { display: none; }
.sp-faq-item summary:hover { color: var(--red-bright); }
.sp-faq-item summary::after {
	content: '+';
	position: absolute;
	right: 0; top: 50%;
	transform: translateY(-50%);
	font-family: 'Oswald', sans-serif;
	font-weight: 400;
	font-size: 26px;
	color: var(--red-bright);
	transition: transform 0.2s;
}
.sp-faq-item[open] summary::after { content: '−'; }
.sp-faq-item[open] summary { color: var(--red-bright); }
.sp-faq-item p {
	font-family: 'Source Serif 4', serif;
	font-size: 16px;
	line-height: 1.65;
	color: var(--ink);
	padding: 0 30px 18px 0;
	margin: 0;
}

/* MEDIA KIT */
.sp-media-kit {
	background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, var(--black) 100%);
	color: var(--paper);
	padding: 72px 48px;
	margin-bottom: 64px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.sp-media-kit::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(135deg, transparent, transparent 60px, rgba(255,255,255,0.025) 60px, rgba(255,255,255,0.025) 120px);
}
.sp-mk-content { position: relative; z-index: 1; }
.sp-mk-content h2 { color: var(--paper); margin-bottom: 18px; }
.sp-mk-content p {
	font-family: 'Source Serif 4', serif;
	font-size: 18px;
	line-height: 1.5;
	max-width: 680px;
	margin: 0 auto 28px;
	opacity: 0.92;
}
.sp-mk-actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 28px;
}
.sp-media-kit .sp-cta-primary {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--ink);
}
.sp-media-kit .sp-cta-primary:hover {
	background: var(--paper);
	border-color: var(--paper);
}
.sp-media-kit .sp-cta-ghost {
	color: var(--paper);
	border-color: rgba(255,255,255,0.4);
}
.sp-media-kit .sp-cta-ghost:hover {
	background: var(--paper);
	color: var(--ink);
	border-color: var(--paper);
}
.sp-mk-trust {
	display: flex;
	gap: 24px;
	justify-content: center;
	flex-wrap: wrap;
	font-family: 'JetBrains Mono', monospace;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--gold);
}

/* CURRENT SPONSOR (refresh) */
.sp-current { margin-bottom: 64px; text-align: center; }
.sp-current-card {
	background: var(--paper-2);
	border-left: 4px solid var(--gold);
	padding: 40px 48px;
	max-width: 720px;
	margin: 12px auto 0;
	text-align: left;
}
.sp-card-tag {
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--red-bright);
	font-weight: 700;
	margin-bottom: 12px;
}
.sp-card-name {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 40px;
	line-height: 1;
	text-transform: uppercase;
	margin-bottom: 14px;
}
.sp-card-blurb {
	font-family: 'Source Serif 4', serif;
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 22px;
}
.sp-card-cta {
	display: inline-block;
	padding: 12px 22px;
	background: var(--ink);
	color: var(--paper);
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	transition: background 0.2s;
}
.sp-card-cta:hover { background: var(--red-bright); }

/* Extra content (admin-editable WP body) */
.sp-extra-content {
	max-width: 760px;
	margin: 0 auto 48px;
	font-family: 'Source Serif 4', serif;
	font-size: 16px;
	line-height: 1.65;
}

/* Footer "Become a Sponsor" highlight */
.footer-sponsor-cta {
	color: var(--gold) !important;
	font-weight: 700;
}

/* Responsive */
@media (max-width: 980px) {
	.sp-why-grid, .sp-tier-grid, .sp-demo-grid, .sp-how-grid {
		grid-template-columns: 1fr;
	}
	.sp-tier-card.sp-tier-featured { transform: scale(1); }
	.sp-hero { padding: 40px 20px; }
	.sp-problem { padding: 48px 24px; }
	.sp-how, .sp-media-kit { padding: 48px 24px; }
	.sp-current-card { padding: 32px 24px; }
}
@media (max-width: 640px) {
	.sp-demo-grid { grid-template-columns: 1fr 1fr; }
	.sp-hero-cta-row, .sp-mk-actions { flex-direction: column; align-items: stretch; }
	.sp-hero-cta-row a, .sp-mk-actions a { text-align: center; justify-content: center; }
}

/* ============================================================
   CINEMATIC VIDEO HERO
   ============================================================ */
.video-hero {
	position: relative;
	min-height: 75vh;
	max-height: 820px;
	overflow: hidden;
	background: var(--black);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--paper);
}
.vh-media {
	position: absolute;
	inset: 0;
	overflow: hidden;
	z-index: 1;
}
.vh-video {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	object-fit: cover;
	z-index: 1;
	pointer-events: none;
}
.vh-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background:
		radial-gradient(ellipse at center, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.7) 100%),
		linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.85) 100%);
}
.vh-overlay::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,0.06) 3px, rgba(0,0,0,0.06) 4px);
	pointer-events: none;
}

.vh-content {
	position: relative;
	z-index: 3;
	width: 100%;
	text-align: center;
	padding: 80px 0 100px;
	animation: vhFadeIn 0.9s ease;
}
@keyframes vhFadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}
.vh-eyebrow {
	font-family: 'JetBrains Mono', monospace;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	color: var(--gold);
	font-weight: 700;
	margin-bottom: 22px;
}
.vh-headline {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: clamp(40px, 7vw, 96px);
	line-height: 0.95;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	margin-bottom: 22px;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	color: var(--paper);
	text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.vh-subhead {
	font-family: 'Source Serif 4', serif;
	font-size: clamp(16px, 1.4vw, 20px);
	line-height: 1.5;
	max-width: 720px;
	margin: 0 auto 36px;
	color: rgba(250,247,242,0.92);
	text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.vh-cta-row {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 40px;
}
.vh-cta-primary, .vh-cta-ghost, .vh-cta-patreon {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 32px;
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	transition: all 0.2s;
	border: 2px solid;
	cursor: pointer;
}
.vh-cta-primary {
	background: var(--red-bright);
	color: white;
	border-color: var(--red-bright);
	box-shadow: 0 8px 24px rgba(200,16,46,0.35);
}
.vh-cta-primary:hover {
	background: white;
	color: var(--red-bright);
	border-color: white;
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(200,16,46,0.45);
}
.vh-cta-patreon {
	background: #F96854;
	color: white;
	border-color: #F96854;
	box-shadow: 0 8px 24px rgba(249,104,84,0.35);
}
.vh-cta-patreon:hover {
	background: white;
	color: #E03A45;
	border-color: white;
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(249,104,84,0.5);
}
.vh-cta-ghost {
	background: rgba(255,255,255,0.04);
	color: var(--paper);
	border-color: rgba(255,255,255,0.4);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}
.vh-cta-ghost:hover {
	background: var(--paper);
	color: var(--ink);
	border-color: var(--paper);
	transform: translateY(-2px);
}

.vh-trust-bar {
	display: inline-flex;
	gap: 18px;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	padding: 14px 24px;
	background: rgba(0,0,0,0.4);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 4px;
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(250,247,242,0.85);
}
.vh-trust-bar strong {
	color: var(--gold);
	margin-right: 4px;
}
.vh-divider {
	width: 1px;
	height: 14px;
	background: rgba(255,255,255,0.15);
}

.vh-scroll-cue {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: rgba(250,247,242,0.6);
	font-weight: 700;
	transition: color 0.2s;
	animation: vhBounce 2.4s ease-in-out infinite;
	cursor: pointer;
}
.vh-scroll-cue:hover { color: var(--gold); }
@keyframes vhBounce {
	0%, 100% { transform: translateX(-50%) translateY(0); }
	50% { transform: translateX(-50%) translateY(6px); }
}

/* LATEST DROP STRIP (under video hero) */
.latest-drop {
	background: var(--paper);
	padding: 48px 0;
	border-bottom: 1px solid rgba(0,0,0,0.08);
}
.ld-grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 40px;
	align-items: center;
}
.ld-thumb {
	aspect-ratio: 16 / 10;
	background: var(--ink);
	position: relative;
	overflow: hidden;
	border-left: 4px solid var(--red-bright);
}
.ld-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s;
}
.ld-thumb:hover img { transform: scale(1.04); }
.ld-thumb-fallback {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--red-dark), var(--red), var(--black));
}
.ld-thumb-play {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	width: 64px; height: 64px;
	border-radius: 50%;
	background: var(--paper);
	display: flex;
	align-items: center;
	justify-content: center;
}
.ld-thumb-play::before {
	content: '';
	width: 0; height: 0;
	border-left: 18px solid var(--black);
	border-top: 11px solid transparent;
	border-bottom: 11px solid transparent;
	margin-left: 5px;
}
.ld-eyebrow {
	display: flex;
	gap: 10px;
	align-items: center;
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--red-bright);
	font-weight: 700;
	margin-bottom: 12px;
}
.ld-pulse {
	width: 8px; height: 8px;
	background: var(--red-bright);
	border-radius: 50%;
	animation: pulse 1.5s ease-in-out infinite;
}
.ld-divider { color: var(--muted); }
.ld-title {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: clamp(28px, 3vw, 42px);
	line-height: 1.05;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	margin-bottom: 14px;
}
.ld-deck {
	font-family: 'Source Serif 4', serif;
	font-size: 17px;
	line-height: 1.5;
	color: var(--ink);
	margin-bottom: 18px;
	max-width: 620px;
}
.ld-meta {
	display: flex;
	gap: 16px;
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--muted);
	margin-bottom: 22px;
	flex-wrap: wrap;
}
.ld-meta strong { color: var(--red-bright); }
.ld-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.latest-drop .vh-cta-primary {
	box-shadow: 0 4px 12px rgba(200,16,46,0.2);
}
.latest-drop .vh-cta-ghost {
	background: transparent;
	color: var(--ink);
	border-color: var(--ink);
}
.latest-drop .vh-cta-ghost:hover {
	background: var(--ink);
	color: var(--paper);
}

/* RESPONSIVE */
@media (max-width: 980px) {
	.video-hero {
		min-height: 80vh;
	}
	.vh-content { padding: 60px 0 80px; }
	.vh-trust-bar {
		gap: 10px;
		padding: 12px 16px;
		font-size: 10px;
	}
	.vh-divider { display: none; }
	.ld-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 640px) {
	.video-hero { min-height: 70vh; }
	.vh-cta-row { flex-direction: column; align-items: stretch; padding: 0 24px; }
	.vh-cta-primary, .vh-cta-ghost { justify-content: center; }
	.vh-scroll-cue { bottom: 12px; }
}

/* ============================================================
   UNIFIED NAV BAR (consolidated masthead + primary)
   Logo · Links · Social Icons + Discord CTA
   ============================================================ */

/* Hide the old separate masthead since the logo lives in the nav now */
.masthead { display: none !important; }

/* Override the primary nav to be taller and fit a logo */
.unified-nav {
	background: var(--black);
	border-top: 3px solid var(--red-bright);
	border-bottom: 1px solid rgba(255,255,255,0.06);
	position: sticky;
	top: 0;
	z-index: 100;
}
.unified-nav .nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 76px;
	gap: 24px;
}

/* Logo */
.nav-logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo img {
	height: 56px;
	width: auto;
	display: block;
}
.nav-logo .custom-logo-link img,
.nav-logo .custom-logo {
	height: 56px;
	width: auto;
	display: block;
}

/* Nav links — center, take available space */
.unified-nav .nav-links {
	display: flex;
	list-style: none;
	gap: 0;
	height: 100%;
	flex: 1;
	justify-content: center;
}
.unified-nav .nav-links li { height: 76px; }
.unified-nav .nav-links a {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 14px;
	color: var(--paper);
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: color 0.2s;
	border-bottom: 3px solid transparent;
	white-space: nowrap;
}
.unified-nav .nav-links a:hover,
.unified-nav .nav-links a.active,
.unified-nav .nav-links .current-menu-item a {
	color: var(--red-bright);
	border-bottom-color: var(--red-bright);
}

/* CTA cluster — social icons + Discord button */
.unified-nav .nav-cta {
	display: flex;
	gap: 16px;
	align-items: center;
	flex-shrink: 0;
}
.unified-nav .nav-socials {
	display: flex;
	align-items: center;
	gap: 4px;
	padding-right: 14px;
	border-right: 1px solid rgba(255,255,255,0.1);
}
.unified-nav .nav-socials .social-icon {
	width: 38px;
	height: 38px;
	color: var(--paper);
	border-radius: 4px;
	transition: all 0.2s;
}
.unified-nav .nav-socials .social-icon:hover {
	background: rgba(255,255,255,0.06);
	transform: translateY(-1px);
}
.unified-nav .nav-socials .social-youtube:hover { color: #FF0000; background: rgba(255,0,0,0.08); }
.unified-nav .nav-socials .social-x:hover { color: var(--paper); background: rgba(255,255,255,0.1); }
.unified-nav .nav-socials .social-discord:hover { color: var(--discord); background: rgba(88,101,242,0.12); }

.nav-discord-btn {
	background: var(--red-bright);
	border-color: var(--red-bright);
	color: white !important;
	padding: 10px 18px !important;
	font-size: 12px !important;
	letter-spacing: 0.12em !important;
}
.nav-discord-btn:hover {
	background: white !important;
	color: var(--red-bright) !important;
	border-color: white !important;
}

/* Mobile menu toggle */
.nav-mobile-toggle {
	display: none;
	background: transparent;
	border: 0;
	width: 40px;
	height: 40px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	cursor: pointer;
	padding: 0;
}
.nav-mobile-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--paper);
	transition: all 0.3s;
}
.nav-mobile-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* RESPONSIVE */
@media (max-width: 1180px) {
	.unified-nav .nav-links a { padding: 0 10px; font-size: 12px; }
	.unified-nav .nav-socials { padding-right: 10px; }
	.unified-nav .nav-socials .social-icon { width: 34px; height: 34px; }
}

@media (max-width: 980px) {
	.nav-mobile-toggle { display: flex; }
	.unified-nav .nav-inner { gap: 12px; }
	.unified-nav .nav-links {
		display: none;
		position: absolute;
		top: 76px;
		left: 0; right: 0;
		width: 100%;
		flex-direction: column !important;
		flex-wrap: nowrap !important;
		align-items: stretch !important;
		justify-content: flex-start !important;
		background: #0A0A0A !important;
		background-color: #0A0A0A !important;
		padding: 8px 0 16px;
		border-bottom: 3px solid var(--red-bright);
		box-shadow: 0 16px 40px rgba(0,0,0,0.6);
		z-index: 9999;
		height: auto !important;
		max-height: none !important;
		overflow: visible !important;
		-webkit-backdrop-filter: none !important;
		backdrop-filter: none !important;
		opacity: 1 !important;
	}
	.unified-nav .nav-links.is-open {
		display: flex !important;
		flex-direction: column !important;
		height: auto !important;
		max-height: none !important;
		overflow: visible !important;
	}
	.unified-nav .nav-links li {
		height: auto !important;
		width: 100%;
		flex: 0 0 auto;
		background: #0A0A0A;
	}
	.unified-nav .nav-links a {
		display: flex;
		height: auto !important;
		width: 100%;
		padding: 16px 24px;
		border-bottom: 1px solid rgba(255,255,255,0.08);
		justify-content: flex-start;
		align-items: center;
		background: #0A0A0A;
		color: #fff;
		font-size: 15px;
	}
	.nav-discord-btn { display: none; }
	.unified-nav .nav-socials { border-right: 0; padding-right: 0; }
}

@media (max-width: 540px) {
	.unified-nav .nav-inner { height: 64px; }
	.unified-nav .nav-links { top: 64px; }
	.unified-nav .nav-links li { height: auto; }
	.nav-logo img,
	.nav-logo .custom-logo-link img,
	.nav-logo .custom-logo { height: 44px; }
	.unified-nav .nav-socials .social-icon { width: 32px; height: 32px; }
}

/* ============================================================
   HERO WORDMARK (overlaid on video)
   ============================================================ */
.vh-wordmark {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	line-height: 0.9;
	color: var(--paper);
	margin: 0 auto 24px;
	text-shadow: 0 4px 40px rgba(0,0,0,0.6), 0 1px 0 rgba(0,0,0,0.4);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}
.vh-wordmark .vh-wm-line {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	white-space: nowrap;
	line-height: 0.9;
}
.vh-wordmark .vh-wm-tusk,
.vh-wordmark .vh-wm-talk {
	display: inline;
	font-size: clamp(72px, 12vw, 180px);
	line-height: 0.9;
}
.vh-wordmark .vh-wm-talk {
	color: var(--red-bright);
	font-style: italic;
}
.vh-wordmark .vh-wm-dot {
	color: var(--gold);
	font-size: clamp(72px, 12vw, 180px);
	line-height: 0.9;
	margin: 0 18px;
	transform: translateY(-10%);
	display: inline-block;
}
.vh-wordmark .vh-wm-with {
	display: block;
	font-family: 'Source Serif 4', serif;
	font-style: italic;
	font-weight: 400;
	font-size: clamp(18px, 1.6vw, 26px);
	letter-spacing: 0.08em;
	color: var(--gold);
	text-transform: none;
	margin-top: 4px;
	opacity: 0.95;
}

@media (max-width: 640px) {
	.vh-wordmark { gap: 6px; margin-bottom: 18px; }
	.vh-wordmark .vh-wm-dot { margin: 0 10px; }
}

/* ============================================================
   MOBILE OVERFLOW / PAGE-SHIFT FIXES
   ============================================================ */

/* Global guard — nothing can push the page wider than the screen */
html, body {
	max-width: 100%;
	overflow-x: hidden;
}
* { min-width: 0; }

/* Wordmark: allow it to scale down and wrap so it never exceeds viewport */
@media (max-width: 640px) {
	.vh-wordmark .vh-wm-tusk,
	.vh-wordmark .vh-wm-talk,
	.vh-wordmark .vh-wm-dot {
		font-size: clamp(44px, 16vw, 80px);
	}
	.vh-wordmark .vh-wm-dot { margin: 0 6px; }
	.vh-wordmark .vh-wm-line {
		flex-wrap: nowrap;
		max-width: 100%;
	}
	/* Trust bar wraps instead of forcing one wide row */
	.vh-trust-bar {
		flex-wrap: wrap;
		justify-content: center;
		row-gap: 8px;
		max-width: 100%;
		padding: 0 16px;
	}
	/* Container padding tighter on phones */
	.container { padding: 0 18px; }
	/* Hero content never exceeds screen */
	.vh-content, .vh-subhead, .vh-cta-row {
		max-width: 100%;
	}
	.vh-cta-row { padding: 0 16px; }
}

/* Extra-small phones */
@media (max-width: 400px) {
	.vh-wordmark .vh-wm-tusk,
	.vh-wordmark .vh-wm-talk,
	.vh-wordmark .vh-wm-dot {
		font-size: clamp(38px, 15vw, 64px);
	}
}
