/* =============================================================================
   waiee — Coming Soon
   Design language ported from the reference "AI Act Content Signer" live page:
   warm copper + midnight ink on warm paper.
   - WCAG 2.1/2.2 AA contrast, 44px touch targets, reduced-motion aware
   - Zero external requests (self-hosted fonts, no trackers, no cookies)
   ============================================================================= */

/* ── 0. Self-hosted fonts ─────────────────────────────────────────────────── */
/* Inter Variable + JetBrains Mono ship as .woff2 next to this file, so the page
   never contacts a font CDN. Latin + Latin-Ext cover German (ä ö ü ß …). */
@font-face {
  font-family: "Inter Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("./fonts/inter-latin-wght-normal.woff2") format("woff2-variations");
  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 Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("./fonts/inter-latin-ext-wght-normal.woff2") format("woff2-variations");
  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-display: swap;
  font-weight: 400;
  src: url("./fonts/jetbrains-mono-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url("./fonts/jetbrains-mono-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url("./fonts/jetbrains-mono-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url("./fonts/jetbrains-mono-latin-700-normal.woff2") format("woff2");
}

/* ── 1. Tokens ────────────────────────────────────────────────────────────── */
:root {
  /* Brand — Warm Copper */
  --brand-50:  #F8F1EA;
  --brand-100: #F0E3D5;
  --brand-200: #E2C7AA;
  --brand-400: #C59055;
  --brand-500: #B8864E;
  --brand-600: #A07342;
  --brand-700: #8B6137;
  --brand-800: #75502D;
  --brand-900: #5F3F22;

  /* Brand — Midnight Ink */
  --ink-500: #1C2D42;
  --ink-600: #172537;
  --ink-700: #121D2C;

  /* Surfaces — Warm Paper */
  --paper:  #FAF9F6;
  --canvas: #F3F1ED;

  /* Text */
  --ink-black: #1A1A1A;
  --stone:     #6B6560;  /* 5.4:1 on paper */

  /* Borders */
  --border:       #E8E4DD;
  --border-light: #F0EDE8;

  /* Hairlines used on the ink band */
  --hairline:        rgba(250, 249, 246, 0.14);
  --hairline-strong: rgba(250, 249, 246, 0.26);
  --on-ink:        #FAF9F6;
  --on-ink-muted:  rgba(250, 249, 246, 0.74);

  /* Semantic */
  --text-primary:   var(--ink-black);
  --text-secondary: var(--stone);
  --text-inverse:   #FFFFFF;
  --accent:         var(--brand-600);
  --accent-hover:   var(--brand-700);

  /* Typography — self-hosted (see @font-face above), system fallback. */
  --font-sans: "Inter Variable", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo,
    Consolas, "Liberation Mono", monospace;

  /* Layout */
  --wrap: 1120px;
  --measure: 640px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --header-h: 68px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(28, 45, 66, 0.05);
  --shadow-md: 0 6px 18px rgba(28, 45, 66, 0.07);
  --shadow-lg: 0 18px 48px rgba(28, 45, 66, 0.10);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── 2. Reset / base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100svh;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--canvas);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
h1, h2, h3, p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; }
button { font: inherit; }

:focus-visible {
  /* brand-700 instead of brand-500: 5.2:1 against paper, so the ring clears
     WCAG 2.2 SC 1.4.11 (non-text contrast, 3:1) with margin. */
  outline: 2px solid var(--brand-700);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -120%;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--ink-500);
  color: var(--text-inverse);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ── 3. Ambient background (copper glow + paper grain) ────────────────────── */
.bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }

.bg__glow {
  position: absolute;
  width: 62rem;
  height: 62rem;
  top: -24rem;
  right: -18rem;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(160, 115, 66, 0.16) 0%,
    rgba(160, 115, 66, 0.06) 42%,
    transparent 68%
  );
}
.bg__glow--2 {
  width: 46rem;
  height: 46rem;
  top: auto; right: auto;
  bottom: -22rem; left: -16rem;
  background: radial-gradient(
    circle at center,
    rgba(28, 45, 66, 0.10) 0%,
    rgba(28, 45, 66, 0.04) 45%,
    transparent 70%
  );
}
.bg__rule {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(28, 45, 66, 0.014) 0 1px,
    transparent 1px 160px
  );
  mask-image: linear-gradient(to bottom, transparent, #000 24%, #000 72%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 24%, #000 72%, transparent);
}

