/* ============================================================
   GPL Hub — Local governance dashboard
   ============================================================ */

:root {
  --bg-0: #0a0d14;
  --bg-1: #10141d;
  --bg-2: #161b27;
  --bg-3: #1c2231;
  --border: #262c3c;
  --border-soft: #1d2230;
  --text: #e7eaf2;
  --text-muted: #8a93a8;
  --text-dim: #5e6680;
  --accent: #c97b3a;
  --accent-2: #e08a45;
  --accent-soft: rgba(201, 123, 58, 0.14);
  --accent-glow: rgba(201, 123, 58, 0.45);
  --teal: #2dd4bf;
  --violet: #a78bfa;
  --pink: #f472b6;
  --green: #4ade80;
  --amber: #fbbf24;
  --red: #f87171;
  --blue: #60a5fa;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.45);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] {
  --bg-0: #f6f7fb;
  --bg-1: #ffffff;
  --bg-2: #f1f3fa;
  --bg-3: #e7ebf4;
  --border: #d8deeb;
  --border-soft: #e7ebf4;
  --text: #1a1f2c;
  --text-muted: #5a6478;
  --text-dim: #8892a8;
  --accent: #b56826;
  --accent-2: #c97b3a;
  --accent-soft: rgba(181, 104, 38, 0.12);
  --accent-glow: rgba(181, 104, 38, 0.35);
  --shadow-sm: 0 2px 8px rgba(20, 30, 60, 0.06);
  --shadow-md: 0 8px 24px rgba(20, 30, 60, 0.10);
  --shadow-lg: 0 24px 48px rgba(20, 30, 60, 0.14);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg-0);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-2); }

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88em;
  background: var(--bg-2);
  padding: 0.12em 0.4em;
  border-radius: 4px;
  border: 1px solid var(--border-soft);
}

h1, h2, h3 { margin: 0; font-weight: 700; letter-spacing: -0.01em; }

