:root {
  color-scheme: dark;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: #14253a;
  color: #ffffff;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(7, 17, 28, 0.78) 0%,
      rgba(7, 17, 28, 0.54) 42%,
      rgba(7, 17, 28, 0.18) 100%
    ),
    url("../images/fdclark-hero.webp") center center / cover no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(5, 12, 22, 0.06) 0%,
      rgba(5, 12, 22, 0.14) 70%,
      rgba(5, 12, 22, 0.42) 100%
    );
}

.content {
  position: relative;
  z-index: 1;
  width: min(88%, 760px);
  margin-right: auto;
  padding: 3rem clamp(1.5rem, 7vw, 7rem);
  text-align: left;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
  animation: fade-up 900ms ease-out both;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(3.4rem, 9vw, 7rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.message {
  max-width: 32rem;
  margin: 1.5rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.status-dot {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: #9ed4a4;
  box-shadow: 0 0 0 0.3rem rgba(158, 212, 164, 0.14);
}

.footer {
  position: absolute;
  z-index: 1;
  right: clamp(1.25rem, 4vw, 4rem);
  bottom: 1.5rem;
  display: flex;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 700px) {
  .hero {
    align-items: end;
    background-position: 58% center;
  }

  .content {
    width: 100%;
    padding: 2rem 1.25rem 7rem;
  }

  h1 {
    max-width: 8ch;
  }

  .footer {
    right: auto;
    left: 1.25rem;
    bottom: 1.25rem;
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .content {
    animation: none;
  }
}