:root {
  color-scheme: light;
  --navy: #102a43;
  --navy-soft: #486581;
  --coral: #ff5f42;
  --paper: #f7f9fc;
  --white: #ffffff;
  --line: #d9e2ec;
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
}

body {
  min-height: 100svh;
  margin: 0;
  color: var(--navy);
  background:
    radial-gradient(circle at 82% 18%, rgb(255 95 66 / 9%), transparent 28rem),
    radial-gradient(circle at 8% 82%, rgb(16 42 67 / 7%), transparent 30rem),
    var(--paper);
}

.shell {
  width: min(100% - 40px, 1180px);
  min-height: 100svh;
  margin-inline: auto;
  display: grid;
  grid-template-rows: 1fr auto;
}

.hero {
  align-self: center;
  max-width: 850px;
  padding-block: clamp(72px, 11vw, 150px) 64px;
}

.brand {
  width: fit-content;
  margin-bottom: clamp(52px, 8vw, 92px);
}

.brand__logo {
  display: block;
  width: clamp(190px, 19vw, 245px);
  height: auto;
  object-fit: contain;
}

.status {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 8px 13px;
  border: 1px solid rgb(255 95 66 / 28%);
  border-radius: 999px;
  color: #b5311d;
  background: rgb(255 255 255 / 72%);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgb(255 95 66 / 12%);
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 0.93;
}

.intro {
  max-width: 680px;
  margin: clamp(30px, 5vw, 48px) 0 0;
  color: var(--navy-soft);
  font-size: clamp(1.08rem, 2.2vw, 1.34rem);
  line-height: 1.65;
}

footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-block: 25px;
  border-top: 1px solid var(--line);
  color: #627d98;
  font-size: 0.82rem;
}

.footer__divider {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #9fb3c8;
}

@media (max-width: 540px) {
  .shell {
    width: min(100% - 32px, 1180px);
  }

  .hero {
    padding-block: 52px 48px;
  }

  .brand {
    margin-bottom: 52px;
  }

  .brand__logo {
    width: 190px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.25rem);
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .footer__divider {
    display: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .brand,
  .status,
  h1,
  .intro {
    animation: reveal 600ms both;
  }

  .status {
    animation-delay: 90ms;
  }

  h1 {
    animation-delay: 160ms;
  }

  .intro {
    animation-delay: 230ms;
  }

  @keyframes reveal {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
  }
}
