:root {
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #111821;
  color: #f7f8fa;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 280px;
  min-height: 100%;
  background: #111821;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #111821;
}

.site-header {
  width: min(1120px, calc(100% - 48px));
  min-height: 118px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #1a2430;
}

.brand-logo {
  width: 220px;
  height: auto;
  display: block;
}

main {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 72px;
  align-items: center;
  padding: 72px 0;
}

.identity {
  max-width: 650px;
}

.app-icon {
  display: block;
  border-radius: 24px;
  box-shadow: 0 20px 52px rgb(0 0 0 / 32%);
}

.eyebrow {
  margin: 38px 0 12px;
  color: #e7bd47;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 100%;
  font-size: 84px;
  font-weight: 760;
  line-height: 1.02;
  letter-spacing: 0;
}

.summary {
  max-width: 570px;
  margin: 26px 0 0;
  color: #aeb8c5;
  font-size: 20px;
  line-height: 1.6;
}

.domain {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f7f8fa;
  font-size: 17px;
  font-weight: 650;
}

.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #2dc08e;
  box-shadow: 0 0 0 5px rgb(45 192 142 / 12%);
}

.network {
  border-top: 1px solid #344252;
  border-bottom: 1px solid #344252;
}

.network > div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
}

.network > div + div {
  border-top: 1px solid #273443;
}

.network-label {
  color: #7f8b99;
  font-size: 13px;
  font-weight: 650;
  text-transform: uppercase;
}

.network strong {
  font-size: 21px;
  font-weight: 650;
}

footer {
  width: min(1120px, calc(100% - 48px));
  min-height: 88px;
  margin: 0 auto;
  border-top: 1px solid #273443;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #738090;
  font-size: 13px;
}

footer a {
  color: #aeb8c5;
  text-decoration: none;
}

footer a:hover,
footer a:focus-visible {
  color: #e7bd47;
  text-decoration: underline;
}

@media (max-width: 1000px) {
  h1 {
    font-size: 64px;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: min(100% - 32px, 560px);
    min-height: 92px;
  }

  .brand-logo {
    width: 184px;
  }

  main {
    width: min(100% - 32px, 560px);
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 54px 0 64px;
  }

  .app-icon {
    width: 108px;
    height: 108px;
    border-radius: 20px;
  }

  .eyebrow {
    margin-top: 32px;
  }

  h1 {
    font-size: 48px;
  }

  .summary {
    font-size: 18px;
  }

  .network > div {
    min-height: 96px;
  }

  footer {
    width: min(100% - 32px, 560px);
    min-height: 76px;
    flex-wrap: wrap;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 40px;
  }

  .summary {
    font-size: 16px;
  }
}

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