:root {
	--bg: #1f1e1e;
	--bg-2: #242322;
	--bg-3: #2a2928;
	--panel: #262524;
	--border: #383636;
	--border-2: #403e3d;
	--text: #ffffff;
	--text-2: #aeaeae;
	--muted: #8a8886;
	--orange: #ff4c00;
	--green: #36f097;
	--pending: #ffb946;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	background: var(--bg);
	color: var(--text);
	font-family:
		"Inter",
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		sans-serif;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
h1,
h2,
h3 {
	font-family: "Poppins", "Inter", sans-serif;
}
a {
	color: inherit;
	text-decoration: none;
}
.wrap {
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 32px;
}

/* ── Premium website intro ── */
body.intro-running {
	overflow: hidden;
}

.site-shell {
	min-height: 100vh;
	opacity: 0;
	transform: scale(1.008);
	transform-origin: 50% 20%;
	transition:
		opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
		transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}
body.intro-revealing .site-shell,
body.intro-complete .site-shell {
	opacity: 1;
	transform: scale(1);
}

.site-intro {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	isolation: isolate;
	overflow: hidden;
	background: #1f1e1e;
	color: #fff;
	opacity: 1;
	visibility: visible;
}
.site-intro::before {
	content: "";
	position: absolute;
	inset: -30%;
	z-index: -2;
	background:
		radial-gradient(
			circle at 50% 43%,
			rgba(255, 255, 255, 0.035),
			transparent 31%
		),
		radial-gradient(
			circle at 50% 48%,
			rgba(255, 76, 0, 0.04),
			transparent 20%
		);
	opacity: 0;
	transform: scale(0.84);
	animation: introAtmosphere 2400ms cubic-bezier(0.16, 1, 0.3, 1) 100ms
		both;
}
.site-intro::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	opacity: 0.11;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
	mix-blend-mode: soft-light;
}
.site-intro__content {
	width: min(760px, calc(100vw - 48px));
	display: grid;
	justify-items: center;
	text-align: center;
	transform: translateZ(0);
}
.site-intro__logo-wrap {
	width: min(440px, 72vw);
	margin-bottom: clamp(42px, 6.5vh, 70px);
	opacity: 0;
	filter: blur(16px);
	transform: translateY(14px) scale(0.982);
	animation: introRevealLogo 1250ms cubic-bezier(0.16, 1, 0.3, 1) 250ms
		both;
	will-change: opacity, transform, filter;
}
.intro__logo {
	display: block;
	width: 100%;
	height: auto;
	overflow: visible;
	filter: drop-shadow(0 22px 45px rgba(0, 0, 0, 0.18));
}
.site-intro__copy-mask {
	width: 100%;
	overflow: hidden;
	padding: 0.12em 0 0.28em;
}
.site-intro__copy-mask--text {
	max-width: 590px;
	margin-top: 4px;
	padding: 0.08em 0 0.12em;
}
.site-intro__heading,
.site-intro__text {
	margin: 0;
	opacity: 1;
	transform: translateY(115%);
	will-change: transform;
}
.site-intro__heading {
	font-family: "Poppins", "Inter", sans-serif;
	font-size: clamp(29px, 4.1vw, 52px);
	font-weight: 500;
	letter-spacing: -0.045em;
	line-height: 1.12;
	animation: introSlideCopyIn 900ms cubic-bezier(0.16, 1, 0.3, 1) 1320ms
		both;
}
.site-intro__text {
	color: rgba(255, 255, 255, 0.58);
	font-size: clamp(14px, 1.5vw, 18px);
	font-weight: 400;
	letter-spacing: -0.012em;
	line-height: 1.55;
	animation: introSlideCopyIn 900ms cubic-bezier(0.16, 1, 0.3, 1) 1600ms
		both;
}
.site-intro__accent {
	position: absolute;
	left: 50%;
	bottom: clamp(28px, 5vh, 52px);
	width: 28px;
	height: 1px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.13);
	opacity: 0;
	transform: translateX(-50%);
	animation: introAccentIn 800ms cubic-bezier(0.16, 1, 0.3, 1) 2150ms both;
}
.site-intro__accent::after {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--orange);
	transform: translateX(-105%);
	animation: introAccentSweep 1200ms cubic-bezier(0.76, 0, 0.24, 1) 2250ms
		both;
}
.site-intro.is-exiting .site-intro__heading {
	animation: introSlideCopyOut 650ms cubic-bezier(0.76, 0, 0.24, 1) both;
}
.site-intro.is-exiting .site-intro__text {
	animation: introSlideCopyOut 650ms cubic-bezier(0.76, 0, 0.24, 1) 80ms
		both;
}
.site-intro.is-exiting .site-intro__logo-wrap {
	animation: introLogoOut 620ms cubic-bezier(0.76, 0, 0.24, 1) 130ms both;
}
.site-intro.is-exiting .site-intro__accent {
	animation: introAccentOut 380ms ease both;
}
.site-intro.is-exiting {
	animation: introLayerOut 720ms cubic-bezier(0.76, 0, 0.24, 1) 650ms both;
	pointer-events: none;
}
.site-intro.is-hidden {
	display: none;
}

