/* Williamson Automation — styles.css
   Plain CSS, no build step. Editorial. Quiet. Pre-launch.
   White / ink / muted / rule / button only.
*/

:root {
  --ink: #0A0A0A;
  --ink-soft: #1A1A1A;
  --muted: #737373;
  --muted-soft: #A3A3A3;
  --rule: #EAEAEA;
  --rule-soft: #F2F2F2;
  --button: #111111;
  --bg: #FFFFFF;
  --container: 1180px;
  --gap: 24px;

  /* Type scale (perfect-fourth-ish, hand-tuned) */
  --fs-micro: 11px;
  --fs-caption: 13px;
  --fs-small: 14px;
  --fs-body: 17px;
  --fs-lead: 19px;
  --fs-statement: 24px;
  --fs-statement-lg: 32px;
  --fs-display-1: 44px;
  --fs-display-2: 60px;
  --fs-display-3: 76px;
  --fs-display-4: 92px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.65, 0.3, 1);
  --dur: 380ms;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  font-feature-settings: "ss01", "cv11";
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Subtle paper-grain texture so the white never looks dead in screenshots.
   ~3% opacity SVG noise tile, fixed-position so it doesn't repaint on scroll. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' 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.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}
body > * { position: relative; z-index: 1; }

main { flex: 1; }
a { color: inherit; text-decoration: inherit; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4 { letter-spacing: -0.02em; line-height: 1.05; font-weight: 600; }
::selection { background: var(--ink); color: #fff; }

/* Layout */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1200px) { .container { padding: 0 56px; } }

.grid-12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gap); }

/* Tokens / utilities */
.label {
  font-size: var(--fs-micro);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 500;
  font-feature-settings: "ss01", "cv11";
}
.label-ink { color: var(--ink); }
.muted { color: var(--muted); }
.num { font-variant-numeric: tabular-nums; font-feature-settings: "tnum", "ss01", "cv11"; }
.rule-t { border-top: 1px solid var(--rule); }

/* Skip link */
.skip-link { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus {
  position: fixed; left: 12px; top: 12px; width: auto; height: auto;
  background: var(--button); color: #fff; padding: 8px 12px;
  border-radius: 6px; font-size: 14px; z-index: 100;
}

/* Top meta strip — pre-launch posture */
.meta-strip {
  padding: 18px 0 12px;
  border-bottom: 1px solid var(--rule-soft);
}
.meta-strip-grid { align-items: baseline; }
.meta-strip .meta-now { grid-column: span 12; display: flex; align-items: center; gap: 10px; }
.meta-strip .meta-mid { grid-column: span 12; font-size: 12px; color: var(--muted); margin-top: 4px; }
.meta-strip .meta-coord { display: none; }
@media (min-width: 768px) {
  .meta-strip .meta-now   { grid-column: span 3; }
  .meta-strip .meta-mid   { grid-column: span 6; margin-top: 0; text-align: center; }
  .meta-strip .meta-coord { display: block; grid-column: span 3; text-align: right; }
}

/* Static marker — replaces the old blinking live-dot.
   Hairline outlined square, no animation. */
.marker {
  display: inline-block;
  width: 6px; height: 6px;
  border: 1px solid var(--ink);
  background: transparent;
  margin-right: 2px;
  position: relative;
  top: -1px;
}
.marker-filled { background: var(--ink); }

/* Header */
.site-header {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
}
.site-header .brand {
  grid-column: span 6; padding: 22px 0;
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 600; letter-spacing: -0.02em;
}
.brand-mark { display: inline-block; width: 18px; height: 18px; border-radius: 4px; background: var(--ink); }
.site-nav {
  grid-column: span 6; padding: 22px 0;
  display: flex; align-items: center; justify-content: flex-end;
  gap: 16px; font-size: 14px; color: var(--muted);
  flex-wrap: wrap;
}
@media (min-width: 768px) { .site-nav { gap: 26px; } }

/* Hairline reveal under nav links on hover/active.
   This is the cursor-driven detail. */
.site-nav a {
  position: relative;
  padding: 4px 0;
  transition: color 180ms var(--ease);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms var(--ease);
}
.site-nav a:hover, .site-nav a.active { color: var(--ink); }
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }

