@charset "utf-8";


/* GLOBAL: INSTANTIATE
-------------------------------------------------------------------------------*/
@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/montserrat-regular.ttf') format('truetype');
	font-weight: 400 800;
	font-style: normal;
}
@font-face {
	font-family: 'Bona Nova';
	src: url('../fonts/bonanova-regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}

:root {
	--color-black:    #000000;
	--color-slate:    oklch(30% 0% 68deg);
	--color-stone:    oklch(27% 0% 68deg);
	--color-ash:      oklch(38% 0% 68deg);
	--color-orange:   oklch(71% 60% 40deg);
	--color-gold:     oklch(83% 45% 90deg);
	--color-yellow:   oklch(89% 37% 94deg);
	--color-white:    #FFFFFF;
	--grad-shadow:    radial-gradient(circle,rgba(44, 44, 44, 1) 0%, rgba(0, 0, 0, 1) 100%);
	--font-sans:      'Montserrat', Helvetica, Arial, sans-serif;
	--font-accent:    'Bona Nova', '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:       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-white);
	background-color: var(--color-black);
	background-image: linear-gradient(180deg, var(--color-stone) 0%, var(--color-black) 100%);
	line-height: 1.4;
}
body {
	font-family: var(--font-sans);
	font-size: clamp(0.9375rem, 0.8661rem + 0.2857vw, 1.0625rem);
	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-family: var(--font-sans);
	font-weight: var(--weight-bold);
	color: inherit;
	line-height: 1.2;
	letter-spacing: 0.01em;
	text-wrap: balance;
}
p {
	text-wrap: pretty;
	line-height: 1.4;
	orphans: 3;
	widows: 3;
}
strong {
	font-weight: 700;
}
small {
	font-size: 10px;
}
ul {
	padding-inline-start: 1.5em;
	list-style: none;
	text-wrap: balance;
	color: inherit;
}
ul.list-deco li {
	margin-block: 0.75em;
	text-indent: -2ch;
}
ul.list-deco li::before {
	content: '';
	display: inline-block;
	height: 1.3ch;
	width: 1ch;
	margin-right: 1ch;
	vertical-align: middle;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12.7" height="12.7"><path d="M6.4 0 11 6.4l-4.7 6.3-4.8-6.3Z" fill="%23727272"/></svg>');
}
.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-orange);
}
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-grid;
	place-items: center;
	font-weight: var(--weight-bold);
	cursor: pointer;
	padding: 0.5em 1em 0.65em 1em;
	min-height: 48px;
	transition: all var(--motion);
	border-radius: var(--radius-full);
	color: var(--color-black);
	overflow: hidden;
	letter-spacing: -0.02em;
}
.btn::before,
.btn::after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	transition: opacity var(--motion);
}
.btn::before {
	background:
		linear-gradient(180deg,
		var(--color-yellow) 0%,
		var(--color-gold) 100%);
}
.btn::after {
	background-color: var(--color-orange);
	opacity: 0;
}
.btn:hover::after {
	opacity: 1;
}
.btn,
.btn:link,
.btn:visited {
	color: var(--color-black);
	text-decoration: none !important;
}
.btn:hover {
	color: var(--color-white);
}
.btn:hover:focus {
	border: 0;
}


/* GLOBAL: CONTAINERS
-------------------------------------------------------------------------------*/
body {
	background-color: var(--color-black);
	overflow-x: hidden;
}
.container {
	display: flex;
	flex-flow: column;
	align-items: center;
	margin-inline: auto;
	width: 100%;
	max-width: var(--width-wide);
	padding: var(--spacing-lg) var(--spacing-md);
	gap: 1em;
	z-index: 10;
	position: relative;
	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 {
	transform: scaleY(-1);
	top: 0;
}
[class*="fade-"]::after {
	bottom: 0;
}


/* GLOBAL: HEADING
-------------------------------------------------------------------------------*/
[class*="heading-"] {
	font-family: var(--font-accent);
	font-weight: var(--weight-base);
	font-size: clamp(1.875rem, 0.0893rem + 7.1429vw, 5rem);
	letter-spacing: 0.06em;
	display: flex;
	flex-flow: column nowrap;
	text-align: center;
	text-transform: uppercase;
	margin-block: unset;
	position: relative;
	z-index: 2;
	color: var(--color-orange);
}
[class*="heading-"]::before,
[class*="heading-"]::after {
	content: attr(data-text);
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	filter: blur(1px);
	opacity: 0.9;
}
[class*="heading-"]::before {
	color: red;
	transform: scale(1.01);
}
[class*="heading-"]::after {
	color: #028130;
	transform: scale(.993);
}
.headline {
	max-width: calc( 100% / 2 );
	margin-inline: auto;
}


/* SECTION: UTILITY
-------------------------------------------------------------------------------*/
.utility {
	--_ubg: var(--color-slate);
	--_utx: var(--color-white);
	--_sbg: var(--color-yellow);
	--_stx: var(--color-slate);
	--_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);
	color: var(--color-orange);
}
.utility .btn::before {
	background: var(--color-white);
}
.utility .btn:hover::after {
	background: var(--color-orange);
}
.utility .btn:hover {
	color: var(--color-white);
}
.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;
}
.header .container {
	display: grid;
	grid-template-rows: 1fr auto 1fr;
	grid-template-columns: 1% 1fr 2fr;
	padding-block: unset;
	padding-inline: var(--spacing-md);
	position: relative;
	height: clamp( 400px, 70vw, 700px );
	gap: unset;
}
@media (max-width: 860px) {
	.header {
		height: unset;
		aspect-ratio: 1 / 1;
	}
  .header .container {
    grid-template-columns: 0% 1fr 1fr;
	}
}
.hero-logo {
	margin: unset;
	grid-area: 2 / 2 / 3 / 2;
}


