:root {
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #172033;
  background: #f3f6fb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

.shell {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 72px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .02em;
}

a {
  color: #315fbd;
  text-decoration: none;
}

.card {
  padding: 40px;
  border: 1px solid #dce3ef;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(25, 44, 78, .08);
}

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #24734a;
  font-size: 14px;
  font-weight: 600;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2ebd72;
  box-shadow: 0 0 0 5px rgba(46, 189, 114, .12);
}

h1 {
  margin: 24px 0 12px;
  font-size: clamp(30px, 6vw, 44px);
}

p {
  max-width: 580px;
  margin: 0;
  color: #596579;
  font-size: 17px;
  line-height: 1.65;
}

footer {
  margin-top: 28px;
  color: #8993a4;
  font-size: 13px;
}

@media (max-width: 560px) {
  header {
    margin-bottom: 40px;
  }

  .card {
    padding: 28px 22px;
  }
}
