:root {
  --bg: #e9e7df;
  --text: #111111;
  --muted: #5f5d58;
  --accent: #3b82f6;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

html {
  background: var(--bg);
  color: var(--text);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--accent);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

.stage {
  display: grid;
  min-height: 100svh;
  padding: clamp(24px, 4.5vw, 64px);
  place-items: center;
}

.centerpiece {
  position: relative;
  width: min(100%, 760px);
  margin: 0 auto;
  text-align: center;
}

.centerpiece::before {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto clamp(22px, 3.6vmin, 40px);
  content: "";
  background: var(--accent);
}

h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(3.75rem, 12vmin, 8.25rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

p {
  max-width: 560px;
  margin: clamp(18px, 2.5vmin, 28px) auto 0;
  color: var(--muted);
  font-size: clamp(0.9rem, 1.45vmin, 1.02rem);
  line-height: 1.6;
}

.contact {
  position: fixed;
  right: clamp(20px, 3vw, 42px);
  bottom: clamp(20px, 3vw, 42px);
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.contact:hover,
.contact:focus-visible {
  color: var(--accent);
}

@media (max-width: 560px) {
  .stage {
    padding: 26px;
  }

  h1 {
    font-size: clamp(3.65rem, 19vw, 5.65rem);
  }

  p {
    font-size: 0.9rem;
  }

  .contact {
    right: 26px;
    bottom: 24px;
  }
}