/* Section rail layout — the signature */
.section-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gap); }
.rail {
  grid-column: span 12;
  padding: 48px 0 16px;
}
.content {
  grid-column: span 12;
  padding: 24px 0 80px;
}
@media (min-width: 768px) {
  .rail    { grid-column: span 3; padding: 96px 0 96px; }
  .content { grid-column: span 9; padding: 96px 0 96px 48px; border-left: 1px solid var(--rule); }
}
@media (min-width: 1200px) {
  .rail    { padding: 112px 0 112px; }
  .content { padding: 112px 0 112px 56px; }
}
.rail-tight { padding-bottom: 16px; }
.rail-sticky { position: sticky; top: 32px; }

/* Rail elements — section numerals sit on the hairline.
   The numeral baseline aligns with the section's top rule. */
.numeral-xl {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum", "ss01", "cv11", "salt";
  font-size: 64px; line-height: 0.85;
  font-weight: 300;
  letter-spacing: -0.04em;
  margin-top: 8px;
  color: var(--ink);
}
.numeral-md {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum", "ss01", "cv11", "salt";
  font-size: 40px; line-height: 0.85;
  font-weight: 300;
  letter-spacing: -0.04em;
  margin-top: 8px;
  color: var(--ink);
}
@media (min-width: 768px) {
  .numeral-xl { font-size: 96px; }
  .numeral-md { font-size: 60px; }
}

.rail-caption {
  margin-top: 28px;
  font-size: var(--fs-caption);
  color: var(--muted);
  line-height: 1.6;
  max-width: 26ch;
}

/* Marginalia — editor's notes in the rail */
.marginalia {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 28ch;
}
.marginalia .stamp {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.marginalia em { font-style: italic; color: var(--ink); }

/* Index list (in hero rail) */
.index-list { margin-top: 36px; }
.index-list li {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 220ms var(--ease);
}
.index-list li:hover { border-bottom-color: var(--rule); }
.index-list .n {
  font-size: 11px; color: var(--muted);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum", "ss01";
  letter-spacing: 0.04em;
}
.index-list a:hover { opacity: 0.7; }

/* Hero */
.hero-eyebrow {
  font-size: var(--fs-micro);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink);
  font-weight: 500;
}
.hero-title {
  margin-top: 32px;
  font-size: var(--fs-display-1);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.96;
  max-width: 14ch;
}
.hero-text {
  margin-top: 48px;
  font-size: var(--fs-lead);
  color: var(--muted);
  line-height: 1.55;
  max-width: 58ch;
}
.hero-actions { margin-top: 48px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px 32px; }
@media (min-width: 640px) { .hero-title { font-size: var(--fs-display-2); } }
@media (min-width: 768px) { .hero-title { font-size: var(--fs-display-3); } .hero-text { font-size: 21px; } }
@media (min-width: 1024px) { .hero-title { font-size: var(--fs-display-4); } }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--button); color: #fff;
  font-size: 14px; font-weight: 500;
  padding: 13px 22px;
  border-radius: 999px;
  transition: opacity 180ms var(--ease), transform 220ms var(--ease);
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-primary:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

.btn-text {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
  padding: 4px 0;
  position: relative;
}
.btn-text::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 260ms var(--ease);
}
.btn-text:hover::after { transform: scaleX(1); }

/* Quiet pill — for "Coming soon" non-link text where a CTA used to live */
.pill-quiet {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  color: var(--muted);
  padding: 10px 16px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: transparent;
}

/* Statement */
.statement {
  font-size: var(--fs-statement);
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 36ch;
  font-weight: 500;
}
@media (min-width: 768px) { .statement { font-size: var(--fs-statement-lg); } }

