:root {
	--red: #dc143c;
	--red-dark: #b31234;
	--red-soft: rgba(220, 20, 60, 0.08);
	--red-border: rgba(220, 20, 60, 0.2);
	--text: #1a1a1a;
	--muted: #555555;
	--white: #ffffff;
	--font: 'Poppins', system-ui, sans-serif;
	--font-ta: 'Noto Sans Tamil', 'Poppins', sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	min-height: 100%;
	width: 100%;
	overflow-x: hidden;
	background: 
		linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
		url('../assets/build.png') center / cover no-repeat fixed !important;
}

body {
	font-family: var(--font);
	width: 100%;
	min-height: 100dvh;
	height: auto;
	color: var(--text);
	background: transparent !important;
	background-color: transparent !important;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	padding: 0;
	margin: 0;
	overflow-x: hidden;
	overflow-y: auto;
	position: relative;
}

body::before {
	display: none !important;
}

body.lang-ta {
	font-family: var(--font-ta);
}

.fireworks {
	position: fixed;
	inset: 0;
	z-index: 6;
	opacity: 0.52;
	pointer-events: none;
	overflow: hidden;
}

.fireworks canvas,
#fireworksField {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.bg-glow {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
	background: transparent !important;
	background-color: transparent !important;
}

.bg-glow::before,
.bg-glow::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	animation: float 22s ease-in-out infinite;
	opacity: 0.3;
}

.bg-glow::before {
	width: 560px;
	height: 560px;
	top: -120px;
	left: -120px;
	background: radial-gradient(circle, rgba(220, 20, 60, 0.1), transparent 70%);
}

.bg-glow::after {
	width: 480px;
	height: 480px;
	bottom: -100px;
	right: -100px;
	background: radial-gradient(circle, rgba(200, 20, 60, 0.08), transparent 70%);
	animation-direction: reverse;
	animation-duration: 26s;
}

@keyframes float {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(40px, 40px); }
}

.shell {
	position: relative;
	z-index: 5;
	width: 100%;
	min-height: 100dvh;
	height: auto;
	max-width: none;
	display: flex;
	flex-direction: column;
	flex: 1;
	background: transparent !important;
	background-color: transparent !important;
}

