/* Signs & Symbols — design tokens taken from the approved screen designs.
   Mobile first; the desktop frames appear from 900px up (NFR-08: 360–1920px). */

:root {
  --bg: #050c1c;
  --panel: #0a1630;
  --panel-2: #0d1b3a;
  --field: #112447;
  --chip: #162c56;
  --accent-bg: #0f2f66;
  --border: #27467d;
  --border-strong: #3a63a8;
  --border-accent: #1d5bb5;
  --accent: #2f8bff;
  --accent-mid: #55a6ff;
  --accent-light: #dceeff;
  --accent-pale: #a3d3ff;
  --accent-deep: #0f62d6;
  /* Raw channels, so glows and washes can be mixed at any alpha. */
  --accent-rgb: 47, 139, 255;
  --panel-rgb: 10, 22, 48;
  --glow: 0 0 24px rgba(47, 139, 255, 0.35);
  --text: #e9e9ed;
  --text-70: rgba(233, 233, 237, 0.7);
  --text-55: rgba(233, 233, 237, 0.55);
  --text-45: rgba(233, 233, 237, 0.45);
  --text-40: rgba(233, 233, 237, 0.4);
  --muted: #b0b9ca;
  --hairline: rgba(233, 233, 237, 0.16);
  --hairline-soft: rgba(233, 233, 237, 0.1);
  --radius: 8px;
  --radius-lg: 14px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --tabbar-height: 64px;
}

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

/* Component display rules below would otherwise beat the [hidden] default. */
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  /* Two wide, very low-alpha blue pools: keeps the dark ground from reading
     flat without tinting text or costing contrast. Fixed, so it never scrolls. */
  background-image:
    radial-gradient(900px 520px at 12% -8%, rgba(47, 139, 255, 0.16), transparent 60%),
    radial-gradient(760px 460px at 92% 4%, rgba(15, 98, 214, 0.14), transparent 62%);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-pale); text-decoration: none; }
a:hover { color: var(--accent-light); }
::selection { background: rgba(var(--accent-rgb), 0.35); color: #fff; }
:focus-visible { outline: 2px solid var(--accent-mid); outline-offset: 2px;
  border-radius: 4px; box-shadow: var(--glow); }

h1, h2, h3, h4 { font-weight: 500; letter-spacing: -0.015em; line-height: 1.15; }
h1 { font-size: 28px; }
h2 { font-size: 24px; }
h3 { font-size: 19px; }
p { text-wrap: pretty; }

img, svg { max-width: 100%; }

/* ── Layout ─────────────────────────────────────────────────────────────── */
.shell { min-height: 100dvh; display: flex; flex-direction: column; }
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 16px; }
.page { flex: 1; padding: 20px 0 calc(var(--tabbar-height) + 28px); }
@media (min-width: 900px) { .page { padding-bottom: 64px; } }

.panel {
  background: var(--panel);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 0 1px var(--border-strong);
  overflow: hidden;
}
.panel--flat { box-shadow: 0 0 0 1px var(--border); background: var(--panel-2); }
.panel__body { padding: 16px; }
@media (min-width: 900px) { .panel__body { padding: 22px; } }

.stack { display: flex; flex-direction: column; gap: 16px; }
.stack--sm { gap: 8px; }
.stack--lg { gap: 24px; }
.row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.row--between { justify-content: space-between; }
.push { margin-left: auto; }
.hairline { height: 1px; background: linear-gradient(to right, var(--hairline), transparent); }

/* ── Header ─────────────────────────────────────────────────────────────── */
.masthead {
  position: sticky; top: 0; z-index: 40;
  background: rgba(var(--panel-rgb), 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}
.masthead__inner { display: flex; align-items: center; gap: 12px; padding: 10px 16px; max-width: 1280px; margin: 0 auto; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); font-weight: 500; font-size: 15px; }
.brand:hover { color: var(--text); }
.brand__mark { width: 20px; height: 20px; border-radius: 5px; flex: none;
  background: linear-gradient(140deg, var(--accent-mid), var(--accent-deep));
  box-shadow: var(--glow); }
.mainnav { display: none; gap: 18px; font-size: 13px; color: var(--text-55); margin-left: 8px; }
.mainnav a { color: var(--text-55); }
.mainnav a:hover, .mainnav a.is-active { color: var(--accent-light); }
@media (min-width: 900px) { .mainnav { display: flex; } }

