:root {
	--ink: #f7efe3;
	--muted: #c7beb2;
	--paper: #111d1a;
	--paper-2: #17241f;
	--line: rgba(247, 239, 227, 0.16);
	--ember: #f17b22;
	--amber: #f3b45a;
	--moss: #8fae66;
	--fjord: #7fb7b3;
	--shadow: rgba(0, 0, 0, 0.45);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--ink);
	background: #08100f;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-width: 320px;
	background: var(--paper);
	color: var(--ink);
	letter-spacing: 0;
}

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

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

.site-header {
	position: fixed;
	z-index: 20;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 14px clamp(18px, 4vw, 52px);
	border-bottom: 1px solid rgba(247, 239, 227, 0.1);
	background: rgba(8, 16, 15, 0.78);
	backdrop-filter: blur(16px);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 800;
}

.brand img {
	width: 44px;
	height: 44px;
	object-fit: contain;
	filter: drop-shadow(0 8px 18px var(--shadow));
}

.site-header nav {
	display: flex;
	align-items: center;
	gap: clamp(14px, 3vw, 28px);
	color: var(--muted);
	font-size: 0.95rem;
}

.site-header nav a:hover {
	color: var(--ink);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: clamp(14px, 3vw, 28px);
}

.language-switch {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 4px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: rgba(247, 239, 227, 0.08);
}

.language-switch button {
	min-width: 38px;
	height: 30px;
	border: 0;
	border-radius: 6px;
	background: transparent;
	color: var(--muted);
	cursor: pointer;
	font: inherit;
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0;
}

.language-switch button[aria-pressed="true"] {
	background: var(--ember);
	color: #180b05;
}

.hero {
	position: relative;
	min-height: 86vh;
	display: grid;
	align-items: end;
	overflow: hidden;
	padding: 92px clamp(18px, 5vw, 72px) 38px;
}

.hero-media,
.hero-shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero-media {
	object-fit: cover;
	object-position: center 58%;
	transform: scale(1.02);
}

.hero-shade {
	background:
		linear-gradient(90deg, rgba(8, 16, 15, 0.98) 0%, rgba(8, 16, 15, 0.82) 38%, rgba(8, 16, 15, 0.34) 100%),
		linear-gradient(0deg, #08100f 0%, rgba(8, 16, 15, 0.08) 34%);
}

.hero-content {
	position: relative;
	z-index: 1;
	width: min(740px, 100%);
}

.app-mark {
	width: clamp(84px, 12vw, 112px);
	height: clamp(84px, 12vw, 112px);
	object-fit: contain;
	margin-bottom: 14px;
	filter: drop-shadow(0 18px 26px var(--shadow));
}

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

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

h1 {
	margin-bottom: 14px;
	font-size: clamp(3.2rem, 8vw, 5.8rem);
	line-height: 0.9;
	letter-spacing: 0;
	text-shadow: 0 18px 34px var(--shadow);
}

.hero-copy {
	max-width: 680px;
	margin-bottom: 22px;
	color: #e6ddd0;
	font-size: clamp(1rem, 1.8vw, 1.18rem);
	line-height: 1.6;
}

.actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 24px;
}

.primary-action,
.secondary-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	border-radius: 8px;
	font-weight: 800;
}

.primary-action {
	background: var(--ember);
	color: #180b05;
	box-shadow: 0 14px 34px rgba(241, 123, 34, 0.26);
}

.primary-action:hover {
	background: var(--amber);
}

.secondary-action {
	border: 1px solid var(--line);
	color: var(--ink);
	background: rgba(247, 239, 227, 0.08);
}

.secondary-action:hover {
	border-color: rgba(247, 239, 227, 0.34);
	background: rgba(247, 239, 227, 0.12);
}

.quick-facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 150px));
	gap: 12px;
	margin: 0;
}

.quick-facts div {
	border-left: 2px solid var(--moss);
	padding-left: 14px;
}

.quick-facts dt {
	color: var(--muted);
	font-size: 0.75rem;
	text-transform: uppercase;
}

.quick-facts dd {
	margin: 4px 0 0;
	font-size: 1.1rem;
	font-weight: 900;
}

