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

:root {
  --bg: #0B0D12;
  --bg-neutral: #11141A;
  --bg-light: #F7F8FA;
  --surface: #161A22;
  --text: #E6E8EB;
  --text-primary: #E6E8EB;
  --text-secondary: #A0A6B0;
  --text-muted: #6B7280;
  --text-on-light: #111318;
  --text-on-light-muted: #4B5563;
  --muted: #A0A7B4;
  --accent-primary: #6E56CF;
  --accent-secondary: #4DA3FF;
  --line: rgba(230,232,235,0.06);
  --radius: 6px;
  --max: 1140px;
  --pad-m: 64px;
  --pad-d: 96px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --vantage-angle-up: -3deg;
  --vantage-angle-forward: 3deg;

  /* Violet palette */
  --violet-dark:  #330072;
  --violet:       #492E8E;
  --violet-ultra: #654EA3;
  --violet-light: #BF9BDE;

  /* UI intent tokens */
  --accent: var(--violet-ultra);
  --accent-strong: var(--violet);
  --accent-deep: var(--violet-dark);
  --accent-soft: var(--violet-light);
  --accent-glow: rgba(101,78,163,0.22);
  --accent-glow-strong: rgba(51,0,114,0.22);
  --accent-line-idle: rgba(191,155,222,0.22);
  --accent-line-hover: rgba(191,155,222,0.40);

  /* Brand typography */
  --font-brand: "Inter Tight", "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* -- TYPOGRAPHY -- */

h1 {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--text);
}

h2 {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 32px;
}

h2 .vantage-line {
  display: block;
  margin-top: 14px;
}

h3 {
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 6px;
}

/* ── BRAND TYPE LOCK ── */

h1, h2, h3 {
  font-family: var(--font-brand) !important;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  font-feature-settings: "kern" 1, "liga" 1;
  font-kerning: normal;
}

p {
  color: rgba(255,255,255,0.78);
  max-width: 640px;
}

p + p {
  margin-top: 16px;
}

.overline {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* -- VANTAGE LINE -- */

.vantage-line {
  display: inline-block;
  height: 2px;
  background: linear-gradient(90deg, var(--violet-ultra), var(--violet-light));
  transform: rotate(var(--vantage-angle-up));
  transform-origin: left;
  border-radius: 1px;
}

.vantage-line--h2 {
  width: 52px;
}

.vantage-line--card {
  width: 20px;
  background: linear-gradient(90deg, var(--violet), var(--violet-ultra));
}

.vantage-line--cta {
  width: 36px;
  margin-bottom: 24px;
}

.vantage-line--hero {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  height: auto;
  background: linear-gradient(180deg, var(--violet), var(--violet-ultra));
  transform: rotate(var(--vantage-angle-forward));
  transform-origin: bottom;
  border-radius: 0;
  z-index: 2;
  pointer-events: none;
}

@media (min-width: 768px) {
  .vantage-line { height: 3px; }
  .vantage-line--hero { width: 3px; height: auto; }
}

/* -- BUTTONS -- */

.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 32px;
  border-radius: var(--radius);
  transition: background 200ms var(--ease), transform 160ms var(--ease), box-shadow 200ms var(--ease);
  cursor: pointer;
  border: none;
}

.btn:active { transform: scale(0.97); }

.btn--primary {
  background: linear-gradient(135deg, var(--violet-ultra), var(--violet));
  color: #fff;
  border: 1px solid rgba(191,155,222,0.18);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--violet), var(--violet-dark));
  box-shadow: 0 10px 26px rgba(101,78,163,0.18);
}

/* -- HERO CTA SYSTEM -- */
.hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-cta-link {
  display: inline-flex;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  transition: color 180ms var(--ease), opacity 180ms var(--ease);
}
.hero-cta-link:hover {
  color: var(--accent-soft);
}
.hero-cta-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}
@media (max-width: 767px) {
  .hero-cta {
    gap: 16px;
  }
}

/* -- NAV -- */

#nav {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0 24px;
  transition: background 200ms ease-out, border-color 200ms ease-out, backdrop-filter 200ms ease-out;
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  background: linear-gradient(180deg, rgba(15,17,21,0.88), rgba(15,17,21,0.96));
  border-bottom-color: var(--line);
  box-shadow: inset 0 -1px 0 rgba(191,155,222,0.06);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  backdrop-filter: blur(12px) saturate(1.2);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: -0.02em;
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-mark {
  display: block;
  height: 20px;
  width: auto;
  flex-shrink: 0;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

@media (min-width: 768px) {
  .nav-logo-mark { height: 24px; }
}

.nav-wordmark-svg {
  display: block;
  height: 16px;
  width: auto;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .nav-wordmark-svg {
    height: 18px;
  }
}

/* Desktop nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
}

.nav-link {
  position: relative;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.01em;
  padding: 6px 12px;
  transition: color 180ms, text-shadow 180ms;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--accent-line-idle);
  transition: background 180ms, height 180ms;
}

.nav-link:hover {
  color: var(--text);
}

.nav-link:hover::after {
  background: var(--accent-line-hover);
}

.nav-link.active {
  color: var(--text);
  text-shadow: 0 0 18px var(--accent-glow);
}

.nav-link.active::after {
  background: linear-gradient(90deg, var(--violet-ultra), var(--violet-light));
  height: 2px;
}

.nav-desktop .btn {
  font-size: 0.72rem;
  padding: 10px 22px;
  margin-left: 16px;
  position: relative;
}

.nav-desktop .btn::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: rgba(191,155,222,0.16);
}

/* Focus-visible for keyboard navigation */
.nav-link:focus-visible,
.mobile-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

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

/* Hamburger */
.nav-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

@media (min-width: 768px) {
  .nav-hamburger { display: none; }
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 22px;
}

.hamburger-icon span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 250ms var(--ease), opacity 200ms;
  transform-origin: center;
}

.nav-hamburger[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile backdrop overlay */
.mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  top: 64px;
  background: rgba(15,17,21,0.60);
  z-index: 98;
  opacity: 0;
  transition: opacity 200ms var(--ease);
}

.mobile-backdrop.open {
  display: block;
}

.mobile-backdrop.visible {
  opacity: 1;
}

@media (min-width: 768px) {
  .mobile-backdrop { display: none !important; }
}

/* Mobile menu panel */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, var(--bg), rgba(15,17,21,0.98));
  border-top: 1px solid rgba(191,155,222,0.08);
  border-bottom: 1px solid var(--line);
  padding: 20px 24px 28px;
  z-index: 99;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 200ms var(--ease), transform 200ms var(--ease);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-link {
  position: relative;
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(191,155,222,0.10);
  transition: color 180ms;
}

.mobile-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--violet-ultra), var(--violet-light));
  transition: width 200ms var(--ease);
}

.mobile-link:hover {
  color: var(--text);
}

.mobile-link.active {
  color: var(--text);
  text-shadow: 0 0 18px var(--accent-glow);
}

.mobile-link.active::after {
  width: 32px;
}

.mobile-menu .btn {
  margin-top: 20px;
  width: 100%;
  text-align: center;
}

/* -- SECTIONS -- */

section {
  padding: var(--pad-m) 0;
  scroll-margin-top: 88px;
}

@media (min-width: 768px) {
  section { padding: var(--pad-d) 0; scroll-margin-top: 104px; }
}

.bg--surface { background: var(--surface); }

/* ── HERO ── */

#hero {
  padding-top: 120px;
  padding-bottom: var(--pad-m);
}

@media (max-width: 767px) {
  /* Institutional mobile hero rhythm — increase gutter + reduce perceived crowding */
  .hero-left {
    padding-left: 92px;
  }
  .hero-left .vantage-line--hero {
    left: 10px;
    transform: rotate(1.5deg);
  }
  .hero-left .overline {
    margin-bottom: 28px;
  }
}

@media (min-width: 768px) {
  #hero { padding-top: 160px; padding-bottom: var(--pad-d); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1fr 0.65fr; gap: 64px; }
}

.hero-left {
  position: relative;
  padding-left: 40px;
}

.hero-left h1 {
  margin-bottom: 24px;
}

.hero-left p {
  font-size: 1.05rem;
  line-height: 1.72;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-right {
  display: none;
}

@media (min-width: 768px) {
  .hero-right {
    display: block;
    position: relative;
    height: 360px;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow:
      inset 0 0 0 1px rgba(191,155,222,0.12),
      inset 0 0 0 2px rgba(15,17,21,0.6),
      inset 0 0 0 3px rgba(191,155,222,0.06);
  }
}

.hero-field {
  position: absolute;
  inset: 0;
  background-image:
    /* Vignette — edge falloff */
    radial-gradient(ellipse 100% 100% at 50% 50%, transparent 28%, rgba(15,17,21,0.58) 100%),
    /* Directional depth — bottom-left weight */
    radial-gradient(800px circle at 8% 92%, rgba(51,0,114,0.20), transparent 60%),
    /* Tonal lift — upper mid */
    radial-gradient(400px circle at 60% 30%, rgba(73,46,142,0.05), transparent 50%),
    /* Diagonal bevel — highlight edge */
    linear-gradient(
      147deg,
      transparent 41.5%,
      rgba(191,155,222,0.10) 41.8%,
      transparent 42.1%
    ),
    /* Diagonal bevel — shadow edge */
    linear-gradient(
      147deg,
      transparent 42.2%,
      rgba(15,17,21,0.30) 42.5%,
      transparent 42.8%
    ),
    /* Grid — vertical */
    repeating-linear-gradient(
      3deg,
      transparent,
      transparent 55px,
      rgba(191,155,222,0.018) 55px,
      rgba(191,155,222,0.018) 56px
    ),
    /* Grid — horizontal */
    repeating-linear-gradient(
      93deg,
      transparent,
      transparent 55px,
      rgba(101,78,163,0.014) 55px,
      rgba(101,78,163,0.014) 56px
    );
}

/* Crosshair guides — higher authority than grid */
.hero-field::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    /* Primary vertical guide at ~36% — core */
    linear-gradient(rgba(191,155,222,0.12), rgba(191,155,222,0.12)) no-repeat 36% 0 / 1px 100%,
    /* Primary vertical guide — glow */
    linear-gradient(rgba(191,155,222,0.04), rgba(191,155,222,0.04)) no-repeat 36% 0 / 3px 100%,
    /* Primary horizontal guide at ~58% — core */
    linear-gradient(rgba(191,155,222,0.12), rgba(191,155,222,0.12)) no-repeat 0 58% / 100% 1px,
    /* Primary horizontal guide — glow */
    linear-gradient(rgba(191,155,222,0.04), rgba(191,155,222,0.04)) no-repeat 0 58% / 100% 3px,
    /* Secondary vertical guide at ~74% */
    linear-gradient(rgba(101,78,163,0.07), rgba(101,78,163,0.07)) no-repeat 74% 0 / 1px 100%;
}

