* {
box-sizing: border-box;
margin: 0;
padding: 0;

}

:root {
	--text-primary-color-dark: rgba(15, 14, 14, 1);
	--text-primary-color-light: rgba(255, 255, 255, 1);
	--text-secondary-color-gray1: rgba(102, 102, 102, 1);
	--background-primary-color-dark: rgba(40, 40, 40, 1);
	--background-primary-color-light: rgba(240, 234, 234, 1);
	--background-secondary-color-dark: rgba(42, 42, 42, 1);
	--hero-primary-color-orange: rgba(255, 81, 0, 1);
}

a {
	text-decoration: none;
	cursor: pointer;
}

button {
	appearance: none;
	background: transparent;
	border: none;
	cursor: pointer;
	isolation: isolate;
}

html::-webkit-scrollbar {
display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

html {
-ms-overflow-style: none;  /* Hide scrollbar for IE and Edge */
scrollbar-width: none;  /* Hide scrollbar for Firefox */
}

body {
font-family: "AssistantPro-Bold";
background-color: var(--background-primary-color-dark);
}

body::-webkit-scrollbar {
display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

body {
-ms-overflow-style: none;  /* Hide scrollbar for IE and Edge */
scrollbar-width: none;  /* Hide scrollbar for Firefox */
}

@font-face {
font-family: "AssistantPro-Light";
font-style: normal;
font-weight: normal;
src: url("../fonts/AssistantPro/AssistantPro-Light.woff2") format("woff2"), url("../fonts/AssistantPro/AssistantPro-Light.woff") format("woff"), url("../fonts/AssistantPro/AssistantPro-Light.ttf") format("truetype");
}
@font-face {
font-family: "AssistantPro-Regular";
font-style: normal;
font-weight: normal;
src: url("../fonts/AssistantPro/AssistantPro-Regular.woff2") format("woff2"), url("../fonts/AssistantPro/AssistantPro-Regular.woff") format("woff"), url("../fonts/AssistantPro/AssistantPro-Regular.ttf") format("truetype");
}
@font-face {
font-family: "AssistantPro-Bold";
font-style: normal;
font-weight: normal;
src: url("../fonts/AssistantPro/AssistantPro-Bold.woff2") format("woff2"), url("../fonts/AssistantPro/AssistantPro-Bold.woff") format("woff"), url("../fonts/AssistantPro/AssistantPro-Bold.ttf") format("truetype");
}
@font-face {
font-family: "AssistantPro-ExtraBold";
font-style: normal;
font-weight: normal;
src: url("../fonts/AssistantPro/AssistantPro-ExtraBold.woff2") format("woff2"), url("../fonts/AssistantPro/AssistantPro-ExtraBold.woff") format("woff"), url("../fonts/AssistantPro/AssistantPro-ExtraBold.ttf") format("truetype");
}
@font-face {
font-family: "PlantinPro-Black";
font-style: normal;
font-weight: normal;
src: url("../fonts/PlantinPro/PlantinPro-Black.woff2") format("woff2"), url("../fonts/PlantinPro/PlantinPro-Black.woff") format("woff"), url("../fonts/PlantinPro/PlantinPro-Black.ttf") format("truetype");
}

/* Major Thrid scale */

h1 {
font-size: 3.815rem;
line-height: 1;
}

h2 {
font-size: 3.052rem;
line-height: 0.95;
}

h3 {
font-size: 2.441rem;
line-height: 1.05;
}

h4 {
font-size: 1.953rem;
line-height: 1.1;
}

h5 {
font-size: 1.563rem;
line-height: 1.15;
}

h6 {
font-size: 1.25em;
line-height: 1.15;
}

p {
font-family: "AssistantPro-Regular";
font-size: 1.125rem;
line-height: 1.25;
}

@-webkit-keyframes motion-lateral {
	0% {
		transform: translateX(-10px) scale(1);
	}
	25% {
		transform: translateX(-170px) scale(0.25);
	}
	50% {
		transform: translateX(-10px) scale(1);
	}
	75% {
		transform: translateX(150px) scale(0.25);
	}
	100% {
		transform: translateX(-10px) scale(1);
	}
}

@keyframes motion-lateral {
	0% {
		transform: translateX(-10px) scale(1);
	}
	25% {
		transform: translateX(-170px) scale(0.25);
	}
	50% {
		transform: translateX(-10px) scale(1);
	}
	75% {
		transform: translateX(150px) scale(0.25);
	}
	100% {
	  	transform: translateX(-10px) scale(1);
	}
}

@-webkit-keyframes motion-vertical {
	0% {
	  	transform: translateY(0px) scale(0.98);
	}
	100% {
	  	transform: translateY(-4px) scale(1.0);
	}
}

@keyframes motion-vertical {
	0% {
		transform: translateY(0px) scale(0.98);
	  }
	100% {
		transform: translateY(-4px) scale(1.0);
	}
}

@-webkit-keyframes motion-scaleup {
	0% {
	  	transform: scale(1.0);
	}
	100% {
	  	transform: scale(1.25);
	}
}

@keyframes motion-scaleup {
	0% {
	  	transform: scale(1.0);
	}
	100% {
	  	transform: scale(1.25);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes colorSwap {
	0% {
		background-color: var(--hero-primary-color-orange);
	}
	25% {
		background-color: var(--text-primary-color-dark);
	}
	50% {
		background-color: var(--hero-primary-color-orange);
	}
	75% {
		background-color: var(--text-primary-color-dark);
	}
	100% {
		background-color: var(--hero-primary-color-orange);
	}
}


a.inline-link {
	color: var(--hero-primary-color-orange);
}

a.inline-link:hover {
	text-decoration: underline;
	color: rgb(228, 72, 0);
}

.btc-symbol {
	height: 2.75rem;
	padding-left: 0.25rem;
	padding-right: 0.5rem;
}

.btn-home {
	display: block;
	position: absolute;
	top: 28px;
}

.btn-primary {
	isolation: isolate;
	font-size: 12px;
	margin-left: auto;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	border: 0px solid hsl(0, 0%, 100%);
	border-radius: 14px;
	background: transparent;
	position: relative;
	cursor: pointer;
	outline: 2px solid transparent;
	outline-offset: 2px;
  
	& > .bg-container {
	  width: 100%;
	  height: 100%;
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  background: transparent;
	  border-radius: inherit;
	  position: absolute;
	  inset: 0;
	  overflow: hidden;
	  z-index: -1;
  
	  & > .bg-circle {
		width: 150%;
		aspect-ratio: 1;
		background: var(--hero-primary-color-orange);
		border-radius: 10%;
		position: absolute;
		transform: translate(100%, -100%);
		filter: blur(50px);
		transition: 200ms cubic-bezier(0.6, 0, 1, 0.3);
	  }
	}
  
	& > .label {
	  color: var(--text-secondary-color-gray1);
	  padding-block: 12px;
	  padding-inline: 85px 0;
	  display: flex;
	  align-items: center;
	  border-radius: inherit;
	  transition: color 0.25s;
	}

	& > .label span {
		text-wrap: nowrap;
		transition: transform 0.5s ease;
		transform: translateX(0);
	}
  
	& > .label .arrow-contain {
	  padding-left: 0.25rem;
	  margin-bottom: -0.25rem;
	  transition: transform 400ms ease;
	  transform: translateX(0) scaleX(-1);
	}
  
	&:is(:hover) {
	  & .bg-circle {
		transition: transform 0.8s ease;
		transform: translate(0, 0);
	  }
  
	  & > .label span {
		transform: translateX(-24px);
	  }
  
	  & > .label .arrow-contain {
		transform: translateX(-65px) scaleX(-1);
	  }
	}
  
	&:focus-visible {
	  outline-color: white;
	}
}


.btn-close-overlay {
	position: absolute;
	top: 28px;
	right: 3rem;
	width: 32px;
	padding: 10px 0;
	z-index: 1003;
	outline: none;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.btn-close-overlay--icon-line {
	display: block;
	height: 2px;
	width: 100%;
	background-color: rgb(196, 196, 196);
	margin-bottom: 4px;
	border-radius: 2px;
	transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.125),
				background-color 1s;
		-webkit-transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.125),
							background-color 1s;
}

.btn-close-overlay:hover>.btn-close-overlay--icon-line,
.btn-close-overlay-active:hover>.btn-close-overlay--icon-line {
	background-color :var(--hero-primary-color-orange);
}

.btn-close-overlay-active>.btn-close-overlay--icon-line-1,
.btn-close-overlay-active:hover>.btn-close-overlay--icon-line-1 {
	transform: translateY(3px) rotateZ(-135deg);
		-webkit-transform: translateY(3px) rotateZ(-135deg);
}
/*
.menu-active>.menu-icon-line-2,
.menu-active:hover>.menu-icon-line-2 {
	opacity: 0;
}
*/
.btn-close-overlay-active>.btn-close-overlay--icon-line-3,
.btn-close-overlay-active:hover>.btn-close-overlay--icon-line-3 {
	transform: translateY(-3px) rotateZ(135deg);
		-webkit-transform: translateY(-3px) rotateZ(135deg);
}

.btn-close-overlay-active>.btn-close-overlay--icon-line {
	background-color: var(--text-primary-color-dark);
}

.btn-primary--footer {
	margin-left: unset;
	justify-content: center;

	& > .label {
		width: max-content;
		padding-inline: 0 120px;
		padding-block: 8px;
		font-size: 1rem;
	}

	& > .label span {
		font-family: AssistantPro-Regular;
		font-weight: 700;
		color: var(--hero-primary-color-orange);
				transition: 0.2s linear 0s, color 0.2s;
  		-webkit-transition: 0.2s linear 0s, color 0.2s;
	}

	& > .label .arrow-contain {
		margin-bottom: -0.3rem;
		transform: translateX(0) scaleX(1);
		color: var(--hero-primary-color-orange);
	}

	&:is(:hover) {
		& > .label span {
		  transform: translateX(24px);
		  color: var(--text-primary-color-light);
		}
	
		& > .label .arrow-contain {
		  transform: translateX(60px) scaleX(1);
		  color: var(--text-primary-color-light);
		}
	  }
	
}






.content {
	display: flex;
    flex-wrap:wrap;
	text-align: left;
	row-gap: 1rem;
	column-gap: 1rem;
	padding: 1rem 0 4rem;
	z-index: 1;
}

.content > * {
    width:100%;
	flex: 1;
}

.content-about {
	margin-top: 5.5rem;
	padding-bottom: 0;
}

.details {
	margin-left: auto;
	font-family:"AssistantPro-Regular";
	font-size: 0.75rem;
	line-height: 1.25;
	color: var(--hero-primary-color-orange);
}










dialog {
	background: var(--background-primary-color-light);
	width: 100%;
	margin: 10% auto auto;
	border-radius: 2rem;
	border: 0;
	color: var(--text-primary-color-dark);
	box-shadow: 0 5px 30px 0 rgb(0 0 0 / 10%);
	animation: fadeIn 0.25s ease-in-out, motion-vertical 0.25s ease-in-out;
	animation-fill-mode: forwards;
	&::backdrop {
		animation: fadeIn 0.25s ease-in-out, motion-vertical 0.25s ease-in-out;
		animation-fill-mode: forwards;
		background: rgba(0, 0, 0, 0.1);
		z-index: 2;
		backdrop-filter: blur(10px);
	}
}

.dialog-card--contain {
	overflow: hidden;
}

.dialog-detail--contain {
	position: relative;
	max-height: 550px;
	padding: 2rem 3.5rem;
	overflow: hidden auto;
}

.dialog-detail--contain h3 {
	padding-bottom: 1.5rem;
}

.dialog-detail--contain h5 {
	padding-bottom: 2.5rem;
}

.dialog-detail--contain p {
	padding-bottom: 1.15rem;
}

.dialog-header {
	position: sticky;
	top: 0;
	height: 80px;
	background-color: var(--background-primary-color-light);
	box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.05);
}

.footer {
	margin: 0 auto 2rem 0;
	text-align: left;
	color: var(--hero-primary-color-orange);
}

.footer-group {
	position: relative;
	padding-bottom: 1rem;
}

.footer-copy {
	position: relative;
	display: flex;
	justify-content: space-between;
}

.footer-copy p {
	font-size: 12px;
	color: var(--text-secondary-color-gray1);
}

.footer-copy p:hover  {
	
	& > span {
	color: var(--hero-primary-color-orange);
	}
}

.footer-copy p:first-of-type {
	max-width: 150px;
}

.header {
	height: 70px;
	margin: 0 auto;
}

.headerexpand {
	height: 100vh;
	background-color: var(--background-primary-color-dark);
	opacity: 1;
		-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.header--fixed {
	position: fixed;
	z-index: 10;
	right: 0;
	left: 0;
	top: 0;
}

.headroom {
	transition: transform 0.35s cubic-bezier(0.38, 0.01, 0.29, 0.98),
				backdrop-filter 1s cubic-bezier(0.38, 0.01, 0.29, 0.98),
				background-color 1s cubic-bezier(0.38, 0.01, 0.29, 0.98);
		-webkit-transition: transform 0.35s cubic-bezier(0.38, 0.01, 0.29, 0.98),
							backdrop-filter 1s cubic-bezier(0.38, 0.01, 0.29, 0.98),
							background-color 1s cubic-bezier(0.38, 0.01, 0.29, 0.98);
		-webkit-backdrop-filter: blur(10px) opacity(0);
	backdrop-filter: blur(10px) opacity(0);
	will-change: transform;
}
  
.headroom--pinned {
	transform: translateY(0);
}
  
.headroom--unpinned {
	transform: translateY(-100%);
	}
  
.headroom--not-top.headroom--pinned {
	background-color: var(--background-primary-color-dark);
		-webkit-backdrop-filter: blur(10px) opacity(1);
	backdrop-filter: blur(10px) opacity(1);
}

.intro {
	position: relative;
	width: auto;
	height: auto;
	margin: auto;
	padding: 0 6%;
	text-align: center;
	color: var(--text-primary-color-dark);
	transform-origin: center center;
	-webkit-animation: motion-scaleup 4s ease-in-out;
			animation: motion-scaleup 4s ease-in-out;
	animation-fill-mode: forwards;
}

.fig--dn {
	color: rgb(206, 0, 0);
}

.fig--up {
	color: rgb(24, 206, 0);
}

.load-contain {
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	left: 50%;
	width: 80%;
}

.nav-contain {
	width: 88%;
	position: relative;
	margin: 0 auto;
}

/* Common styling for panel elements before removal. */
.panel-1,
.panel-2,
.panel-3 {
	position: fixed;
	height: 100%;
	width: 100%;
	bottom: 0;
	/* box-shadow: 0 -5px 30px 0px rgba(40, 40, 40, 0.1); */
	z-index: 1;
}

/* Individual styling for panel elements and movement transitions. */
.panel-1 {
	background-color: #dadada;
	transition: height 0.9s cubic-bezier(0, 1, 1, 1);
	transition-delay: 0.9s;
}

.panel-2 {
	background-color: #e6e0e0;
	transition: height 0.85s cubic-bezier(0, 1, 1, 1);
	transition-delay: 0.7s;
}

.panel-3 {
	background-color: #f0eaea;
	transition: height 0.8s cubic-bezier(0, 1, 1, 1);
	transition-delay: 0.2s;
}

/* Common styling for panel elements triggering removal. */
.panel-1.disappear,
.panel-2.disappear,
.panel-3.disappear {
	height: 0;
}

.price-btcusd--info {
	display: block;
	width: 100%;
	margin: 5rem 0 0 auto;
}

.price-btcusd--info h6 {
	color: var(--text-secondary-color-gray1);
}

.scroll {
	overflow: hidden;
}

.scroll.disappear {
	overflow: scroll;
}

.showcase {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0 6%;
	z-index: 0;
}

.spinner {
	position: relative;
	width: 0;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto auto 2rem;
  }

.spinner .ball {
	width: 20px;
	height: 20px;
	background-color: var(--text-primary-color-dark);
	border-radius: 50%;
	display: inline-block;
	-webkit-animation: motion-lateral 3s cubic-bezier(0.77, 0, 0.175, 1) infinite,
					   colorSwap 3s cubic-bezier(1, 0, 0, 1) infinite;
			animation: motion-lateral 3s cubic-bezier(0.77, 0, 0.175, 1) infinite,
					   colorSwap 3s cubic-bezier(1, 0, 0, 1) infinite;
}

.stat-card {
	position: relative;
	width: 88vw;
	height: 88vw;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: var(--background-secondary-color-dark);
	padding: 1.75rem 1.65rem 2.75rem 1.5rem;
	border-radius: 2rem;
	transition: height 1s ease-in-out, width 1s ease-in-out, color 0.25s ease-in-out;

	/*
	&:is(:hover, :focus) {
		background-color: rgba(44, 44, 44, 1);
	}
	*/

}

.stat-card h2 {
	padding-bottom: 0.25rem;
}

.stat-2 {
	display: flex;
	align-items: center;
}

.stat-label,
.stat-1,
.stat-2,
.stat-3 {
    color: var(--hero-primary-color-orange);
}

.stat-1.tbd,
.stat-2.tbd,
.stat-3.tbd,
.stat-label.tbd {
	color: var(--text-secondary-color-gray1);
}

.stat-card.tbd {
	justify-content: flex-end;
}

.stat-label.performance {
	padding-top: 2rem;
	color: var(--text-secondary-color-gray1);
}

.stat-label.performance:last-child {
	padding-top: 0.25rem;
}

.stat-price {
	position: absolute;
	right: 0;
	margin-left: 0.75rem;
}

.statement-block {
	margin: 0 0 2.5rem 0;
	color: var(--text-secondary-color-gray1);
}

.statement-block h4 {
	font-family: PlantinPro-Black;
}

.tile-title,
.tile-block {
	opacity: 0;
	color: var(--text-primary-color-light);
	transform: translateY(1rem);
	transition: transform 4000ms cubic-bezier(0.25, 0.95, 0.55, 1), opacity 4000ms cubic-bezier(0.4, 0, 0.2, 1);
}

.tile-title.is-visible,
.tile-block.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.tile-title h2 {
	padding-bottom: 1.1rem;
	font-family: AssistantPro-ExtraBold;
	line-height: 1.1;
}

.tile-title h2.subtitle {
	padding-top: 3.95rem;
	padding-bottom: 2.5rem;
	font-family: PlantinPro-Black;
	text-align: center;
}


.tile-block h5 {
	padding-bottom: 2.25rem;
	font-family: AssistantPro-Bold;
	line-height: 1.15;
}

.title {
	font-family: "PlantinPro-Black";
	font-size: 0.6rem;
	line-height: 1.25;
	/* padding: 0 0 10px 0; */
	color: var(--hero-primary-color-orange);
}

/* Initial styles for elements before removal upon timing. */
.sequence-out {
	position: fixed;
	height: 100%;
	width: 100%;
	margin: auto;
	display: block;
    opacity: 1;
	transform: translateY(0);
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.75, 1),
				opacity 0.5s cubic-bezier(0.2, 0, 0.75, 1);
	transition-delay: 0s;
	z-index: 2;
}

/** Styles applied making element hidden upon timing. **/
.sequence-out.disappear {
    opacity: 0;
	transform: translateY(100%);
}

/* Initial style for elements to be moved upon timing. */
.sequence-open {
	opacity: 0;
	transform: translateY(-40px);
	transition: transform 3s cubic-bezier(0, 1, 0.5, 1);
	transition-delay: 0.9s;

	&:is(:hover, :focus) {
		& .stat-card {
			background-color: rgba(44, 44, 44, 1);
		}
		
		& .label {
			color: rgba(240, 234, 234, 1);

			&:is(:hover, :focus) {
				color: rgba(34, 37, 52, 1);
			}
		}
	}
}

/** Styles applied upon timing. **/
.sequence-open.is-visible {
	opacity: 1;
	transform: translateY(0px);
}


@media (min-width: 320px) {

	:root {
	  font-size: 16px;
	}

	.content {
		width: 100%;
	}

	.price,
	.footer,
	.statement-block {
		width: 100%;
	}

}

@media (min-width: 480px) {

	.btn-primary {
		border-radius: 20px;
	}

	.footer-copy p:first-of-type {
		max-width: initial;
	}
	
	.stat-card {
		height: 48vw;
	}

}

@media (min-width: 737px) {

	:root {
		font-size: 18px;
	}

	.content,
	.statement-block,
	.price,
	.footer {
		width: 600px;
	}

	.dialog-detail--contain {
		padding: 3rem 5.5rem;
	}

	.footer {
		margin: 0 auto 2rem auto;
	}

    .content > * {
        width:50%;
    }

    .content > *:nth-child(3) {
        width:100%;
    }

	.nav-contain {
		width: 600px;
	}

	.stat-card {
		height: 340px;
		width: auto;
	}

	.stat-price {
		right: unset;
	}

}

@media (min-width: 1024px) {

	:root {
		font-size: 22px;
	}

	.btn-close-overlay {
		top: 40px;
	}

	.btn-primary,
	.footer-copy p {
		font-size: 14px;
	}

	.content,
	.statement-block,
	.price,
	.footer,
	.nav-contain {
		width: 880px;
	}

    .content > * {
        width:25%;
    }

    .content > *:nth-child(3) {
        width:50%;
    }

	dialog {
		width: 80%;
	}

	.dialog-detail--contain {
		padding: 3rem 8.5rem;
	}

	.dialog-header {
		height: 105px;
	}

	.stat-card {
		height: 480px;
	}

} 

@media (min-width: 1360px) {

	:root {
		font-size: 24px;
	}

	.btn-primary {
		& > .label .arrow-contain {
			margin-bottom: -0.05rem;
		}	
	}

	.btn-primary,
	.footer-copy p {
		font-size: 16px;
	}

	.content > *:nth-child(3) {
        order:-1;
    }

	.content,
	.statement-block,
	.price,
	.footer,
	.nav-contain {
		width: 1220px;
	}

	dialog {
		width: 80%;
	}

	.dialog-detail--contain {
		padding: 3rem 12.5rem;
	}

	.stat-card {
		height: 640px;
	}

}

@media (min-width: 1920px) {

	:root {
		font-size: 32px;
	}

	.btn-primary {
		& > .label .arrow-contain {
			margin-bottom: 0.125rem;
		}	

	}

	.content,
	.statement-block,
	.price,
	.footer,
	.nav-contain {
		width: 1720px;
	}

	dialog {
		width: 70%;
	}

	.dialog-detail--contain {
		padding: 3rem 10.5rem;
	}

	.stat-card {
		height: 700px;
	}

}

@media (min-width: 2560px) {

	.content,
	.statement-block,s
	.price,
	.footer,
	.nav-contain {
		width: 2200px;
	}

	.dialog-detail--contain {
		padding: 3rem 18.5rem;
	}

	.stat-card {
		height: 820px;
	}

}