:root {
  color-scheme: dark;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

* { box-sizing: border-box; }
body { margin: 0; }
a { color: inherit; }
a:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }

.home {
  min-height: 100svh;
  background: #000;
  color: #f2f2f0;
}

.home-shell {
  position: relative;
  min-height: 100svh;
  padding: clamp(26px, 3.9vw, 64px) clamp(25px, 5.8vw, 100px) 24px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.home-brand {
  position: absolute;
  top: clamp(26px, 3.9vw, 64px);
  left: 50%;
  transform: translateX(-50%);
}

.home-brand img { display: block; width: 165px; height: auto; }

.home-main {
  min-height: 0;
  display: grid;
  place-items: center;
  padding-bottom: 24px;
  text-align: center;
}

.home-definition { max-width: 620px; font-size: 13px; }
.home-title { font-size: inherit; font-weight: 400; letter-spacing: .025em; line-height: 1.4; margin: 0 0 18px; }
.home-meaning { font-size: inherit; line-height: 1.55; letter-spacing: .025em; color: #aaa; margin: 0; }

.home-footer { padding-top: 20px; color: #aaa; font-size: 12px; letter-spacing: .025em; text-align: center; }
.home-footer a { color: #f2f2f0; text-decoration: underline; text-underline-offset: 3px; }
.home-footer a:hover { text-underline-offset: 4px; }

@media (max-width: 640px) {
  .home-shell { padding: 24px 20px; }
  .home-brand { top: 24px; }
  .home-brand img { width: 140px; }
  .home-main { padding-bottom: 20px; }
  .home-definition { font-size: 12px; }
  .home-title { margin-bottom: 14px; }
  .home-footer { font-size: 10px; }
}
