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

body {
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  background-image: url("/assets/invader_0.5x_NloWfdqMd_QXFDVR68mU1.png");
  color: #000;
}

/* =========================
   Montserrat (headlines)
   ========================= */

@font-face {
  font-family: "Montserrat";
  src: url("assets/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/Montserrat-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* =========================
   Open Sans (body)
   ========================= */

@font-face {
  font-family: "Open Sans";
  src: url("assets/OpenSans-VariableFont_wdth_wght.ttf") format("truetype");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("assets/OpenSans-Italic-VariableFont_wdth_wght.ttf") format("truetype");
  font-weight: 300 800;
  font-style: italic;
  font-display: swap;
}


/* Links */
a {
  text-decoration: none;
  color: inherit; /* keeps your typography clean */
}

a:hover,
a:focus {
  text-decoration: underline;
}


/* Page layout */
.page {
  background-color: white;
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 24px 120px;
  }

/* Hero */
.hero {
  text-align: center;
  margin-bottom: 80px;
}

.hero-symbol {
  width: 120px;
  margin-left: 30px;
  margin-bottom: 32px;
}

.hero h1 {
    font-family: "Montserrat", system-ui, sans-serif;
  font-size: 56px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.hero h2 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 24px;
  font-style: italic;
  margin-top: 16px;
}

.intro {
  margin-top: 32px;
  line-height: 1.6;
}

.prompt {
  margin-top: 32px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 80px 0;
}

.card {
  border: 2px solid #000;
  padding: 32px;
  min-height: 280px;
}

.card h3 {
  font-style: italic;
  margin-bottom: 12px;
}

.label {
  display: block;
  font-weight: bold;
  margin-bottom: 12px;
}

.card p {
  line-height: 1.4;
}

/* Color accents */
.purple { border-color: #9b6fc6; }
.blue   { border-color: #7aaee6; }
.orange { border-color: #f4c48c; }

/* CTA */
.cta {
  text-align: right;
  margin-bottom: 120px;
}

.button {
  display: inline-block;
  padding: 14px 28px;
  background: #bcdcff;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
}

.current {
  margin-bottom: 80px;
  padding: 20px 80px;
  border: #f4c48c 2px solid;
} 

/* Footer */
.footer {
  text-align: center;
}

.footer h1 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
}

.footer .italic {
  font-family: "Montserrat", system-ui, sans-serif;
  font-style: italic;
}

.footer p {
  margin-top: 24px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 800px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .cta {
    text-align: center;
  }
}
