:root {
	--background: #ffffff;
	--black: #000000;
	--white: #ffffff;
}

html {
	scroll-behavior: smooth;
	min-height: 100vh;
	margin: 0;
	padding: 0;
}

body {
	background-color: var(--background);
	color: var(--black);
	font-size: 16px;
	font-family: "Relative Faux", "Montserrat", sans-serif;
	line-height: 1.2;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin: 0;
	padding: 0;
}

* {
	box-sizing: border-box;
}
.hide-scrollbar {
	overflow: hidden;
	scrollbar-width: none;
}
.hide-scrollbar::-webkit-scrollbar {
	display: none;
}
header {
	position: relative;
	height: 100vh;
	color: var(--white);
	overflow: hidden;
	margin: 0;
	padding: 0;
	margin-bottom: 0;
	top: 0;
}

.header-top-content,
.header-bottom-content {
	display: none;
}

.header-video-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
}

.header-video {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Mobile video - hidden by default, shown only on mobile */
.header-video-mobile {
	display: none;
}

/* Desktop video - shown by default */
.header-video-desktop {
	display: block;
}

.header-video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0);
	z-index: 1;
	pointer-events: none;
}

header .container {
	position: relative;
	z-index: 2;
}

.video-mute-toggle {
	position: absolute;
	bottom: 24px;
	right: 24px;
	background-color: rgba(0, 0, 0, 0.5);
	border: none;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 3;
	transition: background-color 0.3s ease;
}

.video-mute-toggle:hover {
	background-color: rgba(0, 0, 0, 0.7);
}

.video-mute-toggle svg {
	width: 24px;
	height: 24px;
}

@media all and (min-width: 1024px) {
	header {
		height: 100vh;
		max-height: 100vh;
	}
	
	#mobile-menu-opener,
	#mobile-menu-closer {
		display: none !important;
	}
	
	.header-video {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}
}

.logo {
	max-width: 100%;
	height: auto;
}

header a {
	text-decoration: none;
	color: var(--white);
	font-size: 1.2em;
	display: block;
}

header h1 {
	font-family: "Relative Faux", "Montserrat", sans-serif;
	font-size: 3em;
	line-height: 1.4;
	text-align: center;
	max-width: 820px;
	font-weight: 400;
}

@media (max-width: 1024px) and (min-width: 769px) {
	header {
		height: 100vh;
		display: flex;
		flex-direction: column;
	}
	
	.header-video {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
		height: 100%;
		object-fit: contain;
		object-position: center center;
	}
	
	.header-video-overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.2);
		pointer-events: none;
	}
	
	.video-mute-toggle {
		bottom: 16px;
		right: 16px;
		width: 40px;
		height: 40px;
	}
	
	.video-mute-toggle svg {
		width: 20px;
		height: 20px;
	}

	header h1 {
		font-size: 2.2em;
		line-height: 1.4;
	}
	
	header a,
	header button {
		text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	}
	
	.logo {
		filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
	}
}

