:root {
	color-scheme: dark;
	font-family:
		'Satoshi',
		'Inter',
		'Manrope',
		Inter,
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		sans-serif;
	background: #09090b;
	color: #f4f4f5;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	min-height: 100%;
}

body {
	line-height: 1.6;
	background:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(145deg, #09090b 0%, #101014 48%, #071814 100%);
	background-size:
		48px 48px,
		48px 48px,
		auto;
}

::selection {
	background: rgba(16, 185, 129, 0.35);
	color: #ffffff;
}

h1,
h2,
h3,
p,
pre,
ul {
	margin: 0;
}

button {
	font: inherit;
	transition:
		background-color 180ms ease,
		box-shadow 180ms ease,
		transform 180ms ease;
}

button:hover {
	box-shadow: 0 16px 35px rgba(16, 185, 129, 0.24);
	transform: translateY(-2px);
}

code,
pre {
	font-family:
		ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono',
		'Courier New', monospace;
}

code {
	color: #67e8f9;
	font-size: 0.92em;
}

pre {
	overflow-x: auto;
	white-space: pre-wrap;
}

strong {
	font-weight: 700;
}

.site-shell {
	min-height: 100vh;
	position: relative;
}

.site-shell::before {
	background:
		linear-gradient(90deg, rgba(16, 185, 129, 0.16), transparent 26%),
		linear-gradient(270deg, rgba(245, 158, 11, 0.12), transparent 30%);
	content: '';
	inset: 0;
	pointer-events: none;
	position: fixed;
}

.brand-lockup {
	align-items: center;
	display: flex;
	gap: 12px;
}

.brand-mark {
	align-items: center;
	background: linear-gradient(135deg, #10b981, #06b6d4);
	border-radius: 14px;
	box-shadow: 0 18px 40px rgba(6, 182, 212, 0.24);
	color: #09090b;
	display: inline-flex;
	font-weight: 800;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.brand-lockup p:first-child {
	letter-spacing: 0;
	line-height: 1.15;
}

.brand-lockup p:last-child {
	line-height: 1.2;
	margin-top: 2px;
}

.status-pill {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	color: #d4d4d8;
	font-size: 0.85rem;
	padding: 8px 12px;
}

.status-pill-accent {
	border-color: rgba(16, 185, 129, 0.45);
	color: #6ee7b7;
}

.hero-grid {
	grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
	min-height: calc(100vh - 150px);
}

.hero-copy {
	padding: 12px 0 24px;
}

.hero-eyebrow {
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1.2;
}

.hero-title {
	font-size: clamp(2.55rem, 4.6vw, 4.15rem);
	letter-spacing: 0;
	line-height: 1.04;
	max-width: 610px;
	text-wrap: balance;
}

.hero-lede {
	font-size: clamp(1rem, 1.25vw, 1.12rem);
	line-height: 1.68;
	max-width: 535px;
}

.metric-card,
.feature-card,
.terminal-card,
.showcase-card,
.preview-panel,
.utility-panel {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045));
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.metric-card {
	border-radius: 18px;
	padding: 18px;
}

.metric-card strong {
	color: #f4f4f5;
	display: block;
	font-size: 1.65rem;
	line-height: 1;
}

.metric-card span {
	color: #a1a1aa;
	display: block;
	font-size: 0.82rem;
	line-height: 1.35;
	margin-top: 8px;
}

.terminal-card,
.showcase-card {
	border-radius: 28px;
	padding: 24px;
}

.terminal-card {
	align-self: center;
	position: relative;
}

.terminal-topbar {
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	gap: 8px;
	margin: -2px -2px 18px;
	padding: 0 0 14px;
}

.terminal-topbar span {
	border-radius: 999px;
	display: block;
	height: 10px;
	width: 10px;
}

.terminal-topbar span:nth-child(1) {
	background: #f87171;
}

.terminal-topbar span:nth-child(2) {
	background: #fbbf24;
}

.terminal-topbar span:nth-child(3) {
	background: #34d399;
}

.terminal-topbar p {
	color: #a1a1aa;
	font-size: 0.82rem;
	margin-left: auto;
}

.terminal-card pre {
	background: #09090b;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	color: #d4d4d8;
	font-size: 0.91rem;
	line-height: 1.75;
	padding: 18px;
}

.parse-output {
	background: rgba(9, 9, 11, 0.72);
	border: 1px solid rgba(16, 185, 129, 0.22);
	border-radius: 18px;
	padding: 16px;
}

.parse-output p,
.utility-list p {
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	gap: 12px;
	justify-content: space-between;
	line-height: 1.45;
	padding: 10px 0;
}

.parse-output p:last-child,
.utility-list p:last-child {
	border-bottom: 0;
}

.parse-output span {
	color: #6ee7b7;
	font-weight: 700;
}

.feature-card {
	border-radius: 24px;
	padding: 22px;
}

.feature-index {
	color: #f59e0b;
	font-family:
		ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono',
		'Courier New', monospace;
	font-weight: 800;
}

.preview-panel,
.utility-panel {
	border-radius: 24px;
	padding: 18px;
}

.preview-header {
	align-items: center;
	color: #a1a1aa;
	display: flex;
	font-size: 0.85rem;
	gap: 10px;
	margin-bottom: 14px;
}

.preview-header span {
	background: #10b981;
	border-radius: 999px;
	box-shadow: 0 0 22px rgba(16, 185, 129, 0.7);
	display: block;
	height: 10px;
	width: 10px;
}

.utility-list strong {
	color: #f4f4f5;
}

.utility-list span {
	color: #a1a1aa;
	font-family:
		ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono',
		'Courier New', monospace;
	font-size: 0.86rem;
	text-align: right;
}

@media (max-width: 767px) {
	.site-shell::before {
		background:
			linear-gradient(180deg, rgba(16, 185, 129, 0.14), transparent 32%),
			linear-gradient(0deg, rgba(245, 158, 11, 0.08), transparent 35%);
	}

	.hero-grid {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.hero-copy {
		padding-top: 4px;
	}

	.hero-title {
		font-size: 2.25rem;
		line-height: 1.06;
		max-width: 13ch;
	}

	.hero-lede {
		font-size: 1rem;
		line-height: 1.68;
	}

	.terminal-card,
	.showcase-card {
		border-radius: 22px;
		padding: 18px;
	}

	.parse-output p,
	.utility-list p {
		align-items: flex-start;
		flex-direction: column;
	}

	.utility-list span {
		text-align: left;
	}
}