/* Measurement ticks + axis origin */
.hero-field::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    /* Left edge ticks — minor */
    repeating-linear-gradient(
      180deg,
      rgba(191,155,222,0.16) 0px,
      rgba(191,155,222,0.16) 1px,
      transparent 1px,
      transparent 28px
    ) no-repeat 24px 24px / 7px calc(100% - 48px),
    /* Left edge ticks — major (every 4th) */
    repeating-linear-gradient(
      180deg,
      rgba(191,155,222,0.24) 0px,
      rgba(191,155,222,0.24) 1px,
      transparent 1px,
      transparent 112px
    ) no-repeat 24px 24px / 13px calc(100% - 48px),
    /* Bottom edge ticks — minor */
    repeating-linear-gradient(
      90deg,
      rgba(191,155,222,0.16) 0px,
      rgba(191,155,222,0.16) 1px,
      transparent 1px,
      transparent 28px
    ) no-repeat 24px calc(100% - 31px) / calc(100% - 48px) 7px,
    /* Bottom edge ticks — major */
    repeating-linear-gradient(
      90deg,
      rgba(191,155,222,0.24) 0px,
      rgba(191,155,222,0.24) 1px,
      transparent 1px,
      transparent 112px
    ) no-repeat 24px calc(100% - 31px) / calc(100% - 48px) 13px,
    /* Axis origin — dot */
    radial-gradient(circle 2.5px at center, rgba(191,155,222,0.35), transparent 3.5px) no-repeat 21px calc(100% - 33px) / 8px 8px,
    /* Axis origin — L horizontal */
    linear-gradient(rgba(191,155,222,0.28), rgba(191,155,222,0.28)) no-repeat 28px calc(100% - 30px) / 16px 1px,
    /* Axis origin — L vertical */
    linear-gradient(rgba(191,155,222,0.28), rgba(191,155,222,0.28)) no-repeat 24px calc(100% - 46px) / 1px 16px;
}

/* Inner frame */
.hero-right::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(191,155,222,0.12);
  border-radius: 2px;
  z-index: 4;
  pointer-events: none;
}

/* Corner brackets */
.hero-right::after {
  content: '';
  position: absolute;
  inset: 18px;
  z-index: 5;
  pointer-events: none;
  background:
    /* TL horiz */ linear-gradient(rgba(191,155,222,0.28), rgba(191,155,222,0.28)) no-repeat 0 0 / 24px 1px,
    /* TL vert  */ linear-gradient(rgba(191,155,222,0.28), rgba(191,155,222,0.28)) no-repeat 0 0 / 1px 24px,
    /* TR horiz */ linear-gradient(rgba(191,155,222,0.28), rgba(191,155,222,0.28)) no-repeat 100% 0 / 24px 1px,
    /* TR vert  */ linear-gradient(rgba(191,155,222,0.28), rgba(191,155,222,0.28)) no-repeat 100% 0 / 1px 24px,
    /* BL horiz */ linear-gradient(rgba(191,155,222,0.28), rgba(191,155,222,0.28)) no-repeat 0 100% / 24px 1px,
    /* BL vert  */ linear-gradient(rgba(191,155,222,0.28), rgba(191,155,222,0.28)) no-repeat 0 100% / 1px 24px,
    /* BR horiz */ linear-gradient(rgba(191,155,222,0.28), rgba(191,155,222,0.28)) no-repeat 100% 100% / 24px 1px,
    /* BR vert  */ linear-gradient(rgba(191,155,222,0.28), rgba(191,155,222,0.28)) no-repeat 100% 100% / 1px 24px;
}

/* Micro system tag */
.field-tag {
  position: absolute;
  bottom: 14px;
  right: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(191,155,222,0.26);
  z-index: 6;
  pointer-events: none;
  line-height: 1;
}

.field-tag span {
  display: block;
  margin-top: 3px;
  font-size: 0.42rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: rgba(191,155,222,0.16);
}

/* -- INTRO -- */

#intro .wrap {
  max-width: 720px;
}

#intro h2 {
  margin-bottom: 28px;
}

/* -- CAPABILITIES -- */

.cap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 600px) {
  .cap-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .cap-grid { grid-template-columns: 1fr 1fr; }
}

.cap-card {
  background: var(--bg);
  border: 1px solid rgba(191,155,222,0.10);
  border-radius: var(--radius);
  padding: 28px 26px 32px;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}

.cap-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(51,0,114,0.14);
}

.cap-card .vantage-line--card {
  margin-bottom: 18px;
}

.cap-card .outcome {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.cap-card p {
  font-size: 0.92rem;
  line-height: 1.7;
}

/* -- VALUE -- */

#value .wrap {
  max-width: 720px;
}

/* -- BENEFITS -- */

#benefits .wrap {
  max-width: 760px;
}

.benefits-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefits-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  line-height: 1.68;
}

.benefits-list li::before,
.diag-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--violet-ultra));
  transform: rotate(var(--vantage-angle-up));
  transform-origin: left;
  border-radius: 1px;
}

@media (min-width: 768px) {
  .benefits-list li::before,
  .diag-list li::before { height: 3px; }
}

.benefits-outro {
  margin-top: 28px;
}

.benefits-lead {
  margin-top: 24px;
  color: var(--text);
  font-weight: 500;
}

/* -- SEGMENTS -- */

.seg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 48px;
}

@media (min-width: 600px) {
  .seg-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .seg-grid { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
}

.seg-card {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid rgba(191,155,222,0.10);
  border-radius: var(--radius);
  padding: 30px 28px 34px;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), border-color 260ms var(--ease);
}

.seg-card:hover {
  transform: translateY(-2px);
  border-color: rgba(191,155,222,0.18);
  box-shadow: 0 18px 50px rgba(51,0,114,0.14);
}

.seg-card h3 {
  margin-bottom: 14px;
}

.seg-card p {
  font-size: 0.92rem;
  line-height: 1.72;
}

.seg-card p + p {
  margin-top: 16px;
}

/* Segment icon marks — driven by data-icon attribute for reorder safety.
   ::before = icon; mask-image tinted via background-color. */
.seg-card::before {
  content: '';
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  background-color: var(--violet-light);
  opacity: 0.10;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  pointer-events: none;
  z-index: 1;
  transition: opacity 260ms var(--ease);
}

.seg-card:hover::before {
  opacity: 0.16;
}

@media (max-width: 599px) {
  .seg-card::before {
    width: 36px;
    height: 36px;
    top: 20px;
    right: 20px;
    opacity: 0.08;
  }
  .seg-card:hover::before { opacity: 0.12; }
}

/* Icon map — attribute-driven, order-independent */
.seg-card[data-icon="enterprise"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 22V9h5V3h8v6h5v13H3zm7-17v2h4V5h-4zM6 12v2h3v-2H6zm4 0v2h4v-2h-4zm5 0v2h3v-2h-3zM6 16v2h3v-2H6zm4 0v2h4v-2h-4zm5 0v2h3v-2h-3z' fill='white'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 22V9h5V3h8v6h5v13H3zm7-17v2h4V5h-4zM6 12v2h3v-2H6zm4 0v2h4v-2h-4zm5 0v2h3v-2h-3zM6 16v2h3v-2H6zm4 0v2h4v-2h-4zm5 0v2h3v-2h-3z' fill='white'/%3E%3C/svg%3E");
}

.seg-card[data-icon="smb"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 7H4a2 2 0 00-2 2v10a2 2 0 002 2h16a2 2 0 002-2V9a2 2 0 00-2-2zM9 4h6a1 1 0 011 1v2H8V5a1 1 0 011-1zm3 12a2 2 0 110-4 2 2 0 010 4z' fill='white'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 7H4a2 2 0 00-2 2v10a2 2 0 002 2h16a2 2 0 002-2V9a2 2 0 00-2-2zM9 4h6a1 1 0 011 1v2H8V5a1 1 0 011-1zm3 12a2 2 0 110-4 2 2 0 010 4z' fill='white'/%3E%3C/svg%3E");
}

.seg-card[data-icon="public"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 2h20v3H2V2zm2 5h3v10H4V7zm5.5 0h3v10h-3V7zM15 7h3v10h-3V7zm3 12H4v-1h14v1zM2 20h20v2H2v-2z' fill='white'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 2h20v3H2V2zm2 5h3v10H4V7zm5.5 0h3v10h-3V7zM15 7h3v10h-3V7zm3 12H4v-1h14v1zM2 20h20v2H2v-2z' fill='white'/%3E%3C/svg%3E");
}

.seg-card[data-icon="defence"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L4 6v5c0 5.25 3.4 10.2 8 11.9 4.6-1.7 8-6.65 8-11.9V6l-8-4zm0 4l3 3-3 3-3-3 3-3zm0 14c-3.4-1.4-6-5.3-6-9.2V7.3l6-3 6 3v3.5c0 3.9-2.6 7.8-6 9.2z' fill='white'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L4 6v5c0 5.25 3.4 10.2 8 11.9 4.6-1.7 8-6.65 8-11.9V6l-8-4zm0 4l3 3-3 3-3-3 3-3zm0 14c-3.4-1.4-6-5.3-6-9.2V7.3l6-3 6 3v3.5c0 3.9-2.6 7.8-6 9.2z' fill='white'/%3E%3C/svg%3E");
}

.seg-card[data-icon="nfp"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21.4l-1.4-1.3C5.4 15.4 2 12.3 2 8.5 2 5.4 4.4 3 7.5 3c1.7 0 3.4.8 4.5 2.1C13.1 3.8 14.8 3 16.5 3 19.6 3 22 5.4 22 8.5c0 3.8-3.4 6.9-8.6 11.5L12 21.4z' fill='white'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21.4l-1.4-1.3C5.4 15.4 2 12.3 2 8.5 2 5.4 4.4 3 7.5 3c1.7 0 3.4.8 4.5 2.1C13.1 3.8 14.8 3 16.5 3 19.6 3 22 5.4 22 8.5c0 3.8-3.4 6.9-8.6 11.5L12 21.4z' fill='white'/%3E%3C/svg%3E");
}

.seg-card[data-icon="ventures"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c-.8 2.8-2.4 5.2-3.8 7.2L5 12l2.5 1.5L6 22l6-4 6 4-1.5-8.5L19 12l-3.2-2.8C14.4 7.2 12.8 4.8 12 2zm0 6a1.5 1.5 0 110 3 1.5 1.5 0 010-3z' fill='white'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c-.8 2.8-2.4 5.2-3.8 7.2L5 12l2.5 1.5L6 22l6-4 6 4-1.5-8.5L19 12l-3.2-2.8C14.4 7.2 12.8 4.8 12 2zm0 6a1.5 1.5 0 110 3 1.5 1.5 0 010-3z' fill='white'/%3E%3C/svg%3E");
}

/* -- DIAGNOSTICS -- */

#diagnostic .wrap {
  max-width: 760px;
}

.diag-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.diag-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  line-height: 1.68;
}

.diag-outro {
  margin-top: 28px;
}

.diag-outro + .diag-outro {
  margin-top: 16px;
}

/* -- CTA -- (superseded by cta-lock canonical block at end of file) */

/* -- FOOTER -- */

/* ── SITE FOOTER ─────────────────────────────────────────── */

.site-footer {
  padding: 72px 0 48px;
  border-top: 1px solid rgba(230,232,235,0.10);
  background: var(--bg);
}

/* 4-col grid: brand wider, 3 equal */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px 48px;
  align-items: start;
}

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

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

/* Brand column */
.footer-col--brand .footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 18px;
}

.footer-logo-img {
  display: block;
  height: 22px;
  width: auto;
  opacity: 0.45;
}

.footer-tagline {
  font-size: 0.78rem;
  line-height: 1.72;
  color: var(--muted);
  max-width: 240px;
  font-weight: 400;
  opacity: 0.72;
}

