/* =============================================================================
   SecuLex — shared stylesheet for the static marketing site.

   Used by:  index.html (landing page)   ·   agb.html (legal pages, body.legal)

   Everything above the LEGAL PAGES block is the landing page's original CSS,
   extracted unchanged. The legal rules are scoped under `.legal` so adding a
   legal page can never shift the landing page.

   Deployment note: this file is copied by name into the hosting directory
   alongside the HTML (see seculex/project.json copy-build and the two
   frontend deploy workflows). A new file here needs a new copy line there.
   ============================================================================= */

/* Self-hosted fonts (served from assets.seculex.eu). Variable woff2 files
   cover the weight ranges we actually use; unicode-range lets the browser
   skip latin-ext unless the page contains those characters. */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('https://assets.seculex.eu/fonts/fraunces-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('https://assets.seculex.eu/fonts/fraunces-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, 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: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('https://assets.seculex.eu/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('https://assets.seculex.eu/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, 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: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('https://assets.seculex.eu/fonts/jetbrainsmono-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('https://assets.seculex.eu/fonts/jetbrainsmono-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --bg: #fafaf7;
  --ink: #0f1b2d;
  --ink-soft: #4a5568;
  --accent: #2f6f4e;
  --accent-deep: #235638;
  --accent-alt: #b08a3e;
  --danger: #8b2a2a;
  --divider: rgba(15, 27, 45, 0.08);
  --divider-strong: rgba(15, 27, 45, 0.16);
  --max-w: 1120px;
  --gutter: 24px;
  --radius: 14px;
  --radius-sm: 8px;
  --serif: 'Fraunces', 'Source Serif 4', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mono: 'JetBrains Mono', 'SFMono-Regular', Menlo, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; letter-spacing: -0.01em; color: var(--ink); margin: 0 0 0.6em; }
h1 { font-size: clamp(36px, 5.4vw, 56px); line-height: 1.1; }
h2 { font-size: clamp(28px, 3.6vw, 36px); line-height: 1.2; }
h3 { font-size: 22px; line-height: 1.3; }
h4 { font-size: 18px; line-height: 1.35; }

/* Legal pages run a tighter heading scale than the landing page: a contract,
   not a hero. Kept here in the base layer so the component rules further down
   (.toc h2, .provider-box h2, .footer-grid h2) still override it on source
   order — they carry the same specificity. */
.legal h1 { font-size: clamp(32px, 4.6vw, 46px); line-height: 1.12; }
.legal h2 { font-size: 24px; line-height: 1.28; }
.legal h3 { font-size: 19px; line-height: 1.35; }
.legal h4 { font-size: 17px; line-height: 1.35; }

p { margin: 0 0 1em; }
.muted { color: var(--ink-soft); }
.small { font-size: 14px; line-height: 1.55; color: var(--ink-soft); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: 6rem 0; }
@media (max-width: 720px) { section { padding: 3.5rem 0; } }

/* Lang toggling */
[data-i18n] { display: none; }
html[data-lang='de'] [data-i18n='de'] { display: revert; }
html[data-lang='en'] [data-i18n='en'] { display: revert; }
/* Inline phrase variants stay inline */
span[data-i18n], em[data-i18n], strong[data-i18n], a[data-i18n], li[data-i18n], button[data-i18n], label[data-i18n] {
  display: none;
}
html[data-lang='de'] span[data-i18n='de'],
html[data-lang='de'] em[data-i18n='de'],
html[data-lang='de'] strong[data-i18n='de'],
html[data-lang='de'] a[data-i18n='de'],
html[data-lang='de'] li[data-i18n='de'],
html[data-lang='de'] button[data-i18n='de'],
html[data-lang='de'] label[data-i18n='de'] { display: revert; }
html[data-lang='en'] span[data-i18n='en'],
html[data-lang='en'] em[data-i18n='en'],
html[data-lang='en'] strong[data-i18n='en'],
html[data-lang='en'] a[data-i18n='en'],
html[data-lang='en'] li[data-i18n='en'],
html[data-lang='en'] button[data-i18n='en'],
html[data-lang='en'] label[data-i18n='en'] { display: revert; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 247, 0.85);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--divider);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--gutter);
  max-width: var(--max-w); margin: 0 auto;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-weight: 700; font-size: 22px; color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand .lock {
  width: 22px; height: 22px; color: var(--accent);
}
.brand .beta-badge {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  background: var(--accent); color: #fff;
  padding: 2px 7px; border-radius: 999px; letter-spacing: 0.04em;
}

