:root {
  --bg: oklch(98.4% 0.004 250);
  --surface: oklch(100% 0 0);
  --ink: oklch(22% 0.02 265);
  --ink-soft: oklch(48% 0.015 265);
  --ink-mute: oklch(65% 0.012 265);
  --line: oklch(92% 0.006 265);
  --line-strong: oklch(87% 0.008 265);

  --accent: oklch(48% 0.13 258);         /* refined indigo-blue */
  --accent-deep: oklch(42% 0.14 258);
  --accent-soft: oklch(96% 0.02 258);
  --accent-line: oklch(84% 0.06 258);
  --good: oklch(56% 0.12 158);
  --good-soft: oklch(96.5% 0.03 158);
  --good-line: oklch(86% 0.07 158);
  --danger: oklch(56% 0.19 25);

  --radius: 16px;
  --radius-sm: 11px;
  --dur: 300ms;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }

/* Das hidden-Attribut muss jede display-Regel schlagen. Ohne dies gewinnt
 * jede Klasse mit display (.btn, .verify-success, .nav) gegen [hidden] –
 * ausgeblendete Elemente blieben sichtbar. */
[hidden] { display: none !important; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(700px 380px at 50% -8%, var(--accent-soft), transparent 70%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrap {
  width: 100%;
  max-width: 552px;
  margin: 0 auto;
  padding: 30px 22px 34px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Header */
.head { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-bottom: 24px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  display: grid; place-items: center; width: 34px; height: 34px;
  border-radius: 10px; color: #fff;
  background: linear-gradient(150deg, var(--accent), var(--accent-deep));
  box-shadow: 0 4px 12px oklch(48% 0.13 258 / .28);
}
.brand-name { font-weight: 700; font-size: 1.1rem; letter-spacing: -.02em; }
.brand-sub { font-weight: 500; color: var(--ink-soft); }
.product-proof {
  display: inline-flex; align-items: baseline; gap: 5px;
  padding: 7px 10px; border: 1px solid var(--good-line); border-radius: 999px;
  color: var(--good); background: var(--good-soft); white-space: nowrap;
}
.product-proof strong { font-size: .92rem; }
.product-proof span { font-size: .7rem; font-weight: 650; color: var(--ink-soft); }

@media (max-width: 390px) {
  .head { align-items: flex-start; }
  .product-proof { flex-direction: column; align-items: center; gap: 0; line-height: 1.15; }
}

/* Ad-Scent-Claim zwischen Kopfzeile und Karte – wiederholt die Anzeigen-Headline */
.hero-claim {
  margin: 0 0 16px;
  font-size: clamp(1.15rem, 1rem + 0.9vw, 1.4rem);
  font-weight: 700; letter-spacing: -.02em; line-height: 1.25;
}
.hero-claim-sub {
  display: block; margin-top: 2px;
  font-size: .9rem; font-weight: 500; letter-spacing: 0;
  color: var(--ink-soft);
}

/* Card */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 5vw, 38px);
  box-shadow: 0 1px 2px oklch(30% 0.03 265 / .05), 0 12px 32px oklch(30% 0.04 265 / .06);
  display: flex;
  flex-direction: column;
}

/* Progress */
.progress { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.progress-track { flex: 1; height: 5px; border-radius: 99px; background: var(--line); overflow: hidden; }
.progress-fill {
  height: 100%; width: 25%; border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  transition: width var(--dur) var(--ease);
}
.progress-meta { font-size: .78rem; font-weight: 600; color: var(--ink-mute); white-space: nowrap; }

/* Steps */
.steps { flex: 1; }
.step { display: none; animation: fade var(--dur) var(--ease); }
.step.is-active { display: block; }
@keyframes fade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .step, .progress-fill { animation: none !important; transition: none !important; }
}

.q { font-size: clamp(1.4rem, 1.2rem + 1vw, 1.72rem); font-weight: 600; letter-spacing: -.02em; line-height: 1.2; margin: 0 0 4px; }
.q-hint { color: var(--ink-soft); font-size: .95rem; margin: 0 0 22px; }

/* Options — list rows with icon */
.options { display: grid; gap: 10px; }
.opt {
  position: relative; display: flex; align-items: center; gap: 14px;
  text-align: left; cursor: pointer;
  padding: 14px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong); background: var(--surface);
  font-family: inherit; font-size: 1rem; font-weight: 550; color: var(--ink);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.opt-ic {
  display: grid; place-items: center; width: 40px; height: 40px; flex: 0 0 40px;
  border-radius: 10px; background: var(--accent-soft); color: var(--accent);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.opt-ic svg { width: 22px; height: 22px; }
.opt-tx { flex: 1; }
.opt::after {
  content: ""; width: 18px; height: 18px; flex: 0 0 18px; border-radius: 50%;
  border: 1.5px solid var(--line-strong); transition: all var(--dur) var(--ease);
}
.opt:hover { border-color: var(--accent-line); box-shadow: 0 2px 10px oklch(48% 0.13 258 / .07); }
.opt:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.opt.is-selected { border-color: var(--accent); background: var(--accent-soft); }
.opt.is-selected .opt-ic { background: var(--accent); color: #fff; }
.opt.is-selected::after { border-color: var(--accent); background: var(--accent); box-shadow: inset 0 0 0 3px var(--surface); }

/* Options — Mehrfachauswahl (E-Bike & Elektronik): Häkchen statt Radio-Punkt */
.options.multi .opt { align-items: flex-start; }
.options.multi .opt::after {
  border-radius: 6px; margin-top: 3px;
}
/* Longhands statt `background:`-Kurzform: die Kurzform mit var() wird zur
   pending-substitution und verliert die background-color, sobald danach ein
   background-image folgt – das Häkchen stünde dann weiß auf weiß. */
.options.multi .opt.is-selected::after {
  border-color: var(--accent); box-shadow: none;
  background-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 12px 12px; background-position: center; background-repeat: no-repeat;
}
.opt-sub {
  display: block; margin-top: 3px;
  font-size: .8rem; font-weight: 450; line-height: 1.4; color: var(--ink-mute);
}
.opt.is-selected .opt-sub { color: var(--ink-soft); }
.step-note { margin: 16px 0 0; font-size: .82rem; color: var(--ink-mute); text-align: center; }

/* Options — tiles (Wohnform) */
.tiles { grid-template-columns: 1fr 1fr; }
.tiles .opt { flex-direction: column; gap: 12px; text-align: center; padding: 22px 16px; }
.tiles .opt-ic { width: 46px; height: 46px; flex-basis: 46px; }
.tiles .opt-ic svg { width: 26px; height: 26px; }
.tiles .opt-tx { flex: none; }
.tiles .opt::after { display: none; }

/* Size block */
.size-block { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.lbl { display: block; font-size: .8rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 8px; }
.lbl-hint { margin: 9px 0 0; font-size: .78rem; color: var(--ink-mute); }
.included-note {
  display: flex; align-items: flex-start; gap: 9px; margin: 0 0 18px; padding: 11px 13px;
  border: 1px solid var(--good-line); border-radius: 10px;
  background: var(--good-soft); color: var(--ink-soft);
  font-size: .8rem; line-height: 1.45;
}
.included-note-icon {
  display: grid; place-items: center; flex: 0 0 19px; width: 19px; height: 19px;
  border-radius: 50%; background: var(--good); color: #fff;
  font-size: .7rem; font-weight: 700; margin-top: 1px;
}
.size-input { position: relative; }
.size-input input { padding-right: 44px; }
.size-unit { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: var(--ink-mute); font-size: .92rem; pointer-events: none; }
.size-prefix { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--ink-mute); font-size: .95rem; pointer-events: none; }
.size-input:has(.size-prefix) input { padding-left: 30px; }
/* Inputs */
input[type="text"], input[type="email"], input[type="tel"], input[type="number"] {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong); background: var(--surface);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
input::placeholder { color: var(--ink-mute); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .span-2 { grid-column: 1 / -1; }
@media (max-width: 440px) { .form-grid { grid-template-columns: 1fr; } .form-grid .span-2 { grid-column: auto; } }

/* Verify */
.verify { margin-top: 20px; }

/* Ladeszene der Adressprüfung */
.verify-loading { display: block; text-align: center; padding: 4px 0 2px; }
.verify-orbit { position: relative; display: grid; place-items: center; width: 62px; height: 62px; margin: 0 auto 18px; }
.verify-orbit::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--accent-soft); }
.verify-orbit-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--accent-line); border-top-color: var(--accent);
  animation: spin 1s linear infinite;
}
.verify-orbit svg { position: relative; width: 25px; height: 25px; color: var(--accent); }
@keyframes spin { to { transform: rotate(360deg); } }