/* ── 4. Header ────────────────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(243, 241, 237, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink-500);
}
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-weight: 700; font-size: 0.95rem; letter-spacing: -0.01em; }
.brand__sub {
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
}

/* Language switcher (client-side, so buttons rather than links) */
.lang { display: inline-flex; align-items: center; gap: 0.15rem; }
.lang__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  background: none;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color 0.15s var(--ease), background 0.15s var(--ease);
}
.lang__link:hover { color: var(--ink-500); background: var(--brand-50); }
.lang__link[aria-pressed="true"] { color: var(--ink-500); }
.lang__sep { color: var(--border); font-size: 0.75rem; user-select: none; }

/* ── 5. Layout primitives ─────────────────────────────────────────────────── */
main { flex: 1 0 auto; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 1.5rem; }

/* ── 6. Hero ──────────────────────────────────────────────────────────────── */
.hero { padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(2.5rem, 6vw, 4.5rem); text-align: center; }
.hero__inner { max-width: 780px; margin: 0 auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.42rem 0.85rem 0.42rem 0.75rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brand-700);
  box-shadow: var(--shadow-sm);
}
.eyebrow__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand-600);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(160, 115, 66, 0.45); }
  70%  { box-shadow: 0 0 0 9px rgba(160, 115, 66, 0); }
  100% { box-shadow: 0 0 0 0 rgba(160, 115, 66, 0); }
}

.hero h1 {
  margin: 1.35rem 0 0;
  font-size: clamp(2.1rem, 5.4vw, 3.65rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--ink-500);
  text-wrap: balance;
}
.hero h1 .hl {
  background: linear-gradient(180deg, var(--brand-600), var(--brand-800));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  margin: 1.15rem auto 0;
  max-width: 640px;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.62;
  color: var(--text-secondary);
  text-wrap: pretty;
}
.lede strong { color: var(--ink-600); font-weight: 600; }

/* ── 7. CTAs ──────────────────────────────────────────────────────────────── */
.cta-row {
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s var(--ease), background 0.15s var(--ease),
    border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn--primary {
  background: var(--ink-500);
  color: var(--text-inverse);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover { background: var(--ink-600); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--ghost { background: transparent; color: var(--ink-500); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--brand-500); background: var(--brand-50); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* DSGVO / Art. 13 information under the launch-notification CTA. */
.cta-note {
  max-width: 620px;
  margin: 1.15rem auto 0;
  font-size: 0.83rem;
  line-height: 1.55;
  color: var(--text-secondary);
  text-align: center;
  text-wrap: pretty;
}
.cta-note a { color: var(--brand-700); text-decoration: underline; text-underline-offset: 2px; }

/* ── 8. Integration strip ─────────────────────────────────────────────────── */
.proof {
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(250, 249, 246, 0.55);
}
.proof__title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  text-align: center;
}
.proof__list {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.55rem 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-600);
}
.proof__list li { display: inline-flex; align-items: center; gap: 1.15rem; }
.proof__list li + li::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--brand-200);
  flex: none;
}

/* ── 9. Sections ──────────────────────────────────────────────────────────── */
.section { padding: clamp(3rem, 6.5vw, 5rem) 0; }

.section__head { max-width: var(--measure); margin: 0 auto 2.5rem; text-align: center; }
.section__head--left { margin-left: 0; text-align: left; max-width: 620px; }
.section__head h2 {
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  font-weight: 800;
  letter-spacing: -0.028em;
  line-height: 1.15;
  color: var(--ink-500);
  text-wrap: balance;
}
.section__head p { margin-top: 0.7rem; font-size: 1rem; line-height: 1.62; color: var(--text-secondary); }

/* Feature cards */
.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 860px) { .grid { grid-template-columns: repeat(4, 1fr); } }
.card {
  padding: 1.6rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand-200); }
.card__icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  margin-bottom: 1rem;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: var(--radius-md);
  color: var(--brand-700);
}
.card__icon svg { width: 21px; height: 21px; }
.card h3 { font-size: 1.02rem; font-weight: 700; letter-spacing: -0.01em; color: var(--ink-500); }
.card p { margin-top: 0.5rem; font-size: 0.9rem; line-height: 1.6; color: var(--text-secondary); }

/* ── 10. Ink band: how it works ───────────────────────────────────────────── */
.section--ink { position: relative; background: var(--ink-600); color: var(--on-ink); }
.section--ink .section__head h2 { color: var(--on-ink); }
.section--ink .section__head p { color: var(--on-ink-muted); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3rem); }
.step { padding-top: 1.5rem; border-top: 1px solid var(--hairline); }
.step:first-child { border-top-color: var(--hairline-strong); }
.step__num {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  border: 1px solid rgba(197, 144, 85, 0.5);
  background: rgba(197, 144, 85, 0.14);
  color: #D6A466; /* 5.6:1 on the ink band */
  font-size: 0.85rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.step h3 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.012em; color: var(--on-ink); }
