:root {
  
  color-scheme: light;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-synthesis: none;

  --color-bg: #fbfaf5;
  --color-text: #171717;
  --color-muted: #686868;
  --color-rule: #9b9a95;

  --font-xs: 10px;
  --font-sm: 11px;
  --font-body: 12px;
  --font-title: 32px;
  --weight-regular: 400;
  --weight-bold: 700;
  --line-body: 1.5;
  --line-title: 1.1;
  --line-tight: 1;
  --tracking-meta: .04em;
  --tracking-title: .06em;
  --tracking-heading: .08em;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;

  --line-thin: 1px;
  --line-strong: 2px;
  --underline-offset: 3px;
  --page-min-width: 320px;
  --page-width: 640px;
  --page-padding-block: var(--space-7);
  --page-gutter: var(--space-6);
}


* {
  box-sizing: border-box;
}

html,
body {
  min-width: var(--page-min-width);
  min-height: 100%;
  background: var(--color-bg);
}

body {
  min-height: 100vh;
  margin: 0;
  padding: var(--page-padding-block) var(--page-gutter);
  color: var(--color-text);
  font-size: var(--font-body);
  font-weight: var(--weight-regular);
  line-height: var(--line-body);
}

.page {
  width: min(100%, var(--page-width));
  margin: 0 auto;
}

.header {
  text-align: center;
}

.kicker,
h1,
h2,
ul {
  margin: 0;
}

.kicker {
  font-size: var(--font-sm);
  letter-spacing: var(--tracking-meta);
}

h1 {
  margin-top: var(--space-2);
  font-size: var(--font-title);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-title);
  line-height: var(--line-title);
}


.rule {
  max-width: 100%;
  overflow: hidden;
  color: var(--color-muted);
  font-size: var(--font-xs);
  letter-spacing: var(--tracking-meta);
  line-height: var(--line-tight);
  white-space: nowrap;
}

.header > .rule {
  margin: var(--space-5) 0 var(--space-4);
}

.links-section {
  margin-top: var(--space-6);
}

h2 {
  margin-bottom: var(--space-2);
  padding-bottom: var(--space-2);
  border-bottom: var(--line-thin) solid var(--color-text);
  font-size: var(--font-body);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-heading);
  line-height: var(--line-tight);
}

.link-list {
  padding: 0;
  list-style: none;
}


.link-row {
  display: grid;
  grid-template-columns: max-content minmax(var(--space-2), 1fr) max-content;
  align-items: center;
  gap: var(--space-2);
  min-width: 0;
  min-height: 44px;
  color: inherit;
  text-decoration: none;
}

.link-service {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  min-width: 0;
}

.link-service img {
  display: block;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}

.link-label {
  font-weight: var(--weight-bold);
  text-decoration: underline;
  text-decoration-thickness: var(--line-thin);
  text-underline-offset: var(--underline-offset);
}

.leader {
  min-width: var(--space-2);
  border-bottom: var(--line-thin) dotted var(--color-rule);
}

.link-handle {
  min-width: 0;
  overflow-wrap: anywhere;
  text-align: right;
  white-space: nowrap;
}

.link-row:hover .link-label,
.link-row:focus-visible .link-label {
  text-decoration-thickness: var(--line-strong);
}

.link-row:focus-visible,
.status-link:focus-visible {
  outline: var(--line-strong) dotted currentColor;
  outline-offset: var(--line-strong);
}

footer {
  margin-top: var(--space-6);
}

footer .rule {
  margin-bottom: var(--space-3);
  text-align: center;
}


.status-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: center;
  gap: var(--space-2);
  min-height: 44px;
  color: inherit;
  text-decoration: none;
}

.status-title {
  font-weight: var(--weight-bold);
  text-decoration: underline;
  text-decoration-thickness: var(--line-thin);
  text-underline-offset: var(--underline-offset);
}

.status-link:hover .status-title,
.status-link:focus-visible .status-title {
  text-decoration-thickness: var(--line-strong);
}

.status-meta {
  color: var(--color-muted);
  font-size: var(--font-xs);
  letter-spacing: var(--tracking-meta);
  text-align: right;
}

@media (max-width: 600px) {
  :root {
    --font-title: 28px;
    --page-padding-block: var(--space-6);
    --page-gutter: 20px;
  }
}