.lang-switch {
	display: inline-flex;
	border-radius: 999px;
	border: 1px solid var(--red-border);
	background: rgba(255,255,255,0.95) !important;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.lang-switch--header {
	flex-shrink: 0;
	align-self: center;
}

.site-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(12px, 3vw, 24px);
	width: 100%;
	flex-shrink: 0;
	padding-bottom: clamp(8px, 1.5dvh, 14px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	background: transparent !important;
	background-color: transparent !important;
}

.logos-strip {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
	align-items: center;
	justify-items: center;
	width: 100%;
	flex: 1 1 auto;
	min-width: 0;
	gap: clamp(16px, 4vw, 48px);
	padding: 0;
	margin: 0;
	max-height: clamp(96px, 20dvh, 200px);
	overflow: hidden;
	border-bottom: none;
	isolation: isolate;
}

.logos-strip__jci {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: clamp(8px, 2vw, 20px);
	min-width: 0;
	width: 100%;
}

.lang-switch__btn {
	border: 0;
	background: transparent;
	color: var(--muted);
	font: inherit;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.35rem 0.75rem;
	cursor: pointer;
}

.lang-switch__btn.is-active {
	background: var(--red);
	color: var(--white);
}

.hero-card {
	text-align: center;
	width: 100%;
	min-height: 100dvh;
	height: auto;
	padding: clamp(12px, 2dvh, 24px) clamp(16px, 4vw, 56px);
	padding-bottom: clamp(28px, 4dvh, 56px);
	border-radius: 0;
	background: rgba(255, 255, 255, 0.2) !important;
	border: none;
	border-top: 3px solid var(--red);
	backdrop-filter: blur(10px);
	box-shadow: none;
	animation: fadeUp 0.9s ease-out;
	position: relative;
	z-index: 2;
	overflow: visible;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: clamp(10px, 1.8dvh, 20px);
	flex: 1;
}

.hero-main {
	flex: 1 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: clamp(8px, 1.4dvh, 18px);
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: clamp(4px, 1dvh, 12px) 0;
	position: relative;
	z-index: 2;
}

.hero-logo {
	height: auto;
	width: auto;
	max-width: 100%;
	max-height: clamp(56px, 13dvh, 148px);
	object-fit: contain;
	object-position: center;
	transition: transform 0.3s ease;
	flex: none;
}

.hero-logo:hover {
	transform: scale(1.02);
}

.hero-logo--bai {
	max-height: clamp(56px, 12dvh, 132px);
}

.hero-logo--jci-official {
	max-height: clamp(56px, 12dvh, 120px);
	max-width: min(120px, 22vw);
}

.hero-logo--jci-title {
	max-height: clamp(48px, 10dvh, 96px);
	max-width: min(280px, 48vw);
}

@media (min-width: 900px) {
	.logos-strip {
		max-height: clamp(110px, 18dvh, 210px);
		gap: clamp(24px, 8vw, 120px);
	}

	.logos-strip__jci {
		flex-direction: row;
		align-items: center;
		justify-content: center;
		gap: clamp(12px, 2vw, 28px);
	}

	.hero-logo--bai {
		max-height: clamp(72px, 13dvh, 148px);
	}

	.hero-logo--jci-official {
		max-height: clamp(88px, 15dvh, 172px);
		max-width: min(280px, 28vw);
	}

	.hero-logo--jci-title {
		max-height: clamp(64px, 11dvh, 120px);
		max-width: min(380px, 34vw);
	}

	.launch-badge {
		font-size: clamp(14px, 1.8dvh, 18px);
		padding: clamp(8px, 1dvh, 12px) clamp(20px, 2.5vw, 32px);
	}

	h1 {
		font-size: clamp(36px, 5.5vw, 72px);
	}

	.subtitle {
		font-size: clamp(18px, 2.2vw, 28px);
	}

	.desc {
		font-size: clamp(16px, 1.8vw, 24px);
		max-width: 92%;
	}

	.launch-date {
		font-size: clamp(22px, 2.8vw, 36px);
	}

	.count-box {
		height: clamp(100px, 16dvh, 180px);
		border-radius: clamp(16px, 2dvh, 24px);
	}

	.count-box h2 {
		font-size: clamp(40px, 6vw, 80px);
	}

	.count-box span {
		font-size: clamp(11px, 1.4dvh, 14px);
		letter-spacing: 2px;
	}

	.events-strip {
		justify-content: stretch;
		flex-wrap: nowrap;
		gap: clamp(16px, 3vw, 32px);
	}

	.event-pill {
		flex: 1 1 0;
		max-width: none;
		min-width: 0;
		padding: clamp(12px, 1.5dvh, 18px) clamp(16px, 2vw, 24px);
		border-radius: 16px;
		gap: clamp(12px, 1.5vw, 20px);
	}

	.event-pill__logo--marathon {
		max-height: clamp(64px, 10dvh, 100px);
		max-width: min(120px, 14vw);
	}

	.event-pill__logo--build {
		max-height: clamp(80px, 12dvh, 120px);
		max-width: min(80px, 10vw);
	}

	.event-pill strong {
		font-size: clamp(14px, 1.6vw, 20px);
	}

	.event-pill span {
		font-size: clamp(13px, 1.4vw, 18px);
	}

	.contact-btn {
		max-width: 100%;
		font-size: clamp(16px, 1.8vw, 22px);
		padding: clamp(14px, 2dvh, 20px) clamp(32px, 4vw, 48px);
		border-radius: 14px;
	}

	.footer {
		font-size: clamp(13px, 1.4vw, 17px);
		max-width: 100%;
	}
}

@keyframes fadeUp {
	from { opacity: 0; transform: translateY(24px); }
	to { opacity: 1; transform: translateY(0); }
}

.launch-badge {
	display: inline-block;
	position: relative;
	z-index: 1;
	padding: clamp(6px, 1dvh, 10px) clamp(14px, 2.5vw, 24px);
	border-radius: 999px;
	border: 1px solid var(--red-border);
	background: var(--red-soft);
	color: var(--red);
	font-size: clamp(12px, 1.8dvh, 16px);
	font-weight: 600;
	animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(220, 20, 60, 0.25); }
	50% { box-shadow: 0 0 0 12px rgba(220, 20, 60, 0); }
}

