@charset "utf-8";
/* Critical styles for intro and onoffswitch - loaded first for faster first paint */
/* This file contains only the essential CSS needed to render the intro section quickly */
/* Load this BEFORE other CSS files to ensure intro renders without waiting for full CSS */

/* ========================================
   #INTRO SECTION - Critical Styles
   ======================================== */

#intro {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 6;
	overflow: hidden;
	visibility: visible;
	opacity: 1;
	-webkit-transition: -webkit-opacity 1s, -webkit-visibility 1s;
	transition: opacity 1s, visibility 1s;
}

#intro.on {
	visibility: hidden;
	opacity: 0;
	transition-delay: 3s;
}

#intro .image {
	display: block;
	height: 100%;
	filter: grayscale(1) brightness(0.7) contrast(1.3);
	position: relative;
	z-index: 1;
}

#intro.on .image {
	animation: fadeOut 2.5s both;
	animation-delay: 1.5s;
}

#intro .image picture,
#intro .image picture img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#intro .image video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0;
	left: 0;
}

#intro .action {
	width: 100%;
	max-width: 692px;
	margin: 0 auto;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	left: 0;
	z-index: 2;
}

#intro .action .onoffswitch {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#intro .action .onoffswitch input {
	display: none;
}

#intro .action .onoffswitch .track {
	width: 160px;
	height: 90px;
	background: white;
	border-radius: 50px;
	-webkit-mask: radial-gradient(circle 43px at 45px 45px, transparent 97%, black 100%);
	mask: radial-gradient(circle 43px at 45px 45px, transparent 97%, black 100%);
	transition: -webkit-mask-position 0.45s ease, mask-position 0.45s ease;
	cursor: pointer;
}

#intro .action .onoffswitch input:checked + .track {
	-webkit-mask-position: 70px 0;
	mask-position: 70px 0;
}

#intro .action .onoffswitch .switchBtn {
	cursor: pointer;
	display: inline-block;
	margin-top: 32px;
	padding: 12px 27px;
	border: 0;
	background-color: #ffffff;
	border-radius: 32px;
	box-shadow: 0px 0px 8px 0px #EBEBEB;
	font-size: 1.0625rem;
	color: #180A0B;
	font-weight: 700;
	line-height: 1.25rem;
	letter-spacing: 0.0313rem;
	text-transform: uppercase;
	text-decoration: none;
	animation: figmaPulse 2s ease-out infinite;
}

@keyframes figmaPulse {
	0% {
		box-shadow: 0px 0px 4px 0px #EBEBEB;
	}
	50% {
		box-shadow: 0 0 16px 4px rgba(255, 255, 255, 0.57);
	}
	100% {
		box-shadow: 0px 0px 4px 0px #EBEBEB;
	}
}

#intro.on .action .onoffswitch .switchBtn {
	animation: fadeOutUp 1s both;
	animation-delay: 0.5s;
	visibility: hidden;
	transition: visibility 1.2s;
}

#intro .action .onoffswitch .claimText {
	display: block;
	margin: -44px 0 0 0;
	font-size: 3.4375rem;
	color: #ffffff;
	font-weight: 500;
	font-style: italic;
	line-height: normal;
	text-align: center;
	opacity: 0;
	z-index: -1;
}

#intro.on .action .onoffswitch .claimText {
	animation: fadeInUp 1s both;
	animation-delay: 0.5s;
}

/* ========================================
   #MEDIA QUERIES - Responsive Intro
   ======================================== */

/* Desktop 1366-1500px */
@media only screen and (min-width: 1366px) and (max-width: 1500px) {
	#intro .action .onoffswitch .track {
		width: 140px;
		height: 70px;
		-webkit-mask: radial-gradient(circle 33px at 35px 35px, transparent 97%, black 100%);
		mask: radial-gradient(circle 33px at 35px 35px, transparent 97%, black 100%);
	}
	#intro .action .onoffswitch input:checked + .track {
		-webkit-mask-position: 70px 0;
		mask-position: 70px 0;
	}
	#intro .action .onoffswitch .claimText {
		font-size: 2.1875rem;
	}
}

/* iPad Pro 961-1365px */
@media only screen and (min-width: 961px) and (max-width: 1365px) {
	#intro .action .onoffswitch .track {
		width: 140px;
		height: 70px;
		-webkit-mask: radial-gradient(circle 33px at 35px 35px, transparent 97%, black 100%);
		mask: radial-gradient(circle 33px at 35px 35px, transparent 97%, black 100%);
	}
	#intro .action .onoffswitch input:checked + .track {
		-webkit-mask-position: 70px 0;
		mask-position: 70px 0;
	}
	#intro .action .onoffswitch .claimText {
		font-size: 2.1875rem;
	}
}

/* Tablet 768-960px */
@media only screen and (min-width: 768px) and (max-width: 960px) {
	#intro .action .onoffswitch .track {
		width: 140px;
		height: 70px;
		-webkit-mask: radial-gradient(circle 33px at 35px 35px, transparent 97%, black 100%);
		mask: radial-gradient(circle 33px at 35px 35px, transparent 97%, black 100%);
	}
	#intro .action .onoffswitch input:checked + .track {
		-webkit-mask-position: 70px 0;
		mask-position: 70px 0;
	}
	#intro .action .onoffswitch .claimText {
		font-size: 2.1875rem;
	}
}

/* Mobile max-width 767px */
@media only screen and (max-width: 767px) {
	#intro .action .onoffswitch .track {
		width: 140px;
		height: 70px;
		-webkit-mask: radial-gradient(circle 33px at 35px 35px, transparent 97%, black 100%);
		mask: radial-gradient(circle 33px at 35px 35px, transparent 97%, black 100%);
	}
	#intro .action .onoffswitch input:checked + .track {
		-webkit-mask-position: 70px 0;
		mask-position: 70px 0;
	}
	#intro .action .onoffswitch .claimText {
		font-size: 2.1875rem;
	}
	#intro .image {
		filter: grayscale(1) brightness(0.75) contrast(1.2);
	}
}

/* iPhone 12 Pro and smaller max-width 414px */
@media only screen and (max-width: 414px) {
	#intro .image {
		filter: grayscale(1) brightness(0.8) contrast(1.15);
	}
}
