:root {
	--navy: #0a1628;
	--navy-deep: #060e1c;
	--slate: #1b2a41;
	--accent: #2dd4bf;
	--accent-dim: #14b8a6;
	--text: #e6edf3;
	--text-muted: #9fb0c3;
	--line: rgba(255, 255, 255, 0.08);
	--max: 1100px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: var(--text);
	background: var(--navy-deep);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

a {
	color: var(--accent);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.container {
	width: 100%;
	max-width: var(--max);
	margin: 0 auto;
	padding: 0 24px;
}

/* Header */
header {
	position: sticky;
	top: 0;
	z-index: 10;
	background: rgba(6, 14, 28, 0.85);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 700;
	font-size: 1.15rem;
	letter-spacing: 0.5px;
	color: var(--text);
}

.brand:hover {
	text-decoration: none;
}

.brand .mark {
	width: 28px;
	height: 28px;
}

.nav-links {
	display: flex;
	gap: 32px;
	list-style: none;
}

.nav-links a {
	color: var(--text-muted);
	font-size: 0.95rem;
	font-weight: 500;
	transition: color 0.15s ease;
}

.nav-links a:hover,
.nav-links a.active {
	color: var(--text);
	text-decoration: none;
}

/* Hero */
.hero {
	position: relative;
	padding: 140px 0 120px;
	background:
		radial-gradient(1200px 500px at 70% -10%, rgba(45, 212, 191, 0.12), transparent 60%),
		linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
	overflow: hidden;
}

.hero h1 {
	font-size: clamp(2.4rem, 5vw, 3.8rem);
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: -1px;
	max-width: 720px;
}

.hero .lede {
	margin-top: 24px;
	font-size: 1.2rem;
	color: var(--text-muted);
	max-width: 620px;
}

.cta-row {
	margin-top: 40px;
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.btn {
	display: inline-block;
	padding: 13px 28px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.95rem;
	transition: transform 0.12s ease, background 0.15s ease;
}

.btn:hover {
	text-decoration: none;
	transform: translateY(-1px);
}

.btn-primary {
	background: var(--accent);
	color: var(--navy-deep);
}

.btn-primary:hover {
	background: var(--accent-dim);
}

.btn-ghost {
	border: 1px solid var(--line);
	color: var(--text);
}

.btn-ghost:hover {
	border-color: var(--accent);
}

/* Sections */
section {
	padding: 88px 0;
}

.section-label {
	color: var(--accent);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.section-title {
	font-size: clamp(1.8rem, 3.5vw, 2.6rem);
	font-weight: 700;
	letter-spacing: -0.5px;
	margin: 12px 0 20px;
}

.section-intro {
	color: var(--text-muted);
	max-width: 640px;
	font-size: 1.08rem;
}

.alt {
	background: var(--navy);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

/* Cards */
.grid {
	display: grid;
	gap: 24px;
	margin-top: 48px;
}

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

.card {
	background: var(--slate);
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 32px;
	transition: transform 0.15s ease, border-color 0.15s ease;
}

.card:hover {
	transform: translateY(-3px);
	border-color: rgba(45, 212, 191, 0.4);
}

.card .icon {
	width: 40px;
	height: 40px;
	margin-bottom: 18px;
	color: var(--accent);
}

.card h3 {
	font-size: 1.2rem;
	margin-bottom: 10px;
}

.card p {
	color: var(--text-muted);
	font-size: 0.98rem;
}

/* Stats */
.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 48px;
}

.stat {
	text-align: center;
	padding: 24px;
}

.stat .num {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	color: var(--accent);
	letter-spacing: -1px;
}

.stat .label {
	color: var(--text-muted);
	font-size: 0.95rem;
	margin-top: 6px;
}

/* Team */
.team {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 48px;
}

.member {
	background: var(--slate);
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 32px;
	text-align: center;
}

.avatar {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: 700;
	color: var(--navy-deep);
	background: linear-gradient(135deg, var(--accent), var(--accent-dim));
}

.member h3 {
	font-size: 1.25rem;
}

.member .role {
	color: var(--accent);
	font-weight: 600;
	font-size: 0.92rem;
	margin: 4px 0 14px;
}

.member p {
	color: var(--text-muted);
	font-size: 0.95rem;
}

.member .links {
	margin-top: 16px;
}

/* Prose */
.prose {
	max-width: 720px;
}

.prose p {
	color: var(--text-muted);
	font-size: 1.08rem;
	margin-bottom: 20px;
}

.prose h2 {
	margin: 40px 0 16px;
	font-size: 1.6rem;
}

/* Contact */
.contact-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	margin-top: 48px;
	align-items: start;
}

.field {
	margin-bottom: 20px;
}

.field label {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--text);
}

.field input,
.field textarea {
	width: 100%;
	padding: 12px 14px;
	background: var(--navy-deep);
	border: 1px solid var(--line);
	border-radius: 8px;
	color: var(--text);
	font-family: inherit;
	font-size: 0.98rem;
}

.field input:focus,
.field textarea:focus {
	outline: none;
	border-color: var(--accent);
}

.contact-info p {
	color: var(--text-muted);
	margin-bottom: 16px;
}

.contact-info strong {
	color: var(--text);
	display: block;
	margin-bottom: 2px;
}

/* Footer */
footer {
	background: var(--navy-deep);
	border-top: 1px solid var(--line);
	padding: 48px 0 32px;
}

.footer-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}

.footer-inner .muted {
	color: var(--text-muted);
	font-size: 0.9rem;
}

.disclaimer {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
	color: var(--text-muted);
	font-size: 0.8rem;
	line-height: 1.5;
}

/* Responsive */
@media (max-width: 820px) {
	.grid-3,
	.stats,
	.team {
		grid-template-columns: 1fr;
	}

	.contact-wrap {
		grid-template-columns: 1fr;
	}

	.nav-links {
		gap: 18px;
	}

	.hero {
		padding: 90px 0 70px;
	}

	section {
		padding: 60px 0;
	}
}

@media (max-width: 520px) {
	.nav-links {
		display: none;
	}
}
