:root {
	--bg: #0f0e0e;
	--surface: #171616;
	--text: #f5f5f5;
	--muted: #c8c8c8;
	--accent: #ffc72c; /* bolt yellow */
	--accent-2: #ff9900;
	--ring: rgba(255, 199, 44, 0.35);
	--maxw: 1100px;
	--glow: 0 0 24px rgba(255, 199, 44, 0.35), 0 0 60px rgba(255, 153, 0, 0.18);
}

* { 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, sans-serif;
	color: var(--text);
	background:
		radial-gradient(1200px 600px at 20% -10%, #1b1a1a 0%, transparent 45%) no-repeat,
		radial-gradient(800px 400px at 80% 10%, #191717 0%, transparent 60%) no-repeat,
		repeating-linear-gradient(0deg, rgba(255,199,44,0.05) 0 2px, transparent 2px 40px),
		repeating-linear-gradient(90deg, rgba(255,199,44,0.04) 0 2px, transparent 2px 40px),
		var(--bg);
	line-height: 1.6;
	background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, auto;
	animation: bg-shift 30s linear infinite;
}

.container {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 20px;
}

.site-header {
	border-bottom: 1px solid #221f1f;
	background: linear-gradient(180deg, #141313, #111010);
}

.header-inner {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 28px 0;
}

.logo-wrap { position: relative; width: 96px; display: grid; place-items: center; }
.logo { width: 96px; height: auto; filter: drop-shadow(0 6px 18px rgba(0,0,0,0.4)); z-index: 1; }
.logo-wrap::before {
	content: "";
	position: absolute;
	inset: -10px;
	border-radius: 50%;
	background: conic-gradient(var(--accent), var(--accent-2), var(--accent));
	-webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 8px), #000 0);
	mask: radial-gradient(farthest-side, transparent calc(100% - 8px), #000 0);
	box-shadow: var(--glow);
	animation: spin 14s linear infinite;
}
.logo-wrap::after {
	content: "";
	position: absolute;
	inset: -24px;
	border-radius: 50%;
	background: radial-gradient(closest-side, rgba(255,199,44,0.2), rgba(255,153,0,0.08), transparent 70%);
	filter: blur(6px);
	opacity: .9;
	animation: pulse 3.5s ease-in-out infinite;
}

.title-group h1 {
	margin: 0;
	font-size: 1.9rem;
	letter-spacing: 0.02em;
}
.electric-text {
	background: linear-gradient(90deg, #fff 0%, #ffe9a1 35%, #fff 70%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-shadow: 0 0 20px rgba(255,199,44,0.15);
}

.tagline {
	margin: 4px 0 0;
	color: var(--muted);
	font-weight: 500;
}

main { padding: 28px 0 56px; }

.card {
	background: var(--surface);
	border: 1px solid #242222;
	border-radius: 14px;
	padding: 22px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.25);
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-2px); border-color: #2e2a2a; box-shadow: 0 18px 40px rgba(0,0,0,0.35); }

.intro h2 { margin-top: 0; font-size: 1.6rem; }

.pill-list {
	list-style: none;
	padding: 0;
	margin: 16px 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.pill-list li {
	background: #1e1c1c;
	border: 1px solid #2a2727;
	border-radius: 999px;
	padding: 8px 14px;
	font-weight: 600;
	color: #f2f2f2;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 18px;
	margin-top: 18px;
}

.person h3 { margin: 0 0 8px; font-size: 1.25rem; }
.person .role { margin: 0; color: var(--muted); }
.person .focus { margin: 6px 0 10px; color: #e7e7e7; font-weight: 600; }
.person .contact { margin: 0; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.cta { margin-top: 18px; text-align: center; }

.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 12px 0; }

.btn {
	border: 1px solid #2a2727;
	background: #1e1c1c;
	color: var(--text);
	padding: 10px 16px;
	border-radius: 10px;
	font-weight: 700;
	box-shadow: 0 8px 20px rgba(0,0,0,0.25);
	position: relative;
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease;
}
.btn::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.18) 50%, rgba(255,255,255,0) 70%);
	transform: translateX(-120%);
	transition: transform .6s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 14px 26px rgba(0,0,0,0.35); }
.btn:hover::after { transform: translateX(120%); }

.btn.primary {
	background: linear-gradient(180deg, var(--accent), var(--accent-2));
	color: #1a1200;
	border-color: rgba(255, 199, 44, 0.25);
	text-shadow: 0 1px 0 rgba(255,255,255,0.4);
	box-shadow: var(--glow);
}

.btn:focus-visible { outline: 3px solid var(--ring); outline-offset: 2px; }

.licensing { color: var(--muted); margin: 8px 0 0; }

.site-footer { border-top: 1px solid #221f1f; color: var(--muted); padding: 18px 0; text-align: center; }

::selection { background: rgba(255,199,44,0.25); color: #fff; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: .8; } 50% { opacity: .3; } }
@keyframes bg-shift { 0% { background-position: 0 0, 0 0, 0 0, 0 0, 0 0; } 100% { background-position: 20px 0, -20px 0, 0 0, 0 0, 0 0; } }

/* Responsive tweaks */
@media (min-width: 900px) {
	.header-inner { padding: 36px 0; }
	.logo-wrap, .logo { width: 120px; }
	.title-group h1 { font-size: 2.2rem; }
	.intro { padding: 28px; }
}

@media (prefers-reduced-motion: reduce) {
	body { animation: none; }
	.logo-wrap::before, .logo-wrap::after { animation: none; }
	.btn::after { transition: none; }
	.card { transition: none; }
}

