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

:root {
  /* ── Thinkless Standard Palette ── */
  --standard-violet: #440099;
  --standard-violet-dark: #330072;
  --standard-violet-ultra: #492E8E;
  --standard-violet-light: #654EA3;
  --standard-charcoal: #333333;
  --standard-grey-dark: #989BA5;
  --standard-grey-light: #F3F3F4;
  --standard-white: #FFFFFF;
  /* Standard UI alpha helpers (do not invent new colours) */
  --standard-white-90: rgba(255,255,255,0.90);
  --standard-white-80: rgba(255,255,255,0.80);
  --standard-white-70: rgba(255,255,255,0.70);
  --standard-white-60: rgba(255,255,255,0.60);
  --standard-border-soft: rgba(255,255,255,0.08);
  --standard-border: rgba(255,255,255,0.10);

  /* ── Canvas ── */
  --bg: #0F1115;
  --surface: #161A22;
  --text: var(--standard-white);
  --muted: var(--standard-grey-dark);
  --line: var(--standard-border-soft);
  --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 (mapped to standard tokens) */
  --violet-dark:  var(--standard-violet-dark);
  --violet:       var(--standard-violet-ultra);
  --violet-ultra: var(--standard-violet-light);
  --violet-light: #BF9BDE; /* Tint — not in standard palette */

  /* 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;

  /* ── Semantic Design Tokens ── */
  /* GUARDRAIL: No new hex values outside :root.
     RGBA only permitted for opacity modulation of text, dividers, and overlays. */
  --bg-primary: var(--bg);
  --bg-panel: var(--surface);
  --accent-engineered: var(--standard-violet-dark);
  --accent-structural-base: var(--standard-violet);
  --accent-structural: rgba(40,32,72,0.28); /* opacity variant derived from --accent-structural-base; keep literal rgba to preserve calibrated tone */
  --text-primary: var(--text);
  --text-secondary: var(--muted);
  --card-surface: rgba(22,26,34,0.80);
  --capability-icon-opacity: 0.22;
}

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: var(--muted);
  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: var(--surface);
  color: var(--text);
  border: 1px solid rgba(191,155,222,0.14);
  border-top: 2px solid var(--standard-violet);
  font-weight: 600;
}

.btn--primary:hover {
  background: rgba(22,26,34,0.85);
  box-shadow: none;
}

/* ── HERO BUTTONS — executive pathway panels ── */

.hero-actions {
  display: flex;
  gap: 56px;
  align-items: stretch;
  margin-top: 36px;
}

.hero-actions .btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 2px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1;
  min-width: 190px;
  box-shadow: none;
  transition: background 200ms var(--ease), border-color 200ms var(--ease);
}

.hero-actions .btn:hover {
  transform: none;
  box-shadow: none;
}

/* Primary — decisive action surface */
.hero-actions .btn--primary {
  background: var(--surface);
  border: 1px solid rgba(191,155,222,0.14);
  border-top: 2px solid var(--standard-violet);
  padding: 32px 38px 34px;
  color: var(--text);
  font-weight: 600;
}

.hero-actions .btn--primary:hover {
  background: rgba(22,26,34,0.85);
  box-shadow: none;
}

.hero-actions .btn--primary .btn__label {
  opacity: 1;
  letter-spacing: 0.027em;
}

.hero-actions .btn--primary .btn__meta {
  opacity: 0.78;
}

/* Secondary — 40% authority: receded surface, visible border */
.hero-actions .btn--secondary {
  background: rgba(255,255,255,0.003);
  border: 1px solid rgba(255,255,255,0.068);
  padding: 28px 32px 30px;
  color: var(--text);
}

.hero-actions .btn--secondary:hover {
  background: rgba(255,255,255,0.022);
  border-color: rgba(255,255,255,0.11);
}

.hero-actions .btn--secondary .btn__label {
  opacity: 0.94;
}

.hero-actions .btn--secondary .btn__meta {
  opacity: 0.65;
}

.btn__label {
  display: block;
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.btn__meta {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 9px;
  line-height: 1.2;
}

@media (max-width: 599px) {
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }
}

/* -- NAV -- */

nav {
  position: fixed;
  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;
  border-radius: 2px !important;
  overflow: hidden;
  background: rgba(22,26,34,0.92);
  border: 1px solid rgba(191,155,222,0.18);
  border-top: 2px solid var(--standard-violet);
  transition: background 200ms var(--ease), border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}

.nav-desktop .btn:hover {
  background: rgba(22,26,34,0.98);
  border-color: rgba(191,155,222,0.32);
  border-top-color: var(--standard-violet);
  box-shadow:
    0 0 0 1px rgba(191,155,222,0.10),
    0 10px 22px rgba(0,0,0,0.35);
}

.nav-desktop .btn:focus-visible {
  outline: 2px solid rgba(191,155,222,0.35);
  outline-offset: 2px;
}

.nav-desktop .btn::before,
.nav-desktop .btn::after,
.nav-desktop .btn > * {
  border-radius: 2px !important;
}

.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--primary {
  margin-top: 20px;
  width: 100%;
  text-align: center;
  border-radius: 2px !important;
}

/* -- 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: 0;
    border: 1px solid rgba(191,155,222,0.08);
  }
}

/* ── Hero Abstract — Structural Inference Blueprint ── */

.hero-field {
  position: absolute;
  inset: 0;
  background-color: #0D0F13;
}

/* Edge vignette — structural containment (CSS for smooth radial) */
.hero-field::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 90% at 50% 50%, transparent 40%, #0D0F13 100%);
}

/* ── Animated Inference Nodes ── */

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg .node {
  transform-origin: center;
  transform-box: fill-box;
  animation: nodePulse var(--t, 5s) ease-in-out infinite;
  animation-delay: var(--d, 0s);
}

