/* ==========================================================================
   Dopamine Jailbreak — stylesheet
   Dopamine teal identity. Mono for structure, sans for prose.
   Section order: tokens, reset, type, layout, header, components, pages,
   footer, utilities, motion & print.
   ========================================================================== */

/* --- tokens --------------------------------------------------------------- */

:root {
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, sans-serif;

  --paper: #fbfcfb;
  --paper-2: #f0f4f2;
  --ink: #0a0f0d;
  --ink-2: #4a5550;
  --ink-3: #7a8a84;
  --rule: #d8e4df;
  --rule-2: #c0d4cc;

  --teal: #05AA87;
  --teal-ink: #038a6d;
  --teal-light: #00C4A0;
  --teal-dim: rgba(5,170,135,0.12);
  --teal-glow: rgba(5,170,135,0.25);
  --red: #d63020;
  --amber: #a86a00;

  --measure: 68ch;
  --shell: 1180px;
  --gut: clamp(1.25rem, 4vw, 2.75rem);

  --step-0: 1rem;
  --step-1: 1.13rem;
  --step-2: clamp(1.3rem, 1.1rem + 0.8vw, 1.6rem);
  --step-3: clamp(1.6rem, 1.2rem + 1.7vw, 2.3rem);
  --step-4: clamp(2.1rem, 1.4rem + 3.2vw, 3.6rem);
  --step-5: clamp(2.8rem, 1.8rem + 4.5vw, 5rem);

  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 1px 0 var(--rule-2);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.06);
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #080e0c;
    --paper-2: #101a16;
    --ink: #e8f0ec;
    --ink-2: #9ab0a8;
    --ink-3: #6a857c;
    --rule: #1a2e26;
    --rule-2: #253d33;
    --teal: #05AA87;
    --teal-ink: #00C4A0;
    --teal-light: #00dbb4;
    --teal-dim: rgba(5,170,135,0.10);
    --teal-glow: rgba(5,170,135,0.22);
    --red: #ff6a58;
    --amber: #e0a33a;
    --shadow: 0 1px 0 var(--rule);
    --shadow-card: 0 4px 32px rgba(0,0,0,0.4);
  }
}

/* --- reset ---------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: var(--step-0)/1.65 var(--sans);
  font-synthesis-weight: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--teal-ink); }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 2px; }
hr { border: 0; border-top: 1px solid var(--rule); margin: 2.5rem 0; }

/* --- type ----------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6 { line-height: 1.2; letter-spacing: -0.02em; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
p { max-width: var(--measure); margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
small, .small { font-size: .85rem; }
.muted { color: var(--ink-3); }
.mono { font-family: var(--mono); }
code {
  font-family: var(--mono);
  font-size: .88em;
  background: var(--teal-dim);
  border: 1px solid var(--rule-2);
  border-radius: 3px;
  padding: .1em .35em;
  color: var(--teal);
}
pre {
  font-family: var(--mono);
  font-size: .88rem;
  background: var(--paper-2);
  border: 1px solid var(--rule-2);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  overflow-x: auto;
  line-height: 1.6;
}
pre code { background: none; border: none; padding: 0; font-size: inherit; color: inherit; }

/* --- layout --------------------------------------------------------------- */

.wrapper { max-width: var(--shell); margin-inline: auto; padding-inline: var(--gut); }
.cluster { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.stack > * + * { margin-top: 1rem; }
section { padding-block: clamp(3rem, 7vw, 5.5rem); }

/* --- header / nav --------------------------------------------------------- */

.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,14,12,0.85);
  backdrop-filter: blur(16px) saturate(1.6);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  border-bottom: 1px solid var(--rule);
}
@media (prefers-color-scheme: light) {
  .site-nav { background: rgba(251,252,251,0.88); }
}
.site-nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 58px; gap: 1rem;
}
.site-nav__brand {
  display: flex; align-items: center; gap: .6rem;
  text-decoration: none; font-family: var(--mono); font-weight: 700;
  font-size: 1rem; letter-spacing: -.03em; color: var(--ink);
}
.brand-dot { color: var(--teal); font-size: 1.4rem; line-height: 1; }
.site-nav__links {
  display: flex; gap: .1rem; list-style: none; margin: 0; padding: 0;
}
.site-nav__links a {
  font-family: var(--mono); font-size: .8rem;
  padding: .35rem .7rem; border-radius: var(--radius);
  text-decoration: none; color: var(--ink-2);
  transition: color .15s, background .15s;
}
.site-nav__links a:hover, .site-nav__links a[aria-current] {
  color: var(--teal); background: var(--teal-dim);
}
.nav-cta {
  font-family: var(--mono); font-size: .8rem; font-weight: 600;
  background: var(--teal); color: #fff;
  padding: .4rem .9rem; border-radius: var(--radius);
  text-decoration: none; transition: background .15s, transform .1s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--teal-ink); color: #fff; transform: translateY(-1px); }
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: .4rem; color: var(--ink);
}
.hamburger svg { display: block; }
@media (max-width: 720px) {
  .site-nav__links { display: none; flex-direction: column; gap: 0;
    position: absolute; top: 58px; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--rule);
    padding: .5rem 0;
  }
  .site-nav__links.is-open { display: flex; }
  .site-nav__links a { padding: .7rem var(--gut); border-radius: 0; }
  .hamburger { display: flex; }
}

