/* ── Site Background ────────────────────────────────────────────────────── */
body,
.site,
#page {
	background-color: #080C11 !important;
}

body {
	padding-top: 64px !important;
}

/* ── Hide Astra's Header & Navigation ───────────────────────────────────── */
#masthead,
.site-header,
.ast-header-wrap,
.ast-above-header-wrap,
.ast-below-header-wrap,
#ast-fixed-header,
.main-header-bar,
.ast-main-header-wrap,
.site-navigation,
.main-navigation,
#primary-site-navigation-desktop,
#primary-site-navigation,
.ast-header-break-point .main-navigation {
	display: none !important;
}

/* ── Custom Header Bar ──────────────────────────────────────────────────── */
#ds-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10000;
	height: 64px;
	background: transparent;
}

#ds-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	padding: 0 32px;
}

/* Logo */
#ds-header-logo a {
	display: flex;
	align-items: center;
	text-decoration: none;
}

#ds-header-logo img {
	display: block;
	height: 40px;
	width: auto;
}

.ds-site-name {
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: 0.04em;
}

/* Right controls — absolutely anchored so logo visibility never shifts them */
#ds-header-right {
	position: absolute;
	right: 32px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	gap: 24px;
}

#ds-lang {
	color: #ffffff;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	opacity: 0.85;
	user-select: none;
}

/* ── Hamburger Button ───────────────────────────────────────────────────── */
#ds-hamburger-btn {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 24px;
	height: 18px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
}

#ds-hamburger-btn span {
	display: block;
	width: 100%;
	height: 2px;
	background: #ffffff;
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

#ds-hamburger-btn.is-open span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}
#ds-hamburger-btn.is-open span:nth-child(2) {
	opacity: 0;
}
#ds-hamburger-btn.is-open span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* ── Get Started Button ─────────────────────────────────────────────────── */
#ds-get-started {
	display: inline-flex;
	align-items: center;
	padding: 8px 22px;
	border-radius: 62.4375rem;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.07) 17.28%, rgba(153, 153, 153, 0.07) 100%);
	background-blend-mode: plus-lighter;
	box-shadow:
		0 0 16.6px 0 #48D1FE,
		-10.5px -9px 48px -12px rgba(0, 0, 0, 0.15),
		-1.75px -1.5px 12px -8px rgba(0, 0, 0, 0.15),
		2.021px 1.732px 9.24px 0 rgba(255, 255, 255, 0.13) inset,
		1.146px 0.983px 4.62px 0 rgba(255, 255, 255, 0.13) inset;
	backdrop-filter: blur(7.58px);
	-webkit-backdrop-filter: blur(7.58px);
	color: #FAFEFF;
	text-align: center;
	font-family: "IBM Plex Sans";
	font-size: 1rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1.375rem;
	letter-spacing: -0.01125rem;
	text-decoration: none;
	white-space: nowrap;
	transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

#ds-get-started:hover {
	background: linear-gradient(135deg, #2dd4f7, #0ea5e9);
	color: #FAFEFF;
	text-decoration: none;
}

/* ── Full-Screen Nav Overlay ────────────────────────────────────────────── */
#ds-nav-drawer {
	position: fixed;
	inset: 0;
	z-index: 10001;
	background: #080C11;
	overflow: hidden;

	/* Hidden state */
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.35s ease;
}

#ds-nav-drawer.is-open {
	opacity: 1;
	pointer-events: auto;
}

/* ── Decorative SVG arcs ────────────────────────────────────────────────── */
.ds-deco-svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

/* ── Header rises above overlay when menu is open ───────────────────────── */
body.ds-menu-open #ds-header {
	z-index: 10002;
}

/* When menu is open: hide logo, keep right controls in their original position */
body.ds-menu-open #ds-header-logo {
	display: none;
}


/* Hide Get Started button when menu is open */
body.ds-menu-open #ds-get-started {
	display: none;
}

/* ── Menu items ─────────────────────────────────────────────────────────── */
#ds-drawer-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 140px;
	z-index: 1;
}

#ds-drawer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

