:root {
	--bg: #020913;
	--bg2: #071b30;
	--text: #eaf1ff;
	--muted: #a6b6cc;
	--gold: #f0b84b;
	--gold-soft: #ffd98f;
	--line: rgba(255, 205, 103, 0.22);
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	font-family: "Exo 2", sans-serif;
	color: var(--text);
	background:
		radial-gradient(circle at 10% 0%, #0f2a46 0%, transparent 42%),
		radial-gradient(circle at 100% 12%, rgba(240, 184, 75, 0.16) 0%, transparent 38%),
		var(--bg);
}

a {
	color: inherit;
	text-decoration: none;
}

.container {
	width: min(1180px, calc(100% - 2rem));
	margin: 0 auto;
}

.bg-orb {
	position: fixed;
	pointer-events: none;
	border-radius: 50%;
	filter: blur(70px);
	z-index: 0;
}

.orb-a {
	width: 460px;
	height: 460px;
	top: -160px;
	right: -120px;
	background: rgba(239, 180, 67, 0.2);
}

.orb-b {
	width: 340px;
	height: 340px;
	left: -100px;
	bottom: -120px;
	background: rgba(35, 93, 169, 0.2);
}

.site-header,
.site-footer,
.page-shell {
	position: relative;
	z-index: 1;
}

.site-header {
	position: sticky;
	top: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(3, 11, 22, 0.92);
	backdrop-filter: blur(10px);
}

.nav-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 82px;
	gap: 1rem;
}

.brand {
	display: inline-flex;
	flex-direction: column;
	gap: 0.12rem;
}

.brand-main {
	font-family: "Rajdhani", sans-serif;
	font-size: 2rem;
	letter-spacing: 0.12em;
	line-height: 1;
}

.brand-sub {
	font-size: 0.68rem;
	letter-spacing: 0.11em;
	color: var(--muted);
}

.main-nav {
	display: flex;
	gap: 1.55rem;
	text-transform: uppercase;
	font-size: 0.81rem;
	letter-spacing: 0.06em;
}

.main-nav a {
	color: #cfdaee;
	padding: 0.3rem 0;
	border-bottom: 2px solid transparent;
}