@keyframes nodePulse {
  0%, 100% { opacity: var(--op-lo, 0.35); transform: scale(1); }
  50%      { opacity: var(--op-hi, 0.65); transform: scale(var(--s, 1.2)); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg .node {
    animation: none !important;
    opacity: 0.45;
  }
}

/* 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: var(--muted);
  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");
}

/* -- DIAGNOSTIC -- */

#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: var(--muted);
  font-size: 0.95rem;
  line-height: 1.68;
}

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

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

/* -- CTA -- */

#cta {
  text-align: center;
}

#cta .wrap {
  max-width: 600px;
}

#cta p {
  margin-left: auto;
  margin-right: auto;
}

#cta .vantage-line--cta {
  margin-left: auto;
  margin-right: auto;
}

#cta .vantage-line--h2 {
  margin-left: auto;
  margin-right: auto;
}

.cta-sub {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 10px;
  margin-bottom: 32px;
}

/* -- FOOTER -- */

footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  text-align: center;
}

footer p {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0 auto;
  opacity: 0.6;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo-mark {
  display: inline-block;
  height: 20px;
  width: auto;
  opacity: 0.4;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* -- 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:center;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:100%;max-width:480px;margin:24px;padding:36px 32px 40px;max-height:88vh;overflow-y:auto;-webkit-overflow-scrolling:touch;transform:translateY(10px);transition:transform 200ms var(--ease);}
.modal-overlay.is-visible .modal{transform:translateY(0);}
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:var(--muted);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;}

/* ── TABS COMPONENT ── */
.tabs {
  margin-top: var(--pad-m);
  min-width: 0;
}

.tabs__list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  min-width: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 6px;
}

.tabs__list::-webkit-scrollbar {
  display: none;
}

.tabs__tab {
  flex: 0 0 auto;
  white-space: nowrap;
  background: none;
  border: none;
  padding: 0.75rem 1rem;
  text-align: left;
  font: inherit;
  cursor: pointer;
  color: var(--muted);
  border-bottom: 1px solid transparent;
  position: relative;
}

.tabs__tab[aria-selected="true"] {
  color: var(--text);
  border-bottom: 2px solid var(--accent);
}

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

.model-pill {
  display: inline-block;
  padding: 5px 10px;
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.72);
  line-height: 1.1;
}

.tabs__panel {
  margin-top: 1.5rem;
}

.tabs__panel[hidden] {
  display: none;
}

@media (min-width: 768px) {
  .tabs__list {
    gap: 2rem;
  }

  .tabs__tab {
    border-bottom: 2px solid transparent;
  }

  .tabs__tab[aria-selected="true"] {
    border-color: currentColor;
  }
}

/* ── ACCORDION COMPONENT ── */
.accordion {
  margin-top: var(--pad-m);
}
.accordion__item {
  border-top: 1px solid rgba(255,255,255,0.10);
}
.accordion__item:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.accordion__trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 0;
  text-align: left;
  font: inherit;
  cursor: pointer;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.accordion__trigger[aria-expanded="true"] {
  color: var(--text);
}
.accordion__trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}
.accordion__title {
  font-weight: 600;
}
.accordion__panel {
  padding: 0 0 1rem 0;
}
.accordion__panel[hidden] {
  display: none;
}
/* ── ACCORDION TYPE B — Institutional List (Roles) ── */

.roles-surface {
  margin-top: 2rem;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
}

.accordion--contextual {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Hairline separators — register pattern: top on every row, bottom on last */
.accordion.accordion--contextual .accordion__item {
  border-top: 1px solid rgba(255,255,255,0.10);
  border-radius: 0;
  background: transparent;
}

.accordion.accordion--contextual .accordion__item:last-child {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

/* Hover — border contrast lift only (no background fill) */
.accordion--contextual .accordion__item:hover {
  border-bottom-color: rgba(230,232,235,0.14);
}

.accordion--contextual .accordion__item:first-child:hover,
.accordion--contextual .accordion__cluster-label + .accordion__item:hover {
  border-top-color: rgba(230,232,235,0.14);
}

/* Open state — NO padding change (prevents jitter) */
.accordion--contextual .accordion__item:has(.accordion__trigger[aria-expanded="true"]) {
  background: rgba(230,232,235,0.02);
}

.accordion--contextual .accordion__item.is-open {
  background: rgba(230,232,235,0.02);
}

/* Trigger — consistent padding in ALL states (no reflow) */
.accordion.accordion--contextual .accordion__trigger {
  padding: 16px 10px 16px 12px;
  align-items: flex-start;
  position: relative;
  cursor: pointer;
  border-radius: 0;
  gap: 10px;
}

.accordion--contextual .accordion__trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  border-radius: 0;
}

/* Role icon — 18px outline, left of title */
.accordion--contextual .accordion__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  opacity: 0.30;
  transition: opacity 180ms var(--ease);
}

.accordion--contextual .accordion__icon svg {
  display: block;
}

.accordion--contextual .accordion__trigger:hover .accordion__icon {
  opacity: 0.48;
}

.accordion--contextual .accordion__trigger[aria-expanded="true"] .accordion__icon {
  opacity: 0.58;
}

/* Header column */
.accordion--contextual .accordion__header {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.accordion.accordion--contextual .accordion__title {
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  color: rgba(255,255,255,0.92);
}

.accordion.accordion--contextual .accordion__descriptor {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.58);
  letter-spacing: 0.04em;
  margin-top: 4px;
  line-height: 1.4;
}

/* Chevron — 18px, pulled inward by trigger right-padding */
.accordion.accordion--contextual .accordion__chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.55;
  transition: none;
}

.accordion--contextual .accordion__chevron svg {
  display: block;
}

/* Hover */
.accordion--contextual .accordion__trigger:hover .accordion__title {
  color: var(--text);
}

.accordion--contextual .accordion__trigger:hover .accordion__descriptor {
  color: rgba(160,167,180,0.62);
}

