/* ============================================================
   SEER INVESTMENTS LLC
   Institutional · Editorial · Dark + Cream rhythm
   ============================================================ */

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  /* Dark layer */
  --bg-ink-0: #030303;
  --bg-ink-1: #080808;
  --bg-ink-2: #0d0d0d;
  --bg-ink-3: #111111;
  --bg-ink-4: #161616;

  /* Cream layer */
  --bg-cream-0: #f4f1ea;
  --bg-cream-1: #ece8de;
  --bg-cream-2: #e2dccd;

  /* Text — dark surfaces */
  --text-d:        #f4f4f2;
  --text-d-muted:  #a8a8a4;
  --text-d-dim:    #6b6b68;
  --text-d-faint:  #46464a;

  /* Text — light surfaces */
  --text-l:        #1f2229;
  --text-l-muted:  #4d525c;
  --text-l-dim:    #7a7e87;
  --text-l-faint:  #a8aab0;

  /* Lines */
  --line-d:        rgba(255,255,255,0.07);
  --line-d-2:      rgba(255,255,255,0.14);
  --line-d-strong: rgba(255,255,255,0.24);
  --line-l:        rgba(20,22,28,0.10);
  --line-l-2:      rgba(20,22,28,0.16);
  --line-l-strong: rgba(20,22,28,0.30);

  /* Accent — sparing use */
  --accent:           #c9a961;
  --accent-soft-d:    rgba(201,169,97,0.18);
  --accent-soft-l:    rgba(201,169,97,0.20);
  --accent-warm:      #b56a3a;     /* terminal CTA only */

  /* Semantic — default = dark */
  --bg:           var(--bg-ink-0);
  --surface:      var(--bg-ink-1);
  --surface-2:    var(--bg-ink-2);
  --surface-3:    var(--bg-ink-3);
  --text:         var(--text-d);
  --text-muted:   var(--text-d-muted);
  --text-dim:     var(--text-d-dim);
  --line:         var(--line-d);
  --line-2:       var(--line-d-2);
  --line-strong:  var(--line-d-strong);
  --accent-soft:  var(--accent-soft-d);

  /* Type */
  --serif: "Cardo", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Layout */
  --radius-sm: 2px;
  --radius:    4px;
  --container: 1320px;
  --pad:       clamp(1.25rem, 4vw, 2.5rem);

  /* Motion */
  --ease:     cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="cream"] {
  --bg:          var(--bg-cream-0);
  --surface:     var(--bg-cream-1);
  --surface-2:   var(--bg-cream-2);
  --surface-3:   #d9d3c0;
  --text:        var(--text-l);
  --text-muted:  var(--text-l-muted);
  --text-dim:    var(--text-l-dim);
  --line:        var(--line-l);
  --line-2:      var(--line-l-2);
  --line-strong: var(--line-l-strong);
  --accent-soft: var(--accent-soft-l);
}

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-ink-0);
  color: var(--text-d);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
input, textarea, select, button { font-family: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 400; }
p { margin: 0; }

::selection { background: var(--accent-soft-d); color: #fff; }
[data-theme="cream"] ::selection { background: var(--accent-soft-l); color: var(--text-l); }

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

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: #000; color: #fff; padding: 0.75rem 1rem;
  border: 1px solid var(--line-d-2); z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* Honeypot */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px; height: 1px;
  opacity: 0; pointer-events: none;
}

/* ============================================================
   COMPONENT — eyebrow (hairline + label, optional index)
   Adopt Blackstone pattern: above the title, not inline.
   ============================================================ */
.c-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 2rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--text-dim);
  font-weight: 500;
}
.c-eyebrow__line {
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--line-strong);
}
.c-eyebrow__index { color: var(--accent); }
.c-eyebrow__label { color: var(--text-muted); }
.c-eyebrow--center {
  justify-content: center;
  display: flex;
}

/* Eyebrow used in hero (single-line) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--text-d-muted);
  font-weight: 500;
}
.eyebrow-line {
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--line-d-strong);
}

/* ============================================================
   COMPONENT — section head
   ============================================================ */
.section-head {
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
  max-width: 70ch;
}
.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head--center .section-title { margin-left: auto; margin-right: auto; }

.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: 0.005em;          /* positive tracking — institutional */
  color: var(--text);
  max-width: 24ch;
}
.section-title em {
  font-style: italic;
  color: var(--text-muted);
  font-weight: 300;
}

.section-lede {
  margin-top: 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 56ch;
  font-weight: 400;
}

/* ============================================================
   COMPONENT — buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.5rem;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition:
    background 0.4s var(--ease),
    color 0.4s var(--ease),
    border-color 0.4s var(--ease);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}
.btn-arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease-out);
}
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn-primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}
.btn-ghost { background: transparent; color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 0.6rem 1rem; font-size: 0.72rem; }

/* ============================================================
   COMPONENT — arrow link (Blackstone-style: text + circle arrow)
   Replaces filled buttons for non-terminal CTAs.
   ============================================================ */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text);
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.35s var(--ease);
}
.arrow-link > span:first-child { white-space: nowrap; }
.arrow-circle {
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  flex-shrink: 0;
  transition:
    border-color 0.4s var(--ease),
    background 0.4s var(--ease),
    transform 0.5s var(--ease-out);
}
.arrow-circle svg { width: 16px; height: 16px; }
.arrow-link:hover { color: var(--accent); }
.arrow-link:hover .arrow-circle {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.arrow-link:hover .arrow-circle svg { animation: arrow-nudge 0.5s var(--ease-out); }
@keyframes arrow-nudge {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(4px); }
  100% { transform: translateX(0); }
}
.arrow-link--card { margin-top: 1.75rem; }

/* ============================================================
   HEADER — always solid black
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease);
}
.site-header[data-state="scrolled"] {
  background: rgba(3,3,3,0.96);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line-d);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text-d);
  line-height: 0;          /* keep crop tight to the logo box */
  transition: opacity 0.3s var(--ease);
}
.brand:hover { opacity: 0.82; }
.brand-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: none;
  object-fit: contain;
  filter: brightness(1) contrast(1);
}
.brand--footer .brand-logo {
  height: 60px;
}

.primary-nav ul {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}
.primary-nav a {
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--text-d-muted);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s var(--ease);
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--accent);
  transition: right 0.4s var(--ease-out);
}
.primary-nav a:hover { color: var(--text-d); }
.primary-nav a:hover::after { right: 0; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header-link {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-d-muted);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s var(--ease);
}
.header-link:hover { color: var(--accent); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line-d-2);
  border-radius: var(--radius-sm);
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 16px; height: 1px;
  background: var(--text-d);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.mobile-nav {
  background: rgba(3,3,3,0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line-d);
  padding: 1.5rem var(--pad) 2rem;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav a {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  padding: 0.65rem 0;
  color: var(--text-d);
  border-bottom: 1px solid var(--line-d);
}
.mobile-nav .mobile-cta {
  color: var(--accent);
  border-bottom: none;
  padding-top: 1.25rem;
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--sans);
}

/* ============================================================
   HERO — 2-column editorial slider
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  padding: 9rem 0 5rem;
  isolation: isolate;
  overflow: hidden;
  background: var(--bg-ink-0);
}
.hero-media {
  position: absolute; inset: 0; z-index: -1;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: saturate(0.8) contrast(1.05) brightness(0.7);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 70% 30%, rgba(20,20,22,0.55) 0%, rgba(3,3,3,0.85) 60%, rgba(2,2,2,1) 100%),
    linear-gradient(to bottom, rgba(3,3,3,0.6) 0%, rgba(3,3,3,0) 30%, rgba(3,3,3,0.9) 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 30%, transparent 85%);
  opacity: 0.5;
}
.hero-network {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.7;
}
.net-pulse line { stroke-dasharray: 6 18; animation: dash 9s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -240; } }

.hero-layout {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  width: 100%;
}

/* Slides container */
.hero-slide {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 5rem;
  align-items: end;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out), visibility 0s linear 0.7s;
  position: absolute;
  inset: 0;
  height: fit-content;
  padding-bottom: 4rem;
  margin: auto 0;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
  transition-delay: 0s;
}

.hero-main { display: flex; flex-direction: column; gap: 2rem; }
.hero-aside {
  border-left: 1px solid var(--line-d);
  padding-left: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-self: end;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 6.6vw, 5.8rem);
  line-height: 0.99;
  letter-spacing: 0.005em;     /* positive */
  margin: 1.5rem 0 0;
  color: var(--text-d);
  max-width: 18ch;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--text-d-muted);
}

.hero-sub {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-d-muted);
  max-width: 38ch;
  font-weight: 400;
}
.cite a {
  color: var(--accent);
  font-size: 0.7em;
  font-weight: 500;
  vertical-align: super;
  line-height: 0;
  margin-left: 0.15em;
}
.cite a:hover { text-decoration: underline; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  align-items: center;
  margin-top: 0.5rem;
}

.hero-meta {
  margin: 0;
  display: grid;
  gap: 1.25rem;
}
.hero-meta div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-d);
}
.hero-meta dt {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-d-dim);
}
.hero-meta dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--text-d);
  font-weight: 400;
}

