@font-face {
	font-family: 'Cinzel';
	src: url('../../Media/Fonts/Cinzel-VariableFont_wght.ttf') format('truetype');
	font-weight: 400 700;
	font-style: normal;
	font-display: swap;
}

:root {
	--color-bg: #1a1a1a;
	--color-accent-maroon: #5a1818;
	--color-accent-violet: #3a1c66;
	--color-text: #ffffff;
	--color-surface: rgba(255, 255, 255, 0.04);
	--color-surface-strong: rgba(255, 255, 255, 0.07);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	font-family: 'Aptos', 'Segoe UI', sans-serif;
	line-height: 1.5;
	background-color: var(--color-bg);
	color: var(--color-text);
	background-image:
		radial-gradient(circle at top left, rgba(90, 24, 24, 0.18), transparent 34%),
		radial-gradient(circle at bottom right, rgba(58, 28, 102, 0.18), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.02));
	overflow-x: hidden;
}

a {
	color: inherit;
}

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

.site-shell {
	width: min(1160px, calc(100% - 2rem));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	backdrop-filter: blur(18px);
	background: rgba(26, 26, 26, 0.76);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 0;
}

.brand-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.brand-link img {
	width: 112px;
	height: auto;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	flex-wrap: wrap;
}

.site-nav a {
	text-decoration: none;
	font-size: 0.9rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.86);
	transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
	color: #fff;
	transform: translateY(-1px);
}

.hero {
	padding: 4rem 0 2rem;
	min-height: calc(100vh - 84px);
	min-height: calc(100svh - 84px);
	display: flex;
	align-items: center;
}

.hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
	gap: 3rem;
	align-items: center;
}

.hero__copy {
	max-width: 680px;
}

.eyebrow,
.section-label {
	margin: 0 0 1rem;
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.hero h1 {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	align-items: baseline;
	margin: 0;
	font-family: 'Cinzel', serif;
	font-size: clamp(3rem, 8vw, 6.25rem);
	line-height: 0.92;
	text-wrap: balance;
}

.brand-name {
	font-weight: 700;
	color: var(--color-text);
}

.brand-tech {
	font-weight: 400;
	color: rgba(255, 255, 255, 0.84);
}

.hero__text {
	max-width: 56ch;
	margin: 1.45rem 0 0;
	font-size: 1.08rem;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.82);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 1.35rem;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 700;
	letter-spacing: 0.01em;
	transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.button:hover {
	transform: translateY(-1px);
}

.button--solid {
	background: linear-gradient(135deg, var(--color-accent-maroon), var(--color-accent-violet));
	color: #fff;
	box-shadow: 0 18px 40px rgba(58, 28, 102, 0.26);
}

.button--ghost {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: var(--color-text);
}

.hero-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	padding: 0;
	margin: 1.5rem 0 0;
	list-style: none;
}

.hero-tags li {
	padding: 0.55rem 0.9rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.09);
	font-size: 0.82rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.9);
}

.hero__visual {
	display: grid;
	gap: 1rem;
}

.hero__panel,
.identity-grid article,
.system-card,
.feature-card,
.contact-card {
	border-radius: 1.5rem;
	background: var(--color-surface);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.hero__panel {
	padding: 1.25rem;
}

.hero__panel--logo {
	text-align: center;
	padding: 1.8rem 1.5rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.hero__panel--logo img {
	width: min(100%, 420px);
	margin: 0 auto;
}

.hero__panel p,
.feature-card p,
.identity-grid p,
.contact-card p,
.section-heading p {
	margin: 0;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.82);
}

.section {
	padding: 5rem 0;
}

.section--alt {
	background: rgba(255, 255, 255, 0.02);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-heading {
	max-width: 760px;
	margin-bottom: 1.6rem;
}

.section-heading h2 {
	margin: 0 0 0.8rem;
	font-family: 'Cinzel', serif;
	font-size: clamp(2rem, 4vw, 3.1rem);
	line-height: 1.05;
	text-wrap: balance;
}

.section-heading p {
	font-size: 1.02rem;
}

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

.identity-grid article,
.feature-card,
.contact-card {
	padding: 1.4rem;
}

.identity-grid h3,
.system-card h3,
.feature-card h3,
.contact-card h2 {
	margin: 0 0 0.75rem;
	font-family: 'Cinzel', serif;
}

.identity-grid article {
	background: rgba(255, 255, 255, 0.04);
}

.feature-card {
	background: rgba(255, 255, 255, 0.04);
}

.contact-card {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	background: linear-gradient(135deg, rgba(90, 24, 24, 0.22), rgba(58, 28, 102, 0.18));
}

.contact-card h2 {
	max-width: 22ch;
	font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.contact-card__copy {
	max-width: 34rem;
	flex: 1 1 26rem;
}

.contact-card__copy p:last-child {
	margin-top: 0.75rem;
	color: rgba(255, 255, 255, 0.72);
}

.contact-list {
	display: grid;
	gap: 0.9rem;
	min-width: min(100%, 18rem);
	flex: 1 1 18rem;
}

.contact-list a {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding: 1rem 1.1rem;
	border-radius: 1rem;
	text-decoration: none;
	background: rgba(0, 0, 0, 0.16);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.contact-list a:hover {
	transform: translateY(-1px);
	border-color: rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.05);
}

.contact-list span {
	font-size: 0.74rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.66);
}

.contact-list strong {
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
}

@media (max-width: 980px) {
	.hero__grid,
	.identity-grid,
	.feature-grid {
		grid-template-columns: 1fr;
	}

	.hero {
		padding-top: 2.25rem;
	}

	.hero__panel--stack {
		grid-template-columns: 1fr;
	}

	.contact-card {
		align-items: flex-start;
		flex-direction: column;
	}

	.contact-list {
		width: 100%;
	}

	body {
		background-attachment: scroll;
	}
}

@media (max-width: 720px) {
	.site-header__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.site-nav {
		gap: 0.9rem;
	}

	.brand-link img {
		width: 96px;
	}

	.hero__panel,
	.identity-grid article,
	.feature-card,
	.contact-card {
		padding: 1.1rem;
	}
}
