/* ===========================================================
   MULIUM — DESIGN SYSTEM
   Gravitas, restraint, and rationed signal-cyan
   ----------------------------------------------------------
   Discipline rules:
   - ZERO border-radius globally. Hairline 1px borders only.
   - NO shadows beyond a single 1px hairline.
   - Navy chambers carry the dark mystique; bone chambers carry the
     business gravitas; cyan is rationed to <2% of the surface.
   - Serif: Playfair Display (display only, never body).
   - Mono: JetBrains Mono (eyebrows, data, axes, tags only).
   - Sans: Inter (everything else).
   =========================================================== */

/* ---------- Tokens ---------- */
:root {
  /* === BLU MULIUM — canonical brand color ============================ */
  --mulium-blue:       #1C1C21;   /* Blu Mulium — primary brand */
  --mulium-blue-deep:  #1C1C21;   /* Blu Deep Mulium — footer/shadow */
  --mulium-blue-soft:  #1C1C21;   /* Blu Mulium highlight */
  /* legacy aliases (kept for compatibility — point to canonical above) */
  --navy:        var(--mulium-blue);
  --navy-deep:   var(--mulium-blue-deep);
  --navy-soft:   var(--mulium-blue-soft);
  --bone:        #EDEAE3;   /* warm bone — paper heritage */
  --bone-soft:   #F5F2EB;
  --bone-deep:   #E2DDD0;

  /* Ink */
  --ink:         #1C1C21;
  --ink-2:       #1C1C21;
  --gray-700:    #4A4F66;
  --gray-500:    #7A7E92;
  --gray-300:    #B5B7C2;
  --gray-200:    #DDDBD2;

  /* Accents — disciplined */
  --signal:      #00d4ff;                 /* signal cyan */
  --signal-dim:  rgba(0,212,255,0.10);
  --signal-glow: rgba(0,212,255,0.28);
  --burgundy:    #6B1F2E;
  --gold:        #B8945F;

  /* Rules */
  --rule-light:  rgba(14,17,38,0.10);
  --rule-on-dark: rgba(237,234,227,0.10);
  --rule-on-dark-strong: rgba(237,234,227,0.22);

  /* Type */
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans:  "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Layout */
  --max:        1320px;
  --max-prose:  720px;
  --pad:        clamp(20px, 4vw, 56px);
  --section-y:  clamp(80px, 9vw, 144px);
  --section-y-sm: clamp(56px, 6vw, 96px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
@media (min-width: 768px) { body { font-size: 18px; } }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
::selection { background: var(--signal); color: var(--navy); }

/* ---------- Layout primitives ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* ===========================================================
   INTRO PULSE — sober, 2.4s max
   =========================================================== */
.intro {
  position: fixed; inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px;
  opacity: 1;
  transition: opacity .55s ease-out, visibility 0s linear .55s;
}
body.intro-done .intro { opacity: 0; visibility: hidden; pointer-events: none; }
.intro-mark svg { display: block; }
.intro-frame   { stroke-dasharray: 240; stroke-dashoffset: 240; animation: introDraw 0.9s ease-out forwards; }
.intro-glyph   { stroke-dasharray: 120; stroke-dashoffset: 120; animation: introDraw 0.9s ease-out 0.35s forwards; }
.intro-rule    { stroke-dasharray: 40;  stroke-dashoffset: 40;  animation: introDraw 0.4s ease-out 1.05s forwards; }
@keyframes introDraw { to { stroke-dashoffset: 0; } }

.intro-meta {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--bone);
  opacity: 0;
  animation: introFade .5s ease-out 1.0s forwards;
}
.intro-line {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.intro-dots { display: inline-flex; gap: 4px; }
.intro-dots i {
  width: 4px; height: 4px;
  background: var(--navy);
  opacity: 0.35;
  display: inline-block;
  animation: introDot 1.2s ease-in-out infinite;
}
.intro-dots i:nth-child(2) { animation-delay: .15s; }
.intro-dots i:nth-child(3) { animation-delay: .3s; background: var(--signal); }
@keyframes introDot { 0%,100% { opacity: 0.25; } 40% { opacity: 1; } }
@keyframes introFade { to { opacity: 1; } }

.intro-skip {
  position: absolute;
  bottom: 32px; right: 32px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: rgba(237,234,227,0.45);
  border: 1px solid rgba(237,234,227,0.18);
  padding: 8px 14px;
  transition: color .2s ease, border-color .2s ease;
}
.intro-skip:hover { color: var(--bone); border-color: rgba(237,234,227,0.5); }

@media (prefers-reduced-motion: reduce) {
  .intro-frame, .intro-glyph, .intro-rule { animation: none; stroke-dashoffset: 0; }
  .intro-meta { opacity: 1; animation: none; }
  .intro-dots i { animation: none; }
}

/* ===========================================================
   HEADER
   =========================================================== */
/* ===========================================================
   UTILITY BAR — top dark strip with pulse dot
   =========================================================== */
.utility-bar {
  background: var(--navy);
  color: var(--bone);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.utility-inner {
  display: flex; justify-content: space-between; align-items: center;
  height: 36px;
}
.util-meta { display: inline-flex; align-items: center; gap: 10px; color: rgba(237,234,227,0.7); font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; }
.util-meta .util-dot {
  width: 7px; height: 7px;
  background: var(--burgundy);
  display: inline-block;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(107,31,46,0.55);
  animation: utilPulse 1.6s ease-in-out infinite;
}
@keyframes utilPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(0.7); }
}
.util-links { display: inline-flex; gap: 22px; list-style: none; }
.util-links a { color: rgba(237,234,227,0.65); text-decoration: none; font-family: var(--mono); font-size: 11px; letter-spacing: 0.10em; transition: color .15s var(--ease); }
.util-links a:hover, .util-links a[aria-current="page"] { color: var(--bone); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  height: 80px;
  background: rgba(237,234,227,0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--rule-light);
}
.site-header .header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%; gap: 32px;
}
.site-header .logo-link  { justify-self: start; }
.site-header nav.primary { justify-self: center; }
.site-header .header-cta { justify-self: end; }
.logo-link {
  display: inline-flex; align-items: center; gap: 12px;
}
.logo-link img { height: 40px; width: auto; }
.logo-word {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--navy);
}
nav.primary ul {
  display: flex; gap: 36px; list-style: none;
}
nav.primary a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  letter-spacing: 0.01em;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
nav.primary a:hover { color: var(--navy); border-bottom-color: var(--signal); }