/* Slider controls */
.hero-controls {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-d);
}
.hero-arrow {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border: 1px solid var(--line-d-2);
  border-radius: 50%;
  background: transparent;
  color: var(--text-d-muted);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.hero-arrow svg { width: 16px; height: 16px; }
.hero-arrow:hover { color: var(--accent); border-color: var(--accent); }

.hero-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.hero-dots button {
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.hero-dots button > span {
  display: block;
  width: 28px; height: 1px;
  background: var(--line-d-2);
  transition: background 0.4s var(--ease), width 0.4s var(--ease);
}
.hero-dots button[aria-selected="true"] > span {
  background: var(--accent);
  width: 44px;
}

.hero-counter {
  margin-left: auto;
  font-family: var(--serif);
  font-size: 0.875rem;
  font-style: italic;
  color: var(--text-d-dim);
  letter-spacing: 0.05em;
}
.hero-counter [data-slider-current] { color: var(--accent); font-style: normal; }

.hero-scrollcue {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-d-dim);
  pointer-events: none;
}
.hero-scrollcue-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scroll-cue 2.4s var(--ease-out) infinite;
}
@keyframes scroll-cue {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   SECTIONS — common
   ============================================================ */
section {
  padding: clamp(5rem, 10vw, 8.5rem) 0;
  position: relative;
  background: var(--bg);
  color: var(--text);
}
section + section { border-top: 1px solid var(--line); }

.section--cream { background: var(--bg-cream-0); color: var(--text-l); }
.section--cream + section:not(.section--cream) { border-top: 0; }

/* ============================================================
   STATEMENT — cream editorial
   ============================================================ */
.statement-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.875rem, 3.6vw, 3.2rem);
  line-height: 1.18;
  letter-spacing: 0.005em;
  color: var(--text);
  max-width: 28ch;
  margin: 0 auto;
}
.statement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  max-width: 920px;
  margin: 4rem auto 0;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.statement-grid p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.78;
}

/* ============================================================
   STATS STRIP — capability proof
   ============================================================ */
.stats-strip {
  background: var(--bg-ink-0);
  padding: clamp(4rem, 7vw, 6rem) 0;
  border-top: 1px solid var(--line-d);
  border-bottom: 1px solid var(--line-d);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-d);
}
.stats-grid li {
  padding: 2.75rem 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.stats-grid li + li { border-left: 1px solid var(--line-d); }
.stat-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: -0.005em;
  color: var(--text-d);
}
.stat-num--word { font-size: 0.7em; }
.stat-line {
  display: block;
  width: 28px; height: 1px;
  background: var(--accent);
  margin: 1.5rem 0 1rem;
}
.stat-lbl {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-d-muted);
}
.stats-foot {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-d);
  font-size: 0.8125rem;
  color: var(--text-d-dim);
  font-style: italic;
}
.stats-foot .cite a { font-style: normal; }

/* ============================================================
   STRATEGY
   ============================================================ */
.strategy { background: var(--bg-ink-0); }
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line-d);
}
.strategy-card {
  position: relative;
  padding: 2.75rem 2rem 2.5rem;
  background: var(--bg-ink-1);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: background 0.5s var(--ease);
  cursor: default;
  outline: none;
}
.strategy-card + .strategy-card { border-left: 1px solid var(--line-d); }
.strategy-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 0%, var(--accent-soft-d), transparent 70%);
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  pointer-events: none;
}
.strategy-card:hover, .strategy-card:focus-visible { background: var(--bg-ink-2); }
.strategy-card:hover::before, .strategy-card:focus-visible::before { opacity: 1; }
.card-index {
  font-family: var(--serif);
  font-size: 0.875rem;
  font-style: italic;
  color: var(--accent);
  letter-spacing: 0.03em;
}
.strategy-card h3 {
  font-family: var(--serif);
  font-size: 1.875rem;
  font-weight: 400;
  letter-spacing: 0.005em;
  margin: 1rem 0 1rem;
  color: var(--text-d);
}
.strategy-card p {
  color: var(--text-d-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  flex-grow: 1;
}
.card-line {
  display: block;
  height: 1px;
  width: 32px;
  background: var(--line-d-strong);
  margin: 1.5rem 0 1rem;
  transition: width 0.6s var(--ease-out), background 0.5s var(--ease);
}
.strategy-card:hover .card-line, .strategy-card:focus-visible .card-line {
  width: 64px;
  background: var(--accent);
}
.card-tag {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-d-dim);
}

/* ============================================================
   SECTORS — cream
   ============================================================ */
.sectors { background: var(--bg-cream-0); color: var(--text-l); }
.sectors .section-lede { color: var(--text-l-muted); }
.sector-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line-l);
  background: var(--line-l);
  gap: 1px;
}
.sector-item {
  background: var(--bg-cream-0);
  padding: 2.25rem 1.75rem 2rem;
  min-height: 220px;
  position: relative;
  transition: background 0.45s var(--ease);
  display: flex;
  flex-direction: column;
}
.sector-item:hover { background: var(--bg-cream-1); }
.sector-icon {
  display: inline-flex;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  color: var(--text-l-muted);
  border: 1px solid var(--line-l-2);
  border-radius: 50%;
  margin-bottom: 1.25rem;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.sector-icon svg { width: 18px; height: 18px; }
.sector-item:hover .sector-icon { color: var(--accent); border-color: var(--accent); }
.sector-item h3 {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.008em;
  color: var(--text-l);
  margin-bottom: 0.5rem;
}
.sector-item p {
  font-size: 0.8125rem;
  color: var(--text-l-muted);
  line-height: 1.55;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio { background: var(--bg-ink-0); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.portfolio-card {
  background: var(--bg-ink-1);
  border: 1px solid var(--line-d);
  display: flex;
  flex-direction: column;
  min-height: 480px;
  transition: border-color 0.45s var(--ease), background 0.45s var(--ease);
  overflow: hidden;
}
.portfolio-card:hover {
  border-color: var(--line-d-strong);
  background: var(--bg-ink-2);
}
.pc-fig {
  margin: 0;
  aspect-ratio: 5 / 3;
  border-bottom: 1px solid var(--line-d);
  position: relative;
  overflow: hidden;
}
.pc-svg, .pc-fig img { width: 100%; height: 100%; object-fit: cover; }
.pc-fig::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(8,8,8,0.6));
  pointer-events: none;
}
.pc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-d-dim);
  padding: 1.5rem 1.875rem 1rem;
  border-bottom: 1px solid var(--line-d);
}
.pc-id { color: var(--accent); }
.pc-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.pc-status::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft-d);
}
.portfolio-card h3 {
  font-family: var(--serif);
  font-size: 1.625rem;
  font-weight: 400;
  letter-spacing: 0.005em;
  margin: 1.5rem 1.875rem 1.5rem;
  color: var(--text-d);
}
.pc-meta {
  display: grid;
  gap: 0.875rem;
  flex-grow: 1;
  padding: 0 1.875rem;
}
.pc-meta div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  font-size: 0.8125rem;
  border-top: 1px solid var(--line-d);
  padding-top: 0.75rem;
}
.pc-meta dt {
  color: var(--text-d-dim);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
}
.pc-meta dd { margin: 0; color: var(--text-d); }

.arrow-link--card {
  margin: 1.75rem 1.875rem 1.875rem;
}

/* ============================================================
   DIFFERENCE
   ============================================================ */
.difference { background: var(--bg-ink-1); }
.difference-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.pillar-list { display: flex; flex-direction: column; gap: 0; }
.pillar-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 1.875rem 0;
  border-top: 1px solid var(--line-d);
  align-items: start;
}
.pillar-list li:last-child { border-bottom: 1px solid var(--line-d); }
.pillar-num {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--accent);
  padding-top: 0.25rem;
}
.pillar-list h3 {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  margin-bottom: 0.5rem;
  color: var(--text-d);
}
.pillar-list p {
  font-size: 0.9375rem;
  color: var(--text-d-muted);
  line-height: 1.65;
}

/* ============================================================
   INSIGHTS — cream
   ============================================================ */
.insights { background: var(--bg-cream-0); color: var(--text-l); }
.insights .section-lede { color: var(--text-l-muted); }

.insights-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  max-width: none;
}
.ic-fig {
  margin: 0;
  overflow: hidden;
  position: relative;
  background: var(--bg-ink-0);
}
.ic-fig svg, .ic-fig img { width: 100%; height: 100%; object-fit: cover; }

/* Featured insight — wide image-left/copy-right */
.insight-feature {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 0;
  background: var(--bg-cream-1);
  border: 1px solid var(--line-l);
  margin-bottom: 1.5rem;
  min-height: 360px;
}
.insight-feature .ic-fig {
  aspect-ratio: 5 / 4;
  min-height: 100%;
}
.if-body {
  padding: 3rem 3rem 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}
.insight-feature h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2.125rem);
  line-height: 1.18;
  letter-spacing: 0.005em;
  color: var(--text-l);
  max-width: 22ch;
}
.insight-feature p {
  color: var(--text-l-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 50ch;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.insight-card {
  background: var(--bg-cream-1);
  border: 1px solid var(--line-l);
  display: flex;
  flex-direction: column;
  min-height: 460px;
  transition: border-color 0.45s var(--ease), background 0.45s var(--ease), transform 0.6s var(--ease-out);
  cursor: pointer;
  overflow: hidden;
}
.insight-card:hover {
  border-color: var(--line-l-strong);
  background: var(--bg-cream-2);
  transform: translateY(-2px);
}
.insight-card .ic-fig--small {
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid var(--line-l);
}
.insight-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-l-dim);
  margin: 1.75rem 1.875rem 1rem;
}
.insight-meta .dot { color: var(--accent); }
.insight-card h3 {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: var(--text-l);
  line-height: 1.22;
  margin: 0 1.875rem 1rem;
  max-width: 22ch;
}
.insight-card p {
  font-size: 0.9375rem;
  color: var(--text-l-muted);
  line-height: 1.6;
  flex-grow: 1;
  margin: 0 1.875rem 1.5rem;
  max-width: 42ch;
}
.insight-card .arrow-link {
  margin: 0 1.875rem 1.875rem;
}