.verify-title { margin: 0 0 6px; font-size: 1.06rem; font-weight: 650; letter-spacing: -.01em; }
/* Die geprüfte Adresse sichtbar spiegeln – die Wartezeit wirkt dadurch
 * wie echte Arbeit an den eigenen Daten statt wie ein hängender Ladebalken. */
.verify-addr {
  display: inline-block; margin: 0 0 12px; padding: 5px 12px;
  border-radius: 99px; background: var(--accent-soft); border: 1px solid var(--accent-line);
  font-size: .82rem; font-weight: 550; color: var(--accent-deep);
}
.verify-sub { margin: 0 0 18px; font-size: .9rem; color: var(--ink-soft); min-height: 1.35em; }

.verify-bar { height: 5px; border-radius: 99px; background: var(--line); overflow: hidden; }
.verify-bar-fill {
  display: block; height: 100%; border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  transform: scaleX(0); transform-origin: left center;
}
/* Dauer kommt als --verify-dur aus dem JS – eine Quelle für die Prüfdauer.
 * Bewusst linear: der Balken läuft synchron zu den drei Prüfschritten (34 % / 68 %).
 * Eine ease-out-Kurve würde ihn früh auf ~95 % schieben und dort stehen lassen –
 * das liest sich als hängender Ladebalken. */
