:root {
  --ink: #102a2a;
  --paper: #fffaf0;
  --paper-strong: #fff4d9;
  --moss: #49764d;
  --teal: #0c595c;
  --coral: #e66f51;
  --shadow: rgba(8, 28, 29, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--paper);
  background: var(--ink);
}

body {
  min-height: 100vh;
  margin: 0;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
}

.hero__image,
.hero__shade,
.hero__content {
  grid-area: 1 / 1;
}

.hero__image {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(7, 38, 38, 0.86) 0%, rgba(7, 38, 38, 0.64) 43%, rgba(7, 38, 38, 0.1) 100%),
    linear-gradient(0deg, rgba(7, 38, 38, 0.62) 0%, rgba(7, 38, 38, 0) 42%);
}

.hero__content {
  z-index: 1;
  align-self: center;
  width: min(100%, 1120px);
  padding: clamp(24px, 5vw, 64px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--paper-strong);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(3.6rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 18px 44px var(--shadow);
}

.lede {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 250, 240, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.5;
}

.launch-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  width: fit-content;
  max-width: 100%;
  margin-top: 26px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: 8px;
  background: rgba(16, 42, 42, 0.58);
  box-shadow: 0 18px 60px rgba(8, 28, 29, 0.22);
  backdrop-filter: blur(14px);
}

.launch-panel__label,
.launch-panel__copy {
  margin: 0;
}

.launch-panel__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  font-weight: 800;
  white-space: nowrap;
}

.launch-panel__label::before {
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(230, 111, 81, 0.18);
  content: "";
}

.launch-panel__copy {
  color: rgba(255, 250, 240, 0.82);
  line-height: 1.45;
}

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

  .hero__image {
    min-height: 100svh;
    object-position: 62% center;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(7, 38, 38, 0.9) 0%, rgba(7, 38, 38, 0.68) 54%, rgba(7, 38, 38, 0.18) 100%),
      linear-gradient(90deg, rgba(7, 38, 38, 0.42), rgba(7, 38, 38, 0));
  }

  .hero__content {
    padding: 26px 20px 30px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.76rem;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 5.4rem);
  }

  .lede {
    margin-top: 20px;
  }

  .launch-panel {
    width: 100%;
    margin-top: 26px;
  }
}