.header-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  background: var(--burgundy);
  color: #fff;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--burgundy);
  border-radius: 0;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.header-cta:hover,
.header-cta:focus-visible { background: #4F141F; border-color: #4F141F; outline: none; }
.cta-dot {
  width: 6px; height: 6px;
  background: var(--signal);
  display: inline-block;
  box-shadow: 0 0 8px var(--signal-glow);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.hamburger {
  display: none;
  width: 28px; height: 28px;
  flex-direction: column; gap: 5px;
  justify-content: center; align-items: center;
}
.hamburger span {
  width: 22px; height: 1.25px;
  background: var(--navy);
  display: block;
}

.mobile-nav { display: none; border-top: 1px solid var(--rule-light); padding: 24px var(--pad) 32px; background: var(--navy); }
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; display: grid; gap: 16px; }
.mobile-nav a { font-family: var(--serif); font-size: 22px; color: var(--ink); }

@media (max-width: 900px) {
  .site-header { height: 64px; }
  nav.primary, .header-cta { display: none; }
  .hamburger { display: flex; }
  .logo-link img { height: 28px; }
  .logo-word { font-size: 19px; }
}

/* ===========================================================
   GLOBAL TYPOGRAPHIC PRIMITIVES
   =========================================================== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 24px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: currentColor;
  display: inline-block;
}
.eyebrow-light { color: rgba(237,234,227,0.55); }

.section-head { max-width: 800px; margin-bottom: clamp(48px, 6vw, 80px); }
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.014em;
  color: var(--navy);
  text-wrap: balance;
}
.section-title em { font-style: italic; font-weight: 400; color: var(--ink-2); }
.section-title-light { color: var(--bone); }
.section-title-light em { color: rgba(237,234,227,0.65); }
.section-lead {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  color: var(--gray-700);
  margin-top: 24px;
  max-width: 60ch;
}
.section-lead-light { color: rgba(237,234,227,0.72); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  background: var(--signal);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--signal);
  transition: background .2s ease, transform .2s ease;
}
.btn-primary:hover { background: #1be4ff; }
.btn-primary .arr { font-family: var(--serif); font-size: 16px; line-height: 1; transition: transform .2s ease; }
.btn-primary:hover .arr { transform: translateX(3px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  background: transparent;
  color: var(--bone);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(237,234,227,0.32);
  transition: border-color .2s ease, color .2s ease;
}
.btn-secondary:hover { border-color: var(--bone); color: var(--bone); }

/* On bone surfaces, secondary inverts */
.numbers .btn-secondary,
.engagement .btn-secondary,
.insights .btn-secondary,
.method .btn-secondary,
.practice .btn-secondary {
  color: var(--navy);
  border-color: var(--rule-light);
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.link-arrow .arr { font-family: var(--serif); font-size: 14px; line-height: 1; }
.link-arrow:hover { color: var(--navy); border-bottom-color: var(--signal); }

/* ===========================================================
   HERO — dark navy chamber, opens the site
   =========================================================== */
.hero {
  position: relative;
  background: var(--navy); /* #1C1C21 — same as logo */
  color: var(--bone);
  padding: clamp(24px, 3vw, 48px) 0 clamp(60px, 7vw, 96px);
  border-bottom: 1px solid var(--navy);
  overflow: hidden;
}
.hero-grid { display: none; } /* removed grid pattern per request */
.hero-inner { position: relative; z-index: 2; }
.hero-eyebrow, .hero-title, .hero-lead, .hero-meta { max-width: 1080px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(237,234,227,0.6);
  margin-bottom: 32px;
  padding: 8px 14px;
  border: 1px solid var(--rule-on-dark);
}
.term-prompt { color: var(--signal); }

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 7.2vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.018em;
  color: var(--bone);
  margin-bottom: 36px;
  text-wrap: balance;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: rgba(237,234,227,0.72);
  position: relative;
}
.hero-title em::after {
  content: "";
  position: absolute;
  left: 0; right: 12%;
  bottom: -2px;
  height: 1px;
  background: var(--signal);
  opacity: 0.45;
}

.hero-lead {
  max-width: 64ch;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.66;
  color: rgba(237,234,227,0.78);
  margin-bottom: 40px;
  text-wrap: pretty;
}

.hero-meta {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(237,234,227,0.55);
  padding: 14px 0;
  border-top: 1px solid var(--rule-on-dark);
  border-bottom: 1px solid var(--rule-on-dark);
  margin-bottom: 40px;
}
.hero-meta .meta-item b { color: var(--bone); font-weight: 500; }
.hero-meta .meta-sep { width: 1px; height: 12px; background: var(--rule-on-dark); display: inline-block; }

.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(237,234,227,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237,234,227,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: -1px -1px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 70% at 75% 50%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 75% 50%, black 0%, transparent 75%);
}

@media (max-width: 720px) {
  .hero-meta { font-size: 10px; gap: 10px; }
  .hero-meta .meta-sep { display: none; }
}

/* ===========================================================
   NUMBERS — institutional-scale, mono-labeled
   =========================================================== */