.verify-bar-fill.is-running { animation: verifyfill var(--verify-dur, 15000ms) linear forwards; }
@keyframes verifyfill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.verify-tasks { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 11px; text-align: left; }
.vtask { display: flex; align-items: center; gap: 11px; font-size: .88rem; color: var(--ink-mute); transition: color var(--dur) var(--ease); }
.vtask-dot {
  position: relative; width: 18px; height: 18px; flex: 0 0 18px; border-radius: 50%;
  border: 2px solid var(--line-strong);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.vtask.is-active { color: var(--ink); font-weight: 550; }
.vtask.is-active .vtask-dot { border-color: var(--accent); animation: vpulse 1.5s ease-out infinite; }
@keyframes vpulse {
  from { box-shadow: 0 0 0 0 oklch(48% 0.13 258 / .38); }
  to   { box-shadow: 0 0 0 8px oklch(48% 0.13 258 / 0); }
}
.vtask.is-done { color: var(--ink-soft); }
.vtask.is-done .vtask-dot { border-color: var(--good); background: var(--good); }
.vtask.is-done .vtask-dot::after {
  content: ""; position: absolute; left: 4px; top: 1px; width: 4px; height: 8px;
  border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg);
}

@media (prefers-reduced-motion: reduce) {
  .verify-orbit-ring, .vtask.is-active .vtask-dot { animation: none; }
}
.verify-success {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border-radius: var(--radius-sm);
  background: var(--good-soft); border: 1px solid var(--good-line);
  animation: fade var(--dur) var(--ease);
}
.verify-ic {
  display: grid; place-items: center; width: 28px; height: 28px; flex: 0 0 28px;
  border-radius: 50%; background: var(--good); color: #fff;
}
.verify-ic svg { width: 16px; height: 16px; }
.verify-text { margin: 0; font-size: .95rem; line-height: 1.5; color: var(--ink); }
.verify-text strong { font-weight: 600; }

/* Consent */
.consent { display: flex; gap: 10px; margin-top: 18px; font-size: .85rem; color: var(--ink-soft); line-height: 1.45; cursor: pointer; }
.consent input { margin-top: 1px; width: 16px; height: 16px; accent-color: var(--accent); flex: 0 0 16px; }

/* Done */
.step-done { text-align: center; }
.done-mark {
  width: 54px; height: 54px; margin: 0 auto 18px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(150deg, var(--good), var(--accent));
  box-shadow: 0 8px 22px oklch(56% 0.12 200 / .3);
  animation: fade var(--dur) var(--ease);
}
.done-text { color: var(--ink-soft); font-size: .98rem; line-height: 1.55; margin: 0 auto; max-width: 34ch; }
.done-summary {
  margin-top: 24px; text-align: left; display: grid; gap: 9px;
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; font-size: .9rem;
}
.done-summary .row { display: flex; justify-content: space-between; gap: 12px; }
.done-summary .row span:first-child { color: var(--ink-mute); }
.done-summary .row span:last-child { font-weight: 550; text-align: right; }

