:root {
	--bg: #0b0f0c;
	--panel: #111714;
	--text: #e5f0e9;
	--muted: #a9b7af;
	--accent: #39ff14;
	--accent-2: #2bdc0d;
	--border: #1c241f;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
	margin: 0;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
}

/* Fundraising banner */
.fundraising-banner {
	position: sticky;
	top: 0;
	z-index: 20;
	background: var(--panel);
	border-bottom: 1px solid var(--border);
	box-shadow: 0 2px 0 rgba(255, 255, 255, 0.04);
}
.fundraising-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 0;
}
.fundraising-inner strong { color: var(--text); letter-spacing: 0.2px; }
.fundraising-cta { white-space: nowrap; }

.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}

.site-header {
	position: sticky;
	top: 0;
	background: var(--bg);
	border-bottom: 1px solid var(--border);
	z-index: 10;
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
}
.brand {
	font-weight: 700;
	letter-spacing: 0.5px;
	color: var(--accent);
	display: flex;
	align-items: center;
	gap: 10px;
}
.brand .logo {
	height: 40px;
	width: auto;
	display: block;
}
.nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px;
}
.nav a {
	color: var(--text);
	text-decoration: none;
	margin-left: 8px;
	padding: 8px 8px;
	border-radius: 6px;
	transition: background 120ms ease;
	white-space: nowrap;
	font-size: 14px;
}
.nav a:hover { background: var(--panel); }
.nav .cta { border: 1px solid var(--accent); color: var(--accent); }

.hero {
	background: radial-gradient(800px 400px at 20% 0%, rgba(57,255,20,0.08), transparent 60%),
		radial-gradient(600px 400px at 80% 10%, rgba(43,220,13,0.06), transparent 60%);
	border-bottom: 1px solid var(--border);
	padding: 64px 0 48px;
	text-align: center;
}
.hero-logo {
	display: block;
	margin: 0 auto 14px;
	width: clamp(160px, 26vw, 320px);
	height: auto;
}
.hero h1 {
	font-size: clamp(28px, 4vw, 42px);
	margin: 0 0 10px;
}
.tagline { color: var(--muted); margin: 0 auto 18px; max-width: 800px; }
.hero-ctas { display: flex; gap: 12px; justify-content: center; }

.section { padding: 40px 0; }
.section.alt { background: var(--panel); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section h2 { margin: 0 0 8px; font-size: 24px; }
.section-sub { color: var(--muted); margin-top: 0; }
.narrative {
	color: var(--muted);
	max-width: 900px;
	font-size: 18px;
	line-height: 1.7;
	text-wrap: pretty;
	margin-top: 6px;
}
.narrative p { margin: 0 0 12px; }
.role-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 14px;
	margin-top: 8px;
}
.role-card {
	border: 1px solid var(--border);
	background: #0d1411;
	border-radius: 10px;
	padding: 14px 14px 8px;
}
.role-card h4 { margin: 0 0 6px; }

.video-container {
	position: relative;
	width: 100%;
	padding-top: 56.25%; /* 16:9 */
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--border);
	background: #000;
}
.video-container iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 16px;
	margin-top: 20px;
}
.gallery figure {
	margin: 0;
	border: 1px solid var(--border);
	border-radius: 10px;
	overflow: hidden;
	background: #0d1411;
}
.gallery img { display: block; width: 100%; height: 180px; object-fit: cover; }
.gallery figcaption { padding: 8px 10px; color: var(--muted); font-size: 14px; }
.placeholder .ph-box {
	height: 180px;
	display: grid;
	place-items: center;
	color: var(--muted);
	background: repeating-conic-gradient(from 45deg, #0f1713 0 10deg, #0c120f 10deg 20deg);
}
.placeholder .ph-box span { color: var(--accent); }

.feature-list {
	margin: 10px 0 0;
	padding: 0 0 0 18px;
}
.feature-list li { margin-bottom: 8px; }

code { background: #0f1512; border: 1px solid var(--border); color: var(--accent); padding: 1px 6px; border-radius: 6px; }

.button {
	appearance: none;
	border: 1px solid var(--border);
	background: transparent;
	color: var(--text);
	padding: 10px 14px;
	border-radius: 8px;
	cursor: pointer;
	text-decoration: none;
	transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
}
.button:hover { background: var(--panel); }
.button.primary { border-color: var(--accent); color: var(--bg); background: var(--accent); }
.button.primary:hover { border-color: var(--accent-2); background: var(--accent-2); }

.form-row { display: grid; gap: 6px; margin: 10px 0 14px; }
label { color: var(--muted); font-size: 14px; }
input[type="email"] {
	background: #0f1512;
	border: 1px solid var(--border);
	color: var(--text);
	padding: 12px 12px;
	border-radius: 8px;
}
textarea {
	background: #0f1512;
	border: 1px solid var(--border);
	color: var(--text);
	padding: 12px 12px;
	border-radius: 8px;
	resize: vertical;
}
.form-actions { display: flex; gap: 10px; align-items: center; }
.form-message { margin-top: 10px; color: var(--accent); }
.hidden { position: absolute; left: -10000px; }

.site-footer { border-top: 1px solid var(--border); padding: 24px 0; color: var(--muted); }
.small { font-size: 13px; }

@media (max-width: 900px) {
	.header-inner { height: auto; padding: 12px 0; gap: 10px; flex-wrap: wrap; }
	.nav { display: flex; flex-wrap: wrap; gap: 6px; padding-left: 12px; }
	.nav a { margin-left: 0; font-size: 13px; padding: 6px 7px; }
	.brand { padding-left: 8px; }
	.hero-ctas { flex-direction: column; }
    .fundraising-inner { flex-direction: column; align-items: stretch; }
}

@media (max-width: 600px) {
	.nav { padding-left: 16px; }
	.nav a { font-size: 12px; padding: 5px 6px; }
	.brand { padding-left: 12px; }
}

/* Lightbox */
.lightbox {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.9);
	z-index: 1000;
}
.lightbox.open { display: flex; }
.lb-figure { margin: 0; text-align: center; max-width: 92vw; }
.lb-figure img { max-width: 92vw; max-height: 86vh; border-radius: 10px; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.lb-figure figcaption { margin-top: 10px; color: var(--muted); }
.lb-close, .lb-prev, .lb-next {
	position: absolute;
	appearance: none;
	background: rgba(17, 23, 20, 0.85);
	border: 1px solid var(--border);
	color: var(--text);
	width: 40px;
	height: 40px;
	border-radius: 999px;
	cursor: pointer;
	font-size: 24px;
	line-height: 36px;
	text-align: center;
}
.lb-close { top: 16px; right: 16px; }
.lb-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 16px; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(17, 23, 20, 0.95); }


