
/* Core reset */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: -20px;
  font-family: "Geist", sans-serif;
  background: #ffffff;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
}

.hero {
  text-align: center;
  padding: 1rem;
}

.logo {
  width: clamp(300px, 50vw, 600px);
  height: auto;
}

.tagline {
  margin-top: 1.5rem;
  font-size: clamp(1.05rem, 2.5vw, 1.75rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing:-1px;
}

/* Dark‑mode friendly */

  .tagline {
    color: inherit;
  }
}