@charset "utf-8";
/* GLOBAL: INSTANTIATE
-------------------------------------------------------------------------------*/
@font-face {
	font-family: 'TitilliumWeb';
	src: url('../fonts/TitilliumWeb-Regular.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: 'TitilliumWeb';
	src: url('../fonts/TitilliumWeb-RegularItalic.ttf') format('truetype');
	font-weight: 500;
	font-style: italic;
}
@font-face {
	font-family: 'TitilliumWeb';
	src: url('../fonts/TitilliumWeb-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
}
@font-face {
	font-family: 'TitilliumWeb';
	src: url('../fonts/TitilliumWeb-BoldItalic.ttf') format('truetype');
	font-weight: 700;
	font-style: italic;
}
@font-face {
	font-family: 'LondrinaSolid';
	src: url('../fonts/LondrinaSolid-Black.ttf') format('truetype');
	font-weight: 900;
	font-style: normal;
}
:root {
	--color-black:  #000000;
	--color-slate:  #1E1818;
	--color-brown:  #31070C;
	--color-red:    oklch(53% 53% 22deg);
	--color-pink:   oklch(69% 65% 8deg);
	--color-sakura: oklch(93% 13% 352deg);
	--color-green:  oklch(68% 53% 160deg);
	--color-lime:   oklch(85% 67% 160deg);
	--color-canary: oklch(97% 12% 104deg);
	--color-white:  #FFFFFF;
	--font-sans:    'TitilliumWeb', Helvetica, Arial, sans-serif;
	--font-accent:  'LondrinaSolid', 'Fresca', Helvetica, Arial, sans-serif;
	--weight-base: 500;
	--weight-bold: 700;
	--width-slim: 800px;
	--width-wide: 1500px;
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 20px;
	--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-slate);
	background-color: var(--color-lilac);
	line-height: 1.4;
}
body {
	font-family: var(--font-sans);
	font-size: clamp(16.5px, 2vw, 18px);
	font-weight: var(--weight-base);
	color: var(--color-stone);
	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-family: var(--font-sans);
	font-weight: var(--weight-bold);
	color: var(--color-slate);
	line-height: 1.2;
	letter-spacing: -0.02em;
	text-wrap: balance;
}
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;
	text-wrap: balance;
	color: inherit;
}
.list-reset {
	display: inline-flex;
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.list-deco {
  list-style: none;
  padding-left: 0;
}
ul.list-deco li {
  padding-left: 16px;
  position: relative;
	margin-block: 0.35em;
}
ul.list-deco li::before {
  content: "⏺";
  color: var(--color-lime);
  font-size: 9px;
  position: absolute;
  left: 0;
  top: 6px;
  line-height: inherit;
}

/* GLOBAL: LINKS
-------------------------------------------------------------------------------*/
::-moz-selection {
	background: #b3d4fc;
	text-shadow: none;
}
::selection {
	background: #b3d4fc;
	text-shadow: none;
}
a:link,
a:visited,
a:active {
	color: var(--color-purple);
}
a:not(.btn):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-grid;
	place-items: center;
	cursor: pointer;
	font-weight: 700;
	padding: 0.35em 0.8em 0.5em 0.8em;
	min-height: 48px;
	transition: all var(--motion);
	background-color: var(--color-pink);
	overflow: hidden;
}
.btn,
.btn:link,
.btn:visited {
	color: var(--color-white);
	text-decoration: none;
}
.btn:hover {
	background-color: var(--color-lime);
	color: var(--color-black);
}
/* GLOBAL: CONTAINERS
-------------------------------------------------------------------------------*/
body {
	background-color: var(--color-white);
	overflow-x: hidden;
}
.container {
	display: flex;
	flex-flow: column;
	align-items: center;
	margin-inline: auto;
	width: 100%;
	max-width: var(--width-wide);
	padding-block-start: calc( var(--spacing-lg) * 2 );
	padding-block-end: var(--spacing-md);
	padding-inline: var(--spacing-md);
	gap: 1em;
	z-index: 10;
	position: relative;
	overflow: visible;
}
[class*="heading-"] {
	font-family: var(--font-accent);
	font-size: clamp(1.875rem, 0.0893rem + 7.1429vw, 5rem);
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 0.05em;
	text-shadow: -4px 6px 0 var(--color-white);
	margin-block-start: var(--spacing-md);
	margin-block-end: var(--spacing-md);
}
.divider {
	transform: translateY(50%);
  aspect-ratio: 180 / 17;
  margin-top: -4.722%;
}


