@charset "UTF-8";

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

html, body {
    height: 100%;
    width: 100%;
	margin: 0;
    padding: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.2em;
    color: #fff;
    cursor: crosshair;
    scroll-behavior: smooth;
	overflow: hidden;
}
#preloader {
 	position: fixed;
  	inset: 0;
  	z-index: 999999;
}

/* NO DRAG */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-overflow-scrolling: auto;
}
body, body * {
    font-weight: 300 !important;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 300 !important;
}
button, .btn, .pill-btn, .hamburger-btn {
    font-weight: 300 !important;
}
b, strong {
    font-weight: 300 !important;
}
/* 300 FONT */
body, body *, h1, h2, h3, h4, h5, h6, button, .btn, .pill-btn, .hamburger-btn, b, strong {
	font-family: 'Space Grotesk', sans-serif;
    font-weight: 300 !important;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('SpaceGrotesk-Light.woff2') format('woff2'),
       url('SpaceGrotesk-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: block;
}

/* CONTAINER */
.container {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
	align-items: center;
	justify-content: center;
}

/* WRAPPER */
#wrapper {
    width: 100vw;
    height: 100vh;
	opacity: 0;
	visibility: hidden;
    transition: opacity 0.5s ease, transform 0.3s cubic-bezier(.2,.9,.2,1);
    display: block;
    position: relative;
	pointer-events: none; 
}
#wrapper.loaded {
  	opacity: 1;
  	pointer-events: auto;
	visibility: visible; 
}

#home .slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
	position: absolute; 
	z-index: 1;	
}
video {
	object-fit: cover;
}


/* SLIDES */
.slides {
    display: flex;
	flex-wrap: nowrap;
    height: 100%;
	width: 100%; 
	position: relative;
    transition: transform 0.6s cubic-bezier(.2,.9,.2,1);
	inset: 0;
}
.slide {
	flex: 0 0 100%; 
	height: 100%;
	width: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	content-visibility: auto;

	background-color: #000;
	aspect-ratio: 16/9;
	
	background-size: cover; 
    background-position: center;
}
.slide img,
.slide video {
  	width: 100%;
  	height: 100%;
  	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
}
.slide,
.nav-prev,
.nav-next {
  pointer-events: auto;
}
.intro-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    color: #fff;
    font-size: clamp(1.6rem, 1.8vw, 2.2rem);
    line-height: 1.2;
    width: 55ch;
	max-width: 60%; 
	opacity: 1; 
  	pointer-events: auto;
	word-wrap: break-word;
	hyphens: none;
}
.intro-text .line {
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeInUp 0.6s forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    color: #fff;
    font-size: clamp(1.6rem, 2vw, 2rem);
	font-weight: 300;
    line-height: 1.2;
    width: 50ch;
	max-width: 60%; 
  	pointer-events: auto;
	word-wrap: break-word;
	hyphens: none;
}
.slide .text-overlay { 
	display: none;
}
.slides .slide:first-child .text-overlay { 
	display: block; 
}

/* VIDEO OVERLAYS */
.video-overlay,
.video-overlay2 {
    position: absolute;
    inset: 0;
	top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
	object-fit: cover;
    z-index: 9;
}
.video-overlay {
    background: rgba(0,0,0,0.3);
}
.video-overlay2 {
    background: rgba(0,0,0,0.5);
}
.lazy-video {
  background: #000;
}


/* SLIDE INDICATOR */
.slide-indicator {
    position: absolute;
    top: calc(5rem + env(safe-area-inset-top));
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    z-index: 99999;
    pointer-events: none;
    white-space: nowrap;
    font-weight: 300;
	opacity: 1;
	backface-visibility: hidden;
    will-change: transform, opacity;
}

/* PILL BUTTON */
.pill-btn {
   	position: fixed;
  	top: calc(1rem + env(safe-area-inset-top));
  	left: 50%;
  	transform: translateX(-50%);
  	z-index: 99999;
  	padding: 0.75rem 1.5rem;
  	border-radius: 9999px;
  	background: rgba(255, 255, 255, 0.1);
  	backdrop-filter: blur(10px);
  	-webkit-backdrop-filter: blur(10px);
  	color: white;
  	text-decoration: none;
	font-family: 'Space Grotesk', sans-serif; 
  	font-size: clamp(1.2rem, 2vw, 1.2rem);
  	cursor: pointer;
  	white-space: nowrap;
    box-shadow: inset 0px -2px 4px rgba(255, 255, 255, 0.2),
	0px 2px 6px rgba(0, 0, 0, 0.075);
	border: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}
