:root {
  color-scheme: light;
  --paper: #f2f0e8;
  --ink: #11120f;
  --muted: #62645c;
  --accent: #b9f02f;
  --line: rgba(17, 18, 15, .18);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(185, 240, 47, .36), transparent 29rem),
    radial-gradient(circle at 8% 88%, rgba(255, 255, 255, .9), transparent 32rem),
    linear-gradient(135deg, #f3efe4 0%, #e7ebe1 58%, #f1eee4 100%);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  width: min(58vw, 760px);
  aspect-ratio: 1;
  right: -18vw;
  bottom: -32vw;
  pointer-events: none;
  border: clamp(70px, 9vw, 130px) solid rgba(17, 18, 15, .045);
  border-radius: 50%;
}

a {
  color: inherit;
}

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

main {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 28px clamp(22px, 4vw, 64px);
  overflow: hidden;
}

.masthead,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -.03em;
  text-decoration: none;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-weight: 900;
}

.brand-letter {
  line-height: 1;
}

.brand-dot {
  flex: 0 0 auto;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.status {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font: 700 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(185, 240, 47, .2);
}

.hero {
  align-self: center;
  padding: 8vh 0 12vh;
}

.eyebrow {
  margin: 0 0 24px 6px;
  color: var(--muted);
  font: 700 11px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1 {
  max-width: 1300px;
  margin: 0;
  font-size: clamp(64px, 11.5vw, 176px);
  font-weight: 650;
  line-height: .82;
  letter-spacing: -.085em;
}

h1 em {
  position: relative;
  z-index: 0;
  font-style: normal;
  font-weight: 400;
}

h1 em::after {
  content: "";
  position: absolute;
  left: .03em;
  right: -.02em;
  bottom: .04em;
  z-index: -1;
  height: .22em;
  background: var(--accent);
  transform: rotate(-1.5deg);
}

footer {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font: 700 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

@media (max-width: 640px) {
  main {
    padding: 20px;
  }

  .status {
    font-size: 9px;
  }

  .hero {
    padding-bottom: 8vh;
  }

  .eyebrow {
    margin-left: 2px;
    font-size: 10px;
  }

  h1 {
    font-size: clamp(58px, 20vw, 96px);
    line-height: .86;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .status span {
    animation: breathe 3s ease-in-out infinite;
  }
}

@keyframes breathe {
  0%, 100% { box-shadow: 0 0 0 4px rgba(185, 240, 47, .2); }
  50% { box-shadow: 0 0 0 8px rgba(185, 240, 47, 0); }
}