/* SECTION: UTILITY
-------------------------------------------------------------------------------*/
.utility {
	--_ubg: var(--color-black);
	--_utx: var(--color-white);
	--_sbg: var(--color-white);
	--_stx: var(--color-black);
	--_utilHgt: 50px;
	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);
	color: var(--color-black);
	background: var(--color-lime);
	box-shadow: -4px 6px 0 var(--color-black);
}
.utility .btn:hover::after {
	background:
		linear-gradient(180deg,
			oklch(68% 55% 354deg) 0%,
			oklch(67% 50% 27deg) 100%);
}
.utility .btn:hover {
	color: var(--color-white) !important;
	background-color: var(--color-black);
	box-shadow: -4px 6px 0 var(--color-lime);
}
.utility .btn:hover {
	color: var(--color-white);
}
.locale-wrap {
	position: relative;
	width: 140px;
}
.locale-select {
	overflow: hidden;
	position: absolute;
	z-index: 10;
	min-width: 100%;
	background-color: var(--_ubg);
	box-shadow: -4px 6px 0 var(--color-red);
}
.locale-select summary::-webkit-details-marker {
	display: none;
}
.locale-select summary,
.locale-select a {
	cursor: pointer;
	display: flex;
	align-items: center;
	text-decoration: none;
	font-weight: 700;
	gap: 6px;
	color: var(--_utx);
}
.locale-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;
}
.locale-select ul {
	display: flex;
	flex-flow: column;
}
.locale-select a {
	font-size: 12.5px;
	padding: 3px 12px;
}
.locale-select li:last-of-type a {
	padding-block-end: 6px;
}
.locale-select img {
	max-width: 18px;
}
.locale-select nav:focus {
	outline: none;
}
.locale-select summary:hover,
.locale-select a:hover,
.locale-select a:focus,
.locale-select a:focus-within {
	transition: var(--transition);
	background-color: var(--_sbg);
	color: var(--_stx);
	text-decoration: none;
}
.locale-select [aria-hidden='true'] {
	display: none;
	visibility: none;
	pointer-events: none;
}
/* SECTION: HERO
-------------------------------------------------------------------------------*/
.header {
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: left 15% top;
}
.hero {
	display: grid;
	grid-template-rows: .5fr 2fr;
	grid-template-columns: var(--spacing-sm) 1fr 2fr var(--spacing-sm);
	aspect-ratio: 36 / 17;
	gap: unset;
	padding-block-start: 80px;
	height: 100%;
}
.hero-logo {
	grid-area: 2 / 3 / 3 / -2;
	margin-inline: auto;
}
@media (min-width: 800px) {
	.hero-logo img {
		max-width: 80%;
		margin: auto;
	}
}
@media (max-width: 800px) {
	.header {
		aspect-ratio: 1 / 1;
	}
	.hero {
		grid-template-columns: 0 1fr 2fr 0;
	}
}
/* SECTION: ABOUT
-------------------------------------------------------------------------------*/
.about {
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-color: var(--color-black);
	color: var(--color-white);
	z-index: 1;
	position: relative;
}
.about-wrap {
	display: grid;
	place-items: center;
	gap: var(--spacing-md);
}
@media (min-width: 650px) {
	.about {
		background-image: url('../../_assets/images/texture-about.webp');
		background-color: unset;
		margin-top: -40px;
	}
	.about-wrap {
		grid-template-columns: 35% auto;
		grid-template-rows: auto auto;
	}
}
.about-content {
	font-size: clamp(20px, calc(8.18px + 1.82vw), 30px);
	text-wrap: balance;
}
.about-content p {
	margin-block-start: unset;
}
.about-content span {
	font-weight: 800;
	color: var(--color-lime);
}
.about-trailer {
	display: grid;
	grid-template-columns: 2% 1fr 3%;
	grid-template-rows: 25px 1fr 25px;
	width: 100%;
	position: relative;
}
.about-trailer iframe {
	--_size: clamp(4px, 1vw, 20px);
	width: 100%;
	overflow: hidden;
	border: 15px solid var(--color-pink);
	background: var(--color-pink);
	grid-area: 2 / 2 / -2 / -2;
}
.about-trailer svg {
	position: absolute;
	height: auto;
	width: 25%;
	z-index: -1;
}
.about-trailer svg:first-of-type {
	aspect-ratio: 25/7;
	top: 0;
	left: 0;
}
.about-trailer svg:last-of-type {
	aspect-ratio: 5/4;
	bottom: 0;
	right: 0;
}

