* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
}

body {
  margin: 0;
  background: #0c1010;
}

.site {
  --ink: #eef2ed;
  --muted: #aeb8b1;
  min-height: 100svh;
  overflow: hidden;
  padding: 30px clamp(24px, 6vw, 88px) 26px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  position: relative;
  background: radial-gradient(ellipse 75% 70% at 72% 60%, #28523d 0%, transparent 62%), linear-gradient(140deg, #101b19, #0d1313 72%);
}

.site::after {
  content: "";
  position: absolute;
  width: 72vw;
  height: 72vw;
  max-width: 900px;
  max-height: 900px;
  right: -24vw;
  bottom: -34vw;
  border: 1px solid rgba(185, 233, 180, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 10vw rgba(185, 233, 180, .025), 0 0 0 20vw rgba(185, 233, 180, .02);
}

.hero {
  width: min(100%, 1080px);
  margin: auto;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font: 500 11px/1 Arial, sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 1050px;
  font: 400 clamp(42px, 7.1vw, 112px)/.92 Georgia, "Times New Roman", serif;
  letter-spacing: -.065em;
}

h1 em {
  color: #bde9b6;
  font-weight: 400;
}

.domain {
  display: inline-block;
  margin-top: clamp(30px, 6vh, 70px);
  color: var(--muted);
  font: 500 12px/1 Arial, sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
}

footer {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  color: var(--muted);
  font: 500 10px/1.2 Arial, sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
}

@media (max-width: 660px) {
  .site {
    padding: 20px 20px 18px;
  }
}