@keyframes introAtmosphere {
	from {
		opacity: 0;
		transform: scale(0.84);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}
@keyframes introRevealLogo {
	from {
		opacity: 0;
		filter: blur(16px);
		transform: translateY(14px) scale(0.982);
	}
	to {
		opacity: 1;
		filter: blur(0);
		transform: translateY(0) scale(1);
	}
}
@keyframes introSlideCopyIn {
	from {
		transform: translateY(115%);
	}
	to {
		transform: translateY(0);
	}
}
@keyframes introSlideCopyOut {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(-115%);
	}
}
@keyframes introLogoOut {
	from {
		opacity: 1;
		filter: blur(0);
		transform: translateY(0) scale(1);
	}
	to {
		opacity: 0;
		filter: blur(10px);
		transform: translateY(-10px) scale(0.99);
	}
}
@keyframes introAccentIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes introAccentSweep {
	0% {
		transform: translateX(-105%);
	}
	52% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(105%);
	}
}
@keyframes introAccentOut {
	to {
		opacity: 0;
	}
}
@keyframes introLayerOut {
	0% {
		opacity: 1;
		visibility: visible;
	}
	99% {
		opacity: 0;
		visibility: visible;
	}
	100% {
		opacity: 0;
		visibility: hidden;
	}
}

@media (max-width: 640px) {
	.site-intro__content {
		width: min(100% - 36px, 620px);
	}

	.site-intro__logo-wrap {
		width: min(340px, 76vw);
		margin-bottom: 42px;
	}

	.site-intro__text {
		max-width: 250px;
		margin-inline: auto;
		text-align: center;
	}
}

/* ── Header ── */
header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: transparent;
	border-bottom: 1px solid transparent;
	transition:
		background 0.25s ease,
		border-color 0.25s ease,
		backdrop-filter 0.25s ease;
}
header.scrolled {
	background: rgba(31, 30, 30, 0.88);
	backdrop-filter: blur(12px);
	border-bottom-color: var(--border);
}
.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 68px;
}
.nav .logo svg {
	height: 32px;
	width: auto;
	display: block;
}
.nav-links {
	display: flex;
	align-items: center;
	gap: 32px;
}
.nav-links a {
	color: var(--text-2);
	font-size: 14px;
	font-weight: 500;
	transition: color 0.15s;
}
.nav-links a:hover {
	color: var(--text);
}
.nav-links a.btn-orange,
.nav-links a.btn-orange:hover {
	color: #fff;
}
.btn {
	display: inline-block;
	padding: 10px 22px;
	border-radius: 50px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	border: none;
	transition:
		filter 0.15s,
		background 0.15s,
		opacity 0.15s;
}
.btn:disabled {
	cursor: wait;
	opacity: 0.72;
}
.btn-orange {
	background: var(--orange);
	color: #fff;
}
.btn-orange:hover {
	filter: brightness(1.12);
}
.btn-ghost {
	background: transparent;
	color: var(--text);
	border: 1px solid var(--border-2);
}
.btn-ghost:hover {
	background: var(--bg-3);
}