/* ============================================================
   TRUST
   ============================================================ */
.trust { background: var(--bg-ink-1); }
.trust-inner { max-width: 1080px; }
.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 4rem 0 3rem;
  border-top: 1px solid var(--line-d);
}
.trust-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line-d);
  align-items: start;
}
.trust-list li:nth-child(odd) { padding-right: 2.5rem; }
.trust-list li:nth-child(even) {
  padding-left: 2.5rem;
  border-left: 1px solid var(--line-d);
}
.trust-key {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--accent);
  padding-top: 0.25rem;
}
.trust-list h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  margin-bottom: 0.5rem;
}
.trust-list p {
  font-size: 0.9375rem;
  color: var(--text-d-muted);
  line-height: 1.6;
}
.trust-disclaimer {
  font-size: 0.8125rem;
  color: var(--text-d-dim);
  font-style: italic;
  max-width: 78ch;
  border-top: 1px solid var(--line-d);
  padding-top: 2rem;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  background: var(--bg-ink-0);
  border-top: 1px solid var(--line-d);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 5rem;
  align-items: start;
}
.newsletter-copy .section-title { font-size: clamp(1.5rem, 2.6vw, 2.2rem); max-width: 22ch; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(201,169,97,0.04) 0%, transparent 70%),
    var(--bg-ink-0);
  border-top: 1px solid var(--line-d);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 5rem;
  align-items: start;
}
.contact-meta {
  margin-top: 3rem;
  border-top: 1px solid var(--line-d);
  padding-top: 2rem;
  display: grid;
  gap: 1.25rem;
}
.contact-meta li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  align-items: baseline;
  font-size: 0.875rem;
}
.contact-meta li > span:first-child {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-d-dim);
}
.contact-meta a {
  color: var(--text-d);
  border-bottom: 1px solid var(--line-d-2);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.contact-meta a:hover { color: var(--accent); border-color: var(--accent); }

.contact-form, .newsletter-form {
  background: var(--bg-ink-1);
  border: 1px solid var(--line-d);
  padding: 2.5rem;
  display: grid;
  gap: 1.25rem;
}
.contact-form .form-row, .newsletter-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.contact-form label, .newsletter-form label {
  display: grid;
  gap: 0.5rem;
}
.contact-form label > span, .newsletter-form label > span {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-d-dim);
}
.contact-form input,
.contact-form select,
.contact-form textarea,
.newsletter-form input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-d-2);
  color: var(--text-d);
  font-size: 0.9375rem;
  padding: 0.625rem 0;
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s var(--ease);
  font-family: inherit;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-d-muted) 50%), linear-gradient(135deg, var(--text-d-muted) 50%, transparent 50%);
  background-position: calc(100% - 14px) center, calc(100% - 8px) center;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2rem;
}
.contact-form select option { background: var(--bg-ink-1); color: var(--text-d); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.newsletter-form input:focus { border-bottom-color: var(--accent); }

.form-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.form-status {
  font-size: 0.8125rem;
  color: var(--accent);
  font-style: italic;
}
.form-fineprint {
  font-size: 0.75rem;
  color: var(--text-d-dim);
  font-style: italic;
  border-top: 1px solid var(--line-d);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #020202;
  border-top: 1px solid var(--line-d);
  padding-top: 5rem;
  color: var(--text-d);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--line-d);
}
.footer-tagline {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-d-muted);
  line-height: 1.65;
  max-width: 38ch;
}
.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-d-dim);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer-col ul { display: grid; gap: 0.625rem; }
.footer-col a {
  font-size: 0.875rem;
  color: var(--text-d-muted);
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--accent); }

.footer-endnotes {
  padding: 2.5rem var(--pad) 1.5rem;
  border-bottom: 1px solid var(--line-d);
}
.footer-endnotes__title {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-d-dim);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footnotes {
  display: grid;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-d-dim);
  line-height: 1.7;
  max-width: 100ch;
}
.footnotes li { padding-left: 0; }
.footnotes sup { color: var(--accent); margin-right: 0.4em; }

.footer-bottom {
  padding: 2.5rem var(--pad);
  display: grid;
  gap: 2rem;
}
.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-d-dim);
  line-height: 1.7;
  max-width: 110ch;
  font-style: italic;
}
.footer-disclaimer strong { color: var(--text-d-muted); font-style: normal; font-weight: 500; }
.footer-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-d-dim);
  border-top: 1px solid var(--line-d);
  padding-top: 1.5rem;
}
.footer-locale { color: var(--accent); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(3,3,3,0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-d-2);
  padding: 1rem 0;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
}
.cookie-bar:not([hidden]) { transform: translateY(0); }
.cookie-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cookie-bar p {
  font-size: 0.8125rem;
  color: var(--text-d-muted);
  max-width: 80ch;
  line-height: 1.55;
}
.cookie-bar a { color: var(--accent); border-bottom: 1px solid var(--accent-soft-d); }
.cookie-bar__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* ============================================================
   ANIMATIONS — fade-in on scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-stagger="1"] { transition-delay: 0.06s; }
