/* ═══════════════════════════════════════════════════════════════
   SELF-HOSTED FACES
   Variable, latin subset, pulled from Google Fonts and served from our own
   origin. Both are SIL Open Font License 1.1 — see assets/fonts/OFL.txt.
   font-display:swap keeps text visible during load, matching the previous
   Google Fonts behaviour.
   ═══════════════════════════════════════════════════════════════ */
@font-face {
  font-family: "Epilogue";
  src: url("assets/fonts/epilogue-latin-var.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Arimo";
  src: url("assets/fonts/arimo-latin-var.woff2") format("woff2-variations");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* ═══════════════════════════════════════════════════════════════
   Univerance Labs — placeholder site
   Built from "Univerance Labs__Website Design__Temp Website.pdf"
   Design canvas: 1920px. Type scale below is anchored to that width.
   ═══════════════════════════════════════════════════════════════ */

/* ── Tokens ──────────────────────────────────────────────────── */
:root {
  /* Brand palette (from the design style sheet) */
  --ink:        #000000;
  --graphite:   #505050;
  --paper:      #f7f6f5;
  --sand:       #ece6de;
  --gold:       #998460;

  /* Accessible gold tints. The brand gold is 2.9:1 on sand and
     2.2:1 on graphite — below WCAG AA — so text-bearing gold uses
     a tuned tint while borders, glows and the giant wordmark keep
     the brand value exactly. */
  --gold-deep:  #826f4e;   /* 4.85:1 on white, 3.9:1 on sand  */
  --gold-lift:  #d9c9a3;   /* 4.93:1 on graphite              */

  /* Type */
  --f-display: "Epilogue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --f-text:    "Arimo", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --fs-h1:  clamp(2.5rem,    3.646vw, 4.375rem);  /* 70px @1920 */
  --fs-h2:  clamp(1.75rem,   2.083vw, 2.5rem);    /* 40px       */
  --fs-h3:  clamp(1.25rem,   1.563vw, 1.875rem);  /* 30px       */
  --fs-h4:  clamp(.8125rem,  1.042vw, 1.25rem);   /* 20px       */
  --fs-p:   clamp(1rem,      1.302vw, 1.5625rem); /* 25px       */
  --fs-cta: clamp(1rem,      1.354vw, 1.625rem);  /* 26px       */

  /* Rhythm */
  --shell:   clamp(20rem, 89vw, 106.25rem);       /* 1700px @1920 */
  --gutter:  clamp(1.25rem, 5.2vw, 6.25rem);
  --band-y:  clamp(4.5rem, 8.5vw, 10.5rem);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ink);
  font-family: var(--f-text);
  font-size: var(--fs-p);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--f-display); font-weight: 500; margin: 0; }
p  { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 4px;
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: .75rem 1.25rem;
  background: var(--paper);
  color: var(--ink);
  font: 500 1rem/1 var(--f-display);
  border-radius: 999px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ── Header ──────────────────────────────────────────────────── */
.site-head {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  padding: clamp(1.5rem, 2.4vw, 2.875rem) 0 0;
}

.brand {
  display: block;
  width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.brand img {
  height: clamp(1.375rem, 1.77vw, 2.125rem);
  width: auto;
  transition: opacity .3s var(--ease);
}
.brand:hover img { opacity: .72; }

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  background: var(--ink);
  padding: clamp(7rem, 11vw, 11rem) 0 clamp(5rem, 7vw, 8rem);
  overflow: hidden;
}

/* gold bloom behind the monogram */
.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(70vw, 60rem);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle,
              rgba(153,132,96,.26) 0%,
              rgba(153,132,96,.10) 34%,
              rgba(153,132,96,0)  68%);
  pointer-events: none;
}

.hero__grid { width: var(--shell); padding-inline: var(--gutter); }

.hero__h {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(1rem, 2.6vw, 3.25rem);
  margin: 0;
  color: #fff;
  font-size: var(--fs-h1);
  line-height: 1;              /* per style sheet: 70pt / 70pt */
  letter-spacing: -.015em;
}

/* Line breaks are explicit in the markup to match the drawn layout;
   they are released below 1000px where the hero stacks and centres. */
.hero__h-part { width: max-content; }
.hero__h-part--left  { justify-self: start; }
.hero__h-part--right { justify-self: start; }