@media (max-width: 768px) {
	html {
		margin: 0;
		padding: 0;
		width: 100%;
		height: 100%;
		background-color: transparent !important;
		overflow-x: hidden;
	}
	
	body {
		margin: 0;
		padding: 0;
		width: 100%;
		height: 100%;
		justify-content: flex-start;
		background-color: transparent !important;
		overflow-x: hidden;
	}
	
	header {
		height: 100vh;
		height: 100dvh;
		min-height: 100vh;
		min-height: 100dvh;
		max-height: 100vh;
		max-height: 100dvh;
		overflow: visible;
		position: relative;
		margin: 0;
		padding: 0;
		width: 100%;
		flex-shrink: 0;
		top: 0;
		background-color: transparent !important;
	}
	
	/* Allow nav to break out of header constraints */
	header nav {
		position: fixed !important;
		z-index: 99999 !important;
	}
	
	.header-video-wrapper {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		margin: 0;
		padding: 0;
		background-color: transparent !important;
		z-index: 0;
	}
	
	/* Hide desktop video on mobile */
	.header-video-desktop {
		display: none !important;
	}
	
	/* Show mobile video on mobile */
	.header-video-mobile {
		display: block !important;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		margin: 0;
		padding: 0;
		object-fit: cover;
		object-position: center top;
		z-index: 0;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}
	
	.header-video {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center center;
		z-index: 0;
	}
	
	/* Show full video on mobile vertical */
	@media (orientation: portrait) {
		header {
			height: 100vh;
			height: 100dvh;
			min-height: 100vh;
			min-height: 100dvh;
			max-height: 100vh;
			max-height: 100dvh;
			display: flex;
			flex-direction: column;
			overflow: visible;
			padding: 0;
			margin: 0;
			background-color: transparent !important;
		}
		
		header nav {
			position: fixed !important;
			z-index: 99999 !important;
		}
		
		.header-top-content {
			display: none;
		}
		
		.header-video-wrapper {
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			width: 100%;
			height: 100%;
			margin: 0;
			padding: 0;
			background-color: transparent !important;
			overflow: hidden;
		}
		
		.header-bottom-content {
			display: none;
		}
		
		/* Hide desktop video on mobile portrait */
		.header-video-desktop {
			display: none !important;
		}
		
		/* Show mobile video on mobile portrait */
		.header-video-mobile {
			display: block !important;
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			width: 100%;
			height: 100%;
			margin: 0;
			padding: 0;
			object-fit: cover;
			object-position: center top;
			background-color: transparent !important;
			-webkit-transform: translateZ(0);
			transform: translateZ(0);
			-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
		}
		
		.header-video {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			object-fit: cover;
			object-position: center center;
		}
		
	.header-video-overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: transparent !important;
		pointer-events: none;
		z-index: 1;
	}
	}
	
	header .container {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
		margin: 0;
		padding: 0;
		background-color: transparent !important;
		z-index: 2;
		pointer-events: none;
		overflow: visible;
	}
	
	header .container * {
		pointer-events: auto;
	}
	
	/* Ensure nav breaks out of container */
	header .container nav {
		position: fixed !important;
		z-index: 99999 !important;
		overflow: visible !important;
	}
	
	header .logo-menu-container {
		margin-top: 0;
		margin-bottom: 0;
		padding: 16px 24px;
		background-color: transparent !important;
	}
	
	header .logo-menu-container * {
		background-color: transparent !important;
	}
	
	@media (orientation: portrait) {
		header .container {
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			width: 100%;
			margin: 0;
			padding: 0;
			background-color: transparent !important;
			z-index: 2;
		}
		
		header .logo-menu-container {
			margin-top: 0;
			padding: 16px 24px;
			background-color: transparent !important;
		}
		
		header .logo-menu-container * {
			background-color: transparent !important;
		}
	}
}

.container {
	width: 100%;
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 24px;
}