.reveal[data-stagger="2"] { transition-delay: 0.12s; }
.reveal[data-stagger="3"] { transition-delay: 0.18s; }
.reveal[data-stagger="4"] { transition-delay: 0.24s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-slide { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-aside { border-left: 0; padding-left: 0; border-top: 1px solid var(--line-d); padding-top: 2rem; }

  .strategy-grid { grid-template-columns: repeat(2, 1fr); }
  .strategy-card:nth-child(odd) { border-left: 0; }
  .strategy-card:nth-child(2) { border-left: 1px solid var(--line-d); }
  .strategy-card:nth-child(3), .strategy-card:nth-child(4) { border-top: 1px solid var(--line-d); }
  .strategy-card:nth-child(3) { border-left: 0; }

  .sector-grid { grid-template-columns: repeat(3, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }

  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .insight-feature { grid-template-columns: 1fr; min-height: auto; }
  .insight-feature .ic-fig { aspect-ratio: 16 / 9; min-height: auto; }

  .insights-head { grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
  .difference-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-inner, .newsletter-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-list { grid-template-columns: 1fr; }
  .trust-list li:nth-child(odd), .trust-list li:nth-child(even) { padding: 2rem 0; border-left: 0; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid li:nth-child(3) { border-left: 0; border-top: 1px solid var(--line-d); }
  .stats-grid li:nth-child(4) { border-top: 1px solid var(--line-d); }
}

@media (max-width: 800px) {
  .primary-nav { display: none; }
  .header-actions .header-link { display: none; }
  .nav-toggle { display: inline-flex; }

  .hero { padding: 8rem 0 4rem; min-height: auto; }
  .hero-controls { flex-wrap: wrap; gap: 0.75rem; }
  .hero-counter { margin-left: 0; width: 100%; order: -1; }
  .hero-meta div { grid-template-columns: 1fr; gap: 0.25rem; padding-top: 1rem; }

  .strategy-grid { grid-template-columns: 1fr; }
  .strategy-card { border-left: 0 !important; border-top: 1px solid var(--line-d); }
  .strategy-card:first-child { border-top: 0; }

  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }

  .statement-grid { grid-template-columns: 1fr; gap: 1.75rem; }

  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid li + li { border-left: 0; border-top: 1px solid var(--line-d); }
  .stats-grid li { padding-top: 2rem; padding-bottom: 1.25rem; }

  .contact-form, .newsletter-form { padding: 1.75rem; }
  .contact-form .form-row, .newsletter-form .form-row { grid-template-columns: 1fr; }
  .contact-meta li { grid-template-columns: 1fr; gap: 0.25rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-meta { flex-direction: column; align-items: flex-start; gap: 0.5rem; }

  .pillar-list li, .trust-list li { grid-template-columns: 40px 1fr; gap: 1rem; }

  .cookie-bar__inner { flex-direction: column; align-items: stretch; gap: 1rem; }
  .cookie-bar__actions { justify-content: flex-start; }

  .insight-feature .ic-fig { aspect-ratio: 16 / 10; }
  .if-body { padding: 2rem; }
}

@media (max-width: 460px) {
  .sector-grid { grid-template-columns: 1fr; }
  .brand-logo { height: 30px; }
  .hero-ctas .btn { width: 100%; justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .net-pulse line { animation: none !important; }
  .hero-scrollcue-line { animation: none !important; }
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01s !important; animation-duration: 0.01s !important; }
}

/* ============================================================
   ============================================================
   MULTI-PAGE — components added for /firm /strategy /sectors
   /portfolio /insights /governance /contact
   ============================================================
   ============================================================ */

/* ---------- HERO (editorial — homepage) ---------- */
.hero--editorial {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 11rem 0 7rem;
  isolation: isolate;
  overflow: hidden;
  background: var(--bg-ink-0);
}
.hero-pattern { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.85; z-index: -2; }
.hero--editorial .hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to bottom, rgba(3,3,3,0.4) 0%, rgba(3,3,3,0) 25%, rgba(3,3,3,0.95) 100%),
    radial-gradient(120% 80% at 30% 30%, rgba(15,16,20,0.55), rgba(2,2,2,0));
}
.hero-editorial__layout {
  display: block;
  width: 100%;
}
.hero-editorial__lead {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  max-width: 62%;
}
.hero-editorial__lead .c-eyebrow { margin: 0; }
.hero-editorial__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 6.6vw, 6.4rem);
  line-height: 1.02;
  letter-spacing: -0.005em;
  color: var(--text-d);
  margin: 0;
  max-width: 16ch;
}
.hero-editorial__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--text-d-muted);
}
.hero-editorial__sub {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-d-muted);
  max-width: 52ch;
  margin: 0;
}
.hero-editorial__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3.5rem;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-d);
  max-width: 60ch;
}
.hero-editorial__meta > div { display: flex; flex-direction: column; gap: 0.45rem; margin: 0; }
.hero-editorial__meta dt {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-d-dim);
  margin: 0;
}
.hero-editorial__meta dd {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-d);
  margin: 0;
  line-height: 1.3;
}
.hero-editorial__ctas {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* ---------- PAGE HERO — interior pages, per-page artwork ---------- */
.page-hero {
  position: relative;
  padding: 11rem 0 7rem;
  background: var(--bg-ink-0);
  border-bottom: 1px solid var(--line-d);
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(520px, 65vh, 720px);
  display: flex;
  align-items: center;
}
.page-hero__media { position: absolute; inset: 0; z-index: -1; }
.page-hero__art   {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.85;
  mask-image: radial-gradient(ellipse 95% 80% at 60% 40%, black 25%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse 95% 80% at 60% 40%, black 25%, transparent 95%);
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(3,3,3,0.4) 0%, rgba(3,3,3,0) 25%, rgba(3,3,3,0.95) 100%),
    radial-gradient(120% 80% at 30% 30%, rgba(15,16,20,0.45), rgba(2,2,2,0));
}
/* per-accent subtle background tint */
.page-hero[data-accent="firm"]       { background-color: #04060a; }
.page-hero[data-accent="strategy"]   { background-color: #060709; }
.page-hero[data-accent="sectors"]    { background-color: #050608; }
.page-hero[data-accent="portfolio"]  { background-color: #06070a; }
.page-hero[data-accent="insights"]   { background-color: #04050a; }
.page-hero[data-accent="governance"] { background-color: #04060a; }
.page-hero[data-accent="contact"]    { background-color: #060708; }

.page-hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 1200px;
}
.page-hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.25rem, 5.6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: 0.005em;
  color: var(--text-d);
  margin: 0;
  max-width: 22ch;
}
.page-hero__title em { font-style: italic; color: var(--text-d-muted); }
.page-hero__sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-d-muted);
  max-width: 64ch;
  margin: 0;
}
.page-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 1.5rem 0 0;
  border-top: 1px solid var(--line-d);
  padding-top: 1.5rem;
  max-width: 800px;
}
.page-hero__meta div { padding-right: 1.5rem; }
.page-hero__meta div + div { border-left: 1px solid var(--line-d); padding-left: 1.5rem; }
.page-hero__meta dt {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-d-dim);
  margin-bottom: 0.5rem;
}
.page-hero__meta dd { margin: 0; font-family: var(--serif); font-size: 1rem; color: var(--text-d); font-weight: 400; }

/* ---------- BREADCRUMB ---------- */
.breadcrumb { margin-bottom: 0.75rem; }
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-d-dim);
}
.breadcrumb a { color: var(--text-d-muted); transition: color 0.3s var(--ease); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb [aria-current="page"] { color: var(--text-d); }
.breadcrumb-sep { color: var(--text-d-faint); }

/* ---------- EDITORIAL SECTIONS — used across all interior pages ---------- */
.editorial-section { padding: clamp(5rem, 10vw, 8.5rem) 0; }
.editorial-section + .editorial-section { border-top: 1px solid var(--line); }
.editorial-narrow { max-width: 920px; margin: 0 auto; }
.editorial-body {
  display: grid;
  gap: 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.78;
  color: var(--text-muted);
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}
.editorial-body p { margin: 0; }
.editorial-body em { color: var(--text); font-style: italic; }
.editorial-body strong { color: var(--text); font-weight: 500; }
.editorial-body ul {
  display: grid; gap: 0.5rem;
  padding-left: 1.25rem;
  list-style: disc;
}
.editorial-narrow .editorial-body { margin-top: 3rem; }

/* ---------- STATEMENT — refined ---------- */
.statement-cta { margin-top: 3rem; display: flex; justify-content: center; }
.section-cta   { margin-top: 3.5rem; display: flex; }

/* ---------- HOME — strategy preview list ---------- */
.strategy-list { display: grid; }
.strategy-row { border-top: 1px solid var(--line); }
.strategy-row:last-child { border-bottom: 1px solid var(--line); }
.strategy-row__link {
  display: grid;
  grid-template-columns: 64px 36px minmax(0, 1.2fr) minmax(0, 2fr) 60px;
  gap: 1.75rem;
  align-items: center;
  padding: 2rem 0;
  transition: padding 0.5s var(--ease), background 0.5s var(--ease);
}
.strategy-row__link:hover { padding-left: 1rem; padding-right: 1rem; background: var(--surface); }
.strategy-row__mark {
  display: block;
  width: 56px; height: 56px;
  color: var(--text-muted);
  transition: color 0.4s var(--ease), transform 0.5s var(--ease-out);
}
.strategy-row__mark .theme-mark { width: 100%; height: 100%; }
.strategy-row__link:hover .strategy-row__mark { color: var(--text); transform: scale(1.05); }
.strategy-row__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent);
}
.strategy-row__title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.005em;
  color: var(--text);
}
.strategy-row__line {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.strategy-row__arrow {
  display: inline-flex;
  align-items: center; justify-content: flex-end;
  color: var(--text-dim);
  transition: color 0.3s var(--ease), transform 0.4s var(--ease-out);
}
.strategy-row__arrow svg { width: 22px; height: 22px; }
.strategy-row__link:hover .strategy-row__arrow { color: var(--accent); transform: translateX(6px); }

/* ---------- SECTOR INDEX — typographic list, NOT cards ---------- */
.sector-index { display: grid; }
.sector-index__row { border-top: 1px solid var(--line); }
.sector-index__row:last-child { border-bottom: 1px solid var(--line); }
.sector-index__link {
  display: grid;
  grid-template-columns: 80px minmax(0, 1.4fr) minmax(0, 2.2fr) 60px;
  gap: 2rem;
  align-items: baseline;
  padding: 2rem 0;
  transition: padding 0.5s var(--ease), background 0.5s var(--ease);
}
/* Themed variant — splits name + thesis + chip list across one body column */
.sector-index__link--themed {
  grid-template-columns: 80px minmax(0, 1fr) 60px;
  align-items: start;
}
/* Marked variant — adds a leading sector glyph cell before the numeral */
.sector-index__link--marked {
  grid-template-columns: 56px 60px minmax(0, 1fr) 60px;
}
.sector-index__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-muted);
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.sector-index__mark svg { width: 22px; height: 22px; }
.sector-index__link:hover .sector-index__mark { color: var(--accent); border-color: var(--line-strong); }
.sector-index__body { display: flex; flex-direction: column; gap: 0.75rem; min-width: 0; }
.sector-index__link--themed .sector-index__name { font-size: clamp(1.5rem, 2.4vw, 2.25rem); }
.sector-index__link--themed .sector-index__thesis { max-width: 70ch; }
.sector-index__themes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0;
  margin-top: 0.5rem;
  padding: 0;
  min-width: 0;
  max-width: 100%;
}
/* Let the 1fr grid track shrink instead of expanding to fit the chip row */
.sector-index__body { min-width: 0; }
.sector-index__themes li {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0.45rem 0.875rem;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  margin-right: 0.5rem;
  transition: border-color 0.4s var(--ease), color 0.4s var(--ease), background 0.4s var(--ease);
}
.sector-index__link:hover .sector-index__themes li {
  border-color: var(--line-strong);
  color: var(--text-muted);
}
.sector-index__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--accent);
}
.sector-index__name {
  font-family: var(--serif);
  font-size: clamp(1.375rem, 2.2vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.005em;
  color: var(--text);
}
.sector-index__thesis {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 60ch;
}
.sector-index__arrow {
  display: inline-flex; align-items: center; justify-content: flex-end;
  color: var(--text-dim);
  transition: color 0.3s var(--ease), transform 0.4s var(--ease-out);
}
.sector-index__arrow svg { width: 22px; height: 22px; }
.sector-index__link:hover .sector-index__arrow { color: var(--accent); transform: translateX(6px); }

/* ---------- INSIGHT LIST — typographic, no fake illustrations ---------- */
.insight-list { display: grid; }
.insight-list li { border-top: 1px solid var(--line); }
.insight-list li:last-child { border-bottom: 1px solid var(--line); }
.insight-list__link {
  display: grid;
  grid-template-columns: 1fr 60px;
  grid-template-areas: "meta arrow" "title arrow" "sub arrow";
  gap: 0.75rem 2rem;
  padding: 2.5rem 0;
  transition: padding 0.5s var(--ease), background 0.5s var(--ease);
}
.insight-list__link:hover { padding-left: 1rem; padding-right: 1rem; background: var(--surface); }
.insight-list__meta {
  grid-area: meta;
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.insight-list__meta .dot { color: var(--accent); }
.insight-list__title {
  grid-area: title;
  font-family: var(--serif);
  font-size: clamp(1.375rem, 2.4vw, 2.125rem);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: var(--text);
  max-width: 30ch;
}
.insight-list__sub {
  grid-area: sub;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 60ch;
}
.insight-list__arrow {
  grid-area: arrow;
  display: inline-flex; align-items: center; justify-content: flex-end;
  color: var(--text-dim);
  transition: color 0.3s var(--ease), transform 0.4s var(--ease-out);
}
.insight-list__arrow svg { width: 22px; height: 22px; }
.insight-list__link:hover .insight-list__arrow { color: var(--accent); transform: translateX(6px); }

/* ---------- PORTFOLIO CARDS — refined, no fake SVG illustrations ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.portfolio-card {
  background: var(--bg-ink-1);
  border: 1px solid var(--line-d);
  padding: 2rem 2rem 1.875rem;
  display: flex; flex-direction: column;
  min-height: 380px;
  transition: border-color 0.45s var(--ease), background 0.45s var(--ease), transform 0.5s var(--ease-out);
}
.portfolio-card:hover {
  border-color: var(--line-d-strong);
  background: var(--bg-ink-2);
  transform: translateY(-2px);
}
.pc-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-d-dim);
  margin-bottom: 1.5rem;
}
.pc-id { color: var(--accent); }
.pc-status { display: inline-flex; align-items: center; gap: 0.4rem; }
.pc-status::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft-d);
}
.pc-title {
  font-family: var(--serif);
  font-size: 1.625rem; font-weight: 400; letter-spacing: 0.005em;
  color: var(--text-d);
  margin-bottom: 1rem;
}
.pc-focus { font-size: 0.9375rem; color: var(--text-d-muted); line-height: 1.55; margin-bottom: 1.5rem; }
.pc-meta { display: grid; gap: 0.875rem; flex-grow: 1; }
.pc-meta div { display: grid; grid-template-columns: 80px 1fr; gap: 1rem; font-size: 0.8125rem; border-top: 1px solid var(--line-d); padding-top: 0.75rem; }
.pc-meta dt { color: var(--text-d-dim); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.7rem; }
.pc-meta dd { margin: 0; color: var(--text-d); }

.portfolio-grid--detail { gap: 1.5rem; }

/* ---------- DIFFERENCE / PILLAR LIST ---------- */
.difference { padding: clamp(5rem, 10vw, 8.5rem) 0; background: var(--bg-ink-1); border-top: 1px solid var(--line-d); }
.pillar-list { display: grid; gap: 0; max-width: 940px; margin-top: 2rem; }
.pillar-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 1.875rem 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.pillar-list li:last-child { border-bottom: 1px solid var(--line); }
.pillar-num {
  font-family: var(--serif);
  font-size: 1rem; font-style: italic; color: var(--accent);
  padding-top: 0.25rem;
}
.pillar-list h3 {
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 500; letter-spacing: 0.005em;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.pillar-list p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.65; max-width: 60ch; }

/* ---------- TRUST / GOVERNANCE LIST ---------- */
.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 3rem 0 0;
  border-top: 1px solid var(--line);
}
.trust-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.trust-list li:nth-child(odd)  { padding-right: 2.5rem; }
.trust-list li:nth-child(even) { padding-left: 2.5rem; border-left: 1px solid var(--line); }
.trust-key { font-family: var(--serif); font-style: italic; font-size: 0.95rem; color: var(--accent); padding-top: 0.25rem; }
.trust-list h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; letter-spacing: 0.005em; margin-bottom: 0.5rem; color: var(--text); }
.trust-list p  { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.6; }
.trust-list--full li { padding-top: 2.5rem; padding-bottom: 2.5rem; }

