/* ═══════════════════════════════════════════════════════════
   無料相談ナビ — Design System
   比較ツールとしての信頼感・清潔感・情報の見やすさを最優先。
   フォントは Noto Sans JP 1本で、本文と見出しの両方に使う。
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Trustworthy blues (Google Material 由来) */
  --primary: #1a73e8;
  --primary-dark: #1557b0;
  --primary-strong: #174ea6;
  --primary-light: #e8f0fe;
  --primary-faint: #f0f5fd;
  /* Positive green for CTA / money */
  --accent: #0d904f;
  --accent-dark: #0a6c39;
  --accent-light: #e6f4ea;
  /* Neutrals */
  --white: #ffffff;
  --bg: #f8f9fa;
  --bg-alt: #f1f3f4;
  --border: #dadce0;
  --border-light: #e8eaed;
  --ink: #202124;
  --text: #3c4043;
  --muted: #5f6368;
  --faint: #9aa0a6;
  /* Feedback */
  --danger: #d93025;
  --danger-light: #fce8e6;
  --warn: #e37400;
  --warn-dark: #8a4b00;
  --warn-light: #fef7e0;
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,.04), 0 2px 4px rgba(0,0,0,.08);
  --shadow-card: 0 0 0 1px rgba(0,0,0,.03), 0 2px 4px rgba(0,0,0,.05), 0 6px 16px rgba(0,0,0,.06);
  --shadow-blue: 0 2px 6px rgba(26,115,232,.35);
  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-pill: 999px;
  /* Layout */
  --wide: 1200px;
  --content: 780px;
  --header-h: 64px;
  /* Type */
  --font-sans: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI',
               'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, system-ui, sans-serif;
  --focus-ring: 0 0 0 3px rgba(26,115,232,.35);
  --ease: cubic-bezier(.2, 0, 0, 1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  font-feature-settings: "palt" 1;
  line-break: strict;
  overflow-wrap: break-word;
}

body { min-height: 100vh; display: flex; flex-direction: column; }

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--primary-light); color: var(--ink); }

:focus-visible {
  outline: 3px solid rgba(26,115,232,.4);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--white);
  padding: .5rem 1rem;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { color: var(--ink); line-height: 1.4; text-wrap: balance; }
h1 { font-size: clamp(1.5rem, 1rem + 1.8vw, 2.2rem); letter-spacing: -.015em; font-weight: 700; }
h2 { font-size: clamp(1.2rem, .9rem + 1vw, 1.5rem); letter-spacing: -.01em; font-weight: 700; }
h3 { font-size: 1.05rem; font-weight: 600; }
h4 { font-size: .95rem; font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
}

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  box-shadow: 0 1px 2px rgba(60,64,67,.04);
}
.header-inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -.01em;
  line-height: 1;
}
.site-logo:hover { text-decoration: none; }
.site-logo-icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #4285f4 0%, var(--primary) 55%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 700;
  box-shadow: var(--shadow-blue);
  transition: box-shadow .2s var(--ease), transform .2s var(--ease);
}
.site-logo:hover .site-logo-icon { box-shadow: 0 4px 10px rgba(26,115,232,.45); transform: translateY(-1px); }
.site-logo-name { display: flex; flex-direction: column; line-height: 1.15; }
.site-logo-name .logo-ja { font-size: 1.05rem; letter-spacing: -.015em; }
.site-logo-name .logo-ja span { color: var(--primary); }
.site-logo-name .logo-en { font-size: .58rem; font-weight: 500; letter-spacing: .22em; color: var(--faint); text-transform: uppercase; }
.header-nav { display: flex; gap: 1.5rem; font-size: .88rem; color: var(--muted); align-items: center; }
.header-nav a { color: var(--muted); padding: .35rem .15rem; border-bottom: 2px solid transparent; transition: color .2s var(--ease), border-color .2s var(--ease); }
.header-nav a:hover { color: var(--primary); text-decoration: none; border-color: var(--primary); }

