/* iAngels Wealth — Poppins (headings) + Open Sans (body / pointers) */

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Poppins:wght@400;500;600;700&display=swap");

:root {
  /* Light theme — brand palette */
  --bg: #f7f9fc;
  --bg-soft: #edf1f7;
  --bg-elev: #ffffff;
  --ink: #0b1f33;
  --ink-2: #152b42;
  --ink-3: #4a6278;
  --ink-4: #7a92a8;
  /* Subtle UI chrome (dashed borders, inactive steps) */
  --ink-5: rgba(11, 31, 51, 0.1);
  --rule: rgba(11, 31, 51, 0.12);
  --rule-2: rgba(11, 31, 51, 0.06);

  /* Brand — logo W arc: blue → green (+ logo red sparingly); azure = original deeper blue */
  --accent-azure: #296d90;
  --accent-green: #3eb489;
  --accent-red: #e53e3e;
  --accent-blue: #296d90;
  --accent: var(--accent-azure); /* default interactive accent — Tweaks panel can switch */

  --brand-duo-gradient: linear-gradient(
    90deg,
    var(--accent-azure) 0%,
    var(--accent-green) 100%
  );
  --brand-duo-soft: linear-gradient(
    118deg,
    color-mix(in oklab, var(--accent-azure) 14%, var(--bg)),
    color-mix(in oklab, var(--accent-green) 12%, var(--bg))
  );

  /* Type — Poppins (headings/sub-headings), Open Sans (body / pointers) */
  --serif: "Poppins", system-ui, -apple-system, sans-serif;
  --sans: "Open Sans", system-ui, -apple-system, sans-serif;
  --mono: "Open Sans", system-ui, -apple-system, sans-serif;

  --maxw: 1280px;
  --gutter-x: 80px;
  --section-y: 52px;

  --density: 1;
}

/* Brand mark (recreated SVG logo) */
.brand {
  color: var(--ink);
}
.brand svg {
  display: block;
}

[data-theme="dark"] {
  --bg: #050d14;
  --bg-soft: #0a1622;
  --bg-elev: #0f1f2e;
  --ink: #f7f9fc;
  --ink-2: #dce4ec;
  --ink-3: #9db1c4;
  --ink-4: #6b8499;
  --ink-5: rgba(247, 249, 252, 0.12);
  --rule: rgba(247, 249, 252, 0.12);
  --rule-2: rgba(247, 249, 252, 0.06);
  --accent-green: #5ad4b0;
}

[data-theme="contrast"] {
  --bg: #ffffff;
  --bg-soft: #f7f9fc;
  --bg-elev: #ffffff;
  --ink: #0b1f33;
  --ink-2: #152b42;
  --ink-3: #4a6278;
  --ink-4: #7a92a8;
  --ink-5: rgba(11, 31, 51, 0.12);
  --rule: rgba(11, 31, 51, 0.14);
  --rule-2: rgba(11, 31, 51, 0.07);
}

[data-density="compact"] {
  --section-y: 44px;
}
[data-density="spacious"] {
  --section-y: 88px;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
}

/* Typography utility classes */
.serif {
  font-family: var(--serif);
  letter-spacing: -0.02em;
}
.sans {
  font-family: var(--sans);
}
.mono {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 1px;
  background: var(--brand-duo-gradient);
}

.h-display {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.035em;
}
.h-1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.accent-blue {
  color: var(--accent-blue);
}

/* Highlight / emphasis copy — brand blue→green (headlines, quotes, CTAs site-wide) */
.accent-gradient-text,
.sol-philosophy .accent,
h1 .accent,
h2 .accent,
h3 .accent,
blockquote .accent,
.contact-left h1 .accent,
.hero-headline .accent,
.pillar-hero h1 .accent,
.power-headline__accent,
.about-blurb .lhs h3 em,
.int-result h3 .accent,
.kn-em,
.final-cta .h-display em.final-cta__opp,
.final-cta .h-display .final-cta__structured {
  color: transparent;
  background: var(--brand-duo-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Italic + background-clip:text can clip glyphs (italic overhang / descenders) */
  display: inline-block;
  overflow: visible;
  padding-inline-start: 0.03em;
  padding-inline-end: 0.12em;
  padding-block-start: 0.06em;
  padding-block-end: 0.18em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.accent-gradient-text,
.sol-philosophy .accent,
.hero-headline .accent,
.power-headline__accent,
.about-blurb .lhs h3 em,
blockquote .accent,
.contact-left h1 .accent,
.final-cta .h-display em.final-cta__opp,
.final-cta .h-display .final-cta__structured {
  font-style: italic;
}

.hero-headline .accent,
.contact-left h1 .accent {
  font-weight: 600;
}

.pillar-hero h1 .accent {
  font-style: italic;
  font-weight: 600;
}

.h-2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.h-3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.body-lg {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink-3);
}
.body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-3);
}
.small {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-3);
}

.italic-soft {
  font-style: italic;
}

/* Layout */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter-x);
}
@media (max-width: 900px) {
  :root {
    --gutter-x: 24px;
    --section-y: 40px;
  }
}

section.section {
  padding: var(--section-y) 0;
}
/* Home + About — metrics band (matches kinetic copy, light treatment) */
section.section.stats-strip {
  padding-top: 0;
  padding-bottom: 0;
  background: var(--bg-soft);
}
.section.alt {
  background: var(--bg-soft);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  overflow: visible;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--rule-2);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
/* Header chrome ~75px tall: inner nav row + modest vertical padding */
.site-header .wrap.nav {
  padding-top: 10px;
  padding-bottom: 10px;
}
.site-header .nav {
  height: 75px;
  min-height: 75px;
  max-height: 75px;
  padding-top: 0;
  padding-bottom: 0;
  box-sizing: border-box;
  overflow: visible;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 56px;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
  transition: color 200ms ease;
}
.nav-links a:hover {
  color: var(--accent);
}
/* Solutions dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  cursor: pointer;
}
.nav-dropdown > a.has-caret::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.6;
  transition: transform 200ms ease;
}
.nav-dropdown:hover > a.has-caret::after,
.nav-dropdown:focus-within > a.has-caret::after {
  transform: translateY(1px) rotate(-135deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  padding-top: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity 200ms ease,
    transform 200ms cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown-menu .menu-inner {
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 8px 0;
  min-width: 260px;
  box-shadow: 0 8px 32px -8px rgba(11, 20, 38, 0.12);
}
[data-theme="dark"] .nav-dropdown-menu .menu-inner {
  box-shadow: 0 8px 32px -8px rgba(0, 0, 0, 0.4);
}
.nav-dropdown-menu a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--ink-2);
  transition: all 180ms ease;
}
.nav-dropdown-menu a:hover {
  background: var(--bg-soft);
  color: var(--ink);
}
.nav-dropdown-menu a .menu-label {
  font-family: var(--sans);
  font-weight: 600;
  color: var(--ink);
}
.nav-dropdown-menu a .menu-desc {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.4;
}
.nav-dropdown-menu .menu-divider {
  height: 1px;
  background: var(--rule-2);
  margin: 6px 0;
}
.nav-dropdown-menu .menu-all {
  padding: 10px 20px;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.nav-dropdown-menu .menu-all:hover {
  color: var(--accent);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Active nav link */