/* ---------- ENGAGE GRID ---------- */
.engage-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 3rem; }
.engage-grid li { background: var(--bg); padding: 2.25rem 2rem; }
.engage-grid h3 { font-family: var(--serif); font-size: 1.375rem; font-weight: 500; letter-spacing: 0.005em; color: var(--text); margin-bottom: 0.875rem; }
.engage-grid p  { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.65; max-width: 50ch; }

/* ---------- CONTACT CTA ---------- */
.contact-cta {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg-ink-0);
  border-top: 1px solid var(--line-d);
}
.contact-cta__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: 1.5rem;
}
.contact-cta__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0.005em;
  color: var(--text-d);
  margin: 0;
  max-width: 22ch;
}
.contact-cta__sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-d-muted);
  max-width: 56ch;
  margin: 0;
}

/* ---------- STRATEGY DETAIL PAGE ---------- */
.strategy-toc {
  background: var(--bg-ink-0);
  border-bottom: 1px solid var(--line-d);
  padding: 1.75rem 0;
  position: sticky;
  top: 70px;
  z-index: 10;
  backdrop-filter: blur(10px);
}
.strategy-toc__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-left: 1px solid var(--line-d);
}
.strategy-toc__list li { flex: 1 1 0; min-width: 140px; }
.strategy-toc__list a {
  display: flex; align-items: baseline;
  gap: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-right: 1px solid var(--line-d);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: var(--text-d-muted);
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}
.strategy-toc__list a:hover { color: var(--text-d); background: var(--bg-ink-1); }
.strategy-toc__num { font-family: var(--serif); font-style: italic; color: var(--accent); }
.strategy-toc__name { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.72rem; }

.strategy-block { padding: clamp(5rem, 10vw, 8.5rem) 0; border-top: 1px solid var(--line); }
.strategy-block__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 5rem;
  align-items: start;
}
.strategy-block__head { position: sticky; top: 160px; }
.strategy-block__mark {
  display: block;
  width: 72px; height: 72px;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  transition: color 0.4s var(--ease);
}
.strategy-block__mark .theme-mark { width: 100%; height: 100%; }
.strategy-block__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.08; letter-spacing: 0.005em;
  color: var(--text); margin: 1.5rem 0 0;
  max-width: 18ch;
}
.strategy-block__title em { font-style: italic; color: var(--text-muted); display: block; margin-top: 0.5rem; font-size: 0.6em; }
.strategy-block__body { display: grid; gap: 1.5rem; font-size: 1.0625rem; line-height: 1.8; color: var(--text-muted); max-width: 64ch; }
.strategy-block__pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 1rem;
}
.strategy-block__pillars li {
  padding: 1rem 0 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--text);
  position: relative;
}
.strategy-block__pillars li::before {
  content: "";
  position: absolute; left: 0; top: 1.25rem;
  width: 8px; height: 1px; background: var(--accent);
}

.chapter-mark {
  display: inline-flex; align-items: center; gap: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
}
.chapter-mark__num {
  font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--accent); letter-spacing: 0;
}
.chapter-mark__line { display: inline-block; width: 36px; height: 1px; background: var(--line-strong); }
.chapter-mark__label { color: var(--text-muted); }

/* ---------- SECTOR DETAIL — sub-themes grid ---------- */
.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 3rem;
}
.theme-grid li {
  background: var(--bg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.theme-grid__num { font-family: var(--serif); font-style: italic; font-size: 0.95rem; color: var(--accent); }
.theme-grid h3 {
  font-family: var(--serif);
  font-size: 1.25rem; font-weight: 500; letter-spacing: 0.005em;
  color: var(--text);
}

/* Rich variant — mark + number + name + blurb per cell */
.theme-grid--rich .theme-cell {
  padding: 2.5rem 2rem 2.25rem;
  gap: 0.5rem;
  position: relative;
  transition: background 0.45s var(--ease);
}
.theme-grid--rich .theme-cell:hover { background: var(--surface); }
.theme-cell__mark {
  display: block;
  width: 56px; height: 56px;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  transition: color 0.4s var(--ease), transform 0.5s var(--ease-out);
}
.theme-cell__mark .theme-mark { width: 100%; height: 100%; display: block; }
.theme-cell:hover .theme-cell__mark { color: var(--text); transform: scale(1.04); }
.theme-cell__num {
  font-family: var(--serif); font-style: italic;
  font-size: 0.85rem; color: var(--accent);
  margin-bottom: 0.5rem;
}
.theme-grid--rich .theme-cell h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.theme-grid--rich .theme-cell p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 38ch;
}

/* ---------- RELATED CARDS (sector ↔ portfolio cross-links) ---------- */
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; margin-top: 3rem; }
.related-card {
  display: flex; flex-direction: column;
  padding: 1.75rem 1.75rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), transform 0.5s var(--ease-out);
}
.related-card:hover { border-color: var(--line-strong); background: var(--surface-2); transform: translateY(-2px); }
.related-card__id { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.875rem; }
.related-card h3 { font-family: var(--serif); font-size: 1.375rem; font-weight: 500; letter-spacing: 0.005em; color: var(--text); margin-bottom: 0.875rem; }
.related-card p { font-size: 0.9375rem; line-height: 1.6; color: var(--text-muted); margin-bottom: 1.5rem; flex-grow: 1; }
.related-card__cta { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text); margin-top: auto; }

/* ---------- CAPABILITY LIST (portfolio detail) ---------- */
.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}
.capability-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  color: var(--text);
}
.capability-list li:nth-child(odd)  { padding-right: 2rem; }
.capability-list li:nth-child(even) { padding-left: 2rem; border-left: 1px solid var(--line); }
.capability-list__num { font-family: var(--serif); font-style: italic; font-size: 0.95rem; color: var(--accent); }

/* ---------- DISCLOSURE BAND ---------- */
.disclosure-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
  font-size: 0.8125rem;
  color: var(--text-dim);
  font-style: italic;
  line-height: 1.7;
  max-width: 100ch;
  margin: 0 auto;
}
.disclosure-band sup { color: var(--accent); margin-right: 0.4em; font-style: normal; }

