:root {
  --ink: #ffffff;
  --shadow: rgba(10, 12, 20, 0.58);
  --overlay: rgba(12, 14, 24, 0.52);
  --accent: #7a3bd4;
  --max-width: 920px;
  --pad: clamp(20px, 4vw, 48px);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", "Avenir Next", Avenir, "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: #0d0f16;
}

.page {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.bg {
  position: absolute;
  inset: -5%;
  background-image: url("bg.jpeg");
  background-size: cover;
  background-position: center;
  filter: blur(12px);
  transform: scale(1.08);
  z-index: 0;
}

.page::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 12, 20, 0.85), rgba(10, 12, 20, 0.35));
  z-index: 1;
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  padding: var(--pad);
}

.brand {
  background: #ffffff;
  border-radius: 999px;
  padding: clamp(8px, 1.1vw, 12px);
  box-shadow: 0 12px 24px var(--shadow);
}

.brand img {
  width: clamp(72px, 10vw, 110px);
  height: auto;
  display: block;
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center start;
  padding: 0 var(--pad) var(--pad);
}

.hero-content {
  max-width: var(--max-width);
  text-shadow: 0 16px 32px var(--shadow);
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  margin: 0 0 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

p {
  font-size: clamp(1.08rem, 2.45vw, 1.52rem);
  line-height: 1.65;
  margin: 0;
  max-width: 42ch;
}

@media (max-width: 720px) {
  .hero {
    place-items: end start;
  }

  p {
    max-width: 32ch;
  }
}
