:root {
  color-scheme: light;
  --ink: #f7f3e9;
  --ink-soft: #ded6c6;
  --paper: #0f2a20;
  --paper-deep: #173528;
  --accent: #c7b08b;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Century Gothic", "CenturyGothic", "Apple Gothic", "Futura",
    "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #1b3a2c, var(--paper));
  line-height: 1.6;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 96px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.hero-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.logo-wrap {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  z-index: 1;
  transform: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.logo {
  width: min(90vw, 720px);
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  transform-origin: center top;
  transition: transform 0.2s ease-out;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.intro h1 {
  font-size: clamp(2.6rem, 3.8vw, 4.2rem);
  margin-bottom: 12px;
  color: var(--ink);
}

.intro h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 400;
  color: var(--ink-soft);
  margin-bottom: 24px;
  text-transform: lowercase;
}

.intro {
  text-align: center;
  padding-top: 8px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

body.has-scrolled .intro {
  opacity: 1;
  transform: translateY(0);
}

.copy {
  display: grid;
  gap: 18px;
  font-size: 1.02rem;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 auto;
}

.waitlist {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.waitlist h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 500;
  color: var(--ink);
}

.waitlist-description {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.waitlist-description a {
  color: var(--ink);
}

.waitlist-form {
  width: min(100%, 860px);
  height: 7600px;
  border: 0;
}


@media (max-width: 900px) {
  .logo {
    margin: 0 auto;
  }

  .page {
    padding: 40px 20px 80px;
  }
}

@media (max-width: 600px) {
  .hero-block {
    min-height: 90vh;
  }

  .logo-wrap {
    height: 90vh;
  }
}
