:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --text: #111827;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-light: #eff6ff;
  --green: #059669;
  --yellow: #d97706;
  --orange: #ea580c;
  --red: #dc2626;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.page-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px 100px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  margin-bottom: 20px;
}

.brand-name {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text);
  letter-spacing: -0.03em;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
}

.nav-cta:hover {
  background: var(--accent-hover);
}

.hero {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 64px 0 72px;
}

.hero-left {
  flex: 1.15;
  min-width: 0;
}

.hero-right {
  flex: 0.85;
  min-width: 0;
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--text);
}

.hero-text {
  color: var(--text-secondary);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 0 32px;
}

.hero-form {
  max-width: 100%;
}

.hero-input-row {
  display: flex;
  gap: 12px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: var(--shadow-md);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-input-row:focus-within {
  border-color: var(--accent);
  box-shadow: var(--shadow-md), 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.hero-input-row input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 16px 16px;
  font: inherit;
  font-size: 1.1rem;
  color: var(--text);
  outline: none;
  min-width: 0;
}

.hero-input-row input::placeholder {
  color: #9ca3af;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  min-height: 56px;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-primary:active {
  transform: scale(0.98);
}

.benchmark-line {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.examples {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
  padding-bottom: 0;
}

.examples-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.example-link {
  background: none;
  border: none;
  color: var(--accent);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 2px;
  transition: color 0.15s;
}

.example-link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.preview-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.preview-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.preview-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.preview-domain {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.pill-yellow {
  background: #fffbeb;
  color: var(--yellow);
  border-color: rgba(217, 119, 6, 0.2);
}

.pill-green {
  background: #ecfdf5;
  color: var(--green);
  border-color: rgba(5, 150, 105, 0.2);
}

.preview-score-green {
  color: var(--green);
}

.preview-score-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-light);
}

.preview-score-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.preview-score-value {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--yellow);
  line-height: 1;
}

.preview-metrics {
  display: grid;
  gap: 18px;
}

.preview-metric-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.preview-metric-val {
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.preview-note + .preview-note {
  margin-top: 10px;
}

.preview-note {
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--border-light);
}

.preview-note-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.preview-note-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.report-section {
  padding: 0 0 72px;
  animation: fadeUp 0.4s ease;
}

.report-section.hidden {
  display: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.report-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.report-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}

.report-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.report-head h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 14px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.score-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 24px;
}

.score-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.score-value {
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.score-side {
  display: flex;
  gap: 28px;
}

.score-side div {
  display: grid;
  gap: 4px;
}

.score-side strong {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
}

.score-side span {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.breakdown {
  display: grid;
  gap: 4px;
}

.metric-card {
  display: grid;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}

.metric-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.metric-label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
}

.metric-value {
  color: var(--text-muted);
  font-weight: 700;
  white-space: nowrap;
  font-size: 0.88rem;
}

.bar {
  width: 100%;
  height: 8px;
  background: var(--border-light);
  border-radius: 999px;
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--green));
  transition: width 0.6s ease;
}

.metric-note {
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.summary-box {
  margin-top: 24px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--border-light);
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 0.95rem;
}

.info-section {
  margin-bottom: 72px;
}

.section-head {
  margin-bottom: 24px;
}

.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  padding: 24px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
  font-size: 0.9rem;
}

.accent-card {
  background: var(--accent-light);
  border-color: rgba(37, 99, 235, 0.12);
}

.method-grid {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.method-grid > * {
  flex: 1;
}

.formula-card {
  padding: 24px;
}

.formula-card h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.formula-card code {
  display: block;
  margin: 14px 0;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--border-light);
  color: var(--accent);
  white-space: pre-wrap;
  line-height: 1.6;
  font-size: 0.85rem;
}

.formula-card ul {
  margin: 0;
  padding-left: 18px;
}

.formula-card li {
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 0.9rem;
}

.text-muted {
  color: var(--text-muted);
}

.small {
  font-size: 0.85rem;
}

a.brand-name {
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.15s;
}

.site-nav a:hover {
  color: var(--accent);
}

.page-header {
  padding: 48px 0 32px;
}

.page-header h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.page-intro {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 0 40px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  min-height: 52px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.15s, color 0.15s;
}

.btn-secondary:hover {
  border-color: var(--accent);
}

.cta-bar {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 48px 0 0;
  padding: 32px 0;
  border-top: 1px solid var(--border-light);
}

