@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;600;700;800&display=swap");

:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #77736b;
  --line: #dedbd3;
  --paper: #f3f0e9;
  --accent: #e9ff5b;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.shell {
  display: flex;
  min-height: 100vh;
  max-width: 1440px;
  margin: 0 auto;
  padding: 34px 6vw 28px;
  flex-direction: column;
}

.nav, .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.bottom {
  margin-top: auto;
  border-top: 1px solid var(--line);
  border-bottom: 0;
  padding: 18px 0 0;
  color: var(--muted);
  font: 12px/1.4 "DM Mono", monospace;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.bottom p { margin: 0; }

.brand {
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
}

.brand span { color: var(--muted); }

.status {
  color: var(--muted);
  font: 11px/1 "DM Mono", monospace;
  letter-spacing: .08em;
}

.status i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #4fbd6d;
  box-shadow: 0 0 0 4px rgba(79, 189, 109, .14);
}

.hero {
  width: min(850px, 100%);
  margin: auto 0;
  padding: 11vh 0 13vh;
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--muted);
  font: 12px/1.3 "DM Mono", monospace;
  letter-spacing: .12em;
}

h1 {
  margin: 0;
  font-size: clamp(54px, 9vw, 132px);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: .9;
}

h1 em {
  color: #8c887e;
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -.08em;
}

.intro {
  max-width: 420px;
  margin: 42px 0 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  padding: 14px 17px 14px 19px;
  color: var(--ink);
  background: var(--accent);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--ink);
}

.button span { font-size: 19px; line-height: 0; }

@media (max-width: 640px) {
  .shell { padding: 24px 24px 20px; }
  .hero { padding: 14vh 0 16vh; }
  h1 { font-size: clamp(52px, 16vw, 90px); }
  .bottom { align-items: flex-start; gap: 16px; flex-direction: column; }
}