/* ── Hero ── */
.hero {
	margin-top: -68px;
	padding: 164px 0 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(
			ellipse 60% 45% at 50% -10%,
			rgba(255, 76, 0, 0.1),
			transparent
		),
		radial-gradient(
			ellipse 40% 32% at 85% 20%,
			rgba(255, 255, 255, 0.04),
			transparent
		);
}
.hero > .wrap {
	position: relative;
}
.eyebrow {
	display: inline-block;
	margin-bottom: 20px;
	padding: 6px 14px;
	border: 1px solid var(--border-2);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: var(--pending);
	background: var(--bg-2);
}
.hero h1 {
	font-size: clamp(36px, 5.5vw, 58px);
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: -0.01em;
	max-width: 960px;
	margin: 0 auto;
}
.hero h1 em {
	font-style: normal;
	color: var(--orange);
}
.hero .sub {
	max-width: 760px;
	margin: 22px auto 0;
	font-size: 19px;
	font-weight: 300;
	color: var(--text-2);
}
.hero .cta-row {
	margin-top: 36px;
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}
.hero .note {
	margin-top: 16px;
	font-size: 13px;
	color: var(--muted);
}

/* ── Sections ── */
section {
	padding: 80px 0;
}
section.alt {
	background: var(--bg-2);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}
.sec-head {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 48px;
}
.kicker {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 10px;
}
.sec-head h2 {
	font-size: clamp(26px, 3.4vw, 36px);
	font-weight: 600;
	letter-spacing: -0.01em;
}
.sec-head p {
	margin-top: 12px;
	color: var(--text-2);
	font-size: 16px;
}

/* ── Feature grid ── */
.grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.card {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 28px 26px;
	transition:
		border-color 0.15s,
		transform 0.15s;
}
.card:hover {
	border-color: #4a4a4a;
	transform: translateY(-2px);
}
.card .icon {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	color: var(--orange);
	background: var(--bg-3);
	border: 1px solid var(--border-2);
}
.card .icon svg {
	width: 22px;
	height: 22px;
	display: block;
}
.card h3 {
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 8px;
}
.card p {
	font-size: 14px;
	color: var(--text-2);
}

/* ── Suite ── */
.suite-core {
	background:
		linear-gradient(
			135deg,
			rgba(255, 76, 0, 0.12),
			rgba(255, 76, 0, 0.04)
		),
		var(--panel);
	border: 1px solid var(--orange);
	border-radius: 14px;
	padding: 30px 28px;
	margin-bottom: 20px;
	display: flex;
	gap: 24px;
	align-items: flex-start;
	flex-wrap: wrap;
}
.suite-core .tag {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	background: var(--orange);
	color: #fff;
	border-radius: 999px;
	padding: 4px 12px;
}
.suite-core h3 {
	font-size: 20px;
	margin: 10px 0 6px;
}
.suite-core p {
	color: var(--text-2);
	font-size: 14px;
	max-width: 560px;
}
.suite-core .pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 14px;
}
.pill {
	font-size: 12px;
	color: var(--text-2);
	border: 1px solid var(--border-2);
	border-radius: 999px;
	padding: 4px 12px;
	background: var(--bg-2);
}
.suite-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.addon {
	position: relative;
}
.addon .kind {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--pending);
	margin-bottom: 10px;
}
.addon.reco .kind {
	color: var(--green);
}

/* ── How it works ── */
.steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	counter-reset: step;
}
.step {
	text-align: left;
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 28px 26px;
}
.step .num {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--orange);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 15px;
	margin-bottom: 16px;
	font-family: "Poppins", sans-serif;
}
.step h3 {
	font-size: 16px;
	margin-bottom: 8px;
}
.step p {
	font-size: 14px;
	color: var(--text-2);
}
.steps-note {
	text-align: center;
	margin-top: 28px;
	font-size: 14px;
	color: var(--muted);
}
.steps-note strong {
	color: var(--text-2);
	font-weight: 600;
}

