:root {
	color-scheme: dark;

	/* Brand palette */
	--pc-green-dark: #013220;
	--pc-brown: #5d4037;
	--pc-blue: #4682b4;
	--pc-tan: #d2b48c;
	--pc-blue-light: #add8e6;

	/* Switched to blue/grey base */
	--pc-bg: #050816;
	--pc-bg-elevated: #0a1225;
	--pc-bg-soft: #11182f;

	--pc-text: #eaf7f8;
	--pc-text-muted: #9ba6c1;

	--pc-radius-xl: 1.75rem;
	--pc-radius-lg: 1.2rem;
	--pc-radius-md: 0.75rem;

	--pc-border-subtle: rgba(173, 216, 230, 0.2);
	--pc-shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.8);

	--pc-transition-fast: 170ms ease-out;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	background:
		radial-gradient(circle at top, #101836 0, transparent 55%),
		radial-gradient(circle at bottom, #050816 0, transparent 55%),
		var(--pc-bg);
	color: var(--pc-text);
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	scroll-behavior: smooth;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

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

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

.page {
	max-width: 1248px;
	margin: 0 auto;
	padding: 1.5rem 1.25rem 4rem;
}

@media (min-width: 1024px) {
	.page {
		padding: 1.75rem 1.5rem 4.5rem;
	}
}

/* ========== HEADER ========== */

.nav {
	position: sticky;
	top: 0;
	z-index: 40;
	margin-bottom: 2.5rem;
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.7rem 1.1rem;
	border-radius: 999px;
	background: linear-gradient(135deg,
			rgba(5, 8, 22, 0.96),
			rgba(10, 18, 37, 0.96));
	border: 1px solid rgba(70, 130, 180, 0.35);
	backdrop-filter: blur(18px);
	box-shadow: 0 16px 50px rgba(0, 0, 0, 0.7);
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.logo-mark {
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: url('./logo.png');
	/* radial-gradient(circle at 30% 20%, var(--pc-blue-light), var(--pc-blue) 55%, #000 100%); */
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 0 1px rgba(173, 216, 230, 0.25);
}

.logo-mark-inner {
	width: 18px;
	height: 18px;
	border-radius: 4px;
	border: 3px solid #fff;
	border-bottom-color: transparent;
	border-right-color: transparent;
	transform: rotate(-45deg);
}

.logo-text-main {
	font-family: "Press Start 2P", system-ui, sans-serif;
	font-size: 0.7rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.2;
}

.logo-text-main span {
	color: var(--pc-blue-light);
}

.logo-sub {
	font-size: 0.7rem;
	color: var(--pc-text-muted);
}

.logo-stack {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.nav-links {
	display: none;
	align-items: center;
	gap: 1.25rem;
	font-size: 0.85rem;
	color: var(--pc-text-muted);
}

.nav-link {
	position: relative;
	padding-block: 0.15rem;
	border: none;
	background: none;
	color: inherit;
	font: inherit;
	cursor: pointer;
}

.nav-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -0.25rem;
	width: 0;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--pc-blue), var(--pc-blue-light));
	transition: width var(--pc-transition-fast);
}

.nav-link:hover::after {
	width: 100%;
}

@media (min-width: 768px) {
	.nav-links {
		display: flex;
	}
}

.btn {
	border-radius: 999px;
	border: 1px solid transparent;
	padding: 0.55rem 1rem;
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	transition:
		background var(--pc-transition-fast),
		transform var(--pc-transition-fast),
		box-shadow var(--pc-transition-fast),
		border-color var(--pc-transition-fast),
		color var(--pc-transition-fast);
}

.btn-primary {
	background: linear-gradient(135deg, var(--pc-blue), var(--pc-blue-light));
	color: #031014;
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7);
}

.btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.8);
}

.btn-outline {
	background: transparent;
	color: var(--pc-blue-light);
	border-color: rgba(173, 216, 230, 0.4);
}

.btn-outline:hover {
	background: rgba(16, 28, 55, 0.9);
	border-color: rgba(173, 216, 230, 0.7);
}

.btn-sm {
	padding: 0.4rem 0.85rem;
	font-size: 0.8rem;
}

.btn-lg {
	padding: 0.7rem 1.3rem;
	font-size: 0.9rem;
}

/* Simple icon circles using emoji */
.btn-icon-circle {
	width: 18px;
	height: 18px;
	border-radius: 999px;
	background: rgba(3, 17, 20, 0.8);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.6rem;
}

/* ========== HERO ========== */

.hero {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr);
	gap: 2rem;
	align-items: center;
	margin-bottom: 3.5rem;
}

@media (min-width: 900px) {
	.hero {
		grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
		gap: 2.75rem;
	}
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.25rem 0.9rem;
	border-radius: 999px;
	border: 1px solid rgba(173, 216, 230, 0.4);
	background: rgba(10, 18, 37, 0.9);
	font-size: 0.7rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--pc-text-muted);
	margin-bottom: 1rem;
}

