@charset "utf-8";


/* GLOBAL: INSTANTIATE
-------------------------------------------------------------------------------*/
@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/montserrat-variable-normal.ttf') format('truetype');
	font-weight: 500 800;
	font-style: normal;
}
@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/montserrat-variable-italic.ttf') format('truetype');
	font-weight: 500 800;
	font-style: italic;
}

:root {
	--color-black:   #000000;
	--color-midnight:oklch(33% 4% 235deg);
	--color-navy:    oklch(35% 22% 279deg);
	--color-purple:  oklch(43% 32% 285deg);
	--color-lilac:   oklch(63% 28% 281deg);
	--color-pink:    oklch(76% 55% 347deg);
	--color-coral:   oklch(70% 50% 4deg);
	--color-peach:   oklch(91% 22% 69deg);
	--color-yellow:  oklch(93% 26% 91deg);
	--color-white:   #FFFFFF;
	--font-sans:     'Montserrat', Helvetica, Arial, sans-serif;
	--weight-base:   400;
	--weight-bold:   700;
	--width-slim:    800px;
	--width-wide:    1500px;
	--radius-sm:     4px;
	--radius-md:     8px;
	--radius-lg:     40px;
	--radius-full:   999px;
	--spacing-sm:    12px; 
	--spacing-md:    clamp(12px, 2.5vw, 25px);
	--spacing-lg:    clamp(12px, 5vw, 50px);
	--spacing-xl:    clamp(12px, 7.5vw, 75px);
	--motion:        0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

@media (prefers-reduced-motion: reduce) {
	* {
	  animation: none !important;
	  transition: none !important;
  }
}


/* GLOBAL: TYPOGRAPHY
-------------------------------------------------------------------------------*/
html {
	scroll-behavior: smooth;
	color: var(--color-white);
	background-color: var(--color-midnight);
	line-height: 1.4;
}
body {
	font-family: var(--font-sans);
	font-size: clamp(16.5px, 2vw, 18px);
	font-weight: var(--weight-base);
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body, select, input, textarea {
	font-weight: var(--weight-base);
}
h1, h2, h3, h4, h5, h6 {
	font-weight: var(--weight-bold);
	line-height: 1.2;
	text-wrap: balance;
}
[class*="heading-"] {
  font-size: clamp(2rem, 0.0208rem + 6.3333vw, 4.375rem);
	display: flex;
	flex-flow: column nowrap;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	text-shadow: 0 3px 6px rgb(0 0 0 / 40%);
	margin-block: unset;
	padding-block: var(--spacing-lg);
}
p {
	text-wrap: pretty;
	line-height: 1.4;
	orphans: 3;
	widows: 3;
}
strong {
	font-weight: 700;
}
small {
	font-size: 12px;
}
ul {
	padding-inline-start: 1.5em;
	list-style: none;
}
ul.list-deco li {
	margin-block: 0.75em;
  text-indent: -2ch;
}
ul.list-deco li::before {
	content: '';
	display: inline-block;
	height: 1ch;
	width: 1ch;
	vertical-align: middle;
	background-image:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13"><path fill="%237e80c6" d="M6.5 0 13 6.5 6.5 13 0 6.5z" /></svg>');
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 1ch;
}
.list-reset {
	display: inline-flex;
	margin: 0;
	padding: 0;
	list-style: none;
}


/* GLOBAL: LINKS
-------------------------------------------------------------------------------*/
::-moz-selection {
	background: #b3d4fc;
	text-shadow: none;
}
::selection {
	background: #b3d4fc;
	text-shadow: none;
}
a:link,
a:visited,
a:active {
	color: var(--color-pink);
}
a:hover {
	text-decoration: underline;
}
::-moz-selection {
	background: rgba(242, 228, 212, 0.5);
	text-shadow: none;
}
::selection {
	background: rgba(242, 228, 212, 0.5);
	text-shadow: none;
}
.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: var(--weight-bold);
	letter-spacing: -2%;
	min-height: 48px;
	line-height: 1.3;
	cursor: pointer;
	padding-inline: 1em;
	transition: all var(--motion);
	background: var(--color-yellow);
	border-radius: var(--radius-sm);
}
.btn,
.btn:link,
.btn:visited {
	color: var(--color-navy);
	text-decoration: none;
}
.btn:hover {
	text-decoration: none;
	color: var(--color-white);
	background-color: var(--color-coral);
}
.btn:focus {
	color: var(--color-white);
	background-color: var(--color-coral);
	border: 1px solid var(--color-white);
}


/* GLOBAL: CONTAINERS
-------------------------------------------------------------------------------*/
body {
	background-color: var(--color-navy);
	overflow-x: hidden;
}
.container {
	display: flex;
	flex-flow: column;
	align-items: center;
	margin-inline: auto;
	width: 100%;
	max-width: var(--width-wide);
	padding: 3em clamp(8px, -14.5px + 4.5vw, 35px);
	gap: 1em;
	position: relative;
	z-index: 10;
	overflow: visible;
}

[class*="fade-"] {
	position: relative;
}
[class*="fade-"]::before,
[class*="fade-"]::after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 120px;
	left: 0;
}
[class*="fade-"]::before {
	top: 0;
	background-image: 
		linear-gradient( 
			180deg,
			#000000FF 0%, 
			#00000000 100% 
		);
}
[class*="fade-"]::after {
	bottom: 0;
	background-image:
		linear-gradient( 
			0deg,
			oklch(43% 32% 285deg / 100) 0%, 
			oklch(43% 32% 285deg / 0) 100% 
		);
}