/* SECTION: PURCHASE
-------------------------------------------------------------------------------*/
.products {
	background-image: url('../../_assets/images/texture-products.webp');
	background-size: cover;
}
.heading-products {
	color: var(--color-white);
	text-shadow: -4px 6px 0 var(--color-black);
}
.products-grid {
	display: grid;
	grid-auto-rows: auto;
	gap: var(--spacing-md);
}
@media (min-width: 800px) {
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
.products-card {
	display: grid;
	grid-template-rows: 140px auto 1fr;
	box-shadow: oklch(30% 30% 274deg / 25%);
	color: var(--color-white);
}
.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 {
	border: 8px solid var(--color-black);
	background-image: linear-gradient( 180deg, #000000 0%, #18181E 100% );
}
.products-image {
	grid-area: 1 / 1 / 3 / 2;
	padding-inline: var(--spacing-sm);
}
.products-image img {
	margin-inline: auto;
	padding: 0 var(--spacing-md);
	object-fit: contain;
	aspect-ratio: 29/23;
}
.products-content {
	--_gap: 12px;
	grid-area: 3 / 1 / 4 / 2;
	padding: var(--spacing-lg);
	padding-block-start: 1em;
}
.products-content h3 {
	font-size: 200%;
	line-height: 1;
	margin-block: unset;
	color: inherit;
}
.products-content h3+p,
.products-content strong {
	font-size: 1rem;
	font-weight: var(--weight-bold);
	margin-block-start: 0.5em;
}
.products-content h3+p {
	color: var(--color-lime);
}
.products-content strong {
	display: block;
	margin-bottom: 8px;
	text-transform: uppercase;
}
.products-content ul {
	font-weight: 450;
	margin-block: 0 1.5em;
}
.products-content ul.list-reset {
	gap: var(--_gap);
	flex-flow: row wrap;
}
/* TOGGLE */
.tabs {
	--_gap: 4px;
}
.tabs ul {
	margin-block: 0 1.5em;
	text-wrap: balance;
}
.tabs ul.list-reset {
	gap: var(--_gap);
	flex-flow: row wrap;
}
.tabs .tab-panel {
	margin-block: 0;
	gap: var(--_gap);
}
.tabs .active-tab {
	transition: all var(--motion);
}
.tabs .active-tab span {
	transition: all var(--motion);
	background-color: var(--color-orange);
	color: var(--color-white);
}
.tabs .active-tab::after {
	opacity: 1;
}
.tab-wrapper {
	display: grid;
}
.tab-wrapper .tab-panel {
	grid-area: 2 / 1;
	display: flex;
	opacity: 0;
	visibility: none;
	pointer-events: none;
}
.tab-wrapper .active-panel {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}

/* SECTION: FEATURES
-------------------------------------------------------------------------------*/
.features {
	background-image: url('../../_assets/images/texture-features.webp');
	background-size: cover;
	padding-block-end: var(--spacing-lg);
}
.heading-features {
	color: var(--color-pink);
	text-shadow: -4px 6px 0 #C9C79C55;
}
.features-grid {
	display: grid;
	gap: var(--spacing-lg);
}
@media (min-width: 860px) {
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--spacing-sm);
	}
}
.features figure {
	margin: unset;
	display: grid;
	grid-template-rows: 50px auto 1fr;
	grid-template-columns: var(--spacing-sm) 1fr var(--spacing-sm);
	gap: var(--spacing-sm);
	padding: 10px;
	overflow: hidden;
	position: relative;
}
.features figure::after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	background-color: var(--color-white);
	box-shadow: -10px 10px 0 #C1BE9266;
	grid-area: 2 / 1 / -1 / -1;
}
.features figure img {
	grid-area: 1 / 2 / 3 / -2;
}
.features figcaption {
	padding-block-end: var(--spacing-md);
	grid-area: 3 / 2 / 3 / -2;
}
.features figcaption h3 {
	font-size: 165%;
	margin-block: unset;
	position: relative;
	line-height: 1.1;
}
.features figcaption p {
	font-size: 110%;
	margin-block-start: 0.5em;
	max-width: 95%;
}
@media (min-width: 500px) {
	.features figcaption {
		padding-inline: var(--spacing-sm);
	}
}