.numbers {
  background: var(--navy);
  padding: var(--section-y) 0;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule-light);
}
.num-cell {
  padding: 40px 32px 36px;
  border-right: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
  position: relative;
}
.num-cell:last-child { border-right: none; }
.num-cell::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 32px; height: 1px;
  background: var(--navy);
}
.num-cell:hover::before { background: var(--signal); }
.num-figure {
  font-family: var(--serif);
  font-size: clamp(60px, 7vw, 96px);
  font-weight: 400;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  font-variant-numeric: tabular-nums;
}
.num-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}
.num-sub {
  font-size: 13px;
  line-height: 1.55;
  color: var(--gray-500);
  font-family: var(--mono);
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .num-cell:nth-child(2) { border-right: none; }
  .num-cell { padding: 28px 20px; }
  .num-figure { margin-bottom: 16px; }
}
@media (max-width: 520px) {
  .numbers-grid { grid-template-columns: 1fr; }
  .num-cell { border-right: none; }
}

/* ===========================================================
   PRACTICE MATRIX — 6×6
   =========================================================== */
.practice {
  background: var(--navy);
  padding: var(--section-y) 0;
  border-top: 1px solid var(--rule-light);
}
.matrix {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  margin-top: 56px;
  align-items: start;
}
.matrix-y .axis-label,
.matrix-y ol {
  font-family: var(--mono);
}
.matrix-y .axis-label {
  display: flex;
  align-items: flex-end;
  min-height: 96px;            /* match matrix-x header height */
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-500);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule-light);
  margin-bottom: 0;
}
.matrix-y ol {
  list-style: none;
  display: grid;
  grid-template-rows: repeat(6, 1fr);
  min-height: calc(520px - 96px - 56px); /* matrix-panel rows 96 header + 56 foot */
}
.matrix-y ol li {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  padding: 0;
  border-bottom: 1px solid var(--rule-light);
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  cursor: pointer;
  transition: color .2s ease, padding-left .2s ease;
}
.matrix-y ol li .ax {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--gray-500);
}
.matrix-y ol li:hover,
.matrix-y ol li.is-active {
  color: var(--navy);
  padding-left: 8px;
}
.matrix-y ol li.is-active .ax { color: var(--signal); }

.matrix-panel {
  border: 1px solid var(--navy);
  background: var(--navy);
  display: grid;
  grid-template-rows: 96px 1fr 56px;
  min-height: 520px;
}
.matrix-x {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid var(--rule-light);
  background: var(--navy);
}
.matrix-x span {
  align-self: end;
  padding: 0 12px 14px;
  border-left: 1px solid var(--rule-light);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-500);
  line-height: 1.4;
}
.matrix-x span:first-child { border-left: none; }

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
}
.matrix-grid .cell {
  border-left: 1px solid var(--rule-light);
  border-top: 1px solid var(--rule-light);
  position: relative;
  transition: background .2s ease;
}
.matrix-grid .cell:nth-child(6n+1) { border-left: none; }
.matrix-grid .cell:nth-child(-n+6) { border-top: none; }
.matrix-grid .cell .dot {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 5px; height: 5px;
  background: var(--gray-300);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.matrix-grid .cell.col-active { background: rgba(14,17,38,0.025); }
.matrix-grid .cell.row-active { background: rgba(14,17,38,0.04); }
.matrix-grid .cell.col-active.row-active {
  background: rgba(0,212,255,0.06);
}
.matrix-grid .cell.col-active.row-active .dot {
  background: var(--signal);
  transform: translate(-50%, -50%) scale(1.8);
  box-shadow: 0 0 12px var(--signal-glow);
}

.matrix-foot {
  border-top: 1px solid var(--rule-light);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  min-width: 0;
}
.matrix-foot .mx-pos, .matrix-foot .mx-legend { min-width: 0; }
.matrix-foot .mx-pos { flex: 1 1 auto; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.matrix-foot .mx-legend { flex: 0 0 auto; white-space: nowrap; }
.mx-pos b { color: var(--navy); font-weight: 500; }
.mx-pos .x { color: var(--gray-300); margin: 0 8px; font-family: var(--serif); }
.mx-legend i {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--gray-300);
  margin-right: 8px;
  vertical-align: middle;
}

@media (max-width: 900px) {
  .matrix { grid-template-columns: 1fr; gap: 32px; }
  .matrix-x { display: none; }
  .matrix-panel { grid-template-rows: 1fr auto; min-height: auto; }
  .matrix-grid { grid-template-rows: repeat(6, 56px); }
  .matrix-foot { flex-direction: column; align-items: flex-start; justify-content: center; gap: 7px; padding: 14px 16px; }
  .matrix-foot .mx-pos { white-space: normal; overflow: visible; }
}

/* ===========================================================
   PULL QUOTE — burgundy/gold accent
   =========================================================== */
.pull-section {
  background: var(--navy);
  padding: var(--section-y-sm) 0;
  border-top: 1px solid var(--rule-light);
}
.pull {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.25;
  letter-spacing: -0.012em;
  color: var(--navy);
  max-width: 28ch;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 0 32px;
}
.pull em { font-style: normal; color: var(--burgundy); }
.pull-mark {
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 96px);
  color: var(--gold);
  display: block;
  line-height: 0.5;
  margin-bottom: 24px;
  font-style: normal;
}
.pull-attrib {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px;
  margin-top: 40px;
}
.pull-rule { width: 32px; height: 1px; background: var(--gold); display: block; }
.pull-name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* ===========================================================
   SCHEMATIC — dark, precision grid
   =========================================================== */
.schematic {
  background: var(--navy);
  color: var(--bone);
  padding: var(--section-y) 0;
  border-top: 1px solid var(--rule-on-dark);
}
.schematic-frame {
  margin-top: 56px;
  border: 1px solid var(--rule-on-dark-strong);
  background: var(--navy-soft);
  padding: 24px;
  position: relative;
}
.schematic-frame::before,
.schematic-frame::after {
  content: "";
  position: absolute;
  width: 12px; height: 12px;
  border: 1px solid var(--signal);
}
.schematic-frame::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.schematic-frame::after  { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.schematic-frame img { width: 100%; height: auto; }

/* ===========================================================
   FEATURED ENGAGEMENT
   =========================================================== */
.engagement {
  background: var(--navy);
  padding: var(--section-y) 0;
  border-top: 1px solid var(--rule-light);
}
.engagement-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}
.engagement-meta {
  border-top: 1px solid var(--navy);
  padding-top: 28px;
}
.engagement-meta .eyebrow { margin-bottom: 16px; }
.eng-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--signal);
  background: var(--signal-dim);
  padding: 4px 10px;
  margin-bottom: 24px;
}
.eng-stats {
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule-light);
}
.eng-stats li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-light);
  font-size: 14px;
}
.eng-stats li span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-500);
  align-self: center;
}
.eng-stats li b {
  font-weight: 500;
  color: var(--navy);
  font-family: var(--sans);
  letter-spacing: -0.005em;
}

