@charset "utf-8";


/* GLOBAL: INSTANTIATE
-------------------------------------------------------------------------------*/
@font-face {
	font-family: 'Windsor';
	src: url('../fonts/windsor-regular.woff2') format('woff2'),
		 url('../fonts/windsor-regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Poppins';
	src: url('../fonts/poppins-regular.woff2') format('woff2'),
		 url('../fonts/poppins-regular.woff') format('woff');
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: 'Poppins';
	src: url('../fonts/poppins-light.woff2') format('woff2'),
		 url('../fonts/poppins-light.woff') format('woff');
	font-weight: 400;
	font-style: normal;
}
:root {
	--color-black:   #000000;
	--color-navy:    #00194C;
	--color-purple:  #21188B;
	--color-magenta: #FF0081;
	--color-lilac:   #9379E6;
	--color-pink:    #ff8bd1;
	--color-white:   #FFFFFF;
	--font-accent:   'Windsor', Georgia, Times, serif;
	--font-sans:     'Poppins', Helvetica, Arial, sans-serif;
	--width-slim:    640px;
	--width-wide:    1400px;
}


/* GLOBAL: TYPOGRAPHY
-------------------------------------------------------------------------------*/
html {
	color: var(--color-text);
	line-height: 1.4;
}
body {
	font-size: 16px;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased;
	-moz-osx-font-smoothing: grayscale;
}
@media (min-width: 740px) {
	body {
		font-size: 18px;
	}
}
@media (min-width: 960px) {
	body {
		font-size: 19px;
	}
}
@media (min-width: 1200px) {
	body {
		font-size: 20px;
	}
}
body, select, input, textarea {
	color: var(--color-white);
	font-family: var(--font-sans);
	font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
	color: var(--color-white);
	font-family: var(--font-accent);
	font-weight: 400;
	line-height: 1.2;
	text-transform: uppercase;
}
body, p {
	letter-spacing: 0.2px;
	line-height: 1.5;
}
p {
	hyphens: auto;
}
small {
	font-size: .7em;
	text-align: center;
}


/* GLOBAL: LINKS
-------------------------------------------------------------------------------*/
::-moz-selection {
	background: #b3d4fc;
	text-shadow: none;
}
::selection {
	background: #b3d4fc;
	text-shadow: none;
}
a:link,
a:visited,
a:active {
	color: var(--color-black);
}
a:hover {
	text-decoration: underline;
}
a:link {
	-webkit-tap-highlight-color: rgba(242, 228, 212, 0.5);
}
::-moz-selection {
	background: rgba(242, 228, 212, 0.5);
	text-shadow: none;
}
::selection {
	background: rgba(242, 228, 212, 0.5);
	text-shadow: none;
}
.button {
	align-items: center;
	background: linear-gradient(#fff 0%, #bef3fe 80%, #98ecfd 100%);
	border: 1px solid var(--color-black);
	border-radius: 8px;
	box-shadow: 0 7px 0 0 var(--color-black);
	color: var(--color-white);
	cursor: pointer;
	display: inline-flex;
	font-family: var(--font-accent);
	justify-content: center;
	max-width: 100%;
	min-height: 60px;
	overflow: hidden;
	text-decoration: none;
	text-transform: uppercase;
}
.button:hover {
	background: linear-gradient(#98ecfd 0%, #bef3fe 20%, #fff 100%);
	text-decoration: none;	
}
.button:focus {
	box-shadow:	0 -7px 0 0 var(--color-black);
	transform: translateY(7px);
}


/* LAYOUT: CONTAINERS
-------------------------------------------------------------------------------*/
body {
	background-color: var(--color-black);
	overflow-x: hidden;
}
.container {
	gap: 1em;
	margin-left: auto;
	margin-right: auto;
	max-width: var(--width-wide);
	padding: 3em 5%;
	position: relative;	
	width: 100%;
	z-index: 2;
}


/* LAYOUT: HEADER
-------------------------------------------------------------------------------*/
.header {
	background-image: radial-gradient(circle at 50% 25%, #fff 0%, #d5f8fa 20%, #00e4f4 35%, #12a8c9 50%, #178ba0 60%, #033e5e 85%, #011b2c 100%);
	position: relative;
}
.header .container {
	align-items: center;
	display: grid;
	justify-content: center;
}
@media (min-width: 960px) {
	.header {
		background-image: radial-gradient(circle at calc(45% - 220px), #fff 0%, #d5f8fa 20%, #00e4f4 35%, #12a8c9 50%, #178ba0 60%, #033e5e 85%, #011b2c 100%);
	}
	.header .container {
		grid-template-columns: repeat(2, 1fr);
		gap: 4%;
	}
}
.header-purchase,
.header-hero {
	margin: 0 auto;
	max-width: var(--width-slim);
}
.header-hero {
	padding: 3%;
	margin-bottom: -160px;
}
.header-logo {
	margin: 0 auto 2em auto;
  width: 86%;
}
.header-platforms {
	display: grid;
	gap: 1em;
}
.header-platforms .button {
	height: 72px;
}
.header-platforms .button svg {
	max-height: 45px;
	max-width: 170px;
}
@media (min-width: 500px) {
	.header-platforms {
		grid-template-columns: repeat(2, 1fr);
	}
}
.header-gum {
	max-width: 525px;
	position: absolute;
	top: 0;
	width: 47%;
	z-index: 1;
}


/* LAYOUT: ABOUT
-------------------------------------------------------------------------------*/
.about {
	background-image: radial-gradient(circle at 50% 10%, #001750 10%, #001549 20%, #00050f 45%);
	border: clamp(10px, 3vw, 35px) solid var(--color-pink);
	position: relative;
	text-align: center;
}
.about-top {
	display: grid;
	margin: 60px auto 0 auto;
	padding-bottom: 0;
}
@media (min-width: 960px) {
  .about-top {
		grid-template-columns: 50% 50%;
	}
}
.about-details,
.about-email {
	margin: 0 auto;
	max-width: var(--width-slim);
}
@media (min-width: 960px) {
	.about-details {
		text-align: left;
	}
}
.about-details h2 {
	font-size: clamp(22px, 2.8vw, 32px);
	margin: 0;
}
.about-screenshots {
	display: flex;
	flex-flow: column wrap;
	gap: 18px;
	justify-content: center;
	margin-bottom: 120px;
	padding: 0 4%;
}
.about-screenshots figure {
	background-color: var(--color-navy);
	margin: 0;
	padding: 8px;
}
.about-screenshots img {
	border: 6px solid var(--color-purple);
}
@media (min-width: 740px) {
	.about-screenshots {
		flex-flow: row wrap;
		padding: 0;
	}
	.about-screenshots figure {
		max-width: 45%;
	}
}
@media (min-width: 1200px) {
	.about-screenshots figure {
		max-width: 30%;
	}
}
.about-screenshots figcaption {
	font-size: 18px;
	padding: 14px 8px 8px 8px;
	text-align: center;
}
.about-gum {
	bottom: clamp(-35px, -3vw, -10px);
	left: clamp(-35px, -3vw, -10px);
	max-width: 525px;
	position: absolute;
	transform: scaleY(-100%);
	width: 47%;
	z-index: 1;
}
.about-lilguy {
	bottom: clamp(-35px, -3vw, -10px);
	max-width: 500px;
	position: absolute;
	right:  clamp(-35px, -3vw, -10px);
	width: 40%;
	z-index: 1;
}


/* LAYOUT: EMAIL
-------------------------------------------------------------------------------*/
.about .klaviyo-form {
	margin: 0 auto;
	max-width: 400px;
}
.about .klaviyo-form div div {
	padding: 0 !important;
}
.about .klaviyo-form input[type="email"] {
	border: 0;
	border-radius: 8px !important;
	color: var(--color-black) !important;
	font-family: var(--font-sans) !important;
	min-height: 60px !important;
	padding: 0 !important;
	text-align: center !important;	
}
.about .klaviyo-form button {
	align-items: center !important;
	background: linear-gradient(#ff6cbf 0%, #f4329f 100%) !important;
	border: 1px solid #000a0a;
	box-shadow: 0px 7px 0px #000a0a;
	border-radius: 8px !important;
	font-family: var(--font-accent) !important;
	font-size: 20px !important;
	font-weight: normal !important;
	justify-content: center !important;
	letter-spacing: 0 !important;
	margin: 10px 0 !important;
	padding: 0 !important;
}
.about .klaviyo-form button:hover {
	background: linear-gradient(#f4329f 0%, #ff6cbf 100%) !important;
}
.about .klaviyo-form p {
	opacity: 0.7;
}
.about .about-email small a {
	color: var(--color-white);
}


/* LAYOUT: PHYSICAL
-------------------------------------------------------------------------------*/
.physical {
	align-items: center;
	background-image: url('../images/physical-bg.jpg');
	background-size: cover;
	color: var(--color-navy);
	position: relative;
	overflow: hidden;
	padding: clamp(1em, 5%, 60px) 0 clamp(1em, 5%, 20px) 0;
}
.physical .container {
	display: grid;
}
@media (max-width: 959px) {
	.physical .container {
		grid-template-columns: 100%;
		text-align: center;
	}
	.physical-copy {
		padding: 0 10%;
		grid-row: 1;
	}
	.physical-beautyshot {
		grid-row: 2;
	}
	.physical-action {
		grid-row: 3;
	}
}
@media (min-width: 960px) {
	.physical .container {
		grid-template-columns: 42% 0% 1fr;
	}
	.physical-copy {
		grid-column: 1 / span 2;
		grid-row: 1 / span 1;
		position: relative;
		z-index: 1;
	}
	.physical-action {
		grid-column: 1 / span 1;
		grid-row: 2 / span 1;
		position: relative;
		z-index: 1;
	}
	.physical-beautyshot {
		grid-column: 2 / span 2;
		grid-row: 1 / span 2;
	}
	.physical-beautyshot img {
		max-width: 1000px;
		margin-left: -10%;
	}
	.physical-copy p {
		padding-right: 16%;
	}
}
.physical-mint {
	left: 0;
	max-width: clamp(200px, 20vw, 420px);
	position: absolute;
	top: 0;
}
.physical-copy h2 {
	color: var(--color-navy);
}
.physical .button {
	color: var(--color-magenta);
	border-color: var(--color-magenta);
	box-shadow: 0 7px 0 0 var(--color-magenta);
	font-size: clamp(22px, 2.6vw, 32px);
	margin-bottom: 60px;
	min-width: 250px;
	padding: 0.5em;
}
.physical-action .button:focus {
	box-shadow: 0 -7px 0 0 var(--color-magenta);
}


/* LAYOUT: SOCIAL
-------------------------------------------------------------------------------*/
.social {
	background-color: #001847;
	background-image: url('../images/social-bg.jpg');
	background-position: center right;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.social::after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	position: absolute;
	background-color: #00194CCC;
}
@media (min-width: 960px) {
	.social {
	    background-size: contain;
	}
	.social::after {
		 display: none;
	}
	.social-box {
		max-width: 48%;
	}
}
.social .container {
	align-items: center;
	display: flex;
	justify-content: stretch;
	min-height: 500px;
}
.social ul {
	align-items: center;
	display: flex;
	flex-flow: row wrap;
	gap: clamp(5px, 4vw, 30px);
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 10px 0 50px 0;
}
.social svg {
	fill: var(--color-lilac);
	height: 50px;
	width: 50px;
}
.social a:hover svg {
	fill: var(--color-white);
	
}
.social-box {
	border-width: 0 1px 1px 1px;
	border-style: solid;
	border-color: var(--color-lilac);
	position: relative;
	width: 100%;
}
.social-box h2 {
	display: inline-block;
	color: var(--color-lilac);
	left: 50%;
	font-size: 24px;
	margin: 0;
	padding: 4px 12px;
	position: relative;
	text-align: center;
	top: -18px;
	transform: translateX(-50%);
}
.social-box::before,
.social-box::after {
	display: block;
	content: "";
	width: calc(50% - 150px);
	height: 1px;
	top: 0;
	position: absolute;
	background-color: var(--color-lilac);
}
.social-box::before {
	left: 0;
}
.social-box::after {
	right: 0;
}


/* LAYOUT: FOOTER
-------------------------------------------------------------------------------*/
.footer {
	background-color: var(--color-black);
	position: relative;
}
.footer .container {
	padding-top: 3%;
}
.footer-greenkid img {
	max-width: clamp(170px, 50vw, 320px);
}
.footer p {
	margin: 0;
}
.footer small {
	display: block;
	font-size: 8px;
	line-height: 1.5;
	opacity: 0.6;
	text-align: left;
}
.logos {
	align-items: center;
	display: flex;
	flex-flow: row wrap;
	gap: clamp( 12px, 5%, 24px);
	justify-content: center;
	padding: 12px;
}
.logos img {
	max-height: 80px;
	max-width: 120px;
  object-fit: contain;
}
@media (min-width: 600px) {
	.logos {
		justify-content: flex-start;
	}
}
@media (max-width: 739px) {
	.footer {
		display: flex;
		flex-flow: column;
	}
	.footer-greenkid {
		order: 1;
	}
}
@media (min-width: 740px) {
	.footer .container {
		display: grid;
		grid-template-columns: clamp(150px, 50vw, 280px) 1fr;
	}
	.footer-greenkid {
		grid-column: 1;
	}
	.footer-greenkid img {
		position: absolute;
		left: 0;
		bottom: 0;
	}
	.footer-wrap {
		grid-column: 2;
	}
}
@media (min-width: 1875px) {
	.footer-wrap {
		grid-column: 1 / span 2;
	}
  .footer small {
		text-align: center;
	}
	.logos {
		justify-content: center;
	}
}


/* OVERRIDES: PRINT
-------------------------------------------------------------------------------*/
@media print,
	(-webkit-min-device-pixel-ratio: 1.25),
	(min-resolution: 1.25dppx),
	(min-resolution: 120dpi) {
}
@media print {
	*,
	*::before,
	*::after {
		background: #FFF !important;
		box-shadow: none !important;
		color: #000 !important;
		text-shadow: none !important;
	}
	a,
	a:visited {
		text-decoration: underline;
	}
	a[href]::after {
		content: " (" attr(href) ")";
	}
	abbr[title]::after {
		content: " (" attr(title) ")";
	}
	a[href^="#"]::after,
	a[href^="javascript:"]::after {
		content: "";
	}
	pre {
		white-space: pre-wrap !important;
	}
	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}
	thead {
		display: table-header-group;
	}
	tr,
	img {
		page-break-inside: avoid;
	}
	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}
	h2,
	h3 {
		page-break-after: avoid;
	}
}