.step p { margin-top: 0.55rem; font-size: 0.92rem; line-height: 1.65; color: var(--on-ink-muted); }

/* ── 11. Trust / standards grid ───────────────────────────────────────────── */
.trust { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 3rem; }
.trust__item { padding: 1.6rem 0 1.7rem; border-top: 1px solid var(--border); }
.trust__item h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink-500);
}
.trust__item h3::before {
  content: "";
  flex: none;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-500);
}
.trust__item p {
  margin-top: 0.5rem;
  padding-left: 1.6rem;
  font-size: 0.91rem;
  line-height: 1.62;
  color: var(--text-secondary);
}

/* ── 12. FAQ ──────────────────────────────────────────────────────────────── */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  cursor: pointer;
  padding: 0.95rem 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 { display: inline; font-size: 1rem; font-weight: 700; color: var(--ink-500); }
.faq-item summary::after {
  content: "+";
  margin-left: auto;
  color: var(--brand-700);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item > p {
  margin: 0 0 1rem;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 64ch;
}

/* ── 13. Closing CTA ──────────────────────────────────────────────────────── */
.section--closing { padding-bottom: clamp(3.5rem, 8vw, 6rem); }
.closing {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2rem, 4.5vw, 3.25rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.closing h2 {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.026em;
  color: var(--ink-500);
}
.closing p { margin-top: 0.7rem; font-size: 0.98rem; color: var(--text-secondary); }

/* ── 14. Footer ───────────────────────────────────────────────────────────── */
.footer { flex: none; border-top: 1px solid var(--border); background: rgba(250, 249, 246, 0.6); }
.footer__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; }
.footer a {
  text-decoration: none;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  transition: color 0.15s var(--ease);
}
.footer a:hover { color: var(--brand-700); text-decoration: underline; }
.footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.65rem;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--brand-700);
}

/* ── 15. Legal pages (Impressum / Datenschutz) ────────────────────────────── */
.doc { padding: clamp(2.5rem, 6vw, 4rem) 0 4rem; }
.doc__inner { max-width: 760px; margin: 0 auto; }
.doc h1 {
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink-500);
}
.doc .doc__sub {
  margin-top: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
}
.doc h2 { margin: 2rem 0 0.6rem; font-size: 1.1rem; font-weight: 700; color: var(--ink-500); }
.doc h3 { margin: 1.2rem 0 0.4rem; font-size: 1rem; font-weight: 700; color: var(--ink-500); }
.doc p, .doc li { color: var(--text-secondary); line-height: 1.7; font-size: 0.95rem; }
.doc p + p { margin-top: 0.75rem; }
.doc ul { margin-top: 0.6rem; padding-left: 1.1rem; list-style: disc; }
.doc ul li { margin-top: 0.3rem; }
.doc a { color: var(--brand-700); }
.doc .back { display: inline-block; margin-top: 2.5rem; font-weight: 600; font-size: 0.9rem; }
.doc .note {
  background: var(--brand-50);
  border: 1px dashed var(--brand-200);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  margin-top: 1.4rem;
  color: var(--brand-900);
  font-size: 0.88rem;
}

/* ── 16. Reveal-on-load (staggered) ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(14px); animation: reveal 0.7s var(--ease) forwards; }
.reveal--1 { animation-delay: 0.05s; }
.reveal--2 { animation-delay: 0.14s; }
.reveal--3 { animation-delay: 0.23s; }
.reveal--4 { animation-delay: 0.32s; }
.reveal--5 { animation-delay: 0.41s; }
@keyframes reveal { to { opacity: 1; transform: none; } }

/* ── 17. Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr; column-gap: 0; }
}
@media (max-width: 560px) {
  :root { --header-h: 62px; }
  .brand__sub { display: none; }
  .grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .proof__list { flex-direction: column; gap: 0.6rem; }
  .proof__list li + li::before { display: none; }
}

/* ── 18. Reduced motion ───────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ── 19. Print ────────────────────────────────────────────────────────────── */
@media print {
  .bg, .header, .cta-row, .footer { display: none; }
  body { background: #fff; }
  .section--ink { background: #fff; color: #000; }
  .section--ink .section__head h2, .step h3 { color: #000; }
  .section--ink .section__head p, .step p { color: #333; }
}

/* ── 20. (removed) ───────────────────────────────────────────────────────── */
/* The legal pages were migrated from the old .page/.legal shell to the shared
   .doc layout (section 15), so those rules were deleted. */