.engagement-body { padding-top: 28px; border-top: 1px solid var(--navy); }
.eng-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.012em;
  color: var(--navy);
  margin-bottom: 28px;
  text-wrap: balance;
}
.engagement-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 20px;
  max-width: 60ch;
}
.engagement-body .link-arrow { margin-top: 16px; }

@media (max-width: 900px) {
  .engagement-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===========================================================
   INSIGHTS STRIP
   =========================================================== */
.insights {
  background: var(--navy);
  padding: var(--section-y) 0;
  border-top: 1px solid var(--rule-light);
}
.insights-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 32px;
  flex-wrap: wrap;
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--navy);
}
.insight-card {
  display: flex; flex-direction: column;
  padding: 32px 28px 28px;
  border-right: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
  background: var(--navy);
  transition: background .25s ease;
  position: relative;
  min-height: 320px;
}
.insight-card:last-child { border-right: none; }
.insight-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 1px;
  background: var(--signal);
  transition: width .35s cubic-bezier(.6,.05,.2,1);
}
.insight-card:hover { background: var(--navy); }
.insight-card:hover::before { width: 100%; }
.card-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gray-500);
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule-light);
}
.card-num { color: var(--navy); font-weight: 500; }
.insight-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.008em;
  color: var(--navy);
  margin-bottom: 16px;
  text-wrap: balance;
}
.insight-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-700);
  margin-bottom: auto;
  padding-bottom: 24px;
}
.card-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-500);
  padding-top: 16px;
  border-top: 1px solid var(--rule-light);
}

@media (max-width: 900px) {
  .insights-grid { grid-template-columns: 1fr; }
  .insight-card { border-right: none; }
}

/* ===========================================================
   METHOD — light schematic
   =========================================================== */
.method {
  background: var(--navy);
  padding: var(--section-y) 0;
  border-top: 1px solid var(--rule-light);
}
.method-frame {
  margin-top: 48px;
  border: 1px solid var(--rule-light);
  background: var(--navy);
  padding: 24px;
}
.method-frame img { width: 100%; height: auto; }

/* ===========================================================
   CTA NAVY
   =========================================================== */
.cta {
  background: var(--navy);
  color: var(--bone);
  padding: clamp(96px, 12vw, 168px) 0;
  border-top: 1px solid var(--rule-on-dark);
  position: relative;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 80% 50%, rgba(0,212,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta .wrap { position: relative; z-index: 1; max-width: 980px; }
.cta-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.014em;
  color: var(--bone);
  margin-bottom: 28px;
  text-wrap: balance;
}
.cta-title em { font-style: italic; color: var(--signal); font-weight: 400; }
.cta-lead {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(237,234,227,0.72);
  margin-bottom: 40px;
  max-width: 56ch;
}
.cta-btn { padding: 18px 32px; font-size: 13px; }

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(237,234,227,0.65);
  padding: clamp(80px, 8vw, 120px) 0 32px;
  border-top: 1px solid var(--rule-on-dark);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 3fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule-on-dark);
}
.footer-mark {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.footer-mark span {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--bone);
}
.footer-tagline {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(237,234,227,0.55);
  max-width: 38ch;
  margin-bottom: 24px;
}
.footer-meta {
  display: flex; flex-wrap: wrap; gap: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(237,234,227,0.45);
}
.footer-meta span:not(:last-child)::after {
  content: "·";
  margin-left: 14px;
  color: rgba(237,234,227,0.25);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-cols h4 {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule-on-dark);
}
.footer-cols .h4-tight { margin-top: 28px; }
.footer-cols ul { list-style: none; display: grid; gap: 10px; }
.footer-cols a {
  font-size: 13px;
  color: rgba(237,234,227,0.65);
  transition: color .15s ease;
}
.footer-cols a:hover { color: var(--bone); }
.footer-office li {
  display: flex; flex-direction: column; gap: 4px;
  font-size: 13px;
}
.footer-office b { color: var(--bone); font-weight: 500; }
.footer-office span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(237,234,227,0.45);
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  padding-top: 28px;
  font-size: 12px;
  color: rgba(237,234,227,0.45);
}
.copyright {
  font-family: var(--mono);
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.disclaimer {
  font-size: 12px;
  line-height: 1.65;
  max-width: 78ch;
  color: rgba(237,234,227,0.4);
}

@media (max-width: 1080px) {
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 540px) {
  .footer-cols { grid-template-columns: 1fr; }
}

/* ===========================================================
   LIVE OPS TICKER — bottom-right, very discreet
   =========================================================== */
.live-ops {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 80;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(14,17,38,0.92);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(237,234,227,0.12);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(237,234,227,0.7);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}
.live-ops.is-live { opacity: 1; transform: translateY(0); pointer-events: auto; }
.live-dot {
  width: 6px; height: 6px;
  background: var(--signal);
  display: inline-block;
  box-shadow: 0 0 6px var(--signal-glow);
  animation: pulse 2.6s ease-in-out infinite;
}
@media (max-width: 720px) {
  .live-ops { bottom: 16px; right: 16px; padding: 8px 12px; font-size: 9px; }
}

/* ===========================================================
   BOOT STATE — body during intro
   =========================================================== */
body.is-booting { overflow: hidden; }
body.is-booting main,
body.is-booting .site-header,
body.is-booting .site-footer { opacity: 0; }
body.intro-done main,
body.intro-done .site-header,
body.intro-done .site-footer {
  opacity: 1;
  transition: opacity .6s ease-out;
}

/* ===========================================================
   ACCESSIBILITY HELPERS
   =========================================================== */
:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===========================================================
   INDUSTRIES — 6 cards 3×2
   =========================================================== */
.industries { padding-top: var(--section-y); padding-bottom: var(--section-y-sm); background: var(--navy); }
.industries .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-light);
  border-left: 1px solid var(--rule-light);
  list-style: none;
  margin-top: 48px;
}
.industries .cards-grid .card {
  border-right: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
  padding: 40px 36px 36px;
  background: #1C1C21;
  transition: background .25s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
}
.industries .cards-grid .card:hover { background: var(--navy); }
.industries .cards-grid .card:hover .card-cta { color: var(--burgundy); border-color: var(--burgundy); }
.industries .card-icon { color: var(--navy); width: 40px; height: 40px; display: flex; align-items: center; }
.industries .card-icon img { width: 40px; height: 40px; }
.industries .card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.18;
  color: var(--navy);
  letter-spacing: -0.008em;
}
.industries .card p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(14,17,38,0.72);
  flex-grow: 1;
}
.industries .card-cta {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--rule-light);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color .15s var(--ease), border-color .15s var(--ease);
}

