:root {
  --bg: #0b1929;
  --text: #f2f5fa;
  --muted: #aab8ca;
  --accent: #8ab4ff;
  --line: rgba(138, 180, 255, 0.24);
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.landing {
  width: min(1500px, calc(100% - 64px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 34px 0 28px;
}

.top,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.monogram {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.status {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 0;
}

.eyebrow {
  margin: 0 0 38px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
}

h1 {
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(4.2rem, 11.15vw, 10.3rem);
  line-height: 1.06;
  font-weight: 300;
  letter-spacing: -0.072em;
  white-space: nowrap;
}

.first-name {
  font-family: inherit;
  font-weight: 300;
}

.surname {
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.075em;
  color: var(--accent);
}

.z-tight {
  display: inline-block;
  margin-left: -0.02em;
}

.content {
  display: grid;
  grid-template-columns: minmax(0, 650px) auto;
  align-items: end;
  justify-content: space-between;
  gap: 80px;
  margin-top: 72px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.content h2 {
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 400;
}

.content p {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  min-width: 210px;
  padding: 15px 20px;
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.button:hover {
  background: var(--text);
}

footer {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
}

@media (max-width: 760px) {
  .landing {
    width: min(100% - 40px, 1500px);
    padding-top: 24px;
  }

  .status {
    display: none;
  }

  .hero {
    padding: 70px 0 50px;
  }

  h1 {
    white-space: normal;
    font-size: clamp(4rem, 19vw, 7rem);
    line-height: 0.9;
  }

  h1 > span {
    display: block;
  }

  .surname {
    margin-top: 8px;
  }

  .content {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 52px;
  }

  .button {
    width: 100%;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
