@charset "utf-8";
/* ==========================================================================
   TRIIVON S.R.L. - gptpostllm.oraglegpt.org
   Shared design system. Used by the landing pages AND by every legal page.

   Aesthetic: "registry extract". The company's public obligation is to be
   verifiable, so the page is built like an official register document -
   warm paper, ink, hairline rules, numbered sections, a seal-red accent,
   and identifiers set in monospace as tabular record data.

   SELF-CONTAINED BY CONTRACT. No @import, no remote font, no remote image.
   Every font is a locally installed family; the only url() values are
   inline data: URIs. A strict Content-Security-Policy must not break this.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Type. Georgia carries the editorial authority and ships on effectively
     every desktop and mobile OS; the Liberation/Nimbus fallbacks cover Linux. */
  --font-display: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino,
    "Liberation Serif", "Nimbus Roman", "Times New Roman", serif;
  --font-body: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino,
    "Liberation Serif", "Nimbus Roman", "Times New Roman", serif;
  --font-mono: ui-monospace, "SF Mono", SFMono-Regular, "Cascadia Mono", Menlo,
    Consolas, "DejaVu Sans Mono", "Liberation Mono", monospace;

  /* Scale, fluid. */
  --step--2: clamp(0.69rem, 0.67rem + 0.11vw, 0.75rem);
  --step--1: clamp(0.83rem, 0.80rem + 0.15vw, 0.92rem);
  --step-0: clamp(1rem, 0.96rem + 0.20vw, 1.13rem);
  --step-1: clamp(1.20rem, 1.13rem + 0.35vw, 1.42rem);
  --step-2: clamp(1.44rem, 1.32rem + 0.60vw, 1.90rem);
  --step-3: clamp(1.73rem, 1.53rem + 1.00vw, 2.60rem);
  --step-4: clamp(2.07rem, 1.74rem + 1.65vw, 3.60rem);
  --step-5: clamp(2.49rem, 1.94rem + 2.75vw, 5.00rem);

  /* Rhythm. */
  --gutter: clamp(1.25rem, 0.9rem + 1.7vw, 2.75rem);
  --measure: 64ch;
  --shell: 76rem;

  /* Light scheme: warm laid paper and ink. */
  --paper: #f6f2ea;
  --paper-raised: #fffdf8;
  --paper-sunk: #efe9dd;
  --ink: #16140e;
  --ink-muted: #57503f;
  --ink-faint: #6b6453;
  --rule: #d8d0be;
  --rule-strong: #b9af98;
  --accent: #9e211a;
  --accent-ink: #7d1a14;
  --accent-wash: rgba(158, 33, 26, 0.07);
  --on-accent: #fffdf8;
  --focus: #9e211a;
  --shadow-lift: 0 1px 0 rgba(22, 20, 14, 0.04), 0 12px 32px -18px rgba(22, 20, 14, 0.34);
  --grain-opacity: 0.32;
  --scheme: light;
}

/* Dark scheme. Follows the OS by default. */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper: #100f0c;
    --paper-raised: #191712;
    --paper-sunk: #0a0908;
    --ink: #efe8d9;
    --ink-muted: #a89f8b;
    --ink-faint: #8e8674;
    --rule: #302c24;
    --rule-strong: #453f34;
    --accent: #e2695c;
    --accent-ink: #f0897c;
    --accent-wash: rgba(226, 105, 92, 0.10);
    --on-accent: #14120d;
    --focus: #e2695c;
    --shadow-lift: 0 1px 0 rgba(0, 0, 0, 0.5), 0 16px 40px -20px rgba(0, 0, 0, 0.85);
    --grain-opacity: 0.20;
    --scheme: dark;
  }
}

/* Explicit override wins in BOTH directions, so a viewer-level theme toggle
   can force either scheme regardless of the OS preference. */
