:root {
	--ink: #171a16;
	--ink-soft: #394034;
	--paper: #f4f0e7;
	--paper-strong: #fffaf0;
	--line: rgba(23, 26, 22, 0.16);
	--charcoal: #1a1c20;
	--charcoal-2: #1a1c20;
	--field: #1a1c20;
	--amber: #d08a49;
	--rust: #a65d38;
	--white: #ffffff;
	--muted: #f2eee5;
	--shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--charcoal);
	color: var(--paper);
	font-family: "Segoe UI", "Aptos", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.55;
	margin: 0;
	min-width: 320px;
}

body.nav-open {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
}

button,
input,
select,
textarea {
	font: inherit;
}

.site-header {
	align-items: center;
	background: rgba(16, 20, 15, 0.92);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr auto 1fr;
	left: 0;
	min-height: 72px;
	padding: 0 2rem;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 50;
}

.brand {
	align-items: center;
	display: inline-flex;
	font-weight: 800;
	gap: 0;
	justify-self: start;
	letter-spacing: 0;
}

.brand img {
	height: 4.375rem;
	width: 4.375rem;
}

.language-toggle {
	align-items: center;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	color: var(--white);
	cursor: pointer;
	display: inline-flex;
	font-size: 0.88rem;
	font-weight: 850;
	gap: 0.55rem;
	height: 42px;
	justify-content: center;
	padding: 0 0.8rem;
}

.language-toggle:hover,
.language-toggle:focus-visible {
	background: rgba(255, 255, 255, 0.14);
	outline: none;
}

.globe-icon {
	border: 2px solid currentColor;
	border-radius: 50%;
	display: inline-block;
	height: 1.05rem;
	position: relative;
	width: 1.05rem;
}

.globe-icon::before,
.globe-icon::after {
	content: "";
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.globe-icon::before {
	border-left: 1px solid currentColor;
	border-right: 1px solid currentColor;
	border-radius: 50%;
	height: 0.86rem;
	width: 0.38rem;
}

.globe-icon::after {
	border-top: 1px solid currentColor;
	width: 0.82rem;
}

.site-nav {
	align-items: center;
	display: flex;
	gap: 0.35rem;
	grid-column: 2;
	justify-self: center;
}

.header-actions {
	align-items: center;
	display: flex;
	gap: 0.6rem;
	grid-column: 3;
	justify-self: end;
	margin-left: auto;
}

.site-nav a,
.site-nav button {
	border-radius: 8px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.93rem;
	font-weight: 650;
	padding: 0.72rem 0.85rem;
}

.site-nav button {
	background: transparent;
	border: 0;
	cursor: pointer;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav button:hover,
.site-nav button:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	color: var(--white);
	outline: none;
}

.nav-download {
	background: var(--amber);
	border-radius: 8px;
	color: var(--ink);
	display: inline-flex;
	font-size: 0.93rem;
	font-weight: 850;
	justify-content: center;
	line-height: 1.1;
	padding: 0.72rem 0.9rem;
}

.nav-download:hover,
.nav-download:focus-visible {
	background: #e2a05f;
	color: var(--ink);
	outline: none;
}

.site-nav .nav-cta {
	background: var(--paper);
	color: var(--ink);
	margin-left: 0.4rem;
}

.nav-toggle {
	align-items: center;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	display: none;
	height: 42px;
	justify-content: center;
	padding: 0;
	width: 42px;
}

.nav-toggle span {
	background: var(--paper);
	display: block;
	height: 2px;
	margin: 3px 0;
	width: 18px;
}

.hero {
	background:
		linear-gradient(90deg, rgba(16, 20, 15, 0.96) 0%, rgba(16, 20, 15, 0.8) 42%, rgba(16, 20, 15, 0.28) 100%),
		url("../images/aneth-overview-airspace-map.png") center center / cover no-repeat;
	align-items: center;
	display: flex;
	min-height: 100vh;
	min-height: 100svh;
	padding: 6rem 2rem 4rem;
	position: relative;
}

.hero-content {
	max-width: 780px;
	position: relative;
	width: 100%;
	z-index: 1;
}

.eyebrow {
	color: var(--amber);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0;
	margin: 0 0 0.9rem;
	text-transform: uppercase;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1 {
	color: var(--white);
	font-size: 6.5rem;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 0.92;
	margin-bottom: 1.3rem;
}

h2 {
	font-size: 2.65rem;
	font-weight: 820;
	letter-spacing: 0;
	line-height: 1.08;
	margin-bottom: 1rem;
}

h3 {
	font-size: 1.1rem;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.2;
	margin-bottom: 0.6rem;
}

.hero-subtitle {
	color: rgba(255, 255, 255, 0.88);
	font-size: 1.35rem;
	line-height: 1.45;
	margin-bottom: 2rem;
	max-width: 700px;
}

.hero-tagline {
	color: var(--amber);
	font-size: 1rem;
	font-weight: 800;
	margin-bottom: 0.8rem;
	text-transform: uppercase;
}

.hero-actions,
.form-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-bottom: 1.35rem;
}

.button {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 8px;
	display: inline-flex;
	font-weight: 800;
	gap: 0.65rem;
	justify-content: center;
	line-height: 1.1;
	min-height: 48px;
	padding: 0.9rem 1.1rem;
	transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.button-primary {
	background: var(--amber);
	color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
	background: #e2a05f;
	outline: none;
}

.button-secondary {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.24);
	color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
	background: rgba(255, 255, 255, 0.14);
	outline: none;
}

.button-mark {
	border-right: 2px solid currentColor;
	border-top: 2px solid currentColor;
	display: inline-block;
	height: 0.55rem;
	transform: rotate(45deg);
	width: 0.55rem;
}

.section {
	padding: 6rem 2rem;
}

.section-inner {
	margin: 0 auto;
	max-width: 1160px;
	width: 100%;
}

.section-paper {
	background: var(--paper);
	color: var(--ink);
}

.section-dark {
	background: var(--charcoal);
	color: var(--paper);
}

.section-control {
	background:
		linear-gradient(135deg, rgba(26, 28, 32, 0.97), rgba(26, 28, 32, 0.94)),
		url("../images/aneth-map.png") center center / cover no-repeat;
	color: var(--paper);
}

.section-contact {
	background: var(--charcoal-2);
	color: var(--paper);
}

.section-heading {
	margin-bottom: 2.2rem;
	max-width: 790px;
}

.section-heading p,
.copy-block p {
	color: var(--ink-soft);
	font-size: 1.05rem;
}

.section-dark .copy-block p,
.section-control .copy-block p,
.section-contact .copy-block p {
	color: var(--muted);
}

.need-grid,
.format-grid,
.control-grid {
	display: grid;
	gap: 1rem;
}

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

.format-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 1.6rem;
}

