:root {
  --lights: 0;
  --black: #030504;
  --green-950: #081410;
  --green-900: #0b211a;
  --gold: #a98746;
  --gold-bright: #d8be78;
  --gold-soft: #b99a58;
  --champagne: #d7c499;
  --champagne-muted: rgba(215, 196, 153, .72);
  --line: rgba(216, 190, 120, .24);
  --radius: 6px;
  --brand-type: "Avenir Next", "Montserrat", "Gill Sans", "Segoe UI", Arial, sans-serif;
  --script-type: "Segoe Script", "Brush Script MT", "Lucida Handwriting", cursive;
  --serif-type: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body {
  margin: 0;
  color: var(--champagne);
  background: var(--black);
  font-family: var(--body);
  text-rendering: optimizeLegibility;
  overflow: hidden;
}

button,
input {
  font: inherit;
}

.launch-page,
.stage {
  min-height: 100svh;
}

.launch-page {
  min-height: 100svh;
  background:
    linear-gradient(180deg, var(--green-900), var(--green-950) 34%, var(--black)),
    var(--green-950);
}

.stage {
  position: relative;
  height: 100svh;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: clamp(18px, 3.8vw, 54px);
}

.image-plane,
.hero-image,
.shade {
  position: absolute;
  inset: 0;
}

.image-plane {
  z-index: -1;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--green-900), var(--green-950) 38%, var(--black)),
    var(--green-950);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.44) saturate(.92) contrast(1.04);
  will-change: opacity;
  transition: opacity 1.15s cubic-bezier(.22, .61, .36, 1);
}

.hero-image-off {
  opacity: 1;
}

.hero-image-on {
  opacity: 0;
  transform: translateY(-2.1%);
}

.lights-on .hero-image-off {
  opacity: .28;
}

.lights-on .hero-image-on {
  opacity: 1;
}

.shade {
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 20, 16, .12), rgba(8, 20, 16, 0) 34%, rgba(3, 5, 4, .62)),
    linear-gradient(90deg, rgba(8, 20, 16, .42), rgba(8, 20, 16, 0) 48%, rgba(8, 20, 16, .38));
}

.brand-line {
  position: absolute;
  inset: clamp(18px, 3vw, 38px) auto auto clamp(18px, 3vw, 46px);
}

.wordmark {
  display: inline-block;
  font-family: var(--brand-type);
  font-size: clamp(15px, 1.42vw, 23px);
  font-weight: 450;
  letter-spacing: .37em;
  line-height: 1;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ead69a 0%, #b99752 42%, #8c6d35 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .5));
  text-shadow: 0 1px 0 rgba(255, 244, 202, .12);
}

.wordmark::after {
  content: "";
  display: block;
  width: calc(100% - .39em);
  height: 1px;
  margin-top: 8px;
  background: linear-gradient(90deg, rgba(234, 214, 154, 0), rgba(234, 214, 154, .42), rgba(234, 214, 154, 0));
}

.copy {
  width: min(100%, 540px);
  display: grid;
  gap: 9px;
  justify-self: start;
}

h1 {
  margin: 0 0 2px;
  color: var(--gold-bright);
  font-family: var(--script-type);
  font-size: clamp(24px, 3.2vw, 48px);
  font-style: italic;
  font-weight: 400;
  line-height: .9;
  letter-spacing: 0;
  text-shadow: 0 16px 38px rgba(0, 0, 0, .68);
}

.teaser,
.curious {
  margin: 0;
  color: var(--champagne-muted);
  font-family: var(--serif-type);
  font-size: clamp(17px, 1.65vw, 23px);
  line-height: 1.34;
}

.teaser {
  max-width: 520px;
}

.curious {
  color: var(--gold-soft);
}

.signup {
  width: min(100%, 360px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-top: 8px;
}

.signup input,
.signup button {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

.signup input {
  width: 100%;
  padding: 0 14px;
  color: var(--champagne);
  background: rgba(8, 20, 16, .74);
  box-shadow: inset 0 0 0 1px rgba(216, 190, 120, .06);
}

.signup input::placeholder {
  color: rgba(215, 196, 153, .48);
}

.signup input:focus {
  border-color: rgba(216, 190, 120, .86);
  box-shadow: 0 0 0 3px rgba(169, 135, 70, .14);
}

.signup input.is-invalid {
  border-color: rgba(216, 190, 120, .72);
}

.signup button {
  min-width: 88px;
  color: var(--gold-bright);
  background:
    linear-gradient(180deg, rgba(216, 190, 120, .08), rgba(169, 135, 70, .04)),
    rgba(8, 20, 16, .34);
  border-color: rgba(216, 190, 120, .34);
  cursor: pointer;
  font-family: var(--serif-type);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 1px rgba(169, 135, 70, .08),
    0 14px 28px rgba(0, 0, 0, .22);
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}

.signup button:hover,
.signup button:focus-visible {
  color: var(--champagne);
  background:
    linear-gradient(180deg, rgba(216, 190, 120, .14), rgba(169, 135, 70, .06)),
    rgba(8, 20, 16, .48);
  border-color: rgba(216, 190, 120, .62);
}

.signup-note {
  min-height: 20px;
  margin: 0;
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 800;
}

.disclaimer {
  max-width: 460px;
  margin: 0;
  color: rgba(215, 196, 153, .48);
  font-family: var(--serif-type);
  font-size: clamp(10px, .84vw, 12px);
  font-style: italic;
  line-height: 1.45;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 720px) {
  .stage {
    align-items: end;
    min-height: 100svh;
    padding: 20px 18px 24px;
  }

  .hero-image {
    object-position: 50% 48%;
    filter: brightness(1.5) saturate(.92) contrast(1.04);
  }

  .shade {
    background:
      linear-gradient(180deg, rgba(8, 20, 16, .24), rgba(8, 20, 16, 0) 38%, rgba(3, 5, 4, .72)),
      linear-gradient(90deg, rgba(8, 20, 16, .26), rgba(8, 20, 16, 0), rgba(8, 20, 16, .26));
  }

  .brand-line {
    inset: 20px 18px auto;
  }

  .wordmark {
    font-size: clamp(14px, 4.2vw, 20px);
    letter-spacing: .26em;
  }

  .wordmark::after {
    width: calc(100% - .26em);
    margin-top: 7px;
  }

  .copy {
    width: 100%;
    gap: 8px;
  }

  .signup {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 360px;
    margin-top: 6px;
  }

  .signup input,
  .signup button {
    min-height: 46px;
  }

  .signup button {
    min-width: 0;
  }

  .signup-note {
    min-height: 18px;
    font-size: 12px;
  }

  .disclaimer {
    max-width: 360px;
    font-size: 10px;
    line-height: 1.38;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 23px;
  }

  .teaser,
  .curious {
    font-size: 16px;
  }

  .wordmark {
    font-size: 13px;
  }
}
