:root {
  color-scheme: light;
  --ink: #141716;
  --muted: #65706b;
  --paper: #f8faf6;
  --line: #dbe2da;
  --green: #4f8d5d;
  --blue: #486f90;
  --amber: #b47a38;
  --white: #ffffff;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(72, 111, 144, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 111, 144, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 80% 18%, rgba(79, 141, 93, 0.12), transparent 30%),
    var(--paper);
  background-size: 44px 44px, 44px 44px, auto, auto;
  font-family: var(--sans);
}

a {
  color: inherit;
}

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

.coming-soon {
  width: min(100%, 880px);
  min-height: min(680px, calc(100vh - 64px));
  display: grid;
  grid-template-rows: auto 1fr auto;
  justify-items: center;
  gap: 48px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(20, 23, 22, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 80px rgba(20, 23, 22, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: block;
}

.content {
  align-self: center;
  max-width: 700px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(54px, 10vw, 116px);
  line-height: 0.9;
  letter-spacing: 0;
}

.lede {
  max-width: 620px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.45;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #0f1712;
  border-radius: 8px;
  padding: 0 18px;
  color: #d6ff9b;
  background: #07100b;
  font-weight: 760;
  text-decoration: none;
}

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

footer span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.7);
}

@media (max-width: 640px) {
  .page-shell {
    padding: 16px;
  }

  .coming-soon {
    min-height: calc(100vh - 32px);
    gap: 36px;
  }
}