.need-card,
.format-card,
.control-grid article {
	border-radius: 8px;
	min-width: 0;
	padding: 1.35rem;
}

.need-card,
.format-card {
	background: var(--paper-strong);
	border: 1px solid var(--line);
}

.format-card span {
	color: var(--rust);
	display: block;
	font-size: 0.78rem;
	font-weight: 900;
	margin-bottom: 0.75rem;
	text-transform: uppercase;
}

.format-list {
	color: var(--ink);
	font-size: 1.1rem;
	font-weight: 800;
	line-height: 1.25;
	list-style: disc;
	margin: 0 0 0.85rem 1.2rem;
	padding: 0;
}

.format-list li + li {
	margin-top: 0.35rem;
}

.need-card p,
.format-card p {
	color: var(--ink-soft);
	margin-bottom: 0;
}

.split {
	align-items: center;
	display: grid;
	gap: 3rem;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.split-reverse {
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.aneth-overview {
	gap: 2.2rem;
	grid-template-columns: minmax(420px, 0.86fr) minmax(0, 1.54fr);
	max-width: 1500px;
}

.copy-block {
	min-width: 0;
}

.check-list {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
}

.check-list li {
	border-left: 4px solid var(--amber);
	color: var(--paper);
	font-weight: 700;
	margin: 0.7rem 0;
	padding-left: 0.85rem;
}

.media-frame,
.product-shot,
.screenshot-placeholder {
	background: var(--field);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	box-shadow: var(--shadow);
	margin: 0;
	overflow: hidden;
}

.section-paper .media-frame,
.section-paper .product-shot,
.section-paper .screenshot-placeholder {
	border-color: var(--line);
}

.media-frame img,
.product-shot img {
	width: 100%;
}

.product-shot {
	align-self: center;
}

.product-shot img {
	aspect-ratio: 16 / 9;
	object-fit: cover;
	object-position: center center;
}

.product-shot-overview img {
	aspect-ratio: 1920 / 1009;
	background: var(--field);
	object-fit: contain;
	object-position: center center;
}

.product-shot-placeholder {
	background: #e8e2d5;
	box-shadow: none;
}

.placeholder-stage {
	aspect-ratio: 16 / 9;
	display: grid;
	min-height: 320px;
	place-items: center;
	position: relative;
}

.placeholder-stage::before {
	border: 1px dashed rgba(23, 26, 22, 0.28);
	border-radius: 8px;
	content: "";
	inset: 1rem;
	position: absolute;
}

.product-shot figcaption {
	background: rgba(16, 20, 15, 0.9);
	color: var(--muted);
	font-size: 0.9rem;
	font-weight: 700;
	margin: 0;
	padding: 0.8rem 1rem;
}

.section-paper .product-shot figcaption {
	background: rgba(16, 20, 15, 0.94);
	color: var(--paper);
}

.screenshot-placeholder {
	aspect-ratio: 1 / 1;
	display: grid;
	min-height: 260px;
	place-items: center;
	position: relative;
}

.screenshot-placeholder::before {
	border: 1px dashed rgba(255, 255, 255, 0.32);
	border-radius: 8px;
	content: "";
	inset: 1rem;
	position: absolute;
}

.section-paper .screenshot-placeholder {
	background: #e8e2d5;
	box-shadow: none;
}

.section-paper .screenshot-placeholder::before {
	border-color: rgba(23, 26, 22, 0.28);
}

.placeholder-inner {
	max-width: 78%;
	padding: 1.5rem;
	position: relative;
	text-align: center;
	z-index: 1;
}

.placeholder-inner span {
	color: var(--amber);
	display: block;
	font-size: 0.78rem;
	font-weight: 900;
	margin-bottom: 0.8rem;
	text-transform: uppercase;
}

.section-paper .placeholder-inner span {
	color: var(--rust);
}

.placeholder-inner strong {
	color: var(--white);
	display: block;
	font-size: 1.25rem;
	line-height: 1.2;
	margin-bottom: 0.75rem;
}

.section-paper .placeholder-inner strong {
	color: var(--ink);
}

.placeholder-inner p {
	color: var(--muted);
	margin-bottom: 0;
}

.section-paper .placeholder-inner p {
	color: var(--ink-soft);
}

.control-layout {
	display: grid;
	gap: 2.3rem;
	grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
}

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

.control-grid article {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
}

.control-grid span {
	color: var(--amber);
	display: block;
	font-size: 0.78rem;
	font-weight: 900;
	margin-bottom: 0.8rem;
	text-transform: uppercase;
}

.control-grid p {
	color: var(--muted);
	margin-bottom: 0;
}

.agenda-list {
	display: grid;
	gap: 1rem;
	margin-top: 1.6rem;
}

.agenda-list div {
	border-left: 4px solid var(--rust);
	padding-left: 1rem;
}

.agenda-list strong {
	display: block;
	margin-bottom: 0.25rem;
}

.agenda-list p {
	margin-bottom: 0;
}

.contact-layout {
	display: grid;
	gap: 3rem;
	grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.screenshot-inner {
	max-width: 1440px;
}

.screenshot-grid {
	display: grid;
	gap: 1.15rem;
	grid-template-columns: 1fr;
}

.screenshot-card {
	background: var(--paper-strong);
	border: 1px solid var(--line);
	border-radius: 8px;
	box-shadow: 0 18px 48px rgba(23, 26, 22, 0.12);
	margin: 0;
	overflow: hidden;
}

.screenshot-card img {
	aspect-ratio: 1920 / 1009;
	background: var(--field);
	object-fit: contain;
	width: 100%;
}

.screenshot-card figcaption {
	padding: 1rem 1.1rem 1.15rem;
}

.screenshot-card span {
	color: var(--rust);
	display: block;
	font-size: 0.76rem;
	font-weight: 900;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
}

.screenshot-card strong {
	color: var(--ink);
	display: block;
	font-size: 1.08rem;
	line-height: 1.2;
	margin-bottom: 0.45rem;
}

.screenshot-card p {
	color: var(--ink-soft);
	margin-bottom: 0;
}

.contact-form {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	padding: 1.35rem;
}

.direct-contact {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	display: grid;
	gap: 0.45rem;
	margin-top: 1.5rem;
	padding: 1rem;
}

.direct-contact strong {
	color: var(--white);
}

.direct-contact a {
	color: var(--amber);
	font-weight: 800;
	overflow-wrap: anywhere;
}

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

label {
	display: grid;
	gap: 0.45rem;
	margin-bottom: 1rem;
}

label span {
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.88rem;
	font-weight: 800;
}

input,
select,
textarea {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	color: var(--white);
	min-height: 46px;
	padding: 0.75rem 0.85rem;
	width: 100%;
}

textarea {
	min-height: 130px;
	resize: vertical;
}

select {
	color-scheme: dark;
}

input:focus,
select:focus,
textarea:focus {
	border-color: var(--amber);
	box-shadow: 0 0 0 3px rgba(208, 138, 73, 0.24);
	outline: none;
}

.form-actions {
	margin-bottom: 0;
}

.form-status {
	color: var(--muted);
	font-weight: 700;
	margin: 1rem 0 0;
	min-height: 1.5rem;
}

.form-status[data-state="error"] {
	color: #ffd7c4;
}

.form-status[data-state="success"] {
	color: #f7dfb8;
}

.download-actions {
	display: grid;
	gap: 0.85rem;
	margin-top: 1.2rem;
}

.download-actions .button {
	width: 100%;
}

.download-note {
	color: var(--ink-soft);
	font-weight: 650;
	margin: 0;
}

.download-page {
	background: var(--paper);
	color: var(--ink);
	min-height: 100vh;
	min-height: 100svh;
}

.download-header {
	background: rgba(16, 20, 15, 0.94);
}

.download-main {
	align-items: center;
	display: grid;
	min-height: 100vh;
	min-height: 100svh;
	padding: 7rem 1rem 2rem;
}

.download-panel {
	background: var(--paper-strong);
	border: 1px solid var(--line);
	border-radius: 8px;
	box-shadow: 0 18px 48px rgba(23, 26, 22, 0.12);
	color: var(--ink);
	margin: 0 auto;
	max-width: 460px;
	padding: 1.5rem;
	width: min(100%, 460px);
}

.download-panel h1 {
	color: var(--ink);
	font-size: 2rem;
	line-height: 1.05;
	margin-bottom: 0.8rem;
}

.download-panel p {
	color: var(--ink-soft);
}

.download-page label span {
	color: var(--ink-soft);
}

.download-page input {
	background: rgba(255, 255, 255, 0.72);
	border-color: var(--line);
	color: var(--ink);
}

.download-page input:focus {
	border-color: var(--amber);
	box-shadow: 0 0 0 3px rgba(208, 138, 73, 0.24);
}

.site-footer {
	align-items: center;
	background: #0b0e0a;
	border-top: 1px solid rgba(255, 255, 255, 0.09);
	color: rgba(255, 255, 255, 0.68);
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	padding: 1.5rem 2rem;
}

.site-footer strong {
	color: var(--white);
	display: block;
	font-size: 1rem;
}

.site-footer span,
.site-footer p {
	font-size: 0.88rem;
}

.site-footer p {
	margin-bottom: 0;
	text-align: right;
}

.index-alt .site-nav {
	gap: 0.18rem;
}

.index-alt .site-nav a,
.index-alt .site-nav button {
	padding-left: 0.72rem;
	padding-right: 0.72rem;
}

.index-alt .hero-alt {
	min-height: 92vh;
	min-height: 92svh;
}

.index-alt .hero-actions {
	max-width: min(100%, 430px);
	min-width: 0;
}

.index-alt .button {
	flex-wrap: nowrap;
	max-width: 100%;
	text-align: center;
	white-space: normal;
}

.index-alt .button span:not(.button-mark) {
	flex: 1 1 auto;
	min-width: 0;
	overflow-wrap: anywhere;
}

.index-alt .screenshot-grid-featured {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.index-alt .screenshot-grid-featured .screenshot-card:first-child {
	grid-column: 1 / -1;
}

@media (max-width: 980px) {
	.site-header {
		gap: 0.75rem;
		min-height: 64px;
		padding: 0 1rem;
	}

	.brand img {
		height: 3.875rem;
		width: 3.875rem;
	}

	.nav-toggle {
		display: inline-grid;
	}

	.site-nav {
		background: rgba(16, 20, 15, 0.98);
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		display: none;
		flex-direction: column;
		left: 0;
		padding: 1rem;
		position: fixed;
		right: 0;
		top: 64px;
	}

	.site-nav.is-open {
		display: flex;
	}

	.site-nav a,
	.site-nav button {
		width: 100%;
	}

	.site-nav .nav-download,
	.site-nav .nav-cta {
		margin-left: 0;
	}

	.hero {
		min-height: 100vh;
		min-height: 100svh;
		padding: 5.5rem 1rem 3.5rem;
	}

	h1 {
		font-size: 4.2rem;
	}

	h2 {
		font-size: 2.1rem;
	}

	.hero-subtitle {
		font-size: 1.15rem;
	}

	.section {
		padding: 4.5rem 1rem;
	}

	.need-grid,
	.format-grid,
	.split,
	.split-reverse,
	.control-layout,
	.control-grid,
	.contact-layout,
	.screenshot-grid {
		grid-template-columns: 1fr;
	}

	.language-toggle {
		height: 40px;
		padding: 0 0.65rem;
	}
}

@media (max-width: 620px) {
	.hero {
		background-position: 63% center;
	}

	.index-alt .hero-alt {
		min-height: 90vh;
		min-height: 90svh;
	}

	.index-alt .hero-content {
		max-width: 18.5rem;
		min-width: 0;
	}

	.index-alt .hero-tagline,
	.index-alt .hero-subtitle {
		overflow-wrap: anywhere;
	}

	.hero-actions,
	.form-actions {
		flex-direction: column;
	}

	.button {
		width: 100%;
	}

	.index-alt .screenshot-grid-featured {
		grid-template-columns: 1fr;
	}

	h1 {
		font-size: 3.25rem;
	}

	h2 {
		font-size: 1.75rem;
	}

	.control-grid,
	.form-grid {
		grid-template-columns: 1fr;
	}

	.site-footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.site-footer p {
		text-align: left;
	}
}
