:root {
	--buzio-bg: #070b12;
	--buzio-panel: rgba(16, 21, 31, 0.86);
	--buzio-panel-soft: rgba(24, 30, 43, 0.72);
	--buzio-line: rgba(255, 255, 255, 0.09);
	--buzio-text: #f6f7fb;
	--buzio-muted: #9ea8bb;
	--buzio-accent: #ffca4f;
	--buzio-accent-2: #57d7a2;
	--buzio-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
	--buzio-footer-height: 68px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at top left, rgba(87, 215, 162, 0.14), transparent 28%), radial-gradient(circle at top right, rgba(96, 146, 255, 0.14), transparent 24%), linear-gradient(180deg, #a9ccfd 0%, #05080d 100%);
	color: var(--buzio-text);
	font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
	padding-bottom: calc(var(--buzio-footer-height) + 24px);
}

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

.buzio-site-shell {
	min-height: 100vh;
}

.buzio-wrap {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.buzio-site-header {
	padding: 22px 0 0;
}

.buzio-header-inner,
.buzio-footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.buzio-brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
}

.buzio-brand-mark {
	width: 52px;
	height: 52px;
	display: grid;
	place-items: center;
	border-radius: 18px;
	background: linear-gradient(135deg, #ffca4f, #ff7f61);
	color: #10131a;
	font-size: 1.6rem;
	font-weight: 800;
	box-shadow: var(--buzio-shadow);
}

.buzio-brand-copy {
	display: grid;
	gap: 2px;
}

.buzio-brand-copy strong {
	font-size: 1.1rem;
}

.buzio-brand-eyebrow,
.buzio-kicker,
.buzio-slide-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 0.74rem;
	color: var(--buzio-accent-2);
}

.buzio-main {
	padding: 34px 0 40px;
}

.buzio-hero {
	display: grid;
	gap: 28px;
	align-items: start;
}

.buzio-hero-copy {
	display: grid;
	gap: 16px;
	max-width: 760px;
}

.buzio-hero-copy > *,
.buzio-slide > *,
.buzio-page-card > * {
	margin-top: 0;
}

.buzio-hero-copy > *:last-child,
.buzio-slide > *:last-child,
.buzio-page-card > *:last-child {
	margin-bottom: 0;
}

.buzio-hero-copy h1,
.buzio-page-card h1 {
	margin: 0;
	font-size: clamp(2.4rem, 5vw, 4.8rem);
	line-height: 0.96;
	letter-spacing: -0.04em;
}

.buzio-hero-copy p,
.buzio-slide p,
.buzio-page-content {
	color: var(--buzio-muted);
	line-height: 1.65;
	font-size: 1.05rem;
}

.buzio-slider {
	display: grid;
	gap: 18px;
	overflow: hidden;
}

.buzio-slider-track {
	display: flex;
	gap: 0;
	width: 100%;
	transition: transform 280ms ease;
	will-change: transform;
}

.buzio-slide,
.buzio-page-card {
	background: var(--buzio-panel);
	border: 1px solid var(--buzio-line);
	border-radius: 30px;
	padding: 28px;
	box-shadow: var(--buzio-shadow);
	backdrop-filter: blur(16px);
}

.buzio-slide {
	display: grid;
	gap: 16px;
	min-height: 320px;
	align-content: start;
	flex: 0 0 100%;
	opacity: 0.38;
	transform: scale(0.98);
	transition: opacity 220ms ease, transform 220ms ease;
}

.buzio-slide h2 {
	margin: 0;
	font-size: clamp(1.8rem, 3vw, 2.7rem);
	letter-spacing: -0.03em;
}

.buzio-slide.is-active {
	opacity: 1;
	transform: scale(1);
}

.buzio-slide-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	padding: 14px 18px;
	border-radius: 999px;
	background: linear-gradient(135deg, #ffca4f, #57d7a2);
	color: #08100d;
	font-weight: 700;
}

.buzio-slide .wp-block-buttons {
	margin: 0;
}

.buzio-slide .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 18px;
	border-radius: 999px;
	background: linear-gradient(135deg, #ffca4f, #57d7a2);
	color: #08100d;
	font-weight: 700;
	text-decoration: none;
}

.buzio-slide.is-coming-soon {
	background: rgba(19, 24, 35, 0.74);
	opacity: 0.7;
}

.buzio-slide.is-coming-soon.is-active {
	opacity: 0.82;
}

.buzio-slide-button.is-disabled {
	background: rgba(255, 255, 255, 0.06);
	color: var(--buzio-muted);
}

.buzio-slide .wp-block-button__link:hover,
.buzio-slide .wp-block-button__link:focus-visible {
	filter: brightness(1.04);
}

.buzio-slider-dots {
	display: flex;
	gap: 10px;
	justify-content: center;
}

.buzio-slider-dot {
	width: 11px;
	height: 11px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.22);
	cursor: pointer;
	padding: 0;
}

.buzio-slider-dot.is-active {
	background: var(--buzio-accent);
}

.buzio-page-section {
	padding-top: 12px;
}

.buzio-page-card {
	max-width: 920px;
	display: grid;
	gap: 14px;
}

.buzio-page-card .buzio-page-content > *:first-child {
	margin-top: 0;
}

.buzio-page-card .buzio-page-content > *:last-child {
	margin-bottom: 0;
}

.buzio-page-card h2 {
	margin: 28px 0 12px;
	font-size: 1.45rem;
}

.buzio-page-card p {
	margin: 0 0 10px;
}

.buzio-site-footer {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 80;
	backdrop-filter: blur(18px);
	min-height: var(--buzio-footer-height);
}

.buzio-footer-inner {
	min-height: var(--buzio-footer-height);
}

.buzio-footer-text,
.buzio-footer-links a {
	color: var(--buzio-muted);
	font-size: 0.95rem;
}

.buzio-footer-links {
	display: flex;
	align-items: center;
	gap: 14px;
}

.buzio-footer-links a:hover {
	color: var(--buzio-text);
}

@media (max-width: 900px) {
	.buzio-header-inner,
	.buzio-footer-inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 10px 0;
	}

	body {
		padding-bottom: 104px;
	}
}