/* ── Request access ── */
.req {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 56px;
	align-items: start;
}
.req-copy h2 {
	font-size: clamp(26px, 3.2vw, 34px);
	font-weight: 600;
	margin-bottom: 14px;
	letter-spacing: -0.01em;
}
.req-copy p {
	color: var(--text-2);
	font-size: 15px;
	margin-bottom: 18px;
}
.req-copy ul {
	list-style: none;
	margin-top: 8px;
}
.req-copy li {
	font-size: 14px;
	color: var(--text-2);
	padding: 7px 0 7px 28px;
	position: relative;
}
.req-copy li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--green);
	font-weight: 700;
}
form.req-form {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 32px;
}
.field {
	margin-bottom: 16px;
}
.field label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--text-2);
	margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
	width: 100%;
	background: var(--bg-2);
	border: 1px solid var(--border-2);
	border-radius: 8px;
	color: var(--text);
	padding: 11px 14px;
	font-size: 14px;
	font-family: inherit;
	outline: none;
	transition: border-color 0.15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
	border-color: var(--orange);
}
.field textarea {
	resize: vertical;
	min-height: 88px;
}
.two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.req-form .btn {
	width: 100%;
	padding: 13px;
	font-size: 15px;
	margin-top: 6px;
}
.form-note {
	font-size: 12px;
	color: var(--muted);
	text-align: center;
	margin-top: 14px;
}
.form-success {
	display: none;
	text-align: center;
	padding: 40px 10px;
}
.form-success .check {
	font-size: 44px;
	color: var(--green);
	margin-bottom: 12px;
}
.form-success h3 {
	font-size: 20px;
	margin-bottom: 8px;
}
.form-success p {
	font-size: 14px;
	color: var(--text-2);
}

/* ── Footer ── */
footer {
	border-top: 1px solid var(--border);
	padding: 36px 0;
	background: var(--bg-2);
}
.foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}
.foot svg {
	height: 24px;
	width: auto;
	opacity: 0.9;
}
.foot p {
	font-size: 13px;
	color: var(--muted);
}
.foot .links {
	display: flex;
	gap: 24px;
	font-size: 13px;
	color: var(--text-2);
}
.foot .links a:hover {
	color: var(--text);
}

/* ── Entrance animations ── */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
@keyframes headerIn {
	from {
		opacity: 0;
		transform: translateY(-16px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* The website entrance is intentionally sequenced: nav, hero, platform. */
body.intro-running header,
body.intro-revealing header,
body.intro-running .hero .eyebrow,
body.intro-running .hero h1,
body.intro-running .hero .sub,
body.intro-running .hero .cta-row,
body.intro-running .hero .note,
body.intro-revealing .hero .eyebrow,
body.intro-revealing .hero h1,
body.intro-revealing .hero .sub,
body.intro-revealing .hero .cta-row,
body.intro-revealing .hero .note {
	opacity: 0;
}

body.intro-complete header {
	animation: headerIn 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
body.intro-complete .hero .eyebrow,
body.intro-complete .hero h1,
body.intro-complete .hero .sub,
body.intro-complete .hero .cta-row,
body.intro-complete .hero .note {
	animation: fadeUp 820ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
body.intro-complete .hero .eyebrow {
	animation-delay: 180ms;
}
body.intro-complete .hero h1 {
	animation-delay: 390ms;
}
body.intro-complete .hero .sub {
	animation-delay: 620ms;
}
body.intro-complete .hero .cta-row {
	animation-delay: 850ms;
}
body.intro-complete .hero .note {
	animation-delay: 1060ms;
}

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;
}
.reveal.in {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	body.intro-complete header,
	body.intro-complete .hero .eyebrow,
	body.intro-complete .hero h1,
	body.intro-complete .hero .sub,
	body.intro-complete .hero .cta-row,
	body.intro-complete .hero .note {
		animation: none;
		opacity: 1;
		transform: none;
	}
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

@media (max-width: 900px) {
	.grid,
	.suite-grid,
	.steps {
		grid-template-columns: 1fr 1fr;
	}
	.req {
		grid-template-columns: 1fr;
		gap: 36px;
	}
}
@media (max-width: 600px) {
	.grid,
	.suite-grid,
	.steps,
	.two-col {
		grid-template-columns: 1fr;
	}
	.nav-links a:not(.btn) {
		display: none;
	}
	section {
		padding: 56px 0;
	}
	.hero {
		padding: 132px 0 56px;
	}
}