/* Nav columns */
.footer-col-label {
  display: block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.48;
  margin-bottom: 16px;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list li a,
.footer-nav-list li span {
  font-size: 0.81rem;
  line-height: 1.5;
  color: var(--muted);
  text-decoration: none;
  transition: color 160ms ease;
  opacity: 0.72;
}

.footer-nav-list li a:hover {
  color: var(--text);
  opacity: 1;
}

.footer-nav-list li span {
  cursor: default;
}

/* Connect column */
.footer-connect {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn--footer-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(191,155,222,0.22);
  border-radius: var(--radius);
  padding: 11px 20px;
  margin-top: 0;
  display: inline-block;
  cursor: pointer;
  transition: border-color 160ms, color 160ms;
}

.btn--footer-cta:hover {
  border-color: rgba(191,155,222,0.46);
  color: var(--accent);
}

.footer-connect-sub {
  font-size: 0.72rem;
  color: var(--muted);
  opacity: 0.42;
  margin-top: 12px;
  line-height: 1.5;
  max-width: 180px;
}

/* Bottom strip */
.footer-bottom {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(230,232,235,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom-copy {
  font-size: 0.72rem;
  color: var(--muted);
  opacity: 0.38;
}

.footer-bottom-privacy {
  font-size: 0.72rem;
  color: var(--muted);
  opacity: 0.38;
  text-decoration: none;
  transition: opacity 160ms ease;
}

.footer-bottom-privacy:hover {
  opacity: 0.68;
}

@media (max-width: 767px) {
  .site-footer { padding: 56px 0 40px; }
  .footer-bottom { margin-top: 40px; }
}


/* -- REVEAL -- */

.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 240ms var(--ease), transform 240ms var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* -- MODAL -- */
.modal-overlay{display:none;position:fixed;inset:0;z-index:200;background:rgba(15,17,21,0.75);-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px);justify-content:center;align-items:flex-start;overflow-y:auto;-webkit-overflow-scrolling:touch;padding:24px;opacity:0;transition:opacity 200ms var(--ease);}
.modal-overlay.is-visible{display:flex;opacity:1;}
.modal{position:relative;background:var(--surface);border:1px solid rgba(191,155,222,0.10);border-radius:var(--radius);width:min(80vw,920px);max-height:calc(100vh - 48px);overflow-y:auto;-webkit-overflow-scrolling:touch;padding:48px 56px;transform:translateY(10px);transition:transform 200ms var(--ease);}
.modal-overlay.is-visible .modal{transform:translateY(0);}
@media(max-width:768px){.modal{width:92vw;max-height:calc(100vh - 48px);padding:28px 20px;}}
body.modal-open{overflow:hidden;}
.modal-close{position:absolute;top:14px;right:14px;width:32px;height:32px;background:none;border:1px solid rgba(191,155,222,0.12);border-radius:var(--radius);color:var(--muted);font-size:1.2rem;line-height:1;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:color 180ms,border-color 180ms;}
.modal-close:hover{color:var(--text);border-color:rgba(191,155,222,0.24);}
.modal-close:focus-visible{outline:2px solid var(--accent);outline-offset:2px;}
.modal-title{font-family:var(--font-brand);font-weight:700;font-size:1.3rem;color:var(--text);margin-bottom:6px;}
.modal-helper{font-size:0.85rem;color:rgba(255,255,255,0.78);margin-bottom:28px;}
.form-group{margin-bottom:16px;}
.form-label{display:block;font-size:0.78rem;font-weight:600;letter-spacing:0.06em;text-transform:uppercase;color:var(--muted);margin-bottom:6px;}
.form-input,.form-textarea{display:block;width:100%;font-family:'DM Sans',sans-serif;font-size:0.92rem;color:var(--text);background:var(--bg);border:1px solid rgba(191,155,222,0.14);border-radius:var(--radius);padding:12px 14px;transition:border-color 180ms,box-shadow 180ms;}
.form-textarea{resize:vertical;min-height:80px;}
.form-input:focus,.form-textarea:focus{outline:none;border-color:var(--accent);box-shadow:0 0 0 3px var(--accent-glow);}
.form-input::placeholder,.form-textarea::placeholder{color:rgba(160,167,180,0.5);}
.form-submit{margin-top:24px;}
.cta-form-wrap{max-width:440px;margin-left:auto;margin-right:auto;text-align:left;}

/* ═══════════════════════════════════════════════════════════
   DESIGN ELEVATION LAYER — Executive Grade
   All rules here augment or override the base system above.
   ═══════════════════════════════════════════════════════════ */

/* -- Elevation tokens -- */
:root {
  --rail: rgba(191,155,222,0.15);
  --rail-faint: rgba(191,155,222,0.07);
}

/* -- Chapter break: structural separator between major chapters -- */
.chapter-break {
  position: relative;
}
.chapter-break::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--violet-ultra) 0%, rgba(101,78,163,0.10) 38%, transparent 68%);
  pointer-events: none;
  z-index: 1;
}

/* -- Section padding: chapter-level calibration -- */
@media (min-width: 768px) {
  #hero        { padding-top: 200px; }
  #category-intro { padding: 112px 0 72px; }
  /* #why-fractional padding handled by canonical wf block */
  /* #leadership-coverage padding handled by canonical lc block */
  #roles       { padding: 128px 0; } /* overridden by product selector system */
  #vcaio       { padding: 128px 0; }
  #role-alignment { padding: 128px 0; }
  #where-it-fits  { padding: 128px 0; }
  /* #how-it-works padding handled by hiw canonical block */
  #difference     { padding: 128px 0; }
  /* #cta padding handled by cta-lock canonical block */
}

/* -- HERO: executive strategic opening -- */
h1 {
  font-size: clamp(3rem, 6.5vw, 4.8rem);
  line-height: 1.03;
  letter-spacing: -0.024em;
}

#hero .hero-left > p {
  font-size: 1.08rem;
  line-height: 1.76;
  color: rgba(255,255,255,0.78);
  max-width: 480px;
  margin-bottom: 44px;
}

#hero .hero-left h1 {
  margin-bottom: 28px;
}

/* Hero overline: elevated presence with accent prefix */
#hero .overline {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(191,155,222,0.58);
  margin-bottom: 24px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}
#hero .overline::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(191,155,222,0.45);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1fr 0.52fr; gap: 80px; }
  .hero-left { padding-left: 52px; }
  .vantage-line--hero { width: 3px; }
}

/* -- CATEGORY AUTHORITY: editorial prose chapter -- */
#category-intro .wrap { max-width: 760px; }

#category-intro h2 {
  font-size: clamp(2rem, 4.2vw, 2.8rem);
  letter-spacing: -0.018em;
  margin-bottom: 36px;
}

#category-intro p {
  font-size: 1.06rem;
  line-height: 1.78;
  max-width: 620px;
}

/* #why-fractional .wrap — overridden by canonical wf block */

@media (min-width: 768px) {
  #why-fractional .reveal {
    padding-left: 36px;
    border-left: 2px solid rgba(191,155,222,0.14);
    position: relative;
  }
  #why-fractional .reveal::before {
    content: '';
    position: absolute;
    left: -2px; top: 0;
    width: 2px; height: 56px;
    background: linear-gradient(180deg, var(--violet-ultra), transparent);
  }
}

#why-fractional p {
  font-size: 1.02rem;
  line-height: 1.78;
}

/* -- LEADERSHIP COVERAGE: capability matrix -- */
/* ── INFERVANTAGE MODEL: Tier 2 System Grid ─────────────── */

#leadership-coverage {
  padding: 128px 0 24px;
}

#leadership-coverage .wrap {
  max-width: 1160px;
}

.lc-inner {
  max-width: 760px;
  margin-bottom: 72px;
}

.lc-headline {
  font-family: var(--font-brand);
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--text-primary);
}

#leadership-coverage .vantage-line--h2 {
  background: linear-gradient(90deg, var(--accent-primary), rgba(110,86,207,0.22));
}

.lc-intro {
  font-size: 1.02rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.78);
  max-width: 680px;
}

/* System grid — ruled, no cards */
/* Divider: thin rule between intro and model header */
.lc-divider {
  height: 1px;
  background: rgba(230,232,235,0.07);
  margin: 0 0 24px 0;
}

/* Model label: grid header, structurally aligned with grid */
.lc-model-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(160,167,180,0.38);
  margin: 0 0 0 0;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(230,232,235,0.06);
}

.lc-grid {
  display: grid;
  grid-template-columns: 1fr;
  /* no border-top — label's border-bottom serves as grid entry line */
}

@media (min-width: 768px) {
  .lc-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .lc-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.lc-cell {
  padding: 48px 40px 52px;
  /* horizontal lines slightly heavier than vertical — continuous system feel */
  border-bottom: 1px solid rgba(230,232,235,0.07);
  border-right: none;
}

@media (min-width: 768px) {
  .lc-cell {
    /* vertical lines lighter than horizontal */
    border-right: 1px solid rgba(230,232,235,0.05);
  }
  .lc-cell:nth-child(2n) {
    border-right: none;
  }
}

@media (min-width: 1024px) {
  .lc-cell {
    border-right: 1px solid rgba(230,232,235,0.05);
  }
  .lc-cell:nth-child(2n) {
    border-right: 1px solid rgba(230,232,235,0.05);
  }
  .lc-cell:nth-child(3n) {
    border-right: none;
  }
  .lc-cell:nth-child(4),
  .lc-cell:nth-child(5),
  .lc-cell:nth-child(6) {
    border-bottom: none;
  }
}

.lc-cell__name {
  font-family: var(--font-brand);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.36;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.lc-cell__body {
  font-size: 0.91rem;
  line-height: 1.82;
  color: rgba(255,255,255,0.78);
  max-width: 100%;
}

@media (max-width: 767px) {
  #leadership-coverage {
    padding: 80px 0 16px;
  }
  .lc-inner {
    margin-bottom: 48px;
  }
  .lc-model-label {
    margin-bottom: 0;
  }
  .lc-cell {
    padding: 36px 0 40px;
    border-right: none !important;
  }
}

/* -- ROLES: legacy CSS removed — system now uses .ps-* product selector */

/* -- VCAIO: executive product -- */
#vcaio .wrap { max-width: 760px; }
#vcaio h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin-bottom: 28px; }
#vcaio > .wrap > .reveal > p { font-size: 1.02rem; line-height: 1.78; }

.benefits-lead {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(191,155,222,0.55);
  font-weight: 600;
  margin-top: 44px;
}

#vcaio .benefits-list {
  margin-top: 16px;
  gap: 0;
  border-top: 1px solid rgba(191,155,222,0.08);
}

#vcaio .benefits-list li {
  padding: 16px 0 16px 28px;
  border-bottom: 1px solid rgba(191,155,222,0.06);
  font-size: 0.97rem;
  line-height: 1.66;
}

#vcaio .benefits-list li:last-child { border-bottom: none; }

#vcaio .benefits-outro {
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(191,155,222,0.10);
  font-size: 1.02rem;
  line-height: 1.76;
  color: var(--text);
  max-width: 620px;
}

/* -- ROLE ALIGNMENT: decision architecture -- */
#role-alignment .cap-grid { margin-top: 52px; }