.eyebrow-dot {
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: radial-gradient(circle, var(--pc-blue-light), var(--pc-blue));
	box-shadow: 0 0 10px rgba(173, 216, 230, 0.9);
}

.hero-title {
	margin: 0 0 0.9rem;
	font-size: clamp(2.3rem, 3.2vw + 1.5rem, 3.4rem);
	line-height: 1.05;
	letter-spacing: -0.04em;
	font-family: "Press Start 2P", system-ui, sans-serif;
	text-transform: uppercase;
}

.hero-title span {
	background: linear-gradient(110deg, var(--pc-blue-light), var(--pc-blue));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero-subtitle {
	margin: 0 0 1.5rem;
	font-size: 0.97rem;
	line-height: 1.7;
	color: var(--pc-text-muted);
	max-width: 34rem;
}

.hero-subtitle strong {
	color: var(--pc-blue-light);
	font-weight: 600;
}

.hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	align-items: center;
	margin-bottom: 1.4rem;
}

.hero-note {
	font-size: 0.8rem;
	color: var(--pc-text-muted);
}

.hero-note strong {
	color: var(--pc-blue-light);
	font-weight: 600;
}

.hero-highlights {
	list-style: none;
	margin: 1.2rem 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0.5rem;
	font-size: 0.85rem;
	color: var(--pc-text-muted);
}

.hero-highlight {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.hero-highlight-icon {
	width: 22px;
	height: 22px;
	border-radius: 999px;
	background: rgba(10, 18, 37, 0.9);
	border: 1px solid rgba(173, 216, 230, 0.35);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
}

/* Hero visual card */

.hero-aside {
	position: relative;
}

.hero-bg {
	position: absolute;
	inset: -8%;
	background-image: url("./discord-invite-background.png");
	background-size: cover;
	background-position: center;
	filter: blur(8px) brightness(0.7);
	opacity: 0.5;
	z-index: -2;
	border-radius: var(--pc-radius-xl);
}

.hero-aside-overlay {
	position: absolute;
	inset: 0;
	border-radius: var(--pc-radius-xl);
	background: radial-gradient(circle at top, rgba(0, 0, 0, 0.45), rgba(4, 8, 22, 0.85));
	z-index: -1;
}

.hero-card {
	position: relative;
	border-radius: var(--pc-radius-xl);
	border: 1px solid rgba(173, 216, 230, 0.25);
	background: linear-gradient(145deg, rgba(10, 18, 37, 0.96), rgba(17, 24, 55, 0.96));
	box-shadow: var(--pc-shadow-soft);
	padding: 1.25rem 1.25rem 1.3rem;
	overflow: hidden;
}

.hero-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.8rem;
	color: var(--pc-text-muted);
	margin-bottom: 1rem;
}

.window-dots {
	display: inline-flex;
	gap: 0.35rem;
}

.window-dot {
	width: 7px;
	height: 7px;
	border-radius: 999px;
}

.window-dot.red {
	background: #ea6656;
}

.window-dot.amber {
	background: #f4b548;
}

.window-dot.green {
	background: #3ad97b;
}

.pill {
	border-radius: 999px;
	border: 1px solid rgba(173, 216, 230, 0.5);
	padding: 0.1rem 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.68rem;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	background: rgba(5, 8, 22, 0.9);
}

.pill-dot {
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: radial-gradient(circle, #3ad97b, #0a6b35);
	box-shadow: 0 0 12px rgba(58, 217, 123, 0.9);
}

.hero-card-header {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: flex-start;
}

.hero-card-title {
	font-size: 0.95rem;
	font-weight: 600;
}

.hero-card-title span {
	color: var(--pc-blue-light);
}

.hero-card-sub {
	font-size: 0.75rem;
	color: var(--pc-text-muted);
}

.hero-card-tag {
	border-radius: 999px;
	background: rgba(93, 73, 89, 0.9);
	padding: 0.2rem 0.65rem;
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.hero-card-grid {
	margin-top: 0.85rem;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
}

.hero-stat {
	border-radius: var(--pc-radius-md);
	background: rgba(8, 16, 32, 0.95);
	border: 1px solid rgba(173, 216, 230, 0.3);
	padding: 0.7rem 0.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.hero-stat-label {
	font-size: 0.65rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--pc-text-muted);
}

.hero-stat-value {
	font-size: 1rem;
	font-weight: 600;
}

.hero-stat-meta {
	font-size: 0.72rem;
	color: var(--pc-blue-light);
}

.hero-card-footer {
	margin-top: 0.9rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.78rem;
}

.hero-status {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--pc-text-muted);
}

.hero-status-dot {
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: radial-gradient(circle, #3ad97b, #0a6b35);
	box-shadow: 0 0 12px rgba(58, 217, 123, 0.9);
}

.hero-copy-pill {
	border-radius: 999px;
	border: 1px dashed rgba(173, 216, 230, 0.45);
	background: rgba(5, 8, 22, 0.9);
	padding: 0.35rem 0.7rem;
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	cursor: pointer;
	font-size: 0.78rem;
}

.hero-copy-pill span:first-child {
	color: var(--pc-text-muted);
	font-size: 0.72rem;
}

.hero-copy-pill span:last-child {
	color: var(--pc-blue-light);
	font-weight: 600;
	font-size: 0.8rem;
}

/* ========== SECTIONS ========== */

.section {
	margin-bottom: 3.5rem;
}

.section-header {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin-bottom: 1.75rem;
}

.section-eyebrow {
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--pc-blue-light);
}

.section-title {
	font-size: 1.45rem;
	letter-spacing: -0.02em;
	font-weight: 600;
}

.section-body {
	font-size: 0.9rem;
	color: var(--pc-text-muted);
	max-width: 38rem;
}

.section-body strong {
	color: var(--pc-blue-light);
	font-weight: 600;
}

.grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1rem;
}

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

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