.accordion--contextual .accordion__trigger:hover .accordion__chevron {
  opacity: 0.52;
}

/* Expanded */
.accordion--contextual .accordion__trigger[aria-expanded="true"] .accordion__title {
  color: var(--text);
}

.accordion--contextual .accordion__trigger[aria-expanded="true"] .accordion__descriptor {
  color: rgba(160,167,180,0.54);
}

.accordion--contextual .accordion__trigger[aria-expanded="true"] .accordion__chevron {
  opacity: 0.55;
  transform: rotate(180deg);
  transition: none;
}

/* Panel — left-indent = trigger-left (12) + icon (18) + gap (10) = 40px */
.accordion--contextual .accordion__panel {
  padding: 2px 10px 24px 40px;
}

.accordion--contextual .accordion__panel p {
  font-size: 0.9rem;
  line-height: 1.76;
  color: var(--muted);
  max-width: 860px;
}

@media (min-width: 768px) {
  .accordion--contextual .accordion__trigger {
    padding: 16px 14px 16px 16px;
    gap: 12px;
  }
  .accordion--contextual .accordion__descriptor {
    margin-top: 5px;
  }
  /* Panel left-indent = trigger-left (16) + icon (18) + gap (12) = 46px */
  .accordion--contextual .accordion__panel {
    padding: 2px 14px 28px 46px;
  }
}

/* ROLES — CLUSTER LABELS & GROUPING */

.accordion__cluster-label {
  font-family: var(--font-brand);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.56;
  padding: 0 0 24px 0;
  margin: 0;
}

/* Contextual scoped override — reads as section metadata, not headline */
.accordion.accordion--contextual .accordion__cluster-label {
  letter-spacing: 0.03em;
  color: rgba(140,112,255,0.78);
  opacity: 1;
}

/* Cluster 2 — Tonal field (Technology & Data Leadership) */
.accordion__cluster-label + .accordion__item ~ .accordion__cluster-label {
  margin-top: 64px;
  padding: 28px 16px 24px;
  background: rgba(230,232,235,0.018);
}

.accordion__cluster-label + .accordion__item ~ .accordion__cluster-label ~ .accordion__item {
  background: rgba(230,232,235,0.018);
  padding-left: 16px;
  padding-right: 16px;
}

.accordion__cluster-label + .accordion__item ~ .accordion__cluster-label ~ .accordion__item:last-child {
  padding-bottom: 12px;
}

/* ── PLACEHOLDER LAYOUT (v4b) ── */

.section-head { margin-bottom: 40px; }
.section-head .overline { margin-bottom: 12px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { margin-bottom: 0; }

.subsection-head { margin-bottom: 24px; margin-top: 48px; }
.subsection-head h3 { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 0; }

.card { background: var(--bg); border: 1px solid rgba(191,155,222,0.10); border-radius: var(--radius); padding: 24px; }
.card__title { font-family: var(--font-brand); font-weight: 600; font-size: 1rem; color: var(--text); margin-bottom: 8px; }
.card__body { font-size: 0.92rem; color: var(--muted); line-height: 1.7; }

[data-grid] { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 600px) { [data-grid] { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { [data-grid] { grid-template-columns: repeat(3, 1fr); } }

/* CAPABILITIES CARDS HARDENING — SOVEREIGN MODULES (scoped to #objectives) */

/* Module surface — desaturated violet via dark overlay on brand base */
#objectives .card {
  position: relative;
  background-color: var(--accent-engineered);
  background-image:
    radial-gradient(ellipse 70% 60% at 10% 10%, rgba(101,78,163,0.08), transparent 60%),
    linear-gradient(to bottom, rgba(255,255,255,0.032) 0%, rgba(255,255,255,0.014) 8%, rgba(255,255,255,0.00) 15%),
    linear-gradient(rgba(8,12,22,0.24), rgba(8,12,22,0.24)),
    linear-gradient(rgba(0,0,0,0.28), rgba(0,0,0,0.28));
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--standard-violet);
  border-radius: 0;
  padding: 28px 32px 30px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.35);
  transition: border-color 200ms var(--ease);
}

/* Odd/even alternation — subtle rhythm within violet family */
#objectives .card:nth-child(even) {
  background-image:
    radial-gradient(ellipse 70% 60% at 10% 10%, rgba(101,78,163,0.06), transparent 60%),
    linear-gradient(to bottom, rgba(255,255,255,0.032) 0%, rgba(255,255,255,0.014) 8%, rgba(255,255,255,0.00) 15%),
    linear-gradient(rgba(8,12,22,0.20), rgba(8,12,22,0.20)),
    linear-gradient(rgba(0,0,0,0.24), rgba(0,0,0,0.24));
}

#objectives .card:hover {
  border-color: rgba(255,255,255,0.11);
  border-top-color: var(--standard-violet);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.30);
  transform: none;
}

/* ::before reserved — neutralised */
#objectives .card::before {
  content: none;
}
#objectives .card:hover::before {
  background: none;
}

/* 2-column grid — tighter gap for proposal-panel mass */
#objectives [data-grid] {
  gap: 14px;
}

@media (min-width: 900px) {
  #objectives [data-grid] {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Title — elevated institutional weight */
#objectives .card__title {
  font-family: var(--font-brand);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.014em;
  line-height: 1.26;
  color: var(--text-primary);
  margin-bottom: 12px;
}

/* Icons — watermark subtlety preserved */
#objectives .card__title::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  margin-bottom: 14px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: left center;
  opacity: var(--capability-icon-opacity);
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.55)) drop-shadow(0 0 10px rgba(191,155,222,0.08));
  transition: none;
}

