@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    url("./fonts/Inter-Regular.woff2") format("woff2"),
    url("./fonts/Inter-Regular.woff") format("woff");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src:
    url("./fonts/Inter-Bold.woff2") format("woff2"),
    url("./fonts/Inter-Bold.woff") format("woff");
}

:root {
  --bg:#0ffff
  --accent:#f#00a7d1
  --muted:#94a3b8;

  --white: #fff;
  --black: #000;  --card:#0b1220;
  --glass:rgba(255,255,255,0.04);
  --maxw:1500px;
}

.debug {
  outline:1px solid red; 
}

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

html, body {
  font-family: "Inter", system-ui, Arial, sans-serif;
  margin: 0;
  background-color: var(--white);
  font-size: 14px; 
  line-height: 1.4;
}

h2 {
  padding: 1rem 0 2rem 0;
}

.main-container {
  width: 100%;
  margin: 0;
  padding: 1rem 0;
}

.content {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2rem;
}

.two-column {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.section-light {
  background: white;
  color: black;
  width: 100%;
  padding: 3rem 0 8rem 0;
}

.section-dark {
  background: black;
  color: white;
  width: 100%;
  padding: 3rem 0 8rem 0;
}

header, .header-container {
  display:flex; 
  align-items:center; 
  height: auto;
  margin: 0 auto;
  width: 100%;
  justify-content:space-between; 
  padding:1rem 3rem;
  max-width: 1500px;
}

.logo {
  width: 160px;
  color: rgba(0,0,0,1);
  position: relative;
  font-size: 18px;
  text-align: left;
  font-weight:800; 
  letter-spacing:0.6px
}

.quiz-link {
  width: 157px;
  color: rgba(0,0,0,1);
  font-size: 18px;
  opacity: 1;
  text-align: left;
  font-weight:600;
  margin: auto 1rem; 
}

.btn,
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:0.5rem;
  padding:0.85rem 1.2rem;
  margin: 1rem 0;
  text-decoration:none;
  font-weight:700;
  font-size:1rem;
  cursor:pointer;
  border:1px solid transparent;
  transition:transform .18s ease, box-shadow .18s ease;
}

.button-main::after {
  content: '→';
  display:inline-block;
  margin-left:0.5rem;
  font-size:1.2em;
}

.btn:hover,
.button:hover {
  transform:translateY(-1px);
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.button-black {
  background: #000;
  color: #fff;
  border: 1px solid #000;
}

/* .button-ghost {
  background: #fff;
  color: #000;
  border: 1px solid #000;
} */

@media (max-width: 900px) {
  .button-black {
    width: 100%;
    max-width: 420px;
    margin: 0.5rem auto;
  }
}

@media(max-width:900px) {
  /* .hero { grid-template-columns:1fr } */
  /* .how { grid-template-columns:1fr } */
  /* .stats { flex-direction: column; align-items: center; } */
  .content { padding: 0 1rem; }
  .section-light, .section-dark { padding: 4rem 1.7rem; }
}

/* Hero section */

.hero-section {
  width: 100%;
  height: auto;
  padding: 2rem 0;
}

.subtitle {
  max-width: 600px;
  color: rgb(100, 100, 100);
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: -8rem;
}

.main-title {
  width: 50%;
  color: rgba(0,0,0,1);
  font-style: italic;
  font-size: 96px;
  opacity: 1;
  text-align: left;
  line-height: 1.1;
}

.title-description {
  width: 60%;
  color: rgba(0,0,0,1);
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: left;
  margin: 2rem 0;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stat-4-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  background: rgba(242,242,242,1);
  padding: 3rem;
  position: relative;
  gap: 1rem;
}

.num {
  color: rgba(0,0,0,1);
  font-weight: 900;
  font-style: italic;
  font-size: 2.7rem;
  margin: 0;
  text-align: left;
}

.desc {
  color: rgba(0,0,0,1);
  font-weight: 500;
  font-style: uppercase;
  font-size: 1rem;
  margin: 0.5rem 0 0;
  text-align: left;
}

/* How it works section */


.how-it-works-section {
  width: 100%;
  height: max-content;
  margin: 4rem 0;
}

.title  {
  font-size: 5rem;
  font-weight: 800;
  font-style: italic;
}

.reality-section {
margin-top: 4rem;
margin-bottom: 7rem;
}

/* Footer */


footer {
  margin-top: 40px;
  color: var(--white);
  font-size: 14px;
  background: #050608;
  padding: 2.5rem 0 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 2rem;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-bottom: 1.5rem;
}

.footer-col .logo {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.4px;
}

.footer-desc {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 320px;
  line-height: 1.5;
}

.footer-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.footer-links a,
.footer-tag {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-tag {
  opacity: 0.75;
  display: inline-block;
  background: rgba(255, 255, 255, 1);
  color: #000;
  text-transform: uppercase;
  margin-left: 1rem;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-size: 0.8rem;
}

.footer-tag em {
  font-style: normal;
  font-weight: 500;
  font-size: 0.75rem;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.footer-input {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 0;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer-submit {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 1);
  color: #000;
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.2s ease;
}

.footer-submit:hover {
  background: rgba(255, 255, 255, 0.8);
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
  margin: 1rem auto;
  max-width: var(--maxw);
}

.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.8rem 2rem;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-policy {
  display: flex;
  gap: 1rem;
}

.footer-policy a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-form {
    flex-direction: column;
  }

  .footer-bottom {
    justify-content: center;
  }
}

.step {
  display: flex;
  padding: 20px 20px;
  align-items: center;
  gap: 1rem;
}
.step-num {
  width: 125px;
  color: rgba(255,255,255,0.5);
  font-weight: 800;
  font-size: 72px;
  text-align: right;
  flex-shrink: 0;
}

.step-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 0;
}

.step-title {
  color: rgba(255,255,255,1);
  font-weight: 700;
  font-size: 24px;
  text-align: left;
}

.step-desc {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  margin-top: 0.5rem;
  text-align: left;
}

.question {
  text-align: left;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-style: italic;
  font-weight:600;
}

.option {
  padding: 0.5rem;
  display: flex;
  gap: 1rem;
}

.radio {
  width: 15px;
  height: 15px;
  background: rgba(248,248,248,0.7);
  opacity: 1;
  border-radius: 50%;
  align-self: center;
}
.answer-text {
  text-align: left;
  font-size: 1.2rem;
}

/* New */

.assessment-box {
  width: 800px;
  height: max-content;
  padding: 2rem;
  border: 1px solid rgba(187,185,185,0.5);
  align-items: left;

}

.quote {
  width: 60%;
  /* color: rgba(255,255,255,1); */
  font-weight: Black Italic;
  font-size: 38px;
  text-align: center;
  padding-top: 5rem;
}

.center {
  text-align: center;
  margin: auto;
}

.white {
  color: white;
}

.divider {
  height: 1px;
  background: rgba(0,0,0,0.1);
  margin: 5rem auto;
  max-width: var(--maxw);
}

.always-on-section {
  display: flex;
  flex-direction: row;
}

.column-left {
  width: 60%;
  text-align: left;
}

.column-right {
  width: 40%;
  text-align: left;
}
.column-right {
  align-items: center;
  padding-top: 3rem;
}

.incentive-section .content {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.incentive-section .column-right .step-content {
  align-items: flex-start;
  margin: 0;
}