@media (min-width: 768px) {
  #role-alignment .cap-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  #role-alignment .cap-card {
    background: transparent;
    border: none;
    border-left: 2px solid rgba(191,155,222,0.12);
    border-bottom: 1px solid rgba(191,155,222,0.05);
    border-radius: 0;
    padding: 28px 32px 28px 28px;
    transition: border-left-color 200ms var(--ease), background 200ms;
  }
  #role-alignment .cap-card:nth-child(2),
  #role-alignment .cap-card:nth-child(4) {
    border-left: 2px solid rgba(191,155,222,0.07);
    padding-left: 36px;
  }
  #role-alignment .cap-card:nth-child(3),
  #role-alignment .cap-card:nth-child(4) { border-bottom: none; }
  #role-alignment .cap-card:hover {
    border-left-color: rgba(191,155,222,0.36);
    transform: none;
    box-shadow: none;
    background: rgba(22,26,34,0.45);
  }
  #role-alignment .cap-card .vantage-line--card { display: none; }
}

#role-alignment .cap-card h3 { font-size: 0.94rem; font-weight: 700; line-height: 1.38; margin-bottom: 12px; }
#role-alignment .cap-card p { font-size: 0.88rem; line-height: 1.68; }

/* -- WHERE IT FITS: operating contexts -- */
#where-it-fits .seg-card { border-color: rgba(191,155,222,0.09); padding: 32px 28px 36px; }
#where-it-fits .seg-card h3 { font-size: 0.97rem; font-weight: 700; margin-bottom: 14px; }
#where-it-fits .seg-card p { font-size: 0.88rem; line-height: 1.72; }

/* -- HOW IT WORKS: operating sequence -- */
/* #how-it-works .cap-grid — removed, using hiw-sequence */ {
  margin-top: 60px;
  counter-reset: step;
}

/* #how-it-works .cap-card — removed */

@media (min-width: 768px) {
  #how-it-works .cap-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  #how-it-works .cap-card {
    background: transparent;
    border: none;
    border-top: 1px solid rgba(191,155,222,0.09);
    border-right: 1px solid rgba(191,155,222,0.06);
    border-radius: 0;
    padding: 44px 44px 44px 0;
    transition: background 200ms;
  }
  #how-it-works .cap-card:nth-child(even) {
    border-right: none;
    padding: 44px 0 44px 44px;
  }
  #how-it-works .cap-card:nth-child(3),
  #how-it-works .cap-card:nth-child(4) {
    border-bottom: 1px solid rgba(191,155,222,0.06);
  }
  #how-it-works .cap-card:hover { transform: none; box-shadow: none; background: rgba(22,26,34,0.42); }
  #how-it-works .cap-card .vantage-line--card { display: none; }
  #how-it-works .cap-card::before {
    content: '0' counter(step);
    display: block;
    font-family: var(--font-brand);
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: rgba(101,78,163,0.16);
    line-height: 1;
    margin-bottom: 24px;
  }
}

/* removed */
/* removed */

/* -- DIFFERENCE: commercial distinction -- */
#difference .cap-grid { margin-top: 56px; }
#difference h2 { font-size: clamp(1.75rem, 3.2vw, 2.4rem); }

@media (min-width: 768px) {
  #difference .cap-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  #difference .cap-card {
    background: transparent;
    border: none;
    border-top: 1px solid rgba(191,155,222,0.08);
    border-right: 1px solid rgba(191,155,222,0.05);
    border-radius: 0;
    padding: 44px 52px 44px 0;
    transition: background 200ms;
  }
  #difference .cap-card:nth-child(even) { border-right: none; padding: 44px 0 44px 52px; }
  #difference .cap-card:nth-child(3),
  #difference .cap-card:nth-child(4) { padding-bottom: 0; }
  #difference .cap-card .vantage-line--card { display: none; }
  #difference .cap-card h3::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--violet-ultra), transparent);
    margin-bottom: 16px;
  }
  #difference .cap-card:hover { transform: none; box-shadow: none; background: rgba(22,26,34,0.35); }
}

#difference .cap-card h3 { font-size: 1.04rem; font-weight: 700; line-height: 1.3; margin-bottom: 14px; }
#difference .cap-card p { font-size: 0.92rem; line-height: 1.74; }

/* -- CTA elevation rules superseded by cta-lock canonical block -- */

/* -- Mobile safety overrides -- */
@media (max-width: 767px) {
  #why-fractional .reveal { padding-left: 0; border-left: none; }
  #why-fractional .reveal::before { display: none; }

  #how-it-works .cap-card::before { display: none; }

  #role-alignment .cap-card {
    background: var(--bg);
    border: 1px solid rgba(191,155,222,0.10);
    border-radius: var(--radius);
    padding: 22px 20px 26px;
  }
  #role-alignment .cap-card:hover {
    border-left-color: rgba(191,155,222,0.10);
    background: var(--bg);
  }

  #difference .cap-card {
    background: var(--bg);
    border: 1px solid rgba(191,155,222,0.10);
    border-radius: var(--radius);
    padding: 22px 20px 26px;
  }
  #difference .cap-card h3::before { display: none; }

  #leadership-coverage .cap-card { background: var(--bg); }
}

/* ═══════════════════════════════════════════════════════════
   HARDENING LAYER — 9.6+ Institutional Grade
   Surgical pass: Hero / Border reduction / Where It Fits / CTA
   ═══════════════════════════════════════════════════════════ */

/* ── 1. HERO HARDENING ─────────────────────────────────────── */

/* Stronger H1 scale and weight — more commanding, more monumental */
#hero h1 {
  font-size: clamp(3.2rem, 7.2vw, 5.4rem);
  line-height: 1.01;
  letter-spacing: -0.028em;
  font-weight: 700;
}

/* Left staging: widen the indent so the vertical rail has more space to breathe */
@media (min-width: 768px) {
  .hero-left {
    padding-left: 64px;
  }
  .vantage-line--hero {
    width: 4px;
    opacity: 0.85;
  }
}

/* Hero body text: fractionally smaller so H1 dominates harder */
#hero .hero-left > p {
  font-size: 1.02rem;
  max-width: 440px;
  line-height: 1.78;
  color: rgba(255,255,255,0.78);
  margin-bottom: 48px;
}

/* CTA block: more vertical space, primary CTA larger, link more deliberate */
.hero-cta { gap: 28px; margin-top: 4px; }

#hero .btn--primary {
  padding: 17px 40px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.hero-cta-link {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: rgba(160,167,180,0.55);
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(160,167,180,0.18);
  transition: color 200ms var(--ease), border-color 200ms var(--ease);
}
.hero-cta-link:hover {
  color: var(--text);
  border-color: rgba(191,155,222,0.30);
}

/* Hero right: replace decorative panel with high-value strategic instrument feel */
@media (min-width: 768px) {
  .hero-right {
    height: 400px;
    border-radius: 2px;
    box-shadow:
      inset 0 0 0 1px rgba(191,155,222,0.10),
      inset 0 0 0 2px rgba(15,17,21,0.7);
  }
}

/* Strengthen the ambient depth of hero-field */
.hero-field {
  background-image:
    radial-gradient(ellipse 90% 90% at 50% 50%, transparent 20%, rgba(15,17,21,0.72) 100%),
    radial-gradient(900px circle at 5% 95%, rgba(51,0,114,0.28), transparent 58%),
    radial-gradient(300px circle at 65% 25%, rgba(73,46,142,0.07), transparent 50%),
    linear-gradient(147deg, transparent 41.3%, rgba(191,155,222,0.12) 41.6%, transparent 41.9%),
    linear-gradient(147deg, transparent 42.0%, rgba(15,17,21,0.36) 42.3%, transparent 42.6%),
    repeating-linear-gradient(3deg, transparent, transparent 55px, rgba(191,155,222,0.022) 55px, rgba(191,155,222,0.022) 56px),
    repeating-linear-gradient(93deg, transparent, transparent 55px, rgba(101,78,163,0.016) 55px, rgba(101,78,163,0.016) 56px);
}

/* Strategic annotation overlay on hero-right — coordinate system reinforcement */
.hero-field::before {
  background:
    linear-gradient(rgba(191,155,222,0.16), rgba(191,155,222,0.16)) no-repeat 32% 0 / 1px 100%,
    linear-gradient(rgba(191,155,222,0.05), rgba(191,155,222,0.05)) no-repeat 32% 0 / 3px 100%,
    linear-gradient(rgba(191,155,222,0.14), rgba(191,155,222,0.14)) no-repeat 0 56% / 100% 1px,
    linear-gradient(rgba(191,155,222,0.04), rgba(191,155,222,0.04)) no-repeat 0 56% / 100% 3px,
    linear-gradient(rgba(101,78,163,0.09), rgba(101,78,163,0.09)) no-repeat 70% 0 / 1px 100%,
    linear-gradient(rgba(101,78,163,0.05), rgba(101,78,163,0.05)) no-repeat 0 28% / 100% 1px;
}

/* Hero section bottom transition — pulls next section up visually */
#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
}
#hero { position: relative; overflow: visible; }

/* ── 2. BORDER / BOX REDUCTION ─────────────────────────────── */
/* Roles secondary card legacy rules removed — system now uses .ps-* */

/* Cap cards in bg--surface sections: tighten the box border to near-invisible */
.bg--surface .cap-card {
  border-color: rgba(191,155,222,0.07);
  background: rgba(22,26,34,0.50);
}

/* Segment cards: strip the box border completely in base style, use implied structure */
.seg-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  overflow: visible;
}
.seg-card::before { display: none; }
.seg-card:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

/* ── 3. WHERE IT FITS — SIGNATURE SECTION ───────────────────── */

/* Structural redesign: drop grid, use curated vertical stacking */
#where-it-fits { background: var(--bg); }

#where-it-fits .seg-grid {
  display: block;
  margin-top: 72px;
}

/* Each card becomes a structured horizontal row */
#where-it-fits .seg-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0 48px;
  align-items: start;
  padding: 32px 0;
  border-top: 1px solid rgba(191,155,222,0.07);
  transition: background 180ms;
}

#where-it-fits .seg-card:last-child {
  border-bottom: 1px solid rgba(191,155,222,0.07);
}

#where-it-fits .seg-card:hover {
  background: transparent;
  transform: none;
  box-shadow: none;
}

/* Context identifier column: h3 left-aligned as a label */
#where-it-fits .seg-card h3 {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 0;
  padding-top: 2px;
  padding-right: 16px;
  border-right: 1px solid rgba(191,155,222,0.10);
}

/* Description column */
#where-it-fits .seg-card p {
  font-size: 0.90rem;
  line-height: 1.74;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  padding-left: 0;
}

#where-it-fits .seg-card p + p { margin-top: 10px; }

/* Mobile: revert to stacked single column */
@media (max-width: 767px) {
  #where-it-fits .seg-grid { margin-top: 48px; }
  #where-it-fits .seg-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }
  #where-it-fits .seg-card h3 {
    border-right: none;
    padding-right: 0;
    font-size: 0.92rem;
    color: var(--text);
  }
}

/* ── 4. CTA — superseded by final cta-close block below ─────── */

/* Form: demote visual weight, increase field spacing, executive refinement */
.cta-form-wrap {
  max-width: 100%;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(191,155,222,0.09);
}

.form-label {
  font-size: 0.66rem;
  letter-spacing: 0.10em;
  color: rgba(160,167,180,0.40);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(191,155,222,0.12);
  border-radius: 0;
  padding: 10px 0;
  font-size: 0.90rem;
  color: var(--text);
  transition: border-color 200ms var(--ease), box-shadow 200ms;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(191,155,222,0.34);
  box-shadow: none;
}