/* Generic divided ledger row */
.row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gap);
  padding: 28px 0;
}
.row:first-child { padding-top: 0; }
.row + .row { border-top: 1px solid var(--rule); }
.row .n {
  grid-column: span 2;
  font-size: 13px; color: var(--muted);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum", "ss01";
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.row .a { grid-column: span 10; }
.row .b { grid-column: span 12; }
@media (min-width: 768px) {
  .row { padding: 36px 0; }
  .row .n { grid-column: span 1; margin-top: 0; }
  .row .a { grid-column: span 5; }
  .row .b { grid-column: span 6; }
}
.row h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; }
.row p  { font-size: 15px; color: var(--muted); line-height: 1.65; }
@media (min-width: 768px) {
  .row h3 { font-size: 24px; }
  .row p  { font-size: 16px; }
}

/* Record/topic row variant */
.row-label .a { display: flex; align-items: baseline; }
.row-label .a > span {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--ink);
  font-weight: 500;
  font-feature-settings: "ss01", "cv11";
}
.row-label .b { font-size: 18px; letter-spacing: -0.01em; color: var(--ink); }
@media (min-width: 768px) {
  .row-label .a { grid-column: span 4; }
  .row-label .b { grid-column: span 7; }
}

/* Properties row */
.row-prop .a { font-size: 17px; letter-spacing: -0.01em; }
.row-prop .a a:hover { opacity: 0.7; }
.row-prop .role { grid-column: span 12; }
@media (min-width: 768px) {
  .row-prop .a    { grid-column: span 7; }
  .row-prop .role { grid-column: span 4; }
}

/* Topics row */
.row-topic .a { display: flex; align-items: baseline; }
.row-topic .a > span {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--ink);
  font-weight: 500;
}
@media (min-width: 768px) {
  .row-topic .a { grid-column: span 4; }
  .row-topic .b { grid-column: span 7; }
}

/* Product row */
.product-row {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: var(--gap); padding: 36px 0;
  border-bottom: 1px solid var(--rule);
}
.product-row:last-of-type { border-bottom: 0; }
.product-row .n {
  grid-column: span 2;
  font-size: 13px; color: var(--muted);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum", "ss01";
  letter-spacing: 0.04em;
}
.product-row .body { grid-column: span 10; }
@media (min-width: 768px) {
  .product-row .n { grid-column: span 1; }
  .product-row .body { grid-column: span 11; }
}
.product-name-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.product-name-cortex {
  font-size: 40px; font-weight: 600;
  letter-spacing: -0.025em; line-height: 1;
}
@media (min-width: 768px) { .product-name-cortex { font-size: 60px; } }
.product-name-muted {
  font-size: 24px; font-weight: 500;
  letter-spacing: -0.02em; color: var(--muted);
}
@media (min-width: 768px) { .product-name-muted { font-size: 30px; } }

/* Quiet status — replaces blinking pill */
.product-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
}
.product-desc {
  margin-top: 24px;
  font-size: 17px; color: var(--muted);
  line-height: 1.6; max-width: 60ch;
}
@media (min-width: 768px) { .product-desc { font-size: 18px; } }
.product-row .product-actions {
  margin-top: 32px;
  display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center;
}
.product-tag-muted {
  font-size: 11px; line-height: 1;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--muted); font-weight: 500;
}

/* Mission */
.mission-text {
  font-size: 28px; font-weight: 600;
  letter-spacing: -0.02em; line-height: 1.1;
  max-width: 24ch;
}
@media (min-width: 768px) { .mission-text { font-size: var(--fs-display-1); } }
.mission-actions { margin-top: 48px; display: flex; flex-wrap: wrap; gap: 16px 32px; align-items: center; }