.hero__mark {
  position: relative;
  justify-self: center;
  width: clamp(13rem, 36vw, 43rem);
  animation: float 9s var(--ease) infinite;
}
.hero__mark img {
  width: 100%;
  filter: drop-shadow(0 0 4rem rgba(153,132,96,.34));
  transition: transform .35s var(--ease);
  will-change: transform;
}

@keyframes float {
  0%, 100% { transform: translateY(-1.1%); }
  50%      { transform: translateY(1.1%);  }
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(1.5rem, 3vw, 3rem);
  transform: translateX(-50%);
  width: 2.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
}
.hero__scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, rgba(255,255,255,0), var(--gold));
  transform-origin: top;
  animation: drip 2.4s var(--ease) infinite;
}
@keyframes drip {
  0%        { transform: scaleY(0);   opacity: 0; }
  35%       { transform: scaleY(1);   opacity: 1; }
  70%, 100% { transform: scaleY(1);   opacity: 0; }
}

/* ═══════════════ PILLARS ═══════════════ */
.pillars {
  background: var(--sand);
  padding: var(--band-y) 0 calc(var(--band-y) * 1.1);
}

.pillars__h {
  max-width: min(100%, 94rem);
  margin: 0 auto clamp(2.5rem, 4.2vw, 5.25rem);
  color: var(--gold-deep);
  font-size: var(--fs-h2);
  line-height: 1.25;           /* per style sheet: 40pt / 50pt */
  text-align: center;
  text-wrap: balance;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 1.7vw, 2.125rem);
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(.75rem, 1.15vw, 1.4rem);
  padding: clamp(1.5rem, 2.1vw, 2.625rem) clamp(1.25rem, 1.9vw, 2.375rem) clamp(3rem, 4.5vw, 5.5rem);
  background: #fff;
  border: 1px solid var(--gold);
  border-radius: clamp(1rem, 1.55vw, 1.9rem);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

/* the light-bloom that straddles the card border in the design */
.card::before,
.card::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 62%;
  height: 3.25rem;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.98), rgba(255,255,255,0) 72%);
  filter: blur(7px);
  pointer-events: none;
}
.card::before { top: -1.6rem;    transform: translateX(-18%); }
.card::after  { bottom: -1.6rem; transform: translateX(-72%); }

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1.25rem 3rem -1rem rgba(153,132,96,.42);
}

.card__eyebrow {
  color: var(--gold-deep);
  font-size: var(--fs-h4);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .01em;
}

.card__title {
  font-size: var(--fs-h3);
  line-height: 1.25;
  letter-spacing: -.01em;
}

.card__body {
  font-size: var(--fs-p);
  line-height: 1.4;            /* per style sheet: 25pt / 35pt */
}

/* ═══════════════ APPROACH ═══════════════ */
.approach {
  position: relative;
  background:
    radial-gradient(120% 130% at 0% 0%,
      #5a5a5a 0%, #3d3d3d 32%, #1a1a1a 62%, #000 100%);
  color: #fff;
  padding: calc(var(--band-y) * 1.15) 0 calc(var(--band-y) * 1.25);
  overflow: hidden;
}

.approach__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.85fr);
  align-items: start;
  gap: clamp(1.5rem, 3vw, 3.75rem);
  margin-bottom: clamp(3.5rem, 6.5vw, 8rem);
}
.approach__h    { font-size: var(--fs-h2); line-height: 1.25; }
.approach__lede { font-size: var(--fs-p);  line-height: 1.4; }

.approach__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 5rem);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.5rem);
}

.step__spark {
  display: block;
  width: clamp(7rem, 11vw, 14rem);
  aspect-ratio: 1;
  margin-inline: auto;
}
.step__spark svg {
  width: 100%;
  height: 100%;
  display: block;
  transform-origin: 50% 50%;
  animation: shimmer 22s linear infinite;
}
@keyframes shimmer {
  0%   { transform: rotate(0deg);   opacity: .85; }
  50%  { transform: rotate(180deg); opacity: 1;   }
  100% { transform: rotate(360deg); opacity: .85; }
}

.step__body {
  align-self: stretch;
  font-size: var(--fs-p);
  line-height: 1.4;
  max-width: 34ch;
}

/* ═══════════════ INDUSTRIES ═══════════════ */
.industries {
  position: relative;
  background: var(--paper);
  padding: calc(var(--band-y) * 1.15) var(--gutter);
  min-height: clamp(34rem, 41vw, 52rem);
  display: grid;
  place-items: center;
  isolation: isolate;
}