.form-textarea { min-height: 72px; padding: 10px 0; }

.form-group { margin-bottom: 28px; }

.form-submit {
  width: 100%;
  margin-top: 36px;
  padding: 18px 0;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  background: transparent;
  border: 1px solid rgba(191,155,222,0.22);
  color: var(--text);
  transition: background 220ms var(--ease), border-color 220ms var(--ease);
}

.form-submit:hover {
  background: rgba(101,78,163,0.10);
  border-color: rgba(191,155,222,0.38);
  box-shadow: none;
}

/* Footnote beneath submit — subtle confidentiality signal */
.cta-form-wrap::after {
  content: 'All submissions are reviewed directly. Responses within one business day.';
  display: block;
  font-size: 0.64rem;
  letter-spacing: 0.04em;
  color: rgba(160,167,180,0.25);
  margin-top: 20px;
  line-height: 1.6;
}

/* -- CTA exec/modal blocks superseded by final cta-centered block below -- */

/* =========================================================
   CTA — FINAL CENTERED EXECUTIVE COMPOSITION
   ========================================================= */

#cta {
  background: var(--bg);
  padding: 168px 0 160px;
  text-align: center;
}
#cta .wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.cta-centered {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#cta .vantage-line--cta {
  display: block;
  width: 66px;
  height: 4px;
  margin: 0 0 34px 0;
  transform: rotate(-3deg);
}
.cta-centered__eyebrow {
  margin: 0 0 44px 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(160,167,180,0.62);
}
#cta h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-align: center;
}
.cta-centered__body {
  margin: 36px auto 0;
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.82;
  color: rgba(255,255,255,0.78);
  text-align: center;
}
.cta-centered__button {
  margin-top: 44px;
  min-width: 260px;
  padding: 18px 30px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-align: center;
}
.cta-centered__meta {
  margin: 26px 0 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(160,167,180,0.58);
  text-align: center;
}
@media (max-width: 1023px) {
  #cta {
    padding: 132px 0 120px;
  }
  .cta-centered {
    max-width: 860px;
  }
  #cta h2 {
    max-width: 760px;
    font-size: clamp(3rem, 6.4vw, 4.4rem);
  }
  .cta-centered__body {
    max-width: 760px;
    margin-top: 34px;
    font-size: 1.02rem;
    line-height: 1.8;
  }
  .cta-centered__button {
    margin-top: 44px;
  }
}
@media (max-width: 767px) {
  #cta {
    padding: 96px 0 88px;
  }
  #cta .wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
  #cta .vantage-line--cta {
    width: 50px;
    height: 3px;
    margin-bottom: 24px;
  }
  .cta-centered__eyebrow {
    margin-bottom: 28px;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
  }
  #cta h2 {
    max-width: 100%;
    font-size: clamp(2.5rem, 11.5vw, 3.8rem);
    line-height: 1.0;
    letter-spacing: -0.045em;
  }
  .cta-centered__body {
    max-width: 100%;
    margin-top: 26px;
    font-size: 0.98rem;
    line-height: 1.74;
  }
  .cta-centered__button {
    width: 100%;
    min-width: 0;
    margin-top: 34px;
    padding: 18px 24px;
  }
  .cta-centered__meta {
    margin-top: 18px;
    font-size: 0.74rem;
  }
}
/* ═══════════════════════════════════════════════════════════
   VISUAL HIERARCHY SWEEP — Institutional Authority Pass
   ═══════════════════════════════════════════════════════════ */

/* ── A. CATEGORY INTRO ──────────────────────────────────────── */

#category-intro .wrap { max-width: 820px; }

/* Hide the decorative h2 vantage line — text-led chapter only */
#category-intro h2 .vantage-line--h2 { display: none; }

#category-intro h2 {
  margin-bottom: 32px;
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  letter-spacing: -0.016em;
}

#category-intro p {
  max-width: 700px;
  line-height: 1.84;
  font-size: 1.06rem;
}

/* ── B. WHY FRACTIONAL — tighter memo feel ──────────────────── */

/* #why-fractional .wrap — overridden by canonical wf block */

@media (min-width: 768px) {
  #why-fractional .reveal {
    padding-left: 32px;
    border-left: 2px solid rgba(191,155,222,0.11);
  }
  #why-fractional .reveal::before {
    height: 44px;
  }
}

/* #why-fractional h2 — overridden by canonical wf block */
/* #why-fractional p — overridden by canonical wf block */

/* ── C. LEADERSHIP COVERAGE — tighter internal contrast ─────── */

#leadership-coverage .cap-card h3 {
  font-size: 0.91rem;
  font-weight: 700;
  letter-spacing: 0.002em;
  color: var(--text);
}

#leadership-coverage .outcome {
  font-size: 0.72rem;
  color: rgba(191,155,222,0.44);
  letter-spacing: 0.03em;
}

#leadership-coverage .cap-card p {
  font-size: 0.88rem;
  line-height: 1.68;
}

/* ── D. ROLES — legacy asymmetric layout removed; system now uses .ps-* ─ */

/* ── E. VCAIO — premium list feel ───────────────────────────── */

#vcaio .wrap { max-width: 700px; }

#vcaio .benefits-list li {
  padding: 14px 0 14px 24px;
  font-size: 0.95rem;
  line-height: 1.64;
  border-bottom-color: rgba(191,155,222,0.05);
}

#vcaio .benefits-outro {
  margin-top: 40px;
  padding-top: 32px;
  border-top-color: rgba(191,155,222,0.08);
  font-size: 1rem;
  line-height: 1.74;
  max-width: 580px;
}

/* ── F. ROLE ALIGNMENT — selection logic, not boxes ─────────── */

@media (min-width: 768px) {
  #role-alignment .cap-grid { margin-top: 44px; }

  #role-alignment .cap-card {
    border-left-color: rgba(191,155,222,0.09);
    border-bottom-color: rgba(191,155,222,0.06);
    padding: 24px 28px 24px 24px;
    background: transparent;
  }

  #role-alignment .cap-card:nth-child(2),
  #role-alignment .cap-card:nth-child(4) {
    border-left-color: rgba(191,155,222,0.05);
  }

  #role-alignment .cap-card:hover {
    border-left-color: rgba(191,155,222,0.28);
    background: transparent;
  }
}

#role-alignment .cap-card h3 {
  font-size: 0.91rem;
  font-weight: 700;
  line-height: 1.36;
  margin-bottom: 10px;
  color: var(--text);
}

#role-alignment .cap-card p {
  font-size: 0.84rem;
  line-height: 1.66;
  color: rgba(255,255,255,0.78);
}

/* ── G. WHERE IT FITS — sharper label/description contrast ───── */

#where-it-fits .seg-grid { margin-top: 60px; }

#where-it-fits .seg-card {
  padding: 28px 0;
  border-top-color: rgba(191,155,222,0.08);
}

#where-it-fits .seg-card:last-child {
  border-bottom-color: rgba(191,155,222,0.08);
}

#where-it-fits .seg-card h3 {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.005em;
  padding-right: 24px;
  border-right-color: rgba(191,155,222,0.09);
}

#where-it-fits .seg-card p {
  font-size: 0.88rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.78);
}

/* ── H. HOW IT WORKS — sharper step numbers, sequential feel ─── */

@media (min-width: 768px) {
  #how-it-works .cap-card::before {
    font-size: 3rem;
    color: rgba(101,78,163,0.12);
    margin-bottom: 20px;
    letter-spacing: -0.06em;
  }

  #how-it-works .cap-card {
    border-top-color: rgba(191,155,222,0.08);
    border-right-color: rgba(191,155,222,0.05);
  }

  #how-it-works .cap-card:hover { background: transparent; }
}

#how-it-works .cap-card h3 {
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 10px;
}

#how-it-works .cap-card p {
  font-size: 0.90rem;
  line-height: 1.70;
  color: rgba(255,255,255,0.78);
}

/* ── I. DIFFERENCE — commercial close, not feature grid ───────── */

@media (min-width: 768px) {
  #difference .cap-card {
    border-top-color: rgba(191,155,222,0.07);
    border-right-color: rgba(191,155,222,0.04);
    padding: 48px 56px 48px 0;
  }

  #difference .cap-card:nth-child(even) { padding: 48px 0 48px 56px; }

  #difference .cap-card h3::before {
    width: 24px;
    height: 1px;
    background: rgba(191,155,222,0.35);
    margin-bottom: 20px;
  }
}

#difference h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  letter-spacing: -0.018em;
}

#difference .cap-card h3 {
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.26;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

#difference .cap-card p {
  font-size: 0.90rem;
  line-height: 1.76;
  color: rgba(255,255,255,0.78);
}

/* ── Mobile resets for Roles two-column layout — removed; system now uses .ps-* ── */
/* ═══════════════════════════════════════════════════════════
   EXECUTIVE HIERARCHY UPGRADE — 9.6 Authority Pass
   ═══════════════════════════════════════════════════════════ */

/* ── MICRO-TYPOGRAPHY GLOBAL ─────────────────────────────── */

p { max-width: 600px; }

p + p { margin-top: 14px; }

.overline { letter-spacing: 0.20em; }

/* ── SECTION LEAD — first-paragraph weight lift ─────────── */

.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-family: var(--font-brand);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.020em;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 20px;
}

.section-intro--about {
  max-width: 680px;
  margin-bottom: 48px;
}