@media (max-width: 900px) {
  .industries .cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .industries .cards-grid { grid-template-columns: 1fr; }
  .industries .cards-grid .card { min-height: auto; }
}

/* ===========================================================
   INSIGHTS PAGE — list layout
   =========================================================== */
.insights-page { padding-top: var(--section-y); padding-bottom: var(--section-y); background: var(--navy); }
.insights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--rule-light);
}
.insights-list .insight-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--rule-light);
  background: transparent;
  transition: background .2s var(--ease);
}
.insights-list .insight-card:hover { background: #1C1C21; padding-left: 20px; padding-right: 20px; margin: 0 -20px; }
.insights-list .insight-body { flex: 1; }
.insights-list .insight-body .insight-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gray-500);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.insights-list .insight-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 12px;
}
.insights-list .insight-body p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--gray-700);
  margin: 0 0 16px;
  max-width: 600px;
}
.insight-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--burgundy);
  text-transform: uppercase;
  white-space: nowrap;
  padding-top: 4px;
}
@media (max-width: 600px) {
  .insights-list .insight-card { flex-direction: column; gap: 12px; }
  .insight-tag { padding-top: 0; }
}

/* ===========================================================
   CAPABILITIES — 6 methods, 3×2 grid
   =========================================================== */
.capabilities { padding-top: var(--section-y); padding-bottom: var(--section-y); background: var(--navy); }
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-light);
  border: 1px solid var(--rule-light);
  list-style: none;
  padding: 0;
  margin-top: 48px;
}
.cap {
  background: #1C1C21;
  padding: 36px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto 1fr;
  column-gap: 20px;
  row-gap: 14px;
  transition: background .2s var(--ease);
  min-height: 240px;
}
.cap:hover { background: var(--navy); }
.cap-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--burgundy);
  grid-column: 1 / -1;
}
.cap-icon {
  grid-row: 2;
  grid-column: 1;
  display: flex;
  align-items: flex-start;
  padding-top: 4px;
}
.cap h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.2;
  color: var(--navy);
  grid-row: 2;
  grid-column: 2;
  margin: 0;
}
.cap p {
  grid-row: 3;
  grid-column: 2;
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray-700);
  margin: 0;
}
@media (max-width: 900px) {
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cap-grid { grid-template-columns: 1fr; }
  .cap { min-height: auto; }
}

/* ===========================================================
   CONFIDENTIAL BRIEF — dark navy modal, underline inputs
   =========================================================== */
.btn-brief {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  background: var(--signal);
  color: var(--navy);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.btn-brief:hover,
.btn-brief:focus-visible {
  background: #00badf;
  outline: none;
}

.brief-modal {
  width: min(600px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  margin: auto;
  padding: 0;
  border: 1px solid rgba(237,234,227,0.12);
  background: var(--navy);
  color: var(--bone);
  font-family: var(--sans);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.brief-modal::backdrop {
  background: rgba(7,9,20,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.brief-form { display: flex; flex-direction: column; flex: 1; overflow-y: auto; }
.brief-form-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 36px 20px;
  border-bottom: 1px solid rgba(237,234,227,0.08);
  flex-shrink: 0;
}
.brief-form-head h2 {
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--signal);
}
.brief-close {
  background: none; border: 0;
  font-size: 22px; line-height: 1; cursor: pointer;
  color: rgba(237,234,227,0.35);
  padding: 0 4px;
  transition: color .18s ease;
}
.brief-close:hover { color: var(--bone); }
.brief-intro {
  margin: 0;
  padding: 18px 36px 0;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(237,234,227,0.32);
  line-height: 1.6;
}
.brief-grid {
  padding: 8px 36px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
  flex: 1;
}
.brief-field {
  display: flex;
  flex-direction: column;
  gap: 0;
  grid-column: 1 / -1;
  padding-bottom: 4px;
}
.brief-field-half { grid-column: span 1; }
.brief-field > span {
  display: block;
  padding-top: 20px;
  padding-bottom: 8px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(237,234,227,0.38);
  font-weight: 400;
}
.brief-field input,
.brief-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(237,234,227,0.14);
  padding: 8px 0 10px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--bone);
  outline: none;
  transition: border-color .2s ease;
  width: 100%;
}
.brief-field input:focus,
.brief-field textarea:focus { border-bottom-color: var(--signal); }
.brief-field input::placeholder,
.brief-field textarea::placeholder { color: rgba(237,234,227,0.18); }
.brief-field textarea { resize: none; min-height: 88px; line-height: 1.6; }
.brief-form-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 36px 28px;
  border-top: 1px solid rgba(237,234,227,0.08);
  flex-shrink: 0;
}
.brief-disclaim {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(237,234,227,0.24);
  flex: 1;
  line-height: 1.5;
}
.btn-brief-submit { padding: 14px 28px; }

