:root {
  color-scheme: dark;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #171b18;
  color: #f3f0e7;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }
body { margin: 0; }
a { color: inherit; }

.page {
  min-height: 100vh;
  min-height: 100svh;
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(24px, 4.8vw, 72px);
  display: flex;
  flex-direction: column;
}

.masthead, footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  font-size: 31px;
  font-weight: 600;
  letter-spacing: -1.8px;
  text-decoration: none;
}

.wordmark span { color: #d4e69b; }
a:focus-visible { outline: 2px solid #d4e69b; outline-offset: 8px; }
.domain { font-size: 12px; letter-spacing: .08em; color: #c2c9bc; }

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(70px, 10vh, 140px) 0;
}

.eyebrow {
  margin: 0 0 28px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #d4e69b;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7.3vw, 112px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -.045em;
}

h1 em { color: #d4e69b; font-weight: 400; }

.description {
  margin: 30px 0 0;
  color: #c2c9bc;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.7;
}

.coming {
  margin: 38px 0 0;
  padding-left: 30px;
  position: relative;
  font-size: 12px;
  color: #e4e7dc;
}

.coming::before {
  content: "";
  width: 17px;
  height: 1px;
  background: #d4e69b;
  position: absolute;
  left: 0;
  top: .6em;
}

footer {
  border-top: 1px solid #3c453c;
  padding-top: 22px;
  color: #a9b2a3;
  font-size: 11px;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .page { padding: 28px 24px; }
  h1 { font-size: clamp(40px, 11vw, 54px); }
  main { padding: 76px 0; }
  .eyebrow { font-size: 10px; }
  .desktop-break { display: none; }
}
