:root {
  /* Brand accent follows Braid.Platform/web/src/styles.css. */
  --brand: #6d28d9;
  --brand-hover: #5b21b6;
  font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:#18181b;
  background:#fafafa;
  font-synthesis:none;
  color-scheme:light;
}
* {
  box-sizing:border-box;
}
body {
  margin:0;
}
a {
  color:inherit;
  text-underline-offset:4px;
}
header,footer,main {
  max-width:1240px;
  margin:auto;
  padding:0 40px;
}
header {
  height:96px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid #e4e4e7;
  font-size:13px;
}
.brand {
  display:flex;
  align-items:center;
  gap:20px;
  text-decoration:none;
}
.brand img {
  display:block;
  width:194px;
  height:auto;
  flex-shrink:0;
}
.brand span {
  font-size:11px;
  color:#71717a;
  letter-spacing:.16em;
  white-space:nowrap;
}
.intro {
  padding:64px 0 34px;
}
.eyebrow {
  font-size:11px;
  font-weight:700;
  letter-spacing:.17em;
  color:var(--brand);
}
h1 {
  font-size:clamp(36px,5vw,58px);
  line-height:1.07;
  letter-spacing:-.045em;
  margin:18px 0 24px;
  font-weight:650;
}
.intro>p:last-child {
  color:#71717a;
  line-height:1.6;
  font-size:16px;
}
.toolbar {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin:18px 0 24px;
}
.toolbar p {
  font-size:12px;
  color:#71717a;
  line-height:1.6;
}
button {
  font:inherit;
  font-size:12px;
  border:1px solid #d4d4d8;
  border-radius:7px;
  background:var(--brand);
  border-color:var(--brand);
  color:white;
  padding:10px 16px;
  cursor:pointer;
  white-space:nowrap;
}
button:hover {
  border-color:var(--brand-hover);
  background:var(--brand-hover);
}
button:disabled {
  opacity:.5;
  cursor:wait;
}
button:focus-visible,a:focus-visible {
  outline:3px solid var(--brand);
  outline-offset:4px;
}
#environments {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.environment {
  background:#fff;
  border:1px solid #e4e4e7;
  border-radius:12px;
  overflow:hidden;
}
.card-head {
  padding:25px 24px 23px;
  border-bottom:1px solid #e4e4e7;
}
.card-head h2 {
  font-size:18px;
  font-weight:600;
  margin:0 0 19px;
  letter-spacing:-.02em;
}
.state {
  display:flex;
  align-items:center;
  gap:9px;
  font-size:13px;
  font-weight:600;
}
.dot {
  display:inline-block;
  width:8px;
  height:8px;
  border-radius:50%;
  background:#8a9ba4;
  flex-shrink:0;
}
.healthy .dot {
  background:#288368;
}
.degraded .dot {
  background:#bd811e;
}
.unhealthy .dot {
  background:#c3454b;
}
.card-body {
  padding:8px 24px 16px;
  min-height:286px;
}
.component {
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:center;
  border-bottom:1px solid #f4f4f5;
  padding:13px 0;
  font-size:12px;
}
.component:last-child {
  border-bottom:0;
}
.component .state {
  font-size:11px;
  font-weight:400;
  white-space:nowrap;
  color:#71717a;
  gap:6px;
}
.card-foot {
  padding:17px 24px;
  background:#fafafa;
  border-top:1px solid #e4e4e7;
  font-size:11px;
  line-height:1.6;
  color:#71717a;
}
.empty {
  padding:20px 0;
  color:#71717a;
  font-size:13px;
  line-height:1.8;
}
.notice {
  color:#9a6114;
  margin:4px 0 0;
}
aside {
  max-width:710px;
  margin:38px 0 60px;
}
aside h2 {
  font-size:13px;
  font-weight:600;
}
aside p {
  color:#71717a;
  font-size:12px;
  line-height:1.8;
}
footer {
  border-top:1px solid #e4e4e7;
  padding-top:24px;
  padding-bottom:30px;
  display:flex;
  justify-content:space-between;
  font-size:11px;
  color:#71717a;
}
@media(max-width:880px) {
  header,main,footer {
    padding-left:24px;
    padding-right:24px;
  }
  #environments {
    grid-template-columns:1fr;
  }
  .card-body {
    min-height:0;
  }
  .intro {
    padding-top:42px;
  }
  h1 {
    font-size:42px;
  }
  .toolbar {
    align-items:flex-start;
  }
  footer {
    gap:20px;
  }
  .brand {
    gap:12px;
  }
  .brand img {
    width:150px;
  }
}