#objectives .card:nth-child(1) .card__title::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%23E6E8EB' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 2L4 5.5V10C4 13.5 6.5 16.5 10 18C13.5 16.5 16 13.5 16 10V5.5Z'/%3E%3Cpolyline points='7.5,10 9.5,12 13,8'/%3E%3C/svg%3E");
}
#objectives .card:nth-child(2) .card__title::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%23E6E8EB' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='10' cy='5.5' r='3.5'/%3E%3Ccircle cx='5.5' cy='13' r='3.5'/%3E%3Ccircle cx='14.5' cy='13' r='3.5'/%3E%3C/svg%3E");
}
#objectives .card:nth-child(3) .card__title::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%23E6E8EB' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3,15 8,9 12,12 17,5'/%3E%3Cpolyline points='12,5 17,5 17,10'/%3E%3C/svg%3E");
}
#objectives .card:nth-child(4) .card__title::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%23E6E8EB' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 17C5 17 5 8 10 3C15 8 15 17 15 17'/%3E%3Cline x1='10' y1='6' x2='10' y2='17'/%3E%3C/svg%3E");
}
#objectives .card:nth-child(5) .card__title::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%23E6E8EB' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='7.5' y1='2' x2='12.5' y2='2'/%3E%3Cpath d='M8.5 2V7.5L4 17H16L11.5 7.5V2'/%3E%3C/svg%3E");
}
#objectives .card:nth-child(6) .card__title::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%23E6E8EB' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 3.5A7 7 0 0 1 17 10'/%3E%3Cpolyline points='14.5,1 14.5,5.5 10,5.5'/%3E%3Cpath d='M5.5 16.5A7 7 0 0 1 3 10'/%3E%3Cpolyline points='5.5,19 5.5,14.5 10,14.5'/%3E%3C/svg%3E");
}

/* Body — unchanged */
#objectives .card__body {
  font-size: 0.88rem;
  line-height: 1.48;
  color: rgba(255,255,255,0.80);
}

/* External CTA — first objectives card only */
#objectives .card--external .card__cta {
  margin-top: 16px;
  margin-bottom: 0;
  padding: 0;
  display: block;
}

#objectives .card--external .card__cta a {
  border-bottom: none;
  padding-bottom: 0;
}

/* Responsive */
@media (max-width: 599px) {
  #objectives .card { padding: 24px 24px 26px; }
  #objectives .card__title::before { width: 18px; height: 18px; background-size: 18px 18px; margin-bottom: 12px; }
}

/* BENEFITS — EXECUTIVE PILLAR GRID (scoped) */

/* Section — generous vertical rhythm */
#benefits { padding: 96px 0; }
@media (max-width: 767px) { #benefits { padding: 72px 0; } }

/* Grid — 2-column at desktop, vertical divider via background */
#benefits [data-grid] {
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 960px;
}
@media (min-width: 600px) {
  #benefits [data-grid] { grid-template-columns: 1fr; }
}
@media (min-width: 960px) {
  #benefits [data-grid] {
    grid-template-columns: 1fr 1fr;
    column-gap: 64px;
    row-gap: 0;
    background-image: linear-gradient(to bottom, rgba(255,255,255,0.07), rgba(255,255,255,0.07));
    background-size: 1px 100%;
    background-repeat: no-repeat;
    background-position: center top;
  }
}

/* Card — no surface, dividers via borders */
#benefits .card {
  position: relative;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0 0 40px 0;
  margin-bottom: 40px;
  box-shadow: none;
  transition: none;
}

/* Mobile/tablet: bottom divider on all but last */
#benefits .card:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

#benefits .card:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Desktop 2-col: row dividers on row 2+ (items 3–6) via top border */
@media (min-width: 960px) {
  #benefits .card {
    padding: 0 0 44px 0;
    margin-bottom: 0;
    border-bottom: none;
  }
  #benefits .card:not(:last-child) {
    border-bottom: none;
  }
  #benefits .card:nth-child(n+3) {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 44px;
  }
  #benefits .card:last-child {
    padding-bottom: 0;
  }
  /* Items 1–2 (first row): no top border, no top padding */
  #benefits .card:nth-child(-n+2) {
    border-top: none;
    padding-top: 0;
  }
}

#benefits .card:hover {
  box-shadow: none;
  transform: none;
}

/* Title — pillar heading, no icons */
#benefits .card__title {
  display: block;
  font-size: 1.0rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 11px;
}

#benefits .card__title::before {
  display: none;
}

/* Body — measured prose */
#benefits .card__body {
  font-size: 0.88rem;
  line-height: 1.58;
  color: rgba(160,167,180,0.80);
  max-width: 48ch;
}

/* Responsive — small screens */
@media (max-width: 599px) {
  #benefits .card {
    padding: 0 0 36px 0;
    margin-bottom: 36px;
  }
  #benefits .card__title { font-size: 0.95rem; }
  #benefits .card__body { font-size: 0.86rem; }
}

/* ── CATEGORY CLARIFICATION (scoped) ── */
#category-clarification .comparison__thesis{
  margin-top: 2.25rem;
  margin-bottom: calc(2.75rem + 14px);
  max-width: 60ch;
}
@media (min-width: 768px){
  #category-clarification .comparison__thesis{
    margin-bottom: calc(2.75rem + 18px);
  }
}
@media (min-width: 960px){
  #category-clarification .comparison__thesis{
    margin-bottom: calc(2.75rem + 24px);
  }
}
#category-clarification .comparison__thesis p{
  margin: 0 0 0.85rem 0;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--muted);
}
#category-clarification .comparison__thesis--emphasis{
  color: var(--text);
  font-weight: 650;
}
#category-clarification .comparison{
  margin-top: 2.25rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
#category-clarification .comparison__col{
  padding: 2.0rem 2.0rem 2.1rem;
}
#category-clarification .comparison__col[data-col="left"]{
  background: rgba(15,17,21,0.60);
}
#category-clarification .comparison__col[data-col="right"]{
  border-left: none;
  background: var(--card-surface);
}
#category-clarification .comparison__col .card__title{
  font-size: 1.02rem;
  margin-bottom: 0.85rem;
}
#category-clarification .comparison__col[data-col="right"] .card__title{
  color: var(--standard-white);
  font-weight: 700;
}
#category-clarification .comparison__list{
  list-style: none;
  padding: 0;
  margin: 0;
}
#category-clarification .comparison__list li{
  position: relative;
  padding-left: 18px;
  margin-bottom: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}