/* ---------- ARTICLE (insight detail) ---------- */
.article-header {
  padding: 9rem 0 5rem;
  background: var(--bg-ink-0);
  border-bottom: 1px solid var(--line-d);
}
.article-header__inner { display: flex; flex-direction: column; gap: 1.5rem; max-width: 1080px; }
.article-meta {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-d-dim);
  margin: 0;
}
.article-meta .dot { color: var(--accent); }
.article-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 5.8vw, 5rem);
  line-height: 1.04;
  letter-spacing: 0.005em;
  color: var(--text-d);
  margin: 0;
  max-width: 22ch;
}
.article-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-d-muted);
  max-width: 60ch;
  margin: 0;
}
.article-byline {
  display: flex; gap: 0.5rem; align-items: baseline;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-d);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.article-byline__org   { color: var(--text-d); }
.article-byline__sep   { color: var(--accent); }
.article-byline__role  { color: var(--text-d-muted); }

.article-body {
  padding: clamp(4rem, 8vw, 7rem) 0;
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text-d-muted);
  max-width: 760px;
  margin: 0 auto;
}
.article-body > * { max-width: 760px; margin-left: auto; margin-right: auto; }
.article-body p { margin: 0 0 1.5rem; }
.article-body p.lede {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 1.5rem; line-height: 1.5;
  color: var(--text-d);
  max-width: 30ch;
  margin: 0 auto 3rem;
}
.article-body h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: 0.005em;
  color: var(--text-d);
  margin: 3rem 0 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-d);
  max-width: 760px;
}
.article-body em { font-style: italic; color: var(--text-d); }
.article-body strong { color: var(--text-d); font-weight: 500; }
.pull-quote, .article-body blockquote {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.375rem, 2.4vw, 2rem);
  line-height: 1.4;
  letter-spacing: 0.005em;
  color: var(--accent);
  margin: 3rem auto;
  padding: 2.5rem 0 2.5rem 2rem;
  border-left: 1px solid var(--accent);
  max-width: 720px;
}
.article-body blockquote p { margin: 0; }

.article-footer {
  background: var(--bg-ink-1);
  border-top: 1px solid var(--line-d);
  padding: 4rem 0;
}
.article-disclaimer {
  font-size: 0.8125rem;
  color: var(--text-d-dim);
  font-style: italic;
  line-height: 1.7;
  max-width: 80ch;
  margin: 0 auto 3rem;
  text-align: center;
}
.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-d);
  border-top: 1px solid var(--line-d);
  border-bottom: 1px solid var(--line-d);
}
.article-nav > a {
  background: var(--bg-ink-1);
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  transition: background 0.4s var(--ease);
}
.article-nav > a:hover { background: var(--bg-ink-2); }
.article-nav__next { text-align: right; }
.article-nav__label { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-d-dim); }
.article-nav__title { font-family: var(--serif); font-size: 1.125rem; color: var(--text-d); line-height: 1.3; }

/* ---------- CONTACT PAGE LAYOUT ---------- */
.contact-section { padding: clamp(5rem, 10vw, 8.5rem) 0; }
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 5rem;
  align-items: start;
}
.contact-channels {
  display: grid; gap: 1.25rem;
  border-top: 1px solid var(--line-d);
  padding-top: 2rem;
  margin-top: 2.5rem;
}
.contact-channels li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  align-items: baseline;
  font-size: 0.875rem;
}
.contact-channels li > span:first-child {
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-d-dim);
}
.contact-channels a { color: var(--text-d); border-bottom: 1px solid var(--line-d-2); transition: color 0.3s var(--ease), border-color 0.3s var(--ease); }
.contact-channels a:hover { color: var(--accent); border-color: var(--accent); }
.contact-types {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-d);
}
.contact-types h3 { font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-d-dim); font-weight: 500; margin-bottom: 1.5rem; }
.contact-types ul { display: grid; gap: 1.5rem; }
.contact-types li { display: grid; gap: 0.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line-d); }
.contact-types strong { font-family: var(--serif); font-size: 1.0625rem; color: var(--text-d); font-weight: 500; }
.contact-types span { font-size: 0.875rem; color: var(--text-d-muted); line-height: 1.55; }

/* ---------- FOOTER NEWSLETTER ---------- */
.footer-newsletter { margin-top: 1.75rem; }
.footer-newsletter label { display: grid; gap: 0.625rem; }
.footer-newsletter label > span { font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-d-dim); }
.footer-newsletter__row {
  display: flex; align-items: stretch;
  border-bottom: 1px solid var(--line-d-2);
  transition: border-color 0.3s var(--ease);
}
.footer-newsletter__row:focus-within { border-color: var(--accent); }
.footer-newsletter input {
  flex: 1; background: transparent; border: 0;
  color: var(--text-d); font-size: 0.9375rem; padding: 0.625rem 0; outline: none; font-family: inherit;
}
.footer-newsletter input::placeholder { color: var(--text-d-faint); }
.footer-newsletter button {
  background: transparent; border: 0; padding: 0 0.5rem;
  color: var(--text-d); font-size: 1.125rem; cursor: pointer;
  transition: color 0.3s var(--ease);
}
.footer-newsletter button:hover { color: var(--accent); }

/* ---------- COOKIE BAR — restrained corner widget ---------- */
.cookie-bar {
  position: fixed;
  bottom: 1.25rem; left: 1.25rem; right: auto;
  max-width: 460px;
  z-index: 200;
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-d-2);
  padding: 1rem 1.25rem;
  border-radius: 2px;
  transform: translateY(20px); opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out);
}
.cookie-bar:not([hidden]) { transform: translateY(0); opacity: 1; }
.cookie-bar__inner { display: flex; flex-direction: column; gap: 0.75rem; padding: 0; }
.cookie-bar p { font-size: 0.8125rem; color: var(--text-d-muted); line-height: 1.5; margin: 0; }
.cookie-bar a { color: var(--accent); border-bottom: 1px solid var(--accent-soft-d); }
.cookie-bar__actions { display: flex; gap: 0.5rem; }

/* ---------- INTERIOR PAGES — bg base ---------- */
body.page--interior { background: var(--bg-ink-0); }
body.page--interior main { padding-top: 0; }

/* ---------- ACTIVE NAV STATE ---------- */
.primary-nav a[aria-current="page"] {
  color: var(--text-d);
}
.primary-nav a[aria-current="page"]::after {
  right: 0;          /* draw the underline */
  background: var(--accent);
}
.mobile-nav a[aria-current="page"] {
  color: var(--accent);
}

/* ---------- ARTICLE BODY — drop cap, margin note, refined quote ---------- */
.article-body p.lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.625rem, 2.6vw, 2rem);
  line-height: 1.45;
  letter-spacing: 0.005em;
  color: var(--text-d);
  max-width: 28ch;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.article-body p.lede + p::first-letter {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 5.5em;
  line-height: 0.85;
  float: left;
  padding: 0.05em 0.18em 0 0;
  color: var(--accent);
  font-feature-settings: "ss02", "lnum";
}
.article-body p.lede + p { min-height: 5em; }
.article-body p.lede + p::after { content: ""; display: block; clear: left; }

.article-body h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: 0.005em;
  color: var(--text-d);
  margin: 4rem 0 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line-d);
  position: relative;
}
.article-body h2::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 36px; height: 1px;
  background: var(--accent);
}
.pull-quote, .article-body blockquote {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2.125rem);
  line-height: 1.4;
  letter-spacing: 0.005em;
  color: var(--accent);
  margin: 3.5rem auto;
  padding: 0 0 0 0;
  border-left: 0;
  max-width: 720px;
  position: relative;
  text-align: center;
}
.pull-quote::before, .article-body blockquote::before {
  content: "\201C";
  display: block;
  font-family: var(--serif);
  font-style: normal;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0.65;
}
.pull-quote::after, .article-body blockquote::after {
  content: "";
  display: block;
  width: 36px; height: 1px;
  background: var(--accent);
  margin: 1.75rem auto 0;
  opacity: 0.5;
}

/* Margin notes (optional, used inside article-body) */
.article-body .margin-note {
  display: block;
  font-family: var(--sans);
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-d-dim);
  border-left: 1px solid var(--accent);
  padding: 0.25rem 0 0.25rem 1rem;
  margin: 0 0 1.5rem;
  font-style: italic;
}
@media (min-width: 1100px) {
  .article-body .margin-note {
    float: right;
    width: 220px;
    margin: 0.25rem -240px 1rem 1.5rem;
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--accent);
    padding-top: 0.5rem;
  }
}

/* ---------- STATEMENT — refined editorial moment ---------- */
.statement {
  padding: clamp(7rem, 12vw, 10rem) 0;
  position: relative;
}
.statement-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.14;
  letter-spacing: 0.005em;
  color: var(--text);
  max-width: 28ch;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.statement-title::before {
  content: "\201C";
  display: block;
  font-style: normal;
  font-size: 4.5rem;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 1.5rem;
  font-feature-settings: "ss01";
}

/* ---------- CHAPTER TRANSITION — between major sections ---------- */
.chapter-transition {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 4rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.chapter-transition__num { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--accent); letter-spacing: 0; text-transform: none; }
.chapter-transition__line { display: inline-block; width: 60px; height: 1px; background: var(--line-strong); }

/* ---------- HOMEPAGE STATEMENT — accent the quote mark ---------- */
.section--cream .statement-title::before { color: var(--accent); opacity: 0.55; }

/* ---------- PORTFOLIO CARDS — refined hover + add hairline diagram ---------- */
.portfolio-card { position: relative; }
.portfolio-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.portfolio-card:hover::before { opacity: 0.6; }

/* Platform mark — top-right sigil per platform card */
.pc-mark {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  display: block;
  width: 56px; height: 56px;
  color: var(--text-d-dim);
  transition: color 0.5s var(--ease), transform 0.6s var(--ease-out);
  pointer-events: none;
  z-index: 1;
}
.pc-mark .theme-mark { width: 100%; height: 100%; }
.portfolio-card:hover .pc-mark { color: var(--text-d-muted); transform: scale(1.06) rotate(-2deg); }
/* Push the title row down so mark doesn't collide with the head */
.portfolio-card .pc-head { padding-right: 70px; }