.card {
	border-radius: var(--pc-radius-lg);
	background: linear-gradient(145deg, var(--pc-bg-elevated), var(--pc-bg-soft));
	border: 1px solid var(--pc-border-subtle);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75);
	padding: 1rem 1.1rem 1.2rem;
}

.feature-icon {
	width: 32px;
	height: 32px;
	border-radius: 0.9rem;
	background: rgba(70, 130, 180, 0.16);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.4rem;
	font-size: 0.9rem;
}

.feature-title {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.15rem;
}

.feature-body {
	font-size: 0.87rem;
	color: var(--pc-text-muted);
}

.feature-meta {
	margin-top: 0.5rem;
	font-size: 0.78rem;
	color: var(--pc-blue-light);
}

/* Streamers */

.streamers-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1.5rem;
	align-items: start;
}

@media (min-width: 900px) {
	.streamers-layout {
		grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	}
}

.callout {
	border-radius: var(--pc-radius-lg);
	border: 1px solid rgba(173, 216, 230, 0.5);
	background: linear-gradient(140deg,
			rgba(10, 24, 55, 0.97),
			rgba(9, 16, 40, 0.97));
	padding: 0.9rem 1rem;
	font-size: 0.86rem;
	color: var(--pc-text);
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	margin-bottom: 1rem;
}

.callout-icon {
	width: 22px;
	height: 22px;
	border-radius: 999px;
	background: rgba(10, 18, 37, 0.8);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
}

.stream-steps {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.8rem;
	font-size: 0.88rem;
	color: var(--pc-text-muted);
}

.stream-step {
	display: flex;
	gap: 0.75rem;
}

.stream-index {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	border: 1px solid rgba(173, 216, 230, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	color: var(--pc-blue-light);
	background: rgba(8, 16, 32, 0.95);
}

.stream-step-title {
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 0.1rem;
	color: var(--pc-text);
}

.chip-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-top: 1rem;
}

.chip {
	border-radius: 999px;
	padding: 0.2rem 0.55rem;
	border: 1px solid rgba(173, 216, 230, 0.5);
	background: rgba(8, 16, 32, 0.95);
	font-size: 0.72rem;
	color: var(--pc-blue-light);
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
}

/* FAQ */

.faq-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0.8rem;
}

@media (min-width: 768px) {
	.faq-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.faq-item {
	border-radius: var(--pc-radius-lg);
	border: 1px solid rgba(173, 216, 230, 0.4);
	background: rgba(10, 18, 37, 0.96);
	padding: 0.85rem 0.9rem;
}

.faq-question {
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 0.3rem;
}

.faq-answer {
	font-size: 0.85rem;
	color: var(--pc-text-muted);
}

/* Footer */

.footer {
	padding-top: 1rem;
	border-top: 1px solid rgba(173, 216, 230, 0.35);
	font-size: 0.8rem;
	color: var(--pc-text-muted);
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

@media (min-width: 768px) {
	.footer {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

.footer-right {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.footer-tagline span {
	color: var(--pc-blue-light);
}

.footer-socials {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
}

.social-pill {
	width: 30px;
	height: 30px;
	border-radius: 999px;
	border: 1px solid rgba(173, 216, 230, 0.6);
	background: rgba(10, 18, 37, 0.95);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
	cursor: pointer;
	transition:
		background var(--pc-transition-fast),
		transform var(--pc-transition-fast);
}

.social-pill:hover {
	background: rgba(17, 24, 55, 0.95);
	transform: translateY(-1px);
}

/* Toast */

.toast {
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	z-index: 60;
	padding: 0.75rem 1rem;
	border-radius: var(--pc-radius-md);
	background: rgba(10, 18, 37, 0.98);
	border: 1px solid rgba(70, 130, 180, 0.7);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.85);
	font-size: 0.8rem;
	color: var(--pc-text);
	display: flex;
	align-items: center;
	gap: 0.55rem;
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	transition:
		opacity var(--pc-transition-fast),
		transform var(--pc-transition-fast);
}

.toast-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.toast-icon {
	width: 20px;
	height: 20px;
	border-radius: 999px;
	background: rgba(17, 24, 55, 0.9);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
}

@media (max-width: 600px) {
	.toast {
		left: 1rem;
		right: 1rem;
	}
}