#category-clarification .comparison__list li::before{
  content:'';
  position:absolute;
  left:0;
  top: 0.72em;
  width: 10px;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--violet-ultra));
  transform: rotate(var(--vantage-angle-up));
  transform-origin: left;
  border-radius: 1px;
}
#category-clarification .comparison__col[data-col="right"] .comparison__list li{
  color: var(--text);
  opacity: 0.92;
}
@media (max-width: 900px){
  #category-clarification .comparison{
    grid-template-columns: 1fr;
  }
  #category-clarification .comparison__col[data-col="right"]{
    border-left: none;
    border-top: none;
  }
}

/* ── CTA ASSESSMENT FORM (scoped) ── */
#cta-assessment .section-head{ margin-bottom: 2rem; }
#cta-assessment .form-group{ margin-bottom: 28px; }
#cta-assessment .form-label{ margin-bottom: 10px; }
#cta-assessment .form-textarea{ min-height: 100px; line-height: 1.6; }
#cta-assessment .form-submit{ margin-top: 36px; }
#cta-assessment .cta-form-helper{
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 1.75rem;
  opacity: 0.7;
}
#cta-assessment .cta-form-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px){
  #cta-assessment .cta-form-grid{
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 600px;
  }
}
#cta-assessment .cta-form-grid .form-group--full{
  grid-column: 1 / -1;
}
#cta-assessment .checkbox-group{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 8px;
}
@media (min-width: 768px){
  #cta-assessment .checkbox-group{
    grid-template-columns: 1fr 1fr;
    gap: 14px 28px;
  }
}
#cta-assessment .checkbox-group label{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1.4;
}
#cta-assessment .checkbox-group input[type="checkbox"]{
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1px solid rgba(191,155,222,0.22);
  border-radius: 3px;
  background: rgba(255,255,255,0.03);
  margin-top: 2px;
  cursor: pointer;
  transition: border-color 180ms, background 180ms;
}
#cta-assessment .checkbox-group input[type="checkbox"]:checked{
  background: var(--violet-ultra);
  border-color: var(--violet-light);
}
#cta-assessment .checkbox-group input[type="checkbox"]:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
#cta-assessment select.form-input{
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A0A7B4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
#cta-assessment select.form-input option{
  background: var(--bg);
  color: var(--text);
}

/* ── MODAL BRIEFING FORM (scoped) ── */
#bookingModalOverlay .form-group{ margin-bottom: 20px; }
#bookingModalOverlay .form-submit{ margin-top: 28px; }
#bookingModalOverlay .form-textarea{ min-height: 72px; line-height: 1.55; }
#bookingModalOverlay .interest-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 8px;
}
@media (min-width: 520px){
  #bookingModalOverlay .interest-grid{
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
  }
}
#bookingModalOverlay .interest-grid label{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1.4;
}
#bookingModalOverlay .interest-grid input[type="checkbox"]{
  width: 14px;
  height: 14px;
  accent-color: var(--accent);
  flex-shrink: 0;
  cursor: pointer;
}
#bookingModalOverlay .interest-grid label:hover{
  color: var(--text);
}

/* ── IDENTITY TABS — Editorial Manifesto ── */

#identity .tabs {
  margin-top: calc(var(--pad-m) + 8px);
}

#identity .tabs__list {
  gap: 0.25rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0;
}

@media (min-width: 768px) {
  #identity .tabs__list {
    gap: 2.75rem;
  }
}

#identity .tabs__tab {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  padding: 0.625rem 0.25rem;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: color 180ms var(--ease), border-color 180ms var(--ease);
}

@media (min-width: 768px) {
  #identity .tabs__tab {
    border-bottom-width: 1px;
  }
}

#identity .tabs__tab:hover {
  color: var(--text);
}

#identity .tabs__tab[aria-selected="true"] {
  color: var(--text);
  border-image: linear-gradient(90deg, transparent 8%, rgba(160,167,180,0.32) 22%, rgba(160,167,180,0.32) 78%, transparent 92%) 1;
  box-shadow: none;
}

#identity .tabs__panel {
  margin-top: 2rem;
}

#identity .tabs__panel p {
  max-width: 580px;
}

/* ── CAPABILITIES TABS — Structured Middle Tier ── */

#ontologies .tabs {
  border-top: 1px solid var(--accent-structural);
  padding-top: 1.25rem;
}

#ontologies .tabs__list {
  gap: 0.5rem;
  border-bottom: 1px solid var(--accent-structural);
  padding-bottom: 0;
}

@media (min-width: 768px) {
  #ontologies .tabs__list {
    gap: 2.85rem;
  }
}

#ontologies .tabs__tab {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  padding: 0.625rem 0.25rem;
  color: rgba(160,167,180,0.68);
  border-bottom: 2px solid transparent;
  box-shadow: none;
  transition: color 180ms var(--ease), border-color 180ms var(--ease);
}

@media (min-width: 768px) {
  #ontologies .tabs__tab {
    border-bottom-width: 3px;
  }
}

#ontologies .tabs__tab:hover {
  color: var(--text);
}

#ontologies .tabs__tab[aria-selected="true"] {
  color: var(--standard-white);
  font-weight: 650;
  border-image: linear-gradient(90deg, rgba(51,0,114,0.0), rgba(51,0,114,0.95), rgba(51,0,114,0.0)) 1;
}

#ontologies .tabs__panel {
  margin-top: 2.25rem;
}

#ontologies .tabs__panel p {
  line-height: 1.68;
}