/* ---------- Background orbs ---------- */
.bg-orbs {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.orb-1 { width: 480px; height: 480px; background: var(--accent); top: -160px; left: -160px; }
.orb-2 { width: 380px; height: 380px; background: var(--violet); top: 40%; right: -120px; }
.orb-3 { width: 420px; height: 420px; background: var(--teal); bottom: -180px; left: 30%; opacity: 0.22; }
[data-theme="light"] .orb { opacity: 0.18; }

/* ---------- Top bar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 28px;
  background: color-mix(in srgb, var(--bg-1) 75%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  font-weight: 800; font-size: 13px; letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 6px 18px var(--accent-glow);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-title { font-weight: 700; font-size: 15px; }
.brand-sub { font-size: 11.5px; color: var(--text-muted); }

.topnav { display: flex; gap: 22px; }
.topnav a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.topnav a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 2px; background: var(--accent);
  transition: right var(--transition);
}
.topnav a:hover { color: var(--text); }
.topnav a:hover::after { right: 0; }

.topbar-actions { display: flex; align-items: center; gap: 10px; }

.icon-btn {
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text);
  width: 36px; height: 36px;
  border-radius: 10px;
  cursor: pointer;
  display: grid; place-items: center;
  transition: all var(--transition);
}
.icon-btn:hover { border-color: var(--accent); color: var(--accent); }
.icon-sun, .icon-moon { display: none; }
[data-theme="dark"] .icon-sun { display: block; }
[data-theme="light"] .icon-moon { display: block; }

/* ---------- Layout ---------- */
main {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 28px 64px;
}

.section-title {
  font-size: 22px;
  margin-bottom: 16px;
}
.muted { color: var(--text-muted); }
.small { font-size: 13.5px; }

/* ---------- Hero ---------- */
.hero { padding: 32px 0 56px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.eyebrow {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  background: linear-gradient(135deg, var(--text) 30%, var(--accent) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 18px;
}
.lede {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 60ch;
  margin: 0 0 28px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0 0 22px;
  color: var(--text-muted);
  font-size: 13.5px;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero-meta svg { color: var(--accent); }

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}
.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 6px 18px var(--accent-glow);
}
.btn.primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px var(--accent-glow); color: #fff; }
.btn.ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn.ghost:hover { background: var(--bg-2); border-color: var(--accent); color: var(--accent); }

.hero-card {
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(420px circle at 100% 0%, var(--accent-soft), transparent 60%);
  pointer-events: none;
}
.card-title {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--accent);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero-card p { color: var(--text-muted); margin: 0 0 12px; }
.hero-card p:last-child { margin-bottom: 0; }
.hero-card strong { color: var(--text); }
.hero-card em { color: var(--accent-2); font-style: normal; }

/* ---------- Stack chips ---------- */
.stack { padding: 8px 0 36px; }
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}
.chip:hover { border-color: var(--accent); transform: translateY(-1px); }
.chip .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.chip.cat-cloud .dot { background: var(--blue); box-shadow: 0 0 8px var(--blue); }
.chip.cat-data .dot { background: var(--teal); box-shadow: 0 0 8px var(--teal); }
.chip.cat-lang .dot { background: var(--violet); box-shadow: 0 0 8px var(--violet); }
.chip.cat-viz .dot { background: var(--pink); box-shadow: 0 0 8px var(--pink); }
.chip.cat-tool .dot { background: var(--amber); box-shadow: 0 0 8px var(--amber); }

/* ---------- Projects head ---------- */
.projects { padding-top: 24px; }
.projects-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.stat {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  min-width: 90px;
}
.stat-num {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.stat-lbl {
  font-size: 11.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.stat.accent .stat-num { color: var(--accent); }

/* ---------- Toolbar ---------- */
.toolbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding: 10px;
  background: var(--bg-1);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
}
.filters { display: inline-flex; gap: 4px; padding: 4px; background: var(--bg-2); border-radius: 10px; border: 1px solid var(--border-soft); }
.pill {
  background: transparent;
  border: 0;
  color: var(--text-muted);
  padding: 7px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  transition: all var(--transition);
}
.pill:hover { color: var(--text); }
.pill.active {
  background: var(--bg-3);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-2);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 8px 12px;
  color: var(--text-muted);
}
.search:focus-within { border-color: var(--accent); color: var(--accent); }
.search input {
  background: transparent;
  border: 0;
  outline: none;
  color: var(--text);
  width: 100%;
  font-size: 14px;
  font-family: inherit;
}
.search input::placeholder { color: var(--text-dim); }

.sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.sort select {
  background: var(--bg-2);
  border: 1px solid var(--border-soft);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 10px;
  font-family: inherit;
  font-size: 13.5px;
  cursor: pointer;
}
.sort select:focus { outline: none; border-color: var(--accent); }

/* ---------- Grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  animation: fadeUp 380ms cubic-bezier(0.4, 0, 0.2, 1) both;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 0%), var(--accent-soft), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.card:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: var(--shadow-md); }
.card:hover::before { opacity: 1; }

.card-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.mono {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}
.card-title-wrap { flex: 1; min-width: 0; }
.card h3 {
  font-size: 16.5px;
  margin: 0 0 4px;
  line-height: 1.25;
}
.card-id {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11.5px;
  color: var(--text-dim);
}

.badges {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-top: 4px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid var(--border);
  background: var(--bg-3);
  color: var(--text-muted);
}
.badge.public { color: var(--green); border-color: color-mix(in srgb, var(--green) 30%, var(--border)); background: color-mix(in srgb, var(--green) 8%, var(--bg-3)); }
.badge.private { color: var(--violet); border-color: color-mix(in srgb, var(--violet) 30%, var(--border)); background: color-mix(in srgb, var(--violet) 8%, var(--bg-3)); }
.badge.live { color: var(--teal); border-color: color-mix(in srgb, var(--teal) 30%, var(--border)); background: color-mix(in srgb, var(--teal) 8%, var(--bg-3)); }
.badge.wip { color: var(--amber); border-color: color-mix(in srgb, var(--amber) 30%, var(--border)); background: color-mix(in srgb, var(--amber) 8%, var(--bg-3)); }
.badge.draft { color: var(--text-muted); }
.badge .ld { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.card p.desc {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
  flex: 1;
}

.tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.tag {
  font-size: 11.5px;
  padding: 3px 9px;
  border-radius: 6px;
  background: var(--bg-3);
  color: var(--text-muted);
  border: 1px solid var(--border-soft);
  font-weight: 500;
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed var(--border-soft);
  padding-top: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.open-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
}
.card:hover .open-link svg { transform: translateX(3px); }
.open-link svg { transition: transform var(--transition); }

/* Multi-version cards: outer <div>, action links per version */
.card.has-versions { cursor: default; }
.card.has-versions:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: var(--shadow-md); }
.card-versions {
  display: grid;
  gap: 8px;
  border-top: 1px dashed var(--border-soft);
  padding-top: 12px;
  margin-top: 4px;
}
.version-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--bg-3);
  border: 1px solid var(--border-soft);
  color: var(--text);
  text-decoration: none;
  transition: all var(--transition);
}
.version-link:hover {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, var(--bg-3));
  color: var(--text);
  transform: translateX(2px);
}
.version-link:hover svg { transform: translateX(3px); }
.version-link svg { color: var(--accent); transition: transform var(--transition); flex-shrink: 0; }
.version-text { display: flex; flex-direction: column; min-width: 0; }
.version-label { font-size: 13.5px; font-weight: 600; color: var(--text); }
.version-tag { font-size: 11.5px; color: var(--text-muted); margin-top: 1px; }