.avatar {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  background: var(--accent-bg); box-shadow: 0 0 0 1px var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--accent-light);
}

/* ── Search field ───────────────────────────────────────────────────────── */
.searchbar { display: flex; align-items: center; gap: 8px; background: var(--field);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 9px 12px; width: 100%; }
.searchbar:focus-within { border-color: var(--accent); }
.searchbar input { flex: 1; background: none; border: 0; color: var(--text); font: inherit; font-size: 16px; min-width: 0; }
.searchbar input::placeholder { color: var(--text-45); }
.searchbar input:focus { outline: none; }
.masthead .searchbar { display: none; max-width: 420px; }
@media (min-width: 900px) {
  .masthead .searchbar { display: flex; margin-left: auto; }
  /* The masthead already carries a search field on wide screens. */
  .searchbar--page { display: none; }
}

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 16px; border-radius: var(--radius);
  border: 1px solid var(--border); background: transparent; color: var(--muted);
  font: inherit; font-size: 14px; font-weight: 500; cursor: pointer;
  min-height: 44px; /* comfortable touch target */
  text-align: center;
}
.btn:hover { border-color: var(--border-strong); color: var(--text); }
.btn--primary { border-color: var(--accent); background: rgba(var(--accent-rgb), 0.18);
  color: var(--accent-light); box-shadow: 0 0 0 1px rgba(var(--accent-rgb), 0.25); }
.btn--primary:hover { background: rgba(var(--accent-rgb), 0.32); color: #fff;
  box-shadow: var(--glow); }
.btn--ghost { border-color: transparent; }
.btn--danger { border-color: #7a3b3f; color: #f0b4b4; }
.btn--danger:hover { background: rgba(122, 59, 63, 0.25); color: #f6cccc; }
.btn--sm { padding: 6px 12px; font-size: 12.5px; min-height: 36px; }
.btn--full { width: 100%; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }

/* ── Chips, tags, badges ────────────────────────────────────────────────── */
.tag { display: inline-flex; align-items: center; gap: 6px; padding: 3px 9px;
  border-radius: 4px; font-size: 12px; background: var(--chip); color: var(--muted);
  box-shadow: 0 0 0 1px var(--border); white-space: nowrap; }
.tag--accent { background: var(--accent-bg); color: var(--accent-light); box-shadow: 0 0 0 1px var(--border-accent); }
.tag--mono { font-family: var(--mono); font-size: 11.5px; }
a.tag:hover { color: var(--accent-light); box-shadow: 0 0 0 1px var(--border-strong); }

.eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent-mid); }
.eyebrow--muted { color: var(--text-45); }
.meta { font-size: 12px; color: var(--text-40); }
.muted { color: var(--text-55); }
.mono { font-family: var(--mono); }

.segmented { display: inline-flex; gap: 2px; padding: 3px; background: var(--field);
  border-radius: var(--radius); box-shadow: 0 0 0 1px var(--border); }
.segmented a, .segmented button { padding: 6px 12px; border-radius: 6px; font-size: 12.5px;
  color: var(--text-55); border: 0; background: none; font: inherit; cursor: pointer; }
.segmented .is-active { background: var(--accent-bg); color: var(--accent-light); }

/* ── Cards and lists ────────────────────────────────────────────────────── */
.card { padding: 14px; border-radius: var(--radius); background: var(--field);
  box-shadow: 0 0 0 1px var(--border); display: flex; flex-direction: column; gap: 8px; }
.card--link { color: inherit; }
.card--link:hover { box-shadow: 0 0 0 1px var(--border-strong); color: inherit; }
.card--accent { box-shadow: 0 0 0 1px var(--accent-deep); }
@media (min-width: 900px) { .card { padding: 17px; } }

.result__title { font-size: 19px; font-weight: 500; letter-spacing: -0.01em; }
@media (min-width: 900px) { .result__title { font-size: 20px; } }

.grid { display: grid; gap: 10px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 700px) { .grid--4 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 900px) {
  .grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ── Two-column app layout (sidebar filters) ────────────────────────────── */
.with-rail { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 900px) {
  .with-rail { grid-template-columns: 236px 1fr; }
  .with-rail > .railcol { border-right: 1px solid var(--hairline); }
}
.rail { padding: 16px; display: flex; flex-direction: column; gap: 20px; }
.rail__group { display: flex; flex-direction: column; gap: 9px; }
.filter { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--text-70);
  cursor: pointer; min-height: 32px; }