.nav-links a.active {
  color: var(--ink);
}
.nav-links a.active::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--accent);
}

/* Hamburger button (mobile only) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition: all 200ms ease;
}

/* Mobile drawer backdrop */
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: color-mix(in oklab, var(--ink) 50%, transparent);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}
.mobile-drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: var(--bg);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 350ms cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  min-height: 52px;
  max-height: 52px;
  padding: 0 20px;
  box-sizing: border-box;
  overflow: visible;
  border-bottom: 1px solid var(--rule-2);
}
.mobile-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms ease;
}
.mobile-drawer-close:hover {
  border-color: var(--ink);
}

.mobile-drawer-body {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-drawer-link {
  display: block;
  padding: 16px 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  border-bottom: 1px solid var(--rule-2);
  transition: color 200ms ease;
}
.mobile-drawer-link:hover {
  color: var(--accent);
}

.mobile-drawer-section {
  border-bottom: 1px solid var(--rule-2);
}
.mobile-drawer-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  background: transparent;
  border: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  cursor: pointer;
}
.mobile-caret {
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--ink-3);
  border-bottom: 1.5px solid var(--ink-3);
  transform: rotate(45deg);
  transition: transform 200ms ease;
}
.mobile-caret.open {
  transform: rotate(-135deg);
}

.mobile-drawer-sub {
  padding: 0 0 12px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-drawer-sub a {
  display: block;
  padding: 10px 0 10px 16px;
  font-size: 15px;
  color: var(--ink-3);
  border-left: 1px solid var(--rule-2);
  transition: all 200ms ease;
}
.mobile-drawer-sub a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.mobile-drawer-foot {
  padding: 24px;
  border-top: 1px solid var(--rule-2);
}

/* Mobile sticky CTA (bottom of viewport) */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  padding: 12px 24px calc(12px + env(safe-area-inset-bottom));
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-top: 1px solid var(--rule-2);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-right .btn.primary.sm {
    display: none;
  }
  .mobile-sticky-cta {
    display: block;
  }
  .site-header .brand .brand-logo {
    height: 60px !important;
    max-width: min(520px, 82vw);
  }
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  font-family: var(--serif);
  letter-spacing: -0.02em;
}
.brand .mark {
  width: 30px;
  height: 30px;
  position: relative;
  display: inline-block;
}
.brand .wordmark {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.brand .wordmark .w {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-3);
  position: relative;
  top: -3px;
}

/* Real logo image — base (footer uses .brand-logo-lg) */
.brand .brand-logo,
.brand-logo {
  display: block !important;
  width: auto !important;
  object-fit: contain;
}

/* Footer logo */
.brand .brand-logo-lg,
.brand-logo-lg {
  height: 70px !important;
  max-width: min(760px, 96vw) !important;
}

/* Header + drawer */
.site-header .brand .brand-logo {
  height: 60px !important;
  max-width: min(760px, 72vw);
}
.mobile-drawer-head .brand .brand-logo {
  height: 54px !important;
  max-width: min(380px, 68vw);
}

@media (max-width: 520px) {
  .site-header .brand .brand-logo {
    height: 60px !important;
    max-width: min(340px, 78vw);
  }
  .mobile-drawer-head {
    height: 48px;
    min-height: 48px;
    max-height: 48px;
    padding: 0 16px;
  }
  .mobile-drawer-head .brand .brand-logo {
    height: 46px !important;
    max-width: min(320px, 72vw);
  }
  .brand .brand-logo-lg,
  .brand-logo-lg {
    height: 70px !important;
    max-width: min(620px, 94vw) !important;
  }
}
[data-theme="dark"] .brand-logo {
  filter: invert(1) hue-rotate(180deg) brightness(1.05);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 220ms ease;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn .arr {
  transition: transform 220ms ease;
}
.btn:hover .arr {
  transform: translateX(4px);
}

.btn.primary {
  background: var(--accent-azure);
  color: #fff;
  border-color: var(--accent-azure);
}
.btn.primary:hover {
  background: color-mix(in oklab, var(--accent-azure) 82%, #000);
  border-color: color-mix(in oklab, var(--accent-azure) 82%, #000);
  color: #fff;
}
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}
.btn.ghost:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
  background: transparent;
}
.btn.link {
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  padding-bottom: 4px;
}
.btn.link:hover {
  border-color: var(--accent-azure);
  color: var(--accent-azure);
}

.btn.sm {
  padding: 10px 16px;
  font-size: 13px;
}
.btn.lg {
  padding: 16px 28px;
  font-size: 15px;
}

/* Hero */
.hero {
  padding: 36px 0 44px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.hero-headline {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(46px, 7.5vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.038em;
  color: var(--ink);
  max-width: 1100px;
}
.hero-headline .strike {
  position: relative;
  display: inline-block;
  color: var(--ink-4);
}
.hero-headline .strike::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 52%;
  height: 3px;
  background: var(--accent-red);
  transform: scaleX(0);
  transform-origin: left;
  animation: strike-in 900ms 600ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes strike-in {
  to {
    transform: scaleX(1);
  }
}

.hero-sub {
  max-width: 640px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-3);
  margin-top: 32px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-meta {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--rule-2);
}
.hero-meta .item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-meta .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  color: var(--ink-3);
}
.hero-meta .pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
}

.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-image: radial-gradient(
      circle at 20% 0%,
      var(--bg-soft) 0%,
      transparent 40%
    ),
    radial-gradient(circle at 90% 100%, var(--bg-soft) 0%, transparent 50%);
}