/* --- hero ----------------------------------------------------------------- */

.hero {
  text-align: center;
  padding-block: clamp(4rem, 10vw, 8rem) clamp(3rem, 7vw, 5.5rem);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, var(--teal-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero__icon {
  width: clamp(72px, 12vw, 110px);
  height: clamp(72px, 12vw, 110px);
  border-radius: 22%;
  background: linear-gradient(135deg, var(--teal) 0%, #00a878 50%, #007a56 100%);
  margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 40px var(--teal-glow), 0 2px 8px rgba(0,0,0,.3);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  animation: iconFloat 4s ease-in-out infinite;
}
@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero__title {
  font-size: var(--step-5); font-weight: 800;
  letter-spacing: -.04em; margin-bottom: .4rem;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal) 60%, #00a878 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-family: var(--mono); font-size: var(--step-1);
  color: var(--ink-3); margin: 0 auto 1.8rem; max-width: 54ch;
}
.hero__compat {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--mono); font-size: .82rem;
  background: var(--teal-dim); border: 1px solid var(--teal);
  border-radius: 99px; padding: .35rem 1rem;
  color: var(--teal); margin-bottom: 2rem;
}
.hero__compat::before { content: '●'; font-size: .5rem; }
.hero__actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* --- buttons -------------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--mono); font-size: .88rem; font-weight: 600;
  padding: .65rem 1.4rem; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer;
  text-decoration: none; transition: all .15s; line-height: 1.2;
  white-space: nowrap;
}
.btn--teal {
  background: var(--teal); color: #fff; border-color: var(--teal);
  box-shadow: 0 4px 20px var(--teal-glow);
}
.btn--teal:hover { background: var(--teal-ink); border-color: var(--teal-ink); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px var(--teal-glow); }
.btn--outline {
  background: transparent; color: var(--ink); border-color: var(--rule-2);
}
.btn--outline:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-dim); }
.btn--ghost {
  background: transparent; color: var(--ink-2); border-color: var(--rule);
  padding: .45rem 1rem; font-size: .8rem;
}
.btn--ghost:hover { color: var(--teal); border-color: var(--teal); background: var(--teal-dim); }
.btn--sm { padding: .4rem .8rem; font-size: .78rem; }
.btn--lg { padding: .85rem 2rem; font-size: 1rem; }

/* --- tag / badge ---------------------------------------------------------- */

.tag {
  display: inline-block; font-family: var(--mono); font-size: .72rem;
  font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  padding: .2em .6em; border-radius: 99px; line-height: 1.4;
}
.tag--ok  { background: rgba(5,170,135,.15); color: var(--teal); border: 1px solid rgba(5,170,135,.35); }
.tag--warn { background: rgba(168,106,0,.12); color: var(--amber); border: 1px solid rgba(168,106,0,.3); }
.tag--no  { background: rgba(214,48,32,.1); color: var(--red); border: 1px solid rgba(214,48,32,.25); }
.tag--new { background: var(--teal-dim); color: var(--teal); border: 1px solid rgba(5,170,135,.35); }

/* --- cards ---------------------------------------------------------------- */

.card {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: border-color .2s, box-shadow .2s;
}
.card:hover { border-color: var(--teal); box-shadow: 0 8px 32px var(--teal-glow); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}

/* --- compat table --------------------------------------------------------- */

.compat-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--rule); }
.compat-table {
  width: 100%; border-collapse: collapse;
  font-family: var(--mono); font-size: .84rem;
}
.compat-table th {
  text-align: left; font-size: .72rem; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink-3);
  padding: .7rem 1rem; border-bottom: 1px solid var(--rule);
  background: var(--paper-2); white-space: nowrap;
}
.compat-table td {
  padding: .7rem 1rem; border-bottom: 1px solid var(--rule);
  vertical-align: middle; color: var(--ink-2);
}
.compat-table tr:last-child td { border-bottom: none; }
.compat-table tr:hover td { background: var(--teal-dim); }

/* --- guide tabs ----------------------------------------------------------- */

