:root {
  color-scheme: light;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: #172339;
  background: #f6f7f9;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.status {
  width: min(100%, 640px);
  padding: clamp(28px, 6vw, 64px);
  background: #fff;
  border: 1px solid #e4e8ee;
  border-radius: 22px;
  box-shadow: 0 24px 72px rgba(23, 35, 57, .07);
}

.brand {
  margin-bottom: 64px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.04em;
}

.brand-dot { color: #df2539; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  padding: 7px 12px;
  border-radius: 100px;
  background: #e9f7ef;
  color: #187449;
  font-size: 13px;
  font-weight: 700;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 7vw, 58px);
  line-height: 1.05;
  letter-spacing: -.055em;
}

p {
  max-width: 430px;
  margin: 0;
  color: #5a677a;
  font-size: clamp(16px, 3vw, 19px);
  line-height: 1.55;
}

.domain {
  margin-top: 72px;
  padding-top: 18px;
  border-top: 1px solid #e9edf2;
  color: #8b96a5;
  font-size: 13px;
}

@media (max-width: 480px) {
  .brand { margin-bottom: 48px; }
  .domain { margin-top: 56px; }
}