/* ── Main ───────────────────────────────────────────────── */
main { flex: 1; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem 2rem;
  margin-top: 4rem;
}
.footer-inner {
  max-width: var(--wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem 2rem;
  align-items: start;
}
.footer-brand { font-size: .86rem; color: var(--muted); line-height: 1.85; }
.footer-brand strong { color: var(--ink); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.2rem;
  justify-content: flex-end;
}
.footer-links a { color: var(--muted); font-size: .8rem; transition: color .2s var(--ease); }
.footer-links a:hover { color: var(--primary); }

/* ── Container / page shells ────────────────────────────── */
.container { max-width: var(--wide); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: var(--content); margin: 0 auto; padding: 0 1.5rem; }
.page-wrap { padding-top: 2rem; padding-bottom: 3rem; }
.section { padding-top: 2.5rem; padding-bottom: 2rem; }
.section-head { margin-bottom: 1.5rem; }
.section-sub { color: var(--muted); font-size: .9rem; margin-top: .25rem; max-width: 560px; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .7rem 1.5rem;
  font-size: .9rem; font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent; cursor: pointer;
  text-decoration: none;
  transition: background-color .2s var(--ease), border-color .2s var(--ease),
              box-shadow .2s var(--ease), transform .15s var(--ease), color .2s var(--ease);
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(.99); }

.btn-primary {
  background: var(--primary); color: var(--white);
  box-shadow: 0 1px 2px rgba(26,115,232,.3);
}
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 4px 10px rgba(26,115,232,.35); }
.btn-primary:active { background: var(--primary-strong); }

.btn-accent {
  background: var(--accent-dark); color: var(--white);
}
.btn-accent:hover { background: var(--accent); }

.btn-outline {
  background: var(--white); color: var(--primary);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover { border-color: var(--primary); background: var(--primary-light); }
.btn-outline:active { background: var(--primary-light); }

.btn-sm { padding: .4rem .9rem; font-size: .82rem; border-radius: var(--radius-sm); }

/* ── Hero (top) ─────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(620px 240px at 18% -40px, rgba(26,115,232,.10), transparent 70%),
    radial-gradient(520px 220px at 85% -60px, rgba(13,144,79,.08), transparent 70%),
    linear-gradient(180deg, #eef4fe 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 3.25rem 1.5rem 2.75rem;
  text-align: center;
  position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .3rem .9rem;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: .76rem; font-weight: 600;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(13,144,79,.4);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(13,144,79,.35); }
  70% { box-shadow: 0 0 0 7px rgba(13,144,79,0); }
  100% { box-shadow: 0 0 0 0 rgba(13,144,79,0); }
}
.hero-title {
  font-size: clamp(1.75rem, 1.1rem + 2.4vw, 2.6rem);
  line-height: 1.35;
  letter-spacing: -.02em;
  margin-bottom: .9rem;
}
.hero-title .hl { color: var(--primary); }
.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 1.75rem;
  line-height: 1.9;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
  margin-bottom: 2rem;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: .15rem; }
.stat-num {
  font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.3rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.stat-num .unit { font-size: .6em; font-weight: 600; color: var(--muted); margin-left: .1em; }
.stat-label { font-size: .78rem; color: var(--muted); }
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
}
.chip {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .38rem .95rem;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: .82rem; font-weight: 500;
  transition: border-color .2s var(--ease), background-color .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
}
.chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}
.chip strong { color: var(--ink); }
.chip:hover strong { color: var(--primary); }

/* ── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow .2s var(--ease), transform .15s var(--ease), border-color .2s var(--ease);
}
.card:hover {
  box-shadow: var(--shadow-card);
  border-color: transparent;
  transform: translateY(-2px);
}
.card-link { display: block; color: inherit; }
.card-link:hover { text-decoration: none; }

/* Category cards */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.cat-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.4rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: "";
  position: absolute;
  top: 0; left: 1.25rem; right: 1.25rem;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--primary), #4285f4);
  opacity: 0;
  transform: scaleX(.5);
  transform-origin: left;
  transition: opacity .2s var(--ease), transform .25s var(--ease);
}
.cat-card:hover::before { opacity: 1; transform: scaleX(1); }
.cat-card--lead { grid-column: span 2; align-items: center; padding: 1.75rem 2rem; }
.cat-icon-tile {
  width: 56px; height: 56px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-lg);
  background: var(--bg-alt);
  transition: transform .2s var(--ease), background-color .2s var(--ease);
}
.cat-card:hover .cat-icon-tile { transform: scale(1.05); background: var(--primary-faint); }
.cat-card--lead .cat-icon-tile { width: 64px; height: 64px; }
.cat-card-body { min-width: 0; flex: 1; }
.cat-card-body h3 { margin-bottom: .3rem; font-size: 1.1rem; }
.cat-card--lead .cat-card-body h3 { font-size: 1.25rem; }
.cat-desc {
  font-size: .82rem; color: var(--muted);
  line-height: 1.65; margin-bottom: .7rem;
}
.cat-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: .4rem 1rem;
  font-size: .78rem; color: var(--muted);
}
.cat-meta .num { font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
.cat-meta .pay { color: var(--accent-dark); font-weight: 700; font-variant-numeric: tabular-nums; }

/* Value-prop cards */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.value-card { text-align: center; padding: 1.9rem 1.5rem 1.7rem; position: relative; overflow: hidden; }
.value-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #4285f4);
  opacity: .9;
}
.value-card h4 { margin-bottom: .5rem; font-size: 1rem; }
.value-card p { font-size: .85rem; color: var(--muted); line-height: 1.75; }

