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

html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  background: #0b0f1a;
}

/* ----- hero section ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;

  background-image: url("assets/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* gradient overlay */
.overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(161, 92, 92, 0.75) 23%,
    rgba(66, 95, 199, 0.75) 60%
  );
}

/* content wrapper */
.content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px;
}

/* logo */
.logo{
  display: block;
  margin: 0 auto;
  width: min(60vw, 420px);
  max-width: 420px;
  height: auto;
}
/* wordmark */
.wordmark {
  margin: 0;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  font-size: clamp(56px, 10vw, 120px);
}