.industries__field {
  position: absolute;
  inset: calc(var(--band-y) * .55) 3%;
  z-index: 0;
  pointer-events: none;
}
.industries__field li {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%) translateY(var(--drift, 0px));
  white-space: nowrap;
  color: var(--graphite);
  font-size: clamp(.8125rem, 1.15vw, 1.375rem);
  line-height: 1;
  opacity: .78;
  will-change: transform, opacity;
}
/* The entrance animation only belongs to the positioned scatter: its
   keyframes carry translate(-50%,-50%), which would displace the static
   tag-cloud pills below 1001px while it played. */
@media (min-width: 1001px) {
  .js .industries__field li {
    opacity: 0;
    animation: driftIn .9s var(--ease) forwards;
    animation-delay: var(--d, 0s);
  }
  /* Once the entrance animation has finished, scroll drift takes over. */
  .js .industries__field li.settled {
    animation: none;
    opacity: .78;
    transition: transform .18s linear;
  }
}
@keyframes driftIn {
  from { opacity: 0;   transform: translate(-50%, -50%) translateY(14px); }
  to   { opacity: .78; transform: translate(-50%, -50%) translateY(var(--drift, 0px)); }
}

.industries__core {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.25rem, 2vw, 2.5rem);
  text-align: center;
  padding: clamp(1rem, 2vw, 2rem) clamp(1rem, 3vw, 3rem);
  /* keeps the centre legible where a drifting word passes behind it */
  background: radial-gradient(ellipse 62% 60% at 50% 50%,
              var(--paper) 0%, var(--paper) 58%, rgba(247,246,245,0) 100%);
}

.industries__h    { font-size: var(--fs-h2); line-height: 1.25; }
.industries__lede { font-size: var(--fs-p);  line-height: 1.4; }

.cta {
  display: inline-block;
  padding: clamp(.6rem, .85vw, 1.05rem) clamp(1.4rem, 2.1vw, 2.6rem);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--fs-cta);
  line-height: 1.2;
  text-decoration: none;
  transition: background-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.cta:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

/* ═══════════════ FOOTER ═══════════════ */
.site-foot {
  position: relative;
  background: var(--graphite);
  color: #fff;
  border-top: 3px solid var(--gold);
  padding-top: calc(var(--band-y) * .95);
  overflow: hidden;
}

.site-foot__top {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .5fr) minmax(0, .9fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
}

.site-foot__blurb {
  font-size: var(--fs-p);
  line-height: 1.4;
  max-width: 38ch;
}

.site-foot__col { display: flex; flex-direction: column; align-items: flex-start; gap: clamp(.75rem, 1.1vw, 1.4rem); }

.site-foot__label {
  font-family: var(--f-text);
  font-weight: 700;
  font-size: clamp(.75rem, .833vw, 1rem);
  line-height: 1.2;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: clamp(.25rem, .8vw, 1rem);
}

.pill {
  display: inline-block;
  min-width: clamp(9rem, 12.5vw, 15rem);
  padding: clamp(.55rem, .8vw, 1rem) clamp(1.25rem, 1.8vw, 2.25rem);
  border: 1.5px solid #fff;
  border-radius: 999px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--fs-cta);
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.pill:hover {
  background: #fff;
  color: var(--graphite);
  transform: translateY(-2px);
}

.site-foot__legal {
  margin: clamp(3.5rem, 6vw, 7.5rem) 0 clamp(1rem, 1.6vw, 2rem);
  color: var(--gold-lift);
  font-size: clamp(.875rem, 1.04vw, 1.25rem);
  line-height: 1.4;
  text-align: center;
}

.site-foot__wordmark {
  overflow: hidden;
  line-height: 0;
}
.site-foot__wordmark span {
  display: block;
  color: var(--gold);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 11.5vw;
  line-height: .74;
  letter-spacing: -.02em;
  text-align: center;
  white-space: nowrap;
  transform: translateY(4%);
}

/* ═══════════════ Scroll reveal ═══════════════ */
/* Scoped to .js so the page is never blank if the script fails to load. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* ═══════════════ Responsive ═══════════════ */
@media (max-width: 1200px) {
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .card__title { max-width: none; }
}