h1 {
	font-size: clamp(26px, 5.5vw, 56px);
	font-weight: 800;
	line-height: 1.1;
	width: 100%;
}

h1 .brand {
	display: block;
	margin-top: 2px;
	background: linear-gradient(135deg, var(--red), var(--red-dark));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.subtitle {
	font-size: clamp(14px, 2.2vw, 22px);
	font-weight: 500;
	color: var(--muted);
	line-height: 1.35;
	width: 100%;
}

.desc {
	width: 100%;
	max-width: 96%;
	margin: 0 auto;
	font-size: clamp(13px, 1.8vw, 20px);
	line-height: 1.55;
	color: var(--muted);
}

.countdown {
	display: flex;
	justify-content: stretch;
	align-items: stretch;
	gap: clamp(12px, 2.5vw, 28px);
	flex-wrap: nowrap;
	width: 100%;
	max-width: 100%;
	padding: 0;
}

.launch-date {
	font-size: clamp(18px, 2.8vw, 32px);
	font-weight: 700;
	color: var(--red);
	line-height: 1.2;
	width: 100%;
}

.count-box {
	flex: 1 1 0;
	min-width: 0;
	width: auto;
	max-width: none;
	height: clamp(80px, 14dvh, 140px);
	border-radius: clamp(14px, 2dvh, 22px);
	background: var(--red-soft);
	border: 1px solid var(--red-border);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
	flex-shrink: 0;
}

.count-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.count-box:hover {
	box-shadow: 0 12px 24px -8px rgba(220, 20, 60, 0.22);
}

.count-box h2 {
	font-size: clamp(28px, 5.5vw, 64px);
	font-weight: 800;
	line-height: 1;
	background: linear-gradient(135deg, var(--red), var(--red-dark));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.count-box span {
	margin-top: 4px;
	font-size: clamp(9px, 1.3dvh, 13px);
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--muted);
}

.countdown--live {
	font-size: clamp(16px, 2.5dvh, 20px);
	font-weight: 800;
	color: var(--red);
	padding: 12px;
}

.launch-btn-round {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: clamp(140px, 25vw, 200px);
	height: clamp(140px, 25vw, 200px);
	border-radius: 50%;
	background: 
		radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent 40%),
		linear-gradient(145deg, #ff4444, #cc0000, #990000);
	color: var(--white);
	font-size: clamp(16px, 2.5vw, 20px);
	font-weight: 700;
	text-decoration: none;
	box-shadow: 
		0 0 0 1px rgba(255, 255, 255, 0.2),
		0 8px 32px rgba(255, 68, 68, 0.4),
		0 16px 48px rgba(204, 0, 0, 0.3),
		0 0 80px rgba(255, 68, 68, 0.2),
		inset 0 2px 8px rgba(255, 255, 255, 0.3),
		inset 0 -2px 8px rgba(0, 0, 0, 0.3);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	text-align: center;
	border: 2px solid rgba(255, 255, 255, 0.3);
	animation: launchButtonGlow 2s ease-in-out infinite;
	backdrop-filter: blur(10px);
}

.launch-btn-round::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: conic-gradient(
		from 0deg,
		transparent 0deg,
		rgba(255, 140, 0, 0.4) 30deg,
		rgba(255, 69, 0, 0.6) 60deg,
		rgba(255, 255, 255, 0.3) 90deg,
		rgba(255, 140, 0, 0.6) 120deg,
		rgba(255, 69, 0, 0.4) 150deg,
		transparent 180deg,
		transparent 360deg
	);
	animation: launchRotate 3s linear infinite;
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.launch-btn-round::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60%;
	height: 20px;
	background: radial-gradient(ellipse at center, 
		rgba(255, 140, 0, 0.8) 0%, 
		rgba(255, 69, 0, 0.6) 40%, 
		transparent 70%);
	border-radius: 50%;
	filter: blur(8px);
	animation: launchFlame 1.5s ease-in-out infinite;
	opacity: 0.8;
}