/* ── Tables ─────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: .88rem;
  line-height: 1.55;
}
@media (min-width: 769px) {
  /* overflow-x: clip だとスクロールコンテナにならないため、sticky が効く */
  .table-wrap { overflow-x: clip; }
  thead th {
    position: sticky;
    top: var(--header-h);
    z-index: 10;
  }
}
thead th {
  background: var(--bg-alt);
  color: var(--muted);
  font-weight: 600;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .7rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
thead th:first-child { border-radius: 8px 0 0 0; }
thead th:last-child { border-radius: 0 8px 0 0; }
thead th.num { text-align: right; }

tbody td {
  padding: .8rem 1rem;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}
tbody tr { transition: background-color .15s var(--ease); }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: var(--bg); }
tbody tr:hover td:first-child { box-shadow: inset 3px 0 0 var(--primary); }
tbody td.num { text-align: right; font-variant-numeric: tabular-nums; }

/* 報酬列の強調 */
thead th.col-commission { background: var(--primary-light); color: var(--primary-strong); }
tbody td.col-commission { background: rgba(26,115,232,.035); }
tbody tr:hover td.col-commission { background: rgba(26,115,232,.07); }

.col-name { min-width: 200px; }
.name-cell { font-weight: 600; color: var(--ink); max-width: 260px; }
.name-cell a { color: var(--ink); transition: color .15s var(--ease); }
.name-cell a:hover { color: var(--primary); text-decoration: none; }
.advertiser-cell { font-size: .82rem; color: var(--muted); white-space: nowrap; }
.commission-cell { font-weight: 700; color: var(--accent-dark); white-space: nowrap; }
.score-cell { font-weight: 700; color: var(--primary-strong); }
.score-badge {
  display: inline-block; padding: .15em .5em;
  border-radius: 4px; font-size: .78rem; font-weight: 700;
  background: var(--primary-light); color: var(--primary-strong);
  font-variant-numeric: tabular-nums;
}
.score-badge.high { background: var(--accent-light); color: var(--accent-dark); }
.score-badge.mid { background: var(--warn-light); color: var(--warn-dark); }
.tag {
  display: inline-block; padding: .1em .55em;
  border-radius: 4px; font-size: .75rem; font-weight: 500;
  background: var(--bg-alt); color: var(--muted);
  transition: background-color .15s var(--ease), color .15s var(--ease);
}
a.tag:hover { background: var(--primary-light); color: var(--primary-strong); text-decoration: none; }

/* ── Detail page ────────────────────────────────────────── */
.page-title { display: flex; align-items: center; gap: .75rem; margin-bottom: .6rem; }
.page-desc { font-size: .95rem; color: var(--muted); max-width: 600px; line-height: 1.85; margin-bottom: .9rem; }
.page-badges { display: flex; flex-wrap: wrap; gap: .5rem; }

