/* Coming2Live - Inner Delight */

:root {
	--night: #1f1d1b;
	--ember: #2a1715;
	--ink: #111416;
	--indigo: #33429d;
	--cobalt: #1f77bf;
	--sky: #2ea8df;
	--aqua: #50c7f2;
	--mist: #eaf8ff;
	--white: #ffffff;
	--glass: rgba(255, 255, 255, 0.08);
	--glass-strong: rgba(255, 255, 255, 0.13);
	--line: rgba(124, 208, 255, 0.24);
	--shadow: rgba(0, 0, 0, 0.38);
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

html,
body {
	min-height: 100%;
	margin: 0;
}

body {
	background: var(--white);
	color: #333333;
	font-family: "Inter", "Work Sans", "Roboto", "Segoe UI", Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	overflow-x: hidden;
}

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

.hide {
	display: none !important;
}

.page-wrap,
.md-content {
	min-height: 100vh;
}

.hero {
	position: relative;
	display: flex;
	min-height: 100vh;
	padding: 112px 0 72px;
	background: #ffffff !important;
	overflow: hidden;
}

.hero:before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 0% 10%, rgba(46, 204, 113, 0.08), transparent 40%),
		radial-gradient(circle at 100% 90%, rgba(155, 89, 182, 0.08), transparent 40%),
		radial-gradient(circle at 50% 50%, rgba(52, 152, 219, 0.04), transparent 60%);
	pointer-events: none;
}

.hero:after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 36%;
	background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
	pointer-events: none;
}

.hero > .container {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	width: 100%;
}

.hero__wrapper {
	width: 100%;
	margin: 0 auto;
	text-align: center;
	animation: fadeUp 900ms ease both;
}

.hero__title_inner {
	max-width: 1040px;
	margin: 0 auto;
}

.hero-logo {
	display: block;
	width: min(320px, 56vw);
	height: auto;
	margin: 0 auto 26px;
	filter: drop-shadow(0 24px 56px rgba(0, 0, 0, 0.46));
}

.hero__icon {
	display: none;
}

.hero__title {
	margin: 0;
	background: linear-gradient(90deg, var(--indigo) 0%, var(--cobalt) 46%, var(--sky) 100%);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	font-family: "Inter", "Work Sans", "Roboto", "Segoe UI", Arial, sans-serif;
	font-size: 90px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 0.96;
	text-transform: lowercase;
	text-shadow: none;
}

.hero__tagline {
	margin: 18px 0 0;
	color: var(--aqua);
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-shadow: 0 0 34px rgba(46, 168, 223, 0.42);
}

.hero__text {
	max-width: 940px;
	margin: 22px auto 0;
	color: #555555;
	font-size: 19px;
	font-weight: 400;
	line-height: 1.85;
}

.header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 24px 48px;
	background: rgba(255, 255, 255, 0.85);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.header__left {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 24px;
	align-items: center;
	color: #444444;
	font-size: 14px;
	font-weight: 500;
}

.header__left span,
.header__left a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.header__left i {
	color: var(--sky);
	font-size: 14px;
}

.header__social {
	display: flex;
	gap: 10px;
}

.social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	color: #555555;
	background: #ffffff;
	transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.social-icon:hover {
	transform: translateY(-2px);
	background: linear-gradient(135deg, var(--indigo), var(--sky));
	border-color: rgba(80, 199, 242, 0.82);
	box-shadow: 0 12px 36px rgba(46, 168, 223, 0.28);
	color: var(--white);
}

.countdown__module {
	display: grid;
	grid-template-columns: repeat(4, minmax(120px, 1fr));
	gap: 18px;
	max-width: 760px;
	margin: 54px auto 0;
}

.countdown__module p {
	margin: 0;
	padding: 22px 18px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 20px;
	background: #ffffff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
	color: #666666;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.countdown__module span {
	display: block;
	margin-bottom: 4px;
	background: linear-gradient(180deg, var(--aqua), var(--cobalt));
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	font-size: 52px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1;
}

.service-wrapper {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	max-width: 1080px;
	margin: 58px auto 0;
	text-align: left;
}

