:root {
  color-scheme: dark;
  --accent: #e20074;
  --bg: #10121b;
  --surface: #191c28;
  --text: #f3f4f8;
  --muted: #a1a7b9;
  --border: #2b3041;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background:
    radial-gradient(ellipse at 85% 0%, #222138 0, transparent 48%), var(--bg);
  color: var(--text);
}
main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 40px 24px;
}
header,
.row,
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
header {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
}
.brand > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--accent);
  border-radius: 10px;
  color: white;
  font-size: 24px;
}
.badge {
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #d7c8ff;
  text-transform: uppercase;
}
.hero {
  padding: 48px 0 32px;
}
.eyebrow {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}
h1 {
  margin: 18px 0;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.08;
  font-weight: 650;
  letter-spacing: -3px;
  overflow-wrap: anywhere;
}
.intro {
  color: var(--muted);
  line-height: 1.65;
  font-size: 16px;
}
.health {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  margin-top: 8px;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: 12px;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e5b85c;
}
.dot.healthy {
  background: #53daa7;
  box-shadow: 0 0 12px #53daa744;
}
.dot.error {
  background: #ff8080;
}
.message-card {
  background: linear-gradient(115deg, #202130, #191c28);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 24px 28px;
  border-radius: 12px;
}
.mono {
  color: var(--muted);
  font-size: 10px;
  font-family: ui-monospace, monospace;
  letter-spacing: 1px;
}
#message {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.45;
  margin: 22px 0 26px;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}
.muted {
  color: var(--muted);
  font-size: 11px;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 16px 0 40px;
}
.metrics article {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 22px;
  border-radius: 10px;
}
.metrics strong {
  font-size: 25px;
  font-weight: 550;
  letter-spacing: -0.6px;
  overflow-wrap: anywhere;
}
.metrics article > span:last-child {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}
h2 {
  margin: 9px 0 0;
  font-size: 25px;
  font-weight: 550;
  letter-spacing: -0.7px;
}
.workflow-heading .eyebrow {
  margin: 0;
}
button {
  background: #252a3a;
  color: var(--text);
  border: 1px solid #3a4257;
  border-radius: 8px;
  padding: 12px 16px;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
}
button:hover {
  background: #30374b;
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid #b5a0ff;
  outline-offset: 4px;
}
button:disabled {
  opacity: 0.6;
  cursor: wait;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  list-style: none;
  margin: 26px 0 36px;
  padding: 0;
}
.steps li {
  display: flex;
  gap: 12px;
}
.steps li > span {
  font-family: ui-monospace, monospace;
  color: #a292cd;
  font-size: 11px;
  padding-top: 3px;
}
h3 {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 9px;
}
.steps p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
  margin: 0;
}
code {
  color: #d2c3f3;
  font-size: 11px;
  overflow-wrap: anywhere;
}
footer {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.7px;
  flex-wrap: wrap;
}
footer b {
  font-weight: 500;
  color: #d4d8e3;
}
.disclaimer {
  color: var(--muted);
  font-size: 10px;
  margin-top: 14px;
}
@media (max-width: 700px) {
  main {
    padding: 20px;
  }
  .brand {
    font-size: 9px;
    letter-spacing: 0.7px;
  }
  .hero {
    padding-top: 32px;
  }
  .metrics,
  .steps {
    grid-template-columns: 1fr;
  }
  .metrics {
    gap: 10px;
    margin-bottom: 30px;
  }
  .metrics article {
    gap: 8px;
    padding: 18px;
  }
  .workflow-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .message-card .mono {
    display: none;
  }
  .message-card {
    padding: 20px;
  }
  #message {
    font-size: 21px;
  }
  .message-card .muted {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