/* Stats stack — same pattern on Home (non‑kinetic / below hero) + About */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stats .stat {
  padding: 28px 24px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stats .stat:last-child {
  border-right: 0;
}
.stats .stat .num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stats .stat .num .unit {
  font-size: 0.5em;
  color: var(--ink-3);
  font-style: italic;
  font-weight: 600;
  margin-left: 4px;
}
.stats .stat .lbl {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 8px;
}
@media (max-width: 900px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats .stat {
    padding: 26px 20px;
  }
  .stats .stat:nth-child(2) {
    border-right: 0;
  }
  .stats .stat:nth-child(1),
  .stats .stat:nth-child(2) {
    border-bottom: 1px solid var(--rule);
  }
}

/* Section header */
.sec-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 28px;
}
.sec-head .right {
  color: var(--ink-3);
  max-width: 480px;
}
@media (max-width: 900px) {
  .sec-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Problem section */
.problem-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 28px;
}
.problem-hero__copy .h-1 {
  margin-bottom: 24px;
}
.problem-hero__figure {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--rule-2);
  background: var(--bg-elev);
}
.problem-hero__figure img {
  width: 100%;
  height: auto;
  display: block;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.problem-grid .col {
  padding: 22px 20px 22px 0;
  border-right: 1px solid var(--rule-2);
}
.problem-grid .col:last-child {
  border-right: 0;
  padding-right: 0;
}
.problem-grid .col:not(:first-child) {
  padding-left: 20px;
}
.problem-grid .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 16px;
}
.problem-grid .ttl {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--ink);
}
.problem-grid .desc {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .problem-hero {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .problem-grid .col {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule-2);
  }
  .problem-grid .col:not(:first-child) {
    padding-left: 0;
  }
}

/* Split section headers (Pillars, Company profile) — same rhythm as moat */
.pillars-sec-head,
.company-sec-head {
  align-items: start;
  column-gap: 28px !important;
  row-gap: 10px;
  margin-bottom: 48px;
}
.pillars-sec-eyebrow,
.company-sec-eyebrow {
  grid-column: 1 / -1;
  grid-row: 1;
  margin-bottom: 0;
}
.pillars-sec-head > .h-1,
.company-sec-head > .h-1 {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
}
.pillars-sec-sub.body-lg,
.company-sec-sub.body-lg {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  max-width: 480px;
  justify-self: end;
  text-align: left;
  align-self: start;
  padding-top: 0;
}
@media (max-width: 900px) {
  .pillars-sec-head,
  .company-sec-head {
    grid-template-columns: 1fr;
    column-gap: 0 !important;
    row-gap: 12px;
    margin-bottom: 40px;
  }
  .pillars-sec-eyebrow,
  .company-sec-eyebrow {
    grid-row: auto;
  }
  .pillars-sec-head > .h-1,
  .company-sec-head > .h-1 {
    grid-column: 1;
    grid-row: auto;
  }
  .pillars-sec-sub.body-lg,
  .company-sec-sub.body-lg {
    grid-column: 1;
    grid-row: auto;
    justify-self: stretch;
    max-width: none;
    margin-top: 0;
    padding-top: 0 !important;
  }
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pillar-card {
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: all 280ms cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  min-height: 340px;
}
.pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
}
.pillar-card .num {
  font-family: var(--serif);
  font-weight: 600;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-3);
}
.pillar-card.highlight {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.pillar-card.highlight .num,
.pillar-card.highlight .desc,
.pillar-card.highlight .services li {
  color: var(--ink-4);
}
.pillar-card.highlight .ttl {
  color: var(--bg);
}
.pillar-card.highlight .badge {
  background: var(--brand-duo-gradient);
  border-color: transparent;
  color: #fff;
}

.pillar-card .ttl {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.pillar-card .desc {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.55;
  flex: 1;
}
.pillar-card .services {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  border-top: 1px solid var(--rule);
  padding-top: 20px;
}
.pillar-card .arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
  color: inherit;
}
.pillar-card .arrow-link .arr {
  transition: transform 220ms ease;
}
.pillar-card:hover .arrow-link .arr {
  transform: translateX(6px);
}
.pillar-card.highlight .arrow-link {
  color: var(--bg);
}
.pillar-card .badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--ink-3);
}

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

/* USP / Advantage — four columns in one row (compact cards) */
.advantage {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.advantage .cell {
  padding: 18px 14px 20px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
  position: relative;
}
.advantage .cell .glyph {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.advantage .cell .glyph svg {
  width: 22px;
  height: 22px;
}
.advantage .cell .num {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-4);
  position: absolute;
  top: 14px;
  right: 12px;
}
.advantage .cell h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(15px, 1.15vw, 19px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
  padding-right: 22px;
  color: var(--ink);
  max-width: none;
}
.advantage .cell p {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink-3);
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
  max-width: none;
}
@media (max-width: 1100px) {
  .advantage {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .advantage .cell {
    padding: 20px 16px 22px;
  }
  .advantage .cell h3 {
    font-size: clamp(17px, 2.4vw, 22px);
    padding-right: 0;
  }
  .advantage .cell p {
    font-size: 14px;
  }
}
@media (max-width: 560px) {
  .advantage {
    grid-template-columns: 1fr;
  }
}

/* Powerhouses */
.power {
  background: var(--bg);
  color: var(--ink);
  padding: calc(var(--section-y) * 0.72) 0;
}
.power .h-display {
  color: var(--ink);
}
.power-sec-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  margin-bottom: 18px !important;
  column-gap: 28px !important;
  row-gap: 0;
}
.power-moat-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 10px;
}
.power-headline {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(30px, 4.6vw, 64px);
  line-height: 1.16;
  letter-spacing: -0.034em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.power-headline__lead {
  font-weight: 700;
}
.power-headline__accent {
  font-weight: 400;
}
.power-moat-sub.body-lg {
  margin-top: 0;
  max-width: 480px;
  justify-self: end;
  text-align: left;
}
@media (min-width: 901px) {
  .power-moat-sub.body-lg {
    padding-top: 0.12em;
  }
}
@media (max-width: 900px) {
  .power-sec-head {
    grid-template-columns: 1fr;
    column-gap: 0 !important;
    row-gap: 0 !important;
  }
  .power-moat-eyebrow {
    margin-bottom: 10px;
  }
  .power-moat-sub.body-lg {
    justify-self: stretch;
    max-width: none;
    margin-top: 12px;
  }
}
.power .body,
.power .body-lg {
  color: var(--ink-3);
}

.moat-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: clamp(32px, 5vw, 56px);
}
.moat-card {
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow:
    0 1px 0 0 rgba(11, 31, 51, 0.02),
    0 12px 32px -12px rgba(11, 31, 51, 0.08);
}
.moat-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in oklab, var(--accent-azure) 12%, var(--bg-elev));
  color: var(--accent-azure);
  margin-bottom: 20px;
}
.moat-card__icon svg {
  width: 24px;
  height: 24px;
}
.moat-card__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 12px;
}
.moat-card__rule {
  width: 42px;
  height: 2px;
  background: var(--accent-green);
  border-radius: 1px;
  margin-bottom: 16px;
}
.moat-card__desc {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-3);
  margin: 0;
}
@media (max-width: 900px) {
  .moat-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Archetype carousel */
.archetypes {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 0 24px;
  margin: 0 calc(-1 * var(--gutter-x));
  padding-left: var(--gutter-x);
  padding-right: var(--gutter-x);
}
.archetypes::-webkit-scrollbar {
  height: 4px;
}
.archetypes::-webkit-scrollbar-track {
  background: var(--rule-2);
}
.archetypes::-webkit-scrollbar-thumb {
  background: var(--ink-4);
  border-radius: 4px;
}

.archetype-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  border: 1px solid var(--rule);
  background: var(--bg-elev);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 4px;
  min-height: 320px;
}
.archetype-card .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.archetype-card .aum {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
}
.archetype-card .index {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.16em;
}
.archetype-card .ttl {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.archetype-card .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-2);
  background: color-mix(in oklab, var(--accent) 5%, transparent);
  padding: 14px 16px;
  border-radius: 4px;
  margin: 0;
}
.archetype-card .tag {
  margin-top: auto;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-top: 16px;
  border-top: 1px solid var(--rule-2);
}

