:root {
	--sb-bg: #0b0f14;
	--sb-surface: #121821;
	--sb-text: #e8edf5;
	--sb-muted: #9aa7b8;
	--sb-accent: #ff6b2c;
	--sb-accent-hover: #ff824f;
	--sb-border: rgba(255, 255, 255, 0.08);
	--sb-radius: 16px;
	--sb-max: 1120px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Plus Jakarta Sans", system-ui, sans-serif;
	background: var(--sb-bg);
	color: var(--sb-text);
	line-height: 1.6;
}

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

.site-header,
.site-footer {
	border-bottom: 1px solid var(--sb-border);
	background: rgba(11, 15, 20, 0.92);
	backdrop-filter: blur(10px);
}

.site-footer {
	border-top: 1px solid var(--sb-border);
	border-bottom: 0;
	margin-top: 4rem;
}

.site-header__inner,
.site-footer__inner,
.flex-content__inner,
.flex-features__inner,
.flex-cta__inner {
	max-width: var(--sb-max);
	margin: 0 auto;
	padding: 1rem 1.5rem;
}

.site-logo {
	font-weight: 800;
	letter-spacing: -0.02em;
}

.site-nav ul {
	display: flex;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.flex-hero {
	position: relative;
	min-height: 420px;
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, #121821 0%, #1a2230 100%);
	background-size: cover;
	background-position: center;
}

.flex-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(11, 15, 20, 0.35), rgba(11, 15, 20, 0.85));
}

.flex-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 760px;
	padding: 4rem 1.5rem;
	text-align: center;
}

.flex-hero__title {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 5vw, 3.5rem);
	line-height: 1.05;
	letter-spacing: -0.03em;
}

.flex-hero__subtitle {
	margin: 0 0 1.5rem;
	color: var(--sb-muted);
	font-size: 1.125rem;
}

.flex-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.875rem 1.5rem;
	border-radius: 999px;
	font-weight: 700;
	transition: transform 0.2s ease, background 0.2s ease;
}

.flex-btn--primary {
	background: var(--sb-accent);
	color: #fff;
}

.flex-btn--primary:hover {
	background: var(--sb-accent-hover);
	transform: translateY(-1px);
}

.flex-content,
.flex-features,
.flex-cta {
	padding: 4rem 0;
}

.flex-content__title,
.flex-features__title,
.flex-cta__title {
	margin: 0 0 1rem;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.flex-content__body {
	color: var(--sb-muted);
}

.flex-content__body p:first-child {
	margin-top: 0;
}

.flex-features__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1rem;
}

.flex-features__item {
	padding: 1.5rem;
	border: 1px solid var(--sb-border);
	border-radius: var(--sb-radius);
	background: var(--sb-surface);
}

.flex-features__item h3 {
	margin: 0 0 0.5rem;
}

.flex-features__item p {
	margin: 0;
	color: var(--sb-muted);
}

.flex-cta {
	background: linear-gradient(180deg, rgba(255, 107, 44, 0.08), rgba(255, 107, 44, 0));
}

.flex-cta__inner {
	text-align: center;
}

.flex-cta__text {
	max-width: 640px;
	margin: 0 auto 1.5rem;
	color: var(--sb-muted);
}

.page-entry__header,
.page-entry__content {
	max-width: var(--sb-max);
	margin: 0 auto;
	padding: 2rem 1.5rem;
}
