* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #101638;
  background: #0b1230;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

.page {
  position: relative;
  width: min(980px, 100%);
  background: #fdfdff;
  border-radius: 28px;
  padding: 32px 48px 84px;
  box-shadow: 0 24px 60px rgba(5, 12, 35, 0.55);
  overflow: hidden;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.nav__links {
  margin-left: auto;
  display: flex;
  gap: 16px;
  font-weight: 600;
}

.nav__links a {
  color: #1f2a53;
  text-decoration: none;
}

.nav__links a:hover {
  text-decoration: underline;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #f59e0b;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  display: grid;
  place-items: center;
  letter-spacing: 0.5px;
}

.brand__text {
  font-weight: 600;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-button {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.moon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #1f2a53;
  position: relative;
}

.moon::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fdfdff;
}

.hamburger {
  width: 20px;
  height: 2px;
  background: #1f2a53;
  position: relative;
  border-radius: 999px;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: #1f2a53;
  border-radius: 999px;
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  top: 6px;
}

.hero {
  text-align: center;
  margin-top: 90px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 10px;
  color: #141c45;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero p {
  color: #8c95b6;
  font-size: 16px;
}

.hero__image {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.hero__image img {
  width: min(720px, 100%);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(12, 18, 45, 0.18);
}

.status-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #22c55e;
  position: relative;
  display: inline-block;
  box-shadow: 0 6px 12px rgba(34, 197, 94, 0.35);
}

.status-check::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  left: 6px;
  top: 7px;
}

.contacts {
  margin-top: 48px;
  text-align: center;
  color: #7f88a8;
}

.contacts h2 {
  color: #141c45;
  font-size: 20px;
  margin-bottom: 8px;
}

.help {
  margin-top: 48px;
  text-align: center;
  color: #7f88a8;
}

.help h2 {
  color: #141c45;
  font-size: 20px;
  margin-bottom: 8px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(164, 191, 255, 0.75), rgba(164, 191, 255, 0));
  z-index: 1;
}

.orb--one {
  width: 320px;
  height: 320px;
  top: -90px;
  right: -40px;
  background: radial-gradient(circle at 30% 30%, rgba(164, 191, 255, 0.7), rgba(164, 191, 255, 0.05));
}

.orb--two {
  width: 260px;
  height: 260px;
  top: 60px;
  right: 60px;
  background: radial-gradient(circle at 30% 30%, rgba(210, 220, 255, 0.7), rgba(210, 220, 255, 0.05));
}

@media (max-width: 720px) {
  .page {
    padding: 28px 24px 64px;
  }

  .hero {
    margin-top: 70px;
  }
}
