:root {
	--ink: #0a2540;
	--ink-soft: #14345a;
	--navy: #0a2540;
	--orange: #f28c00;
	--teal: #0f766e;
	--teal-deep: #0b5c56;
	--mint: #d7ebe7;
	--fog: #eef5f3;
	--paper: #f7faf9;
	--line: rgba(10, 37, 64, 0.12);
	--white: #ffffff;
	--text: #2a454a;
	--muted: #5a7378;
	--font-display: "Fraunces", Georgia, serif;
	--font-body: "Manrope", "Segoe UI", sans-serif;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--text);
	background:
		radial-gradient(1200px 600px at 10% -10%, rgba(15, 118, 110, 0.08), transparent 60%),
		radial-gradient(900px 500px at 100% 0%, rgba(12, 36, 40, 0.05), transparent 55%),
		var(--paper);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

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

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

.skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	background: var(--ink);
	color: #fff;
	padding: 0.75rem 1rem;
	z-index: 2000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.wrap {
	width: min(1120px, calc(100% - 2.5rem));
	margin-inline: auto;
}

.wrap.narrow { width: min(720px, calc(100% - 2.5rem)); }

/* Header */
.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 100;
	background: rgba(247, 250, 249, 0.78);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
	background: rgba(247, 250, 249, 0.94);
	border-bottom-color: var(--line);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 4.5rem;
	gap: 1rem;
}

.brand-link,
.footer-brand-link {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	min-width: 0;
}

.brand-icon {
	width: 2.65rem;
	height: 2.65rem;
	border-radius: 0.65rem;
	object-fit: cover;
	flex-shrink: 0;
}

.brand-wordmark {
	font-family: var(--font-body);
	font-size: 1.02rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--orange);
	line-height: 1.1;
	white-space: nowrap;
}
.brand-wordmark em {
	font-style: normal;
	color: var(--navy);
}

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

.site-nav > a:not(.btn) {
	font-size: 0.92rem;
	font-weight: 500;
	color: var(--ink-soft);
	opacity: 0.88;
	transition: opacity 0.2s;
}
.site-nav > a:not(.btn):hover { opacity: 1; color: var(--teal); }

.nav-toggle {
	display: none;
	width: 2.5rem;
	height: 2.5rem;
	border: 0;
	background: transparent;
	cursor: pointer;
	padding: 0;
}
.nav-toggle span {
	display: block;
	height: 2px;
	width: 1.35rem;
	margin: 0.35rem auto;
	background: var(--ink);
	transition: transform 0.3s var(--ease);
}
.nav-toggle.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.7rem 1.15rem;
	border-radius: 0.45rem;
	font-family: var(--font-body);
	font-size: 0.92rem;
	font-weight: 600;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 0.95rem 1.4rem; font-size: 1rem; }

.btn-solid {
	background: var(--teal);
	color: #fff;
}
.btn-solid:hover { background: var(--teal-deep); }

.btn-light {
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.45);
}
.btn-light:hover { background: rgba(255, 255, 255, 0.28); }

.btn-ghost {
	background: transparent;
	color: var(--ink);
	border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

.btn-ghost-dark {
	background: transparent;
	color: var(--ink);
	border-color: rgba(12, 36, 40, 0.22);
}
.btn-ghost-dark:hover { border-color: var(--teal); color: var(--teal); }

/* Hero — full bleed */
.hero {
	position: relative;
	min-height: 100svh;
	display: grid;
	align-items: end;
	padding: 7.5rem 0 4.5rem;
	color: #fff;
	overflow: hidden;
}

.hero-media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 40%;
	transform: scale(1.06);
	animation: heroDrift 18s var(--ease) infinite alternate;
}

.hero-veil {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(12, 36, 40, 0.35) 0%, rgba(12, 36, 40, 0.55) 45%, rgba(12, 36, 40, 0.88) 100%),
		linear-gradient(90deg, rgba(12, 36, 40, 0.55) 0%, rgba(12, 36, 40, 0.2) 70%);
}

.hero-copy {
	position: relative;
	z-index: 2;
	max-width: 42rem;
	padding-bottom: 0.5rem;
}

.hero-logo {
	width: min(100%, 28rem);
	height: auto;
	margin: 0 0 1.35rem;
	filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.28));
}

.hero h1 {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(1.45rem, 3.2vw, 2.05rem);
	line-height: 1.25;
	letter-spacing: -0.015em;
	margin: 0 0 1rem;
	max-width: 20ch;
	color: rgba(255, 255, 255, 0.96);
}

.hero-lead {
	margin: 0 0 1.75rem;
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.86);
	max-width: 34rem;
}

.hero-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

