@font-face {
    font-family: "Montserrat";
    src:url("montserrat_reg.ttf") format("woff");
}	

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Montserrat", sans-serif;
}

body {
	background: #0a0a0d;
	color: #fff;
	overflow: hidden;
}

/* film grain */
body::before {
	content: "";
	position: fixed;
	inset: 0;
	background: url("../images/back.jpeg");
	opacity: .4;
	pointer-events: none;
}

/* =========================
   STAGE
========================= */

.wrap {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.frame {
	width: 1000px;
	height: 600px;
	display: flex;
	border: 1px solid rgba(255, 255, 255, .1);
	overflow: hidden;
}

/* =========================
   LEFT VISUAL (FULL IMPACT)
========================= */

.visual {
	width: 55%;
	position: relative;
	overflow: hidden;
}

.visual img,
.visual video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(.75) contrast(1.1);
}

/* editorial overlay */
.visual::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .25);
}

/* =========================
   RIGHT QUIZ FLOW
========================= */

.quiz {
	width: 45%;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 5;
}

/* STEP SYSTEM */
.step {
	display: none;
}

.step.active {
	display: block;
	animation: fade .35s ease;
}

@keyframes fade {
	from {
		opacity: 0;
		transform: translateY(12px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* TYPOGRAPHY (IMPORTANT) */

.tag {
	font-size: 12px;
	letter-spacing: 3px;
	opacity: .5;
	margin-bottom: 12px;
}

h1 {
	font-size: 46px;
	line-height: 1.05;
	margin-bottom: 16px;
}

p {
	font-size: 18px;
	opacity: .75;
	margin-bottom: 24px;
	line-height: 1.5;
}

/* =========================
   BUTTONS (EDITORIAL STYLE)
========================= */

a {
	display: block;
	text-decoration: none;
	color: #fff;
	padding: 14px 0;
	margin-bottom: 10px;

	font-size: 16px;

	border-bottom: 1px solid #ff2f935d;
	transition: .2s;
}

a:hover {
	opacity: .5;
	transform: translateX(6px);
}

/* CTA */
.cta {
	border: none;
	background: #ff2f92;
	padding: 14px 18px;
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	border-radius: 0;
	margin-top: 10px;
}

@media (max-width: 900px) {
	.frame{
	  flex-direction: column;
	  width: 100%;
	  height: 100vh;
	}
  
	.visual{
	  width: 100%;
	  height: 45vh;
	}
  
	.quiz{
	  width: 100%;
	  height: 55vh;
	  padding: 50px 20px 20px;
	  justify-content: flex-start;
	  overflow-y: auto;
	}
  
	h1{
	  font-size: 40px;
	}
  }