@media (max-width: 1000px) {
  .hero__h {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: clamp(1.25rem, 4vw, 2.5rem);
  }
  .hero__h-part { width: auto; max-width: 16ch; }
  /* The space before each <br> survives the break being hidden, so the
     line still reads as separate words when it reflows. */
  .hero__h-part br { display: none; }
  .hero__h-part--left, .hero__h-part--right { justify-self: center; }
  .hero__mark { width: min(72vw, 26rem); order: -1; }

  .approach__head { grid-template-columns: 1fr; }
  .approach__steps { grid-template-columns: 1fr; gap: clamp(2.5rem, 7vw, 4rem); }
  .step { align-items: flex-start; }
  .step__spark { margin-inline: 0; }
  .step__body { max-width: 52ch; }

  /* The scatter becomes a legible tag cloud, and moves below the heading
     it decorates (in the DOM it precedes the copy so that the absolutely
     positioned version can sit behind it). */
  .industries {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .industries__core  { order: 0; }
  .industries__field { order: 1; }
  .industries__field {
    position: static;
    inset: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .6rem .9rem;
    margin-top: clamp(2.5rem, 7vw, 4rem);
  }
  .industries__field li {
    position: static;
    transform: none;
    opacity: .8;
    animation: none;
    padding: .45rem .95rem;
    border: 1px solid rgba(80,80,80,.28);
    border-radius: 999px;
  }
  .industries__core { background: none; }

  .site-foot__top { grid-template-columns: 1fr 1fr; }
  .site-foot__blurb { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .pillars__grid { grid-template-columns: 1fr; }
  .card { padding-bottom: clamp(2rem, 8vw, 3rem); }
  .industries__lede br { display: none; }
  .site-foot__top { grid-template-columns: 1fr; }
  .pill { min-width: min(100%, 15rem); }
  /* No font-size override here: 11.5vw already renders the wordmark at
     ~90% of the viewport at every width. Enlarging it clips the final "s". */
}

/* ═══════════════ Motion & print ═══════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
  .js .industries__field li { opacity: .78; animation: none; }
}

@media print {
  .hero { min-height: 0; }
  .hero, .approach, .site-foot { background: #fff !important; color: #000 !important; }
  .site-foot__wordmark, .hero__scroll { display: none; }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ═══════════════════════════════════════════════════════════════
   CURRENT OFFERING / LEADERSHIP
   Added sections. Every value below resolves to an existing token —
   no new colours, no new type scale, no new rhythm. The card grid
   is reused verbatim from .pillars__grid so the two new bands read
   as the same system.
   ═══════════════════════════════════════════════════════════════ */
.offering {
  padding: var(--band-y) 0;
  background: var(--ink);
  color: var(--paper);
}

.offering__eyebrow {
  font-family: var(--f-text);
  font-size: var(--fs-h4);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-lift);
  margin: 0 0 .75rem;
}

.offering__h {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: var(--fs-h2);
  margin: 0 0 1.25rem;
}

.offering__lede {
  font-family: var(--f-text);
  font-size: var(--fs-p);
  line-height: 1.5;
  max-width: 62ch;
  margin: 0 0 var(--gutter);
  color: var(--sand);
}

/* Specification list. A <dl> of rows rather than a <table>: the content is
   label/value pairs, and rows must be able to stack on narrow screens
   without a horizontal scroller. */
.specs {
  margin: 0 0 var(--gutter);
  border-top: 1px solid rgba(153, 132, 96, .38);
}

.specs__row {
  display: grid;
  grid-template-columns: minmax(11rem, 22%) 1fr;
  gap: .5rem 1.5rem;
  padding: .95rem 0;
  border-bottom: 1px solid rgba(153, 132, 96, .38);
}

.specs dt {
  font-family: var(--f-text);
  font-size: var(--fs-h4);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gold-lift);
}

.specs dd {
  font-family: var(--f-text);
  font-size: var(--fs-h4);
  margin: 0;
  color: var(--paper);
}

@media (max-width: 40rem) {
  .specs__row { grid-template-columns: 1fr; gap: .2rem; padding: .8rem 0; }
}

/* The offering band sits on ink, so its cards need the inverse treatment
   of the ones on paper. */
.offering .card { border-color: rgba(153, 132, 96, .45); }
.offering .card__title { color: var(--paper); }
.offering .card__body  { color: var(--sand); }
.offering .card__eyebrow { color: var(--gold-lift); }

/* Two- and three-up variants of the existing four-up grid. */
.pillars__grid--pair { grid-template-columns: repeat(auto-fit, minmax(min(22rem, 100%), 1fr)); }
.pillars__grid--trio { grid-template-columns: repeat(auto-fit, minmax(min(17rem, 100%), 1fr)); }