.carousel-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.carousel-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: var(--bg-elev);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms ease;
}
.carousel-nav button:hover {
  border-color: var(--ink);
}
.carousel-nav button:disabled {
  opacity: 0.3;
  cursor: default;
}
.carousel-nav .progress {
  flex: 1;
  height: 1px;
  background: var(--rule);
  position: relative;
  max-width: 280px;
}
.carousel-nav .progress .fill {
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform-origin: left;
  transition: transform 380ms ease;
}

/* Founder notes (home) — matches About leader-card rhythm, 2-column grid */
.founder-notes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.founder-note-card__label {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--rule-2);
}
[data-theme="dark"] .founder-note-card__label {
  border-bottom-color: var(--rule);
}
.founder-note-card__quote {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.55;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-style: normal;
}
.founder-note-card.leader-card .portrait {
  width: min(86%, 300px);
  height: 360px;
  margin: 12px auto 0;
  display: block;
  background-image: none;
}
.founder-note-card.leader-card .portrait img {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .founder-notes-grid {
    grid-template-columns: 1fr;
  }
  .founder-note-card.leader-card .portrait {
    width: calc(100% - 40px);
    max-width: 340px;
    height: 380px;
  }
}

/* Insights */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.insight-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 24px;
  cursor: pointer;
}
.insight-card .img {
  aspect-ratio: 5/3;
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  background-image: radial-gradient(
    circle at 50% 40%,
    var(--bg-soft) 0%,
    var(--rule-2) 100%
  );
  position: relative;
  overflow: hidden;
  transition: all 280ms ease;
}
.insight-card:hover .img {
  border-color: var(--ink);
}
.insight-card .img .label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 10px;
  color: var(--ink-3);
  background: var(--bg);
  padding: 4px 8px;
  border: 1px solid var(--rule);
  letter-spacing: 0.14em;
}
.insight-card .meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.insight-card .meta .dot {
  width: 3px;
  height: 3px;
  background: var(--ink-4);
  border-radius: 50%;
}
.insight-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.insight-card .read {
  font-size: 13px;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 900px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }
}

/* Vision / Mission / Commitment grid */
.vmc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
}
.vmc-cell {
  padding: 28px 24px 0 0;
  border-right: 1px solid var(--rule-2);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vmc-cell:last-child {
  border-right: 0;
  padding-right: 0;
}
.vmc-cell:not(:first-child) {
  padding-left: 24px;
}
.vmc-tag {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.vmc-body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  text-wrap: pretty;
}
.vmc-body em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
@media (max-width: 900px) {
  .vmc-grid {
    grid-template-columns: 1fr;
  }
  .vmc-cell {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule-2);
  }
  .vmc-cell:not(:first-child) {
    padding-left: 0;
  }
  .vmc-cell:last-child {
    border-bottom: 0;
  }
}

/* About blurb */
.about-blurb {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  grid-template-rows: auto auto;
  column-gap: 28px;
  row-gap: 16px;
  align-items: baseline;
  padding: var(--section-y) 0;
  border-top: 1px solid var(--rule);
}
.about-blurb__eyebrow {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}
.about-blurb__lhs.lhs {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}
.about-blurb__rhs.rhs {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}
.about-blurb .lhs h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
}
.about-blurb .rhs p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.5;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  text-wrap: pretty;
}
.about-blurb .rhs em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
@media (max-width: 900px) {
  .about-blurb {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 24px;
  }
  .about-blurb__eyebrow,
  .about-blurb__lhs.lhs,
  .about-blurb__rhs.rhs {
    grid-column: auto;
    grid-row: auto;
  }
}

/* Final CTA */
.final-cta {
  background: var(--ink);
  color: var(--bg);
  padding: 38px 0;
}
.final-cta .wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.final-cta .eyebrow.final-cta__eyebrow,
.final-cta__eyebrow {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: color-mix(in oklab, var(--bg) 68%, transparent);
}
.final-cta__eyebrow::before {
  background: var(--brand-duo-gradient);
}
.final-cta .h-display {
  color: var(--bg);
  max-width: 900px;
  margin: 0;
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.032em;
}
.final-cta__opp {
  font-weight: 600;
  color: inherit;
}
.final-cta__structured {
  font-style: italic;
  font-weight: 600;
}
.final-cta__lede {
  color: color-mix(in oklab, var(--bg) 78%, transparent);
  font-size: 15px;
  max-width: 560px;
  margin: 0;
  line-height: 1.5;
}
.final-cta .row {
  display: flex;
  gap: 12px;
  margin-top: 0;
  flex-wrap: wrap;
}
.final-cta .btn.primary {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}
.final-cta .btn.primary:hover {
  background: var(--accent-azure);
  border-color: var(--accent-azure);
  color: #fff;
}
.final-cta .btn.ghost {
  color: var(--bg);
  border-color: color-mix(in oklab, var(--bg) 32%, transparent);
}
.final-cta .btn.ghost:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
}