:root[data-theme="dark"] {
  --paper: #100f0c;
  --paper-raised: #191712;
  --paper-sunk: #0a0908;
  --ink: #efe8d9;
  --ink-muted: #a89f8b;
  --ink-faint: #8e8674;
  --rule: #302c24;
  --rule-strong: #453f34;
  --accent: #e2695c;
  --accent-ink: #f0897c;
  --accent-wash: rgba(226, 105, 92, 0.10);
  --on-accent: #14120d;
  --focus: #e2695c;
  --shadow-lift: 0 1px 0 rgba(0, 0, 0, 0.5), 0 16px 40px -20px rgba(0, 0, 0, 0.85);
  --grain-opacity: 0.20;
  --scheme: dark;
}

:root[data-theme="light"] {
  --paper: #f6f2ea;
  --paper-raised: #fffdf8;
  --paper-sunk: #efe9dd;
  --ink: #16140e;
  --ink-muted: #57503f;
  --ink-faint: #6b6453;
  --rule: #d8d0be;
  --rule-strong: #b9af98;
  --accent: #9e211a;
  --accent-ink: #7d1a14;
  --accent-wash: rgba(158, 33, 26, 0.07);
  --on-accent: #fffdf8;
  --focus: #9e211a;
  --grain-opacity: 0.32;
  --scheme: light;
}

/* --------------------------------------------------------------------------
   2. Reset and base
   -------------------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  color-scheme: light dark;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background-color: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Paper grain. Inline SVG turbulence, so nothing is fetched. Purely
   decorative and inert to pointer and screen reader alike. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: var(--grain-opacity);
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) body::before { mix-blend-mode: screen; }
}
:root[data-theme="dark"] body::before { mix-blend-mode: screen; }

/* Everything real sits above the grain. */
header, main, footer { position: relative; z-index: 1; }

img, svg { max-width: 100%; height: auto; display: block; }

/* --------------------------------------------------------------------------
   3. Accessibility furniture
   -------------------------------------------------------------------------- */

.skip-link {
  position: absolute;
  left: var(--gutter);
  top: 0;
  z-index: 100;
  transform: translateY(-140%);
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-mono);
  font-size: var(--step--1);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

:where(a, button, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 2px;
}

.visually-hidden {
  position: absolute !important;
  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;
}

/* --------------------------------------------------------------------------
   4. Layout primitives
   -------------------------------------------------------------------------- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.prose { max-width: var(--measure); }

.section {
  padding-block: clamp(3.5rem, 2.4rem + 5vw, 7.5rem);
  border-top: 1px solid var(--rule);
}

.section:first-of-type { border-top: 0; }

/* The document-style section marker: a monospace ordinal and an eyebrow,
   sitting in the left margin on wide screens and stacking on narrow ones. */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem 3rem;
  margin-bottom: clamp(2rem, 1.4rem + 2.4vw, 3.5rem);
}

.section-ordinal {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.section-ordinal::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--rule-strong), transparent);
}

/* The ordinal sits above the heading at every width. An earlier draft pushed
   it into a left margin column, which left every heading indented relative to
   the content beneath it and read as a mistake rather than as a margin note. */

/* --------------------------------------------------------------------------
   5. Typography
   -------------------------------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.018em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 { font-size: var(--step-5); letter-spacing: -0.03em; }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); letter-spacing: -0.01em; }

p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--ink-muted);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 1rem;
}

.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

a { color: var(--accent-ink); text-underline-offset: 0.18em; text-decoration-thickness: 1px; }
a:hover { color: var(--accent); }

/* --------------------------------------------------------------------------
   6. Masthead
   -------------------------------------------------------------------------- */

.masthead {
  border-bottom: 1px solid var(--rule);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px);
  z-index: 20;
}

/* Sticky only where the bar stays one row. On a phone the nav wraps, and a
   pinned three-row masthead would eat a third of the viewport. */
@media (min-width: 48rem) {
  .masthead { position: sticky; top: 0; }
}

.masthead-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 4.5rem;
  flex-wrap: wrap;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}

.wordmark-seal { width: 2.1rem; height: 2.1rem; flex: none; }

.wordmark-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.wordmark-text .suffix {
  font-family: var(--font-mono);
  font-size: 0.62em;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
  margin-left: 0.4rem;
  vertical-align: 0.12em;
}