@media (max-width: 640px) {
  .brief-grid { grid-template-columns: 1fr; padding-left: 24px; padding-right: 24px; }
  .brief-field-half { grid-column: 1 / -1; }
  .brief-form-head, .brief-intro { padding-left: 24px; padding-right: 24px; }
  .brief-form-foot { flex-direction: column; align-items: stretch; padding-left: 24px; padding-right: 24px; }
  .btn-brief-submit { width: 100%; text-align: center; justify-content: center; }
}

/* ============================================================
   FOOTER — complete
   ============================================================ */
.footer-top { display: grid; grid-template-columns: 1.5fr 3fr; gap: 80px; padding: 72px 0 48px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-mark { display: flex; align-items: center; gap: 12px; }
.footer-tagline { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.5); max-width: 260px; margin: 0; }
.footer-meta { display: flex; flex-direction: column; gap: 4px; }
.footer-meta span { font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 0.1em; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.footer-cols h4 { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin: 0 0 16px; }
.footer-cols ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-cols a { font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color .15s; }
.footer-cols a:hover { color: #fff; }
.footer-office li { display: flex; flex-direction: column; gap: 2px; }
.footer-office b { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 600; }
.footer-office span { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.copyright { font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.1em; }
.footer-disclaimer { font-size: 12px; color: rgba(255,255,255,0.25); max-width: 520px; line-height: 1.5; text-align: right; }
.disclaimer { font-size: 12px; color: rgba(255,255,255,0.25); max-width: 520px; line-height: 1.5; text-align: right; }
.h4-tight { margin-top: 20px !important; }

/* ============================================================
   ABOUT — jurisdictions list
   ============================================================ */
.jurisdictions {
  padding: 72px 0;
  background: var(--navy);
}
.jurisdictions .section-head { margin-bottom: 48px; }
.jurisdiction-regions {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}
.jurisdiction-region h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0 0 16px;
}
.jurisdiction-region ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.jurisdiction-region li {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-family: var(--mono);
  letter-spacing: 0.05em;
}

/* ============================================================
   ENGAGEMENT — steps
   ============================================================ */
.steps {
  padding: 72px 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.steps .section-head { margin-bottom: 48px; }
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr 3fr;
  gap: 40px;
  align-items: baseline;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.step-num {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.15em;
  padding-top: 2px;
}
.step-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.3;
}
.step-body {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .jurisdiction-regions { grid-template-columns: repeat(2, 1fr); }
  .step { grid-template-columns: 48px 1fr; gap: 20px; }
  .step-body { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .footer-disclaimer { text-align: left; }
  .disclaimer { text-align: left; }
  .jurisdiction-regions { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; }
  .step-num { padding-bottom: 0; }
}

/* ===========================================================
   INDUSTRIES — photo-ready cards, overlay hover
   =========================================================== */
.ind-section { padding-top: var(--section-y); padding-bottom: var(--section-y); background: var(--navy); }
.ind-section .section-head { margin-bottom: 56px; }
.ind-section .eyebrow { color: rgba(237,234,227,0.5); }
.ind-section .section-title { color: var(--bone); }
.ind-section .section-lead { color: rgba(237,234,227,0.55); }

.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  list-style: none;
  padding: 0;
}

.ind-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background-color: var(--ind-bg, var(--navy));
  cursor: pointer;
}

/* Photo slot — swap in real image via background-image */
.ind-photo {
  position: absolute;
  inset: 0;
  background-color: var(--ind-bg, var(--navy));
  background-size: cover;
  background-position: center;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94), opacity .4s ease;
  opacity: 0.6;
}
.ind-card:hover .ind-photo {
  transform: scale(1.04);
  opacity: 0.35;
}

/* Gradient overlay — always on */
.ind-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,9,20,0.96) 0%, rgba(7,9,20,0.5) 50%, rgba(7,9,20,0.1) 100%);
  pointer-events: none;
}

/* Text overlay */
.ind-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
}

.ind-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--signal);
  margin-bottom: 10px;
  display: block;
}

.ind-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.2;
  color: var(--bone);
  margin: 0 0 14px;
}

.ind-desc {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(237,234,227,0.65);
  margin: 0 0 18px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  transition: max-height .4s ease, opacity .35s ease .05s, transform .35s ease .05s;
}
.ind-card:hover .ind-desc {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
}

.ind-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--signal);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease .1s, transform .3s ease .1s;
  display: block;
}
.ind-card:hover .ind-link {
  opacity: 1;
  transform: translateY(0);
}

/* Cyan top-border on hover */
.ind-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.6,.05,.2,1);
  z-index: 3;
}
.ind-card:hover::before { transform: scaleX(1); }

@media (max-width: 900px) {
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ind-grid { grid-template-columns: 1fr; }
  .ind-card { aspect-ratio: 4 / 3; }
  .ind-desc { max-height: 120px; opacity: 1; transform: translateY(0); }
  .ind-link { opacity: 1; transform: translateY(0); }
}

/* ===========================================================
   MATRIX INTERSECTION OVERLAY — slide-in from right
   =========================================================== */
.mx-overlay-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7,9,20,0.55);
  z-index: 290;
  opacity: 0;
  pointer-events: none;
  transition: opacity .32s ease;
}
.mx-overlay-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mx-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: min(560px, 92vw);
  height: 100vh;
  height: 100dvh;
  background: var(--navy);
  border-left: 1px solid rgba(237,234,227,0.1);
  z-index: 300;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(.6,.05,.2,1);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mx-overlay.is-open {
  transform: translateX(0);
}

