/* Copyright (c) 2025-2026 Drawoble. */

/*
 * Shared stylesheet for the published legal / disclosure pages under
 * public/legal/ and public/security/. Extracted from the v0.8 PR-01 security
 * policy pages, which carried an identical inline copy each, so the legal
 * surface has ONE design source.
 *
 * Plain same-origin CSS: the production CSP allows style-src 'self', the file
 * is served verbatim by nginx out of public/, and no page here loads any
 * JavaScript. That constraint is the whole reason this file exists in the
 * shape it does, and it is not relaxed below — there is no script, no webfont
 * host, no third-party anything. A legal page is the one surface that must
 * still render when everything else is broken.
 *
 * ---------------------------------------------------------------------------
 * THE VALUES BELOW ARE A COPY. The source is `drawoble-web`, in
 * `app/globals.css` under `@theme`, where the marketing site declares the same
 * tokens by name. The two repositories deliberately share no code, so the
 * price of that split is this block: when a token changes there, it changes
 * here by hand. Nothing else in this file should carry a raw colour, and since
 * 2026-07-31 nothing should carry a raw duration or easing curve either — the
 * site grew a motion vocabulary and the four values these pages use are copied
 * down with the rest.
 *
 * Why these pages wear the site's language at all: they are the public face of
 * the product for anyone reading them, and the neutral typography this file
 * used to carry read as a word processor export dropped next to a designed
 * site. The prose is unchanged — this is a skin, not an edit.
 *
 * The design source is the `Claude Design` handoff bundle, held in
 * `drawoble-web` under `claude-design-import/`, whose `privacy.html` draws
 * exactly this: dark ground with a grain wash, a 760px measure, an uppercase
 * eyebrow over a heavy title, justified body at two-thirds ink, and rules
 * carried by hairline borders rather than boxes. Its background is a WebGL
 * shader; this file uses the CSS grain the same bundle falls back to, because
 * a legal page does not get to depend on JavaScript.
 */

/* ---- Typeface ------------------------------------------------------------
 * Self-hosted, same origin, one file. The variable face covers every weight
 * the pages use, so there is no second request and no font host to trust.
 */
@font-face {
  font-family: "Geist";
  src: url("/fonts/Geist-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Dark only. The site has one ground and these pages sit on it; offering a
     light variant would be a second design nobody drew. */
  color-scheme: dark;

  --bg: #2a2a29; /* --color-dark */
  --fg: #ededeb; /* --color-dark-ink */
  --muted: rgba(237, 237, 235, 0.65);
  --faint: rgba(237, 237, 235, 0.3);
  --rule: rgba(255, 255, 255, 0.1);
  --card: rgba(255, 255, 255, 0.03);
  --accent: #ededeb;
  --link: #ededeb;

  --font: "Geist", ui-sans-serif, system-ui, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* ---- Motion ------------------------------------------------------------
   * Copied by hand from the site's `@theme`, same as the colours above and
   * for the same reason. These pages carry three of the site's interactions —
   * the nav's control skin, the footer's links, and a prose link's underline —
   * and until 2026-07-31 they carried the numbers rather than the names.
   *
   * Only the tokens these pages actually use are here. The site's set is
   * larger; copying the rest would put values in this file with nothing to
   * apply them to, which is how a copy starts drifting.
   */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-press: 0.12s;
  --dur-underline: 0.2s;
  --dur-skin: 0.35s;
  --delay-hover-out: 0.08s;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;

  /*
   * No rubber band, on either axis. Copied from the site (`app/globals.css`,
   * 2026-07-31), and it applies here for the same structural reason: `.bg` is
   * `position: fixed`, so the ground stops at the viewport. Flick past either
   * end and the band that opens is the page canvas, not the field — flat `--bg`
   * with neither the shader nor the grid on it, which reads as the background
   * dropping out at the edge of a document that is several screens long.
   *
   * `none` and not `contain`: contain stops the chaining but keeps the bounce,
   * and the bounce is what exposes the band.
   *
   * This does not cover the tables. A chain starts at the inner scroller, so it
   * is `.table-scroll` that has to refuse to hand its momentum up — see there.
   */
  overscroll-behavior: none;
}

/*
 * The ground.
 *
 * Two layers over the fill, stacked the way the site stacks them: the shader's
 * field, then the CAD grid on top of it. `legal-bg.js` draws a canvas into
 * `.bg-field` — the same shader and the same tuning constants the rest of the
 * site runs — and the gradients declared on that element are what stands there
 * until it does, or forever if it never does.
 *
 * That fallback is the whole reason the field is an element rather than a
 * `body` background: a legal page must render with no script at all, so the
 * still version has to be a real layer the canvas can simply cover, not a
 * thing that disappears when JavaScript is added. Blocked script, no WebGL2,
 * refused context — the page is identical minus the motion.
 *
 * The still gradients are the shader's own three colours (`#575b64`,
 * `#404742`, `#615f5e`, from the bundle's TWEAKS block) placed roughly where
 * the warp settles, sampled against the running shader until the worst channel
 * was within 6.
 */
.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-field {
  position: absolute;
  inset: 0;
  background-color: var(--bg);
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>"),
    linear-gradient(
      90deg,
      rgba(84, 92, 122, 0.62) 0%,
      rgba(84, 92, 122, 0.3) 34%,
      rgba(84, 92, 122, 0) 58%
    ),
    linear-gradient(
      270deg,
      rgba(112, 110, 104, 0.5) 0%,
      rgba(112, 110, 104, 0.16) 30%,
      rgba(112, 110, 104, 0) 52%
    ),
    radial-gradient(120% 120% at 58% 58%, rgba(70, 78, 72, 0.55) 0%, rgba(70, 78, 72, 0) 72%),
    linear-gradient(180deg, rgba(237, 237, 235, 0.02) 0%, rgba(237, 237, 235, 0.005) 100%);
}

/* The shader's canvas, once it exists. */
.bg-field canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/*
 * The CAD grid, over the field — the site puts its own grid element over the
 * shader in exactly this order. Under the grain it was invisible: declared,
 * painted, and eaten by 55% noise.
 */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 18px 18px;
}