.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a {
  color: var(--ink); font-size: 14.5px; font-weight: 500;
  padding: 8px 12px; border-radius: var(--radius-sm);
}
.nav-links a:hover { background: rgba(15, 27, 45, 0.04); text-decoration: none; }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.lang-toggle {
  display: inline-flex; border: 1px solid var(--divider-strong); border-radius: 999px; overflow: hidden;
  font-family: var(--sans); font-size: 12.5px; font-weight: 600;
}
.lang-toggle button {
  background: transparent; border: 0; padding: 5px 10px; cursor: pointer; color: var(--ink-soft);
}
.lang-toggle button[aria-pressed='true'] { background: var(--ink); color: #fff; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 18px; border-radius: 999px;
  font-family: var(--sans); font-size: 14.5px; font-weight: 600;
  border: 1px solid transparent; cursor: pointer;
  transition: background-color .18s ease, transform .18s ease, border-color .18s ease;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); text-decoration: none; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--divider-strong); }
.btn-secondary:hover { background: rgba(15, 27, 45, 0.04); text-decoration: none; }
.btn-lg { padding: 14px 24px; font-size: 15.5px; }

/* Mobile nav */
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle svg { width: 24px; height: 24px; color: var(--ink); }

@media (max-width: 880px) {
  .nav-links { display: none; position: absolute; top: 60px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--divider); padding: 8px 0; }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 12px 24px; border-radius: 0; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn { display: none; }
}

/* HERO */
.hero { padding-top: 5rem; padding-bottom: 5rem; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center;
}
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; gap: 36px; } }
.hero h1 .accent { color: var(--accent); }
.hero p.lead { font-size: 19px; color: var(--ink-soft); max-width: 36ch; }
.hero .cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.hero-art { display: flex; justify-content: center; }
.hero-art svg { width: 100%; max-width: 460px; height: auto; }

/* PROBLEM STRIP */
.problem { background: #fff; border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); padding: 4rem 0; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 720px) { .problem-grid { grid-template-columns: 1fr; gap: 20px; } }
.problem-cell { display: flex; gap: 16px; align-items: flex-start; }
.problem-cell .icon {
  flex: 0 0 40px; height: 40px; border-radius: 50%;
  background: rgba(139, 42, 42, 0.08); color: var(--danger);
  display: flex; align-items: center; justify-content: center;
}
.problem-cell p { margin: 0; line-height: 1.55; }

/* GENERIC SECTION HEADERS */
.section-eyebrow {
  display: inline-block; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}

/* ZK EXPLAINER */
.zk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 880px) { .zk-grid { grid-template-columns: 1fr; } }
.zk-diagram svg { width: 100%; height: auto; }

/* TABS */
.tabs { background: #fff; border-radius: var(--radius); border: 1px solid var(--divider); padding: 8px; }
.tabs-bar { display: flex; gap: 4px; border-bottom: 1px solid var(--divider); margin-bottom: 24px; padding: 4px; }
.tab-btn {
  flex: 1; background: transparent; border: 0; padding: 12px 16px;
  font-family: var(--sans); font-size: 14.5px; font-weight: 600; color: var(--ink-soft);
  cursor: pointer; border-radius: var(--radius-sm);
}
.tab-btn[aria-selected='true'] { background: rgba(47, 111, 78, 0.08); color: var(--accent-deep); }
.tab-panel { display: none; padding: 16px; }
.tab-panel.is-active { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 720px) { .tab-panel.is-active { grid-template-columns: 1fr; } }
.tile {
  padding: 18px; border: 1px solid var(--divider); border-radius: var(--radius); background: var(--bg);
}
.tile h4 { margin-bottom: 6px; font-family: var(--sans); font-weight: 600; font-size: 16px; letter-spacing: 0; }
.tile p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
.tile .ref { font-family: var(--mono); font-size: 11px; color: var(--accent); }

/* DOMAIN GRID */
.domain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .domain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .domain-grid { grid-template-columns: 1fr; } }
.domain-card {
  background: #fff; border: 1px solid var(--divider); border-radius: var(--radius);
  padding: 24px; transition: border-color .15s ease, transform .15s ease;
}
.domain-card:hover { border-color: var(--divider-strong); transform: translateY(-2px); }
.domain-card .card-icon {
  width: 36px; height: 36px; color: var(--accent); margin-bottom: 14px;
}
.domain-card h3 { font-size: 18px; margin-bottom: 6px; }
.domain-card .claim { font-size: 13.5px; color: var(--accent-deep); margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--divider); font-style: italic; }

