:root {
  color-scheme: light;
  --bg: #f5f5f7;
  --surface: #ffffff;
  --surface-soft: #fbfbfd;
  --text: #111111;
  --muted: #666666;
  --line: #d8d8dc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  font-weight: 650;
}

code {
  font-family: "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.95em;
}

.registry {
  width: min(100% - 32px, 1120px);
  margin: 0 auto;
  padding: 56px 0;
}

.registry-header {
  display: grid;
  gap: 14px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

.subtitle {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.registry-nav,
.link-list,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.registry-nav a,
.button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 0 12px;
  text-decoration: none;
}

.registry-section {
  margin-top: 28px;
}

.section-header {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: 26px;
  letter-spacing: 0;
}

.section-header p {
  max-width: 760px;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.registry-card,
.registry-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.registry-card {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.card-value {
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.card-label,
.registry-card p,
.registry-panel p,
.meta-list,
.feature-list,
.milestone-list,
.next-action-list {
  color: var(--muted);
}

.panel-list {
  display: grid;
  gap: 12px;
}

.registry-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.panel-header {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.panel-header h3 {
  font-size: 21px;
}

.status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  background: #ededf0;
  padding: 0 10px;
  color: #333333;
  font-size: 13px;
  font-weight: 650;
}

.status-live {
  background: #111111;
  color: #ffffff;
}

.meta-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.meta-list strong {
  color: var(--text);
}

.feature-list,
.milestone-list,
.next-action-list {
  margin: 0;
  padding-left: 22px;
}

.feature-list li + li,
.milestone-list li + li,
.next-action-list li + li {
  margin-top: 8px;
}

.note-panel {
  background: var(--surface-soft);
}

@media (max-width: 860px) {
  .registry {
    width: min(100% - 24px, 1120px);
    padding: 36px 0;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .panel-header {
    display: grid;
  }
}