/* When project has no index.html, mark it disabled */
.card.disabled { cursor: not-allowed; opacity: 0.7; }
.card.disabled:hover { transform: none; border-color: var(--border); box-shadow: none; }
.card.disabled .open-link { color: var(--text-dim); }

.empty {
  text-align: center;
  padding: 48px 16px;
  color: var(--text-muted);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}
.hidden { display: none; }

/* ---------- Footer ---------- */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-soft);
  background: var(--bg-1);
  padding: 40px 28px 24px;
  margin-top: 48px;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.footer h3 {
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.contact-list li { display: flex; gap: 12px; align-items: baseline; }
.contact-label {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  min-width: 60px;
  letter-spacing: 0.04em;
}
.footer p { margin: 0; }
.footer-bottom {
  max-width: 1280px;
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
  text-align: center;
  color: var(--text-dim);
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .topnav { display: none; }
  .toolbar { grid-template-columns: 1fr; }
  .projects-head { align-items: flex-start; }
}
@media (max-width: 560px) {
  main { padding: 20px 16px 48px; }
  .topbar { padding: 12px 16px; }
  .footer { padding: 32px 16px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 16px 0 36px; }
}

/* ---------- Experience timeline ---------- */
.experience { padding-top: 36px; }
.experience .section-title { margin-bottom: 6px; }

.timeline {
  position: relative;
  padding: 28px 0 8px 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), transparent);
  opacity: 0.5;
}
.t-item {
  position: relative;
  padding-left: 44px;
  padding-bottom: 24px;
  animation: fadeUp 380ms cubic-bezier(0.4, 0, 0.2, 1) both;
}
.t-item:last-child { padding-bottom: 0; }
.t-dot {
  position: absolute;
  left: 5px;
  top: 12px;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 4px solid var(--bg-0);
  box-shadow: 0 0 0 1px var(--border);
}
.t-card {
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: border-color var(--transition), transform var(--transition);
}
.t-card:hover { border-color: var(--accent); transform: translateX(2px); }
.t-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 8px; flex-wrap: wrap; gap: 8px; }
.t-head h3 { font-size: 18px; }
.t-meta { color: var(--text-muted); font-size: 13px; }

.t-roles { display: flex; flex-direction: column; gap: 16px; }
.role { padding-top: 10px; border-top: 1px dashed var(--border-soft); }
.role:first-child { border-top: 0; padding-top: 0; }
.role-head { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; flex-wrap: wrap; margin-bottom: 6px; }
.role-head h4 {
  font-size: 14.5px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.role-head .badge { text-transform: none; letter-spacing: 0; }
.role-period { font-size: 12.5px; color: var(--text-dim); font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.role-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.role-bullets li {
  position: relative;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}
.role-bullets li::before {
  content: "";
  position: absolute;
  left: 4px; top: 9px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

/* ---------- Education + Certifications ---------- */
.edu-certs {
  padding-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.edu-list, .cert-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.edu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.edu-item:hover { border-color: var(--accent); }
.edu-item div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.edu-item strong { font-size: 14.5px; color: var(--text); }
.edu-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  flex-shrink: 0;
}

.cert-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  transition: border-color var(--transition);
}
.cert-item:hover { border-color: var(--accent); }
.cert-bullet {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--green) 14%, var(--bg-3));
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 900px) {
  .edu-certs { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition: none !important; }
}