/* TEXTURE: HEADER
-------------------------------------------------------------------------------*/
.header::after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 140%;
	top: 0;
	left: 0;
	z-index: 1;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center 30%;
	background-image: url('../images/texture-hero.jpg');
	mask-image: 
			radial-gradient(70vw 100% at top center,
				#000F 90%, 
				#0000 100%);
}
main {
	background-image: 
		linear-gradient(180deg,
			transparent 0%,
			var(--color-slate) 15%,
			var(--color-black) 70%);
}

/* SECTION: ABOUT
-------------------------------------------------------------------------------*/
.about-wrap {
	display: grid;
	place-items: center;
	gap: var(--spacing-md) var(--spacing-lg);
}
@media (min-width: 1100px) {
	.about-wrap {
		grid-template-columns: 42% auto;
		grid-template-rows: auto auto;
	}
}
@media (max-width: 1099px) {
	.about-heading,
	.about-description {
		max-width: 800px;
		margin-inline: auto;
	}
}
.about-heading {
	font-size: clamp(1.375rem, 1.2083rem + 0.6667vw, 1.75rem);
}
.about-description {
	text-shadow: 0 3px 6px #00000033;
}
.about-description p {
	color: inherit;
}
.about-trailer {
	width: 100%;
	overflow: hidden;
	border-radius: var(--radius-md);
	border: 1px solid var(--color-ash);
	background-image: var(--grad-shadow);
	padding: var(--spacing-md);
}
.about-trailer > * {
	box-shadow: 0 3px 10px var(--color-black);
}


/* SECTION: PURCHASE
-------------------------------------------------------------------------------*/
.products-grid {
	display: grid;
	grid-auto-rows: auto;
	gap: var(--spacing-md);
}
.products-card {
	display: grid;
	grid-template-rows: 140px auto 1fr;
	overflow: hidden;
}
.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: 1px solid var(--color-ash);
	background-image: var(--grad-shadow);
	border-radius: var(--radius-md);
}
.products-image {
	grid-area: 1 / 1 / 3 / 2;
	padding-inline: 30px;
}
.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;
}
.products-content h3 + p,
.products-content strong {
	font-size: 1rem;
	font-weight: var(--weight-bold);
}
.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;
}
.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;
}
@media (min-width: 800px) {
	.products-card-wide {
		display: grid;
		grid-template-rows: 100px 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: 1 / 1 / 4 / 2;
		padding-block-end: var(--spacing-md);
		aspect-ratio: unset;
		display: grid;
		justify-content: center;
		align-content: center;
	}
}

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

