:root {
  color-scheme: light;
  --bg: #f7f8f8;
  --ink: #202426;
  --muted: #647077;
  --line: #d8dddf;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.probe-shell {
  display: grid;
  align-content: center;
  width: min(720px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 48px 0;
}

p,
h1,
dl {
  margin: 0;
}

h1 {
  max-width: 12ch;
  margin-top: 10px;
  font-size: clamp(2.6rem, 10vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.eyebrow {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

dl {
  display: grid;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 52px;
  border-bottom: 1px solid var(--line);
}

dt,
dd {
  font-size: 0.95rem;
}

dt {
  color: var(--muted);
  font-weight: 700;
}

dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  text-align: right;
}