/* Leadership cards carry a role and a name only — no body copy — so the
   title should not inherit the bottom margin meant for a paragraph. */
.leadership .card__title { margin-bottom: 0; }

/* Layout view of the LC-100 macro. The render is already black-ground, so it
   sits flush on the ink band with only a hairline gold frame to seat it. */
.die {
  margin: 0 0 var(--gutter);
  max-width: 46rem;
}

.die img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(153, 132, 96, .45);
}

.die__cap {
  font-family: var(--f-text);
  font-size: var(--fs-h4);
  line-height: 1.45;
  color: var(--sand);
  margin-top: .85rem;
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM PASS — surfaces
   The cards were pure #fff on sand with a 1px gold outline and two
   blurred white "bloom" pseudo-elements straddling the border. Flat
   white plus a hairline outline is what reads cheap: the outline
   competes with the type, and the bloom is a dated effect that fights
   the clean gold palette.
   Replaced with: an off-white surface with a faint vertical gradient,
   no competing outline, and a two-layer diffuse shadow for real
   elevation. Same tokens, same palette — only the surface treatment
   changes.
   ═══════════════════════════════════════════════════════════════ */

/* Depth under the band so the cards sit on something, not on flat colour. */
.pillars {
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(255,255,255,.55), rgba(255,255,255,0) 60%),
    var(--sand);
}

.card {
  padding: clamp(1.75rem, 2.3vw, 2.75rem) clamp(1.5rem, 2vw, 2.5rem) clamp(1.9rem, 2.6vw, 3rem);
  background: linear-gradient(180deg, #fdfcfb 0%, var(--paper) 100%);
  border: 0;
  border-radius: clamp(.75rem, 1.05vw, 1.125rem);
  box-shadow:
    0 1px 2px rgba(43, 36, 24, .05),
    0 12px 28px -14px rgba(43, 36, 24, .18);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}

/* The bloom effect goes. Keeping the pseudo-elements in the cascade but
   inert is safer than deleting the original rule. */
.card::before,
.card::after { content: none; }

.card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 2px rgba(43, 36, 24, .06),
    0 26px 50px -22px rgba(43, 36, 24, .26);
}

/* Type carries the hierarchy now that the outline is gone. */
.card__eyebrow {
  font-size: clamp(.6875rem, .72vw, .8125rem);
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold-deep);
  opacity: .92;
}

.card__title {
  letter-spacing: -.018em;
  color: var(--ink);
}

.card__body { color: var(--graphite); }

/* Cards on the ink band: the same elevation logic inverted — a lifted
   surface rather than an outlined one. */
.offering .card {
  background: linear-gradient(180deg, rgba(255,255,255,.055) 0%, rgba(255,255,255,.018) 100%);
  border: 0;
  box-shadow:
    inset 0 1px 0 rgba(217, 201, 163, .16),
    0 18px 40px -22px rgba(0, 0, 0, .8);
}
.offering .card:hover {
  box-shadow:
    inset 0 1px 0 rgba(217, 201, 163, .26),
    0 30px 60px -26px rgba(0, 0, 0, .9);
}

/* Leadership cards hold a role and a name only, so they need less box and
   more air than a four-up content card. */
.leadership { background: var(--paper); }
.leadership .card {
  padding: clamp(1.6rem, 2vw, 2.25rem) clamp(1.4rem, 1.8vw, 2rem);
  background: linear-gradient(180deg, #fdfcfb 0%, #f4f2ef 100%);
}

/* ═══════════════════════════════════════════════════════════════
   LC-100 REGISTER MAP + LIFECYCLE DEMONSTRATOR
   Both live on the ink band. Documented programming interface only.
   ═══════════════════════════════════════════════════════════════ */

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

.offering__sub {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: var(--fs-h3);
  color: var(--paper);
  margin: calc(var(--gutter) * .8) 0 .6rem;
}

.offering__note {
  font-family: var(--f-text);
  font-size: var(--fs-h4);
  line-height: 1.55;
  color: var(--sand);
  max-width: 68ch;
  margin: 0 0 1.5rem;
}

.offering code {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  font-size: .92em;
  color: var(--gold-lift);
}

/* Wide table: scroll inside its own box, never the page. */
.regtable__scroll {
  overflow-x: auto;
  margin: 0 0 var(--gutter);
  border: 1px solid rgba(153, 132, 96, .28);
  border-radius: .625rem;
}

.regtable {
  width: 100%;
  min-width: 44rem;
  border-collapse: collapse;
  font-family: var(--f-text);
  font-size: clamp(.8125rem, .92vw, .9375rem);
}

.regtable th,
.regtable td {
  text-align: left;
  padding: .8rem 1rem;
  vertical-align: top;
  border-bottom: 1px solid rgba(153, 132, 96, .18);
}

.regtable thead th {
  font-size: clamp(.6875rem, .72vw, .8125rem);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-lift);
  background: rgba(255, 255, 255, .035);
}