/* Footer */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--rule);
  padding: 32px 0 18px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 22px;
  margin-bottom: 24px;
  align-items: start;
}

/* Footer logo only: hug image bounds — header uses shared .brand flex gap elsewhere */
.site-footer .brand {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  gap: 0;
}
.footer-grid h5 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin: 0 0 16px;
}
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-grid a {
  color: var(--ink-3);
  transition: color 180ms ease;
}
.footer-grid a:hover {
  color: var(--accent-azure);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--rule-2);
  flex-wrap: wrap;
  gap: 16px;
  color: var(--ink-4);
  font-size: 12px;
}
.footer-bottom .compl {
  display: flex;
  gap: 16px;
  align-items: center;
  font-family: var(--mono);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-bottom .compl span {
  padding: 4px 10px;
  border: 1px solid var(--rule);
  border-radius: 4px;
}

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

/* Audit modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: color-mix(in oklab, #000 60%, transparent);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
  backdrop-filter: blur(6px);
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  background: var(--bg);
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 6px;
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}
.modal-backdrop.open .modal {
  transform: translateY(0) scale(1);
}

.modal-head {
  padding: 32px 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
}
.modal-head__titles {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 8px;
  min-width: 0;
}
.modal-cta-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(22px, 3.8vw, 28px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
}
.modal-step-indicator {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-progress {
  margin: 16px 40px 0;
  height: 2px;
  background: var(--rule);
  position: relative;
}
.modal-progress .bar {
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform-origin: left;
  transition: transform 380ms ease;
}
.modal-body {
  padding: 32px 40px 40px;
}
.modal-body h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.modal-body p.lead {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink-3);
  font-size: 16px;
  margin: 0 0 32px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.field label {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.field input,
.field textarea,
.field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 220ms ease;
}
.field input::placeholder {
  color: var(--ink-4);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--ink);
}
.field textarea {
  resize: vertical;
  min-height: 88px;
  line-height: 1.5;
}
.field textarea::placeholder {
  color: var(--ink-4);
}
.field.error input,
.field.error textarea {
  border-color: var(--accent-red);
}
.field .err {
  color: var(--accent-red);
  font-size: 12px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.choice {
  border: 1px solid var(--rule);
  padding: 16px 18px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 200ms ease;
  background: var(--bg-elev);
}
.choice:hover {
  border-color: var(--ink);
}
.choice.selected {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.choice .label {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.015em;
}
.choice .sub {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12px;
  color: var(--ink-3);
}
.choice.selected .sub {
  color: var(--ink-4);
}

.modal-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--rule-2);
}

/* Pillar / alternatives page hero */
.pillar-hero {
  padding: 36px 0 44px;
}
.pillar-hero .crumbs {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.pillar-hero .crumbs a:hover {
  color: var(--accent);
}

.pillar-hero h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 1;
  letter-spacing: -0.035em;
  max-width: 1100px;
  margin: 0 0 18px;
}
.pillar-hero .lede {
  max-width: 720px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-3);
}

/* Products & Solutions overview hero — matches other pages (left-aligned) */
.pillar-hero--products-sol h1 {
  font-size: clamp(36px, 4.55vw, 60px);
  letter-spacing: -0.032em;
  max-width: 36ch;
  margin: 0 0 18px;
}
.pillar-hero--products-sol .lede {
  margin: 0;
}

/* Tabs (alternatives sub-services) */
.tabs {
  border-top: 1px solid var(--rule);
}
.tab-list {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--rule);
  overflow-x: auto;
}
.tab-list button {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 18px 20px 16px;
  cursor: pointer;
  text-align: left;
  border-bottom: 2px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 220ms ease;
  border-right: 1px solid var(--rule-2);
  min-width: 200px;
}
.tab-list button:last-child {
  border-right: 0;
}
.tab-list button .num {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-4);
}
.tab-list button .label {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--ink-3);
  font-weight: 500;
}
.tab-list button:hover .label {
  color: var(--ink);
}
.tab-list button.active {
  border-bottom-color: var(--accent);
}
.tab-list button.active .label {
  color: var(--ink);
}
.tab-list button.active .num {
  color: var(--accent);
}

.tab-panel {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.tab-panel .lhs h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
}
.tab-panel .lhs p {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink-3);
  font-size: 17px;
  line-height: 1.6;
}
.tab-panel .rhs h4 {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 16px;
}
.tab-panel .rhs ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  border-top: 1px solid var(--rule);
}
.tab-panel .rhs ul li {
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  color: var(--ink-2);
}
.tab-panel .rhs ul li .tag {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-4);
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .tab-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Audience cards */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.audience-card {
  border: 1px solid var(--rule);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-elev);
  border-radius: 4px;
  transition: all 220ms ease;
}
.audience-card:hover {
  border-color: var(--ink);
}
.audience-card .ix {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.audience-card h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.audience-card p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 14px;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Process steps (numbered, horizontal) */
.process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  position: relative;
}
.process .step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 32px;
  position: relative;
  border-top: 1px solid var(--rule);
}
.process .step::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.process .step .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
}
.process .step h5 {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
  font-weight: 500;
}
.process .step p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-3);
  margin: 0;
}
@media (max-width: 1100px) {
  .process {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .process {
    grid-template-columns: 1fr 1fr;
  }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--bg);
  padding: 16px 24px;
  border-radius: 999px;
  font-size: 14px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: all 280ms ease;
  display: flex;
  gap: 10px;
  align-items: center;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
}

/* Animated stats counter */
.counter {
  display: inline-block;
}

/* Logo gradient bars (decorative for hero side) */
.bars-deco {
  display: inline-flex;
  align-items: end;
  gap: 4px;
  height: 28px;
}
.bars-deco span {
  width: 8px;
  background: var(--ink);
  border-radius: 1px;
}
.bars-deco span:nth-child(1) {
  height: 60%;
}
.bars-deco span:nth-child(2) {
  height: 100%;
  background: var(--accent-red);
}
.bars-deco span:nth-child(3) {
  height: 80%;
}
.bars-deco span:nth-child(4) {
  height: 50%;
}