/* ---------- ARTICLE COVER — wide editorial banner behind hero ---------- */
.article-header { position: relative; isolation: isolate; overflow: hidden; }
.article-header__art {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  color: var(--text-d-muted);
  opacity: 0.35;
}
.article-header__art .article-cover { width: 100%; height: 100%; }
.article-header__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to bottom, rgba(3,3,3,0.45) 0%, rgba(3,3,3,0) 30%, rgba(3,3,3,0.95) 100%),
    radial-gradient(140% 100% at 30% 30%, rgba(15,16,20,0.5), rgba(2,2,2,0));
}

/* ---------- INSIGHT LIST — better hover treatment ---------- */
.insight-list__link { position: relative; }
.insight-list__link::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.6s var(--ease-out);
}
.insight-list__link:hover::before { width: 100%; }

/* ---------- SECTOR/STRATEGY ROW — same hairline treatment ---------- */
.strategy-row__link, .sector-index__link { position: relative; }
.strategy-row__link::before, .sector-index__link::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.6s var(--ease-out);
}
.strategy-row__link:hover::before, .sector-index__link:hover::before { width: 100%; }

/* ---------- HERO — refined slow drift on home pattern ---------- */
.hero-pattern { animation: hero-drift 60s linear infinite alternate; }
@keyframes hero-drift {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(-3%, -2%, 0) scale(1.04); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-pattern { animation: none !important; }
  .strategy-row__link, .sector-index__link, .insight-list__link {
    transition-property: none !important;
  }
}

/* ---------- FOOTER REFINEMENT — bigger brand block, better proportions ---------- */
/* Desktop-only 4-col: must not override the ≤1100/≤800 responsive rules above. */
@media (min-width: 1101px) {
  .footer-grid {
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
  }
}
.footer-tagline { max-width: 38ch; margin-top: 2rem; }
.footer-newsletter { margin-top: 2rem; max-width: 380px; }


/* ---------- BREADCRUMB — slightly larger gap on hero ---------- */
.page-hero .breadcrumb { margin-bottom: 1.25rem; }
.page-hero .breadcrumb ol { font-size: 0.7rem; }

/* ============================================================
   PARTNERS — restricted-access entry / login page
   ============================================================ */
.partners-entry {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100vh - 80px);
  padding: 9rem 0 6rem;
  display: flex;
  align-items: center;
  background: var(--bg-ink-0);
}
.partners-entry__media { position: absolute; inset: 0; z-index: -2; }
.partners-entry__art   {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.55;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 35%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 35%, transparent 90%);
}
.partners-entry__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 50% 50%, rgba(8,9,12,0.45), rgba(2,2,3,0.95)),
    linear-gradient(to bottom, rgba(3,3,3,0.4) 0%, rgba(3,3,3,0) 30%, rgba(3,3,3,0.95) 100%);
}
.partners-entry__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}
.partners-entry__inner .breadcrumb { align-self: flex-start; }

/* Login card */
.partners-card {
  width: 100%;
  max-width: 480px;
  background: rgba(8,8,10,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-d-2);
  padding: 3rem 2.75rem 2.5rem;
  position: relative;
  margin: 0 auto;
}
.partners-card::before, .partners-card::after {
  content: "";
  position: absolute;
  background: var(--accent);
  opacity: 0.45;
}
.partners-card::before { top: 0; left: 0; width: 28px; height: 1px; }
.partners-card::after  { top: 0; left: 0; width: 1px; height: 28px; }

.partners-card__lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line-d-2);
}
.partners-card__lock {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid var(--line-d-2);
  border-radius: 50%;
  color: var(--accent);
  flex-shrink: 0;
}
.partners-card__lock svg { width: 16px; height: 16px; }
.partners-card__lockup .c-eyebrow { margin: 0; font-size: 0.65rem; letter-spacing: 0.22em; }

.partners-card__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: 0.005em;
  color: var(--text-d);
  margin: 0 0 0.75rem;
}
.partners-card__sub {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-d-muted);
  margin: 0 0 2rem;
  max-width: 36ch;
}

/* Form */
.partners-form { display: grid; gap: 1.25rem; }
.partners-form label { display: grid; gap: 0.5rem; }
.partners-form label > span {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-d-dim);
}
.partners-form input[type="email"],
.partners-form input[type="password"] {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line-d-2);
  color: var(--text-d);
  font-size: 0.9375rem;
  padding: 0.75rem 0.875rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  font-family: inherit;
}
.partners-form input::placeholder { color: var(--text-d-faint); }
.partners-form input:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.04);
}

.partners-form__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8125rem;
}
.partners-form__remember {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--text-d-muted);
}
.partners-form__remember input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 14px; height: 14px;
  border: 1px solid var(--line-d-2);
  background: transparent;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.partners-form__remember input[type="checkbox"]:checked {
  border-color: var(--accent);
  background: var(--accent);
}
.partners-form__remember input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px; top: 1px;
  width: 4px; height: 8px;
  border: solid #000;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.partners-form__remember > span {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--text-d-muted);
}

.partners-form__forgot {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-d-muted);
  border-bottom: 1px solid var(--line-d-2);
  padding-bottom: 2px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.partners-form__forgot:hover { color: var(--accent); border-color: var(--accent); }

.partners-form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.75rem;
}
.partners-form__status { margin: 0; min-height: 1.2em; }

.partners-card__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-d-dim);
}
.partners-card__divider::before, .partners-card__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-d);
}

.partners-card__alt {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2rem;
}
.partners-card__alt p {
  font-size: 0.9375rem;
  color: var(--text-d-muted);
  margin: 0;
}

.partners-card__security {
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-d);
  display: grid;
  gap: 0.5rem;
}
.partners-card__security li {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--text-d-dim);
  line-height: 1.5;
}
.partners-card__security li > span:first-child {
  color: var(--accent);
  font-size: 0.5rem;
  position: relative;
  top: -1px;
}

.partners-card__support {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-d);
  font-size: 0.75rem;
  font-style: italic;
  color: var(--text-d-dim);
  line-height: 1.6;
}
.partners-card__support a { color: var(--text-d-muted); border-bottom: 1px solid var(--line-d-2); }
.partners-card__support a:hover { color: var(--accent); border-color: var(--accent); }

/* Mobile tweaks */
@media (max-width: 600px) {
  .partners-card { padding: 2.25rem 1.75rem 2rem; }
  .partners-form__row { flex-direction: column; align-items: flex-start; }
}

/* ---------- RESPONSIVE — multi-page additions ---------- */
@media (max-width: 1100px) {
  .hero-editorial__lead { max-width: none; gap: 1.75rem; }
  .hero-editorial__meta { gap: 1.25rem 2rem; }
  .hero-editorial__ctas { flex-direction: column; gap: 1.25rem; align-items: flex-start; }

  .strategy-block__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .strategy-block__head  { position: static; }

  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }

  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .theme-grid   { grid-template-columns: repeat(2, 1fr); }
  .engage-grid  { grid-template-columns: 1fr; }
  .capability-list { grid-template-columns: 1fr; }
  .capability-list li:nth-child(odd), .capability-list li:nth-child(even) { padding: 1.5rem 0; border-left: 0; }
}

@media (max-width: 800px) {
  .hero--editorial { padding: 8rem 0 4rem; min-height: auto; }
  .hero-editorial__lead, .hero-editorial__sub, .hero-editorial__title { max-width: 100%; }
  .hero-editorial__meta { display: grid; grid-template-columns: 1fr; gap: 1.1rem; max-width: 100%; }
  .page-hero { padding: 8rem 0 4rem; }
  .page-hero__meta { grid-template-columns: 1fr; }
  .page-hero__meta div + div { border-left: 0; border-top: 1px solid var(--line-d); padding: 1rem 0 0; margin-top: 1rem; }

  .strategy-row__link, .sector-index__link {
    grid-template-columns: 50px 1fr 40px;
    grid-template-areas: "num title arrow" "num line arrow";
    gap: 0.5rem 1rem;
  }
  .strategy-row__num, .sector-index__num { grid-area: num; }
  .strategy-row__title, .sector-index__name { grid-area: title; }
  .strategy-row__line, .sector-index__thesis { grid-area: line; }
  .strategy-row__arrow, .sector-index__arrow { grid-area: arrow; }
  .strategy-row__mark { display: none; }

  /* Themed variant — explicit 2-col placement so the body (with wrapping
     theme chips) always lands in the 1fr track. Avoids auto-placement bug
     where 4 children (mark/num/body/arrow) spill body into a narrow column. */
  .sector-index__link--themed {
    grid-template-columns: 44px 1fr;
    grid-template-areas:
      "mark body"
      "num  body";
    align-items: start;
    column-gap: 1rem;
    row-gap: 0.35rem;
  }
  .sector-index__link--themed .sector-index__mark { grid-area: mark; }
  .sector-index__link--themed .sector-index__num  { grid-area: num; align-self: start; }
  .sector-index__link--themed .sector-index__body { grid-area: body; min-width: 0; }
  .sector-index__link--themed .sector-index__arrow { display: none; }
  .sector-index__themes li { padding: 0.35rem 0.7rem; font-size: 0.65rem; letter-spacing: 0.14em; }
  .strategy-toc { display: none; }

  .insight-list__link { grid-template-columns: 1fr 40px; }
  .portfolio-grid    { grid-template-columns: 1fr; }
  .related-grid      { grid-template-columns: 1fr; }
  .theme-grid        { grid-template-columns: 1fr; }
  .article-nav       { grid-template-columns: 1fr; }
  .article-nav__next { text-align: left; }
  .trust-list        { grid-template-columns: 1fr; }
  .trust-list li:nth-child(odd), .trust-list li:nth-child(even) { padding: 2rem 0; border-left: 0; }

  .cookie-bar { left: 0.75rem; right: 0.75rem; max-width: none; }
}