/*
 * Content rides above the field.
 *
 * `relative`, not `static` — a static element ignores `z-index` entirely, so
 * writing one on it does nothing and the fixed field paints straight over the
 * top of it. That is what swallowed the wordmark: the bar was declared above
 * the background and rendered underneath it.
 *
 * `relative` is also what keeps the bar out of the way: it stays in flow, so
 * it scrolls off with the page instead of pinning itself the way `sticky`
 * would. The site only ever shows this bar near the top.
 */
.site-nav,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-size: 14.5px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* ---- Site bar ------------------------------------------------------------
 * The design puts the site's own nav over these pages, and without it a legal
 * document is a dead end — the reader has arrived from the site and has no way
 * back to it.
 *
 * It is static markup, not the site's component: no language menu (that would
 * need script, and these pages already carry a `.langbar` for the one
 * translation that exists), no scroll-hiding, no first-visit signup swap. Just
 * the mark, three destinations and the way in. The wordmark is one cached
 * request rather than 3KB of inline SVG repeated across thirteen documents.
 *
 * Login points at the app because that is where signing in happens; everything
 * else points at the marketing site, absolutely, since these pages are served
 * from a different origin than the one they link back to.
 */
/*
 * At the top of the page and nowhere else.
 *
 * Not sticky. On the site the bar is only ever visible near the top — it
 * slides away once you are into the page — and a legal document is a long
 * scroll, so pinning it here would leave a bar on screen that the rest of the
 * site never shows. Static means it scrolls off and stays off, which is the
 * same result without the script the site uses to get it.
 */
.site-nav {
  background: transparent;
}

/*
 * Full width, like the site's bar — the 5vw padding is the whole inset.
 *
 * This carried a `max-width: 1440px; margin: 0 auto` from the design bundle,
 * which the site's own nav never had. Above 1440 that centred the bar inside a
 * narrower box and pushed the wordmark a further half-gutter in: 48px on a
 * 1536px window, 240px on 1920. Side by side with the site the two logos sat at
 * different x, which is exactly the seam these pages exist to hide.
 */
.site-nav nav {
  height: 72px;
  padding: 0 5vw 14px;
  display: flex;
  align-items: flex-end;
  gap: 24px;
}

.site-nav .logo {
  display: flex;
  align-items: flex-end;
  flex-shrink: 0;
  border: none;
  padding: 0;
  position: relative;
}

.site-nav .logo img {
  height: 30px;
  width: auto;
  display: block;
}