/* About — long-form mission body */
.about-mission { display: flex; flex-direction: column; gap: 36px; max-width: 62ch; }
.about-mission > p:first-child {
  font-size: var(--fs-statement); line-height: 1.25;
  letter-spacing: -0.02em; color: var(--ink); font-weight: 500;
}
@media (min-width: 768px) { .about-mission > p:first-child { font-size: var(--fs-statement-lg); } }
.about-mission > p + p { font-size: 17px; color: var(--muted); line-height: 1.7; }

/* About contact closer */
.about-closer { font-size: 24px; letter-spacing: -0.02em; max-width: 32ch; line-height: 1.25; }
@media (min-width: 768px) { .about-closer { font-size: 32px; } }
.about-closer .ph {
  display: inline-block;
  font-style: italic;
  color: var(--muted);
  border-bottom: 1px dashed var(--rule);
  padding-bottom: 1px;
}

/* Contact — placeholder block (replaces big email link) */
.contact-placeholder {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.contact-placeholder .em {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 56px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--muted);
  font-feature-settings: "ss01", "cv11";
}
@media (min-width: 768px) { .contact-placeholder .em { font-size: 96px; } }
.contact-placeholder .stamp {
  font-style: italic;
  color: var(--muted);
  font-size: 17px;
  letter-spacing: -0.01em;
}

/* Principles — long-form page */
.principle-block {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gap);
  padding: 56px 0;
  border-top: 1px solid var(--rule);
}
.principle-block:first-child { border-top: 0; padding-top: 0; }
.principle-block .num-cell {
  grid-column: span 2;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum", "ss01", "salt";
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--muted);
  line-height: 1;
}
.principle-block .name {
  grid-column: span 10;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.principle-block .body {
  grid-column: span 12;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 64ch;
  margin-top: 12px;
}
@media (min-width: 768px) {
  .principle-block { padding: 72px 0; }
  .principle-block .num-cell { grid-column: span 1; font-size: 32px; }
  .principle-block .name { grid-column: span 11; font-size: 36px; }
  .principle-block .body { grid-column: 2 / span 11; margin-top: 24px; }
}

/* Press kit blocks */
.press-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gap);
}
.press-card {
  grid-column: span 12;
  padding: 32px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--bg);
}
@media (min-width: 768px) { .press-card { grid-column: span 6; } }
.press-card h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 16px;
}
.press-card p {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.press-card .ph { color: var(--muted); font-style: italic; }

/* Wordmark slot — placeholder asset block */
.wordmark-slot {
  display: flex; align-items: center; justify-content: center;
  height: 200px;
  border: 1px dashed var(--rule);
  border-radius: 4px;
  position: relative;
  margin-top: 24px;
}
.wordmark-slot .preview {
  display: flex; align-items: center; gap: 12px;
  font-size: 22px; font-weight: 600; letter-spacing: -0.02em;
}
.wordmark-slot .preview .mk {
  display: inline-block; width: 28px; height: 28px;
  border-radius: 6px; background: var(--ink);
}
.wordmark-slot .stamp {
  position: absolute;
  bottom: 12px; right: 16px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-weight: 500;
}

/* Footer — colophon variant */
.site-footer {
  margin-top: 64px;
  border-top: 1px solid var(--rule);
  background: var(--bg);
}
.site-footer-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: var(--gap); padding: 64px 0; align-items: start;
}
.site-footer .col-brand { grid-column: span 12; }
.brand-mark-sm { display: inline-block; width: 14px; height: 14px; border-radius: 3px; background: var(--ink); }
.site-footer .brand-line {
  margin-top: 24px; display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink);
}
.site-footer .brand-desc { margin-top: 14px; font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 30ch; }
.site-footer .col-index { grid-column: span 12; padding-top: 40px; }
@media (min-width: 768px) {
  .site-footer .col-brand { grid-column: span 3; }
  .site-footer .col-index {
    grid-column: span 9;
    border-left: 1px solid var(--rule);
    padding: 0 0 0 48px;
  }
}
.footer-cols { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gap); }
.footer-col { grid-column: span 6; }
.footer-col-wide { grid-column: span 12; margin-top: 32px; }
@media (min-width: 768px) {
  .footer-col      { grid-column: span 4; }
  .footer-col-wide { grid-column: span 4; margin-top: 0; }
}
.footer-col h4 {
  font-size: 11px; line-height: 1;
  text-transform: uppercase; letter-spacing: 0.18em;
  font-weight: 500; color: var(--ink);
}
.footer-col ul { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.footer-col li {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px;
}
.footer-col li > .n {
  font-size: 11px; color: var(--muted);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum", "ss01";
  letter-spacing: 0.04em;
}
.footer-col a { position: relative; transition: color 180ms var(--ease); }
.footer-col a:hover { opacity: 0.65; }
.footer-col .sub { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }
.footer-col li.dim { color: var(--muted); font-size: 13px; font-style: italic; }

/* Footer colophon (last reading layer) */
.colophon {
  border-top: 1px solid var(--rule);
}
.colophon-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: var(--gap); padding: 28px 0; align-items: baseline;
  font-size: 12px; color: var(--muted);
}
.colophon-grid .item { grid-column: span 6; }
.colophon-grid .item.full { grid-column: span 12; margin-top: 8px; }
.colophon-grid .item .k {
  display: block; font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--muted-soft);
  margin-bottom: 4px;
  font-weight: 500;
}
.colophon-grid .item .v { color: var(--ink); font-size: 12px; letter-spacing: -0.005em; }
@media (min-width: 768px) {
  .colophon-grid .item     { grid-column: span 3; }
  .colophon-grid .item.full { grid-column: span 3; margin-top: 0; }
}