/* =============================================================
   AUTH SPLIT — partner login (page--auth)
   Hides global header/footer/cookie. Two-pane: cream form, ink pitch.
   ============================================================= */
body.page--auth { margin: 0; padding: 0; overflow: hidden; }
body.page--auth .site-header,
body.page--auth .site-footer,
body.page--auth .cookie-bar,
body.page--auth .skip-link { display: none !important; }
body.page--auth #main { padding: 0; margin: 0; }

.auth-split {
  position: fixed;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: #000000;
  overflow: hidden;
}

/* ---- LEFT PANE (cream) ---- */
.auth-split__left {
  position: relative;
  background: var(--bg-cream-0);
  color: var(--text-l);
  padding: 2.5rem 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  overflow-y: auto;
}
.auth-split__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.auth-split__brand {
  display: inline-block;
  text-decoration: none;
}
.auth-split__brand-logo {
  height: 32px;
  width: auto;
  display: block;
  /* white-on-transparent logo → invert to black on cream */
  filter: brightness(0);
  opacity: 0.9;
}
.auth-split__back {
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: var(--text-l-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s var(--ease);
}
.auth-split__back:hover { color: var(--accent); }
.auth-split__back span { margin-right: 0.25rem; }
.auth-split__form-wrap {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  align-self: center;
  padding: 4rem 0;
}
.auth-split__eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.25rem;
}
.auth-split__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.1rem, 3.4vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--text-l);
  margin: 0 0 0.875rem;
}
.auth-split__sub {
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--text-l-muted);
  line-height: 1.6;
  margin: 0 0 2.25rem;
}
.auth-split__alt {
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--text-l-muted);
  margin: 1.75rem 0 0;
}
.auth-split__alt a {
  color: var(--text-l);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: color 0.3s var(--ease);
}
.auth-split__alt a:hover { color: var(--accent); }
.auth-split__foot {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--text-l-dim);
  margin: 0;
}

/* ---- AUTH FORM ---- */
.auth-form { display: flex; flex-direction: column; gap: 1.25rem; }
.auth-form__field { display: flex; flex-direction: column; gap: 0.5rem; }
.auth-form__label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-l);
}
.auth-form__forgot {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-l-muted);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.auth-form__forgot:hover { color: var(--accent); }
.auth-form__field input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: #ffffff;
  border: 1px solid var(--line-l-2);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--text-l);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.auth-form__field input::placeholder { color: var(--text-l-faint); }
.auth-form__field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,169,97,0.18);
}
.auth-form__submit {
  margin-top: 0.5rem;
  background: var(--text-l);
  color: #ffffff;
  border: 1px solid var(--text-l);
  padding: 0.95rem 1.25rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.auth-form__submit:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-l);
}
.auth-form__divider {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-l-dim);
  margin: 0.5rem 0 0.25rem;
}
.auth-form__divider::before,
.auth-form__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-l-2);
}
.auth-form__sso {
  background: #ffffff;
  color: var(--text-l);
  border: 1px solid var(--line-l-2);
  padding: 0.875rem 1.25rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.auth-form__sso svg { width: 18px; height: 18px; }
.auth-form__sso:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.auth-form__status:empty { display: none; }

/* ---- RIGHT PANE (pure black, logo only) ---- */
.auth-split__right {
  background: #000000;
  color: var(--text-d);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  height: 100%;
}
.auth-split__mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
}
.auth-split__mark-logo {
  width: clamp(220px, 26vw, 360px);
  height: auto;
  opacity: 0.95;
}
.auth-split__mark-line {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--text-d-dim);
  margin: 0;
}

/* ---- responsive: stack on tablet/mobile ---- */
@media (max-width: 960px) {
  .auth-split { grid-template-columns: 1fr; }
  .auth-split__right { order: -1; min-height: 200px; padding: 2.5rem 1.5rem; }
  .auth-split__left { padding: 2rem 1.75rem 1.5rem; min-height: auto; }
  .auth-split__form-wrap { padding: 2.5rem 0; }
  .auth-split__mark-logo { width: 180px; }
  .auth-split__mark-line { font-size: 0.85rem; }
}


/* ============================================================
   PARTNER PORTAL — secure sign-in (page--portal)
   Full-screen dark backdrop + centered glass card. Mobile-robust.
   ============================================================ */
body.page--portal { overflow-x: hidden; }
body.page--portal .site-header,
body.page--portal .site-footer,
body.page--portal .cookie-bar,
body.page--portal .skip-link { display: none !important; }
body.page--portal #main { padding: 0; margin: 0; }

.portal {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.25rem 3rem;
  background: var(--bg-ink-0);
  overflow: hidden;
  isolation: isolate;
}
.portal__bg { position: absolute; inset: 0; z-index: -1; }
.portal__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.16;
  filter: saturate(0.7) contrast(1.05) brightness(0.6);
}
.portal__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 80%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 80%);
  opacity: 0.6;
}
.portal__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(201,169,97,0.06), transparent 55%),
    linear-gradient(to bottom, rgba(3,3,3,0.7), rgba(3,3,3,0.4) 40%, rgba(3,3,3,0.85));
}

.portal__back {
  position: absolute; top: 1.75rem; left: 1.75rem; z-index: 3;
  font-family: var(--sans); font-size: 0.8125rem; letter-spacing: 0.02em;
  color: var(--text-d-muted); transition: color 0.3s var(--ease);
}
.portal__back:hover { color: var(--accent); }
.portal__back span { margin-right: 0.35rem; }

.portal__card {
  position: relative; z-index: 2;
  width: 100%; max-width: 424px;
  background: rgba(12,13,16,0.72);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 2.75rem 2.5rem 2.25rem;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.05);
}

.portal__brand { display: inline-block; margin-bottom: 2rem; }
.portal__logo { height: 30px; width: auto; display: block; opacity: 0.95; }

.portal__eyebrow {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 0.9rem;
}
.portal__eyebrow-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); }

.portal__title {
  font-family: var(--serif); font-weight: 400;
  font-size: 2.1rem; line-height: 1.05; letter-spacing: 0.005em;
  color: var(--text-d); margin: 0 0 0.6rem;
}
.portal__sub {
  font-size: 0.9rem; line-height: 1.6; color: var(--text-d-muted);
  margin: 0 0 2rem;
}

.portal__form { display: flex; flex-direction: column; gap: 1.15rem; }
.portal__field { display: flex; flex-direction: column; gap: 0.5rem; }
.portal__label {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-d-dim);
}
.portal__forgot { font-size: 0.72rem; letter-spacing: 0.02em; text-transform: none; color: var(--text-d-muted); transition: color 0.3s var(--ease); }
.portal__forgot:hover { color: var(--accent); }
.portal__field input {
  width: 100%; padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--text-d); font-size: 0.95rem; font-family: var(--sans);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.portal__field input::placeholder { color: rgba(255,255,255,0.28); }
.portal__field input:focus {
  outline: none; border-color: var(--accent);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 3px rgba(201,169,97,0.12);
}

.portal__submit {
  margin-top: 0.4rem;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.95rem 1.5rem;
  background: var(--bg-cream-0); color: #14110b;
  border: 1px solid var(--bg-cream-0); border-radius: var(--radius-sm);
  font-family: var(--sans); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.portal__submit svg { width: 17px; height: 17px; }
.portal__submit:hover { background: #fff; transform: translateY(-1px); box-shadow: 0 12px 28px -12px rgba(255,255,255,0.4); }

.portal__status { font-size: 0.8rem; color: var(--accent); margin: 0; min-height: 1em; }

.portal__divider {
  display: flex; align-items: center; gap: 1rem;
  color: var(--text-d-dim); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  margin: 0.35rem 0;
}
.portal__divider::before, .portal__divider::after { content: ""; flex: 1; height: 1px; background: rgba(255,255,255,0.1); }

.portal__sso {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.65rem;
  padding: 0.85rem 1.5rem;
  background: transparent; color: var(--text-d);
  border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius-sm);
  font-family: var(--sans); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.03em;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.portal__sso svg { width: 16px; height: 16px; color: var(--text-d-muted); }
.portal__sso:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.03); }

.portal__alt { margin: 1.75rem 0 0; text-align: center; font-size: 0.85rem; color: var(--text-d-muted); }
.portal__alt a { color: var(--text-d); border-bottom: 1px solid rgba(255,255,255,0.2); transition: color 0.3s var(--ease), border-color 0.3s var(--ease); }
.portal__alt a:hover { color: var(--accent); border-color: var(--accent); }

.portal__secure {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  margin: 2rem 0 0; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.04em;
  color: var(--text-d-dim); text-align: center;
}
.portal__secure svg { width: 13px; height: 13px; flex-shrink: 0; }

@media (max-width: 480px) {
  .portal { padding: 5rem 1rem 2.5rem; }
  .portal__card { padding: 2rem 1.5rem 1.75rem; }
  .portal__back { top: 1.25rem; left: 1.25rem; }
  .portal__title { font-size: 1.85rem; }
  .portal__secure { font-size: 0.6rem; letter-spacing: 0.02em; }
}