/* ── TECHNOLOGY SOLUTIONS ACCORDION ICONS ── */

/* Vertical separation between pillar rows */
#technology-solutions .accordion__item + .accordion__item {
  margin-top: 4px;
}

/* Kill any inherited left-rail from any source */
#technology-solutions .accordion,
#technology-solutions .accordion__item,
#technology-solutions .accordion__trigger,
#technology-solutions .accordion__panel {
  border-left: 0 none;
  box-shadow: none;
}

/* Divider authority — horizontal only, zero left rail */
#technology-solutions .accordion__item {
  border-top-color: rgba(255,255,255,0.12);
  border-left: none;
  box-shadow: none;
  outline: none;
}

#technology-solutions .accordion__item:last-child {
  border-bottom-color: rgba(255,255,255,0.12);
}

/* Hover — title brightens, no left rail */
#technology-solutions .accordion__item:hover {
  border-top-color: rgba(255,255,255,0.16);
  border-left: none;
  box-shadow: none;
}

/* Expanded — stronger divider, no left rail */
#technology-solutions .accordion__item:has(.accordion__trigger[aria-expanded="true"]) {
  border-top-color: rgba(255,255,255,0.18);
  border-left: none;
  box-shadow: none;
}

#technology-solutions .accordion__item.is-open {
  border-top-color: rgba(255,255,255,0.18);
  border-left: none;
  box-shadow: none;
}

/* Grid: icon (24px) | text stack (1fr) — 2 rows */
#technology-solutions .accordion__trigger {
  display: grid;
  grid-template-columns: 24px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 0;
  align-items: start;
  padding: 22px 4px 22px 0;
  border-left: none;
  box-shadow: none;
}

/* Title — flex row for title text + chevron */
#technology-solutions .accordion__title {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.06rem;
  font-weight: 650;
  letter-spacing: -0.014em;
  line-height: 1.28;
  transition: color 180ms var(--ease);
}

/* Chevron — via title::after */
#technology-solutions .accordion__title::after {
  content: '';
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none' stroke='%23A0A7B4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 6 8 10 12 6'/%3E%3C/svg%3E");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.28;
  transition: transform 220ms var(--ease), opacity 180ms var(--ease);
}

/* Chevron rotation + lift on expand */
#technology-solutions .accordion__trigger[aria-expanded="true"] .accordion__title::after {
  transform: rotate(180deg);
  opacity: 0.48;
}

/* Hover — brighten chevron */
#technology-solutions .accordion__trigger:hover .accordion__title::after {
  opacity: 0.40;
}

/* Hover — brighten title */
#technology-solutions .accordion__trigger:hover .accordion__title {
  color: var(--text);
}

/* Expanded hierarchy — active title lifts, siblings recede */
#technology-solutions .accordion__trigger[aria-expanded="true"] .accordion__title {
  color: var(--text);
}

#technology-solutions .accordion:has(.accordion__trigger[aria-expanded="true"]) .accordion__trigger:not([aria-expanded="true"]) .accordion__title {
  color: rgba(160,167,180,0.68);
}

/* Icon — column 1, spans both rows */
#technology-solutions .accordion__trigger::before {
  content: '';
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: start;
  margin-top: 2px;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  display: block;
  background-repeat: no-repeat;
  background-size: 22px 22px;
  background-position: center;
  opacity: 0.38;
}

/* Shield-control — Agentic AI Security */
#tech-solutions-trigger-1::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23A0A7B4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3.5v5c0 4.7-3 8.5-7 10.5-4-2-7-5.8-7-10.5v-5L12 3z'/%3E%3Cpath d='M9.5 12h5'/%3E%3Cpath d='M12 9.5v5'/%3E%3Ccircle cx='12' cy='12' r='0.5' fill='%23A0A7B4'/%3E%3C/svg%3E");
}

/* SquaresFour — Digital Twins */
#tech-solutions-trigger-2::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23A0A7B4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='8' height='8'/%3E%3Crect x='13' y='3' width='8' height='8'/%3E%3Crect x='3' y='13' width='8' height='8'/%3E%3Crect x='13' y='13' width='8' height='8'/%3E%3C/svg%3E");
}

/* SlidersHorizontal — Custom AI Models */
#tech-solutions-trigger-3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23A0A7B4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='4' y1='7' x2='20' y2='7'/%3E%3Cline x1='4' y1='12' x2='20' y2='12'/%3E%3Cline x1='4' y1='17' x2='20' y2='17'/%3E%3Ccircle cx='8' cy='7' r='2'/%3E%3Ccircle cx='14' cy='12' r='2'/%3E%3Ccircle cx='8' cy='17' r='2'/%3E%3C/svg%3E");
}

/* Cpu — Physical AI */
#tech-solutions-trigger-4::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23A0A7B4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='6' y='6' width='12' height='12'/%3E%3Cline x1='9' y1='3' x2='9' y2='6'/%3E%3Cline x1='15' y1='3' x2='15' y2='6'/%3E%3Cline x1='9' y1='18' x2='9' y2='21'/%3E%3Cline x1='15' y1='18' x2='15' y2='21'/%3E%3Cline x1='3' y1='9' x2='6' y2='9'/%3E%3Cline x1='3' y1='15' x2='6' y2='15'/%3E%3Cline x1='18' y1='9' x2='21' y2='9'/%3E%3Cline x1='18' y1='15' x2='21' y2='15'/%3E%3C/svg%3E");
}

/* Wifi — Edge AI */
#tech-solutions-trigger-5::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23A0A7B4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.55a11 11 0 0 1 14 0'/%3E%3Cpath d='M1.42 9a16 16 0 0 1 21.16 0'/%3E%3Cpath d='M8.53 16.11a6 6 0 0 1 6.95 0'/%3E%3Ccircle cx='12' cy='20' r='1' fill='%23A0A7B4'/%3E%3C/svg%3E");
}