.cta-bar .btn-primary,
.cta-bar .btn-secondary {
  text-decoration: none;
  min-height: 48px;
  font-size: 0.95rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.related-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.related-link:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.pill-orange {
  background: #fff7ed;
  color: var(--orange);
  border-color: rgba(234, 88, 12, 0.2);
}

.pill-red {
  background: #fef2f2;
  color: var(--red);
  border-color: rgba(220, 38, 38, 0.2);
}

.pill-blue {
  background: #eff6ff;
  color: var(--accent);
  border-color: rgba(37, 99, 235, 0.2);
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.directory-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.directory-entry:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.directory-entry .entry-score {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.directory-entry .entry-meta {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 2px;
}

.namespace-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.ns-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.ns-hub-entry {
  display: block;
  padding: 20px 24px;
  text-decoration: none;
  transition: box-shadow 0.15s, border-color 0.15s;
}

.ns-hub-entry:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.ns-hub-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.ns-hub-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.ns-hub-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
}

.ns-hub-root {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}

.ns-hub-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 8px;
}

.ns-hub-leads {
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 6px;
}

.ns-submit-block {
  padding: 32px 36px;
  margin-bottom: 32px;
  background: var(--accent-light);
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.ns-submit-inner {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.ns-submit-content {
  flex: 1;
}

.ns-submit-block h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.ns-submit-block p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.ns-submit-block .btn-primary {
  margin-top: 4px;
  margin-bottom: 10px;
}

.ns-submit-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.ns-card {
  padding: 20px;
  position: relative;
  text-decoration: none;
  display: block;
  transition: box-shadow 0.15s, border-color 0.15s;
}

a.ns-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.ns-view {
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
}

.ns-card .ns-domain {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 6px;
}

.ns-card .ns-score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.ns-card .ns-score {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ns-card .ns-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ns-label {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.ns-label-mismatch {
  background: #fff7ed;
  color: var(--orange);
}

.ns-label-risk {
  background: #fef2f2;
  color: var(--red);
}

.ns-label-candidate {
  background: #eff6ff;
  color: var(--accent);
}

.ns-label-pressure {
  background: #fffbeb;
  color: var(--yellow);
}

.strategic-block {
  background: var(--accent-light);
  border: 2px solid rgba(37, 99, 235, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 32px 0;
}

.strategic-block h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.strategic-block .strategic-domain {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.strategic-block p {
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
  font-size: 0.95rem;
}

.grails-cta {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 32px 0;
  text-align: center;
}

.grails-cta h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.grails-cta p {
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0 0 20px;
  font-size: 0.95rem;
}

.data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}

.data-table th {
  text-align: left;
  padding: 14px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: var(--border-light);
  border-bottom: 1px solid var(--border);
}

.data-table td {
  padding: 14px 20px;
  font-size: 0.92rem;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table td a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.data-table td a:hover {
  text-decoration: underline;
}

.stat-row {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.stat-box {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat-box .stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}

.stat-box .stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 4px;
}

.explore-section {
  margin-bottom: 72px;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.explore-card {
  padding: 28px;
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.explore-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.explore-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.explore-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 16px;
  font-size: 0.9rem;
}

.explore-card .card-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 20px;
  margin-top: 48px;
}

.footer-inner {
  display: grid;
  gap: 16px;
}

.footer-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.footer-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--accent);
}

.score-minimal { color: var(--green); }
.score-low { color: var(--green); }
.score-moderate { color: var(--yellow); }
.score-high { color: var(--orange); }
.score-severe { color: var(--red); }

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    gap: 40px;
  }

  .hero-left {
    text-align: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .examples {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.9rem;
  }

  .hero-text {
    font-size: 1.05rem;
    margin-bottom: 28px;
  }

  .hero-input-row {
    flex-direction: column;
    padding: 6px;
  }

  .hero-input-row input {
    padding: 14px 14px;
    font-size: 1rem;
  }

  .btn-primary {
    width: 100%;
    min-height: 52px;
    font-size: 1rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .method-grid {
    flex-direction: column;
  }

  .score-panel {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .report-head {
    flex-direction: column;
    gap: 12px;
  }

  .metric-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .report-card {
    padding: 24px 20px;
  }

  .score-value {
    font-size: 2.6rem;
  }

  .preview-card {
    padding: 24px 20px;
  }

  .site-nav {
    gap: 12px;
    flex-wrap: wrap;
  }

  .site-nav a {
    font-size: 0.82rem;
  }

  .explore-grid {
    grid-template-columns: 1fr;
  }

  .directory-grid {
    grid-template-columns: 1fr;
  }

  .namespace-grid {
    grid-template-columns: 1fr;
  }

  .stat-row {
    flex-direction: column;
  }

  .cta-bar {
    flex-direction: column;
  }

  .data-table {
    display: block;
    overflow-x: auto;
  }
}