.masthead-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 0.4rem + 1.4vw, 1.9rem);
  flex-wrap: wrap;
}

.masthead-nav a {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--ink-muted);
  padding-block: 0.4rem;
  border-bottom: 1px solid transparent;
}

.masthead-nav a:hover { color: var(--ink); border-bottom-color: var(--accent); }

/* Below the sticky breakpoint the bar becomes three stacked rows. Tighten the
   row rhythm so the masthead stays a header rather than a screenful. */
@media (max-width: 47.99rem) {
  .masthead-inner {
    min-height: 0;
    padding-block: 0.85rem;
    gap: 0.7rem;
  }
  .masthead-nav { gap: 0.3rem 1.1rem; }
  .masthead-nav a { padding-block: 0.15rem; }
}

/* Language switch. Two static documents, one link between them. */
.lang-switch {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--rule-strong);
  border-radius: 3px;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: var(--step--2);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.lang-switch > * {
  padding: 0.4rem 0.65rem;
  text-decoration: none;
  color: var(--ink-muted);
  background: transparent;
  line-height: 1.4;
}

.lang-switch > a:hover { background: var(--accent-wash); color: var(--accent-ink); }

.lang-switch > [aria-current="true"] {
  background: var(--accent);
  color: var(--on-accent);
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */

.hero {
  padding-block: clamp(3.5rem, 2rem + 7vw, 8rem) clamp(3rem, 2rem + 4vw, 5.5rem);
  position: relative;
  overflow: hidden;
}

/* A faint engraved guilloche, echoing the register certificate. Decorative. */
.hero::after {
  content: "";
  position: absolute;
  inset-inline-end: -14rem;
  inset-block-start: -8rem;
  width: 42rem;
  height: 42rem;
  pointer-events: none;
  opacity: 0.5;
  background:
    repeating-radial-gradient(circle at 50% 50%,
      transparent 0 13px,
      var(--accent-wash) 13px 14px);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 38%, transparent 72%);
  mask-image: radial-gradient(circle at 50% 50%, #000 38%, transparent 72%);
}

.hero-grid {
  display: grid;
  gap: clamp(2.5rem, 1.5rem + 4vw, 4.5rem);
  position: relative;
  z-index: 1;
}

@media (min-width: 64rem) {
  .hero-grid { grid-template-columns: minmax(0, 1.55fr) minmax(19rem, 0.85fr); align-items: start; }
}

.hero h1 .accent { color: var(--accent); }

.hero-lede {
  font-size: var(--step-1);
  line-height: 1.52;
  color: var(--ink-muted);
  max-width: 46ch;
  margin-bottom: 2rem;
}

.actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1.4rem;
  font-family: var(--font-mono);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: transform 140ms ease, background-color 140ms ease, border-color 140ms ease;
}

.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn-primary:hover { background: var(--accent-ink); color: var(--on-accent); transform: translateY(-1px); }

.btn-ghost { border-color: var(--rule-strong); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-ink); transform: translateY(-1px); }

@media (prefers-reduced-motion: reduce) {
  .btn:hover { transform: none; }
}

/* The statutory stamp: the register identity treated as the hero artwork,
   because on this site the identity IS the product claim. */
.stamp {
  border: 1px solid var(--rule-strong);
  border-radius: 4px;
  background: var(--paper-raised);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}

.stamp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1.1rem;
  border-bottom: 1px solid var(--rule);
  background: var(--paper-sunk);
  font-family: var(--font-mono);
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.stamp-head .dot {
  width: 0.5rem; height: 0.5rem; border-radius: 50%;
  background: var(--accent); flex: none;
}

.stamp-body { padding: 0.35rem 1.1rem 1.1rem; }

.stamp-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.1rem 1rem;
  padding-block: 0.7rem;
  border-bottom: 1px dotted var(--rule);
}

.stamp-row:last-child { border-bottom: 0; }

