:root {
	--bg: #0b0714;
	--bg-soft: #130d22;
	--surface: rgba(255, 255, 255, 0.065);
	--surface-strong: rgba(255, 255, 255, 0.1);
	--text: #f8f7fb;
	--muted: #b8b1c8;
	--orange: #ff8b1f;
	--orange-deep: #f15a17;
	--violet: #8b5cf6;
	--cyan: #54d7ff;
	--border: rgba(255, 255, 255, 0.13);
	--shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
	--radius-lg: 28px;
	--radius-md: 18px;
	--container: 1180px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at 12% 10%, rgba(139, 92, 246, 0.12), transparent 28rem),
		linear-gradient(180deg, #0b0714 0%, #10091d 55%, #0b0714 100%);
	color: var(--text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.65;
	overflow-x: hidden;
}

body.nav-open {
	overflow: hidden;
}

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

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

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

button {
	color: inherit;
}

code {
	padding: 0.16rem 0.42rem;
	border: 1px solid var(--border);
	border-radius: 0.4rem;
	background: rgba(255, 255, 255, 0.06);
	font-size: 0.9em;
}

.container {
	width: min(calc(100% - 40px), var(--container));
	margin-inline: auto;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: fixed;
	z-index: 1000;
	left: 20px;
	top: -100px;
	padding: 12px 18px;
	background: var(--orange);
	color: #1d0e04;
	border-radius: 10px;
	font-weight: 800;
	transition: top 0.2s ease;
}

.skip-link:focus {
	top: 20px;
}

.site-header {
	position: fixed;
	z-index: 100;
	inset: 0 0 auto;
	height: 86px;
	display: flex;
	align-items: center;
	border-bottom: 1px solid transparent;
	transition: background-color 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
	background: rgba(11, 7, 20, 0.82);
	border-bottom-color: var(--border);
	backdrop-filter: blur(18px);
}

.nav-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.brand {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.brand img,
.custom-logo {
	width: 210px;
	max-height: 58px;
	object-fit: contain;
}

.primary-nav {
	margin-left: auto;
}

.menu {
	display: flex;
	align-items: center;
	gap: 30px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.menu a {
	position: relative;
	color: #d7d1e0;
	font-size: 0.94rem;
	font-weight: 700;
}

.menu a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: -8px;
	height: 2px;
	background: linear-gradient(90deg, var(--orange), var(--violet));
	transition: right 0.25s ease;
}

.menu a:hover::after,
.menu a:focus-visible::after {
	right: 0;
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	border: 1px solid var(--border);
	border-radius: 12px;
	background: var(--surface);
}

.nav-toggle-line {
	display: block;
	height: 2px;
	margin: 5px 0;
	border-radius: 999px;
	background: #fff;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 54px;
	padding: 0 24px;
	border: 1px solid transparent;
	border-radius: 14px;
	font-weight: 850;
	letter-spacing: -0.01em;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-2px);
}

.button svg {
	width: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.button-primary {
	background: linear-gradient(135deg, #ffad32 0%, var(--orange) 40%, var(--orange-deep) 100%);
	color: #251006;
	box-shadow: 0 16px 40px rgba(241, 90, 23, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
	box-shadow: 0 20px 50px rgba(241, 90, 23, 0.42);
}

.button-secondary,
.button-ghost {
	border-color: var(--border);
	background: rgba(255, 255, 255, 0.055);
	color: #fff;
	backdrop-filter: blur(10px);
}

.button-secondary:hover,
.button-ghost:hover {
	border-color: rgba(255, 139, 31, 0.7);
	background: rgba(255, 139, 31, 0.08);
}

.button-small {
	min-height: 42px;
	padding-inline: 18px;
	font-size: 0.9rem;
}

.hero {
	position: relative;
	min-height: 760px;
	padding: 150px 0 72px;
	overflow: hidden;
	isolation: isolate;
}

.hero::before {
	content: "";
	position: absolute;
	z-index: -2;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 54px 54px;
	mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-glow {
	position: absolute;
	z-index: -1;
	border-radius: 999px;
	filter: blur(90px);
	opacity: 0.34;
	pointer-events: none;
}

.hero-glow-one {
	width: 420px;
	height: 420px;
	right: 4%;
	top: 100px;
	background: var(--violet);
}

.hero-glow-two {
	width: 340px;
	height: 340px;
	left: -100px;
	bottom: 40px;
	background: var(--orange-deep);
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
	align-items: center;
	gap: 48px;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 13px;
	border: 1px solid rgba(255, 139, 31, 0.28);
	border-radius: 999px;
	background: rgba(255, 139, 31, 0.08);
	color: #ffd19e;
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.11em;
}

.status-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--orange);
	box-shadow: 0 0 0 6px rgba(255, 139, 31, 0.12);
}

.hero h1 {
	max-width: 760px;
	margin: 24px 0 20px;
	font-size: clamp(3.5rem, 7vw, 6.9rem);
	line-height: 0.94;
	letter-spacing: -0.075em;
	text-transform: uppercase;
}

.hero h1 > span {
	display: block;
	margin-top: 18px;
	font-size: clamp(1.45rem, 3vw, 2.65rem);
	line-height: 1.08;
	letter-spacing: -0.035em;
	text-transform: none;
	background: linear-gradient(90deg, #fff 0%, #ffbf7e 48%, #a98aff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero-text {
	max-width: 650px;
	margin: 0;
	color: var(--muted);
	font-size: clamp(1rem, 1.5vw, 1.14rem);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 34px;
	margin-top: 40px;
}

.trust-row div {
	display: grid;
	gap: 2px;
}

.trust-row strong {
	color: #fff;
	font-size: 1.08rem;
}

.trust-row span {
	color: var(--muted);
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.hero-art {
	position: relative;
}

.hero-art img {
	width: min(100%, 680px);
	margin-inline: auto;
	filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.5));
	animation: float-visual 7s ease-in-out infinite;
}

@keyframes float-visual {
	0%,
	100% { transform: translateY(0) rotate(-0.25deg); }
	50% { transform: translateY(-16px) rotate(0.35deg); }
}

.ticker {
	overflow: hidden;
	border-block: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.035);
}

.ticker-track {
	display: flex;
	width: max-content;
	align-items: center;
	gap: 28px;
	padding: 15px 0;
	animation: ticker 24s linear infinite;
}

.ticker-track span {
	font-weight: 900;
	font-size: 0.83rem;
	letter-spacing: 0.16em;
	color: #d8d0e7;
}

.ticker-track i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--orange), var(--violet));
}

