a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

/* --------------------
   GENERAL
-------------------- */

body {
  background: #F4F4F4;
  font-family: "Inter", sans-serif;
}


/* --------------------
   NAV
-------------------- */

.nav {
  background-color: #FAFAFA;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  width: 70%;
  height: 80px;
  top: 50px;
  position: fixed;
  left: 15%;
  opacity: 0.9;
  z-index: 100;
}

.logo {
  width: 50%;
  float: left;
}

.logo img {
  height: 40px;
  margin-top: 20px;
  margin-left: 40px;
}

.button {
  width: 50%;
  float: right;
  text-align: right;
}

button {
  background-color: black;
  color: white;
  border-radius: 100px;
  border-width: 0px;
  padding: 10px 20px;
  margin-top: 20px;
  margin-right: 40px;
}

button:hover {
  background-color: #264B35;
}

.nav a,
.nav a:visited {
  color: inherit;
  text-decoration: none;
}


/* --------------------
   HERO
-------------------- */

.hero {
  text-align: center;
  margin-top: 250px;
}

h1 {
  font-size: 96px;
  width: 60%;
  font-weight: 700;
  margin: 0 auto;
  line-height: 96%;
}

h2 {
  font-size: 18px;
  width: 40%;
  font-weight: 400;
  padding-top: 60px;
  margin: 0 auto;
  line-height: 130%;
  opacity: 0.7;
  text-align: center;
}


/* --------------------
   HERO CARDS
-------------------- */

.hero-image {
  width: 90%;
  margin-left: 5%;
  margin-top: 70px;
  height: 800px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  perspective: 1200px;
}

.hero-card {
  position: absolute;
  width: auto;
  height: min(800px, 70vw);
  max-width: 80%;
  left: 50%;
  top: 0;
  transform-origin: center center;
  will-change: transform;
}


/* Layering */

.card-back-left {
  z-index: 1;
}

.card-back-right {
  z-index: 2;
}

.card-front {
  z-index: 3;
}


/* --------------------
   SECTION TITLES
-------------------- */

.title {
  margin-top: 100px;
}

h3 {
  font-size: 75px;
  width: 60%;
  font-weight: 700;
  margin: 0 auto;
  line-height: 79px;
  text-align: center;
}


/* --------------------
   HOW TO PLAY
-------------------- */

.feature-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px 60px;
  max-width: 1000px;
  margin: 80px auto 0;
}

.feature-block {
  width: 100%;
  text-align: center;
  font-family: "Inter", sans-serif;
}


/* Put Step 5 in the middle */

.feature-block:last-child {
  grid-column: 1 / -1;
  width: calc(50% - 30px);
  justify-self: center;
}

.feature-image img {
  max-width: 100%;
  height: auto;
}

h4 {
  font-size: 28px;
  font-weight: 700;
  margin-top: 30px;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  opacity: 0.7;
  margin-top: 12px;
}


/* --------------------
   FAQS
-------------------- */

.faq-container {
  width: 100%;
}

.faq-item {
  box-sizing: border-box;

  border-radius: 12px;
  border-style: solid;
  border-color: #EAEAEA;
  border-width: 2px;

  color: black;

  width: 600px;

  margin: 0 auto 30px;

  padding: 30px 24px;

  font-family: "Inter", sans-serif;
  font-weight: 300;

  background: #F4F4F4;
}

.faq-item:first-child {
  margin-top: 50px;
}


/* FAQ question */

.faq-item summary {
  font-size: 16px;
  font-weight: 700;
  text-align: center;

  cursor: pointer;

  list-style: none;

  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}


/* FAQ answer */

.faq-item p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;

  text-align: center;

  opacity: 0;

  max-height: 0;

  overflow: hidden;

  margin-top: 0;

  transition:
    max-height 0.4s ease,
    opacity 0.25s ease,
    margin-top 0.4s ease;
}


/* Open FAQ */

.faq-item[open] p {
  opacity: 0.7;

  max-height: 300px;

  margin-top: 12px;
}


/* --------------------
   WAITLIST FORM
-------------------- */

.form {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  margin-bottom: 100px;
}

#starting-five-signup {
  max-width: 420px;
}

#starting-five-signup form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#starting-five-signup h3 {
  margin: 0 0 8px;
}

#starting-five-signup input {
  width: 100%;
  box-sizing: border-box;

  padding: 14px 16px;

  border: 1px solid #ccc;
  border-radius: 6px;

  font-size: 16px;
  font-family: "Inter", sans-serif;
}

#starting-five-signup button {
  padding: 14px 20px;

  border: 0;
  border-radius: 100px;

  font-size: 16px;
  font-weight: 500;

  cursor: pointer;

  width: 100%;

  font-family: "Inter", sans-serif;
}

.mailchimp-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  opacity: 0.5;
}

.mailchimp-credit span {
  font-size: 11px;
}

.mailchimp-credit img {
  width: 75px;
  height: auto;
}


/* --------------------
   MOBILE
-------------------- */

@media (max-width: 900px) {

  /* NAV */

  .nav {
    width: 90%;
    top: 30px;
    left: 5%;
  }

  .logo {
    width: 40%;
  }

  .logo img {
    height: 30px;
    margin-top: 25px;
    margin-left: 30px;
  }

  .button {
    width: 60%;
  }

  button {
    margin-right: 30px;
  }


  /* HERO */

  .hero {
    margin-top: 150px;
  }

  .hero-image {
    height: 70vw;
    margin-top: 50px;
  }

  .hero-card {
    height: 70vw;
    max-width: 85%;
  }

  h1 {
    width: 80%;
    font-size: 56px;
    line-height: 60px;
  }

  h2 {
    font-size: 18px;
    width: 80%;
    padding-top: 30px;
  }

  h3 {
    font-size: 40px;
    line-height: 45px;
    width: 80%
  }


  /* HOW TO PLAY */

  .feature-row {
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 50px;
  }

  .feature-block,
  .feature-block:last-child {
    width: 80%;
    justify-self: center;
    grid-column: auto;
  }


  /* FAQS */

  .faq-item {
    width: 80%;
  }


	.form {
	  width: 90%;
	  max-width: 420px;
	  margin: 0 auto;
	  margin-bottom: 100px;
	}

}
