/* Mauceri Ventures — the parent institution, in the Andro design system.

   Tokens are lifted verbatim from the live andro-cloud.com / androbond.com
   sheets so the parent reads as the same house as its holdings rather than a
   different company. The parent is the quiet one: same palette, far less of it.

   Rewritten 2026-08-20. The previous sheet had grown three passes of overrides
   and had settled into bordered cards on a blueprint field — the visual
   language of a product landing page. An institution's page is a ruled sheet:
   hairlines, one accent, and space. Everything here is one pass, in order.
   ------------------------------------------------------------------------- */

:root {
  --navy-0: #0A1224;
  --navy-1: #0F1A33;
  --navy-2: #14203f;
  --navy-3: #1b2a4e;
  --line: rgba(41,182,246,.14);
  --line-soft: rgba(255,255,255,.07);
  --sky: #29B6F6;
  --sky-2: #4FC3F7;
  --teal: #26A69A;
  --red: #E53935;
  --text: #E9EDF5;
  --muted: #9DB0CC;
  --dim: #65789a;
  --maxw: 1160px;
  --r: 16px;
  --sans: "IBM Plex Sans", system-ui, sans-serif;
  --disp: "Space Grotesk", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  color-scheme: dark;
}

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

body {
  margin: 0;
  background: var(--navy-0);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  counter-reset: band;
}

/* One soft light source, top right. No grid: the blueprint field is MP&D's
   language, and the parent should not borrow a subsidiary's. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(900px 520px at 82% -10%, rgba(41,182,246,.07), transparent 62%);
}
body > * { position: relative; z-index: 1; }

h1, h2, h3 { font-family: var(--disp); margin: 0; letter-spacing: -0.02em; }
p, ul, ol, dl { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: var(--sky); text-decoration: none; }
a:hover { color: var(--sky-2); }
:focus-visible { outline: 2px solid var(--sky); outline-offset: 3px; }

.skip {
  position: absolute; left: -9999px;
  background: var(--sky); color: var(--navy-0);
  padding: .6rem 1rem; border-radius: 8px; font-weight: 600;
}
.skip:focus { left: 1rem; top: 1rem; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* Small mono label. The one repeated typographic device on the site. */
.mini {
  font-family: var(--mono);
  font-size: .6875rem;
  font-weight: 400;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--muted);
}

.prose { color: var(--muted); max-width: 62ch; }
.prose + .prose { margin-top: .9rem; }
.fine { font-size: .875rem; }

/* ---- masthead ------------------------------------------------------------ */

.masthead {
  position: sticky; top: 0; z-index: 20;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(10,18,36,.78);
  backdrop-filter: blur(12px);
}
.masthead-in {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .75rem 2rem;
  padding-block: 1.15rem;
}
.brand {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--disp); font-weight: 500; font-size: 1.0625rem;
  letter-spacing: .005em; color: var(--text);
}
.brand:hover { color: var(--text); }
.brand svg { display: block; flex: none; color: var(--sky); }
.site-nav { display: flex; flex-wrap: wrap; gap: .35rem 1.75rem; font-size: .9375rem; }
.site-nav a { color: var(--muted); }
.site-nav a:hover { color: var(--text); }

/* ---- hero and page heads ------------------------------------------------- */

.hero { padding-block: clamp(5rem, 13vw, 11rem) clamp(3rem, 6vw, 5rem); }
.page-head { padding-block: clamp(4rem, 9vw, 7.5rem) clamp(2.5rem, 5vw, 4rem); }

.kicker {
  font-family: var(--mono); font-size: .6875rem; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase; color: var(--sky);
}
.hero h1, .page-head h1 {
  margin-top: 1.75rem;
  font-weight: 400;
  font-size: clamp(2.375rem, 1.2rem + 3.6vw, 4rem);
  line-height: 1.05;
  max-width: 24ch;
  /* Three ragged lines with a two-word last one at 1440px. Balance evens the
     measure without pinning a line break that would be wrong at every other
     width. */
  text-wrap: balance;
}
.hero .lead, .page-head .lead {
  margin-top: 1.75rem;
  max-width: 52ch;
  font-size: clamp(1.0625rem, 1rem + .3vw, 1.1875rem);
  color: var(--muted);
}

/* ---- the figures ---------------------------------------------------------
   Three numbers, each with a row in content/facts.json. They stand in for the
   logo wall the hero used to carry: the same claim, made quietly. */