/* Site footer legal */
.site-footer-legal { border-top: 1px solid var(--rule); }
.site-footer-legal-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: var(--gap); padding: 24px 0; align-items: center;
  font-size: 12px; color: var(--muted);
}
.site-footer-legal-grid .copy { grid-column: span 6; }
.site-footer-legal-grid .name { grid-column: span 12; margin-top: 8px; text-align: left; }
.site-footer-legal-grid .coord { grid-column: span 6; text-align: right; }
@media (min-width: 768px) {
  .site-footer-legal-grid .copy  { grid-column: span 3; }
  .site-footer-legal-grid .name  { grid-column: span 6; margin-top: 0; text-align: center; }
  .site-footer-legal-grid .coord { grid-column: span 3; }
}

/* Subtler fade-in on scroll — 6px translate, <400ms */
.fade {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 380ms var(--ease), transform 380ms var(--ease);
}
.fade.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Print stylesheet — premium sites have one */
@media print {
  body::before { display: none; }
  .meta-strip,
  .site-header,
  .site-nav,
  .site-footer-legal,
  .colophon,
  .skip-link,
  .btn-primary,
  .btn-text {
    display: none !important;
  }
  body {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 11pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }
  .container { max-width: 100%; padding: 0; }
  .section-grid, .row, .product-row, .principle-block {
    display: block;
    border: 0 !important;
    padding: 12pt 0 !important;
  }
  .rail { padding: 0 0 6pt 0; }
  .content { padding: 0; border: 0 !important; }
  .numeral-xl, .numeral-md { font-size: 18pt; margin-top: 0; }
  .hero-title, .product-name-cortex { font-size: 22pt; line-height: 1.1; }
  .hero-text, .product-desc, .row p { font-size: 11pt; color: #000; }
  .label, .hero-eyebrow { font-size: 8pt; }
  .rule-t { border-top: 1px solid #999 !important; }
  .site-footer { border-top: 1px solid #999; margin-top: 18pt; padding-top: 12pt; }
  a { color: #000; text-decoration: none; }
  a[href^="http"]::after,
  a[href^="mailto"]::after {
    content: " (" attr(href) ")";
    font-size: 9pt; color: #555;
  }
  .marker { border-color: #000; background: #000 !important; }
}