.regtable tbody tr:last-child th,
.regtable tbody tr:last-child td { border-bottom: 0; }
.regtable td { color: var(--sand); }
.regtable tbody tr:hover { background: rgba(255, 255, 255, .022); }

/* ── Lifecycle demonstrator ─────────────────────────────────── */
.lc {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  margin: 0 0 var(--gutter);
}

@media (min-width: 60rem) {
  .lc { grid-template-columns: minmax(0, 15rem) minmax(0, 1fr); gap: 2.5rem; align-items: start; }
}

.lc__states { display: flex; flex-direction: column; gap: .5rem; margin: 0; padding: 0; }

.lc__state {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  padding: .7rem .9rem;
  border-radius: .5rem;
  border: 1px solid rgba(153, 132, 96, .22);
  font-family: var(--f-text);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}

.lc__state.is-passed { border-color: rgba(153, 132, 96, .4); background: rgba(255, 255, 255, .025); }

.lc__state.is-current {
  border-color: var(--gold-lift);
  background: rgba(217, 201, 163, .1);
}

.lc__code {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  color: var(--gold-lift);
  letter-spacing: .08em;
}

.lc__name { font-size: .8125rem; letter-spacing: .1em; text-transform: uppercase; color: var(--sand); }

.lc__panel {
  padding: clamp(1.25rem, 1.8vw, 1.75rem);
  border: 1px solid rgba(153, 132, 96, .28);
  border-radius: .75rem;
  background: rgba(255, 255, 255, .025);
}

.lc__row {
  display: flex; flex-wrap: wrap; gap: .5rem 1rem;
  margin: 0 0 .5rem;
  font-family: var(--f-text); font-size: .9375rem;
}

.lc__label { color: var(--gold-lift); min-width: 8.5rem; }
.lc__value { color: var(--paper); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }

.lc__field { border: 0; padding: 1.1rem 0 0; margin: .75rem 0 0; }

.lc__field legend {
  padding: 0;
  font-family: var(--f-text); font-size: .8125rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--gold-lift);
}

.lc__btns { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .8rem; }

.lc__btn {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .8125rem;
  color: var(--paper);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(153, 132, 96, .35);
  border-radius: .4rem;
  padding: .5rem .8rem;
  cursor: pointer;
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}

.lc__btn:hover { border-color: var(--gold-lift); background: rgba(217, 201, 163, .12); transform: translateY(-1px); }
.lc__btn:focus-visible { outline: 2px solid var(--gold-lift); outline-offset: 2px; }

.lc__check {
  display: flex; align-items: center; gap: .55rem;
  margin: 1.1rem 0 0;
  font-family: var(--f-text); font-size: .875rem; color: var(--sand);
  cursor: pointer;
}
.lc__check input { accent-color: var(--gold); width: 1rem; height: 1rem; }

.lc__verdict {
  margin: 1.1rem 0 0;
  padding: .85rem 1rem;
  border-radius: .5rem;
  border-left: 3px solid rgba(153, 132, 96, .5);
  background: rgba(0, 0, 0, .35);
  font-family: var(--f-text); font-size: .9375rem; line-height: 1.5;
  color: var(--sand);
  min-height: 3.4rem;
}
.lc__verdict.is-ok   { border-left-color: var(--gold-lift); }
.lc__verdict.is-deny { border-left-color: #b4523f; }

.lc__reset {
  margin-top: .9rem;
  font-family: var(--f-text); font-size: .8125rem;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--gold-lift);
  background: none; border: 0; padding: .3rem 0; cursor: pointer;
  border-bottom: 1px solid rgba(217, 201, 163, .4);
}
.lc__reset:hover { color: var(--paper); border-bottom-color: var(--paper); }

/* With JS off the panel's controls do nothing, so hide them and leave the
   state list and register table, which are complete on their own. */