@keyframes ticker {
	to { transform: translateX(-50%); }
}

.section {
	padding: 110px 0;
}

.section-dark {
	border-block: 1px solid var(--border);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
		radial-gradient(circle at 80% 30%, rgba(139, 92, 246, 0.13), transparent 35rem);
}

.section-heading {
	max-width: 720px;
	margin-bottom: 44px;
}

.section-kicker {
	margin: 0 0 10px;
	color: #ffaf5e;
	font-size: 0.83rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.14em;
}

.section-heading h2,
.split-grid h2,
.cta-box h2 {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3.65rem);
	line-height: 1.05;
	letter-spacing: -0.055em;
}

.section-heading > p:last-child,
.section-copy,
.cta-box p {
	color: var(--muted);
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.feature-card {
	position: relative;
	min-height: 320px;
	padding: 30px;
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background:
		linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
		var(--bg-soft);
	box-shadow: var(--shadow);
	transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature-card::after {
	content: "";
	position: absolute;
	width: 160px;
	height: 160px;
	right: -80px;
	top: -80px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 139, 31, 0.24), transparent 68%);
}

.feature-card:hover {
	transform: translateY(-7px);
	border-color: rgba(255, 139, 31, 0.5);
}

.card-icon {
	display: inline-grid;
	place-items: center;
	width: 56px;
	height: 56px;
	margin-bottom: 52px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(255, 139, 31, 0.18), rgba(139, 92, 246, 0.2));
	font-weight: 950;
	font-size: 1.3rem;
}

.feature-card h3 {
	margin: 0;
	font-size: 1.45rem;
	letter-spacing: -0.035em;
}

.feature-card p {
	color: var(--muted);
}

.feature-card a {
	display: inline-flex;
	gap: 8px;
	margin-top: 16px;
	color: #ffb86f;
	font-weight: 850;
}

.split-grid {
	display: grid;
	grid-template-columns: 1fr 0.88fr;
	align-items: center;
	gap: 80px;
}

.check-list {
	display: grid;
	gap: 14px;
	padding: 0;
	margin: 34px 0 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 34px;
	color: #dfd9e8;
}

.check-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: -1px;
	display: grid;
	place-items: center;
	width: 23px;
	height: 23px;
	border-radius: 50%;
	background: rgba(255, 139, 31, 0.14);
	color: #ffb769;
	font-weight: 900;
}

.stats-panel {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	padding: 18px;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.04);
	box-shadow: var(--shadow);
}