@keyframes heroDrift {
	from { transform: scale(1.06) translate3d(0, 0, 0); }
	to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

/* Sections */
.section {
	padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section h2 {
	font-family: var(--font-display);
	font-weight: 650;
	font-size: clamp(1.8rem, 3.5vw, 2.55rem);
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--ink);
	margin: 0 0 0.85rem;
}

.section-lead,
.section-intro p,
.how-copy p {
	color: var(--muted);
	font-size: 1.05rem;
	margin: 0;
}

.section-intro {
	max-width: 36rem;
	margin-bottom: 2.5rem;
}

.product-intro {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: center;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.product-copy .section-lead { margin-top: 0.75rem; }

.product-brand {
	margin: 0;
	display: grid;
	place-items: center;
}

.product-brand img {
	width: min(100%, 22rem);
	height: auto;
}

.product-stage {
	border-radius: 1.25rem;
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--fog);
}

.product-shot img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	filter: saturate(0.92) contrast(1.02);
}

/* Modules — rows, not card grid clutter */
.module-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	border-top: 1px solid var(--line);
}

.module-list li {
	display: grid;
	gap: 0.45rem;
	padding: 1.6rem 1.35rem 1.6rem 0;
	border-bottom: 1px solid var(--line);
}

.module-list li:nth-child(odd) { padding-right: 2rem; border-right: 1px solid var(--line); }
.module-list li:nth-child(even) { padding-left: 2rem; }

.module-list strong {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 650;
	color: var(--ink);
}

.module-list span {
	color: var(--muted);
	font-size: 0.98rem;
}

/* How */
.how {
	background:
		linear-gradient(180deg, transparent, rgba(215, 235, 231, 0.55) 30%, rgba(215, 235, 231, 0.35));
}

.how-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}

.how-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1.35rem;
}

.how-steps li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
	align-items: start;
}

.step-n {
	font-family: var(--font-display);
	font-size: 1.35rem;
	color: var(--teal);
	line-height: 1;
	padding-top: 0.15rem;
}

.how-steps strong {
	display: block;
	font-size: 1.05rem;
	color: var(--ink);
	margin-bottom: 0.25rem;
}

.how-steps p {
	margin: 0;
	color: var(--muted);
	font-size: 0.95rem;
}

/* CTA */
.cta-panel {
	padding: clamp(2.5rem, 5vw, 3.75rem);
	background:
		linear-gradient(135deg, rgba(15, 118, 110, 0.1), transparent 45%),
		linear-gradient(180deg, #fff, var(--fog));
	border: 1px solid var(--line);
	border-radius: 1.25rem;
}

.cta-logo {
	width: min(100%, 18rem);
	height: auto;
	margin: 0 0 1.25rem;
}

.cta-panel h2 {
	max-width: 18ch;
	margin-bottom: 0.75rem;
}

.cta-panel > p {
	max-width: 34rem;
	color: var(--muted);
	margin: 0 0 1.5rem;
}

/* Footer */
.site-footer {
	padding: 3rem 0 2rem;
	border-top: 1px solid var(--line);
	background: #fff;
}

.footer-inner {
	display: grid;
	gap: 1.5rem;
}

.footer-brand {
	display: grid;
	gap: 0.85rem;
}

.footer-brand p {
	margin: 0;
	color: var(--muted);
	font-size: 0.92rem;
}

.footer-links a {
	display: inline-block;
	margin-right: 1.25rem;
	color: var(--ink-soft);
	font-weight: 500;
	font-size: 0.92rem;
}
.footer-links a:hover { color: var(--teal); }

.copy {
	margin-top: 0.5rem !important;
	font-size: 0.82rem !important;
	opacity: 0.85;
}

/* Reveal motion */
.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in {
	opacity: 1;
	transform: none;
}
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
	.hero-media img { animation: none; transform: none; }
	.reveal { opacity: 1; transform: none; transition: none; }
	html { scroll-behavior: auto; }
}

/* Responsive */
@media (max-width: 900px) {
	.product-intro { grid-template-columns: 1fr; }
	.product-brand { justify-items: start; }
	.module-list { grid-template-columns: 1fr; }
	.module-list li:nth-child(odd),
	.module-list li:nth-child(even) {
		padding: 1.35rem 0;
		border-right: 0;
	}
	.how-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
	.nav-toggle { display: block; }
	.brand-wordmark { font-size: 0.95rem; }

	.site-nav {
		position: fixed;
		inset: 4.5rem 1rem auto;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0.35rem;
		padding: 1rem;
		background: #fff;
		border: 1px solid var(--line);
		border-radius: 0.85rem;
		box-shadow: 0 18px 40px rgba(12, 36, 40, 0.12);
	}
	.site-nav.open { display: flex; }
	.site-nav > a:not(.btn) {
		padding: 0.7rem 0.5rem;
		border-bottom: 1px solid var(--line);
	}
	.site-nav .btn { width: 100%; margin-top: 0.25rem; }

	.hero {
		min-height: 92svh;
		padding: 6.5rem 0 3rem;
		align-items: end;
	}
	.hero-logo { width: min(100%, 20rem); }
	.hero h1 { max-width: none; }
	.cta-panel { padding: 2rem 1.35rem; }
}
