/* ==========================================================================
   onlineshops-seo.de
   Palette: Papierweiß / Tinte / Kobalt
   Display: Bricolage Grotesque · Text: IBM Plex Sans · Daten: IBM Plex Mono
   ========================================================================== */

/* ---------- Fonts (lokal gehostet, DSGVO-konform) ---------- */
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(fonts/BricolageGrotesque-400_800-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(fonts/BricolageGrotesque-400_800-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(fonts/IBMPlexSans-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(fonts/IBMPlexSans-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/IBMPlexMono-400-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(fonts/IBMPlexMono-500-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/IBMPlexMono-400-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Tokens ---------- */
:root {
  --paper: #fbfbf9;
  --panel: #f2f3ef;
  --ink: #101315;
  --muted: #667075;
  --line: #e3e5e0;
  --accent: #1b3be8;
  --accent-soft: #eaedff;

  --display: 'Bricolage Grotesque', 'Trebuchet MS', sans-serif;
  --body: 'IBM Plex Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --wrap: 1240px;
  --gap: clamp(1.25rem, 3vw, 2.5rem);
  --radius: 14px;
  --section-space: clamp(4rem, 9vw, 7.5rem);
  --header-h: 74px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.5rem);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: .75rem 1.25rem;
  z-index: 999;
}
.skip:focus { left: 0; }

/* ---------- Typo-Bausteine ---------- */
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.06;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 6.2vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.2rem; line-height: 1.25; letter-spacing: -0.015em; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.1rem;
  display: block;
}

.lead {
  font-size: clamp(1.06rem, 1.7vw, 1.3rem);
  color: var(--muted);
  max-width: 58ch;
}

.mono { font-family: var(--mono); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--body);
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn svg { width: 17px; height: 17px; flex: none; }

.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: #1330c4; transform: translateY(-2px); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

.btn--block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 251, 249, .88);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: -0.03em;
}
.logo svg { width: 30px; height: 30px; flex: none; }
.logo span { white-space: nowrap; }
.logo span i { font-style: normal; color: var(--muted); font-weight: 500; }

.header-actions { display: flex; align-items: center; gap: .5rem; }
.header-tel {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--mono);
  font-size: .88rem;
  text-decoration: none;
  padding: .5rem .7rem;
  border-radius: 8px;
  white-space: nowrap;
}
.header-tel svg { width: 16px; height: 16px; flex: none; color: var(--accent); }
.header-tel:hover { background: var(--panel); }

.btn__short { display: none; }

@media (max-width: 700px) {
  .site-header__inner { min-height: 68px; }
  .tel-text { display: none; }
  .header-actions .btn { padding: .7rem 1rem; white-space: nowrap; }
  .btn__long { display: none; }
  .btn__short { display: inline; }
  .logo { font-size: .98rem; }
}
@media (max-width: 420px) {
  .logo { font-size: .9rem; }
  .logo svg { width: 26px; height: 26px; }
}

/* ---------- Hero ---------- */
.hero { padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem); }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero h1 { margin-bottom: 1.4rem; }
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 2rem;
}
.hero__note {
  margin-top: 1.5rem;
  font-family: var(--mono);
  font-size: .8rem;
  color: var(--muted);
}

/* Hero-Grafik */
.serp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px -32px rgba(16, 19, 21, .35);
  overflow: hidden;
}
.serp-card svg { display: block; width: 100%; height: auto; }

.draw {
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  animation: draw 1.9s cubic-bezier(.4, 0, .2, 1) .4s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

.pop { opacity: 0; animation: pop .5s ease 2s forwards; }
@keyframes pop { to { opacity: 1; } }

/* ---------- Marquee / Systeme ---------- */
.systems {
  border-block: 1px solid var(--line);
  background: var(--panel);
  padding: 1.1rem 0;
}
.systems__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem 1.6rem;
  font-family: var(--mono);
  font-size: .82rem;
  color: var(--muted);
}
.systems__inner strong {
  color: var(--ink);
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .74rem;
}

/* ---------- Layout: Facetten-Navigation + Inhalt ---------- */
.layout {
  display: grid;
  grid-template-columns: 226px minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-top: var(--section-space);
}

