* {
  box-sizing: border-box;
}

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

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.09), transparent 34rem),
    #0d0f12;
  color: #f2f2f2;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.card {
  width: min(100%, 920px);
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: center;
}

.mark {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 28px;
  background: #181b20;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.eyebrow {
  margin: 0 0 18px;
  color: #8d939d;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.lead {
  margin: 24px 0 0;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.2;
  color: #d7d9dd;
}

.note {
  max-width: 520px;
  margin: 28px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: #8d939d;
}

@media (max-width: 760px) {
  .page {
    padding: 24px;
    place-items: start center;
  }

  .card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mark {
    max-width: 420px;
  }
}
