:root {
  --bg: #f7f8fa;
  --surface: #ffffff;
  --ink: #10192e;
  --body: #3d4759;
  --muted: #69748a;
  --line: #e5e8ee;
  --line-strong: #d6dbe4;
  --brand: #1f4fc4;
  --brand-dark: #17399e;
  --brand-soft: #eef2fc;
  --honey: #f2a93b;
  --honey-deep: #a86e08;
  --danger: #b3372f;
  --danger-soft: #faeceb;
  --ok: #22703f;
  --ok-soft: #e9f4ec;
  --radius: 8px;
  --radius-sm: 6px;
  --shadow: 0 1px 2px rgba(16, 25, 46, 0.05);
  --shadow-lift: 0 1px 2px rgba(16, 25, 46, 0.05), 0 8px 24px rgba(16, 25, 46, 0.06);
}

* { box-sizing: border-box; }

html { font-size: 16px; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  color: var(--ink);
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

p { margin: 0 0 1em; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
code, pre, .mono { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.muted { color: var(--muted); }
.small { font-size: 0.84rem; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.site-nav {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px) saturate(1.4);
  -webkit-backdrop-filter: blur(10px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.site-nav .inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 650;
  font-size: 0.95rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand:hover { text-decoration: none; }
.brand img { width: 22px; height: 22px; display: block; }
.brand .ver {
  font-size: 0.68rem;
  font-weight: 600;
  font-family: ui-monospace, Menlo, Consolas, monospace;
  color: var(--muted);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 0.05rem 0.4rem;
}
.nav-links { display: flex; gap: 1.25rem; align-items: center; }
.nav-links a { color: var(--muted); font-size: 0.875rem; font-weight: 500; }
.nav-links a:hover { color: var(--ink); text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a.btn { color: #fff; }
.nav-links a.btn:hover { color: #fff; }
.nav-spacer { flex: 1; }
.site-nav .btn { padding: 0.4rem 0.9rem; font-size: 0.85rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  line-height: 1.3;
  cursor: pointer;
  text-align: center;
  transition: background 0.12s ease, border-color 0.12s ease;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: linear-gradient(180deg, #2a5cd8 0%, #1e49b8 100%);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 1px 2px rgba(23, 57, 158, 0.3);
}
.btn-primary:hover { background: linear-gradient(180deg, #2352c8, #1a40a8); }
.btn-ghost { background: var(--surface); border-color: var(--line-strong); color: var(--ink); }
.btn-ghost:hover { border-color: var(--muted); }
.btn-danger { background: var(--danger); color: #fff; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }
.btn-block { width: 100%; }

main { max-width: 1120px; margin: 0 auto; padding: 2.5rem 1.5rem 4rem; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.hero-wrap {
  background:
    radial-gradient(900px 420px at 12% -12%, rgba(31, 79, 196, 0.08), transparent 60%),
    radial-gradient(700px 380px at 92% -5%, rgba(242, 169, 59, 0.07), transparent 55%);
  margin: -2.5rem -1.5rem 0;
  padding: 2.5rem 1.5rem 3rem;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 3rem;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.028em;
  margin-bottom: 1.1rem;
}
.hero .accent { color: var(--brand); }
.hero .lede { font-size: 1.07rem; color: var(--muted); max-width: 50ch; margin-bottom: 1.6rem; }
.hero-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }

.stack-badges {
  list-style: none;
  display: flex;
  gap: 0.45rem;
  padding: 0;
  margin: 1.8rem 0 0;
  flex-wrap: wrap;
}
.stack-badges li {
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 0.7rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.15rem 0.45rem;
  background: var(--surface);
}

.mockup {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  box-shadow:
    0 1px 2px rgba(16, 25, 46, 0.06),
    0 24px 48px -18px rgba(16, 25, 46, 0.28);
  overflow: hidden;
  display: grid;
  grid-template-columns: 172px 1fr;
  min-height: 330px;
}
.mock-titlebar {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid var(--line);
  background: #fbfcfe;
  font-size: 0.75rem;
  color: var(--muted);
}
.mock-titlebar .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); }
.mock-titlebar .crumb { font-family: ui-monospace, Menlo, Consolas, monospace; }
.mock-side {
  border-right: 1px solid var(--line);
  padding: 1rem 0.75rem;
  font-size: 0.82rem;
  background: #fafbfd;
}
.mock-side div { padding: 0.35rem 0.6rem; border-radius: 5px; color: var(--muted); }
.mock-side .on { background: var(--brand-soft); color: var(--brand); font-weight: 600; }
.mock-main { padding: 1rem 1.1rem; }
.mock-search {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.65rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.9rem;
  background: #fbfcfe;
}
.mock-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.4rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}
.mock-row:last-child { border-bottom: none; }
.mock-row .f-icon { color: var(--muted); }
.mock-row .f-name {
  color: var(--ink);
  font-weight: 550;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock-row .f-meta {
  color: var(--muted);
  font-size: 0.72rem;
  font-family: ui-monospace, Menlo, Consolas, monospace;
  white-space: nowrap;
}

.section { padding: 3rem 0 0; }
.section-title { font-size: 1.45rem; margin-bottom: 0.4rem; }
.section-sub { color: var(--muted); max-width: 56ch; margin-bottom: 2rem; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem 2rem;
}
.feature .f-ico {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  transition: background 0.15s ease;
}
.feature:hover .f-ico { background: #dde7fb; }
.feature .f-ico svg { width: 19px; height: 19px; display: block; }
.feature h3 { font-size: 0.95rem; margin-bottom: 0.3rem; }
.feature p { font-size: 0.875rem; color: var(--muted); margin: 0; }

.band {
  position: relative;
  overflow: hidden;
  margin-top: 3.5rem;
  background:
    radial-gradient(600px 300px at 88% -30%, rgba(242, 169, 59, 0.16), transparent 60%),
    radial-gradient(500px 260px at 0% 120%, rgba(31, 79, 196, 0.25), transparent 60%),
    var(--ink);
  border-radius: 12px;
  color: #c3cddf;
  padding: 2.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.band h2 { color: #fff; font-size: 1.25rem; margin-bottom: 0.4rem; }
.band p { font-size: 0.9rem; margin: 0; }
.band ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; font-size: 0.875rem; }
.band li { display: flex; gap: 0.55rem; align-items: baseline; }
.band li::before { content: "—"; color: var(--honey); }

.quote {
  max-width: 680px;
  margin: 3.5rem 0 0;
  border-left: 3px solid var(--brand);
  padding-left: 1.6rem;
}
.quote blockquote {
  margin: 0 0 0.8rem;
  font-size: 1.18rem;
  color: var(--ink);
  font-weight: 550;
  line-height: 1.5;
  letter-spacing: -0.012em;
}
.quote figcaption { font-size: 0.84rem; color: var(--muted); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
}
.card h3 { font-size: 1rem; }
.card p { color: var(--muted); font-size: 0.9rem; margin-bottom: 0; }
.stat { text-align: left; }
.stat .num {
  display: block;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.stat .lbl { font-size: 0.8rem; color: var(--muted); }

.grid { display: grid; gap: 1rem; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.table-wrap {
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
table.data { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
table.data caption {
  text-align: left;
  font-weight: 650;
  color: var(--ink);
  padding: 1rem 1.1rem 0.5rem;
  font-size: 0.95rem;
}
table.data th, table.data td {
  text-align: left;
  padding: 0.6rem 1.1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
table.data tbody tr:hover { background: #fafbfd; }
table.data tbody tr:last-child td { border-bottom: none; }
table.data thead th {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  font-weight: 650;
  background: #fafbfd;
}
table.data td.num { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: 0.8rem; }
.table-plain { box-shadow: none; border: none; }

.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 4px;
  padding: 0.12rem 0.5rem;
}
.badge.ok { background: var(--ok-soft); color: var(--ok); }
.badge.warn { background: #fbf3e2; color: var(--honey-deep); }
.badge.off { background: #edeff4; color: var(--muted); }

.login-wrap { max-width: 400px; margin: 3.5rem auto 0; }
.login-card { padding: 1.9rem; box-shadow: var(--shadow-lift); }
.login-card h1 { font-size: 1.25rem; }
.login-brand {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.login-brand img { width: 22px; height: 22px; }
.field { margin-bottom: 0.9rem; }
.field label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--ink); margin-bottom: 0.3rem; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.65rem;
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--surface);
  color: var(--ink);
}
.field input:focus {
  border-color: var(--brand);
  outline: none;
  box-shadow: 0 0 0 3px rgba(31, 79, 196, 0.12);
}
.form-error {
  background: var(--danger-soft);
  color: var(--danger);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  margin-bottom: 0.9rem;
}
.form-hint { font-size: 0.8rem; color: var(--muted); margin-top: 1rem; }

.spinner {
  width: 0.9em; height: 0.9em;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  display: inline-block;
  vertical-align: -0.12em;
  animation: spin 0.7s linear infinite;
  margin-right: 0.45rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

.toast {
  position: fixed;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  box-shadow: var(--shadow-lift);
  z-index: 60;
  animation: rise 0.2s ease;
  max-width: min(92vw, 480px);
}

.admin-shell { display: grid; grid-template-columns: 216px 1fr; min-height: calc(100vh - 61px); }
.admin-side { background: #0d1526; color: #aeb9d2; padding: 1.3rem 0.9rem; }
.admin-side .side-brand {
  color: #fff;
  font-weight: 650;
  font-size: 0.9rem;
  margin-bottom: 1.4rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0 0.6rem;
}
.admin-side nav a, .admin-side nav button {
  display: block;
  width: 100%;
  text-align: left;
  color: #aeb9d2;
  background: none;
  border: none;
  font: inherit;
  font-size: 0.875rem;
  padding: 0.45rem 0.6rem;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 2px;
}
.admin-side nav a:hover, .admin-side nav button:hover { background: rgba(255, 255, 255, 0.07); color: #fff; text-decoration: none; }
.admin-side nav a[aria-current="page"] { background: rgba(242, 169, 59, 0.14); color: var(--honey); }
.admin-main { padding: 1.8rem 2rem; max-width: 920px; }
.admin-main h1 { font-size: 1.3rem; }

.health-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.meter { height: 6px; border-radius: 99px; background: #e9ecf2; overflow: hidden; margin-bottom: 0.8rem; }
.meter span { display: block; height: 100%; border-radius: 99px; background: var(--brand); }
.meter span.warn { background: var(--honey); }
.meter span.crit { background: var(--danger); }

.logline { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: 0.78rem; }
.logline .lv-INFO { color: var(--ok); font-weight: 600; }
.logline .lv-WARN { color: var(--honey-deep); font-weight: 600; }
.logline .lv-ERROR { color: var(--danger); font-weight: 600; }

.changelog-item { border-left: 2px solid var(--line-strong); padding: 0 0 1.8rem 1.4rem; position: relative; }
.changelog-item::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 5px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--brand);
}
.changelog-item.latest::before { border-color: var(--honey); }
.changelog-item h2 { font-size: 1.05rem; margin-bottom: 0.15rem; }
.changelog-item ul { margin: 0.5rem 0 0; padding-left: 1.15rem; color: var(--muted); font-size: 0.9rem; }

.error-hero { text-align: center; padding: 4.5rem 1rem; }
.error-hero .code {
  font-size: 4rem;
  font-weight: 750;
  color: var(--brand);
  opacity: 0.18;
  letter-spacing: -0.04em;
  line-height: 1;
}
.error-hero h1 { font-size: 1.4rem; }
.error-hero p { color: var(--muted); max-width: 44ch; margin: 0.6rem auto 1.4rem; }

.search-results { list-style: none; padding: 0; margin: 1rem 0 0; }
.search-results li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  margin-bottom: 0.6rem;
}
.search-results .r-title { font-weight: 600; color: var(--ink); font-size: 0.9rem; }
.search-results .r-snippet { color: var(--muted); font-size: 0.85rem; }

.mono-page { background: var(--surface); }
.mono-page main { max-width: 860px; }
.mono-page h1 { font-size: 1.4rem; }

.site-footer { border-top: 1px solid var(--line); background: var(--surface); }
.site-footer .inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.2rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.site-footer h3 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.4rem; }
.site-footer a { color: var(--body); font-size: 0.85rem; }
.site-footer a:hover { color: var(--ink); }
.footer-base { border-top: 1px solid var(--line); }
.footer-base .inner {
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.hp-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background:
    radial-gradient(1100px 500px at 50% -10%, rgba(242, 169, 59, 0.25), transparent 60%),
    radial-gradient(800px 400px at 80% 110%, rgba(31, 79, 196, 0.2), transparent 60%),
    rgba(9, 14, 26, 0.88);
  backdrop-filter: blur(6px);
}
.hp-overlay.show { display: flex; }
.hp-card {
  background: linear-gradient(180deg, #141f38 0%, #0d1526 100%);
  color: #e8edf8;
  border: 1px solid rgba(242, 169, 59, 0.32);
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  max-width: 500px;
  width: 100%;
  padding: 2.3rem 2.2rem 2rem;
  text-align: center;
  animation: rise 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.15);
}
.hp-card .bee { font-size: 2.8rem; line-height: 1; display: block; margin-bottom: 0.7rem; }
.hp-card h2 {
  font-size: 1.45rem;
  margin-bottom: 0.7rem;
  background: linear-gradient(90deg, #ffd98a, var(--honey));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hp-card p { color: #aeb9d2; font-size: 0.92rem; }
.hp-card .hp-ref {
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 0.75rem;
  color: #8fa0c6;
  border: 1px dashed rgba(242, 169, 59, 0.4);
  border-radius: 6px;
  display: inline-block;
  padding: 0.35rem 0.8rem;
  margin: 0.3rem 0 1.2rem;
}
.hp-actions { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; }
.hp-card .btn-honey { background: var(--honey); color: #211503; }
.hp-card .btn-honey:hover { background: #ffc35c; }
.hp-card .btn-outline { border-color: rgba(255, 255, 255, 0.25); color: #e8edf8; background: transparent; }
.hp-fineprint { font-size: 0.72rem; color: #7386ad; margin: 1.2rem 0 0; }

@keyframes rise {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.btn-block { width: 100%; }
.page-title { font-size: 1.45rem; }
.page-title-lg { font-size: 1.7rem; }
.prose-measure { max-width: 70ch; }
.mt-05 { margin-top: 0.6rem; }
.mt-1 { margin-top: 1.25rem; }
.mt-15 { margin-top: 1.5rem; }
.mt-2 { margin-top: 2rem; }
.card-gap { margin: 1.5rem 0; }
.mb-0 { margin-bottom: 0; }
.tight { margin-bottom: 0.6rem; }
.card-title-sm { font-size: 1.1rem; }
.muted-list { color: var(--muted); margin: 0; padding-left: 1.2rem; }
.meter-w12 { width: 12%; }
.meter-w70 { width: 70%; }
.meter-w8 { width: 8%; }
.meter-w99 { width: 99%; }
.inline-flex-gap { display: flex; gap: 0.7rem; margin-top: 1.25rem; flex-wrap: wrap; }
.search-form { display: flex; gap: 0.6rem; max-width: 560px; margin-bottom: 1.25rem; }
.search-form .field { flex: 1; margin: 0; }
.search-form .btn { align-self: flex-end; }
.upload-card { display: flex; gap: 0.9rem; align-items: center; flex-wrap: wrap; }
.upload-note { flex-basis: 100%; margin: 0; }
.h-sm { font-size: 1.2rem; }
.table-plain { box-shadow: none; border: none; }

[data-os="windows"] .os-note::after { content: "Windows"; }
[data-os="macos"] .os-note::after { content: "macOS"; }
[data-os="linux"] .os-note::after { content: "Linux"; }
[data-os="android"] .os-note::after { content: "Android"; }
[data-os="ios"] .os-note::after { content: "iOS"; }
[data-os="unknown"] .os-note::after { content: "your platform"; }

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.2rem; }
}
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .band { grid-template-columns: 1fr; }
  .site-footer .inner { grid-template-columns: 1fr 1fr; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-side { display: flex; gap: 0.6rem; align-items: center; overflow-x: auto; }
  .admin-side nav { display: flex; gap: 0.3rem; }
  .mockup { grid-template-columns: 1fr; }
  .mock-side { display: none; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .site-footer .inner { grid-template-columns: 1fr; }
  .site-nav .inner { gap: 1rem; }
  .hero { padding-top: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
}