.mx-overlay-close {
  position: absolute;
  top: 20px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(237,234,227,0.35);
  z-index: 2;
  transition: color .18s ease;
}
.mx-overlay-close:hover { color: var(--signal); }
.mx-close-esc {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.mx-close-x { font-size: 20px; line-height: 1; }

.mx-overlay-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

/* Photo slot — dark graphic placeholder until photos are added */
.mx-overlay-photo {
  position: relative;
  height: 240px;
  background: var(--navy-soft);
  flex-shrink: 0;
  overflow: hidden;
}
.mx-overlay-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--navy) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Subtle grid pattern in photo area */
.mx-overlay-photo-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(237,234,227,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237,234,227,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.mx-overlay-coords {
  position: absolute;
  bottom: 20px;
  left: 28px;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 400;
  color: rgba(237,234,227,0.18);
  letter-spacing: -0.02em;
  line-height: 1;
}
.mx-coord-sep {
  font-size: 18px;
  color: var(--signal);
  opacity: 0.6;
}

.mx-overlay-content {
  padding: 36px 36px 52px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mx-overlay-eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--signal);
  line-height: 1.6;
  opacity: 0.85;
}

.mx-overlay-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--bone);
  margin: 0;
}

.mx-overlay-desc {
  font-size: 15px;
  line-height: 1.72;
  color: rgba(237,234,227,0.6);
  flex: 1;
  margin: 0;
}

.mx-overlay-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid rgba(237,234,227,0.09);
  margin-top: 8px;
}

.mx-overlay-cta {
  align-self: flex-start;
}

.mx-overlay-hint {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(237,234,227,0.25);
}

/* Cursor pointer on matrix cells */
.matrix-grid .cell { cursor: pointer; }
.matrix-grid .cell:hover { outline: none; }
.matrix-grid .cell:focus-visible {
  outline: 1px solid var(--signal);
  outline-offset: -1px;
}

@media (max-width: 640px) {
  .mx-overlay { width: 100vw; border-left: none; }
  .mx-overlay-content { padding: 28px 24px 44px; }
}