.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.stat-card { text-align: center; padding: 1.6rem 1rem; }
.stat-value {
  font-size: clamp(1.9rem, 1.5rem + 1.4vw, 2.4rem);
  font-weight: 700; line-height: 1; color: var(--ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}
.stat-value .unit { font-size: 1rem; font-weight: 500; color: var(--muted); margin-left: .15em; }
.stat-value.is-pay { color: var(--accent-dark); }
.stat-value.is-score { color: var(--primary-strong); }
.stat-label { font-size: .8rem; color: var(--muted); margin-top: .4rem; }

.detail-table thead th:first-child { width: 150px; }
.detail-table tbody th {
  width: 150px;
  text-align: left;
  font-weight: 600;
  font-size: .84rem;
  color: var(--ink);
  background: var(--bg-alt);
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
}
.detail-table tbody td { font-size: .88rem; }
.detail-table tbody tr:hover td { background: transparent; }
.detail-table tbody tr:hover th { background: var(--primary-faint); }
.detail-table .money { color: var(--accent-dark); font-weight: 700; font-variant-numeric: tabular-nums; }
.detail-table .data-num { font-weight: 600; font-variant-numeric: tabular-nums; }

.metric-grid { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }
.metric-card {
  flex: 1; min-width: 150px;
  text-align: center; padding: 1.15rem 1rem;
}
.metric-label {
  font-size: .72rem; font-weight: 700;
  color: var(--muted); text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: .35rem;
}
.metric-value {
  font-size: 1.5rem; font-weight: 700; color: var(--ink);
  line-height: 1.1; font-variant-numeric: tabular-nums;
}
.metric-value.is-score { color: var(--primary-strong); }
.metric-desc { font-size: .76rem; color: var(--muted); margin-top: .2rem; }

.cta-panel {
  text-align: center;
  padding: 2.25rem 1.5rem;
  background: linear-gradient(160deg, var(--primary-faint), var(--primary-light));
  border: 1px solid rgba(26,115,232,.18);
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}
.cta-panel h2 { font-size: 1.15rem; margin-bottom: .9rem; }
.cta-note { font-size: .76rem; color: var(--muted); margin-top: .9rem; }

.similar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: .75rem;
}
.similar-card { padding: 1.1rem 1.15rem; display: flex; flex-direction: column; gap: .5rem; }
.similar-card .similar-name {
  font-weight: 600; color: var(--ink); font-size: .88rem;
  line-height: 1.55; min-height: 2.4em;
}
.similar-card .similar-row { display: flex; justify-content: space-between; align-items: center; gap: .5rem; }
.similar-commission { font-size: .84rem; color: var(--accent-dark); font-weight: 700; font-variant-numeric: tabular-nums; }

/* ── Filters (category page) ────────────────────────────── */
.filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem 1.5rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: .84rem;
  color: var(--muted);
}
.filters label { display: flex; align-items: center; gap: .4rem; }
.filters select {
  font-family: inherit;
  font-size: .84rem;
  padding: .28rem .45rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.filters select:hover { border-color: var(--faint); }
.filters select:focus-visible { border-color: var(--primary); outline: none; box-shadow: var(--focus-ring); }
.filters .result-count { margin-left: auto; font-size: .78rem; color: var(--muted); font-variant-numeric: tabular-nums; }

/* ── Static pages ───────────────────────────────────────── */
.prose { line-height: 1.95; color: var(--muted); max-width: 640px; }
.prose p { margin-bottom: 1.1rem; }
.prose h2 { margin-top: 2.4rem; margin-bottom: .8rem; }
.prose ul { margin: 0 0 1.1rem 1.3rem; padding: 0; }
.prose li { margin-bottom: .35rem; }
.contact-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 1.6rem 0;
}
.contact-box strong { color: var(--ink); word-break: break-all; }

.error-page { text-align: center; padding: 5rem 1rem; }
.error-code { font-size: clamp(3.5rem, 2.5rem + 4vw, 5.5rem); font-weight: 700; line-height: 1; color: var(--primary-strong); letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.error-message { color: var(--muted); margin: 1.25rem 0 2rem; }

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: .4rem;
  font-size: .8rem; color: var(--faint); margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--muted); transition: color .15s var(--ease); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { user-select: none; color: var(--faint); }
.breadcrumb .current { color: var(--ink); font-weight: 600; }

/* ── Badges ─────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: .25rem;
  padding: .28rem .65rem; border-radius: var(--radius-pill);
  font-size: .76rem; font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.badge-free { background: var(--accent-light); color: var(--accent-dark); }
.badge-online { background: var(--primary-light); color: var(--primary-strong); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .header-nav { display: none; }
  .container, .container-narrow { padding: 0 1rem; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card--lead { grid-column: span 1; align-items: flex-start; }
  .hero-inner { padding: 2.5rem 1rem 2.25rem; }
  .hero-stats { gap: 1rem 1.75rem; }
  .stat-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  thead th { font-size: .7rem; padding: .5rem .6rem; }
  tbody td { padding: .6rem .6rem; font-size: .82rem; }
  .name-cell { max-width: 160px; }
  .filters { gap: .5rem 1rem; padding: .85rem 1rem; }
  .filters .result-count { margin-left: 0; }
}
