:root {
  color-scheme: light;
  --ink: #102a27;
  --green: #176f65;
  --muted: #70817c;
  --paper: #f6f8f6;
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* { box-sizing: border-box; }
html { min-width: 320px; }
body { margin: 0; background: var(--paper); color: var(--ink); }
a { color: inherit; }

.page {
  width: 100%;
  max-width: 1760px;
  min-height: 100svh;
  margin: 0 auto;
  padding: 42px clamp(28px, 5vw, 82px) 48px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.055em;
}
.brand-mark {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  background: var(--green);
}
.content {
  margin-top: clamp(135px, 17vh, 215px);
  max-width: 850px;
}
h1 {
  margin: 0;
  font-size: clamp(58px, 5.2vw, 86px);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -.055em;
}
.description {
  margin: 31px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.5;
  letter-spacing: -.025em;
}
.waitlist {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  gap: 16px;
  margin-top: 35px;
  padding: 0 27px;
  border-radius: 999px;
  background: #102a27;
  color: #f6f8f6;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -.025em;
  transition: background-color .16s ease;
}
.waitlist svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linejoin: round;
}
.waitlist:hover { background: #1b4a43; }
.waitlist:focus-visible, .supplier a:focus-visible {
  outline: 3px solid #82b7a7;
  outline-offset: 4px;
}
.supplier {
  margin: 31px 0 0;
  color: var(--muted);
  font-size: 18px;
  letter-spacing: -.02em;
}
.supplier a { text-decoration: none; }
.supplier a:hover { color: var(--green); }

@media (max-width: 600px) {
  .page { padding: 32px 24px 40px; }
  .brand { gap: 11px; font-size: 29px; }
  .brand-mark { width: 26px; height: 26px; flex-basis: 26px; }
  .content { margin-top: clamp(110px, 18vh, 160px); }
  h1 { font-size: clamp(55px, 13vw, 76px); line-height: 1.04; }
  .description { margin-top: 25px; font-size: 17px; line-height: 1.5; }
  .waitlist { width: 100%; min-height: 60px; gap: 12px; margin-top: 29px; padding: 0 17px; font-size: 14px; }
  .waitlist svg { width: 20px; height: 20px; flex-basis: 20px; }
  .supplier { margin-top: 26px; font-size: 16px; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition-duration: .01ms !important; } }