/* ===== MU-FOOT — card-based reactive footer (shared, mobile-first) ===== */
.mu-foot { background:#141418; border-top:1px solid rgba(255,255,255,0.08); padding:clamp(56px,7vw,100px) 0 0; }
.mu-foot .wrap { max-width:1400px; margin:0 auto; padding:0 clamp(20px,5vw,3rem); }
.mu-foot-grid { display:grid; grid-template-columns:1.7fr 1fr 1.35fr 1.05fr; gap:16px; }
.mu-card { position:relative; background:rgba(255,255,255,0.018); border:1px solid rgba(255,255,255,0.07); padding:28px 26px; overflow:hidden; transition:transform .45s cubic-bezier(.16,1,.3,1), border-color .45s, background .45s; }
.mu-card::before { content:""; position:absolute; top:0; left:0; height:2px; width:0; background:var(--signal,#00d4ff); transition:width .55s cubic-bezier(.16,1,.3,1); }
.mu-card:hover { transform:translateY(-5px); border-color:rgba(0,212,255,0.35); background:rgba(255,255,255,0.032); }
.mu-card:hover::before { width:100%; }
.mu-card .corner { position:absolute; width:11px; height:11px; border:1px solid rgba(0,212,255,0.55); opacity:0; transition:opacity .45s; pointer-events:none; }
.mu-card .corner.tl { top:9px; left:9px; border-right:none; border-bottom:none; }
.mu-card .corner.br { bottom:9px; right:9px; border-left:none; border-top:none; }
.mu-card:hover .corner { opacity:1; }
/* card system modifiers — same DNA, scale/bleed/light only */
.mu-card--hero { padding:clamp(28px,3vw,36px) clamp(26px,2.6vw,32px); }
.mu-card--text { padding:36px 32px; }
.mu-card--bleed { padding:0; }
.mu-card--bleed::before { display:none; }
.mu-card--slim { padding:0; }
.mu-card--slim:hover { transform:none; }
.mu-card--light { border:1px solid rgba(0,0,0,0.10); background:rgba(0,0,0,0.015); }
.mu-card--light:hover { background:rgba(0,0,0,0.03); border-color:rgba(0,212,255,0.35); }
/* WHITE THREAD — central vertical bone spine echoing the header white, on every page */
.white-thread { position:fixed; top:0; bottom:0; left:50%; transform:translateX(-50%); width:3px; background:var(--white-soft,#f8f7f2); opacity:0.6; z-index:40; pointer-events:none; }
@media (max-width:820px){ .white-thread { width:2px; opacity:0.45; } }
@media (max-width:820px){ .mu-card { padding:24px 22px; } .mu-card:hover { transform:none; } }
.mu-foot .mu-card h4 { font-family:'JetBrains Mono',monospace; font-size:10px; letter-spacing:0.24em; text-transform:uppercase; color:rgba(255,255,255,0.45); margin:0 0 18px; padding:0; border:none; }
.mu-card.brand .fmark img { height:34px; width:auto; display:block; margin:0 0 20px; filter:brightness(0) invert(1); opacity:0.9; }
.mu-card.brand .ftag { font-family:'Outfit',sans-serif; font-weight:300; font-size:15.5px; line-height:1.55; color:rgba(255,255,255,0.82); margin:0 0 24px; max-width:30ch; }
.mu-foot ul { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; }
.mu-foot a.flink { font-family:'Outfit',sans-serif; font-size:14px; color:rgba(255,255,255,0.62); text-decoration:none; transition:color .2s, padding-left .25s; position:relative; display:inline-block; }
.mu-foot a.flink::before { content:"\2192"; position:absolute; left:-2px; opacity:0; color:var(--signal,#00d4ff); transition:opacity .2s, transform .25s; transform:translateX(-6px); }
.mu-foot a.flink:hover { color:#fff; padding-left:18px; }
.mu-foot a.flink:hover::before { opacity:1; transform:translateX(0); }
.mu-card .pmeta { font-family:'JetBrains Mono',monospace; font-size:10.5px; letter-spacing:0.12em; color:rgba(255,255,255,0.4); line-height:2; }
.mu-card .pmeta b { display:block; font-family:'Outfit',sans-serif; font-size:14px; font-weight:500; letter-spacing:0; color:rgba(255,255,255,0.82); margin-bottom:2px; }
.mu-card .pmeta .sep { display:block; height:14px; }
.mu-foot-cta { display:inline-flex; align-items:center; gap:10px; font-family:'JetBrains Mono',monospace; font-size:11px; letter-spacing:0.22em; text-transform:uppercase; color:var(--signal,#00d4ff); border:1px solid rgba(0,212,255,0.45); padding:13px 22px; cursor:pointer; background:transparent; transition:all .3s cubic-bezier(.16,1,.3,1); text-decoration:none; }
.mu-foot-cta:hover { background:var(--signal,#00d4ff); color:#0d0d10; letter-spacing:0.3em; }
.mu-foot-legal { max-width:1400px; margin:clamp(44px,5vw,68px) auto 0; padding:22px clamp(20px,5vw,3rem); border-top:1px solid rgba(255,255,255,0.07); display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.mu-foot-legal .copy { font-family:'JetBrains Mono',monospace; font-size:11px; letter-spacing:0.1em; color:rgba(255,255,255,0.32); }
.mu-foot-legal .llinks { display:flex; gap:20px; }
.mu-foot-legal .llinks a { font-family:'JetBrains Mono',monospace; font-size:11px; letter-spacing:0.16em; text-transform:uppercase; color:rgba(255,255,255,0.42); text-decoration:none; transition:color .2s; }
.mu-foot-legal .llinks a:hover { color:var(--signal,#00d4ff); }
.mu-foot-disc { max-width:1400px; margin:0 auto; padding:0 clamp(20px,5vw,3rem) 34px; }
.mu-foot-disc p { margin:0; max-width:74ch; font-family:'Outfit',sans-serif; font-size:12px; line-height:1.65; color:rgba(255,255,255,0.3); }
@media (max-width:1080px){ .mu-foot-grid { grid-template-columns:1fr 1fr; } .mu-card.brand { grid-column:1 / -1; } }
@media (max-width:600px){ .mu-foot-grid { grid-template-columns:1fr; gap:12px; } .mu-card { padding:24px 22px; } .mu-card:hover { transform:none; } .mu-foot-legal { flex-direction:column; align-items:flex-start; gap:14px; } }






/* ===== MF6 FOOTER · one box, columns only, small type ===== */
.mf6{padding-bottom:clamp(48px,6vw,80px)}
.mf6-box{padding:0!important;display:grid;grid-template-columns:1.35fr 1fr 1.1fr 0.95fr 1.25fr}
.mf6-box:hover{transform:none!important}
.mf6-col{padding:30px 28px;display:flex;flex-direction:column;min-width:0}
.mf6-col + .mf6-col{border-left:1px solid rgba(255,255,255,0.08)}
.mf6-word{font-family:'Outfit',sans-serif;font-weight:600;font-size:0.88rem;letter-spacing:0.34em;color:#f8f7f2}
.mf6-motto{font-family:'JetBrains Mono',monospace;font-size:8.5px;letter-spacing:0.32em;text-transform:uppercase;color:#00d4ff;margin:8px 0 22px}
.mf6-line{font-family:'Outfit',sans-serif;font-weight:300;font-size:12.5px;line-height:1.6;color:rgba(255,255,255,0.55);margin:0 0 4px}
.mf6-cta{margin:16px 0 22px;display:inline-flex;align-items:center;gap:8px;font-family:'JetBrains Mono',monospace;font-size:9.5px;letter-spacing:0.22em;text-transform:uppercase;color:#00d4ff;border:1px solid rgba(0,212,255,0.45);padding:10px 16px;cursor:pointer;background:transparent;transition:all .3s;align-self:flex-start}
.mf6-cta:hover{background:#00d4ff;color:#0d0d10}
.mf6-copy{margin-top:auto;font-family:'JetBrains Mono',monospace;font-size:9.5px;letter-spacing:0.1em;color:rgba(255,255,255,0.32)}
.mf6-h{display:block;font-family:'JetBrains Mono',monospace;font-size:9.5px;letter-spacing:0.22em;text-transform:uppercase;color:rgba(255,255,255,0.8);text-decoration:none;margin:0 0 12px;transition:color .2s}
a.mf6-h:hover{color:#00d4ff}
.mf6-col .mf6-h:not(:first-of-type){margin-top:16px}
.mf6-col a.sub{display:block;font-family:'Outfit',sans-serif;font-weight:300;font-size:12.5px;color:rgba(255,255,255,0.52);text-decoration:none;padding:4px 0;transition:color .2s,padding-left .25s}
.mf6-col a.sub:hover{color:#fff;padding-left:5px}
.mf6-note{display:block;font-family:'Outfit',sans-serif;font-weight:300;font-size:11px;color:rgba(255,255,255,0.33);margin:-6px 0 2px}
.mf6-disc{font-family:'Outfit',sans-serif;font-weight:300;font-size:11px;line-height:1.65;color:rgba(255,255,255,0.3);margin:0}
.mf6-llinks{margin-top:auto;padding-top:16px;display:flex;gap:16px}
.mf6-llinks a{font-family:'JetBrains Mono',monospace;font-size:9.5px;letter-spacing:0.16em;text-transform:uppercase;color:rgba(255,255,255,0.4);text-decoration:none;transition:color .2s}
.mf6-llinks a:hover{color:#00d4ff}
@media(max-width:1180px){.mf6-box{grid-template-columns:1fr 1fr}.mf6-col+.mf6-col{border-left:none}.mf6-col:nth-child(even){border-left:1px solid rgba(255,255,255,0.08)}.mf6-col:nth-child(n+3){border-top:1px solid rgba(255,255,255,0.08)}}
@media(max-width:640px){.mf6-box{grid-template-columns:1fr}.mf6-col:nth-child(even){border-left:none}.mf6-col+.mf6-col{border-top:1px solid rgba(255,255,255,0.08)}.mf6-col{padding:24px 22px}}