#ds-drawer-menu > li > a {
	display: block;
	color: #ffffff;
	font-size: 54px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	padding: 14px 0;
	transition: color 0.2s ease;
	letter-spacing: -0.01em;
}

#ds-drawer-menu > li > a:hover {
	color: #2dd4f7;
}

/* Sub-menus (hidden in full-screen layout) */
#ds-drawer-menu .sub-menu {
	display: none;
}

/* ── Hero Section ───────────────────────────────────────────────────────── */
.ds-hero {
	width: 100%;
	min-height: calc(100vh - 64px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 24px;
	box-sizing: border-box;
}

.ds-hero-inner {
	text-align: center;
	max-width: 720px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
}

/* Badge */
.ds-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 18px;
	border: 1px solid rgba(45, 212, 247, 0.25);
	border-radius: 999px;
	background: rgba(45, 212, 247, 0.06);
	color: #c8e6f5;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.ds-badge-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #2dd4f7;
	flex-shrink: 0;
}

/* Heading */
.ds-hero-title {
	margin: 0;
	font-size: 4rem;
	font-weight: 800;
	line-height: 4.75rem;
	font-family: "IBM Plex Sans";
	background: linear-gradient(135deg, #60c8ff 0%, #2dd4f7 50%, #38bdf8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.05rem;
}

.ds-title-char {
	display: inline-block;
	opacity: 0.05;
	transition: opacity 0.45s ease;
}

.ds-title-char.ds-char-visible {
	opacity: 1;
}

/* Description */
.ds-hero-desc {
	margin: 0;
font-family: "IBM Plex Sans";
font-size: 1.125rem;
font-style: normal;
font-weight: 700;
line-height: 1.9125rem;
	color: #9cb3c5;

}

.ds-hero-desc strong {
	color: #ffffff;
	font-weight: 700;
}

/* Stats */
.ds-hero-stats {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 48px;
}

.ds-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.ds-stat-number {
	font-size: 28px;
	font-weight: 700;
	color: #2dd4f7;
	line-height: 1;
}

.ds-stat-label {
	font-size: 12px;
	color: #FAFEFF;
	line-height: 1.4;
	text-align: center;
}

/* Buttons */
.ds-hero-buttons {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: center;
}

.ds-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 62.4375rem;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.07) 17.28%, rgba(153, 153, 153, 0.07) 100%);
	background-blend-mode: plus-lighter;
	box-shadow:
		0 0 16.6px 0 #48D1FE,
		-10.5px -9px 48px -12px rgba(0, 0, 0, 0.15),
		-1.75px -1.5px 12px -8px rgba(0, 0, 0, 0.15),
		2.021px 1.732px 9.24px 0 rgba(255, 255, 255, 0.13) inset,
		1.146px 0.983px 4.62px 0 rgba(255, 255, 255, 0.13) inset;
	backdrop-filter: blur(7.58px);
	-webkit-backdrop-filter: blur(7.58px);
	color: #FAFEFF;
	text-align: center;
	font-family: "IBM Plex Sans";
	font-size: 1rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1.375rem;
	letter-spacing: -0.01125rem;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.25s ease, box-shadow 0.25s ease;
}

.ds-btn-primary:hover {
	background: linear-gradient(135deg, #2dd4f7, #0ea5e9);
	color: #FAFEFF;
	text-decoration: none;
}

.ds-btn-secondary {
	display: inline-flex;
	align-items: center;
	padding: 14px 28px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(255, 255, 255, 0.04);
	color: #ffffff;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: border-color 0.25s ease, background 0.25s ease;
}

.ds-btn-secondary:hover {
	border-color: rgba(45, 212, 247, 0.4);
	background: rgba(45, 212, 247, 0.06);
	color: #ffffff;
	text-decoration: none;
}

/* ── Footer Background ──────────────────────────────────────────────────── */
#colophon,
.site-footer,
.ast-footer-overlay,
.footer-widget-area,
.site-below-footer-wrap,
.ast-above-footer-wrap,
.ast-below-footer-wrap {
	background-color: #080C11 !important;
}