/* Rechtsschutz-Bausteine */
.package-choice {
  width: 100%; min-height: 92px; display: grid; grid-template-columns: 42px 1fr auto;
  align-items: center; gap: 14px; margin-top: 22px; padding: 17px 18px; text-align: left;
  color: var(--ink); background: var(--surface); border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm); font: inherit; cursor: pointer;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.package-choice:hover { transform: translateY(-1px); border-color: var(--accent); }
.package-choice.is-selected {
  background: color-mix(in oklch, var(--accent) 8%, var(--surface));
  border-color: var(--accent); box-shadow: 0 7px 20px oklch(48% 0.13 258 / .12);
}
.package-choice-check {
  width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--line-strong); color: var(--accent); font-size: 1.08rem; font-weight: 750;
}
.package-choice.is-selected .package-choice-check { background: var(--accent); border-color: var(--accent); color: #fff; }
.package-choice-copy { display: grid; gap: 5px; }
.package-choice-copy strong { font-size: 1.06rem; font-weight: 680; letter-spacing: -.01em; }
.package-choice-copy small { color: var(--ink-soft); font-size: .8rem; line-height: 1.35; }
.package-choice-badge {
  padding: 5px 8px; border-radius: 999px; color: var(--accent); background: var(--surface);
  border: 1px solid color-mix(in oklch, var(--accent) 30%, var(--line)); font-size: .69rem; font-weight: 700; white-space: nowrap;
}
.legal-options-head {
  display: flex; justify-content: space-between; gap: 12px; margin: 20px 3px 8px;
  color: var(--ink-mute); font-size: .73rem; font-weight: 650; letter-spacing: .02em;
}
.legal-cover-list { display: grid; gap: 8px; }
.cover-item {
  width: 100%; min-height: 64px; display: grid; grid-template-columns: 1fr auto 30px;
  align-items: center; gap: 12px; padding: 13px 15px; text-align: left;
  color: var(--ink); background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm); font: inherit;
}
button.cover-item {
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
button.cover-item:hover { transform: translateY(-1px); border-color: var(--accent); }
.cover-item.is-selected {
  background: color-mix(in oklch, var(--accent) 7%, var(--surface));
  border-color: color-mix(in oklch, var(--accent) 36%, var(--line));
}
.cover-check {
  width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--line-strong); color: var(--ink-mute); font-weight: 700;
}
.cover-item.is-selected .cover-check {
  background: var(--accent); border-color: var(--accent); color: #fff;
}
.cover-copy { display: grid; gap: 2px; }
.cover-copy strong { font-size: .96rem; font-weight: 650; }
.cover-copy small { color: var(--ink-mute); font-size: .77rem; }
.cover-state { color: var(--ink-mute); font-size: .76rem; font-weight: 650; white-space: nowrap; }
.cover-item.is-selected .cover-state { color: var(--accent); }
.legal-note { margin-top: 14px; }
@media (max-width: 420px) {
  .package-choice { grid-template-columns: 38px 1fr; }
  .package-choice-badge { grid-column: 2; justify-self: start; }
  .cover-item { grid-template-columns: 1fr 30px; }
  .cover-state { grid-column: 1; grid-row: 2; }
  .cover-check { grid-column: 2; grid-row: 1 / span 2; }
}

/* Error */
.err { color: var(--danger); font-weight: 550; font-size: .85rem; margin: 16px 0 0; }

/* Nav */
.nav { display: flex; gap: 10px; margin-top: 26px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 600; font-size: .98rem; cursor: pointer;
  padding: 14px 22px; border-radius: var(--radius-sm); border: 1px solid transparent;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn-primary {
  flex: 1; color: #fff;
  background: linear-gradient(150deg, var(--accent), var(--accent-deep));
  box-shadow: 0 5px 16px oklch(48% 0.13 258 / .28);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 22px oklch(48% 0.13 258 / .36); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-ar { transition: transform var(--dur) var(--ease); }
.btn-primary:hover .btn-ar { transform: translateX(3px); }
.btn-ghost { background: transparent; border-color: var(--line-strong); color: var(--ink-soft); }
.btn-ghost:hover { border-color: var(--ink-mute); color: var(--ink); }

/* Trust badges */
.badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 16px;
  margin-top: 20px;
}
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .76rem; font-weight: 550; color: var(--ink-mute);
}
.badge svg { color: var(--good); }