/* ═══════════════════════════════════════════════════════
   NEW PAGE PATTERNS (About, Solutions, PM, Global, Contact)
   ═══════════════════════════════════════════════════════ */

/* Origin story (About) — 2-col grid on .wrap: copy (left) · photo (right) */
.origin-story {
  padding: var(--section-y) 0;
}
.origin-story > .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  column-gap: clamp(40px, 6vw, 80px);
  row-gap: 28px;
  align-items: center;
}
.origin-story .origin-story__content .eyebrow {
  margin-bottom: 16px;
}
.origin-story .origin-story__content h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 clamp(18px, 2.5vw, 26px);
  color: var(--ink);
}
.origin-story .origin-story__content {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-3);
}
.origin-story .origin-story__figure-col {
  padding-top: 0;
}
.origin-story-photo {
  margin: 0;
}
.origin-story-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  border: 1px solid var(--rule-2);
}
.origin-story .origin-story-copy p {
  margin: 0 0 20px;
}
.origin-story .origin-story-copy p:last-child {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .origin-story > .wrap {
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vw, 40px);
    align-items: stretch;
  }
}

/* Leader grid (About) */
.leadership-section .sec-head.leadership-sec-head {
  gap: 0;
  row-gap: 0;
  margin-bottom: 32px;
}
.leadership-section .leadership-sec-head__intro {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.leadership-section .leadership-sec-head__eyebrow {
  margin-bottom: 0;
}
.leadership-section .leadership-hero-line {
  margin: 0;
  line-height: 1.08;
}
/* Keep headline to exactly two lines (first segment must not wrap) */
.leadership-section .leadership-hero-line1 {
  white-space: nowrap;
}
@media (max-width: 540px) {
  .leadership-section .leadership-hero-line1 {
    white-space: normal;
  }
}
.leadership-section .leader-subsection-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 18px;
}
.leadership-section .leadership-sec-head + .leader-subsection-title {
  margin-top: 0;
  margin-bottom: 18px;
}
.leader-grid + .leader-subsection-title {
  margin-top: 44px;
}
.leader-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
/* Senior Management grid (Our Team uses leader-team-grid — same card markup) */
.leader-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.leader-card {
  border: 1px solid var(--rule);
  background: var(--bg-elev);
  border-radius: 4px;
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: all 280ms cubic-bezier(0.22, 1, 0.36, 1);
}
.leader-card:hover {
  border-color: var(--ink);
}
.leader-card .portrait {
  aspect-ratio: 4/5;
  background: var(--bg-soft);
  background-image: radial-gradient(
    circle at 50% 40%,
    var(--bg-soft) 0%,
    var(--rule-2) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-4);
  position: relative;
  overflow: hidden;
}
.leader-card .portrait:has(img) {
  padding: 0;
  display: block;
  background-image: none;
}
.leader-card .portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.leader-card .info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.leader-card .name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.leader-card .role {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.leader-card .social {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.leader-card .social:hover {
  color: var(--accent);
}
/* Founder notes — spacing quote → name (below .leader-card .info gap) */
.founder-note-card.leader-card .info {
  gap: 0;
}
.founder-note-card.leader-card .founder-note-card__quote {
  margin: 0 0 clamp(26px, 4vw, 34px);
}
.founder-note-card.leader-card .role {
  margin-top: 10px;
}
@media (max-width: 900px) {
  .leader-grid {
    grid-template-columns: 1fr 1fr;
  }
  .leader-team-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .leader-grid {
    grid-template-columns: 1fr;
  }
  .leader-team-grid {
    grid-template-columns: 1fr;
  }
}

/* Process grid modifiers */
.process-5 {
  grid-template-columns: repeat(5, 1fr);
}
.process-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) {
  .process-5,
  .process-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .process-5,
  .process-4 {
    grid-template-columns: 1fr 1fr;
  }
}

/* About page — staircase process (rising steps + gradient bars, no connectors) */
.about-process-stair-section {
  background: var(--bg-elev);
}
.about-process-stair {
  margin-top: 12px;
  padding-top: 4px;
}

.about-process-stair__row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6px;
  padding: 0 8px 32px;
}
.about-process-stair__step {
  flex: 1;
  min-width: 0;
  max-width: 168px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-process-stair__step--i1 { margin-top: 188px; }
.about-process-stair__step--i2 { margin-top: 138px; }
.about-process-stair__step--i3 { margin-top: 94px; }
.about-process-stair__step--i4 { margin-top: 52px; }
.about-process-stair__step--i5 { margin-top: 8px; }
.about-process-stair__step--i6 { margin-top: 0; }

.about-process-stair__icon-blob {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 33% 28%,
    color-mix(in oklab, var(--accent-azure) 22%, var(--bg)) 0%,
    color-mix(in oklab, var(--accent-azure) 8%, var(--bg-soft)) 55%,
    transparent 88%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  flex-shrink: 0;
}
.about-process-stair__step-label {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.2;
}
.about-process-stair__step-num {
  color: var(--ink);
  letter-spacing: 0.06em;
}
.about-process-stair__bar {
  height: 9px;
  border-radius: 5px;
  width: 100%;
  flex-shrink: 0;
}
.about-process-stair__step--g .about-process-stair__bar {
  background: linear-gradient(90deg, #22c55e 0%, #bbf7d0 100%);
}
.about-process-stair__step--t .about-process-stair__bar {
  background: linear-gradient(90deg, #14b8a6 0%, #ccfbf1 100%);
}
.about-process-stair__step--b .about-process-stair__bar {
  background: linear-gradient(90deg, #296d90 0%, #bae6fd 100%);
}
.about-process-stair__step--p .about-process-stair__bar {
  background: linear-gradient(90deg, #6366f1 0%, #ddd6fe 100%);
}
.about-process-stair__step--m .about-process-stair__bar {
  background: linear-gradient(90deg, #db2777 0%, #fbcfe8 100%);
}
.about-process-stair__step--o .about-process-stair__bar {
  background: linear-gradient(90deg, #ea580c 0%, #fed7aa 100%);
}

.about-process-stair__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(16px, 1.35vw, 18px);
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.about-process-stair__desc {
  font-family: var(--sans);
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-3);
  margin: 0;
}

[data-theme="dark"] .about-process-stair-section {
  background: var(--bg-soft);
}
[data-theme="dark"] .about-process-stair__icon-blob {
  background: radial-gradient(
    circle at 33% 28%,
    color-mix(in oklab, var(--accent-azure) 35%, var(--bg-soft)) 0%,
    color-mix(in oklab, var(--accent-azure) 12%, transparent) 60%
  );
}

@media (max-width: 1024px) {
  .about-process-stair__step {
    max-width: 145px;
  }
  .about-process-stair__step--i1 { margin-top: 160px; }
  .about-process-stair__step--i2 { margin-top: 118px; }
  .about-process-stair__step--i3 { margin-top: 78px; }
  .about-process-stair__step--i4 { margin-top: 42px; }
  .about-process-stair__step--i5 { margin-top: 6px; }
}

@media (max-width: 900px) {
  .about-process-stair {
    margin-top: 8px;
  }
  .about-process-stair__row {
    flex-direction: column;
    align-items: stretch;
    max-width: 480px;
    margin: 0 auto;
    padding: 16px 0 12px;
    gap: 0;
  }
  .about-process-stair__step {
    max-width: none;
    margin-top: 0 !important;
    padding: 22px 0;
    gap: 10px;
  }
  .about-process-stair__step:not(:first-child) {
    border-top: 1px dashed var(--rule-2);
  }
}

/* Service grid (pillar pages: What's included) */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-tile {
  border: 1px solid var(--rule);
  background: var(--bg-elev);
  border-radius: 4px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 220ms ease;
}
.service-tile:hover {
  border-color: var(--ink);
}
.service-tile .icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.service-tile h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.service-tile p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-3);
  margin: 0;
}
.service-tile .tag {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--rule-2);
}
.service-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .service-grid,
  .service-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .service-grid,
  .service-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Solutions philosophy */
.sol-philosophy {
  text-align: left;
  max-width: 800px;
  margin: 0;
}
.sol-philosophy h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  color: var(--ink);
}
.sol-philosophy p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-3);
  margin: 0;
}