/* COMPLIANCE BADGES */
.badges { display: flex; flex-wrap: wrap; gap: 12px; }
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--divider); border-radius: 999px;
  padding: 10px 16px; font-size: 13.5px; color: var(--ink);
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.badge.is-aspirational { border-style: dashed; color: var(--accent-alt); }
.badge.is-aspirational .dot { background: var(--accent-alt); }

/* ACCORDION */
.accordion { border-top: 1px solid var(--divider); }
details {
  border-bottom: 1px solid var(--divider);
}
details > summary {
  list-style: none; cursor: pointer; padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--ink);
}
details > summary::-webkit-details-marker { display: none; }
details > summary::after {
  content: ''; width: 14px; height: 14px;
  border-right: 2px solid var(--ink-soft); border-bottom: 2px solid var(--ink-soft);
  transform: rotate(45deg); transition: transform .18s ease;
  margin-left: 16px;
}
details[open] > summary::after { transform: rotate(-135deg); }
details > .a-body { padding: 4px 0 22px; color: var(--ink-soft); max-width: 70ch; }

/* PRICING */
.pricing-card {
  max-width: 560px; margin: 0 auto;
  background: #fff; border: 1px solid var(--divider); border-radius: var(--radius);
  padding: 36px;
}
.pricing-card ul { padding-left: 0; list-style: none; margin: 20px 0; }
.pricing-card li { display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; font-size: 15px; }
.pricing-card li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  margin-top: 10px; flex: 0 0 6px;
}
.promo-note {
  margin-top: 18px; padding: 14px 16px; background: rgba(47, 111, 78, 0.06);
  border-left: 3px solid var(--accent); border-radius: 6px;
  font-size: 14px; color: var(--ink);
}

/* CTA BAND */
.cta-band { background: var(--ink); color: #fff; }
.cta-band h2 { color: #fff; max-width: 24ch; margin-bottom: 1.2rem; }
.cta-band .container { padding-top: 4.5rem; padding-bottom: 4.5rem; display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.cta-band .btn-primary { background: #fff; color: var(--ink); }
.cta-band .btn-primary:hover { background: #f0eee8; }
.cta-band .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.3); }
.cta-band .btn-secondary:hover { background: rgba(255,255,255,0.08); }

/* FORM */
.form-wrap {
  max-width: 580px; margin: 32px auto 0;
  background: #fff; border: 1px solid var(--divider); border-radius: var(--radius);
  padding: 32px;
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.field .label-hint { font-weight: 400; color: var(--ink-soft); margin-left: 6px; }
.field input[type='text'], .field input[type='email'] {
  width: 100%; padding: 12px 14px; font-size: 15px;
  font-family: inherit; color: var(--ink);
  border: 1px solid var(--divider-strong); border-radius: var(--radius-sm); background: #fff;
  transition: border-color .15s ease;
}
.field input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(47, 111, 78, 0.15); }
.field-error { display: none; color: var(--danger); font-size: 13px; margin-top: 6px; }
.field.has-error input { border-color: var(--danger); }
.field.has-error .field-error { display: block; }
.honeypot { position: absolute; left: -9999px; height: 0; width: 0; overflow: hidden; }
.form-status { margin-top: 14px; font-size: 14px; }
.form-status.is-error { color: var(--danger); }
.form-status.is-ok { color: var(--accent-deep); }
.form-success {
  text-align: center; padding: 32px 16px; color: var(--ink);
}
.form-success svg { color: var(--accent); width: 48px; height: 48px; margin-bottom: 12px; }
.form-privacy { margin-top: 14px; font-size: 12.5px; color: var(--ink-soft); text-align: center; }

/* FOOTER */
footer {
  background: #fff; border-top: 1px solid var(--divider); padding: 4rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
/* h4 on the landing page, h2 on legal pages — both are the footer column head,
   the level differs only to keep each page's heading outline valid. */
.footer-grid h4, .footer-grid h2 { font-family: var(--sans); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); font-weight: 600; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { padding: 4px 0; }
.footer-grid a { color: var(--ink); font-size: 14px; }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--divider);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--ink-soft);
}

/* MOTION */
.reveal { opacity: 0; transform: translateY(8px); transition: opacity .42s ease, transform .42s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn { transition: none; }
  html { scroll-behavior: auto; }
}

/* benefit list (catalog) */
.benefit-cats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 28px; }
@media (max-width: 720px) { .benefit-cats { grid-template-columns: 1fr; } }
.benefit-cat h3 { font-family: var(--sans); font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 12px; font-weight: 600; }
.benefit-cat ul { list-style: none; padding: 0; margin: 0; }
.benefit-cat li { padding: 10px 0; border-top: 1px solid var(--divider); font-size: 14.5px; color: var(--ink); display: flex; gap: 10px; }
.benefit-cat li:first-child { border-top: 0; }
.benefit-cat li .ref { font-family: var(--mono); font-size: 11px; color: var(--accent); flex: 0 0 26px; padding-top: 2px; }