.tabs { display: flex; gap: .3rem; border-bottom: 2px solid var(--rule); margin-bottom: 2rem; }
.tab-btn {
  font-family: var(--mono); font-size: .85rem; font-weight: 600;
  padding: .6rem 1.2rem; background: none; border: none; cursor: pointer;
  color: var(--ink-3); border-bottom: 2px solid transparent;
  margin-bottom: -2px; border-radius: var(--radius) var(--radius) 0 0;
  transition: color .15s, border-color .15s, background .15s;
}
.tab-btn:hover { color: var(--teal); background: var(--teal-dim); }
.tab-btn.active { color: var(--teal); border-bottom-color: var(--teal); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* --- guide steps ---------------------------------------------------------- */

.steps { list-style: none; padding: 0; margin: 0; counter-reset: step; }
.step {
  display: flex; gap: 1.2rem;
  counter-increment: step;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--rule);
}
.step:last-child { border-bottom: none; }
.step__num {
  flex-shrink: 0; width: 2.2rem; height: 2.2rem;
  border-radius: 50%;
  background: var(--teal-dim); border: 1.5px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: .82rem; font-weight: 700;
  color: var(--teal);
}
.step__num::before { content: counter(step); }
.step__body h3 { font-size: 1rem; margin-bottom: .4rem; }
.step__body p { color: var(--ink-2); font-size: .92rem; }

/* --- faq accordion -------------------------------------------------------- */

.faq { list-style: none; padding: 0; margin: 0; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 1rem 0; cursor: pointer;
  font-weight: 600; font-size: .95rem;
  background: none; border: none; width: 100%; text-align: left;
  color: var(--ink); transition: color .15s;
}
.faq-q:hover { color: var(--teal); }
.faq-q svg { flex-shrink: 0; transition: transform .25s; color: var(--teal); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { display: none; padding-bottom: 1rem; color: var(--ink-2); font-size: .92rem; }
.faq-item.open .faq-a { display: block; }

/* --- signer -------------------------------------------------------------- */

.signer-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 760px) { .signer-shell { grid-template-columns: 1fr; } }
.signer-panel {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
}
.signer-panel h2 { font-size: 1.1rem; margin-bottom: 1.2rem; }
.drop-zone {
  border: 2px dashed var(--rule-2);
  border-radius: var(--radius);
  padding: 2rem 1rem; text-align: center;
  cursor: pointer; transition: border-color .2s, background .2s;
  color: var(--ink-3); font-size: .9rem;
}
.drop-zone:hover, .drop-zone.over { border-color: var(--teal); background: var(--teal-dim); color: var(--teal); }
.drop-zone input[type=file] { display: none; }
.field-row { margin-bottom: 1rem; }
.field-row label {
  display: block; font-family: var(--mono); font-size: .72rem;
  letter-spacing: .05em; text-transform: uppercase; color: var(--ink-3);
  margin-bottom: .35rem;
}
.field-row input, .field-row select, .field-row textarea {
  width: 100%; font: inherit; font-family: var(--mono); font-size: .85rem;
  color: var(--ink); background: var(--paper);
  border: 1px solid var(--rule-2); border-radius: var(--radius);
  padding: .5rem .7rem; transition: border-color .15s;
}
.field-row input:focus, .field-row select:focus { border-color: var(--teal); outline: none; }
.progress-bar { height: 4px; background: var(--rule); border-radius: 99px; overflow: hidden; margin: 1rem 0; }
.progress-fill { height: 100%; background: var(--teal); border-radius: 99px; transition: width .3s; width: 0; }
.terminal {
  font-family: var(--mono); font-size: .78rem;
  background: #050e0b; color: #7ee8c8;
  border-radius: var(--radius); padding: 1rem;
  min-height: 80px; white-space: pre-wrap; line-height: 1.6;
  border: 1px solid var(--rule);
}

/* --- section labels ------------------------------------------------------- */

.section-label {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--teal); margin-bottom: .5rem;
  display: flex; align-items: center; gap: .5rem;
}
.section-label::before { content: ''; display: block; width: 1.5rem; height: 1px; background: var(--teal); }

/* --- release card --------------------------------------------------------- */

.rel {
  border: 1px solid var(--rule); border-radius: var(--radius-lg);
  padding: 1.2rem 1.4rem; margin-bottom: 1rem;
  background: var(--paper-2);
}
.rel--latest { border-color: var(--teal); box-shadow: 0 0 0 1px var(--teal), inset 0 0 30px var(--teal-dim); }
.rel__head { display: flex; flex-wrap: wrap; gap: .6rem 1rem; align-items: baseline; }
.rel__v { font-family: var(--mono); font-weight: 700; font-size: 1.1rem; color: var(--teal); }
.rel__meta { font-family: var(--mono); font-size: .78rem; color: var(--ink-3); }
.rel__changes { white-space: pre-wrap; font-size: .9rem; color: var(--ink-2); margin: .7rem 0 0; }
.rel__actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }

