:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #5e6a76;
  --paper: #f7f8f4;
  --field: #dfe8df;
  --accent: #176c5f;
  --line: #c7d1c8;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(23, 108, 95, 0.08), rgba(239, 196, 92, 0.08)),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.shell {
  width: min(960px, calc(100vw - 32px));
  display: grid;
  gap: 20px;
}

.intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 6vw, 72px) 0;
}

.brand-mark {
  width: clamp(96px, 18vw, 156px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(45deg, transparent 24%, rgba(23, 108, 95, 0.1) 25% 26%, transparent 27%),
    linear-gradient(135deg, #ffffff, var(--field));
  box-shadow: 0 22px 50px rgba(23, 32, 42, 0.12);
}

.brand-mark span {
  width: 44%;
  height: 58%;
  display: block;
  border-radius: 48% 48% 8px 8px;
  background: var(--accent);
  position: relative;
}

.brand-mark span::before,
.brand-mark span::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
}

.brand-mark span::before {
  top: -18%;
  width: 54%;
  aspect-ratio: 1;
  border-radius: 50%;
}

.brand-mark span::after {
  bottom: -22%;
  width: 150%;
  height: 20%;
  border-radius: 999px 999px 8px 8px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lede {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.55;
}

.status {
  border-top: 1px solid var(--line);
  padding: 20px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.status p {
  max-width: 680px;
  margin: 0;
}

@media (max-width: 640px) {
  body {
    place-items: start center;
  }

  .shell {
    padding-top: 34px;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

