:root {
	--bg-1: #f8f7fb;
	--bg-2: #f7fbf4;
	--card: rgba(255, 255, 255, 0.8);
	--text: #2a2b2f;
	--muted: #5f6168;
	--primary: #5c1a86;
	--primary-2: #7a2aa6;
	--accent: #9bc53d;
	--line: rgba(42, 43, 47, 0.13);
	--shadow: 0 20px 45px rgba(42, 43, 47, 0.12);
	--radius: 22px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	min-height: 100vh;
	font-family: "Space Grotesk", sans-serif;
	color: var(--text);
	background:
		radial-gradient(circle at 10% 20%, rgba(92, 26, 134, 0.2), transparent 40%),
		radial-gradient(circle at 85% 15%, rgba(155, 197, 61, 0.2), transparent 38%),
		linear-gradient(140deg, var(--bg-1), var(--bg-2));
	display: grid;
	place-items: center;
	padding: 1.25rem;
	overflow-x: hidden;
}

.orb {
	position: fixed;
	border-radius: 50%;
	filter: blur(6px);
	z-index: -1;
	animation: float 8s ease-in-out infinite;
}

.orb.one {
	width: 240px;
	height: 240px;
	left: -40px;
	bottom: 8%;
	background: rgba(92, 26, 134, 0.22);
}

.orb.two {
	width: 190px;
	height: 190px;
	right: -30px;
	top: 10%;
	background: rgba(155, 197, 61, 0.24);
	animation-delay: 1.8s;
}

.page {
	width: min(980px, 100%);
	border: 1px solid var(--line);
	background: var(--card);
	backdrop-filter: blur(8px);
	box-shadow: var(--shadow);
	border-radius: var(--radius);
	padding: clamp(1.2rem, 2.5vw, 2rem);
	position: relative;
	animation: reveal 700ms ease-out;
}

.top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 2rem;
}

.logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.brand-logo {
	width: clamp(180px, 27vw, 240px);
	height: auto;
	display: block;
}

.badge {
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 0.42rem 0.8rem;
	font-size: 0.82rem;
	color: var(--muted);
	background: rgba(255, 255, 255, 0.85);
}

.hero {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 1.1rem;
	align-items: stretch;
}

.main {
	padding: 0.2rem 0.2rem 0.2rem 0;
}

.tag {
	display: inline-block;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 1.4px;
	color: #6f2a98;
	font-weight: 700;
	margin-bottom: 0.8rem;
}

h1 {
	font-size: clamp(1.8rem, 5vw, 3.05rem);
	line-height: 1.08;
	margin-bottom: 0.85rem;
	max-width: 17ch;
	text-wrap: balance;
}

.lead {
	color: var(--muted);
	line-height: 1.6;
	font-size: 1rem;
	max-width: 54ch;
	margin-bottom: 1.1rem;
}

.highlights {
	display: flex;
	flex-wrap: wrap;
	gap: 0.58rem;
	margin-bottom: 1.1rem;
}

.pill {
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.88);
	padding: 0.45rem 0.72rem;
	border-radius: 999px;
	font-size: 0.83rem;
	color: #353741;
	font-weight: 500;
}

.direct-contacts {
	display: grid;
	gap: 0.45rem;
	margin-bottom: 1rem;
	font-size: 0.93rem;
	color: #2b3d35;
}

.direct-contacts a {
	color: var(--primary);
	font-weight: 600;
	text-underline-offset: 2px;
}

.panel {
	border: 1px solid var(--line);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.85);
	padding: 1rem;
	display: grid;
	gap: 1rem;
	align-content: start;
}

.countdown {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.6rem;
}

.time-box {
	border-radius: 14px;
	background: linear-gradient(180deg, #ffffff, #f6fbf9);
	border: 1px solid var(--line);
	padding: 0.7rem 0.4rem;
	text-align: center;
}

.time-box b {
	display: block;
	font-size: clamp(1.2rem, 3vw, 1.5rem);
	line-height: 1;
	color: var(--primary);
	margin-bottom: 0.2rem;
}

.time-box span {
	font-size: 0.74rem;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.status {
	border-radius: 12px;
	padding: 0.8rem;
	background: #fbf8ff;
	border: 1px dashed rgba(92, 26, 134, 0.35);
	color: #413454;
	font-size: 0.92rem;
	line-height: 1.45;
}

.contact {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	width: fit-content;
	border-radius: 12px;
	border: 0;
	padding: 0.72rem 1rem;
	background: linear-gradient(140deg, var(--primary), var(--primary-2));
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.3px;
	transition: transform 180ms ease, box-shadow 180ms ease;
	box-shadow: 0 10px 22px rgba(92, 26, 134, 0.28);
}

.contact:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 26px rgba(92, 26, 134, 0.32);
}

footer {
	margin-top: 1.45rem;
	border-top: 1px solid var(--line);
	padding-top: 1rem;
	color: var(--muted);
	font-size: 0.87rem;
	display: flex;
	justify-content: space-between;
	gap: 0.8rem;
	flex-wrap: wrap;
}

@media (max-width: 860px) {
	.top {
		flex-direction: column;
		align-items: flex-start;
	}

	.brand-logo {
		width: clamp(170px, 42vw, 230px);
	}

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

	.main {
		padding-right: 0;
	}
}

@media (max-width: 520px) {
	.countdown {
		gap: 0.45rem;
	}

	.time-box {
		padding: 0.55rem 0.3rem;
	}

	footer {
		font-size: 0.82rem;
	}
}

@keyframes reveal {
	from {
		opacity: 0;
		transform: translateY(14px) scale(0.99);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}
