:root {
	color-scheme: dark;
	--bg: #05090c;
	--panel: #090d10;
	--panel-soft: #111917;
	--text: #f2f1ed;
	--muted: #aaa9ad;
	--line: #293036;
	--green: #304436;
	--gold: #c79545;
	--red: #e02b37;
	--orange: #ff7a2d;
}

* {
	box-sizing: border-box;
}

html {
	background: var(--bg);
}

body {
	margin: 0;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background:
		radial-gradient(circle at 70% 20%, rgba(199, 149, 69, 0.14), transparent 26rem),
		linear-gradient(180deg, #061112 0%, #071017 48%, #05070c 100%);
	color: var(--text);
	letter-spacing: 0;
}

a {
	color: inherit;
}

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

.topbar {
	position: sticky;
	top: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem clamp(1rem, 4vw, 3rem);
	background: rgba(5, 9, 12, 0.86);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.28em;
	font-size: 0.92rem;
}

.nav {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--muted);
	font-size: 0.95rem;
}

.nav a {
	text-decoration: none;
}

.nav a:hover {
	color: var(--text);
}

.hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(18rem, 28rem);
	gap: clamp(1.5rem, 5vw, 4rem);
	align-items: center;
	max-width: 74rem;
	margin: 0 auto;
	padding: clamp(3rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem) 3rem;
}

.eyebrow {
	color: var(--gold);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.24em;
	font-size: 0.78rem;
}

h1 {
	margin: 0.9rem 0 1rem;
	font-size: clamp(3rem, 9vw, 6.8rem);
	line-height: 0.9;
	text-transform: uppercase;
	letter-spacing: 0;
}

.lead {
	max-width: 42rem;
	color: #cfced1;
	font-size: clamp(1.08rem, 2vw, 1.3rem);
	line-height: 1.55;
}

.actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 2rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.25rem;
	padding: 0 1.25rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.button.primary {
	background: var(--green);
	color: var(--text);
}

.button.secondary {
	background: rgba(255, 255, 255, 0.05);
	color: #d7d5d1;
}

.phone-frame {
	justify-self: center;
	width: min(100%, 25rem);
	border-radius: 34px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: #050607;
	padding: 0.6rem;
	box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.55);
}

.phone-frame img {
	display: block;
	width: 100%;
	border-radius: 26px;
}

.section {
	max-width: 74rem;
	margin: 0 auto;
	padding: 3rem clamp(1rem, 4vw, 3rem);
}

.info-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.info-card {
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	background: rgba(7, 11, 14, 0.82);
	padding: 1.25rem;
}

.info-card h2,
.info-card h3 {
	margin: 0 0 0.7rem;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.info-card p,
.doc p,
.doc li {
	color: var(--muted);
	line-height: 1.65;
}

.status-strip {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	padding: 1rem 0;
	color: #d9d7d2;
}

.pulse {
	color: var(--orange);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.18em;
}

.doc {
	max-width: 54rem;
	margin: 0 auto;
	padding: 3rem clamp(1rem, 4vw, 3rem) 5rem;
}

.doc h1 {
	font-size: clamp(2.5rem, 7vw, 4.5rem);
}

.doc h2 {
	margin-top: 2.2rem;
	font-size: 1.15rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.doc code {
	color: #e6c07c;
}

.footer {
	max-width: 74rem;
	margin: 0 auto;
	padding: 2rem clamp(1rem, 4vw, 3rem) 3rem;
	color: #85878b;
	font-size: 0.92rem;
}

@media (max-width: 760px) {
	.topbar,
	.nav,
	.status-strip {
		align-items: flex-start;
		flex-direction: column;
	}

	.hero,
	.info-grid {
		grid-template-columns: 1fr;
	}

	.hero {
		padding-top: 2.5rem;
	}
}