.figures { padding-block: 0 clamp(3rem, 7vw, 5.5rem); }
.figures dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem clamp(1.5rem, 4vw, 3.5rem);
}
.figures div { border-top: 1px solid var(--line); padding-top: 1.15rem; }
.figures dt {
  font-family: var(--disp); font-weight: 400;
  font-size: clamp(2rem, 1.4rem + 1.9vw, 2.875rem);
  line-height: 1; letter-spacing: -0.03em;
}
.figures dd {
  margin: .7rem 0 0;
  font-family: var(--mono); font-size: .6875rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
}

/* ---- bands ---------------------------------------------------------------
   Every division is the same object: a hairline, a mono title in the left
   column, and the content in the right. The numeral is a counter so that it
   stays out of the markup, where the content ledger would read it as a claim. */

.band { counter-increment: band; border-top: 1px solid var(--line-soft); }
.band > .wrap { padding-block: clamp(3.25rem, 7vw, 6rem); }

.band-head {
  display: grid;
  grid-template-columns: minmax(0, 15rem) minmax(0, 1fr);
  gap: 1.25rem clamp(2rem, 6vw, 5rem);
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}
.band-title {
  font-family: var(--mono); font-size: .6875rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--sky);
  display: flex; align-items: baseline; gap: .85rem;
  padding-top: .45rem;
}
.band-num::before {
  content: counter(band, decimal-leading-zero);
  color: var(--muted);
  opacity: .7;
}
.band-lead {
  font-family: var(--disp); font-weight: 400;
  font-size: clamp(1.25rem, 1.05rem + .8vw, 1.75rem);
  line-height: 1.3; letter-spacing: -0.02em;
  max-width: 40ch;
}
/* A band whose whole content is its lead — the advisory statement — has no
   block under the head to be spaced away from. */
.band-head:last-child { margin-bottom: 0; }
.band-head + .arms, .band-head + .rows, .band-head + .split,
.band-head + .notices, .band-head + .steps { margin-top: 0; }

/* ---- the arms ------------------------------------------------------------ */

.arms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
}
.arm { border-top: 1px solid var(--line); padding-top: 1.4rem; }
.arm h3 {
  margin: 0 0 .8rem;
  font-weight: 500; font-size: 1.1875rem; letter-spacing: -0.015em;
}
.arm p:last-child { color: var(--muted); font-size: .9375rem; }

/* ---- ruled rows ----------------------------------------------------------
   The portfolio, the board and the leadership list are the same object. No
   card, no panel: a rule between each line and nothing else. */

/* A sub-heading inside a band — Leadership, Advisory board. It needs air above
   it when it follows a list, or the two sections read as one. */
.mini.group { margin-bottom: .9rem; }
.rows + .mini.group, .prose + .mini.group { margin-top: clamp(2.25rem, 4vw, 3rem); }

.row {
  display: grid;
  grid-template-columns: minmax(8rem, 14rem) minmax(0, 1fr) 8rem;
  align-items: center;
  gap: .3rem 1.35rem;
  padding: 1.05rem .25rem;
  border-top: 1px solid var(--line-soft);
  color: var(--text);
  position: relative;
}
.rows > li:last-child .row { border-bottom: 1px solid var(--line-soft); }
a.row { transition: background-color .15s ease; }
a.row::before {
  content: ""; position: absolute; left: -1px; top: -1px; bottom: 0; width: 1px;
  background: var(--sky); opacity: 0; transition: opacity .15s ease;
}
a.row:hover { background: rgba(41,182,246,.045); color: var(--text); }
a.row:hover::before { opacity: 1; }
a.row:hover .row-name { color: var(--sky-2); }

.row-name {
  font-family: var(--disp); font-weight: 500; font-size: 1.0625rem;
  letter-spacing: -0.01em; transition: color .15s ease;
}
.row-note { color: var(--muted); font-size: .9375rem; }
.row-tag {
  font-family: var(--mono); font-size: .625rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); text-align: right;
}

/* Governance and the discipline board carry no mark and no sector. */
.row--gov { grid-template-columns: minmax(0, 1fr) auto; }
.row--gov .row-tag { text-align: right; }
.row--board { grid-template-columns: minmax(7rem, 16rem) minmax(0, 1fr); }

/* ---- term lists ---------------------------------------------------------- */

.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 5vw, 4rem); }
.split--wide { grid-template-columns: minmax(0, 20rem) minmax(0, 1fr); }

.terms { margin-top: 1.1rem; columns: 2; column-gap: 2rem; }
.terms--wide { margin-top: 0; columns: 3; }
.terms + .prose { margin-top: clamp(1.75rem, 3vw, 2.5rem); }
.terms li {
  break-inside: avoid;
  padding: .45rem 0;
  border-top: 1px solid var(--line-soft);
  font-family: var(--mono); font-size: .8125rem; letter-spacing: .01em;
  color: var(--muted);
}