/* --- feature grid --------------------------------------------------------- */

.feature-icon {
  width: 2.4rem; height: 2.4rem;
  background: var(--teal-dim); border: 1px solid rgba(5,170,135,.3);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: .8rem;
}
.feature-card h3 { font-size: 1rem; margin-bottom: .4rem; }
.feature-card p { font-size: .9rem; color: var(--ink-2); max-width: 30ch; }

/* --- blog card ------------------------------------------------------------ */

.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.2rem; }
.blog-card {
  background: var(--paper-2); border: 1px solid var(--rule); border-radius: var(--radius-lg);
  padding: 1.4rem; text-decoration: none; display: block; color: var(--ink);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.blog-card:hover { border-color: var(--teal); transform: translateY(-3px); box-shadow: var(--shadow-card); color: var(--ink); }
.blog-card__cat { font-family: var(--mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--teal); margin-bottom: .5rem; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: .5rem; line-height: 1.3; }
.blog-card__meta { font-family: var(--mono); font-size: .75rem; color: var(--ink-3); margin-top: .8rem; }

/* --- terminal widget (right-rail) ---------------------------------------- */

.term-widget {
  background: #050e0b; border: 1px solid var(--rule);
  border-radius: var(--radius-lg); padding: 1rem 1.2rem;
  font-family: var(--mono); font-size: .82rem; line-height: 1.7;
}
.term-widget__bar {
  display: flex; gap: .4rem; align-items: center; margin-bottom: .8rem;
  padding-bottom: .6rem; border-bottom: 1px solid #1a2e26;
}
.term-dot { width: 10px; height: 10px; border-radius: 50%; }
.term-dot--r { background: #ff5f57; }
.term-dot--y { background: #febc2e; }
.term-dot--g { background: var(--teal); }
.term-title { color: #4a7060; font-size: .72rem; flex: 1; text-align: center; }
.term-line { color: #7ee8c8; }
.term-line--dim { color: #4a7060; }
.term-line--ok { color: var(--teal); }
.term-line--err { color: #ff6a58; }

/* --- hero status card ----------------------------------------------------- */

.status-card {
  background: #050e0b;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.3rem;
  font-family: var(--mono); font-size: .82rem;
  line-height: 1.8; min-width: 280px;
}
.status-card__dot { color: var(--teal); }
.status-row { display: grid; grid-template-columns: 4ch 1fr; gap: .4rem .8rem; }
.status-key { color: #4a7060; }
.status-val { color: #7ee8c8; }
.status-val--ok { color: var(--teal); }

/* --- pro section ---------------------------------------------------------- */

.plan-card {
  background: var(--paper-2); border: 1px solid var(--rule);
  border-radius: var(--radius-lg); padding: 2rem;
  text-align: center; transition: border-color .2s, box-shadow .2s;
}
.plan-card--featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal), 0 12px 48px var(--teal-glow);
}
.plan-price { font-family: var(--mono); font-size: 2.5rem; font-weight: 800; color: var(--teal); }
.plan-price sup { font-size: 1rem; vertical-align: super; }
.plan-period { font-size: .85rem; color: var(--ink-3); }
.plan-features { list-style: none; padding: 0; margin: 1.2rem 0; text-align: left; }
.plan-features li { padding: .4rem 0; font-size: .9rem; color: var(--ink-2); display: flex; gap: .5rem; align-items: center; }
.plan-features li::before { content: '✓'; color: var(--teal); font-weight: 700; }

/* --- footer --------------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--rule);
  padding-block: 2.5rem;
  font-family: var(--mono); font-size: .8rem; color: var(--ink-3);
}
.site-footer a { color: var(--ink-3); text-decoration: none; }
.site-footer a:hover { color: var(--teal); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: .5rem; }
.footer-brand span { color: var(--teal); }
.footer-col h4 { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .7rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li + li { margin-top: .4rem; }
.footer-bottom { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--rule); display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 400px) { .footer-grid { grid-template-columns: 1fr; } }

/* --- utilities ------------------------------------------------------------ */

.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; }
.text-teal { color: var(--teal); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.w-full { width: 100%; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }

/* --- flash / alerts ------------------------------------------------------- */

.flash {
  padding: .8rem 1.1rem; border-radius: var(--radius);
  border: 1px solid var(--rule); border-left: 3px solid var(--teal);
  background: var(--teal-dim); font-size: .9rem; margin-bottom: 1.2rem;
}
.flash--err { border-left-color: var(--red); background: rgba(214,48,32,.08); }
.flash--warn { border-left-color: var(--amber); background: rgba(168,106,0,.08); }

/* --- motion & print ------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
@media print { .site-nav, .site-footer { display: none; } }