.container-fluid {
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

.all-section {
	gap: 36px;
}

@media (min-width: 768px) and (max-width: 1024px) {
	.all-section {
		gap: 24px;
	}
}

.item-section {
	border: 1px solid #f62f4b;
	flex: 1;
	width: 100%;
	max-width: 400px;
}

.item-section h3,
.item-section p {
	color: #f62f4b;
}

.name {
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 0;
}

@media (max-width: 1024px) {
	.name {
		font-size: 20px;
	}
}

.item-section h3 {
	font-size: 16px;
}

.item-section img {
	width: 100%;
	height: auto;
	margin-top: 4px;
}

/* Strategy Section */
.strategy-section {
	background-color: var(--background);
	border: 1px solid #f62f4b;
	padding: 60px 40px;
	margin-top: 10px;
	margin-bottom: 128px;
}

.strategy-title {
	font-family: "Relative Faux", "Relative Faux Pro", "Montserrat", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 48px;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: left;
	color: #f62f4b;
	margin: 0 0 40px 0;
}

.strategy-columns {
	gap: 60px;
	margin-top: 60px;
}

.strategy-item {
	flex: 1;
	min-width: 300px;
	max-width: 350px;
	width: 350px;
	display: flex;
	flex-direction: column;
}

.strategy-icon {
	width: 120px;
	height: 120px;
	margin-bottom: 24px;
	opacity: 1;
	display: block;
}

.strategy-item-title {
	font-family: "Relative Faux", "Relative Faux Pro", "Montserrat", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 24px;
	line-height: 120%;
	letter-spacing: 0%;
	color: #000000;
	margin: 0 0 16px 0;
}

.strategy-item-text {
	font-family: "Relative Faux", "Relative Faux Pro", "Montserrat", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 17px;
	line-height: 130%;
	letter-spacing: 0%;
	color: #000000;
	margin: 0;
	text-align: left;
	word-wrap: break-word;
	hyphens: auto;
}

@media (max-width: 1024px) {
	.strategy-section {
		padding: 40px 24px;
		margin-top: 20px !important;
		margin-bottom: 30px !important;
	}
	
	.strategy-title {
		font-size: 36px;
	}
	
	.strategy-columns {
		flex-direction: column;
		align-items: center;
	}
	
	.strategy-item {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	
	.strategy-section {
		padding: 40px 24px !important;
		margin-top: 20px !important;
		margin-bottom: 100px !important;
	}
	
	.strategy-title {
		font-size: 28px;
	}
	
	.strategy-item-title {
		font-size: 20px;
	}
	
	.strategy-item-text {
		font-size: 16px;
	}
}

.cta-section {
	background-image: url("/images/cta-background.png");
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	min-height: 400px;
}

.cta-section p,
.cta-section a {
	color: var(--white);
	font-size: 38px;
}

footer {
	background-color: var(--background);
	color: var(--black);
	padding: 80px 0 160px 0;
	margin-top: 80px;
	width: 100%;
}

footer a {
	color: var(--black);
	text-decoration: none;
}

.footer-description {
	flex: 1;
}

.footer-description p {
	color: var(--black);
	font-size: 16px;
}

.logo-footer {
	font-size: 12px;
	flex: 1;
}

.footer-content {
	width: 100%;
	gap: 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.text-item {
	width: 100%;
	max-width: 260px;
}

@media (max-width: 768px) {
	.logo-footer,
	.footer-description {
		width: 100%;
	}

	.footer-content {
		flex-direction: column;
		align-items: flex-start;
	}

	.text-item {
		max-width: 320px;
	}
}

@media (max-width: 768px) {
	footer {
		padding: 60px 24px;
	}

	.item-section {
		display: flex;
		flex-direction: column;
		max-width: 480px;
		padding: 24px;
	}

	.item-section:nth-child(2) {
		border-bottom: 0;
		border-top: 0;
	}

	.all-section {
		width: 100%;
		display: flex;
		flex-direction: column;
		gap: 0;
		align-items: center;
	}

	.no-padding-mobile {
		padding: 0;
	}

	.description {
		width: 100%;
		padding: 0 24px;
	}

	.cta-section p {
		font-size: 24px;
	}
}

/* Header and menu */
nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin: 8px auto 8px auto;
}

nav a {
	padding: 8px 16px;
	text-decoration: none;
	text-transform: uppercase;
	color: var(--white);
	margin: 0 4px;
}

#mobile-menu-opener,
#mobile-menu-closer {
	background-color: transparent;
	border: none;
	padding: 0;
	text-align: inherit;
	font: inherit;
	border-radius: 0;
	appearance: none;
	cursor: pointer;
	color: var(--white);
	font-size: 22px;
	line-height: 24px;
	font-style: normal;
	font-weight: 500;
	padding: 4px;
	display: none;
}

#mobile-menu-opener {
	margin: 24px auto 24px auto;
}