.fade-sky::before {
	top: 0;
	background-image: 
		linear-gradient( 
			0deg,
			oklch(90% 20% 74deg / 0 ) 0%, 
			oklch(90% 20% 74deg / 100 ) 100% 
		);
}
.fade-sky::after {
	bottom: 0;
	background-image:
		linear-gradient( 
			0deg,
			oklch(43% 32% 285deg / 100) 0%, 
			oklch(43% 32% 285deg / 0) 100% 
		);
}
.fade-footer::before {
	display: none;
}
.fade-footer::after {
	bottom: 0;
	background-image: 
		linear-gradient( 
			0deg,
			oklch(38% 3% 238deg / 1) 0%, 
			oklch(38% 3% 238deg / 0) 100% 
		);
}

.bg-top {
	background-color: var(--color-peach);
}
.bg-sky {
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	background-image: 
		url('../images/texture-sky.png'),
		linear-gradient( 
			180deg,
			oklch(91% 22% 70deg) 0%, 
			oklch(88% 27% 65deg) 10%,
			oklch(80% 32% 357deg) 20%,
			oklch(65% 41% 341deg) 40%,
			oklch(52% 40% 322deg) 90%,
			oklch(43% 32% 285deg) 100%
		) !important;
}
.bg-sky .container {
	padding-block-start: unset;
}
.bg-bottom {
	background-size: cover;
	background-position: center;
}


/* SECTION: UTILITY
-------------------------------------------------------------------------------*/
.utility {
	--_ubg: var(--color-white);
	--_utx: var(--color-black);
	--_sbg: var(--color-yellow);
	--_stx: var(--color-navy);
	--_utilHgt: 48px;
	width: 100%;
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-end;
	align-items: flex-start;
	position: absolute;
	z-index: 100;
}
.utility > div {
	display: flex;
	padding: var(--spacing-sm);
	gap: var(--spacing-sm);
}
.utility .btn {
	font-size: 110%;
	min-height: var(--_utilHgt);
}
.region-wrap {
	position: relative;
	width: 140px;
}
.region-select {
	overflow: hidden;
	position: absolute;
	z-index: 10;
	min-width: 100%;
	border-radius: var(--radius-sm);
	background-color: var(--_ubg);
}
.region-select summary::-webkit-details-marker {
	display: none;
}
.region-select summary,
.region-select a {
	cursor: pointer;
	display: flex;
	align-items: center;
	text-decoration: none;
	font-weight: 700;
	gap: 6px;
	color: var(--_utx);
}
.region-select summary {
	min-height: var(--_utilHgt);
	justify-content: center;
	font-family: inherit;
	font-size: 14px;
	transition:
		background-color var(--motion),
		border-color var(--motion),
		color var(--motion) !important;
}
.region-select ul {
	display: flex;
	flex-flow: column;
}
.region-select a {
	font-size: 12.5px;
	padding: 3px 12px;
}
.region-select li:last-of-type a {
	padding-block-end: 6px;
}
.region-select img {
	max-width: 18px;
}
.region-select nav:focus {
	outline: none;
}
.region-select summary:hover,
.region-select a:hover,
.region-select a:focus,
.region-select a:focus-within {
	transition: var(--transition);
	background-color: var(--_sbg);
	color: var(--_stx);
}
.region-select [aria-hidden='true'] {
	display: none;
	visibility: none;
	pointer-events: none;
}