.main-nav a.active,
.main-nav a:hover {
	color: var(--gold);
	border-bottom-color: var(--gold);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	min-height: 46px;
	padding: 0.65rem 1.2rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border: 1px solid transparent;
	transition: transform 0.2s ease, background 0.2s ease, filter 0.2s ease;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn-solid {
	background: linear-gradient(120deg, #e3a63d, #f4cb7b);
	color: #1a1207;
}

.btn-outline {
	border-color: var(--gold);
	background: rgba(241, 183, 74, 0.06);
	color: var(--gold-soft);
}

.btn-outline:hover {
	background: rgba(241, 183, 74, 0.14);
}

.page-shell {
	min-height: calc(100vh - 170px);
	padding-bottom: 2rem;
}

.page {
	display: none;
	animation: fadeIn 0.35s ease;
}

.page.active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.section {
	padding: 3.2rem 0;
}

.kicker {
	margin: 0 0 0.75rem;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 700;
	color: var(--gold);
}

h1,
h2,
h3,
p {
	margin: 0;
}

h1 {
	font-size: clamp(2rem, 5.5vw, 4rem);
	line-height: 1.1;
	text-transform: uppercase;
	max-width: 13ch;
}

h2 {
	font-size: clamp(1.4rem, 3vw, 2.25rem);
	text-transform: uppercase;
	margin-bottom: 1rem;
}

h3 {
	font-size: 1.35rem;
	line-height: 1.2;
}

h1 span,
h2 span {
	color: var(--gold);
}

.lead {
	margin-top: 1rem;
	color: #cfdbef;
	font-size: 1.16rem;
	line-height: 1.65;
	max-width: 52ch;
}

.actions {
	display: flex;
	gap: 0.8rem;
	margin-top: 1.5rem;
	flex-wrap: wrap;
}

.hero-home,
.hero-split,
.about-top,
.resource-hero,
.founder-panel,
.split-panel,
.bar-cta,
.wide-cta,
.power-panel,
.metric-strip,
.subscribe-panel {
	display: grid;
	gap: 1rem;
}

.hero-home,
.hero-split,
.about-top,
.resource-hero {
	grid-template-columns: 1fr 1fr;
	align-items: center;
}

.visual {
	border: 1px solid var(--line);
	border-radius: 14px;
	min-height: 360px;
	background: linear-gradient(135deg, rgba(11, 26, 44, 0.86), rgba(6, 13, 25, 0.85));
	position: relative;
	overflow: hidden;
}

.globe::before,
.globe-large::before,
.wave::before {
	content: "";
	position: absolute;
	inset: 12% 8%;
	border-radius: 50%;
	border: 2px solid rgba(246, 193, 95, 0.55);
	box-shadow: inset 0 0 35px rgba(246, 193, 95, 0.2);
}

.globe::after,
.globe-large::after {
	content: "";
	position: absolute;
	inset: 24% 17%;
	border-radius: 50%;
	border: 1px solid rgba(246, 193, 95, 0.45);
	transform: rotate(18deg);
}

.wave::before {
	inset: auto 8% 28% 8%;
	height: 80px;
	border-radius: 100px;
	border: 0;
	background: linear-gradient(90deg, rgba(245, 184, 76, 0), rgba(245, 184, 76, 0.85), rgba(245, 184, 76, 0));
	filter: blur(1px);
}

.trusted-strip {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(4, 12, 24, 0.8);
	padding: 1rem 0 1.2rem;
}

.mini-title {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--gold);
	text-align: center;
	margin-bottom: 0.8rem;
}

.logo-row {
	display: grid;
	gap: 0.8rem;
}

.logo-row.six {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.logo-row span {
	display: block;
	text-align: center;
	padding: 0.72rem 0.25rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	color: #c8d6ec;
	font-weight: 600;
}

.card-grid {
	display: grid;
	gap: 1rem;
	margin-top: 1rem;
}

.card-grid.three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.six {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.card {
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	padding: 1.1rem;
	background: linear-gradient(155deg, rgba(12, 29, 50, 0.8), rgba(5, 13, 28, 0.88));
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
	border-color: rgba(255, 204, 97, 0.35);
	transform: translateY(-2px);
}

.card h3 {
	font-size: 1.35rem;
	line-height: 1.25;
	color: var(--gold-soft);
	margin-bottom: 0.6rem;
}

.card p {
	color: var(--muted);
	line-height: 1.55;
	font-size: 0.97rem;
}

.text-link {
	display: inline-block;
	margin-top: 0.9rem;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--gold);
}

.wide-cta,
.split-panel,
.power-panel,
.bar-cta,
.metric-strip,
.journey-panel,
.subscribe-panel,
.stack-card,
.vision-card,
.founder-panel,
.resource-link {
	border: 1px solid var(--line);
	border-radius: 12px;
	background: linear-gradient(145deg, rgba(10, 25, 44, 0.82), rgba(5, 13, 26, 0.85));
}

.wide-cta {
	margin-top: 1.3rem;
	grid-template-columns: 0.8fr 1.2fr;
	padding: 1rem;
	align-items: center;
}

.flow {
	min-height: 170px;
	border-radius: 10px;
	background: linear-gradient(120deg, rgba(243, 180, 71, 0.02), rgba(243, 180, 71, 0.75), rgba(243, 180, 71, 0.02));
	filter: blur(0.2px);
}

.bar-cta {
	margin-top: 1.2rem;
	grid-template-columns: 1fr auto;
	padding: 1rem 1.1rem;
	align-items: center;
}

.bar-cta p {
	margin-top: 0.35rem;
	color: var(--muted);
}

.power-panel {
	margin-top: 1.3rem;
	grid-template-columns: 1fr 1fr;
	padding: 1rem;
	align-items: center;
}

.pillars {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.6rem;
}

.pillars span {
	display: block;
	text-align: center;
	padding: 0.65rem 0.4rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	color: var(--gold-soft);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.77rem;
}

.stack-card {
	padding: 1.2rem;
}

.stack-card h3 {
	font-size: 2.1rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 0.8rem;
}

.stack-card ul,
.layer-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.6rem;
}

.stack-card li,
.layer-list li {
	padding: 0.75rem 0.9rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-left: 3px solid var(--gold);
	border-radius: 8px;
	background: rgba(5, 15, 30, 0.6);
}

.split-panel {
	margin-top: 1.2rem;
	grid-template-columns: 1fr 1fr;
	padding: 1rem;
	align-items: start;
}

.split-panel p {
	color: var(--muted);
	line-height: 1.6;
	margin-bottom: 1rem;
}

.metric-strip {
	margin-top: 1.2rem;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	padding: 0.6rem;
}

.metric {
	padding: 0.8rem;
	text-align: center;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	background: rgba(5, 14, 26, 0.72);
}

.metric strong {
	display: block;
	font-family: "Rajdhani", sans-serif;
	font-size: 2rem;
	line-height: 1;
	color: var(--gold);
	margin-bottom: 0.3rem;
}

.metric span {
	color: var(--muted);
	font-size: 0.9rem;
}

.vision-card,
.founder-panel {
	padding: 1rem;
}

.vision-card p,
.founder-panel p,
blockquote p {
	color: var(--muted);
	line-height: 1.6;
	margin-top: 0.45rem;
}

.founder-panel {
	margin-top: 1.2rem;
	grid-template-columns: 1fr 1fr;
	align-items: start;
}

blockquote {
	margin: 0;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 10px;
	background: rgba(4, 11, 21, 0.65);
}

blockquote p {
	margin: 0;
	color: var(--gold);
	font-size: 1.55rem;
	line-height: 1.35;
}

.journey-panel {
	margin-top: 1.1rem;
	padding: 1rem;
}

.resource-link {
	display: block;
	padding: 0.95rem;
	font-weight: 700;
	font-size: 0.95rem;
	color: #dce8ff;
}

.subscribe-panel {
	margin-top: 1.2rem;
	padding: 1rem;
	grid-template-columns: 1fr;
}

.subscribe-form {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 0.7rem;
	margin-top: 0.8rem;
}

.subscribe-form input {
	min-height: 46px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(2, 7, 16, 0.95);
	padding: 0 0.75rem;
	color: var(--text);
	font-size: 0.95rem;
}

.form-message {
	min-height: 1.2rem;
	margin-top: 0.55rem;
	color: var(--gold-soft);
	font-size: 0.93rem;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.site-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.09);
	background: rgba(3, 9, 19, 0.95);
	padding: 1.4rem 0 1.5rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
	gap: 1rem;
	align-items: start;
}

.footer-col p {
	margin: 0 0 0.5rem;
	color: var(--gold);
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.footer-col a {
	display: block;
	color: #c7d6ef;
	font-size: 0.93rem;
	margin-bottom: 0.25rem;
}

.copyright {
	text-align: center;
	margin: 1rem 0 0;
	color: #8da5c3;
	font-size: 0.84rem;
}

@media (max-width: 1100px) {
	.main-nav {
		display: none;
	}

	.hero-home,
	.hero-split,
	.about-top,
	.resource-hero,
	.split-panel,
	.wide-cta,
	.power-panel,
	.founder-panel,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.card-grid.six {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.card-grid.four {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.card-grid.three,
	.logo-row.six,
	.metric-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pillars {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.section {
		padding: 2.3rem 0;
	}

	.brand-main {
		font-size: 1.65rem;
	}

	.card-grid.six,
	.card-grid.four,
	.card-grid.three,
	.logo-row.six,
	.metric-strip,
	.pillars,
	.subscribe-form,
	.bar-cta {
		grid-template-columns: 1fr;
	}

	blockquote p {
		font-size: 1.25rem;
	}
}