.section {
	padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.section-inner {
	width: min(1180px, 100%);
	margin: 0 auto;
}

.split {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
	gap: clamp(28px, 7vw, 88px);
	align-items: start;
}

h2 {
	margin-bottom: 18px;
	font-size: clamp(2rem, 5vw, 4rem);
	line-height: 1.04;
	letter-spacing: 0;
}

.intro {
	padding-top: clamp(38px, 5vw, 72px);
	background: #08100f;
}

.intro p:not(.eyebrow),
.support p {
	color: var(--muted);
	font-size: 1.08rem;
	line-height: 1.8;
}

.feature-band {
	background: var(--paper-2);
}

.section-heading {
	width: min(760px, 100%);
	margin-bottom: clamp(30px, 5vw, 54px);
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.feature-grid article {
	min-height: 250px;
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: rgba(247, 239, 227, 0.045);
}

.feature-grid span {
	display: inline-flex;
	margin-bottom: 56px;
	color: var(--fjord);
	font-weight: 900;
}

.feature-grid h3 {
	margin-bottom: 12px;
	font-size: 1.24rem;
}

.feature-grid p {
	margin-bottom: 0;
	color: var(--muted);
	line-height: 1.65;
}

.showcase {
	background: #0d1715;
}

.phone-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(16px, 3vw, 28px);
	align-items: start;
}

.phone-row figure {
	margin: 0;
}

.phone-row img {
	width: min(100%, 340px);
	aspect-ratio: 9 / 19.5;
	object-fit: cover;
	margin: 0 auto;
	border: 1px solid rgba(247, 239, 227, 0.18);
	border-radius: 8px;
	background: #020504;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.phone-row figcaption {
	margin-top: 14px;
	color: var(--muted);
	text-align: center;
	font-weight: 800;
}

.support {
	position: relative;
	overflow: hidden;
	background: #08100f;
}

.support-media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.28;
}

.support::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #08100f 0%, rgba(8, 16, 15, 0.9) 50%, rgba(8, 16, 15, 0.58) 100%);
}

.support-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(260px, 360px);
	gap: clamp(28px, 7vw, 76px);
	align-items: center;
}

.contact-list {
	display: grid;
	gap: 12px;
}

.contact-list a {
	padding: 16px 18px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: rgba(247, 239, 227, 0.08);
	color: var(--ink);
	font-weight: 800;
	overflow-wrap: anywhere;
}

.contact-list a:hover {
	border-color: rgba(247, 239, 227, 0.34);
}

footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 28px clamp(18px, 5vw, 72px);
	border-top: 1px solid var(--line);
	background: #060b0a;
	color: var(--muted);
	font-size: 0.92rem;
}

footer p {
	margin: 0;
	max-width: 820px;
}

footer a {
	color: var(--amber);
	font-weight: 800;
}

@media (max-width: 900px) {
	.site-header {
		position: absolute;
	}

	.site-header nav {
		display: none;
	}

	.header-actions {
		gap: 0;
	}

	.hero {
		min-height: auto;
		padding-top: 92px;
	}

	.hero-shade {
		background:
			linear-gradient(0deg, #08100f 0%, rgba(8, 16, 15, 0.18) 42%),
			linear-gradient(90deg, rgba(8, 16, 15, 0.92) 0%, rgba(8, 16, 15, 0.42) 100%);
	}

	.split,
	.support-inner {
		grid-template-columns: 1fr;
	}

	.feature-grid,
	.phone-row {
		grid-template-columns: 1fr;
	}

	.feature-grid article {
		min-height: auto;
	}

	.feature-grid span {
		margin-bottom: 28px;
	}

	.phone-row img {
		width: min(100%, 310px);
	}
}

@media (max-width: 560px) {
	.hero {
		padding: 112px 20px 30px;
	}

	h1 {
		font-size: 3rem;
	}

	.hero-copy {
		line-height: 1.55;
	}

	.actions {
		display: grid;
		margin-bottom: 20px;
	}

	.primary-action,
	.secondary-action {
		width: 100%;
	}

	.quick-facts {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 8px;
	}

	.quick-facts div {
		min-height: 48px;
		padding-left: 10px;
	}

	.quick-facts dt {
		font-size: 0.66rem;
	}

	.quick-facts dd {
		font-size: 0.94rem;
	}
}