.filter input { position: absolute; opacity: 0; width: 0; height: 0; }
.filter__box { width: 15px; height: 15px; border-radius: 4px; border: 1px solid var(--border-strong);
  flex: none; display: inline-block; }
.filter__box--round { border-radius: 50%; }
.filter input:checked + .filter__box { background: var(--accent-bg); border-color: var(--accent); }
.filter input:focus-visible + .filter__box { outline: 2px solid var(--accent); outline-offset: 2px; }
.filter__count { margin-left: auto; font-size: 11px; color: var(--text-40); }

/* Filters collapse behind a disclosure below 900px and are always open above it.
   A checkbox drives it so the panel works with JavaScript switched off. */
.rail-toggle { display: flex; flex-direction: column; gap: 2px; cursor: pointer;
  padding: 14px 16px; border-bottom: 1px solid var(--hairline); }
.railcol > .rail { display: none; }
.rail-check:checked ~ .rail { display: flex; }
.rail-toggle__caret { color: var(--text-45); transition: transform 0.15s ease; }
.rail-check:checked ~ .rail-toggle .rail-toggle__caret { transform: rotate(180deg); }
.rail-toggle > .row { width: 100%; }
@media (min-width: 900px) {
  .rail-toggle { display: none; }
  .railcol > .rail { display: flex; }
}

/* ── Symbol page bands (design 04) ──────────────────────────────────────── */
.band { display: grid; grid-template-columns: 1fr; gap: 12px; padding: 20px 16px;
  border-bottom: 1px solid var(--hairline); }
