.hero {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 50% 12%, #0b0e12 0 11rem, rgba(11, 14, 18, 0.94) 17rem, rgba(11, 14, 18, 0.30) 24rem, transparent 30rem),
    radial-gradient(ellipse at 50% 62%, rgba(22, 139, 209, 0.34) 0, rgba(22, 139, 209, 0.17) 21rem, transparent 42rem),
    radial-gradient(ellipse at 19% 72%, rgba(132, 206, 31, 0.22) 0, rgba(132, 206, 31, 0.10) 17rem, transparent 30rem),
    radial-gradient(ellipse at 81% 74%, rgba(241, 90, 22, 0.22) 0, rgba(241, 90, 22, 0.10) 17rem, transparent 30rem),
    linear-gradient(180deg, var(--bg) 0%, #122234 70%, #101820 86%, var(--bg) 100%);
}

.hero__logo-field {
  position: relative;
  width: min(100%, 760px);
  margin: 0 auto 1.5rem;
}

.hero__logo-field::before {
  position: absolute;
  z-index: -1;
  inset: -2.2rem -3rem -0.25rem;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, #0b0e12 0 48%, rgba(11, 14, 18, 0.82) 63%, rgba(11, 14, 18, 0.28) 77%, transparent 88%);
  content: "";
}

.hero__logo {
  margin-bottom: 0;
}

.home-status {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #10151b;
  color: var(--text);
}

.home-status__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-status__grid a {
  min-width: 0;
  padding: 1.35rem 1.2rem;
  border-right: 1px solid var(--line);
  text-decoration: none;
}

.home-status__grid a:first-child {
  border-left: 1px solid var(--line);
}

.home-status__grid a:hover {
  background: rgba(255, 255, 255, 0.035);
}

.home-status__grid strong,
.home-status__grid span {
  display: block;
}

.home-status__grid strong {
  margin-bottom: 0.2rem;
  font-size: 0.93rem;
}

.home-status__grid span {
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 0.78rem;
}

.architecture__actions {
  margin-top: 1.5rem;
}

.architecture__actions .button {
  min-height: 42px;
  padding: 0.65rem 1rem;
  font-size: 0.84rem;
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    padding: 4.25rem 0 4rem;
    background:
      radial-gradient(ellipse at 50% 8%, #0b0e12 0 7rem, rgba(11, 14, 18, 0.92) 11rem, rgba(11, 14, 18, 0.22) 17rem, transparent 21rem),
      radial-gradient(ellipse at 50% 64%, rgba(22, 139, 209, 0.32) 0, rgba(22, 139, 209, 0.15) 13rem, transparent 26rem),
      radial-gradient(ellipse at 10% 74%, rgba(132, 206, 31, 0.20) 0, rgba(132, 206, 31, 0.08) 12rem, transparent 20rem),
      radial-gradient(ellipse at 90% 76%, rgba(241, 90, 22, 0.20) 0, rgba(241, 90, 22, 0.08) 12rem, transparent 20rem),
      linear-gradient(180deg, var(--bg) 0%, #122234 72%, #101820 88%, var(--bg) 100%);
  }

  .hero__logo-field {
    width: min(100%, 620px);
    margin-bottom: 1.2rem;
  }

  .hero__logo-field::before {
    inset: -1.6rem -1rem 0;
  }

  .home-status__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-status__grid a,
  .home-status__grid a:first-child {
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-status__grid a:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .home-status__grid a:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 3.25rem;
  }

  .hero__intro {
    font-size: 0.98rem;
  }

  .home-status__grid {
    grid-template-columns: 1fr;
  }

  .home-status__grid a,
  .home-status__grid a:nth-child(odd),
  .home-status__grid a:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-status__grid a:last-child {
    border-bottom: 0;
  }

  .home-status__grid a {
    padding: 1rem 0.15rem;
  }

  .architecture__actions {
    display: grid;
  }

  .architecture__actions .button {
    width: 100%;
  }
}
