/* The landing page owns its look. It shares no tokens with the app on purpose: a serif wordmark
   on white is not the app's neutral palette, and one page does not earn a shared pipeline. */

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100dvh;   /* not height:100% + padding, which scrolls by the padding */
  padding: 24px;
  background: #fff;
  color: #0a0a0a;
  display: grid;
  place-items: center;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main { text-align: center; }

h1 {
  margin: 0 0 2.6rem;
  font-family: "Instrument Serif", Didot, "Bodoni MT", Georgia, serif;
  font-weight: 400;
  font-size: clamp(3.5rem, 14vw, 7.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

a {
  font-family: ui-sans-serif, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
}

/* The one action on the page, so it is solid black rather than another grey line. */
.signin {
  display: inline-block;
  padding: 1rem 2.6rem;
  background: #0a0a0a;
  color: #fff;
  transition: background .2s ease;
}

.signin:hover { background: #3a3a3a; }
.signin:focus-visible { outline: 2px solid #0a0a0a; outline-offset: 3px; }

/* Contact sits at the foot, out of the way of the action but still on the page. */
footer {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  text-align: center;
}

footer a { color: #6f6f6f; transition: color .2s ease; }
footer a:hover { color: #0a0a0a; }