/* =============================================================================
   7. LEGAL PAGES  (agb.html, and any impressum/datenschutz page added later)

   Everything below is scoped to `.legal` on <body>. The landing page never
   matches these selectors, so the two page types cannot drift into each other.
   ============================================================================= */

/* The legal heading scale lives in the base block above, so that component
   rules further down (.toc h2, .provider-box h2, .footer-grid h2) still win
   on source order — they share its specificity. */

/* The landing page pads every <section>; legal paragraphs space themselves. */
.legal section { padding: 0; }

.legal-hero { padding: 3.5rem 0 2rem; border-bottom: 1px solid var(--divider); }
.legal-hero h1 { margin-bottom: 12px; }
.legal-meta {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--ink-soft);
}
.legal-lead { font-size: 18px; color: var(--ink-soft); max-width: 62ch; margin-top: 18px; }

/* The container keeps the page grid of the landing page; the prose column is
   constrained on the children so it stays flush left with the hero. */
.legal-body { padding-top: 2.5rem; padding-bottom: 4rem; }
.legal-body > * { max-width: 780px; }

.draft-banner {
  border: 1px dashed rgba(176, 138, 62, 0.6);
  background: rgba(176, 138, 62, 0.08);
  border-radius: var(--radius); padding: 16px 20px; margin: 2rem 0 0;
  font-size: 14.5px; color: #6b5218;
}
.draft-banner strong { color: #584313; }

.toc {
  background: #fff; border: 1px solid var(--divider); border-radius: var(--radius);
  padding: 22px 24px; margin-bottom: 3rem;
}
.toc h2 {
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); margin-bottom: 14px;
}
.toc ol { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 32px; }
@media (max-width: 640px) { .toc ol { columns: 1; } }
.toc li { padding: 3px 0; font-size: 14.5px; break-inside: avoid; }
.toc a { color: var(--ink); }
.toc .num { font-family: var(--mono); font-size: 12px; color: var(--accent); margin-right: 8px; }

.par { margin: 0 0 2.8rem; scroll-margin-top: 84px; }
.par h2 { margin-bottom: 0.7em; }

/* Numbered contract paragraphs: (1), (2), (3) ... */
ol.clauses { list-style: none; counter-reset: cl; margin: 0; padding: 0; }
ol.clauses > li {
  counter-increment: cl; position: relative;
  padding-left: 42px; margin-bottom: 14px;
}
ol.clauses > li::before {
  content: '(' counter(cl) ')';
  position: absolute; left: 0; top: 1px;
  font-family: var(--mono); font-size: 13px; color: var(--ink-soft);
}
ol.clauses > li:last-child { margin-bottom: 0; }

ul.dash { list-style: none; margin: 10px 0 0; padding: 0; }
ul.dash li { position: relative; padding-left: 20px; margin-bottom: 8px; }
ul.dash li::before { content: '–'; position: absolute; left: 0; color: var(--ink-soft); }

dl.defs { margin: 0; }
dl.defs dt { font-weight: 600; margin-top: 16px; }
dl.defs dt:first-child { margin-top: 0; }
dl.defs dd { margin: 2px 0 0; color: var(--ink-soft); }

/* Used for the clause that carries the product's core risk (§ 7). */
.callout {
  background: #fff;
  border: 1px solid rgba(47, 111, 78, 0.3);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.callout h2 { margin-top: 0; }

/* Unresolved values awaiting a decision. Deliberately loud. */
mark.todo {
  background: rgba(176, 138, 62, 0.16);
  color: #584313;
  font-family: var(--mono); font-size: 0.86em;
  padding: 1px 6px; border-radius: 4px;
  border: 1px dashed rgba(176, 138, 62, 0.7);
}

.provider-box {
  background: #fff; border: 1px solid var(--divider); border-radius: var(--radius);
  padding: 20px 24px; margin-top: 2.5rem; font-size: 15px;
}
.provider-box h2 {
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); margin-bottom: 12px;
}
.provider-box p { margin-bottom: 0.4em; }

.back-link { display: inline-block; margin-top: 2.5rem; font-size: 14.5px; }

/* =============================================================================
   9. PRINT
   ============================================================================= */

@media print {
  .nav, footer, .lang-toggle, .back-link, .draft-banner { display: none; }
  body { background: #fff; font-size: 11pt; }
  .legal-body { max-width: none; }
  a { color: inherit; text-decoration: none; }
  .par { break-inside: avoid; }
}