@media (min-width: 26rem) {
  .stamp-row { grid-template-columns: 7.5rem minmax(0, 1fr); align-items: baseline; }
}

.stamp-row dt {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.stamp-row dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: var(--step--1);
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  word-break: break-word;
}

/* --------------------------------------------------------------------------
   8. Cards and grids
   -------------------------------------------------------------------------- */

.card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}

.card {
  padding: 1.6rem;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--paper-raised);
}

.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--ink-muted); font-size: var(--step--1); line-height: 1.6; }

.card-index {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.9rem;
}

/* --------------------------------------------------------------------------
   9. Connection ledger
   Two connection routes are two different acts a visitor performs, so they
   are two labelled groups, never one flat number.
   -------------------------------------------------------------------------- */

.ledger {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
}

.ledger-group {
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--paper-raised);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ledger-group.is-unavailable { background: var(--paper-sunk); }

.ledger-head {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--rule);
  border-top: 3px solid var(--accent);
}

.ledger-group.is-unavailable .ledger-head { border-top-color: var(--rule-strong); }

.ledger-count {
  font-family: var(--font-mono);
  font-size: var(--step-3);
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
  display: block;
}

.ledger-group.is-unavailable .ledger-count { color: var(--ink-muted); }

.ledger-head h3 { font-size: var(--step-0); margin: 0.55rem 0 0.35rem; }

.ledger-head p {
  margin: 0;
  font-size: var(--step--1);
  color: var(--ink-muted);
  line-height: 1.55;
}

.ledger-list {
  list-style: none;
  margin: 0;
  padding: 0.9rem 1.25rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.ledger-list li {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: 0.03em;
  padding: 0.3rem 0.55rem;
  border: 1px solid var(--rule-strong);
  border-radius: 3px;
  color: var(--ink-muted);
  background: var(--paper);
}

.ledger-group:not(.is-unavailable) .ledger-list li { color: var(--ink); }

.ledger-note {
  margin: 1.5rem 0 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--accent);
  background: var(--accent-wash);
  font-size: var(--step--1);
  line-height: 1.6;
  color: var(--ink-muted);
  border-radius: 0 3px 3px 0;
}

/* --------------------------------------------------------------------------
   10. Negative disclosure block
   The list of things the software does NOT do. Given the same visual weight
   as the capability list, deliberately.
   -------------------------------------------------------------------------- */

.denies { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }

.denies li {
  display: grid;
  grid-template-columns: 1.6rem minmax(0, 1fr);
  gap: 0 0.9rem;
  align-items: start;
  padding-block: 1.05rem;
  border-bottom: 1px solid var(--rule);
}

.denies li:first-child { border-top: 1px solid var(--rule); }

.denies .mark {
  font-family: var(--font-mono);
  font-size: var(--step-0);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.5;
}

.denies strong { display: block; font-weight: 700; }

.denies span {
  display: block;
  color: var(--ink-muted);
  font-size: var(--step--1);
  line-height: 1.58;
  margin-top: 0.2rem;
}

/* --------------------------------------------------------------------------
   11. Data table
   -------------------------------------------------------------------------- */

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--paper-raised);
}

table.data {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: var(--step--2);
  font-variant-numeric: tabular-nums;
  min-width: 34rem;
}