.logo-menu-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 48px;
}

@media (max-width: 768px) {
	.logo-menu-container {
		flex-direction: column;
	}

	#mobile-menu-opener {
		display: block;
		z-index: 10000;
		position: relative;
	}
	
	#mobile-menu-closer {
		display: block !important;
		font-size: 32px;
		text-transform: lowercase;
		position: fixed;
		top: 24px;
		right: 24px;
		color: var(--black) !important;
		z-index: 10001;
		visibility: visible !important;
		opacity: 1 !important;
		background-color: transparent;
		border: none;
		padding: 0;
		cursor: pointer;
	}
	nav {
		display: none;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		position: fixed !important;
		z-index: 99999 !important;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		width: 100vw !important;
		width: 100dvw !important;
		height: 100vh !important;
		height: 100dvh !important;
		min-height: 100vh !important;
		min-height: 100dvh !important;
		max-height: none !important;
		margin: 0 !important;
		padding: 40px 0;
		background-color: rgba(240, 240, 240, 0.98) !important;
		background: rgba(240, 240, 240, 0.98) !important;
		overflow-y: auto;
		overflow-x: hidden;
		box-sizing: border-box;
		-webkit-overflow-scrolling: touch;
		transform: none !important;
	}
	
	
	nav.flex {
		display: flex !important;
		visibility: visible !important;
		opacity: 1 !important;
		position: fixed !important;
		z-index: 99999 !important;
		background-color: rgba(240, 240, 240, 0.98) !important;
		background: rgba(240, 240, 240, 0.98) !important;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		width: 100vw !important;
		width: 100dvw !important;
		height: 100vh !important;
		height: 100dvh !important;
		min-height: 100vh !important;
		min-height: 100dvh !important;
		max-height: none !important;
		margin: 0 !important;
		transform: none !important;
	}
	
	nav.flex ~ * #mobile-menu-opener,
	nav.flex + * #mobile-menu-opener,
	body:has(nav.flex) #mobile-menu-opener {
		display: none !important;
	}
	
	nav.flex a {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	nav a {
		display: block !important;
		width: 100%;
		max-width: 100%;
		padding: 16px;
		margin: 4px auto;
		text-align: center;
		font-size: 20px;
		font-weight: 500;
		color: var(--black) !important;
		position: relative;
		z-index: 10000;
		opacity: 1 !important;
		visibility: visible !important;
		text-decoration: none;
		white-space: nowrap;
		overflow: visible;
	}
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
	header {
		height: 100vh;
		height: 100dvh;
		min-height: 100vh;
		min-height: 100dvh;
		max-height: 100vh;
		max-height: 100dvh;
		overflow: hidden;
		position: relative;
		margin: 0;
		padding: 0;
		top: 0;
		background-color: transparent !important;
	}
	
	.header-video-wrapper {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		margin: 0;
		padding: 0;
		background-color: transparent !important;
	}
	
	/* Hide mobile video in landscape */
	.header-video-mobile {
		display: none !important;
	}
	
	/* Show desktop video in landscape */
	.header-video-desktop {
		display: block !important;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		margin: 0;
		padding: 0;
		object-fit: cover;
		object-position: center center;
		z-index: 0;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}
	
	header .container {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
		margin: 0;
		padding: 0;
		background-color: transparent !important;
		z-index: 2;
	}
	
	header .logo-menu-container {
		margin-top: 0;
		margin-bottom: 0;
		padding: 12px 24px;
		background-color: transparent !important;
	}
	
	header .logo-menu-container * {
		background-color: transparent !important;
	}
	
	nav {
		padding: 20px 0;
		justify-content: flex-start;
		padding-top: 60px;
	}
	
	nav a {
		padding: 12px 16px;
		margin: 2px auto;
		font-size: 18px;
	}
	
	#mobile-menu-closer {
		top: 16px;
		right: 16px;
		font-size: 28px;
	}
}