/*
 * The beta chip over the wordmark, copied from the site nav's `.beta`
 * (Nav.module.css) — the roadmap's "in progress" badge skin at logo scale.
 * The offsets are tuned to the ink, not the box: the crosshair extends the
 * wordmark SVG ~11px above the letterforms at this height, so the chip pulls
 * into the box to rest just over the letters.
 */
.site-nav .beta {
  position: absolute;
  bottom: calc(100% - 9px);
  left: 22px;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1f1f1e; /* --color-ink */
  background: #f08a3c;
  padding: 3px 6px;
  border-radius: 2px;
  line-height: 1;
  white-space: nowrap;
}

.site-nav ul {
  display: flex;
  align-items: flex-end;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-direction: row;
}

.site-nav li {
  padding-left: 0;
  color: inherit;
}

/* The row markers belong to prose lists, not to this one. */
.site-nav li::before {
  content: none;
}

.site-nav ul a {
  display: inline-block;
  min-width: 72px;
  padding: 10px 8px 5px;
  border: none;
  border-radius: 3px;
  text-align: center;
  text-transform: capitalize;
  font-size: 15px;
  line-height: 1;
  color: var(--fg);
  transform: translateY(3px);
  transition:
    background-color var(--dur-skin) var(--ease-standard),
    color var(--dur-skin) var(--ease-standard),
    scale var(--dur-press) var(--ease-standard);
}

.site-nav .login {
  margin-left: auto;
  min-width: 90px;
  padding: 7px 12px;
  border: 1px solid var(--fg);
  border-radius: 3px;
  text-align: center;
  text-transform: capitalize;
  font-size: 15px;
  line-height: 1;
  color: var(--fg);
  transform: translateY(6px);
  transition:
    background-color var(--dur-skin) var(--ease-standard),
    color var(--dur-skin) var(--ease-standard),
    border-color var(--dur-skin) var(--ease-standard),
    scale var(--dur-press) var(--ease-standard);
}

/*
 * The bar's own accent skin, matching the site's: a light chip with dark ink,
 * not the hairline the prose links carry. Behind `any-hover` for the same
 * reason the site does it — an iPad with a trackpad reports `hover: none`
 * while its pointer still fires `:hover`.
 */
@media (any-hover: hover) {
  .site-nav ul a:hover,
  .site-nav .login:hover {
    background: var(--color-ivory, #f8f8f8);
    color: #1f1f1e;
    border-color: var(--color-ivory, #f8f8f8);
  }
}

.site-nav ul a:active,
.site-nav .login:active {
  scale: 0.95;
  background: var(--color-ivory, #f8f8f8);
  color: #1f1f1e;
  border-color: var(--color-ivory, #f8f8f8);
}

@media (max-width: 640px) {
  .site-nav nav {
    gap: 10px;
    padding: 0 4vw 14px;
  }

  .site-nav .logo img {
    height: 22px;
  }

  .site-nav ul a {
    min-width: 0;
    padding: 10px 4px 5px;
    font-size: 13px;
  }

  .site-nav .login {
    min-width: 0;
    padding: 7px 8px;
    font-size: 13px;
  }
}

/* ---- Document ------------------------------------------------------------ */

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 5vw 120px;
}

/*
 * Wider measure for a page whose payload is a six-column table (the
 * sub-processor list). Prose keeps the reading measure; only the vendor table
 * earns the extra width, and it still scrolls inside .table-scroll on a phone
 * rather than pushing the body sideways.
 */
main.wide {
  max-width: 1100px;
}

/* ---- Document head ------------------------------------------------------- */

header.doc {
  border-bottom: none;
  padding-bottom: 32px;
  margin-bottom: 48px;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 500;
  color: var(--faint);
  margin: 0 0 18px;
}

h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.lede {
  font-size: 19px;
  line-height: 1.4;
  color: var(--muted);
  margin: 0;
}

/* ---- Sections ------------------------------------------------------------ */

h2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 48px 0 10px;
}

h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.005em;
  margin: 24px 0 8px;
}

/*
 * Justified with hyphens, which is the bundle's own setting for this page and
 * the reason a legal column reads as typeset rather than dumped. It needs the
 * hyphenation to avoid rivers at this measure, so the two are one decision.
 */
p {
  margin: 0 0 10px;
  color: var(--muted);
  text-align: justify;
  text-wrap: pretty;
  hyphens: auto;
}

p strong,
li strong,
dd strong {
  color: var(--fg);
  font-weight: 600;
}

/*
 * List markers are a hairline rule, not a bullet — the same mark the site uses
 * down the page. Drawn rather than typed so it aligns to the first line's
 * optical centre at any size.
 */
ul,
ol {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

li {
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}

ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 1px;
  background: var(--faint);
}

/* An ordered list keeps its number, in the eyebrow's voice. */
ol {
  counter-reset: item;
}

ol li::before {
  content: counter(item) ".";
  counter-increment: item;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--faint);
  line-height: 2;
}