/* ---- notices ------------------------------------------------------------- */

.notice {
  display: grid;
  grid-template-columns: minmax(0, 15rem) minmax(0, 1fr);
  gap: .75rem clamp(2rem, 6vw, 5rem);
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
  border-top: 1px solid var(--line-soft);
}
.notices > li:last-child { border-bottom: 1px solid var(--line-soft); }
.notice-date {
  font-family: var(--mono); font-size: .6875rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); padding-top: .4rem;
}
.notice-body h2 {
  font-weight: 500; font-size: clamp(1.1875rem, 1.05rem + .5vw, 1.5rem);
  line-height: 1.25; max-width: 30ch;
}
.notice-body p { margin-top: .9rem; color: var(--muted); max-width: 62ch; }

/* ---- careers ------------------------------------------------------------- */

.standing { max-width: 62ch; }
.cta {
  display: inline-block; margin-top: 1.5rem;
  padding: .8rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--mono); font-size: .75rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text);
  transition: border-color .15s ease, background-color .15s ease;
}
.cta:hover { border-color: var(--sky); background: rgba(41,182,246,.06); color: var(--text); }

.opening { border-top: 1px solid var(--line-soft); padding: clamp(1.75rem, 3vw, 2.5rem) 0; }
.openings > li:last-child { border-bottom: 1px solid var(--line-soft); }
.opening-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: .5rem 2rem; }
.opening-head h3 { font-weight: 500; font-size: 1.25rem; }
.opening-meta {
  font-family: var(--mono); font-size: .625rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
}
.opening .prose { margin-top: .9rem; }

.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem); counter-reset: step; }
.steps > li { counter-increment: step; border-top: 1px solid var(--line); padding-top: 1.4rem; }
.steps > li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--mono); font-size: .625rem; letter-spacing: .18em;
  color: var(--muted);
}
.steps h3 { margin: .9rem 0 .7rem; font-weight: 500; font-size: 1.0625rem; }
.steps p { color: var(--muted); font-size: .9375rem; }

/* ---- footer -------------------------------------------------------------- */

.site-foot { border-top: 1px solid var(--line-soft); margin-top: clamp(3rem, 6vw, 5rem); }
.foot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: 2.5rem clamp(1.5rem, 4vw, 3rem);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2.5rem;
}
.foot-word { font-family: var(--disp); font-weight: 500; font-size: 1.0625rem; }
.foot-line { margin-top: .8rem; color: var(--muted); font-size: .875rem; max-width: 34ch; }
.foot-col ul { margin-top: 1.1rem; display: grid; gap: .55rem; }
.foot-col li, .foot-col a { color: var(--muted); font-size: .875rem; }
.foot-col a:hover { color: var(--text); }
.foot-fine {
  border-top: 1px solid var(--line-soft);
  padding-block: 1.75rem 3rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem 2rem;
}
.foot-fine p { color: var(--muted); font-size: .8125rem; max-width: 68ch; }
.foot-fine p:last-child { font-family: var(--mono); letter-spacing: .1em; }

/* ---- narrower ------------------------------------------------------------ */

@media (max-width: 61.99rem) {
  .band-head { grid-template-columns: 1fr; }
  .band-title { padding-top: 0; }
  .arms, .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split, .split--wide { grid-template-columns: 1fr; }
  .notice { grid-template-columns: 1fr; }
  .notice-date { padding-top: 0; }
  .terms--wide { columns: 2; }
  .foot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 47.99rem) {
  .figures dl { grid-template-columns: 1fr; }
  .figures div { display: flex; align-items: baseline; gap: 1rem; }
  .figures dd { margin-top: 0; }
  .arms, .steps { grid-template-columns: 1fr; }
  .terms, .terms--wide { columns: 1; }

  .row { grid-template-columns: minmax(0, 1fr) auto; padding: .95rem .25rem; }
  .row-name { grid-column: 1; }
  .row-tag { grid-column: 2; grid-row: 1; }
  .row-note { grid-column: 1 / -1; }
  /* A name and a full title will not share 390px. Stack them. */
  .row--gov { grid-template-columns: 1fr; gap: .35rem; }
  .row--gov .row-tag { grid-column: 1; grid-row: auto; text-align: left; }
  .row--board { grid-template-columns: minmax(0, 1fr); }
  .row--board .row-note { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