.tier--light .section-eyebrow { color: var(--accent-primary, #654EA3); }
.tier--light .section-title   { color: #111318; }

.section-lead {
  font-size: 1.14rem;
  line-height: 1.78;
  color: var(--text);
  max-width: 560px;
}

/* Secondary paragraphs in lead sections quieter */
#category-intro .reveal p:not(.section-lead),
/* removed — #why-fractional .reveal p:not(.section-lead) */
#difference .reveal p:not(.section-lead) {
  font-size: 0.96rem;
  line-height: 1.76;
  color: rgba(255,255,255,0.78);
}

/* ── HERO RIGHT PANEL — system annotations ───────────────── */

.field-annotation {
  position: absolute;
  font-family: var(--font-brand);
  font-size: 0.52rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(191,155,222,0.22);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.field-annotation--a { top: 22%; left: 24%; }
.field-annotation--b { top: 54%; left: 38%; }
.field-annotation--c { top: 76%; left: 18%; }

/* ── VCAIO LABEL — primary engagement signal ─────────────── */

.vcaio-label {
  display: block;
  font-family: var(--font-brand);
  font-size: 0.60rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(191,155,222,0.46);
  margin-bottom: 14px;
}

/* ── CATEGORY INTRO overrides ────────────────────────────── */

#category-intro .wrap { max-width: 820px; }
#category-intro p { max-width: 700px; }

/* ── WHY FRACTIONAL overrides ────────────────────────────── */

#why-fractional .wrap { max-width: 640px; }
/* #why-fractional p — overridden by canonical wf block */

/* ── DIFFERENCE section-lead width ───────────────────────── */

#difference .section-lead { max-width: 620px; }
/* ── PRODUCT-LED ROLES equal grid CSS removed — system now uses .ps-* ─── */

/* ── Role Detail CSS removed — product content now lives in .ps-* selector system ── */
/* ═══════════════════════════════════════════════════════════
   PRODUCT SELECTOR — PREMIUM ROLE NAVIGATION SYSTEM
   ═══════════════════════════════════════════════════════════ */

/* Section layout */
#roles { padding: 96px 0 56px; }
@media (min-width: 768px) { #roles { padding: 128px 0 72px; } }

.ps-header {
  max-width: 680px;
  margin-bottom: 64px;
}
.ps-header h2 { margin-bottom: 20px; }
.ps-header p { font-size: 1rem; line-height: 1.74; color: rgba(255,255,255,0.78); max-width: 560px; }

/* ── DESKTOP SHELL ─────────────────────────────────────── */
.ps-shell {
  display: none;
}
@media (min-width: 768px) {
  .ps-shell {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    border: 1px solid rgba(191,155,222,0.10);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg);
  }
}
@media (min-width: 1024px) {
  .ps-shell { grid-template-columns: 320px 1fr; }
}

/* ── PRODUCT RAIL ──────────────────────────────────────── */
.ps-rail {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(191,155,222,0.09);
  background: rgba(22,26,34,0.6);
}

.ps-rail__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 16px 24px 16px 28px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(191,155,222,0.07);
  cursor: pointer;
  text-align: left;
  transition: background 160ms var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.ps-rail__item:last-child { border-bottom: none; }

.ps-rail__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: background 160ms var(--ease);
}

.ps-rail__item:hover {
  background: rgba(101,78,163,0.04);
}

.ps-rail__item--active,
.ps-rail__item[aria-selected="true"] {
  background: rgba(101,78,163,0.07);
}

.ps-rail__item--active::before,
.ps-rail__item[aria-selected="true"]::before {
  background: linear-gradient(180deg, rgba(101,78,163,0.72), rgba(73,46,142,0.72));
  width: 2px;
}

.ps-rail__name {
  display: block;
  font-family: var(--font-brand);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
  color: rgba(255,255,255,0.72);
  letter-spacing: -0.005em;
  transition: color 160ms;
}

.ps-rail__item--active .ps-rail__name,
.ps-rail__item[aria-selected="true"] .ps-rail__name {
  color: var(--text);
}

.ps-rail__item:hover .ps-rail__name { color: var(--text); }

.ps-rail__tag {
  display: inline-block;
  margin-top: 3px;
  font-family: var(--font-brand);
  font-size: 0.60rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(191,155,222,0.36);
  transition: color 160ms;
}

.ps-rail__item--active .ps-rail__tag,
.ps-rail__item[aria-selected="true"] .ps-rail__tag {
  color: rgba(191,155,222,0.68);
}

.ps-rail__desc {
  display: block;
  margin-top: 4px;
  font-size: 0.74rem;
  line-height: 1.5;
  color: rgba(160,167,180,0.42);
  transition: color 160ms;
}

.ps-rail__item--active .ps-rail__desc,
.ps-rail__item[aria-selected="true"] .ps-rail__desc {
  color: rgba(160,167,180,0.62);
}

/* ── PRODUCT PANELS ────────────────────────────────────── */
.ps-panels {
  position: relative;
  background: var(--surface);
  min-height: 520px;
}

.ps-panel {
  display: none;
  padding: 44px 48px 48px;
  height: 100%;
}

.ps-panel--active { display: flex; flex-direction: column; }

.ps-panel__eyebrow {
  font-family: var(--font-brand);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(191,155,222,0.44);
  margin: 0 0 16px 0;
  max-width: none;
}

.ps-panel__title {
  font-family: var(--font-brand);
  font-size: clamp(1.2rem, 2.1vw, 1.52rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.022em;
  color: var(--text);
  margin-bottom: 12px;
  max-width: 480px;
}

.ps-panel__abbr {
  font-weight: 500;
  color: rgba(191,155,222,0.62);
  font-size: 0.88em;
}

.ps-panel__lead {
  font-size: 0.96rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  max-width: 480px;
  margin-bottom: 32px;
}

.ps-panel__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(191,155,222,0.07);
  flex: 1;
}

.ps-panel__col-label {
  font-family: var(--font-brand);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
  max-width: none;
}

.ps-panel__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ps-panel__list li {
  position: relative;
  padding-left: 16px;
  font-size: 0.86rem;
  line-height: 1.62;
  color: rgba(255,255,255,0.78);
}

.ps-panel__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 1px;
  background: rgba(191,155,222,0.38);
}

.ps-panel__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(191,155,222,0.07);
}

.ps-panel__cta {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  padding: 14px 26px;
}

/* ── MOBILE ACCORDION ──────────────────────────────────── */
.ps-accordion { display: flex; flex-direction: column; }

@media (min-width: 768px) { .ps-accordion { display: none; } }

.ps-acc__item {
  border-top: 1px solid rgba(191,155,222,0.09);
}
.ps-acc__item:last-child { border-bottom: 1px solid rgba(191,155,222,0.09); }

.ps-acc__trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 20px;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0 8px;
  padding: 20px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}

.ps-acc__name {
  grid-column: 1;
  grid-row: 1;
  font-family: var(--font-brand);
  font-size: 0.90rem;
  font-weight: 700;
  color: rgba(255,255,255,0.78);
  line-height: 1.3;
  letter-spacing: -0.005em;
}

.ps-acc__item--open .ps-acc__name,
.ps-acc__trigger[aria-expanded="true"] .ps-acc__name { color: var(--text); }

.ps-acc__tag {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(191,155,222,0.44);
  vertical-align: middle;
}

.ps-acc__item--open .ps-acc__tag,
.ps-acc__trigger[aria-expanded="true"] .ps-acc__tag { color: rgba(191,155,222,0.68); }

.ps-acc__desc {
  grid-column: 1;
  grid-row: 2;
  font-size: 0.76rem;
  color: rgba(160,167,180,0.44);
  margin-top: 4px;
}

.ps-acc__chevron {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  width: 14px;
  height: 14px;
  position: relative;
  flex-shrink: 0;
}

.ps-acc__chevron::before,
.ps-acc__chevron::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 1.5px;
  background: rgba(191,155,222,0.40);
  transition: transform 220ms var(--ease), opacity 180ms;
}

.ps-acc__chevron::before { transform: translateY(-50%) rotate(45deg); transform-origin: right center; }
.ps-acc__chevron::after  { transform: translateY(-50%) rotate(-45deg); transform-origin: right center; }

.ps-acc__trigger[aria-expanded="true"] .ps-acc__chevron::before { transform: translateY(-50%) rotate(-45deg); }
.ps-acc__trigger[aria-expanded="true"] .ps-acc__chevron::after  { transform: translateY(-50%) rotate(45deg); }

.ps-acc__body {
  padding: 4px 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ps-acc__lead {
  font-size: 0.92rem;
  line-height: 1.74;
  color: rgba(255,255,255,0.78);
  max-width: 100%;
}

.ps-acc__col-label {
  font-family: var(--font-brand);
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(160,167,180,0.40);
  margin-bottom: -6px;
  max-width: none;
}

.ps-acc__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ps-acc__list li {
  position: relative;
  padding-left: 16px;
  font-size: 0.86rem;
  line-height: 1.60;
  color: rgba(255,255,255,0.78);
}

.ps-acc__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 1px;
  background: rgba(191,155,222,0.34);
}

.ps-acc__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 8px;
}

.ps-acc__cta {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-align: center;
}
/* ═══════════════════════════════════════════════════════════
   FAQ — PREMIUM ACCORDION
   ═══════════════════════════════════════════════════════════ */

#faq .wrap { max-width: 820px; }
#faq h2 { max-width: 700px; margin-bottom: 24px; }
#faq > .wrap > .reveal > p { max-width: 620px; }

.faq-list {
  margin-top: 56px;
  border-top: 1px solid rgba(191,155,222,0.09);
}

.faq-item {
  border-top: 1px solid rgba(191,155,222,0.07);
  cursor: pointer;
}

.faq-item__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  margin: 6px 0;
  border-radius: 6px;
  transition: background 160ms ease;
}

.faq-item:hover .faq-item__inner {
  background: rgba(230,232,235,0.04);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}

.faq-trigger__text {
  font-family: var(--font-brand);
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.008em;
  color: rgba(230,232,235,0.80);
  transition: color 160ms var(--ease);
}

.faq-trigger[aria-expanded="true"] .faq-trigger__text { color: var(--text); }
.faq-trigger:hover .faq-trigger__text { color: var(--text); }

/* Down chevron — SVG stroke-based */
.faq-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: rgba(191,155,222,0.55);
  transition: transform 180ms ease, stroke 160ms ease;
  transform: rotate(0deg);
}

.faq-item:hover .faq-arrow {
  stroke: rgba(191,155,222,0.85);
}

.faq-trigger[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
  stroke: var(--accent-primary);
}

.faq-body {
  padding: 0 20px 24px;
}

.faq-body p {
  font-size: 0.94rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.78);
  max-width: 680px;
}
/* ── HERO: spacing + width correction ──────────────────── */
.hero-left {
  max-width: 720px;
}
.hero-left h1 {
  margin-bottom: 16px;
}
.hero-left > p {
  margin-bottom: 24px;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-secondary {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 200ms var(--ease), color 200ms var(--ease);
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
/* WHY FRACTIONAL — COMPLETE RESET */

#why-fractional {
  padding: 132px 0 140px;
  background: var(--bg-light);
}
#why-fractional .wrap {
  max-width: 1160px;
}
#why-fractional .wf-inner {
  max-width: none;
  padding-left: 0;
  border-left: none;
  position: relative;
}
#why-fractional .wf-inner::before {
  display: none;
}
#why-fractional .wf-headline {
  max-width: 760px;
  margin: 0 0 56px 0;
  font-family: var(--font-brand);
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #111318;
}
#why-fractional .wf-headline .vantage-line--h2 {
  display: block;
  width: 54px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--accent-primary), rgba(110,86,207,0.22));
}
#why-fractional .wf-tension {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
  row-gap: 0;
  align-items: start;
  margin: 0 0 44px 0;
}
#why-fractional .wf-tension__item {
  padding: 0 32px 0 0;
  border-right: 1px solid rgba(17,19,24,0.08);
}
#why-fractional .wf-tension__item:last-child {
  padding: 0 0 0 32px;
  border-right: none;
}
#why-fractional .wf-tension__item p {
  margin: 0;
  max-width: 420px;
  font-size: 1rem;
  line-height: 1.72;
  color: #5B6472;
}
#why-fractional .wf-decisive {
  max-width: 760px;
  margin: 0 0 40px 0;
}
#why-fractional .wf-decisive p {
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(1.18rem, 1.8vw, 1.42rem);
  line-height: 1.48;
  letter-spacing: -0.018em;
  font-weight: 600;
  color: #111318;
}
#why-fractional .wf-resolution {
  max-width: 820px;
  margin: 0 0 22px 0;
  padding-left: 22px;
  border-left: 2px solid var(--accent-primary);
}
#why-fractional .wf-resolution p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.82;
  font-weight: 500;
  color: #1F2937;
}
#why-fractional .wf-outcome {
  margin: 0 0 0 24px;
  max-width: 560px;
  font-size: 0.95rem;
  line-height: 1.72;
  color: #6B7280;
}
@media (max-width: 767px) {
  #why-fractional {
    padding: 88px 0 96px;
  }
  #why-fractional .wf-headline {
    margin-bottom: 40px;
    font-size: clamp(1.9rem, 10vw, 2.5rem);
    line-height: 1.08;
  }
  #why-fractional .wf-tension {
    grid-template-columns: 1fr;
    row-gap: 24px;
    margin-bottom: 32px;
  }
  #why-fractional .wf-tension__item {
    padding: 0;
    border-right: none;
  }
  #why-fractional .wf-tension__item:last-child {
    padding: 0;
  }
  #why-fractional .wf-tension__item p {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.7;
  }
  #why-fractional .wf-decisive {
    margin-bottom: 28px;
  }
  #why-fractional .wf-decisive p {
    font-size: 1.12rem;
    line-height: 1.5;
  }
  #why-fractional .wf-resolution {
    padding-left: 18px;
    margin-bottom: 18px;
  }
  #why-fractional .wf-resolution p {
    font-size: 0.98rem;
    line-height: 1.76;
  }
  #why-fractional .wf-outcome {
    margin-left: 20px;
    max-width: 100%;
    font-size: 0.92rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   DESIGN SYSTEM — BACKGROUND TIERS + LIGHT SECTION RULES
   ═══════════════════════════════════════════════════════════ */

