*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
	--bg: #0B0F19;
	--card: #121826;
	--border: #1E293B;
	--accent: #00F0FF;
	--green: #00FF85;
	--slate-100: #f1f5f9;
	--slate-200: #e2e8f0;
	--slate-300: #cbd5e1;
	--slate-400: #94a3b8;
	--slate-500: #64748b;
	--slate-600: #475569;
	--slate-700: #334155;
	--slate-800: #1e293b;
	--slate-900: #0f172a;
}
html { scroll-behavior: smooth; }
body {
	font-family: 'Inter', system-ui, sans-serif;
	background: var(--bg);
	color: var(--slate-300);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== UTILS ===== */
.container { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-accent { color: var(--accent); }
.text-slate-300 { color: var(--slate-300); }
.font-semibold { font-weight: 600; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.glow { box-shadow: 0 0 28px rgba(0, 240, 255, 0.14); }

/* ===== NAV ===== */
.nav {
	position: fixed; top: 0; left: 0; right: 0; z-index: 50; height: 4rem;
	background: rgba(11, 15, 25, 0.9);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border);
}
.nav-inner {
	max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; height: 100%;
	display: flex; align-items: center; justify-content: space-between;
}
.nav-logo-img { height: 28px; width: auto; }
.nav-links {
	display: none; align-items: center; gap: 1.75rem;
	font-size: 0.875rem; font-weight: 500; color: var(--slate-400);
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: var(--accent); }
.nav-cta {
	display: none; background: var(--accent); color: #000;
	font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
	letter-spacing: 0.08em; padding: 0.6rem 1.2rem; border-radius: 9999px;
}
.nav-cta:hover { background: #fff; }
@media (min-width: 768px) {
	.nav-links { display: flex; }
	.nav-cta { display: inline-flex; }
}
.nav-toggle {
	display: flex; flex-direction: column; justify-content: center; gap: 5px;
	width: 2.25rem; height: 2.25rem; background: transparent; border: none;
	cursor: pointer; padding: 0.25rem; z-index: 60;
}
.nav-toggle-bar {
	display: block; width: 100%; height: 2px; background: #fff; border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.active .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 768px) { .nav-toggle { display: none; } }
.nav-mobile {
	display: none; position: absolute; top: 4rem; left: 0; right: 0;
	background: rgba(11, 15, 25, 0.97); backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--border); padding: 1.25rem 1.5rem 1.75rem;
	flex-direction: column; gap: 0.35rem; z-index: 49;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
	display: block; padding: 0.85rem 0.5rem; font-size: 0.95rem;
	font-weight: 500; color: var(--slate-300); border-radius: 0.5rem;
}
.nav-mobile a:hover { background: rgba(0, 240, 255, 0.08); color: #fff; }
.nav-mobile-cta {
	margin-top: 0.75rem; text-align: center;
	background: var(--accent) !important; color: #000 !important;
	font-weight: 700 !important; text-transform: uppercase; letter-spacing: 0.06em;
	font-size: 0.8rem !important; padding: 0.9rem 1rem !important; border-radius: 9999px !important;
}

/* ===== BUTTONS ===== */
.btn {
	display: inline-flex; align-items: center; justify-content: center;
	padding: 0.85rem 1.5rem; font-size: 0.75rem; font-weight: 700;
	text-transform: uppercase; letter-spacing: 0.08em; border-radius: 9999px;
	transition: 0.2s; cursor: pointer; border: none;
}
.btn-primary { background: var(--accent); color: #000; }
.btn-primary:hover { background: #fff; }
.btn-outline {
	border: 1px solid var(--slate-700); color: var(--slate-200); background: transparent;
}
.btn-outline:hover { border-color: var(--accent); color: #fff; }
.hero-actions {
	display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: center;
}

/* ===== PAGE HERO ===== */
.page-hero {
	position: relative;
	padding: 9rem 1.5rem 4.5rem;
	overflow: hidden;
	text-align: center;
	border-bottom: 1px solid var(--border);
}
.hero-bg {
	position: absolute; inset: 0;
	background: radial-gradient(ellipse 80% 60% at 50% 0%, #0f172a 0%, var(--bg) 70%);
	z-index: 0;
}
.hero-grid {
	position: absolute; inset: 0;
	background-image:
		linear-gradient(to right, rgba(30,41,59,0.12) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(30,41,59,0.12) 1px, transparent 1px);
	background-size: 3.5rem 3.5rem;
	z-index: 1; pointer-events: none;
	mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}
.hero-content {
	position: relative; z-index: 2;
	max-width: 40rem; margin: 0 auto;
}
.badge {
	display: inline-flex; align-items: center; gap: 0.5rem;
	font-size: 0.625rem; font-weight: 600; font-family: ui-monospace, monospace;
	text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent);
	background: rgba(0, 240, 255, 0.08); border: 1px solid rgba(0, 240, 255, 0.2);
	padding: 0.35rem 0.85rem; border-radius: 9999px; margin-bottom: 1.5rem;
}
.badge-pulse .badge-dot {
	width: 6px; height: 6px; border-radius: 50%;
	background: var(--accent); animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
	0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.4); }
	50% { opacity: 0.6; box-shadow: 0 0 0 4px rgba(0, 240, 255, 0); }
}
.page-hero-title {
	font-size: clamp(2rem, 5vw, 2.75rem);
	font-weight: 900; color: #fff;
	letter-spacing: -0.03em; margin-bottom: 0.75rem;
}
.page-hero-subtitle {
	font-size: clamp(1rem, 2.5vw, 1.2rem);
	font-weight: 600; color: var(--slate-200);
	margin-bottom: 1rem;
}
.page-hero-mono {
	font-size: 0.6875rem; font-family: ui-monospace, monospace;
	letter-spacing: 0.12em; color: rgba(0, 240, 255, 0.7);
	line-height: 1.6;
}

/* ===== SECTION ===== */
.section { padding: 5rem 0; }
.section-border { border-top: 1px solid var(--border); }
.section-border-y { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-muted { background: rgba(2, 6, 23, 0.4); }
.section-label {
	display: block;
	font-size: 0.6875rem; font-weight: 700; font-family: ui-monospace, monospace;
	text-transform: uppercase; letter-spacing: 0.14em;
	color: var(--accent); margin-bottom: 0.65rem;
}
.section-label-muted {
	display: block;
	font-size: 0.6875rem; font-family: ui-monospace, monospace;
	text-transform: uppercase; letter-spacing: 0.12em;
	color: var(--slate-500); margin-bottom: 0.5rem;
}
.section-title {
	font-size: clamp(1.35rem, 3vw, 1.85rem);
	font-weight: 800; color: #fff;
	letter-spacing: -0.02em; margin-bottom: 0.85rem;
}
.section-desc {
	font-size: 0.9375rem; color: var(--slate-400);
	max-width: 36rem; margin: 0 auto; line-height: 1.7;
}

/* ===== 01 TWO COL ===== */
.two-col {
	display: grid; gap: 2.5rem;
}
@media (min-width: 900px) {
	.two-col {
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
		gap: 4rem; align-items: start;
	}
}
.two-col .section-title { margin-bottom: 0; }

/* ===== 02 FLOW AXIS ===== */
.stack {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	max-width: 18rem;
	margin: 0 auto;
}
.stack-item {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 0.75rem;
	padding: 1rem 1.1rem;
	text-align: center;
}
.stack-item-accent {
	background: rgba(0, 240, 255, 0.08);
	border-color: rgba(0, 240, 255, 0.4);
}
.stack-item-green {
	background: rgba(0, 255, 133, 0.07);
	border-color: rgba(0, 255, 133, 0.3);
}
.stack-label {
	font-size: 0.5625rem; font-family: ui-monospace, monospace;
	text-transform: uppercase; letter-spacing: 0.08em;
	color: var(--slate-500); margin-bottom: 0.3rem;
}
.stack-label-accent { color: var(--accent); }
.stack-label-green { color: var(--green); }
.stack-value {
	font-size: 0.8125rem; font-weight: 700;
	text-transform: uppercase; color: #fff; letter-spacing: 0.02em;
}
.stack-value-accent { color: var(--accent); }
.stack-value-green { color: var(--green); }
.stack-arrow {
	color: var(--slate-600); font-size: 0.9rem;
	text-align: center; padding: 0.35rem 0; line-height: 1;
}

@media (min-width: 900px) {
	.stack {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		align-items: stretch;
		max-width: 64rem;
		gap: 0.4rem 0.15rem;
	}
	.stack-item {
		flex: 1 1 7.5rem;
		max-width: 8.75rem;
		min-height: 4.5rem;
		display: flex; flex-direction: column; justify-content: center;
		padding: 0.9rem 0.65rem;
	}
	.stack-item-accent {
		flex: 1 1 8.5rem;
		max-width: 10rem;
		transform: scale(1.04);
		z-index: 1;
	}
	.stack-arrow {
		display: flex; align-items: center;
		padding: 0 0.1rem;
		color: var(--slate-600);
		font-size: 0.75rem;
		transform: rotate(-90deg);
	}
}

/* ===== GRID + CARD ===== */
.grid-2 { display: grid; gap: 1.25rem; }
.grid-3 { display: grid; gap: 1rem; }
.grid-4 { display: grid; gap: 1rem; }
@media (min-width: 640px) {
	.grid-2 { grid-template-columns: repeat(2, 1fr); }
	.grid-3 { grid-template-columns: repeat(2, 1fr); }
	.grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
	.grid-3 { grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
	.grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 0.85rem;
	padding: 1.35rem 1.4rem;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.card:hover {
	border-color: rgba(0, 240, 255, 0.35);
	box-shadow: 0 0 24px rgba(0, 240, 255, 0.05);
}
.card-title {
	font-size: 0.6875rem; font-weight: 700;
	text-transform: uppercase; letter-spacing: 0.1em;
	color: var(--accent); margin-bottom: 0.65rem;
}
.card-title-border {
	border-bottom: 1px solid var(--border);
	padding-bottom: 0.65rem; margin-bottom: 1.15rem;
}
.card-text {
	font-size: 0.8125rem; color: var(--slate-400); line-height: 1.6;
}
.card-text.but {
     color: #fb923c;
 }
/* ===== LAND ===== */
.land-actions {
	display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
}
.land-action {
	background: rgba(11, 15, 25, 0.8);
	border: 1px solid var(--border);
	border-radius: 0.45rem;
	padding: 0.7rem 0.5rem;
	text-align: center;
	font-size: 0.6875rem; font-weight: 700;
	text-transform: uppercase; letter-spacing: 0.04em; color: #fff;
}
.check-list li {
	display: flex; align-items: center; gap: 0.65rem;
	font-size: 0.8125rem; color: var(--slate-300);
	margin-bottom: 0.55rem;
}
.check-list li:last-child { margin-bottom: 0; }
.check-list .check { color: var(--green); flex-shrink: 0; }

/* ===== NOT ===== */
.not-item {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 0.75rem;
	padding: 1.35rem 1rem;
	text-align: center;
}
.not-x { color: #f87171; font-size: 1rem; margin-bottom: 0.45rem; opacity: 0.85; }
.not-label {
	font-size: 0.75rem; font-weight: 700;
	text-transform: uppercase; letter-spacing: 0.04em; color: var(--slate-200);
}

/* ===== EXPLORE LINKS ===== */
.card-link {
	display: flex; flex-direction: column;
	height: 100%;
	padding: 1.25rem 1.3rem;
	transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.card-link:hover {
	border-color: rgba(0, 240, 255, 0.4);
	box-shadow: 0 0 28px rgba(0, 240, 255, 0.07);
	transform: translateY(-2px);
}
.card-link .card-title { margin-bottom: 0.45rem; }
.card-link .card-text { flex: 1; font-size: 0.8125rem; line-height: 1.55; }
.link-accent {
	font-size: 0.8125rem; font-weight: 600; color: var(--accent);
}
.link-accent:hover { text-decoration: underline; }
.sep-muted {
	margin: 0 0.85rem; color: var(--slate-600); font-size: 0.875rem;
}

/* ===== CTA ===== */
.section-cta {
	padding: 4rem 0 5rem;
	border-top: 1px solid var(--border);
}
.section-cta .section-title { margin-bottom: 0.65rem; }
.section-cta .section-desc { margin-bottom: 1.75rem; }

/* ===== FOOTER ===== */
.footer { border-top: 1px solid var(--border); padding: 3rem 0; }
.footer-inner { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
.footer-top {
	display: flex; flex-direction: column; gap: 2rem; margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
	.footer-top { flex-direction: row; justify-content: space-between; }
}
.footer-brand { font-size: 1.35rem; font-weight: 900; color: #fff; margin-bottom: 0.4rem; }
.footer-tagline { font-size: 0.8125rem; color: var(--slate-500); }
.footer-links {
	display: flex; flex-wrap: wrap; gap: 1.5rem;
	font-size: 0.875rem; color: var(--slate-400);
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
	display: flex; flex-direction: column; gap: 1rem; align-items: center;
	padding-top: 1.75rem; border-top: 1px solid var(--border);
	font-size: 0.8125rem; color: var(--slate-500);
}
@media (min-width: 640px) {
	.footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-social { display: flex; gap: 1.25rem; font-size: 1.1rem; }
.footer-social a:hover { color: var(--accent); }