/* Footer */
.foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line);
  font-size: .77rem; color: var(--ink-mute);
}
.foot-links a { color: var(--ink-mute); text-decoration: none; }
.foot-links a:hover { color: var(--ink-soft); text-decoration: underline; }
@media (max-width: 440px) { .foot { flex-direction: column; gap: 6px; } }

/* Cookie-Consent-Banner */
/* Solange das Banner sichtbar ist, unten Platz freihalten, damit es den
   Weiter-Button auf niedrigen Viewports nicht verdeckt (Höhe setzt consent.js). */
body.has-consent-bar { padding-bottom: var(--cc-space, 150px); }
.cookie-consent {
  position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%);
  z-index: 100; width: min(720px, calc(100% - 28px));
  display: flex; align-items: center; gap: 16px;
  padding: 15px 18px; border-radius: 14px;
  background: oklch(100% 0 0); border: 1px solid var(--line-strong);
  box-shadow: 0 12px 40px oklch(30% 0.05 265 / .18);
  animation: ccUp var(--dur) var(--ease);
}
@keyframes ccUp { from { opacity: 0; transform: translate(-50%, 12px); } to { opacity: 1; transform: translate(-50%, 0); } }
.cookie-consent.is-hidden { opacity: 0; transform: translate(-50%, 12px); transition: all var(--dur) var(--ease); }
.cc-txt { margin: 0; font-size: .84rem; line-height: 1.5; color: var(--ink-soft); flex: 1; }
.cc-txt a { color: var(--accent); text-decoration: underline; }
.cc-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cc-btn {
  font-family: inherit; font-weight: 600; font-size: .85rem; cursor: pointer;
  padding: 10px 16px; border-radius: 9px; border: 1px solid transparent; white-space: nowrap;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.cc-decline { background: transparent; border-color: var(--line-strong); color: var(--ink-soft); }
.cc-decline:hover { border-color: var(--ink-mute); color: var(--ink); }
.cc-accept { background: var(--accent); color: #fff; }
.cc-accept:hover { background: var(--accent-deep); }
@media (max-width: 560px) {
  .cookie-consent { flex-direction: column; align-items: stretch; gap: 12px; }
  .cc-actions { justify-content: stretch; }
  .cc-btn { flex: 1; }
}

/* Rechtsseiten (Impressum / Datenschutz) */
.legal { max-width: 760px; margin: 0 auto; padding: 30px 22px 60px; }
.legal-back {
  display: inline-flex; align-items: center; gap: 6px; margin-bottom: 22px;
  font-size: .88rem; font-weight: 600; color: var(--ink-soft); text-decoration: none;
}
.legal-back:hover { color: var(--accent); }
.legal-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(24px, 5vw, 44px);
  box-shadow: 0 1px 2px oklch(30% 0.03 265 / .05);
}
.legal h1 { font-size: 1.7rem; font-weight: 600; letter-spacing: -.02em; margin: 0 0 6px; }
.legal .legal-lead { color: var(--ink-soft); margin: 0 0 26px; font-size: .95rem; }
.legal h2 { font-size: 1.12rem; font-weight: 600; margin: 30px 0 10px; letter-spacing: -.01em; }
.legal h3 { font-size: .98rem; font-weight: 600; margin: 20px 0 6px; }
.legal p, .legal li { font-size: .93rem; line-height: 1.65; color: var(--ink); }
.legal ul { padding-left: 20px; margin: 8px 0; }
.legal a { color: var(--accent); }
.legal .ph { background: oklch(96% 0.09 90); color: oklch(45% 0.12 60); padding: 0 4px; border-radius: 3px; font-weight: 600; }
.legal .note {
  margin: 0 0 26px; padding: 13px 16px; border-radius: 10px;
  background: oklch(96% 0.05 90); border: 1px solid oklch(85% 0.09 85);
  font-size: .86rem; color: oklch(40% 0.09 65); line-height: 1.55;
}
.legal .muted { color: var(--ink-mute); font-size: .82rem; }