/*
 * Links carry a hairline under the text rather than an underline and a colour.
 * A blue link on this ground is the single loudest thing on the page, and
 * these documents are almost entirely links.
 */
a {
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1px;
  transition: border-color var(--dur-underline) ease;
}

@media (any-hover: hover) {
  a:hover {
    border-color: var(--fg);
  }
}

code {
  font-family: var(--mono);
  font-size: 0.9em;
  background: var(--card);
  padding: 0.1em 0.35em;
  border-radius: 3px;
}

/* ---- Blocks -------------------------------------------------------------- */

/*
 * One surface treatment for every block: a barely-there fill, no border, no
 * radius beyond the site's 3px. The old versions were cards with rules around
 * them, which is what made the page read as a form.
 */
.callout,
nav.toc,
pre,
.empty {
  background: var(--card);
  border: none;
  border-radius: 3px;
  margin: 24px 0;
}

.callout {
  padding: 20px 24px;
  border-left: 2px solid var(--fg);
}

.callout p:last-child {
  margin-bottom: 0;
}

nav.toc {
  padding: 20px 24px;
  margin: 24px 0 48px;
}

/*
 * Only the first paragraph is the box's label. The privacy policy puts a note
 * after its list — "items 1-5 are the KVKK Article 10 mapping" — and setting
 * that in spaced uppercase turned an explanation into a wall.
 */
nav.toc > p:first-child {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  text-align: left;
  margin: 0 0 10px;
}

nav.toc > p:first-child + ol {
  margin-bottom: 0;
}

nav.toc p:not(:first-child) {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--muted);
  text-align: left;
}

nav.toc ol {
  margin: 0;
}

pre {
  padding: 20px 24px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  white-space: pre-wrap;
  overflow-wrap: break-word;
}

.empty {
  padding: 24px;
  color: var(--muted);
}

/* ---- Tables -------------------------------------------------------------- */

.table-scroll {
  overflow-x: auto;
  /*
   * The row's momentum stops at the row. Every table here is `min-width: 42rem`
   * against a 6vw-inset column, so on a phone all of them scroll sideways, and
   * a fast flick that runs off the end chains into the document and drags the
   * whole page with it. `overscroll-behavior` on `html` cannot prevent this —
   * the chain starts at the inner scroller and is governed there.
   *
   * `contain` and not `none`: this axis has no rubber band to hide, only the
   * chaining to stop, and `contain` is the narrower of the two.
   *
   * The site does the same on its comparison table and its narrow nav row
   * (`Compare.module.css`, `Nav.module.css`, 2026-07-31).
   */
  overscroll-behavior-x: contain;
  margin: 24px 0;
  border: none;
  border-radius: 3px;
  background: var(--card);
}

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 42rem;
  font-size: 13px;
}

th,
td {
  text-align: left;
  vertical-align: top;
  padding: 10px 14px;
  border-bottom: 1px solid var(--rule);
  color: var(--muted);
}

th {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  background: transparent;
  white-space: nowrap;
}

tbody tr:last-child td {
  border-bottom: none;
}

/*
 * Retention / data-class tables inside the policy prose are narrow enough to
 * wrap; they opt out of the min-width the vendor table needs.
 */
table.compact {
  min-width: 0;
}

/* ---- Meta, language bar, document footer --------------------------------- */

/*
 * `.meta` does three jobs in these documents, and only two of them are a
 * stamp: the effective-date line under a title, and the Turkish term beside an
 * English heading. The third is ordinary prose — "security reports have their
 * own address, do not send data requests there" — and setting that in spaced
 * uppercase makes the one sentence a reader most needs to parse the hardest
 * one on the page. So the base is quiet small text, and the stamp treatment is
 * asked for by position rather than assumed.
 */
.meta {
  font-size: 12px;
  color: var(--faint);
  text-align: left;
}

header.doc .meta,
h2 .meta,
h3 .meta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