.launch-btn-round:hover::before {
	opacity: 1;
}

.launch-btn-round:hover::after {
	opacity: 1;
	bottom: -15px;
	height: 30px;
}

.launch-btn-round:hover {
	transform: translateY(-12px) scale(1.08);
	box-shadow: 
		0 0 0 2px rgba(255, 255, 255, 0.4),
		0 12px 40px rgba(255, 68, 68, 0.6),
		0 24px 60px rgba(204, 0, 0, 0.4),
		0 0 120px rgba(255, 140, 0, 0.3),
		inset 0 2px 12px rgba(255, 255, 255, 0.4),
		inset 0 -2px 12px rgba(0, 0, 0, 0.4);
	background: 
		radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), transparent 40%),
		linear-gradient(145deg, #ff6666, #ff0000, #cc0000);
	border-color: rgba(255, 255, 255, 0.5);
}

.launch-btn-round:active {
	transform: translateY(-6px) scale(1.04);
	box-shadow: 
		0 0 0 1px rgba(255, 255, 255, 0.3),
		0 8px 24px rgba(255, 68, 68, 0.5),
		0 16px 32px rgba(204, 0, 0, 0.3),
		0 0 60px rgba(255, 140, 0, 0.2),
		inset 0 2px 8px rgba(255, 255, 255, 0.3),
		inset 0 -2px 8px rgba(0, 0, 0, 0.3);
}


.launch-btn-round__text {
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.launch-btn-round:hover .launch-btn-round__text {
	transform: translateY(-2px) scale(1.05);
}

@keyframes launchButtonGlow {
	0%, 100% {
		box-shadow: 
			0 0 0 1px rgba(255, 255, 255, 0.2),
			0 8px 32px rgba(255, 68, 68, 0.4),
			0 16px 48px rgba(204, 0, 0, 0.3),
			0 0 80px rgba(255, 68, 68, 0.2),
			inset 0 2px 8px rgba(255, 255, 255, 0.3),
			inset 0 -2px 8px rgba(0, 0, 0, 0.3);
	}
	50% {
		box-shadow: 
			0 0 0 2px rgba(255, 255, 255, 0.3),
			0 12px 40px rgba(255, 68, 68, 0.5),
			0 24px 60px rgba(204, 0, 0, 0.4),
			0 0 120px rgba(255, 140, 0, 0.3),
			inset 0 2px 12px rgba(255, 255, 255, 0.4),
			inset 0 -2px 12px rgba(0, 0, 0, 0.4);
	}
}

@keyframes launchRotate {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

@keyframes launchFlame {
	0%, 100% { 
		opacity: 0.6;
		transform: translateX(-50%) scaleY(1);
	}
	50% { 
		opacity: 1;
		transform: translateX(-50%) scaleY(1.3);
	}
}


.events-strip {
	display: flex;
	justify-content: center;
	gap: clamp(12px, 2.5vw, 24px);
	flex-wrap: wrap;
	width: 100%;
}

.event-pill {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: clamp(10px, 2vw, 18px);
	padding: clamp(10px, 1.4dvh, 16px) clamp(14px, 2.5vw, 22px);
	border-radius: 14px;
	background: #f7f7f7;
	border: 1px solid #e8e8e8;
	min-width: clamp(160px, 22vw, 240px);
	flex: 1 1 auto;
	max-width: none;
	text-align: left;
}

.event-pill__logo {
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
	margin: 0;
	flex: 0 0 auto;
}

.event-pill__text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 2px;
	flex: 0 1 auto;
	min-width: 0;
}

.event-pill__logo--marathon {
	max-height: clamp(52px, 10dvh, 88px);
	max-width: min(100px, 22vw);
}

.event-pill__logo--build {
	max-height: clamp(64px, 12dvh, 110px);
	max-width: min(72px, 14vw);
}

.event-pill strong {
	font-size: clamp(13px, 1.8vw, 18px);
	font-weight: 800;
	color: var(--text);
	line-height: 1.2;
}

.event-pill span {
	font-size: clamp(12px, 1.5vw, 16px);
	color: var(--muted);
	font-weight: 600;
}

.event-pill--red {
	background: var(--red-soft);
	border-color: var(--red-border);
}

.event-pill--red strong {
	color: var(--red);
}

.contact-btn {
	display: inline-block;
	width: 100%;
	max-width: min(640px, 90vw);
	padding: clamp(12px, 1.8dvh, 18px) clamp(24px, 4vw, 40px);
	border-radius: 12px;
	background: linear-gradient(135deg, var(--red), var(--red-dark));
	color: var(--white);
	font-size: clamp(14px, 2vw, 20px);
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 8px 20px rgba(220, 20, 60, 0.28);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	white-space: nowrap;
}

.contact-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(220, 20, 60, 0.34);
}