.service {
	position: relative;
	min-height: 188px;
	padding: 30px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 22px;
	background: #ffffff;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
	overflow: hidden;
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	transition: transform 260ms ease, border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.service:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.05) 46%, transparent);
	opacity: 0;
	transition: opacity 260ms ease;
}

.service:hover {
	transform: translateY(-8px);
	border-color: rgba(0, 0, 0, 0.15);
	background: #fdfdfd;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.service:hover:before {
	opacity: 1;
}

.service__title,
.service__text {
	position: relative;
	z-index: 1;
}

.service__title {
	margin: 0 0 12px;
	background: linear-gradient(90deg, #1ea02d, #0076ce 54%, #720e9e);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	font-family: "Inter", "Work Sans", "Roboto", "Segoe UI", Arial, sans-serif;
	font-size: 21px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.28;
}

.service__text {
	margin: 0;
	color: #555555;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.75;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(28px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 991px) {
	.hero {
		padding: 122px 0 56px;
	}

	.header {
		align-items: flex-start;
		padding: 22px 26px;
	}

	.header__social {
		display: none;
	}

	.hero-logo {
		width: min(260px, 58vw);
	}

	.hero__title {
		font-size: 68px;
	}

	.service-wrapper {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.hero {
		min-height: 100vh;
		padding: 138px 0 42px;
		background-attachment: scroll;
	}

	.header {
		padding: 18px;
	}

	.header__left {
		gap: 8px 14px;
		font-size: 12px;
	}

	.hero-logo {
		width: min(200px, 70vw);
		margin-bottom: 20px;
	}

	.hero__title {
		font-size: 48px;
		line-height: 1.02;
	}

	.hero__tagline {
		font-size: 15px;
		letter-spacing: 0.08em;
	}

	.hero__text {
		font-size: 15px;
		line-height: 1.72;
	}

	.countdown__module {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
		margin-top: 36px;
	}

	.countdown__module p {
		padding: 18px 10px;
		border-radius: 16px;
		font-size: 11px;
	}

	.countdown__module span {
		font-size: 38px;
	}

	.service-wrapper {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-top: 38px;
	}

	.service {
		min-height: 0;
		padding: 24px;
		border-radius: 18px;
	}
}

/* Custom Attractive Theme Additions */
.hero__title.modern-logo {
	margin: 0;
	font-family: Arial, "Inter", "Work Sans", "Roboto", "Segoe UI", sans-serif;
	font-size: 80px;
	font-weight: 800;
	letter-spacing: 2px;
	line-height: 1.1;
	text-transform: lowercase;
}
.subtitle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 10px 0 40px;
}
.line-accent {
    height: 2px;
    width: 60px;
    border-radius: 2px;
}
.line-accent.left {
    background: linear-gradient(90deg, transparent, #27ae60);
}
.line-accent.right {
    background: linear-gradient(90deg, #8e44ad, transparent);
}
.hero__tagline {
	margin: 0;
	color: #7f8c8d;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 4px;
	text-transform: none;
}
.hero__coming_soon {
    margin: 0;
    font-size: 42px;
    color: #2c3e50;
    font-weight: 600;
    letter-spacing: 8px;
    text-transform: uppercase;
}
.dots-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 25px 0;
}
.dots-divider span {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ccc;
}
.dots-divider span:nth-child(1) { background: #27ae60; }
.dots-divider span:nth-child(2) { background: #3498db; }
.dots-divider span:nth-child(3) { background: #8e44ad; }
.dots-divider:before, .dots-divider:after {
    content: "";
    height: 1px;
    width: 40px;
    background: #eaeaea;
}
.hero__subtext {
    color: #7f8c8d;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}
.btn-notify {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #fff;
    color: #2c3e50;
    font-weight: 600;
    font-size: 15px;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.15);
    border: 1px solid rgba(155, 89, 182, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-notify:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(155, 89, 182, 0.25);
    color: #8e44ad;
}
.btn-notify i {
    color: #9b59b6;
    font-size: 18px;
}
@media (max-width: 767px) {
    .hero__title.modern-logo { font-size: 50px; }
    .hero__coming_soon { font-size: 28px; letter-spacing: 4px; }
    .line-accent { width: 30px; }
}