/* SECTION: HEADER
-------------------------------------------------------------------------------*/
.header {
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #894d95;
  padding-bottom: 400px;
	margin-bottom: -400px;
  mask-image: linear-gradient(180deg, #000000FF 85%, #00000000 100%);
}
.header .container {
	display: grid;
	grid-template-rows: 2fr auto 0.5fr;
	grid-template-columns: 1% 1fr 2fr;
	padding-block: unset;
	padding-inline: var(--spacing-md);
	position: relative;
	height: clamp( 400px, 70vw, 1100px );
	max-height: min(70vh, 1100px);
	gap: unset;
}
.header-logo {
	margin: unset;
	grid-area: 2 / 2 / 3 / 2;
}
@media (max-width: 860px) {
	.header {
		height: unset;
		aspect-ratio: 1 / 1;
	}
  .header .container {
    grid-template-columns: 0% 1fr 2fr;
	}
}


/* SECTION: ABOUT
-------------------------------------------------------------------------------*/
.about {
	background-image: linear-gradient(180deg, oklch(91% 22% 69deg / 0% ) 30%, oklch(91% 22% 69deg / 100% ) 50%);
}
.about-wrap {
	padding: var(--spacing-lg);
	color: var(--color-navy);
	border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(253, 246, 239, 1) 0%, rgba(255, 253, 251, 1) 85%, rgba(255, 255, 255, 1) 100%);
	display: grid;
	gap: var(--spacing-md);
	place-items: center;
}
@media (min-width: 900px) {
	.about-wrap {
		grid-template-columns: 42% auto;
		grid-template-rows: auto auto;
	}
	.about-content {
	  grid-area: 1 / 1 / -1 / -1;
		display: grid;
		grid-template-columns: subgrid;
		grid-template-rows: subgrid;
	}
	.about-heading {
		grid-area: 1 / 1 / 2 / 3;
	}
	.about-description {
		grid-area: 2 / 1 / 2 / 2;
  }
  .about-trailer {
	  grid-area: 2 / 2 / 3 / 3;
	}
}
@media (min-width: 1400px) {
	.about-wrap {
		place-items: center;
	}
	.about-heading {
		grid-area: 1 / 1 / 2 / 2;
	}
  .about-trailer {
	  grid-area: 1 / 2 / 3 / 3;
	}
}

.about-heading {
	margin-block: unset;
	font-size: clamp(1.375rem, 1.2083rem + 0.6667vw, 1.75rem);
}
.about-description {
	font-size: clamp(0.875rem, 0.8194rem + 0.2222vw, 1rem);
}
.about-trailer {
	width: 100%;
	overflow: hidden;
	border-radius: var(--radius-md);
	border: 20px solid var(--color-white);
	box-shadow: 0 3px 26px #D5BEA1;
}