/* Dark tier (default) */
body { background: var(--bg); }

.tier--neutral {
  background: var(--bg-neutral);
}

/* Light tier */
.tier--light {
  background: var(--bg-light);
  color: var(--text-on-light);
}

.tier--light h1,
.tier--light h2,
.tier--light h3 {
  color: var(--text-on-light);
}

.tier--light p,
.tier--light li {
  color: #374151;
}

.tier--light .overline,
.tier--light .section-lead {
  color: var(--text-on-light);
}

.tier--light .section-lead {
  color: #1F2937;
}

/* Light section: remove dark glow/gradient effects */
/* tier--light legacy wf rules neutralised — handled by canonical #why-fractional block */

/* Light section: cap-cards */
.tier--light .cap-card {
  background: #fff;
  border-color: rgba(0,0,0,0.08);
}

.tier--light .cap-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}

.tier--light .cap-card h3 {
  color: #111318;
}

.tier--light .cap-card .outcome {
  color: var(--accent-primary);
}

.tier--light .cap-card p {
  color: #4B5563;
}

/* Light section: seg-cards */
.tier--light .seg-card h3 { color: #111318; }
.tier--light .seg-card p { color: #374151; }

/* Light section: vantage lines */
.tier--light .vantage-line--h2 {
  background: linear-gradient(90deg, var(--accent-primary), rgba(110,86,207,0.3));
}

/* Light section: overline label */
.tier--light .overline { color: var(--accent-primary); }

/* Light section: FAQ */
.tier--light .faq-trigger__text { color: #1F2937; }
.tier--light .faq-trigger[aria-expanded="true"] .faq-trigger__text { color: #111318; }
.tier--light .faq-trigger:hover .faq-trigger__text { color: #111318; }
.tier--light .faq-item { border-top-color: rgba(0,0,0,0.08); }
.tier--light .faq-item:hover .faq-item__inner { background: rgba(17,19,24,0.03); }
.tier--light .faq-list { border-top-color: rgba(0,0,0,0.08); }
.tier--light .faq-arrow { stroke: rgba(0,0,0,0.30); }
.tier--light .faq-item:hover .faq-arrow { stroke: rgba(0,0,0,0.60); }
.tier--light .faq-trigger[aria-expanded="true"] .faq-arrow { stroke: var(--accent-primary); }
.tier--light .faq-body p { color: #374151; }

/* Light section: about */
.tier--light .section-lead { color: #111318; }

/* ── SECTION VERTICAL SPACING SYSTEM ─────────────────────── */

section {
  padding-top: 96px;
  padding-bottom: 96px;
}

@media (max-width: 1023px) {
  section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

@media (max-width: 767px) {
  section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

/* Hero retains its own larger padding */
#hero {
  padding-top: 120px;
  padding-bottom: 96px;
}

@media (min-width: 768px) {
  #hero {
    padding-top: 160px;
    padding-bottom: 120px;
  }
}

/* Chapter breaks: increase separation between tiers */
.chapter-break {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.tier--light.chapter-break,
.tier--light + .chapter-break {
  border-top-color: rgba(0,0,0,0.06);
}
/* ── HOW IT WORKS: T2 Process Sequence ──────────────────── */

#how-it-works {
  padding: 96px 0 136px;
}

.hiw-inner {
  max-width: 760px;
  margin-bottom: 64px;
}

.hiw-headline {
  font-family: var(--font-brand);
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--text-primary);
}

#how-it-works .vantage-line--h2 {
  background: linear-gradient(90deg, var(--accent-primary), rgba(110,86,207,0.22));
}

.hiw-intro {
  font-size: 1.02rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.78);
  max-width: 680px;
}

/* Sequence */
.hiw-sequence {
  list-style: none;
  max-width: 900px;
  /* no border-top — first step carries its own border-top */
}

.hiw-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 24px;
  padding: 48px 0;
  border-top: 1px solid rgba(230,232,235,0.08);
  align-items: start;
}

.hiw-step__num {
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(160,167,180,0.32);
  padding-top: 4px;
  line-height: 1;
}

.hiw-step__heading {
  font-family: var(--font-brand);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 14px;
  max-width: 520px;
}

.hiw-step__body {
  font-size: 0.93rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.78);
  max-width: 620px;
}

@media (max-width: 767px) {
  #how-it-works {
    padding: 72px 0 88px;
  }
  .hiw-inner {
    margin-bottom: 40px;
  }
  .hiw-step {
    grid-template-columns: 32px 1fr;
    column-gap: 20px;
    padding: 36px 0;
  }
  .hiw-step__body {
    max-width: 100%;
  }
}
/* ── MODEL TRANSITION DIVIDER ────────────────────────────── */

#model-transition-cta {
  padding: 0;
}

.mtc-divider {
  width: 100%;
  border-top: 1px solid rgba(230,232,235,0.07);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 0 10px;
}

.mtc-divider__button {
  min-width: 208px;
  padding: 14px 24px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  border-radius: 6px;
  text-align: center;
}

@media (max-width: 767px) {
  #model-transition-cta {
    padding: 0;
  }
  .mtc-divider {
    padding: 12px 0 8px;
  }
}
/* ── WHERE IT FITS: T2 Operating Context Table ──────────── */

#where-it-fits {
  padding: 48px 0 96px;
}

.wif-header {
  max-width: 760px;
  margin-bottom: 36px;
}

.wif-overline {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(160,167,180,0.38);
  margin: 0 0 20px 0;
}

.wif-intro {
  font-size: 1.02rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.78);
  max-width: 680px;
}

/* Table */
/* Fix 1: row dividers more distinct */
.wif-table {
  border-top: 1px solid rgba(230,232,235,0.11);
}

.wif-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(230,232,235,0.11);
  transition: background 180ms ease;
}

/* Fix 4: barely-perceptible hover */
.wif-row:hover {
  background: rgba(230,232,235,0.004);
}

@media (min-width: 768px) {
  .wif-row {
    grid-template-columns: 260px 1fr;
    gap: 0;
    column-gap: 0;
    align-items: start;
  }
}

/* Fix 2: label as strong index anchor */
.wif-label {
  font-family: var(--font-brand);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: rgba(230,232,235,0.88);
}

/* Fix 3: vertical divider more visible */
@media (min-width: 768px) {
  .wif-label {
    padding-right: 48px;
    border-right: 1px solid rgba(230,232,235,0.13);
    padding-top: 2px;
  }
  .wif-body {
    padding-left: 48px;
  }
}

.wif-body {
  font-size: 0.91rem;
  line-height: 1.76;
  color: rgba(255,255,255,0.78);
  max-width: 620px;
}

@media (max-width: 767px) {
  #where-it-fits {
    padding: 40px 0 72px;
  }
  .wif-header {
    margin-bottom: 28px;
  }
  .wif-row {
    padding: 24px 0;
  }
}
/* ── ABOUT INFERVANTAGE: Collectivism abt-* pattern ──────── */

#about-infervantage {
  padding: 96px 0 112px;
}

/* Platform wrapper */
.abt-platform {
  max-width: 1060px;
}

/* Section eyebrow inside panel */
.abt-panel-eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 14px;
}

/* ── Tab rail ─────────────────────────────────────────────── */
.abt-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(17,19,24,0.10);
  margin-bottom: 48px;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.abt-tabs::-webkit-scrollbar { display: none; }

.abt-tab {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9CA3AF;
  background: transparent;
  border: none;
  padding: 0 0 18px 0;
  margin-right: 36px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: color 140ms;
  -webkit-tap-highlight-color: transparent;
}
.abt-tab:last-child { margin-right: 0; }
.abt-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-primary);
  opacity: 0;
  transition: opacity 140ms;
}
.abt-tab:hover { color: #374151; }
.abt-tab[aria-selected="true"] { color: #111318; }
.abt-tab[aria-selected="true"]::after { opacity: 1; }
.abt-tab:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ── Desktop panels ───────────────────────────────────────── */
.abt-panels { min-height: 300px; }

.abt-panel { display: none; }
.abt-panel.is-active { display: block; }

/* ── Shared panel text ────────────────────────────────────── */
.abt-leadership-intro {
  font-size: 1.02rem;
  line-height: 1.78;
  color: #374151;
  max-width: 720px;
  margin-bottom: 36px;
}

/* ── Culture grid (Practice panel) ────────────────────────── */
.abt-culture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.abt-culture-narrative p {
  font-size: 1.01rem;
  line-height: 1.80;
  color: #374151;
  margin-bottom: 16px;
}

.abt-principles {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.abt-principle {
  padding: 20px 0;
  border-bottom: 1px solid rgba(17,19,24,0.07);
}
.abt-principle:first-child { border-top: 1px solid rgba(17,19,24,0.07); }

.abt-principle__title {
  display: block;
  font-family: var(--font-brand);
  font-size: 0.90rem;
  font-weight: 700;
  letter-spacing: -0.008em;
  color: #111318;
  margin-bottom: 6px;
}
.abt-principle p {
  font-size: 0.91rem;
  line-height: 1.70;
  color: #4B5563;
  margin: 0;
}

/* ── Leads grid (Leadership panel) ───────────────────────── */
/* ── Leads grid (Leadership panel) ───────────────────────── */
.abt-leads-grid {
  display: grid;
  grid-template-columns: minmax(0, 620px);
  gap: 40px;
  align-items: start;
}

/* Collectivism canon: border-top rule, no box */
.abt-lead {
  border-top: 2px solid rgba(101,78,163,0.42);
  padding-top: 22px;
  background: transparent;
}

.abt-lead__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

/* Collectivism canon: 72px circle, slight desaturation */
img.abt-lead__avatar,
.abt-lead__avatar {
  flex-shrink: 0;
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(101,78,163,0.06);
  filter: saturate(0.88) opacity(0.92);
}

/* iv-lead-card__avatar — same sizing, explicit selector for specificity */
.iv-lead-card__avatar {
  flex-shrink: 0;
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(101,78,163,0.06);
  filter: saturate(0.88) opacity(0.92);
}

.abt-lead__identity {
  flex: 1;
  min-width: 0;
}

.abt-lead__name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.abt-lead__name {
  font-family: var(--font-brand);
  font-size: 1.10rem;
  font-weight: 700;
  color: #111318;
  margin: 0;
  letter-spacing: -0.01em;
}

/* Collectivism canon: uppercase, accent, muted opacity */
.abt-lead__role {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #654EA3;
  opacity: 0.82;
  margin-bottom: 16px;
}

/* Collectivism canon contact button: violet-tinted ring */
.abt-lead__contact-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: none;
  border: 1px solid rgba(101,78,163,0.28);
  border-radius: 50%;
  cursor: pointer;
  color: #654EA3;
  opacity: 0.60;
  transition: opacity 160ms, border-color 160ms, background 160ms;
  padding: 0;
}
.abt-lead__contact-btn:hover {
  opacity: 1;
  border-color: #654EA3;
  background: rgba(101,78,163,0.07);
}
.abt-lead__contact-btn svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Collectivism canon bio */
.abt-lead__bio {
  font-size: 0.86rem;
  line-height: 1.70;
  color: #374151;
  margin: 0 0 18px;
}

/* Collectivism canon focus label: very small, muted */
.abt-lead__focus-label {
  display: block;
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9CA3AF;
  opacity: 0.72;
  margin-bottom: 10px;
}

.abt-lead__focus-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* Collectivism canon tag: neutral tint, no violet fill */
.abt-focus-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  color: #374151;
  background: rgba(17,19,24,0.04);
  border: 1px solid rgba(17,19,24,0.09);
  border-radius: 3px;
  padding: 3px 10px;
  white-space: nowrap;
}

/* ── Domains (Values / Impact panels) ──────────────────────── */
.abt-domains {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(17,19,24,0.08);
}

.abt-domain {
  padding: 24px 24px 24px 0;
  border-bottom: 1px solid rgba(17,19,24,0.07);
  border-right: 1px solid rgba(17,19,24,0.07);
}

.abt-domain:nth-child(even) {
  padding-left: 24px;
  padding-right: 0;
  border-right: none;
}

.abt-domain__title {
  display: block;
  font-family: var(--font-brand);
  font-size: 0.90rem;
  font-weight: 700;
  letter-spacing: -0.008em;
  color: #111318;
  margin-bottom: 8px;
}

.abt-domain p {
  font-size: 0.91rem;
  line-height: 1.72;
  color: #4B5563;
  margin: 0;
}

/* ── Commitments ────────────────────────────────────────────── */
.abt-commitments {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
}

.abt-commitment {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  padding: 22px 0;
  border-bottom: 1px solid rgba(17,19,24,0.07);
  align-items: start;
}
.abt-commitments .abt-commitment:first-child { border-top: 1px solid rgba(17,19,24,0.07); }

.abt-commitment__title {
  font-family: var(--font-brand);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.008em;
  color: #111318;
  padding-right: 32px;
  padding-top: 2px;
  border-right: 1px solid rgba(17,19,24,0.08);
}

.abt-commitment p {
  font-size: 0.91rem;
  line-height: 1.72;
  color: #374151;
  padding-left: 32px;
  margin: 0;
}

/* ── Governance tags ────────────────────────────────────────── */
.abt-gov-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

/* ── Partner groups (Governance panel) ─────────────────────── */
.abt-partner-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(17,19,24,0.08);
}

