:root {
  color: #172033;
  background: #f5f7fa;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 280px;
  min-height: 100%;
}

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

.site-header {
  border-bottom: 1px solid #d9e0e8;
  background: #ffffff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 40px, 920px);
  min-height: 64px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #103b66;
  font-size: 18px;
  font-weight: 700;
}

.brand-mark {
  width: 12px;
  height: 28px;
  background: #1b70a6;
  border-radius: 2px;
  box-shadow: 7px 0 0 #43a67a;
}

.environment {
  color: #5d6978;
  font-size: 13px;
  font-weight: 600;
}

.page-shell {
  width: min(100% - 40px, 920px);
  margin: 0 auto;
  padding: 56px 0 40px;
}

.intro {
  max-width: 720px;
}

h1 {
  margin: 0;
  color: #172033;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.status {
  margin: 14px 0 0;
  color: #526071;
  font-size: 15px;
  line-height: 1.5;
}

.results {
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid #d7dfe8;
  border-radius: 8px;
  background: #ffffff;
}

.parameter-list {
  margin: 0;
}

.parameter-row {
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(0, 1.7fr);
  min-height: 104px;
  border-bottom: 1px solid #e2e7ed;
}

.parameter-row:last-child {
  border-bottom: 0;
}

dt,
dd {
  min-width: 0;
  margin: 0;
  padding: 24px 26px;
}

dt {
  background: #f8fafc;
}

dd {
  display: flex;
  align-items: center;
}

.parameter-label {
  display: block;
  margin-bottom: 7px;
  color: #293548;
  font-size: 14px;
  font-weight: 650;
}

code {
  color: #687587;
  font-family: "Cascadia Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
}

output {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  color: #172033;
  font-family: "Cascadia Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 15px;
  line-height: 1.55;
}

output.is-missing {
  color: #7a8593;
  font-family: inherit;
  font-style: italic;
}

output.is-empty {
  color: #9a5a16;
  font-family: inherit;
  font-style: italic;
}

@media (max-width: 640px) {
  .header-inner,
  .page-shell {
    width: min(100% - 28px, 920px);
  }

  .header-inner {
    min-height: 58px;
  }

  .environment {
    max-width: 120px;
    text-align: right;
  }

  .page-shell {
    padding-top: 38px;
  }

  h1 {
    font-size: 26px;
  }

  .results {
    margin-top: 28px;
  }

  .parameter-row {
    display: block;
    min-height: 0;
  }

  dt,
  dd {
    padding: 18px 20px;
  }

  dd {
    min-height: 62px;
  }
}