/* SECTION: PURCHASE
-------------------------------------------------------------------------------*/
.products .container {
	padding-block: none;
}
.products-grid {
	display: grid;
	grid-auto-rows: auto;
	gap: var(--spacing-md);
}
@media (min-width: 700px) {
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
.products-card {
	display: grid;
	grid-template-rows: 140px auto 1fr;
}
.products-card::before,
.products-card::after {
	grid-area: 2 / 1 / 4 / 2;
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.products-card::before {
	background-color: var(--color-navy);
	border-radius: var(--radius-sm);
}
.products-image {
	grid-area: 1 / 1 / 3 / 2;
	padding-inline: 30px;
}
@media (min-width: 700px) {
	.products-image {
		overflow: hidden;
	}
}
.products-image img {
	margin-inline: auto;
	padding: 0 var(--spacing-md);
	object-fit: contain;
}
.products-content {
	--_gap: 12px;
	grid-area: 3 / 1 / 4 / 2;
	padding: clamp(35px, 18.33px + 3.33vw, 55px);
	padding-block-start: unset;
}
.products-content h3 {
	font-size: 200%;
	line-height: 1;
	margin-block: 0 4px;
	margin-block-start: 0.5em;
	color: var(--color-yellow);
}
.products-content h3 + p,
.products-content strong {
	font-size: 1rem;
	font-weight: var(--weight-bold);
}
.products-content h3 + p {
	color: var(--color-pink);
}
.products-content span {
	color: var(--color-yellow);
}
.products-content strong {
	display: block;
	margin-bottom: 8px;
}
.products-content ul {
	font-weight: 450;
	margin-block: 0 1.5em;
	font-weight: var(--weight-bold);
	text-wrap: balance;
}
.products-content ul.list-reset {
	gap: var(--_gap);
	flex-flow: row wrap;
}
.products-content .tab-panel {
	margin-block: 0;
	gap: var(--_gap);
}
.products-content .active-tab {
	transition: all var(--motion);
}


/* WIDE */
.products-card-wide h3 {
	margin-top: 0.25em;
}
.products-card-wide img {
	margin-left: 2%;
}
@media (min-width: 700px) {
	.products-card-wide {
		grid-area: 2 / 1 / 3 / 3;
		grid-template-rows: 1fr;
		grid-template-columns: 1fr 1fr;
		gap: 0;
	}
	.products-card-wide::before {
		grid-area: 2 / 1 / 4 / 3;
	}
	.products-card-wide .products-content {
		grid-area: 2 / 3 / 4 / 2;
		padding-top: var(--spacing-lg);
		display: flex;
		flex-flow: column nowrap;
		justify-content: center;
		align-items: flex-start;
	}
	.products-card-wide .products-image {
		grid-area: 2 / 1 / 4 / 2;
		aspect-ratio: unset;
		display: grid;
		justify-content: center;
		align-content: center;
		padding: var(--spacing-md);
	}
	.products-card-wide .products-image img {
		padding: var(--spacing-sm);
	}
}


/* TOGGLE */
.tabs .tab-panel {
	display: none;
}
.tabs .active-panel {
	display: flex;
}



/* SECTION: FEATURES
-------------------------------------------------------------------------------*/
.features {
	position: relative;
  background-image: 
		linear-gradient(180deg, 
			hsl(247deg 38% 41%) 10%,  
			hsl(308deg 26% 18%) 92%);	
}
.features .container {
	padding-block-start: var(--spacing-sm);
	padding-block-end: 170px;
}
.features-grid {
	display: grid;
	gap: var(--spacing-md);
}
@media (min-width: 860px) {
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
.features figure {
	border-radius: var(--radius-sm);
	padding: var(--spacing-sm);
	display: grid;
	align-items: start;
	grid-template-rows: auto 1fr;
	gap: var(--spacing-md) var(--spacing-sm);
	margin: unset;
	z-index: 10;
	text-align: center;
	border: 1px solid oklch(47% 21% 280deg / 80%);
  background-image: 
		linear-gradient(180deg, 
			oklch(39% 23% 287deg / 0%) 0%, 
			oklch(39% 23% 287deg) 80%, 
			oklch(43% 22% 283deg) 100%);
}
.features figure img {
	width: 100%;
	grid-area: 1 / 1 / 2 / 3;
	border-radius: var(--radius-sm);
}
.features figcaption {
	grid-area: 2 / 1 / 2 / 3;
	text-wrap: balance;
}
.features figcaption h3 {
	font-size: 135%;
	font-weight: 700;
	margin-block: unset;
	position: relative;
	color: var(--color-yellow);
}
.features figcaption h3 + p {
	margin-block-start: var(--spacing-sm);
}



/* SECTION: DEVELOPER
-------------------------------------------------------------------------------*/
.developer {
	display: grid;
	position: relative;
	z-index: 100;
	padding-block: var(--spacing-lg) var(--spacing-xl);
}
.developer-link {
	display: flex;
	flex-flow: column nowrap;
	text-transform: uppercase;
	margin-inline: auto;
	text-decoration: none !important;
	padding: var(--spacing-lg);
	gap: var(--spacing-md);
	max-width: min(20.852rem + 36.36vw, 510px);
	background-image: 
		radial-gradient(80% 50% at 50% 33%, 
			oklch(30% 13% 330deg / 70% ) 20%, 
			oklch(30% 13% 330deg / 0 ) 65%);
}
.developer-link span {
	text-align: center;
	text-wrap: none;
	line-height: 1.3;
	font-size: 90%;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: var(--color-yellow);
	transition: 
		filter var(--motion),
		color var(--motion);
	filter: 
		drop-shadow(0 1px 5px var(--color-midnight));
}

.developer-link:hover span {
	color: var(--color-white);
}
.developer-link:hover img {
	transform: scale(1.05);
}
.developer-link img {
	position: relative;
	transition: transform var(--motion);
}


/* SECTION: UPDATES
-------------------------------------------------------------------------------*/
.updates {
	--_abg: var(--color-yellow);
	--_atx: var(--color-navy);
	--_hbg: var(--color-purple);
	--_htx: var(--color-white);
}
.updates .container {
	padding-top: unset;
}
.updates-box {
	--_gap: 6px;
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	justify-content: center;
	max-width: var(--width-slim);
	width: 100%;
	margin-inline: auto;
	padding: var(--spacing-lg) var(--spacing-md);
	position: relative;
	z-index: 1;
	margin-bottom: 30px;
	background-color: #353A41;
	border-radius: var(--radius-md);
	box-shadow: 0 3px 30px #2B1E2C;
}
.updates-box h2 {
	color: var(--color-white);
	letter-spacing: unset;
	margin-block-start: unset;
	margin-block-end: 0.6em;
	font-weight: 700;
	text-align: center;
	text-shadow: 0 1px 3px #124D5A;
}
.updates-box h2 span {
	color: #E30B79;
}
.updates-row {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-flow: row wrap;
}
.updates-box ul {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	gap: var(--_gap);
}

/* LINKS */
.updates-box a {
	position: relative;
	background: var(--_abg);
	color: var(--_atx);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	width: 60px;
	border-radius: var(--radius-sm);
	transition: 
		background-color var(--motion),
		color var(--motion);
}
.updates-box svg {
	display: block;
	width: 24px;
	height: 24px;
	position: relative;
	z-index: 2;
	fill: var(--_atx);
}
.updates-box a:hover {
	background-color: var(--_hbg);
}
.updates-box a:hover svg {
	fill: var(--_htx);
}

/* KLAYVIO */
.updates form.klaviyo-form {
	max-width: 360px !important;
}
.updates form.klaviyo-form > div {
	display: grid !important;
	grid-template-columns: 1fr 140px;
	min-height: auto !important;
	border-radius: 8px !important;
	background: white !important;
	padding: 6px !important;
}
.updates .klaviyo-form div {
	padding: 0 !important;
}
.updates form.klaviyo-form input[type="email"],
.updates form.klaviyo-form button {
	height: 48px !important;
	box-sizing: border-box;
	border: 0px !important;
}
.updates form.klaviyo-form input[type="email"] {
	position: relative;
	font-family: var(--font-sans) !important;
	margin-right: 6px !important;
}
.updates form.klaviyo-form input[type="email"]:hover {
	border: 0 !important;
}
.updates form.klaviyo-form button {
	font-family: inherit !important;
	font-size: 15px !important;
	letter-spacing: 0.03em !important;
	border-radius: var(--radius-sm) !important;
	background-color: var(--_abg) !important;
	color: var(--_atx) !important;
	transition: 
		background-color var(--motion),
		color var(--motion);
}
.updates form.klaviyo-form button:hover {
	box-shadow: unset !important;
	background: var(--_hbg) !important;
	color: var(--_htx) !important;
}
.updates form.klaviyo-form p {
	opacity: 0.7;
}
.updates form.klaviyo-form > div > div:last-child {
	display: none !important;
}


/* SECTION: FOOTER
-------------------------------------------------------------------------------*/
.footer .container {
	max-width: 100%;
	align-items: center;
	padding-block-end: var(--spacing-md);
	gap: var(--spacing-lg);
}
@media (min-width: 1100px) {
	.footer .container {
		display: flex;
		flex-flow: row nowrap;
		justify-content: space-between;
	}
	.footer small {
		text-align: right;
		text-wrap: balance;
	}
}
.footer small {
	display: block;
	max-width: 470px;
}
.footer p {
	margin: 0;
	font-size: 10px;
	line-height: 1.2;
	font-weight: 550;
	letter-spacing: 0.01em;
}
.footer a {
	color: inherit;
}
.footer .logos {
	display: grid;
	grid-template-columns: repeat(2, auto);
	align-items: center;
	justify-content: center;
	gap: var(--spacing-md);
}
.footer .logos img {
	max-height: 54px;
	max-width: 140px;
	object-fit: contain;
}
.footer-right {
	display: flex;
	gap: var(--spacing-md);
	align-items: center;
}
.footer-right img {
	max-height: 70px;
}