/* PROMO */
.products-promo::before {
	display: none;
}
.products-promo {
	background-color: var(--color-black);
	border: 1px solid var(--color-ash);
	border-radius: var(--radius-md);
  grid-template-columns: unset;
	grid-template-rows: unset;
}
@media (min-width: 800px) {
	.products-promo {
		grid-template-columns: repeat(5, 1fr);
	}
	.products-promo .products-content {
		grid-area: 1 / 1 / 2 / 4;
		padding-block: var(--spacing-xl);
		background-image:
		linear-gradient(90deg,
			transparent 0%,
			#000F 65%,
			#0000 100%);
	}
	.products-promo .products-image {
		grid-area: 1 / 3 / 2 / 6;
	}
}
.products-promo .products-image,
.products-promo .products-image img {
	padding: unset;
}
.products-promo .products-image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.products-promo .products-content {
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: var(--spacing-sm);
	font-family: var(--font-accent);
	text-align: center;
}
.products-promo .products-content p {
	text-wrap: balance;
	font-size: clamp(1.125rem, 0.6964rem + 1.7143vw, 1.875rem);
	font-weight: var(--weight-bold);
	line-height: 1.3;
	max-width: 40ch;;
	margin-block: unset;
}
.products-promo .products-content img {
	max-width: 300px;
}


/* SECTION: FEATURES
-------------------------------------------------------------------------------*/
.heading-features {
	margin-block-start: var(--spacing-lg);
}
.features-grid {
	display: grid;
	gap: var(--spacing-lg);
}
.features figure {
	margin: unset;
	display: grid;
	align-items: center;
	gap: var(--spacing-md);
	padding: var(--spacing-lg);
	border: 1px solid var(--color-ash);
	background-image: var(--grad-shadow);
	border-radius: var(--radius-md);
}
.features figure img {
	border-radius: var(--radius-md);
}
.features figcaption > * {
	margin: unset;
}
.features figcaption {
	display: flex;
	flex-flow: column;
	gap: 6px;
}
.features figcaption h3 {
	font-size: 135%;
	font-weight: 700;
	position: relative;
	font-size: clamp(1.375rem, -0.125rem + 3vw, 2.5rem);
	line-height: 1.1;
}
.features figcaption h3 + p {
	font-size: clamp(1rem, 0.5rem + 1vw, 1.375rem);
}
@media (min-width: 800px) {
	.features figure {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		padding: var(--spacing-md);
	}
	.features figure img {
		grid-column: span 2;
	}
	.features figure:nth-child(even) img { 
		order: 2;
	}
	.features figcaption {
		text-wrap: balance;
	}
}


/* TEXTURE: FOOTER
-------------------------------------------------------------------------------*/
.footer {
	display: grid;
	grid-template-rows: repeat(4, auto);
	gap: var(--spacing-lg);
}
.footer > * {
	grid-column: 1 / 2;
	z-index: 2;
}
.developer { grid-row: 1 / 3; }
.updates { grid-row: 3 / 4; }
.legal { grid-row: 4 / 5; }
.footerbg {
	grid-row: 2 / 5;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center bottom;
	z-index: 1;
}
.fade-footerbg::before,
.fade-footerbg::after {
	background: 
		linear-gradient(0deg,
			#000000CC 0%,
			#00000000 100%);
}


/* SECTION: DEVELOPER
-------------------------------------------------------------------------------*/
.developer-link {
	position: relative;
	display: flex;
	flex-flow: column nowrap;
	margin-inline: auto;
	text-decoration: none !important;
	padding: var(--spacing-xl);
	gap: var(--spacing-sm);
	max-width: 600px;
}
.developer-link::before {
	pointer-events: none;
	content: '';
	display: block;
	position: absolute;
	transform: scale(170%);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
  background: radial-gradient(ellipse 100% 60% at center, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 50%);
}
.developer-link span {
	font-size: clamp(1rem, 0.9286rem + 0.2857vw, 1.125rem);
	text-transform: uppercase;
	text-align: center;
	text-wrap: none;
	line-height: 1.3;
	font-weight: 700;
	letter-spacing: 0.03em;
	transition: 
		filter var(--motion),
		color var(--motion);
	color: var(--color-white);
	text-shadow: 0 0 8px #000000;
}
.developer-link img {
	filter: drop-shadow( 0 0 3px black );
	max-width: min(400px, 60vw) !important;
	margin-inline: auto;
}
.developer-link:hover img {
	transform: scale(1.05) !important;
}
.developer-link img {
	transition: transform var(--motion);
}


/* SECTION: UPDATES
-------------------------------------------------------------------------------*/
.updates {
	--_abg: var(--color-yellow);
	--_atx: var(--color-black);
	--_hbg: var(--color-orange);
	--_htx: var(--color-white);
}
.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: var(--spacing-lg) var(--spacing-md);
	margin-inline: auto;
	margin-bottom: 30px;
	border-radius: var(--radius-lg);
	background-color: var(--color-black);
	border: 1px solid var(--color-orange);
	box-shadow: 0 0 80px #ce0808a6;
}
.updates-box h2 {
	letter-spacing: unset;
	margin-block-start: unset;
	margin-block-end: 0.6em;
	font-weight: 700;
	text-align: center;
	font-family: var(--font-sans);
	letter-spacing: unset;
}
.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: LEGAL
-------------------------------------------------------------------------------*/
.legal .container {
	max-width: 100%;
	align-items: center;
	gap: var(--spacing-lg);
	padding-block: var(--spacing-md);
}
@media (min-width: 1100px) {
	.legal .container {
		display: flex;
		flex-flow: row nowrap;
		justify-content: space-between;
	}
	.legal small {
		text-align: right;
		text-wrap: balance;
	}
}
.legal small {
	display: block;
	max-width: 550px;
}
.legal p {
	margin: unset;
	font-size: 10px;
	line-height: 1.2;
	letter-spacing: 0.02em;
}
.legal a {
	color: inherit;
}
.legal .logos {
	display: grid;
	grid-template-columns: repeat(2, auto);
	align-items: center;
	justify-content: center;
	gap: var(--spacing-md);
}
.legal .logos img {
	max-height: 80px;
	max-width: 140px;
	object-fit: contain;
}
.legal-right {
	display: flex;
	gap: var(--spacing-md);
	align-items: center;
}
.legal-right img {
	max-height: 70px;
}