.stat-card {
	min-height: 170px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 24px;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	background: linear-gradient(150deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
}

.stat-card:nth-child(1),
.stat-card:nth-child(4) {
	background: linear-gradient(150deg, rgba(255, 139, 31, 0.15), rgba(255, 255, 255, 0.025));
}

.stat-value {
	font-size: 2.6rem;
	line-height: 1;
	font-weight: 950;
	letter-spacing: -0.07em;
}

.stat-label {
	margin-top: 10px;
	color: var(--muted);
	font-size: 0.84rem;
	text-transform: uppercase;
	letter-spacing: 0.09em;
}

.faq-wrap {
	max-width: 900px;
}

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

.faq-item {
	border: 1px solid var(--border);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.045);
}

.faq-item summary {
	position: relative;
	padding: 22px 58px 22px 24px;
	cursor: pointer;
	list-style: none;
	font-weight: 850;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "+";
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--orange);
	font-size: 1.6rem;
}

.faq-item[open] summary::after {
	content: "−";
}

.faq-item p {
	padding: 0 24px 22px;
	margin: 0;
	color: var(--muted);
}

.cta-section {
	padding: 0 0 110px;
}

.cta-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 36px;
	padding: 54px;
	border: 1px solid rgba(255, 139, 31, 0.26);
	border-radius: 32px;
	background:
		linear-gradient(120deg, rgba(255, 139, 31, 0.15), rgba(139, 92, 246, 0.13)),
		var(--bg-soft);
	box-shadow: var(--shadow);
}

.cta-box > div:first-child {
	max-width: 690px;
}

.cta-actions {
	display: flex;
	gap: 12px;
	flex: 0 0 auto;
}

.site-footer {
	padding: 64px 0 24px;
	border-top: 1px solid var(--border);
	background: #08050e;
}

.footer-grid {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 40px;
}

.footer-logo {
	width: 180px;
}

.footer-grid p {
	max-width: 420px;
	color: var(--muted);
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	font-weight: 750;
	color: #ddd7e8;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 46px;
	padding-top: 22px;
	border-top: 1px solid var(--border);
	color: #8f879d;
	font-size: 0.84rem;
}

.footer-bottom p {
	margin: 0;
}

.content-default {
	min-height: 60vh;
	padding-top: 80px;
}

.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
	.reveal {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 980px) {
	.desktop-login {
		display: none;
	}

	.nav-toggle {
		display: block;
		order: 3;
	}

	.primary-nav {
		position: fixed;
		inset: 86px 20px auto;
		display: none;
		padding: 18px;
		border: 1px solid var(--border);
		border-radius: 18px;
		background: rgba(14, 9, 25, 0.97);
		box-shadow: var(--shadow);
		backdrop-filter: blur(18px);
	}

	.primary-nav.is-open {
		display: block;
	}

	.menu {
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
	}

	.menu a {
		display: block;
		padding: 14px;
		border-radius: 10px;
	}

	.menu a:hover {
		background: var(--surface);
	}

	.hero {
		padding-top: 130px;
	}

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

	.hero-copy {
		text-align: center;
	}

	.hero-text,
	.hero h1 {
		margin-inline: auto;
	}

	.hero-actions,
	.trust-row {
		justify-content: center;
	}

	.hero-art {
		max-width: 650px;
		margin-inline: auto;
	}

	.card-grid {
		grid-template-columns: 1fr;
	}

	.feature-card {
		min-height: 260px;
	}

	.card-icon {
		margin-bottom: 30px;
	}

	.split-grid {
		grid-template-columns: 1fr;
		gap: 46px;
	}

	.cta-box {
		align-items: flex-start;
		flex-direction: column;
	}

	.cta-actions {
		width: 100%;
	}

	.cta-actions .button {
		flex: 1;
	}
}

@media (max-width: 640px) {
	.container {
		width: min(calc(100% - 28px), var(--container));
	}

	.site-header {
		height: 74px;
	}

	.brand img,
	.custom-logo {
		width: 170px;
	}

	.primary-nav {
		inset: 74px 14px auto;
	}

	.hero {
		min-height: auto;
		padding: 118px 0 58px;
	}

	.hero h1 {
		font-size: clamp(3rem, 17vw, 4.7rem);
	}

	.hero-actions {
		display: grid;
	}

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

	.trust-row {
		gap: 20px;
	}

	.section {
		padding: 78px 0;
	}

	.stats-panel {
		grid-template-columns: 1fr;
	}

	.stat-card {
		min-height: 130px;
	}

	.cta-section {
		padding-bottom: 78px;
	}

	.cta-box {
		padding: 30px 22px;
	}

	.cta-actions {
		display: grid;
	}

	.footer-grid,
	.footer-bottom {
		flex-direction: column;
	}

	.footer-bottom {
		align-items: flex-start;
	}
}