header.doc .meta {
  margin-top: 18px;
  line-height: 1.9;
}

/* Inline beside a heading, so it must not inherit the heading's weight. */
h2 .meta,
h3 .meta {
  font-weight: 500;
}

.langbar {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 48px;
}

footer.doc {
  border-top: 1px solid var(--rule);
  margin-top: 64px;
  padding-top: 24px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
}

footer.doc p {
  color: var(--faint);
  text-align: left;
  margin: 0 0 6px;
}

footer.doc a {
  color: var(--faint);
}

@media (any-hover: hover) {
  footer.doc a:hover {
    color: var(--fg);
    border-color: var(--fg);
  }
}

/* ---- Site footer ---------------------------------------------------------
 * The design closes a legal page the way it closes every other page: a dense
 * link band, then the wordmark at signature scale. Without it the document
 * simply stops, and the reader who arrived from the site has nothing to leave
 * by — the same dead end the missing nav left at the top.
 *
 * Values are the bundle's own (`.sec-utility`, `.util-grid`, `.wordmark`): a
 * 20%-black band over the ground, columns sized to their content, and the mark
 * pulled up into the band so its ascenders overlap it.
 */
.site-footer {
  position: relative;
  z-index: 1;
  margin-top: 96px;
}

.foot-utility {
  background: rgba(0, 0, 0, 0.2);
  padding: 32px 0 24px;
}

.foot-grid {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 56px;
  padding: 0 5vw;
  justify-content: start;
}

.foot-grid h3 {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #e6e6e2;
  text-transform: capitalize;
  margin: 0 0 14px;
}

.foot-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.foot-grid li {
  padding: 0;
  color: #bdbdb8;
  font-size: 15px;
  line-height: 1;
  text-transform: capitalize;
  letter-spacing: -0.005em;
}

/* The prose list's hairline marker has no business in a link column. */
.foot-grid li::before {
  content: none;
}

.foot-grid a.footlink {
  display: inline-block;
  padding: 5px 8px 5px 10px;
  margin-left: -10px;
  border: none;
  border-radius: 3px;
  background: transparent;
  color: #bdbdb8;
  font-weight: 400;
  transition:
    background-color var(--dur-skin) var(--ease-standard),
    color var(--dur-skin) var(--ease-standard),
    scale var(--dur-press) var(--ease-standard);
  transition-delay: var(--delay-hover-out), var(--delay-hover-out), 0s;
}

@media (any-hover: hover) {
  .foot-grid a.footlink:hover {
    background: var(--color-ivory, #f8f8f8);
    color: #1f1f1e;
    transition-delay: 0s;
  }
}

.foot-grid a.footlink:active {
  scale: 0.95;
  background: var(--color-ivory, #f8f8f8);
  color: #1f1f1e;
}

.foot-signature {
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 5vw 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.foot-signature img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -56px;
}

/* ---- Narrow screens ------------------------------------------------------
 * The design was drawn at a fixed width and never met a phone. Nothing is
 * hidden: the measure tightens and the display sizes step down.
 */
@media (max-width: 640px) {
  main {
    padding: 64px 6vw 88px;
  }

  h1 {
    font-size: 32px;
  }

  .lede {
    font-size: 17px;
  }

  /* Justification needs room to distribute; at this measure it opens rivers
     instead, so the column goes ragged-right. */
  p {
    text-align: left;
    hyphens: manual;
  }

  /* Three content-sized columns do not fit a phone; they stack. */
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 6vw;
  }

  /* The mark's overlap is measured against its desktop height. */
  .foot-signature img {
    margin-top: -18px;
  }
}

/* ---- Reduced motion ------------------------------------------------------
 * The floor, copied from the site (`app/globals.css`, 2026-07-31).
 *
 * Over there this replaced fifteen declarations that each had to remember the
 * preference and did not. These pages carry three of the same interactions,
 * and none of them honoured it either — the nav's skin, the footer's links and
 * a prose link's underline all ran at full length under `reduce`.
 *
 * `0.01ms` rather than `none`, so `transitionend` still fires. `!important`
 * because it has to beat every rule above regardless of specificity; this file
 * uses `!important` nowhere else, which is what makes that safe, and it is
 * worth re-checking before adding one.
 *
 * `legal-bg.js` already handles the preference itself — it draws a single
 * still frame instead of starting its loop — so nothing here needs to reach
 * the background.
 */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
}