.footer {
	width: 100%;
	max-width: 100%;
	margin-top: clamp(4px, 0.8dvh, 10px);
	padding-top: clamp(8px, 1.2dvh, 16px);
	border-top: 1px dashed #ddd;
	font-size: clamp(11px, 1.5vw, 15px);
	line-height: 1.5;
	color: var(--muted);
}

.footer p {
	overflow: visible;
	text-overflow: unset;
	white-space: normal;
}

.footer p:first-child {
	white-space: normal;
	display: block;
	line-clamp: unset;
	-webkit-line-clamp: unset;
	-webkit-box-orient: unset;
	overflow: visible;
}

@media (max-height: 720px) {
	.hero-card {
		gap: clamp(6px, 1.2dvh, 12px);
		padding-bottom: clamp(20px, 3dvh, 32px);
	}

	.hero-main {
		gap: clamp(6px, 1dvh, 12px);
	}
}

@media (max-width: 640px) {
	.site-header {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}

	.lang-switch--header {
		align-self: flex-end;
		order: -1;
	}

	.logos-strip {
		max-height: none;
		overflow: visible;
		gap: 12px;
		grid-template-columns: 1fr;
	}

	.logos-strip__jci {
		flex-direction: row;
		flex-wrap: nowrap;
		gap: clamp(8px, 2vw, 16px);
	}

	.hero-logo--bai {
		justify-self: center;
		max-height: clamp(56px, 11dvh, 88px);
		max-width: min(180px, 58vw);
	}

	.hero-logo--jci-official {
		justify-self: center;
		max-height: clamp(52px, 10dvh, 80px);
		max-width: min(96px, 26vw);
	}

	.hero-logo--jci-title {
		justify-self: center;
		max-height: clamp(44px, 8dvh, 68px);
		max-width: min(240px, 62vw);
	}
}

@media (max-width: 480px) {
	.countdown {
		gap: 5px;
		width: 100%;
		max-width: 100%;
		padding: 0;
	}

	.count-box {
		flex: 1 1 0;
		min-width: 0;
		width: auto;
		height: clamp(48px, 8.5dvh, 64px);
	}

	.count-box h2 {
		font-size: clamp(18px, 4dvh, 26px);
	}

	.contact-btn {
		white-space: normal;
		max-width: 100%;
		font-size: 12px;
	}
}

/* GLOBAL OVERRIDE TO SHOW BUILD.PNG BACKGROUND */
html {
	background: 
		linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)),
		url('../assets/build.png') center / cover no-repeat fixed !important;
	background-color: transparent !important;
}

body {
	background: transparent !important;
	background-color: transparent !important;
}

* {
	background-color: transparent !important;
}

/* Keep only specific elements' backgrounds */
.launch-badge,
.count-box,
.event-pill,
.contact-btn,
.lang-switch,
.launch-btn-round {
	background-color: var(--red-soft) !important;
}

.lang-switch,
.hero-card {
	background: rgba(255,255,255,0.2) !important;
}
