:root {
  --text: #111820;
  --muted: #4f5b66;
  --red: #e6332a;
  --blue: #2f8ed8;
  --surface: rgba(255,255,255,.76);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #eef2f5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: max(32px, env(safe-area-inset-top)) 24px max(70px, env(safe-area-inset-bottom));
  isolation: isolate;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/background.png");
  background-size: cover;
  background-position: center center;
  transform: scale(1.015);
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(255,255,255,.72) 0%, rgba(255,255,255,.48) 42%, rgba(255,255,255,.57) 100%),
    radial-gradient(circle at 50% 44%, rgba(255,255,255,.92) 0%, rgba(255,255,255,.72) 28%, rgba(255,255,255,.08) 74%);
  backdrop-filter: blur(1.2px);
}

.hero__content {
  width: min(760px, 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 36px 40px;
}

.brand-logo {
  width: clamp(150px, 18vw, 210px);
  height: auto;
  display: block;
  margin-bottom: 28px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(30,47,61,.10);
  color: #3f4a53;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(230,51,42,.10);
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(48px, 7.2vw, 88px);
  line-height: .96;
  letter-spacing: -.058em;
  font-weight: 800;
}

h1 span { color: var(--blue); }

.lead {
  max-width: 660px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.65;
}

.cta {
  margin-top: 30px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 27px;
  border-radius: 999px;
  color: white;
  background: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 12px 30px rgba(17,24,32,.18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  background: #26333e;
  box-shadow: 0 16px 36px rgba(17,24,32,.22);
}

.cta:focus-visible {
  outline: 3px solid rgba(47,142,216,.34);
  outline-offset: 4px;
}

.launch {
  margin: 17px 0 0;
  color: #64707a;
  font-size: 13px;
}

.footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: max(20px, env(safe-area-inset-bottom));
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  padding: 0 20px;
  color: rgba(17,24,32,.62);
  font-size: 12px;
  text-align: center;
}

.footer__dot { color: var(--red); }

@media (max-width: 720px) {
  .hero {
    min-height: 100svh;
    padding: max(20px, env(safe-area-inset-top)) 16px max(70px, env(safe-area-inset-bottom));
    align-items: center;
  }

  .hero__background {
    background-position: center bottom;
    transform: scale(1.04);
  }

  .hero__veil {
    background:
      linear-gradient(180deg, rgba(255,255,255,.90) 0%, rgba(255,255,255,.76) 50%, rgba(255,255,255,.58) 100%),
      radial-gradient(circle at 50% 40%, rgba(255,255,255,.96), rgba(255,255,255,.74) 38%, rgba(255,255,255,.08) 80%);
  }

  .hero__content {
    width: 100%;
    padding: 27px 20px 30px;
  }

  .brand-logo {
    width: 150px;
    margin-bottom: 22px;
  }

  .status {
    margin-bottom: 18px;
    padding: 7px 10px;
    font-size: 10px;
    letter-spacing: .08em;
  }

  h1 {
    font-size: clamp(43px, 13vw, 62px);
    line-height: .98;
  }

  .lead {
    margin-top: 21px;
    font-size: 15px;
    line-height: 1.58;
  }

  .cta {
    width: 100%;
    max-width: 340px;
    min-height: 53px;
    margin-top: 25px;
  }

  .footer {
    gap: 6px;
    font-size: 10px;
  }
}

@media (max-height: 720px) and (min-width: 721px) {
  .hero { padding-top: 20px; padding-bottom: 54px; }
  .hero__content { padding: 24px 32px 28px; }
  .brand-logo { width: 145px; margin-bottom: 18px; }
  .status { margin-bottom: 14px; }
  h1 { font-size: 58px; }
  .lead { margin-top: 18px; font-size: 16px; }
  .cta { margin-top: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