.band:last-child { border-bottom: 0; }
.band--hero { background: linear-gradient(140deg, #123166, #0a1630 62%); }
.band__label { display: flex; flex-direction: column; gap: 6px; }
@media (min-width: 900px) {
  .band { grid-template-columns: 200px 1fr; gap: 32px; padding: 32px 22px; }
}
.symbol-title { font-size: 32px; font-weight: 500; letter-spacing: -0.02em; line-height: 1.05; }
@media (min-width: 900px) { .symbol-title { font-size: 42px; } }

/* A meaning stacks on a phone and sets the attribution beside it on a desktop. */
.meaning { display: grid; grid-template-columns: auto 1fr; gap: 4px 12px; align-items: start; }
.meaning__n { font-size: 11px; color: var(--accent-mid); padding-top: 5px; }
.meaning__body { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.meaning__title { font-size: 18px; font-weight: 500; }
.meaning__exposition { font-size: 14px; line-height: 1.6; color: var(--text-70); max-width: 660px; }
.meaning__by { grid-column: 2; display: flex; gap: 10px; padding-top: 4px; }
@media (min-width: 760px) {
  .meaning { grid-template-columns: auto 1fr auto; gap: 16px; }
  .meaning__title { font-size: 19px; }
  .meaning__by { grid-column: auto; flex-direction: column; gap: 4px; text-align: right;
    padding-top: 0; white-space: nowrap; }
}

.verse-row { display: grid; grid-template-columns: 1fr; gap: 6px; padding: 14px 0;
  border-bottom: 1px solid var(--hairline-soft); }
.verse-row:last-child { border-bottom: 0; }
@media (min-width: 900px) {
  .verse-row { grid-template-columns: 160px 1fr 120px; gap: 18px; align-items: start; }
  .verse-row__meaning { text-align: right; }
}

/* ── Forms ──────────────────────────────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 6px; }
.field > label, .label { font-size: 12px; letter-spacing: 0.02em; color: var(--text-55); }
.req { color: var(--accent-mid); }
input[type="text"], input[type="email"], input[type="password"], input[type="number"],
input[type="search"], input[type="url"], select, textarea {
  background: var(--field); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 11px 12px; font: inherit; font-size: 16px; color: var(--text); width: 100%;
  appearance: none; min-height: 44px;
}
textarea { min-height: 88px; line-height: 1.55; resize: vertical; }
select {
  background-image: linear-gradient(45deg, transparent 50%, var(--text-45) 50%),
                    linear-gradient(135deg, var(--text-45) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 34px;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); }
input::placeholder, textarea::placeholder { color: var(--text-40); }
.help { font-size: 11.5px; line-height: 1.5; color: var(--text-40); }
.errorlist { list-style: none; display: flex; flex-direction: column; gap: 4px;
  font-size: 12.5px; color: var(--accent-pale); }
.field--error input, .field--error select, .field--error textarea { border-color: #a6c9fc; }
.checkline { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--text-70); }
.checkline input[type="checkbox"] { width: 18px; height: 18px; min-height: 0; accent-color: var(--accent); flex: none; margin-top: 1px; }

/* ── Notices ────────────────────────────────────────────────────────────── */
.notice { display: flex; gap: 10px; padding: 12px 14px; border-radius: var(--radius);
  background: var(--field); box-shadow: 0 0 0 1px var(--border);
  font-size: 13px; line-height: 1.5; color: var(--text-70); }
.notice__icon { flex: none; color: var(--accent-mid); margin-top: 1px; }
.notice--accent { background: var(--accent-bg); box-shadow: 0 0 0 1px var(--accent-deep); color: #e4effe; }
.notice--accent .notice__icon { color: var(--accent-pale); }
.notice--error { background: #241722; box-shadow: 0 0 0 1px #6d3a4a; color: #f4d5dd; }
.notice--error .notice__icon { color: #f0a8bb; }
.notice--success { background: #14251f; box-shadow: 0 0 0 1px #2f5c4a; color: #d3efe2; }
.notice--success .notice__icon { color: #7fd0ab; }

/* ── Tables ─────────────────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; }
.dtable { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 560px; }
.dtable th { text-align: left; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-45); font-weight: 400;
  padding: 0 14px 8px; border-bottom: 1px solid var(--hairline); white-space: nowrap; }
.dtable td { padding: 12px 14px; border-bottom: 1px solid var(--hairline-soft); vertical-align: middle; }
.dtable tr:hover td { background: var(--panel-2); }

/* Stacked table rows on small screens */
.stacklist { display: flex; flex-direction: column; gap: 10px; }

/* ── A–Z index ──────────────────────────────────────────────────────────── */
.letterbar { display: flex; gap: 4px; flex-wrap: wrap; }
.letterbar a { width: 34px; height: 34px; border-radius: 4px; display: flex;
  align-items: center; justify-content: center; font-family: var(--mono); font-size: 12.5px;
  background: var(--field); color: var(--muted); box-shadow: 0 0 0 1px var(--border); }
.letterbar a:hover, .letterbar a.is-active { color: var(--accent-light); box-shadow: 0 0 0 1px var(--border-accent); }
.az-group { display: grid; grid-template-columns: 1fr; gap: 10px; padding-top: 8px; }
@media (min-width: 700px) { .az-group { grid-template-columns: 64px 1fr; gap: 18px; } }
.az-letter { font-size: 28px; font-weight: 500; color: var(--accent-deep); font-family: var(--mono); line-height: 1; }

/* ── Contribute editor ──────────────────────────────────────────────────── */
.editor { display: grid; grid-template-columns: 1fr; }
@media (min-width: 1000px) {
  .editor { grid-template-columns: 1fr 300px; }
  .editor > .editor__rail { border-left: 1px solid var(--hairline); }
}
.editor__main { padding: 16px; display: flex; flex-direction: column; gap: 20px; }
.editor__rail { padding: 16px; display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 900px) { .editor__main, .editor__rail { padding: 22px; } }

.meaning-card { padding: 14px; border-radius: var(--radius); background: var(--field);
  box-shadow: 0 0 0 1px var(--border); display: flex; flex-direction: column; gap: 12px; }
.meaning-card.has-error { box-shadow: 0 0 0 1px var(--accent-deep); }
.meaning-card input, .meaning-card select, .meaning-card textarea { background: var(--panel-2); }
.ref-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; align-items: start; }
@media (min-width: 620px) { .ref-row { grid-template-columns: 1.6fr 0.7fr 0.7fr 0.7fr 40px; align-items: center; } }
/* Below 620px the remove control sits on its own row, right aligned. */
.ref-row .ref-remove { grid-column: span 2; justify-self: end; }
@media (min-width: 620px) { .ref-row .ref-remove { grid-column: auto; justify-self: auto; } }
.btn--dashed { border-style: dashed; color: var(--text-55); }
.ref-remove__label { font-size: 12px; }
@media (min-width: 620px) { .ref-remove__label { display: none; } }

.checkitem { display: flex; gap: 9px; align-items: flex-start; font-size: 13px;
  line-height: 1.5; color: var(--text-70); }
.checkitem__icon { flex: none; margin-top: 1px; }
.checkitem--ok .checkitem__icon { color: var(--accent-mid); }
.checkitem--error .checkitem__icon { color: var(--accent-pale); }

/* ── Mobile tab bar (design 10) ─────────────────────────────────────────── */
.tabbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: flex; gap: 4px; padding: 6px 10px calc(6px + env(safe-area-inset-bottom));
  background: rgba(var(--panel-rgb), 0.94); backdrop-filter: blur(10px);
  border-top: 1px solid var(--hairline);
}
.tabbar a { flex: 1; height: 52px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 3px;
  color: var(--text-45); font-size: 10.5px; }
.tabbar a.is-active { color: var(--accent-mid); text-shadow: 0 0 12px rgba(var(--accent-rgb), 0.6); }
@media (min-width: 900px) { .tabbar { display: none; } }

/* ── Auth split (design 01) ─────────────────────────────────────────────── */
.auth { display: grid; grid-template-columns: 1fr; }
@media (min-width: 940px) { .auth { grid-template-columns: 1.05fr 1fr; } }
.auth__pitch { padding: 28px 20px; display: flex; flex-direction: column; gap: 24px;
  background: linear-gradient(150deg, #123166, #0a1630 65%); }
.auth__form { padding: 24px 20px; display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 940px) {
  .auth__pitch { padding: 56px 48px; justify-content: space-between; }
  .auth__form { padding: 56px 48px; border-left: 1px solid var(--hairline); }
}
.rule-accent { height: 1px; width: 100%;
  background: linear-gradient(to right, var(--accent), rgba(var(--accent-rgb), 0)); }

/* ── Empty state ────────────────────────────────────────────────────────── */
.empty { padding: 56px 16px; display: flex; flex-direction: column; align-items: center;
  gap: 16px; text-align: center; }
.empty__mark { width: 56px; height: 56px; border-radius: 14px; background: var(--panel-2);
  box-shadow: 0 0 0 1px var(--border-accent); display: flex; align-items: center;
  justify-content: center; color: var(--accent-mid); }

/* ── Pagination ─────────────────────────────────────────────────────────── */
.pager { display: flex; gap: 8px; align-items: center; justify-content: center; padding-top: 8px; }

/* ── Long-form legal copy ───────────────────────────────────────────────── */
.legal { max-width: 68ch; }
.legal h2 { font-size: 16px; font-weight: 500; color: var(--text); margin-top: 10px; }
.legal p { font-size: 14.5px; line-height: 1.7; color: var(--text-70); }
.legal ul { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 6px;
  font-size: 14.5px; line-height: 1.65; color: var(--text-70); }
.legal strong { color: var(--text); font-weight: 500; }

/* ── Site footer ────────────────────────────────────────────────────────── */
.sitefoot { border-top: 1px solid var(--hairline); margin-top: auto;
  padding: 18px 0 calc(var(--tabbar-height) + 18px); }
@media (min-width: 900px) { .sitefoot { padding-bottom: 24px; } }
.sitefoot__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px;
  font-size: 12.5px; color: var(--text-45); }
.sitefoot a { color: var(--text-55); }
.sitefoot a:hover { color: var(--accent-light); }
.sitefoot__note { flex-basis: 100%; max-width: 70ch; line-height: 1.6; }

/* ── Terms acceptance gate ──────────────────────────────────────────────── */
.gate { position: fixed; inset: 0; z-index: 200; display: flex;
  align-items: center; justify-content: center; padding: 16px;
  background: rgba(3, 8, 20, 0.86); backdrop-filter: blur(6px);
  overflow-y: auto; }
.gate__card { width: 100%; max-width: 520px; background: var(--panel);
  border-radius: var(--radius); box-shadow: 0 0 0 1px var(--border-accent),
  0 24px 60px rgba(0, 0, 0, 0.5); padding: 24px; display: flex;
  flex-direction: column; gap: 12px; margin: auto; }
.gate__card p { font-size: 14px; line-height: 1.65; color: var(--text-70); }
.gate__card strong { color: var(--text); font-weight: 500; }
.gate__actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
/* Stop the page behind the gate scrolling while it is up. */
body.has-terms-gate { overflow: hidden; }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 12px; top: 12px; z-index: 100; padding: 10px 14px;
  background: var(--panel); border-radius: var(--radius); box-shadow: 0 0 0 1px var(--accent); }

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

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