.facets { position: relative; }
.facets__inner {
  position: sticky;
  top: 106px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 1.1rem;
}
.facets__title {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 .9rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--line);
}
.facets ul { list-style: none; margin: 0; padding: 0; }
.facets li + li { margin-top: .12rem; }
.facets a {
  display: flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
  font-size: .89rem;
  padding: .42rem .5rem;
  border-radius: 8px;
  color: var(--muted);
  transition: background-color .16s ease, color .16s ease;
}
.facets a::before {
  content: "";
  width: 13px;
  height: 13px;
  flex: none;
  border: 1.5px solid var(--line);
  border-radius: 3px;
  background: #fff;
  transition: background-color .16s ease, border-color .16s ease;
}
.facets a:hover { background: var(--panel); color: var(--ink); }
.facets a.is-active { color: var(--ink); font-weight: 600; }
.facets a.is-active::before {
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.2l2.4 2.4 4.6-5' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat;
  border-color: var(--accent);
}
.facets .count {
  margin-left: auto;
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--muted);
}
.facets__foot a::before { content: none; display: none; }
.facets__foot .btn--primary { color: #fff; font-weight: 600; }
.facets__foot .btn--primary:hover { background: #1330c4; }
.facets__foot {
  margin-top: 1rem;
  padding-top: .9rem;
  border-top: 1px solid var(--line);
}

/* Mobile: Facetten als Chip-Leiste */
@media (max-width: 900px) {
  .layout { grid-template-columns: minmax(0, 1fr); gap: 2rem; }
  .facets {
    position: sticky;
    top: var(--header-h);
    z-index: 40;
    margin-inline: calc(-1 * clamp(1.15rem, 4vw, 2.5rem));
    background: rgba(251, 251, 249, .95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .facets__inner {
    position: static;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: .6rem clamp(1.15rem, 4vw, 2.5rem);
    overflow-x: auto;
    scrollbar-width: none;
  }
  .facets__inner::-webkit-scrollbar { display: none; }
  .facets__title, .facets__foot, .facets .count { display: none; }
  .facets ul { display: flex; gap: .4rem; }
  .facets li + li { margin-top: 0; }
  .facets a {
    white-space: nowrap;
    border: 1px solid var(--line);
    background: #fff;
    padding: .38rem .8rem;
  }
  .facets a::before { display: none; }
  .facets a.is-active { background: var(--accent); border-color: var(--accent); color: #fff; }
  html { scroll-padding-top: 132px; }
  :root { --header-h: 68px; }
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- Sections ---------- */
.section { padding-bottom: var(--section-space); scroll-margin-top: 110px; }
.section__head { max-width: 62ch; margin-bottom: clamp(1.8rem, 3.5vw, 2.8rem); }
.section__head p { margin-top: 1rem; }

/* Karten-Raster */
.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.card {
  background: var(--paper);
  padding: 1.6rem 1.5rem;
  transition: background-color .2s ease;
}
.card:hover { background: #fff; }
@media (max-width: 620px) { .cards { grid-template-columns: minmax(0, 1fr); } }
.card__icon {
  width: 34px;
  height: 34px;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.card h3 { margin-bottom: .55rem; }
.card p { font-size: .95rem; color: var(--muted); }

/* Leistungsliste */
.services { display: grid; gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.service {
  background: var(--paper);
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  gap: 0 1.2rem;
  padding: 1.6rem .25rem;
  align-items: start;
  transition: background-color .2s ease;
}
.service:hover { background: #fff; }
.service__no {
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--accent);
  padding-top: .3rem;
}
.service p { grid-column: 2; margin: .5rem 0 0; color: var(--muted); font-size: .96rem; max-width: 68ch; }
.service__tags {
  grid-column: 2;
  margin: .9rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.service__tags li {
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .2rem .65rem;
  background: #fff;
}

/* Ablauf */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: #fff;
  position: relative;
}
.step__no {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .12em;
  color: var(--accent);
  display: block;
  margin-bottom: .9rem;
}
.step h3 { margin-bottom: .5rem; }
.step p { font-size: .95rem; color: var(--muted); }
.step__meta {
  margin-top: 1.1rem;
  padding-top: .9rem;
  border-top: 1px dashed var(--line);
  font-family: var(--mono);
  font-size: .75rem;
  color: var(--muted);
}

/* Zahlen */
.metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.metric {
  border-top: 2px solid var(--ink);
  padding-top: 1.1rem;
}
.metric b {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}
.metric span { font-size: .93rem; color: var(--muted); display: block; margin-top: .55rem; }

.chart-panel {
  margin-top: 2.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: clamp(1.2rem, 3vw, 2rem);
}
.chart-panel figcaption {
  font-family: var(--mono);
  font-size: .76rem;
  color: var(--muted);
  margin-top: 1rem;
}

/* Preise */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 1.5rem; }
.plan {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.plan--featured { border-color: var(--accent); box-shadow: 0 20px 50px -34px rgba(27, 59, 232, .7); }
.plan__tag {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: .8rem;
}
.plan__price {
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 1rem 0 .2rem;
}
.plan__price small { font-family: var(--body); font-size: .82rem; font-weight: 400; color: var(--muted); letter-spacing: 0; }
.plan ul { list-style: none; margin: 1.2rem 0 1.6rem; padding: 0; font-size: .94rem; }
.plan li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: .55rem;
  color: var(--muted);
}
.plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
}
.plan .btn { margin-top: auto; }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: .35rem 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 2.5rem 1.15rem 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.015em;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: .4rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 1.3rem;
  color: var(--accent);
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 3rem 1.3rem 0; color: var(--muted); font-size: .98rem; max-width: 72ch; }

/* Kontakt */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.8rem, 4vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: clamp(1.5rem, 4vw, 3rem);
}
@media (max-width: 820px) { .contact { grid-template-columns: minmax(0, 1fr); } }

.contact__direct { display: grid; gap: 1.7rem; align-content: start; }
.contact__note { font-size: .88rem; color: var(--muted); border-top: 1px dashed var(--line); padding-top: 1.4rem; max-width: 38ch; }
.contact__row {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
}
.contact__row svg { width: 20px; height: 20px; color: var(--accent); flex: none; margin-top: .2rem; }
.contact__row b { display: block; font-size: .8rem; font-family: var(--mono); color: var(--muted); font-weight: 400; letter-spacing: .05em; }
.contact__row a { text-decoration: none; font-size: 1.05rem; font-weight: 600; }
.contact__row a:hover { color: var(--accent); }

.contact__actions {
  border-left: 1px solid var(--line);
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: .8rem;
  align-content: start;
}
.contact__actions h3 { margin-bottom: .2rem; }
.contact__actions > p { font-size: .96rem; color: var(--muted); margin-bottom: .6rem; max-width: 46ch; }

.btn--whatsapp { background: #1faa53; color: #fff; }
.btn--whatsapp:hover { background: #189045; transform: translateY(-2px); }
.btn--whatsapp svg { width: 19px; height: 19px; }

@media (max-width: 820px) {
  .contact__actions { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; padding-top: 1.8rem; }
}

/* Terminbuchung */
.booking {
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px dashed var(--line);
}
.booking p { font-size: .9rem; color: var(--muted); margin-bottom: .9rem; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--panel);
  padding: clamp(2.5rem, 5vw, 4rem) 0 2rem;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}
.site-footer p { font-size: .92rem; color: var(--muted); max-width: 42ch; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.2rem; font-size: .92rem; }
.footer-nav a { text-decoration: none; }
.footer-nav a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: .76rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: space-between;
}

/* ---------- Rechtsseiten ---------- */
.legal { padding: clamp(2.5rem, 6vw, 4.5rem) 0 var(--section-space); }
.legal__head { max-width: 60ch; margin-bottom: 2.5rem; }
.legal-content {
  max-width: 75ch;
  font-size: 1rem;
}
.legal-content h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin: 2.5rem 0 .8rem;
}
.legal-content h3 { margin: 1.8rem 0 .5rem; }
.legal-content ul, .legal-content ol { padding-left: 1.2rem; color: var(--muted); }
.legal-content li { margin-bottom: .4rem; }
.legal-content p { color: var(--muted); }
.legal-content a { color: var(--accent); }
.legal-placeholder {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 2rem;
  font-family: var(--mono);
  font-size: .86rem;
  color: var(--muted);
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .draw { stroke-dashoffset: 0; }
  .pop { opacity: 1; }
}