table.data caption {
  text-align: left;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid var(--rule);
  background: var(--paper-sunk);
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

table.data th, table.data td {
  text-align: left;
  padding: 0.6rem 1.1rem;
  border-bottom: 1px solid var(--rule);
}

table.data thead th {
  font-size: var(--step--2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
}

table.data tbody tr:last-child th,
table.data tbody tr:last-child td { border-bottom: 0; }

table.data tbody th { font-weight: 600; color: var(--ink); }
table.data td { color: var(--ink-muted); }
table.data .no { color: var(--ink-faint); }
table.data .yes { color: var(--accent-ink); font-weight: 700; }

/* --------------------------------------------------------------------------
   12. Contact
   -------------------------------------------------------------------------- */

/* Two by two rather than four across. Four narrow columns forced the office
   address and the product URL to break mid-word; a pair of wider cards lets
   both sit on one line. */
.contact-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 46rem) {
  .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.contact-card {
  padding: 1.6rem;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--paper-raised);
}

.contact-card .eyebrow { margin-bottom: 0.6rem; }

.contact-card a {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  word-break: break-word;
}

/* --------------------------------------------------------------------------
   13. Footer
   Shared with every legal page. The statutory identification block is the
   whole point of it, so it is set as record data, not as fine print.
   -------------------------------------------------------------------------- */

.site-footer {
  border-top: 3px solid var(--accent);
  background: var(--paper-sunk);
  padding-block: clamp(2.75rem, 2rem + 3vw, 4.5rem) 2rem;
  font-size: var(--step--1);
}

.footer-top {
  display: grid;
  gap: clamp(2rem, 1.4rem + 2.4vw, 3.5rem);
  padding-bottom: 2.25rem;
  border-bottom: 1px solid var(--rule);
}

@media (min-width: 60rem) {
  .footer-top { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); }
}

.footer-identity h2 {
  font-size: var(--step-1);
  margin-bottom: 0.35rem;
}

.footer-identity .footer-legal-form {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1.4rem;
}

/* The statutory identification block. */
.statutory {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
}

.statutory > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.05rem 1rem;
  padding-block: 0.55rem;
  border-bottom: 1px dotted var(--rule);
}

@media (min-width: 30rem) {
  .statutory > div { grid-template-columns: 10.5rem minmax(0, 1fr); align-items: baseline; }
}

.statutory dt {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.statutory dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: var(--step--2);
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  line-height: 1.55;
  word-break: break-word;
}

.statutory dd a { color: var(--ink); }
.statutory dd a:hover { color: var(--accent-ink); }

.footer-links {
  display: grid;
  gap: 1.75rem 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 10rem), 1fr));
  align-content: start;
}

.footer-links h3 {
  font-family: var(--font-mono);
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.85rem;
}

.footer-links ul { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 0.45rem; }

.footer-links a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: var(--step--1);
}

.footer-links a:hover { color: var(--accent-ink); text-decoration: underline; }

/* Consumer redress notice: ANPC and the EU SOL/ODR platform. */
.footer-redress {
  padding-block: 1.75rem;
  border-bottom: 1px solid var(--rule);
  display: grid;
  gap: 1rem;
}

@media (min-width: 48rem) {
  .footer-redress { grid-template-columns: minmax(0, 1fr) auto; align-items: center; }
}

.footer-redress p {
  margin: 0;
  font-size: var(--step--1);
  color: var(--ink-muted);
  line-height: 1.58;
  max-width: 62ch;
}

.redress-links { display: flex; flex-wrap: wrap; gap: 0.6rem; }

.redress-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--rule-strong);
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: var(--step--2);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-decoration: none;
  color: var(--ink);
  background: var(--paper-raised);
  white-space: nowrap;
}

.redress-links a:hover { border-color: var(--accent); color: var(--accent-ink); }

.footer-base {
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  align-items: baseline;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: var(--step--2);
  color: var(--ink-muted);
  letter-spacing: 0.03em;
}

.footer-base p { margin: 0; }

/* --------------------------------------------------------------------------
   14. Entrance choreography
   One orchestrated load, staggered. Fully disabled under reduced motion.
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: no-preference) {
  .rise {
    animation: rise 720ms cubic-bezier(0.22, 0.68, 0.28, 1) backwards;
  }
  .rise-1 { animation-delay: 60ms; }
  .rise-2 { animation-delay: 150ms; }
  .rise-3 { animation-delay: 240ms; }
  .rise-4 { animation-delay: 330ms; }
  .rise-5 { animation-delay: 430ms; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   15. Print. The page is a company record, so it should print like one.
   -------------------------------------------------------------------------- */

@media print {
  body::before, .hero::after { display: none; }
  .masthead, .skip-link, .actions { display: none; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .section { break-inside: avoid; border-top: 1px solid #999; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; word-break: break-all; }
}
