:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family);
  color: var(--white);
  background: var(--black);
}

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: var(--hero-shade-desktop);
  z-index: -2;
}

.site-header {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
}

.brand__mark {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 8px;
  color: var(--black);
  background: var(--green);
  font-weight: 800;
}

.header-link {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white-soft);
  text-decoration: none;
  font-size: 0.95rem;
  transition: border-color 180ms ease, color 180ms ease;
}

.header-link:hover,
.header-link:focus-visible {
  border-color: var(--green);
  color: var(--green-pale);
}

.hero__content {
  width: min(1120px, calc(100% - 40px));
  margin: auto auto 76px;
  padding: 64px 0 34px;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 20px;
  padding: 8px 12px;
  border: 1px solid var(--green-accent-line);
  border-radius: 8px;
  color: var(--green-pale);
  background: var(--badge-background);
  font-weight: 700;
}

h1 {
  max-width: 800px;
  margin: 0;
  font-size: 4.5rem;
  line-height: 0.98;
}

.hero__copy {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--white-soft);
  font-size: 1.2rem;
  line-height: 1.7;
}

.notify-form {
  width: min(100%, 560px);
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.notify-form input,
.notify-form button {
  min-height: 56px;
  border-radius: 8px;
  font: inherit;
}

.honeypot {
  display: none;
}

.notify-form input {
  width: 100%;
  border: 1px solid var(--line);
  color: var(--white);
  background: var(--input-background);
  padding: 0 18px;
  outline: none;
}

.notify-form input::placeholder {
  color: var(--input-placeholder);
}

.notify-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px var(--input-focus-shadow);
}

.notify-form button {
  border: 0;
  padding: 0 24px;
  color: var(--black);
  background: var(--green);
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.notify-form button:hover,
.notify-form button:focus-visible {
  background: var(--green-pale);
  transform: translateY(-1px);
}

.notify-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-note {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--white-soft);
}

.launch-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--green-deep);
  border-top: 1px solid var(--green-line);
}

.launch-strip > div {
  min-height: 230px;
  padding: 34px;
  background: var(--black-soft);
}

.stat {
  color: var(--green);
  font-weight: 800;
}

.launch-strip h2 {
  margin: 18px 0 12px;
  font-size: 1.6rem;
}

.launch-strip p {
  max-width: 360px;
  margin: 0;
  color: var(--white-soft);
  line-height: 1.65;
}

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

@media (max-width: 860px) {
  .hero {
    min-height: 90svh;
  }

  .site-header {
    width: min(100% - 32px, 1120px);
    padding: 20px 0;
  }

  .header-link {
    display: none;
  }

  .hero__content {
    width: min(100% - 32px, 1120px);
    margin-bottom: 44px;
    padding-top: 42px;
  }

  h1 {
    font-size: 3.1rem;
    line-height: 1.02;
  }

  .hero__copy {
    font-size: 1.05rem;
  }

  .launch-strip {
    grid-template-columns: 1fr;
  }

  .launch-strip > div {
    min-height: auto;
    padding: 28px 24px;
  }
}

@media (max-width: 540px) {
  .hero__shade {
    background: var(--hero-shade-mobile);
  }

  h1 {
    font-size: 2.35rem;
  }

  .notify-form {
    grid-template-columns: 1fr;
  }

  .notify-form button {
    width: 100%;
  }
}
