/* 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;
  font-family: ui-sans-serif, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  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 { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid #0a0a0a; outline-offset: 4px; }

/* New visitors are the audience, so the sales address sits under the wordmark. */
.sales {
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}

.sales:hover { border-color: #0a0a0a; }

/* Returning users look for sign-in in the top-right corner. */
header {
  position: absolute;
  top: 28px;
  right: 32px;
}

.signin {
  display: inline-block;
  padding: .6rem 1.2rem;
  border: 1px solid #0a0a0a;
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}

.signin:hover { background: #0a0a0a; color: #fff; }