.pill-btn:hover {
  	background: rgba(255, 255, 255, 0.2);
  	color: #fff;
}
.pill-btn:focus {
    outline: none;
}
button:focus { 
	outline: none;
}
.hamburger-btn,
.pill-btn {
  pointer-events: auto;
  z-index: 100001;
}

/* HAMBURGER */
.hamburger-btn {
    position: fixed;
    top: 1rem;
    left: 1rem;
    height: 2.5rem;                   
    width: 2.5rem;              
    border-radius: 9999px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);   
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.3s;
    box-shadow: inset 0px -2px 4px rgba(255, 255, 255, 0.2),
	0px 2px 6px rgba(0, 0, 0, 0.075);
}
.hamburger-btn:hover {
    background: rgba(255,255,255,0.2);
}
.hamburger-btn:focus {
	outline: none;	
}
.pill-btn:focus {
	outline: none;
}

.plus-icon {
    position: relative;
    width: 50%; 
    height: 50%;
}
.plus-icon::before,
.plus-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: #ffffff;  
    transform: translate(-50%, -50%);
    transition: 0.3s;
}

/* ANIMATE HB */
.plus-icon::before {
    width: 100%;
    height: 0.1em; 
}
.plus-icon::after {
    width: 0.1em; 
    height: 100%;
}
.hamburger-btn.active .plus-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger-btn.active .plus-icon::after {
    transform: translate(-50%, -50%) rotate(45deg);
}
.btn a:link, 
.btn a:focus,
.btn a:hover, 
.btn a:visited {
    text-decoration: none; 
    color: inherit;		
}

/* NAV BUTTONS */
.nav-prev,
.nav-next {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: transparent;
    border: none;
    z-index: 999;
    cursor: pointer;
	pointer-events: auto;
}
.nav-prev {
    left: 0;
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='128' height='84' viewBox='0 0 32 21'><path fill='%23ffffff' d='M10.49,21h.36c0-4.95-3.44-9.12-8.09-10.32h29.25v-.35H2.75C7.4,9.12,10.84,4.95,10.84,0h-.36c0,5.69-4.71,10.33-10.49,10.33v.35c5.78,0,10.49,4.63,10.49,10.32Z'/></svg>") 2 8, pointer;
}
.nav-next {
    right: 0;
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='128' height='84' viewBox='0 0 32 21'><path fill='%23ffffff' d='M21.51,0h-.36c0,4.95,3.44,9.12,8.09,10.32H0v.35h29.25c-4.65,1.2-8.09,5.38-8.09,10.33h.36c0-5.69,4.71-10.33,10.49-10.33v-.35c-5.78,0-10.49-4.63-10.49-10.32Z'/></svg>") 14 8, pointer;
}

/* FULL MENU */
.full-menu {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(25px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 9999;
	height: 100dvh;
}
.full-menu.active {
    opacity: 1;
    pointer-events: auto;
}
.full-menu ol {
    list-style: none;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.05em;
}
.full-menu ol li a {
    text-decoration: none;
    font-size: 2rem;
    color: white;
    transition: color 0.3s;
}
.full-menu ol li a:hover {
    color: #0078ff;
}
.full-menu button,
.full-menu .btn {
    all: unset; 
	position: relative;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 300;
    font-size: 2rem; 
    color: #fff;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    line-height: 1.2;
    letter-spacing: -0.05em;
}
.strike {
    position: relative; 
    display: inline-block;
    color: inherit;
    text-decoration: none;
    overflow: visible; 
}
.strike::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    height: 5px;     
    width: 100%;    
    background-color: #ffffff;
    transform: translate(-50%, -50%) scaleX(0);  
    transform-origin: center;
    transition: transform 0.3s ease;
}
.full-menu button:hover .strike::after {
    transform: translate(-50%, -50%) scaleX(1);  
}
.footer {
  	position: fixed;
  	bottom: calc(2rem + env(safe-area-inset-bottom));
  	left: 50%;
  	transform: translateX(-50%);
  	font-size: 1.2rem;
  	line-height: 2rem;
  	color: #fff;
  	z-index: 9999;
  	pointer-events: none;
  	text-align: center;
  	display: flex;
  	flex-direction: column;
  	align-items: center;
  	max-width: 90vw;
}
.footer-line {
  	white-space: nowrap;
}
.full-menu .footer {
  	opacity: 0;
  	pointer-events: none;
  	transition: opacity 0.3s ease;
}

.full-menu.active .footer {
  	opacity: 1;
  	pointer-events: auto;
}