.abt-partner-group {
  padding: 24px 24px 24px 0;
  border-bottom: 1px solid rgba(17,19,24,0.07);
  border-right: 1px solid rgba(17,19,24,0.07);
}

.abt-partner-group:nth-child(even) {
  padding-left: 24px;
  padding-right: 0;
  border-right: none;
}

.abt-partner-group__label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9CA3AF;
  margin-bottom: 12px;
}

.abt-partner__name {
  display: block;
  font-family: var(--font-brand);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.008em;
  color: #111318;
  margin-bottom: 6px;
}

.abt-partner__desc {
  font-size: 0.88rem;
  line-height: 1.68;
  color: #4B5563;
  margin: 0;
}

/* ── Mobile accordion (hidden on desktop) ──────────────────── */
.abt-mobile-accordion { display: none; }

.abt-mob-tab {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(17,19,24,0.09);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #374151;
  cursor: pointer;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}
.abt-mob-tab[aria-expanded="true"] { color: #111318; }

.abt-mob-tab__chevron {
  font-size: 0.7rem;
  color: var(--accent-primary);
  transition: transform 200ms;
  display: inline-block;
}
.abt-mob-tab[aria-expanded="true"] .abt-mob-tab__chevron {
  transform: rotate(180deg);
}
.abt-mob-tab__chevron::before { content: "▼"; }

.abt-mob-panel { display: none; padding: 24px 0 8px; }
.abt-mob-panel.is-open { display: block; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 767px) {
  #about-infervantage { padding: 72px 0 80px; }
  .abt-tabs, .abt-panels { display: none; }
  .abt-mobile-accordion { display: block; }
  .abt-culture-grid { grid-template-columns: 1fr; gap: 28px; }
  .abt-domains { grid-template-columns: 1fr; }
  .abt-domain { padding: 20px 0; border-right: none; }
  .abt-domain:nth-child(even) { padding-left: 0; }
  .abt-commitment { grid-template-columns: 1fr; gap: 8px; }
  .abt-commitment__title { border-right: none; padding-right: 0; }
  .abt-commitment p { padding-left: 0; }
  .abt-partner-groups { grid-template-columns: 1fr; }
  .abt-partner-group { padding: 20px 0; border-right: none; }
  .abt-partner-group:nth-child(even) { padding-left: 0; }
}
/* ── LEADERSHIP / IMPACT / TAG HARDENING ─────────────── */

.abt-lead__bio {
  max-width: 56ch;
}

#abt-panel-impact .abt-domains {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

#abt-panel-impact .abt-domain {
  min-height: 100%;
}

@media (max-width: 767px) {
  .abt-focus-tag {
    font-size: 0.66rem;
    padding: 4px 8px;
  }
}

/* ── FIELD HINT ──────────────────────────────────────────── */
.form-field-hint {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  opacity: 0.55;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

/* ── MODAL CHECKBOX GROUPS ───────────────────────────────── */
.checkbox-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .checkbox-group {
    grid-template-columns: 1fr 1fr;
    gap: 12px 28px;
  }
}
.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.90rem;
  color: rgba(230,232,235,0.80);
  line-height: 1.4;
  transition: color 140ms;
}
.checkbox-item:hover { color: var(--text); }
.checkbox-item input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent-primary);
  width: 15px; height: 15px;
  cursor: pointer;
}
select.form-input { cursor: pointer; }
select.form-input option { background: var(--surface); color: var(--text); }

/* ── MODAL SUCCESS STATE ─────────────────────────────────── */
.modal-success {
  text-align: center;
  padding: 40px 0 24px;
}
.modal-success__title {
  font-family: var(--font-brand);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.018em;
}
.modal-success__body {
  font-size: 0.94rem;
  line-height: 1.76;
  color: rgba(255,255,255,0.78);
  max-width: 420px;
  margin: 0 auto 28px;
}

/* ── MODAL FORM ERROR ────────────────────────────────────── */
.modal-form-error {
  color: #f87171;
  font-size: 0.82rem;
  margin-top: 12px;
}


/* =========================================================
   CONTACT JAKE MODAL — LIGHT CANON OVERRIDE
   ========================================================= */

.modal--light {
  background: #F7F7F5;
  color: #111318;
  border: 1px solid rgba(17,19,24,0.10);
  box-shadow: 0 24px 80px rgba(15,17,21,0.22);
}

.modal--contact-jake {
  width: min(92vw, 560px);
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 40px 40px;
  border-radius: 12px;
}

.modal-close--light {
  color: rgba(17,19,24,0.34);
  border: none;
  background: transparent;
}

.modal-close--light:hover {
  color: rgba(17,19,24,0.72);
  border: none;
  background: transparent;
}

.contact-jake-modal__inner {
  max-width: 100%;
}

.contact-jake-modal__eyebrow {
  margin: 0 0 6px 0;
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #654EA3;
  opacity: 0.70;
  display: block;
}

.contact-jake-modal__title {
  margin: 0 0 16px 0;
  font-family: var(--font-brand);
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: #111318;
}

.contact-jake-modal__desc {
  margin: 0 0 20px 0;
  max-width: 100%;
  font-size: 0.90rem;
  line-height: 1.68;
  color: #4B5563;
}

.contact-jake-modal__identity {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 24px 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-jake-modal__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  display: block;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(101,78,163,0.06);
  filter: saturate(0.88) opacity(0.92);
}

.contact-jake-modal__identity-copy {
  min-width: 0;
}

.contact-jake-modal__name {
  margin: 0 0 4px 0;
  font-family: var(--font-brand);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.014em;
  color: #111318;
}

.contact-jake-modal__role {
  margin: 2px 0 0;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: #6B7280;
}

.contact-jake-modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 0;
}

.contact-jake-modal__form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0;
}

.form-label--light {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6A7385;
  display: block;
}

.form-input--light,
.form-textarea--light {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.90rem;
  color: #111318;
  background: #F8F7F4;
  border: 1px solid rgba(17,19,24,0.14);
  border-radius: 6px;
  padding: 10px 14px;
  width: 100%;
  transition: border-color 160ms;
  box-shadow: none;
}

.form-input--light::placeholder,
.form-textarea--light::placeholder {
  color: #8A94A6;
}

.form-input--light:focus,
.form-textarea--light:focus {
  outline: none;
  border-color: #654EA3;
  box-shadow: 0 0 0 3px rgba(101,78,163,0.10);
}

.contact-jake-modal__submit {
  margin-top: 4px;
  align-self: flex-start;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: #654EA3;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  padding: 11px 22px;
  cursor: pointer;
  transition: background 160ms;
}

.contact-jake-modal__submit:hover {
  background: #492E8E;
}

.contact-jake-modal__footnote {
  font-size: 0.72rem;
  color: #6A7385;
  opacity: 0.55;
  margin-top: 8px;
  line-height: 1.5;
}

.contact-jake-modal__success {
  margin-top: 16px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #2F6F5E;
}

@media (max-width: 767px) {
  .modal--contact-jake {
    width: calc(100vw - 32px);
    max-height: 90vh;
    padding: 28px 24px 32px;
    border-radius: 12px;
  }
  .contact-jake-modal__title { font-size: 1.10rem; }
  .contact-jake-modal__avatar { width: 56px; height: 56px; }
}
/* ── PRIVACY MODAL ───────────────────────────────────────── */

.modal--privacy {
  max-width: 860px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0;
}

.privacy-modal__inner {
  padding: 44px 40px 40px;
}

.privacy-modal__eyebrow {
  margin: 0 0 14px 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(191,155,222,0.62);
}

.privacy-modal__intro {
  max-width: 720px;
  margin-bottom: 30px;
  line-height: 1.75;
}

.privacy-modal__section {
  padding: 22px 0;
  border-top: 1px solid rgba(191,155,222,0.08);
}

.privacy-modal__heading {
  margin: 0 0 10px 0;
  font-family: var(--font-brand);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.privacy-modal__section p {
  margin: 0;
  max-width: 720px;
  font-size: 0.92rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.78);
}

.privacy-modal__link {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(191,155,222,0.24);
  transition: border-color 180ms var(--ease), color 180ms var(--ease);
}

.privacy-modal__link:hover {
  color: var(--accent-soft);
  border-bottom-color: rgba(191,155,222,0.44);
}

@media (max-width: 767px) {
  .modal--privacy {
    max-width: calc(100vw - 24px);
  }

  .privacy-modal__inner {
    padding: 32px 22px 28px;
  }

  .privacy-modal__intro,
  .privacy-modal__section p {
    max-width: 100%;
  }

  .privacy-modal__section {
    padding: 18px 0;
  }
}