/* Subline — column 2, row 2 */
#technology-solutions .accordion__trigger::after {
  grid-column: 2;
  grid-row: 2;
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(160,167,180,0.46);
  letter-spacing: 0.005em;
  line-height: 1.4;
}

/* Per-trigger sublines */
#tech-solutions-trigger-1::after {
  content: "Persistent identity, access, and control for agentic systems operating across models, applications, and infrastructure.";
}

#tech-solutions-trigger-2::after {
  content: "Persistent digital representations that govern operational state, control, and decision integrity.";
}

#tech-solutions-trigger-3::after {
  content: "Proprietary models designed for domain specific inference and operational decision systems.";
}

#tech-solutions-trigger-4::after {
  content: "Intelligence embedded within physical systems that sense, evaluate, and act in real world environments.";
}

#tech-solutions-trigger-5::after {
  content: "Distributed inference infrastructure that executes intelligence where real world conditions demand immediate response.";
}

/* Panel — zero top padding, flush beneath trigger subline, no left rail */
#technology-solutions .accordion__panel {
  padding: 0 4px 24px 38px;
  border-left: none;
  box-shadow: none;
}

/* ── AGENTIC AI SECURITY — PRODUCT STRIP ── */

#technology-solutions .tech-products__label {
  margin: 32px 0 14px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(160,167,180,0.55);
  max-width: none;
}

#technology-solutions .tech-products {
  margin-top: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

#technology-solutions .tech-products__item {
  padding: 0 22px 0 0;
}

#technology-solutions .tech-products__item + .tech-products__item {
  padding-left: 22px;
  border-left: 1px solid rgba(255,255,255,0.09);
}

#technology-solutions .tech-products__title {
  font-family: var(--font-brand);
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.96);
  margin: 0 0 5px;
}

#technology-solutions .tech-products__lead {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.68);
  line-height: 1.45;
  margin: 0 0 7px;
  max-width: none;
}

#technology-solutions .tech-products__body {
  font-size: 0.82rem;
  color: rgba(160,167,180,0.50);
  line-height: 1.64;
  margin: 0;
  max-width: none;
}

#technology-solutions #tech-solutions-panel-1 > p:last-child {
  margin-top: 28px;
  color: rgba(255,255,255,0.76);
  font-weight: 500;
}

@media (max-width: 640px) {
  #technology-solutions .tech-products {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 28px;
    padding-top: 20px;
  }
  #technology-solutions .tech-products__item {
    padding: 0;
  }
  #technology-solutions .tech-products__item + .tech-products__item {
    padding-left: 0;
    border-left: none;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.07);
  }
}

/* ── TECHNOLOGY TAB ICONS ── */

#ai-resourcing .tech-tab-inner {
  display: flex;
  align-items: center;
}

#ai-resourcing .tech-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  opacity: 0.40;
  flex-shrink: 0;
}

#ai-resourcing .tabs__tab:hover .tech-icon {
  opacity: 0.50;
}

#ai-resourcing .tabs__tab[aria-selected="true"] .tech-icon {
  opacity: 0.50;
}

/* ── INTEGRATION TABS — Commercial / Market-Facing ── */

#integration-segments .tabs__list {
  gap: 0.5rem;
  border-bottom: 1px solid rgba(230,232,235,0.10);
  padding-bottom: 0;
}

@media (min-width: 768px) {
  #integration-segments .tabs__list {
    gap: 3.25rem;
  }
}

#integration-segments .tabs__tab {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  padding: 0.625rem 0.6rem;
  color: rgba(160,167,180,0.65);
  border-bottom: 2px solid transparent;
  box-shadow: none;
  transition: color 180ms var(--ease), border-color 180ms var(--ease);
}

@media (min-width: 768px) {
  #integration-segments .tabs__tab {
    border-bottom-width: 2px;
  }
}

#integration-segments .tabs__tab:hover {
  color: var(--text);
}

#integration-segments .tabs__tab[aria-selected="true"] {
  color: var(--text);
  border-image: linear-gradient(90deg, transparent 6%, rgba(191,155,222,0.50) 20%, rgba(191,155,222,0.50) 80%, transparent 94%) 1;
}

/* Persistent external CTA — For-Purpose segment */
#integration-segments .segment__cta {
  margin-top: 20px;
  margin-bottom: 0;
  padding: 0;
  display: block;
}

#integration-segments .segment__cta a {
  border-bottom: none;
  padding-bottom: 0;
}

#integration-segments .segment__cta .ecosystem-cta {
  min-width: 0;
  width: 290px;
  max-width: 100%;
  background: rgba(18,22,30,0.88);
  border-color: rgba(191,155,222,0.18);
  border-top-color: rgba(107,43,217,0.96);
  color: rgba(255,255,255,0.96);
}

#integration-segments .segment__cta .ecosystem-cta:hover {
  background: rgba(22,26,36,0.96);
  border-color: rgba(191,155,222,0.26);
  border-top-color: rgba(107,43,217,1);
  color: rgba(255,255,255,1);
}

/* Persistent external CTA — technology-constraints section */
#ai-resourcing .segment__cta {
  margin-top: 16px;
  margin-bottom: 0;
  padding: 0;
  display: block;
}

#ai-resourcing .segment__cta a {
  border-bottom: none;
  padding-bottom: 0;
}

/* ── TECHNOLOGY TABS — Institutional Architecture ── */

#ai-resourcing .tabs {
  border-top: 1px solid rgba(230,232,235,0.10);
  padding-top: 1.25rem;
}

#ai-resourcing .tabs__list {
  background: none;
  border: none;
  border-bottom: 1px solid var(--accent-structural);
  border-radius: 0;
  padding: 0;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  #ai-resourcing .tabs__list {
    gap: 2.5rem;
    display: flex;
  }
}