/* Three pillars / offerings section head (Products & Solutions) — headline scale matches .sol-philosophy h2 */
.sol-pillars-head {
  text-align: left;
  max-width: 900px;
  margin: 0 0 28px;
}
.sol-pillars-head .eyebrow {
  margin-bottom: 16px;
}
.sol-pillars-head h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--ink);
}

/* Horizontal pillars + expandable panel (Products & Solutions) */
.sol-pillar-scope {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-elev);
}

.sol-pillar-scope > .sol-pillar-panel,
.sol-pillar-scope > .sol-offering-panel {
  align-self: stretch;
  width: 100%;
  min-width: 0;
}
.sol-pillar-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px solid var(--rule);
}
.sol-pillar-stack {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--rule);
  background: var(--bg-soft);
}
.sol-pillar-tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 22px 20px;
  margin: 0;
  border: none;
  border-right: 1px solid var(--rule);
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  text-align: left;
  font: inherit;
  transition: background 220ms ease;
  min-height: 220px;
}
.sol-pillar-tab:last-child {
  border-right: 0;
}
.sol-pillar-tab:hover {
  background: color-mix(in oklab, var(--ink) 5%, transparent);
}
.sol-pillar-tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}
.sol-pillar-tab--open {
  background: color-mix(in oklab, var(--ink) 8%, transparent);
}
.sol-pillar-tab--featured {
  background: linear-gradient(
    90deg,
    color-mix(in oklab, var(--accent-azure) 10%, transparent),
    color-mix(in oklab, var(--accent-green) 11%, transparent)
  );
  box-shadow: inset 4px 0 0 var(--accent-green);
}
.sol-pillar-tab--featured.sol-pillar-tab--open {
  background: linear-gradient(
    90deg,
    color-mix(in oklab, var(--accent-azure) 13%, transparent),
    color-mix(in oklab, var(--accent-green) 14%, transparent)
  );
}

.sol-pillar-tab__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.sol-pillar-tab__num {
  font-family: var(--serif);
  font-weight: 600;
  font-style: italic;
  font-size: 13px;
  color: var(--ink-3);
}
.sol-pillar-tab__badge {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 9px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--ink-3);
}
.sol-pillar-tab--featured .sol-pillar-tab__badge {
  background: var(--brand-duo-gradient);
  border-color: transparent;
  color: #fff;
}
.sol-pillar-tab__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.22;
  letter-spacing: -0.02em;
}
.sol-pillar-tab__summary {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-3);
  flex: 1;
}
.sol-pillar-tab__expand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.sol-pillar-tab__chevron {
  display: flex;
  transition: transform 220ms ease;
}
.sol-pillar-tab__expand.is-open .sol-pillar-tab__chevron,
.sol-pillar-stack__btn.is-open .sol-pillar-tab__chevron {
  transform: rotate(180deg);
}

.sol-pillar-stack__btn {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: flex-start;
  width: 100%;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--bg-elev);
  cursor: pointer;
  font: inherit;
  text-align: left;
  color: var(--ink);
  transition: border-color 220ms ease, background 220ms ease;
}
.sol-pillar-stack__btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.sol-pillar-stack__btn--featured {
  border-color: color-mix(in oklab, var(--accent-green) 35%, var(--rule));
  background: linear-gradient(
    120deg,
    color-mix(in oklab, var(--accent-azure) 12%, var(--bg-elev)),
    color-mix(in oklab, var(--accent-green) 10%, var(--bg-elev))
  );
}
.sol-pillar-stack__btn.is-open {
  border-color: var(--ink);
}
.sol-pillar-stack__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.sol-pillar-panel,
.sol-offering-panel {
  padding: clamp(22px, 4vw, 36px);
  background: var(--bg);
  text-align: left;
  font-style: normal;
}

.sol-pillar-panel__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 300px);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}

.sol-pillar-panel__copy {
  min-width: 0;
}

.sol-pillar-panel__aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 0;
  padding-left: clamp(20px, 3vw, 32px);
  border-left: 1px solid var(--rule);
  box-sizing: border-box;
}

.sol-pillar-panel__heading {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  color: var(--ink);
  font-style: normal;
  box-sizing: border-box;
}

.sol-pillar-panel__body {
  margin: 0;
  box-sizing: border-box;
}
.sol-pillar-panel__body p {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-3);
  margin: 0 0 16px;
  text-align: left;
}
.sol-pillar-panel__body p:last-child {
  margin-bottom: 0;
}