/* FOOTER
-------------------------------------------------------------------------------*/
.footer {
	border-block-start: 20px solid var(--color-pink);
}

/* SECTION: DEVELOPER
-------------------------------------------------------------------------------*/
.developer-link {
	position: relative;
	margin-inline: auto;
	display: grid;
	grid-template-rows: auto 2.5em;
	text-decoration: none !important;
	max-width: min(20.852rem + 36.36vw, 500px);
	border: var(--spacing-sm) solid transparent;
}
.developer-link img {
	grid-area: 1 / 1 / -1 / -1;
}
.developer-link span {
	grid-area: 2 / 1 / -1 / -1;
	text-align: center;
	margin-inline: auto;
	line-height: 1.1;
	font-size: 85%;
	font-weight: 800;
	color: var(--color-white);
	transition: all var(--motion);
}
@media (max-width: 400px) {
	.developer-link span {
		grid-area: unset;
		padding-top: var(--spacing-sm);
		color: var(--color-white);
	}
}
.developer-link:hover span {
	color: var(--color-pink);
}
.developer-link:hover img {
	transform: scale(1.05) !important;
}
.developer-link img {
	transition: transform var(--motion);
}

/* SECTION: UPDATES
-------------------------------------------------------------------------------*/
.updates {
	--_abg: var(--color-lime);
	--_atx: var(--color-black);
	--_hbg: var(--color-pink);
	--_htx: var(--color-white);
}
.updates .container {
	padding-block: var(--spacing-lg);
}
.updates-box {
	--_gap: 6px;
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: var(--width-slim);
	padding-inline: var(--spacing-md);
	padding-block-start: 55px;
	padding-block-end: 75px;
	margin-bottom: var(--spacing-md);
	margin-inline: auto;
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="986" height="314.999" viewBox="0 0 986 314.999" preserveAspectRatio="none"><path d="M10 235h20V13.98h703V0h253v206h-17v73.98H263v15.019l-253 10Z" fill="%23191919"/></svg>');
	background-size: 100% 100%;
	background-repeat: no-repeat;
	filter: drop-shadow( -10px 6px 0 var(--color-pink) );
}
.updates-box h2 {
	letter-spacing: unset;
	margin-block-start: unset;
	margin-block-end: 0.6em;
	font-weight: 700;
	text-align: center;
	color: var(--color-white);
	letter-spacing: unset;
}
.updates-box h2 span {
	color: var(--color-pink);
}
.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;
	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 {
	min-height: auto !important;
	border-radius: 4px !important;
	background: white !important;
	padding: 6px !important;
}
@media (min-width: 400px) {
	.updates form.klaviyo-form>div {
		display: grid !important;
		grid-template-columns: 1fr 140px;
	}
}
.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;
	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: 17px !important;
	letter-spacing: -0.01em !important;
	background-color: var(--_abg) !important;
	color: var(--_atx) !important;
	border-radius: 2px !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: BOTTOM
-------------------------------------------------------------------------------*/
.bg-bottom {
	background-size: cover;
	background-position: center;
	background-image:
		linear-gradient(0deg, #000000FF 30px, #00000000 200px),
		url('../../_assets/images/texture-footer.webp');
}
.bottom .container {
	max-width: 100%;
	align-items: center;
	gap: var(--spacing-md);
	padding-block: var(--spacing-md);
	color: var(--color-white);
}
@media (min-width: 1100px) {
	.bottom .container {
		display: flex;
		flex-flow: row nowrap;
		justify-content: space-between;
	}
	.bottom small {
		text-align: right;
		text-wrap: balance;
	}
}
.bottom small {
	display: block;
	max-width: 470px;
	text-align: center;
	text-wrap: balance;
}
.bottom p {
	margin: unset;
	font-size: 10px;
	line-height: 1.2;
	letter-spacing: 0.02em;
	color: var(--color-white);
}
.bottom a {
	color: inherit;
}
.bottom .logos {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
	gap: var(--spacing-md);
}
.bottom .logos img {
	max-width: 120px;
	max-height: 80px;
	object-fit: contain;
}
.bottom-legal {
	display: flex;
	flex-flow: row wrap;
	gap: var(--spacing-md);
	align-items: center;
}
.bottom-legal img {
	margin-block: auto;
	max-height: 80px;
	max-width: 160px;
	object-fit: contain;
}