:root {
  color-scheme: dark;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background: #070b12;
  color: #eef4fb;
  letter-spacing: 0;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background: #070b12;
}

a { color: inherit; }

.bar {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid #26364a;
  background: #0b121c;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 750;
  font-size: 1.05rem;
}

.brand img { border-radius: 4px; }

.status-link {
  color: #81e6dc;
  text-underline-offset: 4px;
}

main {
  width: min(1060px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) 0 60px;
}

.intro { max-width: 760px; }

.eyebrow {
  color: #f6c453;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  margin: 12px 0 20px;
  font-size: clamp(2rem, 5vw, 4.3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.intro > p:not(.eyebrow) {
  color: #b8c6d8;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.primary-action {
  display: inline-flex;
  margin-top: 18px;
  padding: 13px 18px;
  border: 1px solid #52d8d8;
  border-radius: 6px;
  color: #8ef1ec;
  background: #0d242b;
  text-decoration: none;
  font-weight: 750;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(44px, 8vw, 78px);
  border-top: 1px solid #26364a;
  padding-top: 24px;
}

.service-grid article {
  min-width: 0;
  display: flex;
  gap: 14px;
  padding: 18px 6px;
}

.service-grid strong { display: block; margin-bottom: 7px; }
.service-grid p { margin: 0; color: #91a2b7; line-height: 1.55; }

.signal {
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-radius: 50%;
}

.signal-ready { background: #58d6b3; }
.signal-hold { background: #f6c453; }

footer {
  padding: 28px clamp(18px, 4vw, 56px);
  color: #718299;
  border-top: 1px solid #172234;
}

@media (max-width: 720px) {
  .bar { align-items: flex-start; }
  .status-link { padding-top: 10px; }
  .service-grid { grid-template-columns: 1fr; }
}