.sol-pillar-panel__aside .sol-pillar-panel__foot {
  margin: 0;
  padding: 0;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.sol-pillar-panel__cta-lead {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
  font-style: normal;
  letter-spacing: 0;
  color: var(--ink-3);
  margin: 0;
  text-align: center;
  width: 100%;
}
.sol-pillar-panel__cta-lead em,
.sol-pillar-panel__cta-lead i {
  font-style: normal;
}

.sol-pillar-panel__actions {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.sol-pillar-panel__actions > .btn,
.sol-pillar-panel__actions > a.btn {
  align-self: center;
  margin-left: 0;
  margin-right: 0;
  white-space: normal;
}

/* Featured edge strip — Startups pillar expanded state */
.sol-pillar-edge-strip {
  margin-top: clamp(28px, 5vw, 44px);
  padding: clamp(22px, 4vw, 36px);
  border-radius: 12px;
  box-sizing: border-box;
  background: var(--brand-duo-soft);
  border: 1px solid
    color-mix(
      in oklab,
      var(--accent-azure) 18%,
      color-mix(in oklab, var(--accent-green) 22%, var(--rule))
    );
}

.sol-pillar-edge-strip__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 300px);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}

.sol-pillar-edge-strip__copy {
  min-width: 0;
}

.sol-pillar-edge-strip__aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 0;
  padding-left: clamp(20px, 3vw, 32px);
  border-left: 1px solid
    color-mix(in oklab, var(--accent-azure) 12%, color-mix(in oklab, var(--accent-green) 20%, var(--rule)));
  box-sizing: border-box;
}

.sol-pillar-edge-strip__aside .sol-pillar-edge-strip__foot {
  margin: 0;
  padding: 0;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.sol-pillar-edge-strip__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--ink);
}

.sol-pillar-edge-strip__lead {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0 0 16px;
}

.sol-pillar-edge-strip__body {
  margin: 0;
}

.sol-pillar-edge-strip__body p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-3);
  margin: 0 0 14px;
  text-align: left;
}

.sol-pillar-edge-strip__body p:last-child {
  margin-bottom: 0;
}

.sol-pillar-edge-strip__cta-lead {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-3);
  margin: 0;
  text-align: center;
  width: 100%;
}

.sol-pillar-edge-strip__actions {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.sol-pillar-edge-strip__actions > .btn,
.sol-pillar-edge-strip__actions > a.btn {
  align-self: center;
  white-space: normal;
}

@media (max-width: 900px) {
  .sol-pillar-edge-strip__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .sol-pillar-edge-strip__aside {
    justify-content: flex-start;
    align-items: stretch;
    padding-left: 0;
    border-left: none;
  }

  .sol-pillar-edge-strip__aside .sol-pillar-edge-strip__foot {
    padding-top: 22px;
    margin-top: 24px;
    border-top: 1px solid
      color-mix(in oklab, var(--accent-azure) 14%, color-mix(in oklab, var(--accent-green) 18%, var(--rule)));
    width: 100%;
    align-items: center;
  }

  .sol-pillar-panel__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .sol-pillar-panel__aside {
    justify-content: flex-start;
    align-items: stretch;
    padding-left: 0;
    border-left: none;
  }

  .sol-pillar-panel__aside .sol-pillar-panel__foot {
    padding: 22px 0 0;
    margin-top: 24px;
    border-top: 1px solid var(--rule);
    width: 100%;
    max-width: 100%;
    align-items: center;
  }

  .sol-pillar-panel__cta-lead {
    text-align: center;
  }

  .sol-pillar-rail {
    display: none;
  }
  .sol-pillar-stack {
    display: flex;
    border-bottom: 1px solid var(--rule);
  }
}

/* Integration diagram (Solutions) */
.integration-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 24px 0;
}
.int-pillar {
  flex: 1;
  border: 1px solid var(--rule);
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-elev);
}
.int-pillar .num {
  font-family: var(--serif);
  font-weight: 600;
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
}
.int-pillar h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.int-pillar p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 13px;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.5;
}
.int-arrow {
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-4);
  flex-shrink: 0;
}
.int-result {
  border: 1px dashed var(--rule);
  padding: 24px 32px;
  margin-top: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.int-result .label {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.int-result h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
@media (max-width: 900px) {
  .integration-diagram {
    flex-direction: column;
    gap: 16px;
  }
  .int-pillar {
    width: 100%;
  }
  .int-arrow {
    transform: rotate(90deg);
    width: auto;
    height: 48px;
  }
}

/* Estate sub-section (Global page) */
.estate-sub {
  background: var(--bg-soft);
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.estate-sub .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.estate-sub h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  color: var(--ink);
}
.estate-sub .desc {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink-3);
  font-size: 17px;
  line-height: 1.65;
}
@media (max-width: 900px) {
  .estate-sub .inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Contact layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: start;
  padding: var(--section-y) 0;
}
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Contact info panel */
.contact-info {
  padding: 32px;
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.contact-info .channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info .channel {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--ink-2);
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-2);
}
.contact-info .channel:last-child {
  border-bottom: 0;
}
.contact-info .channel .icon {
  width: 20px;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-info .channel:hover {
  color: var(--accent);
}
.contact-info .address {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.6;
}
.contact-info .address .label {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 8px;
}

/* Inline audit form (Contact page) */
.inline-form .step-indicator {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}
.inline-form .step-dot {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: var(--rule);
  transition: background 300ms ease;
}
.inline-form .step-dot.active {
  background: var(--accent);
}
.inline-form .step-dot.done {
  background: var(--ink);
}
.inline-form h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.inline-form p.lead {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink-3);
  font-size: 16px;
  margin: 0 0 32px;
}
.inline-form .actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--rule-2);
}

/* Thank-you state */
.thank-you {
  text-align: center;
  padding: 28px 0;
}
.thank-you .check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--accent-green) 12%, transparent);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.thank-you h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.thank-you p {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink-3);
  font-size: 17px;
  margin: 0 0 32px;
  line-height: 1.6;
}
.thank-you .cal-placeholder {
  border: 1px dashed var(--rule);
  padding: 48px;
  border-radius: 4px;
  margin-top: 32px;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-4);
}

/* Future expansion (About) */
.future-section {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: var(--section-y) 0;
}
.future-section h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink);
}
.future-section p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-3);
  margin: 0;
}

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