html:not(.js) .lc__panel { display: none; }

/* ═══════════════════════════════════════════════════════════════
   HEADER NAVIGATION
   The header was logo-only. Brand keeps its shell width and rhythm;
   the nav sits beside it in the same row.
   ═══════════════════════════════════════════════════════════════ */
.site-head__bar {
  width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* The brand no longer owns the shell width — the bar does. */
.site-head__bar .brand {
  width: auto;
  margin-inline: 0;
  padding-inline: 0;
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.9vw, 2.25rem);
  font-family: var(--f-text);
  font-size: clamp(.8125rem, .95vw, .9375rem);
}

.site-nav a {
  color: var(--sand);
  letter-spacing: .04em;
  white-space: nowrap;
  padding: .3rem 0;
  border-bottom: 1px solid transparent;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}

.site-nav a:hover { color: var(--paper); border-bottom-color: rgba(217, 201, 163, .55); }
.site-nav a:focus-visible { outline: 2px solid var(--gold-lift); outline-offset: 3px; }

.site-nav__cta {
  color: var(--gold-lift) !important;
  border: 1px solid rgba(153, 132, 96, .5) !important;
  border-radius: 999px;
  padding: .42rem 1.1rem !important;
}
.site-nav__cta:hover {
  color: var(--ink) !important;
  background: var(--gold-lift);
  border-color: var(--gold-lift) !important;
}

/* Below 46rem the four links crowd the wordmark. Drop the two that are
   reachable by scrolling and keep the offering plus the contact CTA. */
@media (max-width: 46rem) {
  .site-nav a[href="#pillars"],
  .site-nav a[href="#leadership"] { display: none; }
  .site-head__bar { gap: 1rem; }
}

/* ═══════════════════════════════════════════════════════════════
   PROSE PAGES (privacy, terms, careers)
   Shares every token with the home page; only the measure and
   vertical rhythm are page-specific.
   ═══════════════════════════════════════════════════════════════ */
.page {
  background: var(--paper);
  color: var(--ink);
  min-height: 100svh;
  padding: calc(var(--band-y) * 1.2) 0 var(--band-y);
}

.page__shell {
  width: min(100%, 46rem);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.page__eyebrow {
  font-family: var(--f-text);
  font-size: clamp(.6875rem, .72vw, .8125rem);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 .75rem;
}

.page h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: var(--fs-h2);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.page__lede {
  font-family: var(--f-text);
  font-size: var(--fs-p);
  line-height: 1.5;
  color: var(--graphite);
  margin: 0 0 2.5rem;
}

.page h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--fs-h3);
  margin: 2.75rem 0 .85rem;
}

.page h3 {
  font-family: var(--f-text);
  font-weight: 700;
  font-size: var(--fs-h4);
  margin: 1.75rem 0 .5rem;
}

.page p,
.page li {
  font-family: var(--f-text);
  font-size: clamp(.9375rem, 1.05vw, 1.0625rem);
  line-height: 1.65;
  color: var(--graphite);
}

.page p { margin: 0 0 1rem; }
.page ul, .page ol { margin: 0 0 1.25rem; padding-left: 1.35rem; }
.page li { margin-bottom: .45rem; }
.page li::marker { color: var(--gold-deep); }

.page a:not(.pill):not(.cta) {
  color: var(--gold-deep);
  border-bottom: 1px solid rgba(130, 111, 78, .4);
}
.page a:not(.pill):not(.cta):hover { border-bottom-color: var(--gold-deep); }

.page strong { color: var(--ink); }

.page code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .92em;
  background: var(--sand);
  padding: .12em .35em;
  border-radius: .25rem;
}

.page__updated {
  font-family: var(--f-text);
  font-size: .875rem;
  color: var(--graphite);
  opacity: .75;
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(153, 132, 96, .3);
}

/* Prose pages sit on paper, so the header's light-on-dark nav inverts. */
.page-head { position: static; padding: var(--gutter) 0 0; }
.page-head .site-nav a { color: var(--graphite); }
.page-head .site-nav a:hover { color: var(--ink); border-bottom-color: var(--gold-deep); }
.page-head .site-nav__cta { color: var(--gold-deep) !important; border-color: rgba(130, 111, 78, .5) !important; }
.page-head .site-nav__cta:hover { color: var(--paper) !important; background: var(--gold-deep); border-color: var(--gold-deep) !important; }