#ai-resourcing .tabs__tab {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.012em;
  padding: 0.625rem 0.25rem;
  color: rgba(160,167,180,0.72);
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: none;
  box-shadow: none;
  transition: color 180ms var(--ease), border-color 180ms var(--ease);
}

@media (min-width: 768px) {
  #ai-resourcing .tabs__tab {
    border-bottom-width: 4px;
  }
}

#ai-resourcing .tabs__tab:hover {
  color: var(--text);
  background: none;
}

#ai-resourcing .tabs__tab[aria-selected="true"] {
  color: var(--standard-white);
  font-weight: 650;
  background: none;
  border-color: transparent;
  border-image: linear-gradient(90deg, rgba(51,0,114,0.0), rgba(51,0,114,0.95), rgba(51,0,114,0.0)) 1;
  box-shadow: none;
}

#ai-resourcing .tabs__panel {
  margin-top: 2.75rem;
}

/* ── TECHNOLOGY CONTENT BLOCK — Institutional Module ── */

#ai-resourcing {
  background: none;
  border: none;
  border-top: 1px solid rgba(230,232,235,0.06);
  border-radius: 0;
  padding: 28px 0 0;
  margin-top: 2rem;
  box-shadow: none;
}

#ai-resourcing .tabs__panel p {
  line-height: 1.68;
}

#ai-resourcing .tabs__panel p + p {
  margin-top: 18px;
}


/* ── ECOSYSTEM CTA BUTTONS ── */

.ecosystem-cta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: 10px;
  min-width: 320px;
  width: auto;
  max-width: 100%;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 2px;
  border: 1px solid rgba(191,155,222,0.12);
  border-top: 2px solid rgba(107,43,217,0.92);
  background: rgba(20,24,32,0.72);
  color: rgba(255,255,255,0.94);
  font-family: var(--font-brand);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.018em;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: none;
  transition:
    background 180ms var(--ease),
    border-color 180ms var(--ease),
    color 180ms var(--ease),
    transform 160ms var(--ease);
}

.ecosystem-cta:hover {
  background: rgba(24,28,38,0.88);
  border-color: rgba(191,155,222,0.20);
  border-top-color: rgba(107,43,217,1);
  color: rgba(255,255,255,1);
  transform: translateY(-1px);
}

.ecosystem-cta:focus-visible {
  outline: 2px solid rgba(191,155,222,0.42);
  outline-offset: 3px;
}

.ecosystem-cta:active {
  transform: translateY(0);
}

/* Part 5 — top anchoring: tighten gap from final paragraph to CTA */
#objectives .card--external .card__body + .card__cta,
#integration-segments .tabs__panel p + .segment__cta,
#ai-resourcing .tabs__panel p + .segment__cta {
  margin-top: 16px;
}

@media (max-width: 640px) {
  .ecosystem-cta {
    min-width: 0;
    width: auto;
    max-width: 100%;
    white-space: normal;
  }
}

/* ── SITE FOOTER ── */

.site-footer {
  padding: 72px 0 40px;
  background: transparent;
}

.site-footer__topline {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin-bottom: 48px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.site-footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
}

.site-footer__logo-mark {
  width: 34px;
  height: 34px;
}

.site-footer__wordmark {
  font-family: var(--font-brand);
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.site-footer__tm {
  font-size: 0.5em;
  vertical-align: top;
}

.site-footer__statement {
  max-width: 30ch;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.60);
  margin-bottom: 18px;
}

.site-footer__location {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.50);
  margin-bottom: 16px;
}

.site-footer__legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.site-footer__copyright {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.40);
}

.site-footer__privacy {
  background: none;
  border: none;
  padding: 0;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  font-family: inherit;
  text-align: center;
  cursor: pointer;
}

.site-footer__privacy:hover,
.site-footer__privacy:focus-visible {
  color: rgba(255,255,255,0.94);
}

.site-footer__privacy:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.site-footer__heading {
  font-family: var(--font-brand);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(140,112,255,0.85);
  margin-bottom: 16px;
}

.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.site-footer__list a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}

.site-footer__list a:hover,
.site-footer__list a:focus-visible {
  color: white;
}

@media (max-width: 900px) {
  .site-footer__grid {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
  .site-footer__brand {
    order: 3;
  }
  .site-footer__col:nth-child(2) {
    order: 1;
  }
  .site-footer__col:nth-child(3) {
    order: 2;
  }
}

/* ── PRIVACY MODAL ── */

.modal--privacy {
  max-width: 680px;
}

.modal--privacy .modal-copy {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.modal--privacy .modal-copy h3 {
  font-family: var(--font-brand);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(191,155,222,0.72);
  margin: 10px 0 2px;
}

.modal--privacy .modal-copy p {
  font-size: 0.92rem;
  line-height: 1.74;
  color: var(--muted);
  max-width: none;
}

.modal--privacy .modal-copy a {
  color: var(--accent-soft);
  text-decoration: none;
}

.modal--privacy .modal-copy a:hover {
  text-decoration: underline;
}

/* ── CTA PANEL (replaces inline bottom form) ── */
.cta-panel {
  margin-top: 2.5rem;
  border: 1px solid rgba(191,155,222,0.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
  overflow: hidden;
}

.cta-panel__inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 36px 32px;
}

@media (min-width: 768px) {
  .cta-panel__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 48px;
  }
}

.cta-panel__content {
  flex: 1;
  min-width: 0;
}

.cta-panel__title {
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.35;
}

.cta-panel__desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.68;
  max-width: 520px;
  margin: 0;
}

.cta-panel__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .cta-panel__actions {
    align-items: flex-end;
  }
}

.cta-panel__actions .btn {
  width: 100%;
  text-align: center;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .cta-panel__actions .btn {
    width: auto;
  }
}

.cta-panel__secondary {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 180ms;
  opacity: 0.7;
}

.cta-panel__secondary:hover {
  color: var(--accent-soft);
  opacity: 1;
}
