/* ==========================================================================
   OEOS Storytelling Design Layer  -  oeos_platform.css
   Platform Overview, Vault creation flow, Lifecycle timeline,
   Service-suite story cards, Empty-state story sections
   ========================================================================== */


/* ==========================================================================
   1.  GLOBAL STORY UTILITIES
   ========================================================================== */

.oeos-story {
  padding: var(--space-16) 0;
}

.oeos-story-alt {
  background-color: var(--soft-gray);
}

.oeos-story-cool {
  background-color: var(--cool-blue);
}

.oeos-story-navy {
  background-color: var(--navy-blue);
}

.oeos-story-container {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.oeos-story-eyebrow {
  display: block;
  font-family: var(--font-secondary);
  font-size: var(--text-xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-blue);
  margin-bottom: var(--space-3);
  margin-top: -20px;
}

.oeos-story-section-label {
  margin-bottom: var(--space-2);
  margin-top: -20px;
}

.oeos-story-section-label h2 {
  font-family: var(--font-primary);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: var(--space-2);
}

.oeos-story-section-label p {
  font-size: var(--text-lg);
  color: var(--deep-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.oeos-story-section-label .oeos-platform-action-single-line-copy {
  width: 100%;
  max-width: none;
  white-space: nowrap;
  margin-top: -10px;
}

@media (max-width: 991px) {
  .oeos-story-section-label .oeos-platform-action-single-line-copy {
    white-space: normal;
    max-width: 100%;
  }
}

.oeos-story-divider {
  border: none;
  height: 5px;
  width: 100%;
  background: linear-gradient(
    90deg,
    var(--primary-blue),
    var(--mint-accent),
    var(--primary-blue)
  );
  opacity: 0.5;
  margin: auto;
  border-radius: var(--radius-full);
}

@media (max-width: 768px) {
  .oeos-story {
    padding: var(--space-10) 0;
  }
  .oeos-story-container {
    padding: 0 var(--space-2);
  }
  .oeos-story-section-label h2 {
    font-size: var(--text-2xl);
  }
}


/* ==========================================================================
   2.  HERO SECTION
   ========================================================================== */

.oeos-story-hero {
  padding: var(--space-8) 0 var(--space-8);
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.oeos-story-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 70% 50% at 80% 50%, rgba(48,142,251,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.oeos-story-hero-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--space-8);
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: var(--space-12);
  align-items: center;
}

.oeos-story-hero-text h1 {
  font-family: var(--font-primary);
  font-size: clamp(1.75rem, 2.8vw, var(--text-4xl));
  font-weight: 700;
  color: var(--navy-blue);
  line-height: 1.2;
  margin-bottom: var(--space-5);
  letter-spacing: -0.01em;
}

.oeos-story-hero-text .oeos-hero-tagline {
  font-size: var(--text-lg);
  color: var(--deep-gray);
  line-height: 1.75;
  margin-bottom: var(--space-1);
  max-width: 520px;
}

.oeos-story-hero-ctas {
  margin-top: var(--space-4);
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.oeos-story-hero-image-panel {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.oeos-story-hero-image-wrap {
  width: min(100%, 560px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.oeos-story-hero-static-image {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  object-fit: contain;
  animation: oeosFloatY 5.5s ease-in-out infinite;
  will-change: transform;
}

@media (max-width: 1100px) {
  .oeos-story-hero-inner {
    grid-template-columns: 1fr 340px;
    gap: var(--space-8);
  }
  .oeos-story-hero-static-image {
    max-width: 460px;
  }
}

@media (max-width: 900px) {
  .oeos-story-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .oeos-story-hero-text .oeos-hero-tagline {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .oeos-story-hero-ctas {
    justify-content: center;
  }
  .oeos-story-hero-image-panel {
    order: 2;
    margin-top: var(--space-4);
  }
  .oeos-story-hero-static-image {
    max-width: min(440px, 92vw);
  }
}

@media (max-width: 576px) {
  .oeos-story-hero {
    padding: var(--space-8) 0;
  }
  .oeos-story-hero-inner {
    padding: 0 var(--space-4);
  }
  .oeos-story-hero-image-panel {
    width: 100%;
  }
  .oeos-story-hero-static-image {
    max-width: 100%;
    animation-duration: 6s;
  }
}

/* ==========================================================================
   Platform Overview only - OS hero split layout (40 text / 60 image)
   Scoped under .platform-overview-os-hero to avoid touching About Us or
   any other page that reuses .oeos-story-hero-inner.
   ========================================================================== */

.platform-overview-os-hero .platform-overview-os-hero-inner {
  grid-template-columns: minmax(360px, 0.82fr) minmax(540px, 1.18fr);
  gap: clamp(36px, 5vw, 84px);
  align-items: center;
}

.platform-overview-os-hero .oeos-story-hero-text {
  max-width: 720px;
  min-width: 0;
}

.platform-overview-os-hero .oeos-story-hero-image-panel {
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.platform-overview-os-hero .oeos-story-hero-image-wrap {
  width: min(100%, 760px);
  max-width: 760px;
}

.platform-overview-os-hero .oeos-story-hero-static-image {
  width: 100%;
  max-width: 760px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .platform-overview-os-hero .platform-overview-os-hero-inner {
    grid-template-columns: minmax(340px, 0.9fr) minmax(460px, 1.1fr);
    gap: clamp(28px, 4vw, 56px);
  }

  .platform-overview-os-hero .oeos-story-hero-image-wrap,
  .platform-overview-os-hero .oeos-story-hero-static-image {
    max-width: 640px;
  }
}

@media (max-width: 900px) {
  .platform-overview-os-hero .platform-overview-os-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .platform-overview-os-hero .oeos-story-hero-text {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .platform-overview-os-hero .oeos-story-hero-image-panel {
    justify-content: center;
    margin-top: var(--space-4);
  }

  .platform-overview-os-hero .oeos-story-hero-image-wrap,
  .platform-overview-os-hero .oeos-story-hero-static-image {
    max-width: min(560px, 92vw);
  }
}

@media (max-width: 576px) {
  .platform-overview-os-hero .oeos-story-hero-image-wrap,
  .platform-overview-os-hero .oeos-story-hero-static-image {
    max-width: 100%;
  }
}


/* ==========================================================================
   3.  VAULT CHOICE SECTION
   ========================================================================== */

.oeos-vault-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  max-width: 800px;
  margin: 0 auto var(--space-6);
}

.oeos-vault-card {
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  background: #F8FAFD;
  cursor: pointer;
  transition:
    border-color var(--ease-base),
    box-shadow var(--ease-base),
    transform var(--ease-base),
    background-color var(--ease-base);
  outline: none;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Subtle tinted overlay on normal state */
.oeos-vault-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(48,142,251,0.03) 0%, transparent 70%);
  pointer-events: none;
}

/* Shine sweep on hover */
.oeos-vault-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.55) 50%,
    transparent 100%
  );
  transform: skewX(-18deg);
  opacity: 0;
  transition: left 0.55s ease, opacity 0.3s ease;
  pointer-events: none;
}

.oeos-vault-card:hover::after {
  left: 130%;
  opacity: 1;
}

.oeos-vault-card:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 6px 20px rgba(48,142,251,0.12);
  transform: translateY(-3px);
}

.oeos-vault-card:focus-visible {
  outline: 2px solid var(--mint-accent);
  outline-offset: 3px;
}

a.oeos-vault-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.oeos-vault-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--cool-blue);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--space-5);
  transition: background-color var(--ease-fast), color var(--ease-fast);
}

.oeos-vault-card h4 {
  font-family: var(--font-secondary);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: var(--space-2);
}

.oeos-vault-card p {
  font-size: var(--text-base);
  color: var(--deep-gray);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.oeos-vault-badges {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.oeos-vault-badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--cool-blue);
  color: var(--primary-blue);
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
}

@media (max-width: 640px) {
  .oeos-vault-choice {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   5.  HOW IT WORKS
   ========================================================================== */

.oeos-how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.oeos-how-step {
  background: var(--white);
  border: 1px solid rgba(12, 30, 56, 0.10);
  border-radius: var(--radius-xl);
  padding: var(--space-7);
  box-shadow: 0 14px 32px rgba(12, 30, 56, 0.08);
  transition: box-shadow var(--ease-base), border-color var(--ease-base), transform var(--ease-base);
  position: relative;
}

.oeos-how-step:hover {
  border-color: rgba(12, 30, 56, 0.18);
  box-shadow: 0 20px 48px rgba(12, 30, 56, 0.13);
  transform: translateY(-3px);
}

.oeos-how-step-number {
  font-family: var(--font-secondary);
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy-blue-light);
  line-height: 1;
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.oeos-how-step-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy-blue), var(--navy-blue-light));
  color: var(--white);
  border: 1px solid rgba(12, 30, 56, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: var(--space-4);
}

.oeos-how-step h4 {
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: var(--space-2);
}

.oeos-how-step p {
  font-size: var(--text-base);
  color: var(--deep-gray);
  line-height: 1.65;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .oeos-how-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .oeos-how-steps {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   7.  LIFECYCLE TIMELINE
   ========================================================================== */

.oeos-lifecycle-section {
  background: var(--soft-gray);
}

.oeos-lifecycle-timeline-track {
  display: flex;
  gap: 6px;                     /* visible gap between adjacent suite group boxes */
  position: relative;
  margin-bottom: var(--space-2); /* arrow row + its margin-bottom handle the gap to the panel */
  padding-bottom: var(--space-2);
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: thin;
  scrollbar-color: var(--cool-blue) transparent;
}

.oeos-lifecycle-timeline-track::-webkit-scrollbar {
  height: 4px;
}

.oeos-lifecycle-timeline-track::-webkit-scrollbar-track {
  background: transparent;
}

.oeos-lifecycle-timeline-track::-webkit-scrollbar-thumb {
  background: var(--cool-blue);
  border-radius: 4px;
}

/* Horizontal connecting line */
.oeos-lifecycle-timeline-track::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(98deg, #0A1A2F, rgba(10, 26, 47, 0.8), #0A1A2F);
  z-index: 0;
  pointer-events: none;
}

.oeos-lifecycle-node {
  flex: 1;
  min-width: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-2) var(--space-3);
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: opacity var(--ease-fast);
}

.oeos-lifecycle-node:focus-visible {
  outline: none;
}

.oeos-lifecycle-node:focus-visible .oeos-lifecycle-node-dot {
  outline: 2px solid var(--mint-accent);
  outline-offset: 3px;
}

.oeos-lifecycle-node-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--suite-icon-dark-bg);
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: var(--active-suite-color, var(--deep-gray));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition:
    background-color var(--ease-base),
    border-color var(--ease-base),
    color var(--ease-base),
    box-shadow var(--ease-base),
    transform var(--ease-base);
  box-shadow: var(--shadow-xs);
}

.oeos-lifecycle-node:hover .oeos-lifecycle-node-dot,
.oeos-lifecycle-node:focus-visible .oeos-lifecycle-node-dot {
  border-color: var(--active-suite-color, var(--primary-blue));
  color: var(--active-suite-color, var(--primary-blue));
  box-shadow: var(--shadow-sm);
  transform: scale(1.06);
}

.oeos-lifecycle-node.oeos-active .oeos-lifecycle-node-dot {
  background: var(--suite-icon-dark-bg);
  border-color: var(--active-suite-color, var(--primary-blue));
  color: var(--active-suite-color, var(--white));
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.07), var(--shadow-md);
  transform: scale(1.1);
}

/* Locked node visual indicator */
.oeos-lifecycle-node.oeos-locked .oeos-lifecycle-node-dot {
  box-shadow: 0 0 0 4px rgba(48,142,251,0.2), var(--shadow-md);
}

.oeos-lifecycle-node-label {
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--deep-gray);
  text-align: center;
  max-width: 110px;
  line-height: 1.3;
  transition: color var(--ease-fast);
}

.oeos-lifecycle-node.oeos-active .oeos-lifecycle-node-label {
  color: var(--active-suite-color, var(--navy-blue));
}

.oeos-lifecycle-node-caption {
  font-size: var(--text-base);
  color: var(--deep-gray);
  text-align: center;
  opacity: 1;
  max-width: 110px;
  line-height: 1.3;
}

.oeos-lifecycle-node.oeos-active .oeos-lifecycle-node-caption {
  color: var(--active-suite-color, var(--primary-blue));
  opacity: 1;
}

/* Content panel */
.oeos-lifecycle-panel {
  background: linear-gradient(135deg, var(--navy-blue), var(--navy-blue-light));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  min-height: 160px;
  transition: opacity 0.15s ease;
}

  

.oeos-lifecycle-panel-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.oeos-lifecycle-suite-tag {
  display: inline-flex;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--active-suite-color, rgba(255, 255, 255, 0.85));
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.oeos-lifecycle-future-tag {
  display: inline-flex;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: var(--cool-blue);
  color: var(--primary-blue);
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.oeos-lifecycle-panel-title {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-3);
}

.oeos-lifecycle-panel-story {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 1);
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 700px;
}

@media (max-width: 768px) {
  .oeos-lifecycle-node {
    min-width: 100px;
  }
  .oeos-lifecycle-node-dot {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }
  .oeos-lifecycle-panel {
    padding: var(--space-5);
  }
  .oeos-lifecycle-panel-title {
    font-size: var(--text-lg);
  }
}

/* ── Lifecycle timeline: suite theme modifier classes ─────────────────────
   Add lifecycle-theme--[suite] to each .oeos-lifecycle-node button.
   Sets --active-suite-color, which is consumed by the dot, label, caption,
   panel border, badge, and CTA button via CSS inheritance.
   Reusable: drop lifecycle-theme--[suite] on any container that wraps
   suite-branded interactive nodes or detail cards. */
.lifecycle-theme--acquisition { --active-suite-color: var(--suite-acquisition-color); }
.lifecycle-theme--entity       { --active-suite-color: var(--suite-entity-color); }
.lifecycle-theme--asset        { --active-suite-color: var(--suite-asset-color); }
.lifecycle-theme--fund         { --active-suite-color: var(--suite-fund-color); }
.lifecycle-theme--partner      { --active-suite-color: var(--suite-partner-color); }

/* Per-suite active node: stronger border + suite glow (override base active) */
.lifecycle-theme--acquisition.oeos-active .oeos-lifecycle-node-dot {
  border-color: rgba(240, 192, 64, 0.72);
  box-shadow: 0 0 0 4px rgba(240, 192, 64, 0.18), 0 4px 18px rgba(240, 192, 64, 0.22);
}
.lifecycle-theme--entity.oeos-active .oeos-lifecycle-node-dot {
  border-color: rgba(52, 211, 153, 0.72);
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.18), 0 4px 18px rgba(52, 211, 153, 0.22);
}
.lifecycle-theme--asset.oeos-active .oeos-lifecycle-node-dot {
  border-color: rgba(96, 165, 250, 0.72);
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.18), 0 4px 18px rgba(96, 165, 250, 0.22);
}
.lifecycle-theme--fund.oeos-active .oeos-lifecycle-node-dot {
  border-color: rgba(167, 139, 250, 0.72);
  box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.18), 0 4px 18px rgba(167, 139, 250, 0.22);
}
.lifecycle-theme--partner.oeos-active .oeos-lifecycle-node-dot {
  border-color: rgba(251, 146, 60, 0.72);
  box-shadow: 0 0 0 4px rgba(251, 146, 60, 0.18), 0 4px 18px rgba(251, 146, 60, 0.22);
}

/* Per-suite hover glow (override base hover) */
.lifecycle-theme--acquisition:hover .oeos-lifecycle-node-dot,
.lifecycle-theme--acquisition:focus-visible .oeos-lifecycle-node-dot {
  border-color: rgba(240, 192, 64, 0.5);
  box-shadow: 0 0 0 3px rgba(240, 192, 64, 0.14), var(--shadow-sm);
}
.lifecycle-theme--entity:hover .oeos-lifecycle-node-dot,
.lifecycle-theme--entity:focus-visible .oeos-lifecycle-node-dot {
  border-color: rgba(52, 211, 153, 0.5);
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.14), var(--shadow-sm);
}
.lifecycle-theme--asset:hover .oeos-lifecycle-node-dot,
.lifecycle-theme--asset:focus-visible .oeos-lifecycle-node-dot {
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.14), var(--shadow-sm);
}
.lifecycle-theme--fund:hover .oeos-lifecycle-node-dot,
.lifecycle-theme--fund:focus-visible .oeos-lifecycle-node-dot {
  border-color: rgba(167, 139, 250, 0.5);
  box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.14), var(--shadow-sm);
}
.lifecycle-theme--partner:hover .oeos-lifecycle-node-dot,
.lifecycle-theme--partner:focus-visible .oeos-lifecycle-node-dot {
  border-color: rgba(251, 146, 60, 0.5);
  box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.14), var(--shadow-sm);
}

/* ── Lifecycle panel: per-suite border + glow ─────────────────────────── */
.lifecycle-theme--acquisition.oeos-lifecycle-panel {
  border-color: rgba(240, 192, 64, 0.22);
  box-shadow: 0 4px 28px rgba(240, 192, 64, 0.10), var(--shadow-sm);
}
.lifecycle-theme--entity.oeos-lifecycle-panel {
  border-color: rgba(52, 211, 153, 0.22);
  box-shadow: 0 4px 28px rgba(52, 211, 153, 0.10), var(--shadow-sm);
}
.lifecycle-theme--asset.oeos-lifecycle-panel {
  border-color: rgba(96, 165, 250, 0.22);
  box-shadow: 0 4px 28px rgba(96, 165, 250, 0.10), var(--shadow-sm);
}
.lifecycle-theme--fund.oeos-lifecycle-panel {
  border-color: rgba(167, 139, 250, 0.22);
  box-shadow: 0 4px 28px rgba(167, 139, 250, 0.10), var(--shadow-sm);
}
.lifecycle-theme--partner.oeos-lifecycle-panel {
  border-color: rgba(251, 146, 60, 0.22);
  box-shadow: 0 4px 28px rgba(251, 146, 60, 0.10), var(--shadow-sm);
}

/* ── Lifecycle panel: per-suite badge ────────────────────────────────── */
.lifecycle-theme--acquisition .oeos-lifecycle-suite-tag {
  background: rgba(240, 192, 64, 0.12);
  border-color: rgba(240, 192, 64, 0.35);
}
.lifecycle-theme--entity .oeos-lifecycle-suite-tag {
  background: rgba(52, 211, 153, 0.12);
  border-color: rgba(52, 211, 153, 0.35);
}
.lifecycle-theme--asset .oeos-lifecycle-suite-tag {
  background: rgba(96, 165, 250, 0.12);
  border-color: rgba(96, 165, 250, 0.35);
}
.lifecycle-theme--fund .oeos-lifecycle-suite-tag {
  background: rgba(167, 139, 250, 0.12);
  border-color: rgba(167, 139, 250, 0.35);
}
.lifecycle-theme--partner .oeos-lifecycle-suite-tag {
  background: rgba(251, 146, 60, 0.12);
  border-color: rgba(251, 146, 60, 0.35);
}

/* ── Lifecycle timeline: suite group wrappers ────────────────────────────
   Each wrapper groups the nodes belonging to one suite. The wrapper is a
   flex container so the node buttons lay out exactly as before. The box
   itself is decorative: translucent tinted background + dashed border.
   pointer-events: none keeps the wrapper non-interactive; the buttons
   inside retain pointer-events: auto via their default stacking. */
.lifecycle-suite-group {
  display: flex;
  flex: 1;                      /* 1-node suites get 1 unit */
  position: relative;
  align-items: flex-start;
  border-radius: 12px;
  border: 5px dotted rgba(255, 255, 255, 0.15);
  background: transparent;
  padding-bottom: var(--space-2); /* small bottom buffer inside the box */
  transition: border-color 0.22s ease, background 0.22s ease;
  pointer-events: none;
}

/* Restore click / hover on the actual node buttons */
.lifecycle-suite-group > .oeos-lifecycle-node {
  pointer-events: auto;
}

/* 2-node suites must span 2× the flex space to keep all 8 nodes equal-width */
.lifecycle-suite-group--acquisition,
.lifecycle-suite-group--entity,
.lifecycle-suite-group--asset {
  flex: 2;
}

/* Per-suite: resting border (darker tones) + visible tinted background */
.lifecycle-suite-group--acquisition {
  border-color: rgba(180, 120, 20, 0.48);
  background: rgba(240, 192, 64, 0.10);
}
.lifecycle-suite-group--entity {
  border-color: rgba(22, 160, 100, 0.48);
  background: rgba(52, 211, 153, 0.10);
}
.lifecycle-suite-group--asset {
  border-color: rgba(50, 120, 220, 0.48);
  background: rgba(96, 165, 250, 0.10);
}
.lifecycle-suite-group--fund {
  border-color: rgba(120, 80, 210, 0.48);
  background: rgba(167, 139, 250, 0.10);
}
.lifecycle-suite-group--partner {
  border-color: rgba(200, 85, 20, 0.48);
  background: rgba(251, 146, 60, 0.10);
}

/* Active group: strong border + stronger tint */
.lifecycle-suite-group--acquisition.lifecycle-suite-group--active {
  border-color: rgba(180, 120, 20, 0.82);
  background: rgba(240, 192, 64, 0.16);
}
.lifecycle-suite-group--entity.lifecycle-suite-group--active {
  border-color: rgba(22, 160, 100, 0.82);
  background: rgba(52, 211, 153, 0.16);
}
.lifecycle-suite-group--asset.lifecycle-suite-group--active {
  border-color: rgba(50, 120, 220, 0.82);
  background: rgba(96, 165, 250, 0.16);
}
.lifecycle-suite-group--fund.lifecycle-suite-group--active {
  border-color: rgba(120, 80, 210, 0.82);
  background: rgba(167, 139, 250, 0.16);
}
.lifecycle-suite-group--partner.lifecycle-suite-group--active {
  border-color: rgba(200, 85, 20, 0.82);
  background: rgba(251, 146, 60, 0.16);
}

/* ── Text contrast: active node labels inside colored group boxes ──────────
   Only the active state is overridden. The default gray label stays as-is;
   the bright suite color is replaced with a darker same-family tone that
   reads clearly against the translucent tinted background. Acquisition
   benefits most because bright yellow-on-yellow tint is very low contrast. */
.lifecycle-suite-group--acquisition .oeos-lifecycle-node.oeos-active .oeos-lifecycle-node-label,
.lifecycle-suite-group--acquisition .oeos-lifecycle-node.oeos-active .oeos-lifecycle-node-caption {
  color: #8a5a00;   /* dark amber */
}
.lifecycle-suite-group--entity .oeos-lifecycle-node.oeos-active .oeos-lifecycle-node-label,
.lifecycle-suite-group--entity .oeos-lifecycle-node.oeos-active .oeos-lifecycle-node-caption {
  color: #166a40;   /* deep emerald */
}
.lifecycle-suite-group--asset .oeos-lifecycle-node.oeos-active .oeos-lifecycle-node-label,
.lifecycle-suite-group--asset .oeos-lifecycle-node.oeos-active .oeos-lifecycle-node-caption {
  color: #1a5fa0;   /* deep royal blue */
}
.lifecycle-suite-group--fund .oeos-lifecycle-node.oeos-active .oeos-lifecycle-node-label,
.lifecycle-suite-group--fund .oeos-lifecycle-node.oeos-active .oeos-lifecycle-node-caption {
  color: #5a30a0;   /* deep violet */
}
.lifecycle-suite-group--partner .oeos-lifecycle-node.oeos-active .oeos-lifecycle-node-label,
.lifecycle-suite-group--partner .oeos-lifecycle-node.oeos-active .oeos-lifecycle-node-caption {
  color: #b84800;   /* burnt orange */
}

/* ── Arrow row: directional connector OUTSIDE the group boxes ────────────
   Lives between the track and the detail panel so arrows are not clipped
   by the track's overflow-x:auto scroll container. Flex proportions mirror
   the suite-group layout so each arrow stays centered under its group box. */
.lifecycle-arrow-row {
  display: flex;
  gap: 6px;                     /* matches track gap so columns align */
  margin-bottom: var(--space-5); /* comfortable space before the detail panel */
  pointer-events: none;
}

/* Each item is a flex column that stacks stem + tip vertically */
.lifecycle-arrow-row-item {
  flex: 1;                      /* 1-node suites */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: var(--space-2);  /* breathing room below the group box */
}

/* 2-node suites take 2× width – mirrors .lifecycle-suite-group flex values */
.lifecycle-arrow-row-item--acquisition,
.lifecycle-arrow-row-item--entity,
.lifecycle-arrow-row-item--asset {
  flex: 2;
}

/* Arrow stem (::before) and tip (::after) – hidden by default */
.lifecycle-arrow-row-item::before,
.lifecycle-arrow-row-item::after {
  content: '';
  display: block;
  opacity: 0;
  transition: opacity 0.22s ease;
}

/* Vertical stem */
.lifecycle-arrow-row-item::before {
  width: 5px;
  height: 32px;
  background: currentColor;
  border-radius: 3px;
}

/* Downward triangle tip */
.lifecycle-arrow-row-item::after {
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 18px solid currentColor;
}

/* Show arrow for the active suite */
.lifecycle-arrow-row-item.lifecycle-suite-group--active::before,
.lifecycle-arrow-row-item.lifecycle-suite-group--active::after {
  opacity: 1;
}

/* Arrow color per suite – darker tones for strong visual presence */
.lifecycle-arrow-row-item--acquisition { color: rgba(180, 120, 20, 0.95); }
.lifecycle-arrow-row-item--entity      { color: rgba(22, 160, 100, 0.95); }
.lifecycle-arrow-row-item--asset       { color: rgba(50, 120, 220, 0.95); }
.lifecycle-arrow-row-item--fund        { color: rgba(120, 80, 210, 0.95); }
.lifecycle-arrow-row-item--partner     { color: rgba(200, 85, 20, 0.95); }

/* Responsive adjustments */
@media (max-width: 768px) {
  .lifecycle-suite-group {
    border-radius: 8px;
  }
  .lifecycle-arrow-row-item::before {
    height: 22px;
  }
  .lifecycle-arrow-row-item::after {
    border-left-width: 10px;
    border-right-width: 10px;
    border-top-width: 13px;
  }
}

/* ── Lifecycle panel: CTA button ─────────────────────────────────────────
   Self-contained suite-themed button. Uses inherited --active-suite-color
   so no per-suite rules are needed - one class handles all five suites.
   Drop oeos-lifecycle-cta on any action link inside a lifecycle-theme-- panel. */
.oeos-lifecycle-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px var(--space-6);
  border-radius: var(--radius-full);
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  background: transparent;
  color: var(--active-suite-color, var(--primary-blue));
  border: 2px solid var(--active-suite-color, var(--primary-blue));
  transition:
    background-color var(--ease-fast),
    box-shadow var(--ease-fast),
    transform var(--ease-fast);
}

.oeos-lifecycle-cta:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

.oeos-lifecycle-cta:focus-visible {
  outline: 2px solid var(--mint-accent);
  outline-offset: 3px;
}


/* ==========================================================================
   8.  SERVICE SUITE STORY CARDS  (5-card 2-2-1 grid)
   ========================================================================== */

.oeos-suite-story-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

/* 5th card spans both columns, centered */
.oeos-suite-story-cards > .oeos-suite-story-card:nth-child(5) {
  grid-column: 1 / -1;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.oeos-suite-story-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease-base), transform var(--ease-base);
  display: flex;
  flex-direction: column;
}

.oeos-suite-story-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.oeos-suite-story-card-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.oeos-suite-story-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--cool-blue);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ── Suite Logo Card ──────────────────────────────────────────────────────
   Dark-navy themed icon card for service suite hero sections.
   Use alongside .oeos-suite-story-icon for hero icons, or standalone
   wherever suite-branded icons appear (cards, badges, dashboards, sidebar). */
.suite-logo-card {
  background: var(--suite-icon-dark-bg);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.suite-logo-card--acquisition {
  color: var(--suite-acquisition-color);
  border-color: rgba(240, 192, 64, 0.28);
  box-shadow: 0 4px 20px rgba(240, 192, 64, 0.14), var(--shadow-md);
}

.suite-logo-card--entity {
  color: var(--suite-entity-color);
  border-color: rgba(52, 211, 153, 0.28);
  box-shadow: 0 4px 20px rgba(52, 211, 153, 0.14), var(--shadow-md);
}

.suite-logo-card--asset {
  color: var(--suite-asset-color);
  border-color: rgba(96, 165, 250, 0.28);
  box-shadow: 0 4px 20px rgba(96, 165, 250, 0.14), var(--shadow-md);
}

.suite-logo-card--fund {
  color: var(--suite-fund-color);
  border-color: rgba(167, 139, 250, 0.28);
  box-shadow: 0 4px 20px rgba(167, 139, 250, 0.14), var(--shadow-md);
}

.suite-logo-card--partner {
  color: var(--suite-partner-color);
  border-color: rgba(251, 146, 60, 0.28);
  box-shadow: 0 4px 20px rgba(251, 146, 60, 0.14), var(--shadow-md);
}

.oeos-suite-story-card-meta {
  flex: 1;
}

/* Abbreviation label - hidden by default in new 5-card layout */
.oeos-suite-story-abbr {
  display: none;
}

.oeos-suite-story-card-meta h3 {
  font-family: var(--font-secondary);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: 0;
}

.oeos-suite-story-tagline {
  font-size: var(--text-base);
  color: var(--deep-gray);
  line-height: 1.6;
  margin-bottom: var(--space-5);
  font-style: italic;
}

.oeos-suite-story-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
}

.oeos-suite-story-bullets li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-2) 0;
  font-size: var(--text-base);
  color: var(--deep-gray);
  line-height: 1.5;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.oeos-suite-story-bullets li:last-child {
  border-bottom: none;
}

.oeos-suite-story-bullets .oeos-bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-blue);
  flex-shrink: 0;
  margin-top: 8px;
}

.oeos-suite-story-cta {
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border-light);
}

@media (max-width: 992px) {
  .oeos-suite-story-cards {
    grid-template-columns: 1fr;
  }
  .oeos-suite-story-cards > .oeos-suite-story-card:nth-child(5) {
    max-width: 100%;
    margin: 0;
  }
}


/* ==========================================================================
   8B. SERVICE SUITE DARK GRID  (Platform Overview – premium dark card grid)
   ========================================================================== */

/* ── Section ── */
.oeos-suite-grid-section {
  padding: var(--space-16) 0;
  background: #FFFFFF;
}

.oeos-suite-grid-accent {
  color: var(--deep-gray);
  font-style: normal;
}

/* ── Grid container: 3 equal columns on desktop ── */
.oeos-suite-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

/* ── Base card ── */
.oeos-suite-card {
  --suite-card-accent: var(--suite-asset-color);
  background: linear-gradient(135deg, var(--navy-blue), var(--navy-blue-light));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--ease-base),
    box-shadow var(--ease-base),
    border-color var(--ease-base);
}

.oeos-suite-card:hover {
  transform: translateY(-4px);
}

/* ── Suite accent variable assignment ── */
.oeos-suite-card--acquisition { --suite-card-accent: var(--suite-acquisition-color); }
.oeos-suite-card--entity      { --suite-card-accent: var(--suite-entity-color); }
.oeos-suite-card--asset       { --suite-card-accent: var(--suite-asset-color); }
.oeos-suite-card--fund        { --suite-card-accent: var(--suite-fund-color); }
.oeos-suite-card--partner     { --suite-card-accent: var(--suite-partner-color); }

/* ── Per-suite card border (default + hover glow) ── */
.oeos-suite-card--acquisition {
  border-color: rgba(240, 192, 64, 0.14);
}
.oeos-suite-card--acquisition:hover {
  border-color: rgba(240, 192, 64, 0.32);
  box-shadow: 0 12px 40px rgba(240, 192, 64, 0.12), 0 4px 16px rgba(0, 0, 0, 0.4);
}

.oeos-suite-card--entity {
  border-color: rgba(52, 211, 153, 0.14);
}
.oeos-suite-card--entity:hover {
  border-color: rgba(52, 211, 153, 0.32);
  box-shadow: 0 12px 40px rgba(52, 211, 153, 0.12), 0 4px 16px rgba(0, 0, 0, 0.4);
}

.oeos-suite-card--asset {
  border-color: rgba(96, 165, 250, 0.14);
}
.oeos-suite-card--asset:hover {
  border-color: rgba(96, 165, 250, 0.32);
  box-shadow: 0 12px 40px rgba(96, 165, 250, 0.12), 0 4px 16px rgba(0, 0, 0, 0.4);
}

.oeos-suite-card--fund {
  border-color: rgba(167, 139, 250, 0.14);
}
.oeos-suite-card--fund:hover {
  border-color: rgba(167, 139, 250, 0.32);
  box-shadow: 0 12px 40px rgba(167, 139, 250, 0.12), 0 4px 16px rgba(0, 0, 0, 0.4);
}

.oeos-suite-card--partner {
  border-color: rgba(251, 146, 60, 0.14);
}
.oeos-suite-card--partner:hover {
  border-color: rgba(251, 146, 60, 0.32);
  box-shadow: 0 12px 40px rgba(251, 146, 60, 0.12), 0 4px 16px rgba(0, 0, 0, 0.4);
}

/* ── Partner Connect: spans columns 2–3 on desktop ── */
.oeos-suite-card--wide {
  grid-column: span 2;
}

/* ── Card top row: suite number + icon ── */
.oeos-suite-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.oeos-suite-card-number {
  font-family: var(--font-secondary);
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--suite-card-accent);
  opacity: 0.75;
}

/* ── Card icon (dimensions only; suite-logo-card handles theming) ── */
.oeos-suite-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── Card title ── */
.oeos-suite-card-title {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 var(--space-3);
  line-height: 1.3;
}

/* ── Card description ── */
.oeos-suite-card-desc {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 1);
  line-height: 1.7;
  margin: 0 0 var(--space-5);
  flex: 1;
}

/* ── Capability pills ── */
.oeos-suite-card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.oeos-suite-card-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-family: var(--font-secondary);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--suite-card-accent);
}

/* Per-suite pill border + background */
.oeos-suite-card--acquisition .oeos-suite-card-pill {
  border: 1px solid rgba(240, 192, 64, 0.32);
  background: rgba(240, 192, 64, 0.07);
}
.oeos-suite-card--entity .oeos-suite-card-pill {
  border: 1px solid rgba(52, 211, 153, 0.32);
  background: rgba(52, 211, 153, 0.07);
}
.oeos-suite-card--asset .oeos-suite-card-pill {
  border: 1px solid rgba(96, 165, 250, 0.32);
  background: rgba(96, 165, 250, 0.07);
}
.oeos-suite-card--fund .oeos-suite-card-pill {
  border: 1px solid rgba(167, 139, 250, 0.32);
  background: rgba(167, 139, 250, 0.07);
}
.oeos-suite-card--partner .oeos-suite-card-pill {
  border: 1px solid rgba(251, 146, 60, 0.32);
  background: rgba(251, 146, 60, 0.07);
}

/* ── Card footer / CTA link ── */
.oeos-suite-card-footer {
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: auto;
}

.oeos-suite-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-secondary);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--suite-card-accent);
  text-decoration: none;
  letter-spacing: 0.02em;
  opacity: 0.8;
  transition: gap var(--ease-fast), opacity var(--ease-fast);
}

.oeos-suite-card-link:hover {
  gap: var(--space-3);
  opacity: 1;
  color: var(--suite-card-accent);
  text-decoration: none;
}

/* ── Responsive: tablet – 2 columns ── */
@media (max-width: 1024px) {
  .oeos-suite-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  /* Partner Connect fills full bottom row on tablet */
  .oeos-suite-card--wide {
    grid-column: span 2;
  }
}

/* ── Responsive: mobile – 1 column ── */
@media (max-width: 640px) {
  .oeos-suite-grid-section {
    padding: var(--space-10) 0;
  }
  .oeos-suite-grid {
    grid-template-columns: 1fr;
  }
  .oeos-suite-card--wide {
    grid-column: span 1;
  }
  .oeos-suite-card {
    padding: var(--space-6);
  }
}


/* ==========================================================================
   9.  MEET THE TEAM - Editorial Founder Profiles
   ========================================================================== */

/* ── Section ── */
.oeos-founders-section {
  padding: var(--space-16) 0;
  background: var(--white);
  border-top: 1px solid var(--border-light);
}

/* ── Vertical list of profile rows ── */
.oeos-founder-list {
  display: flex;
  flex-direction: column;
}

/* ── Each founder profile: full-width editorial row ── */
.oeos-founder-profile {
  display: flex;
  gap: var(--space-8);
  align-items: flex-start;
  padding: var(--space-10) 0;
  border-bottom: 1px solid var(--border-light);
}

.oeos-founder-profile:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* ── Clickable circular photo ── */
.oeos-founder-photo-link {
  display: block;
  border-radius: 50%;
  flex-shrink: 0;
  text-decoration: none;
}

.oeos-founder-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 3px solid var(--primary-blue-active);
  box-shadow: 0 0 0 3px rgba(10, 26, 47, 0.1), var(--shadow-md);
  transition: transform var(--ease-base), box-shadow var(--ease-base);
}

.oeos-founder-photo-link:hover .oeos-founder-photo {
  transform: scale(1.06);
  box-shadow: 0 0 0 4px rgba(48, 142, 251, 0.30), var(--shadow-lg);
}

/* ── Main text block ── */
.oeos-founder-main {
  flex: 1;
  min-width: 0;
}

/* ── Top line: name/designation (left) + actions (right) ── */
.oeos-founder-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-5);
  margin-bottom: var(--space-4);
}

.oeos-founder-meta {
  flex: 1;
}

.oeos-founder-name {
  font-family: var(--font-secondary);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--navy-blue);
  margin: 0 0 var(--space-1);
}

.oeos-founder-designation {
  font-size: var(--text-2xl);
  color: var(--navy-blue-light);
  font-weight: 600;
  margin: 0;
}

/* ── Actions: LinkedIn + toggle, aligned inline ── */
.oeos-founder-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* ── LinkedIn button: dark navy pill ── */
.oeos-founder-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  background: var(--navy-blue);
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background-color var(--ease-fast), box-shadow var(--ease-fast);
}

.oeos-founder-linkedin:hover {
  background: var(--navy-blue-light);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(10, 26, 47, 0.22);
}

/* ── Expand toggle ── */
.oeos-founder-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: transparent;
  border: 1.5px solid rgba(10, 26, 47, 0.18);
  color: var(--navy-blue);
  font-family: var(--font-secondary);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color var(--ease-fast), background-color var(--ease-fast), color var(--ease-fast);
}

.oeos-founder-toggle:hover,
.oeos-founder-toggle[aria-expanded="true"] {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background: var(--cool-blue);
}

.oeos-founder-toggle .fa-chevron-down {
  transition: transform var(--ease-base);
}

.oeos-founder-toggle[aria-expanded="true"] .fa-chevron-down {
  transform: rotate(180deg);
}

/* ── Preview paragraph ── */
.oeos-founder-preview {
  font-size: var(--text-base);
  color: var(--deep-gray);
  line-height: 1.75;
  margin-bottom: 0;
}

/* ── Expanded content ── */
.oeos-founder-expanded {
  padding-top: var(--space-5);
}

.oeos-founder-expanded p {
  font-size: var(--text-base);
  color: var(--deep-gray);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

/* ── Italic editorial note: clean left-border, no background ── */
.oeos-founder-note {
  margin: var(--space-2) 0 0;
  padding: var(--space-1) 0 var(--space-1) var(--space-4);
  border-left: 2px solid var(--primary-blue);
  background: transparent;
  font-size: var(--text-base);
  color: rgba(10, 26, 47, 0.62);
  line-height: 1.75;
}

.oeos-founder-note em {
  font-style: italic;
}

/* ── Responsive: tablet ── */
@media (max-width: 768px) {
  .oeos-founder-profile {
    gap: var(--space-6);
    padding: var(--space-8) 0;
  }
  .oeos-founder-photo {
    width: 80px;
    height: 80px;
  }
  .oeos-founder-topline {
    flex-wrap: wrap;
  }
}

/* ── Responsive: mobile ── */
@media (max-width: 576px) {
  .oeos-founders-section {
    padding: var(--space-10) 0;
  }
  .oeos-founder-profile {
    flex-direction: column;
    gap: var(--space-5);
    padding: var(--space-7) 0;
  }
  .oeos-founder-photo {
    width: 72px;
    height: 72px;
  }
  .oeos-founder-topline {
    flex-direction: column;
    gap: var(--space-3);
  }
  .oeos-founder-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}


/* ==========================================================================
   10. EMPTY STATE STORY SECTIONS  (AMS / EMS)
   ========================================================================== */

.oeos-empty-suite {
  padding: var(--space-8) var(--space-6) var(--space-12);
}

.oeos-empty-hero {
  text-align: center;
  padding: var(--space-10) 0 var(--space-8);
}

.oeos-empty-hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--cool-blue), rgba(48,142,251,0.15));
  color: var(--primary-blue);
  font-size: 1.75rem;
  margin: 0 auto var(--space-5);
}

.oeos-empty-hero h2 {
  font-family: var(--font-primary);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: var(--space-3);
  line-height: 1.25;
}

.oeos-empty-hero p {
  font-size: var(--text-lg);
  color: var(--deep-gray);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Mini-lifecycle strip for empty states */
.oeos-mini-lifecycle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: var(--space-8) 0;
  flex-wrap: wrap;
  position: relative;
}

.oeos-mini-lifecycle-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  position: relative;
  padding: 0 var(--space-5);
}

.oeos-mini-lifecycle-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 22px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: var(--cool-blue);
}

.oeos-mini-lifecycle-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cool-blue);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.oeos-mini-lifecycle-step.active .oeos-mini-lifecycle-dot {
  background: var(--navy-blue);
  color: var(--white);
}

.oeos-mini-lifecycle-label {
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--deep-gray);
  text-align: center;
  max-width: 80px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Action choices in empty state */
.oeos-empty-action-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  max-width: 680px;
  margin: var(--space-6) auto;
}

.oeos-empty-action-card {
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-7);
  text-align: center;
  text-decoration: none !important;
  transition: border-color var(--ease-base), box-shadow var(--ease-base), transform var(--ease-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.oeos-empty-action-card:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.oeos-empty-action-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--cool-blue);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.oeos-empty-action-title {
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: var(--space-1);
}

.oeos-empty-action-desc {
  font-size: var(--text-base);
  color: var(--deep-gray);
  line-height: 1.5;
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .oeos-empty-action-choices {
    grid-template-columns: 1fr;
  }
  .oeos-empty-hero h2 {
    font-size: var(--text-2xl);
  }
  .oeos-mini-lifecycle {
    display: none;
  }
}


/* ==========================================================================
   11. ACTION PANEL (Service suite front page CTAs)
   ========================================================================== */

.oeos-action-panel {
  background: linear-gradient(135deg, var(--navy-blue), var(--navy-blue-light));
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  margin-top: var(--space-6);
  text-align: center;
  color: var(--white);
}

.oeos-action-panel h3 {
  font-family: var(--font-primary);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-3);
}

.oeos-action-panel p {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-7);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.oeos-action-panel .btn-primary-custom {
  background-color: var(--white) !important;
  color: var(--navy-blue) !important;
  border-color: var(--white) !important;
}

.oeos-action-panel .btn-primary-custom:hover {
  background-color: var(--cool-blue) !important;
  color: var(--navy-blue) !important;
}

.oeos-action-panel .btn-outline-custom {
  border-color: rgba(255,255,255,0.5) !important;
  color: var(--white) !important;
}

.oeos-action-panel .btn-outline-custom:hover {
  background-color: rgba(255,255,255,0.12) !important;
  color: var(--white) !important;
}


/* ==========================================================================
   12. STORY PATH  (suite step visualization)
   ========================================================================== */

.oeos-story-path {
  display: flex;
  gap: 0;
  align-items: flex-start;
  position: relative;
  overflow-x: auto;
  padding-bottom: var(--space-4);
}

.oeos-story-path-step {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 var(--space-3);
}

.oeos-story-path-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -10px;
  width: 20px;
  height: 2px;
  background: var(--cool-blue);
  z-index: 1;
}

.oeos-story-path-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--cool-blue);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: var(--space-3);
  z-index: 1;
  position: relative;
  transition: background-color var(--ease-fast), border-color var(--ease-fast), color var(--ease-fast);
}

.oeos-story-path-step:hover .oeos-story-path-dot {
  background: var(--navy-blue);
  border-color: var(--navy-blue);
  color: var(--white);
}

.oeos-story-path-label {
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy-blue);
  text-align: center;
  max-width: 110px;
  line-height: 1.35;
}

.oeos-story-path-sub {
  font-size: var(--text-base);
  color: var(--deep-gray);
  text-align: center;
  margin-top: var(--space-1);
  max-width: 110px;
  line-height: 1.3;
  opacity: 0.75;
}

@media (max-width: 768px) {
  .oeos-story-path-step {
    min-width: 120px;
  }
  .oeos-story-path-dot {
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }
}


/* ==========================================================================
   13. ANIMATIONS
   ========================================================================== */

/* Slide down for form panels */
@keyframes oeos-slide-down {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes oeos-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes oeos-scale-in {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}


/* Scroll reveal */
.oeos-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.oeos-reveal.oeos-revealed {
  opacity: 1;
  transform: translateY(0);
}

.oeos-reveal-delay-1 { transition-delay: 0.1s; }
.oeos-reveal-delay-2 { transition-delay: 0.2s; }
.oeos-reveal-delay-3 { transition-delay: 0.3s; }
.oeos-reveal-delay-4 { transition-delay: 0.4s; }

.oeos-motion-safe {
  animation: oeos-fade-up 0.55s ease both;
}


/* ==========================================================================
   14. REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .oeos-reveal {
    opacity: 1;
    transform: none;
  }
}


/* ==========================================================================
   15. UTILITIES
   ========================================================================== */

.text-primary-blue {
  color: var(--primary-blue) !important;
}

/* Suite page hero heading (service suite front pages) */
.oeos-suite-hero-h1 {
  font-size: clamp(1.6rem, 2.4vw, var(--text-3xl));
}

/* Suite page hero right-column description */
.oeos-suite-hero-sub {
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  color: var(--deep-gray);
  line-height: 1.6;
}


/* ==========================================================================
   16. VAULT NOTE (shared across contexts)
   ========================================================================== */

.oeos-vault-note {
  font-size: var(--text-base);
  color: var(--deep-gray);
  margin: var(--space-5) 0 var(--space-6);
  padding: var(--space-3) var(--space-4);
  background: var(--soft-gray);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--primary-blue);
  line-height: 1.5;
}


/* ==========================================================================
   17. BUILT FOR THESE INVESTORS
   ========================================================================== */

.oeos-investor-fit-section {
  background: #ffffff;
}

/* ── 3-column grid ── */
.oeos-investor-fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

/* ── Base card: white, subtle border, top accent bar ── */
.oeos-investor-fit-card {
  --investor-fit-accent: var(--primary-blue);
  background: var(--white);
  border: 1px solid rgba(12, 30, 56, 0.10);
  border-top: 3px solid var(--investor-fit-accent);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  transition: box-shadow var(--ease-base), transform var(--ease-base);
}

.oeos-investor-fit-card:hover {
  box-shadow: 0 8px 28px rgba(12, 30, 56, 0.09);
  transform: translateY(-2px);
}

/* ── Per-card accent colors via suite variables ── */
.oeos-investor-fit-card--hold        { --investor-fit-accent: var(--suite-entity-color); }
.oeos-investor-fit-card--acquisition { --investor-fit-accent: var(--suite-acquisition-color); }
.oeos-investor-fit-card--fund        { --investor-fit-accent: var(--suite-fund-color); }

/* ── Header row: dark icon + title ── */
.oeos-investor-fit-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

/* ── Icon: dark navy background, suite-accented icon color ── */
.oeos-investor-fit-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--suite-icon-dark-bg);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  color: var(--investor-fit-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(12, 30, 56, 0.06), var(--shadow-sm);
}

/* ── Title ── */
.oeos-investor-fit-title {
  font-family: var(--font-secondary);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy-blue);
  margin: 0;
  line-height: 1.3;
}

/* ── Body copy ── */
.oeos-investor-fit-copy {
  font-size: var(--text-base);
  color: var(--deep-gray);
  line-height: 1.7;
  margin: 0;
}

/* ── Responsive: tablet → 2 columns ── */
@media (max-width: 1024px) {
  .oeos-investor-fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ── Responsive: mobile → 1 column ── */
@media (max-width: 640px) {
  .oeos-investor-fit-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   18. PRICING PHILOSOPHY SECTION
   ========================================================================== */

/* ── Supporting tagline below main subtext ── */
.oeos-pricing-philosophy-tagline {
  font-size: var(--text-base);
  color: var(--deep-gray);
  font-style: italic;
  max-width: 540px;
  margin: var(--space-2) auto 0;
  line-height: 1.65;
}

/* ── Three-column card grid ── */
.oeos-pricing-philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
  align-items: center;
  margin-bottom: var(--space-8);
}

/* ── Base dark card - mirrors .oeos-suite-card gradient pattern ── */
.oeos-pricing-card {
  --pricing-card-accent: var(--primary-blue);
  background: linear-gradient(135deg, var(--navy-blue), var(--navy-blue-light));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--ease-base),
    box-shadow var(--ease-base),
    border-color var(--ease-base);
}

/* CSS-only shimmer sweep on hover via ::before pseudo-element */
.oeos-pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.055) 50%,
    transparent 100%
  );
  transform: skewX(-18deg);
  opacity: 0;
  transition: left 0.6s ease, opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}

.oeos-pricing-card:hover::before {
  left: 130%;
  opacity: 1;
}

.oeos-pricing-card:hover {
  transform: translateY(-4px);
}

/* ── Accent variable per card modifier ── */
.oeos-pricing-card--free     { --pricing-card-accent: var(--suite-entity-color); }
.oeos-pricing-card--featured { --pricing-card-accent: var(--suite-acquisition-color); }
.oeos-pricing-card--operator { --pricing-card-accent: var(--suite-fund-color); }

/* ── Per-card border + hover glow ── */
.oeos-pricing-card--free {
  border-color: rgba(52, 211, 153, 0.14);
}
.oeos-pricing-card--free:hover {
  border-color: rgba(52, 211, 153, 0.32);
  box-shadow: 0 12px 40px rgba(52, 211, 153, 0.12), 0 4px 16px rgba(0, 0, 0, 0.4);
}

/* Featured card: raised, stronger border + glow, slightly scaled up */
.oeos-pricing-card--featured {
  border-color: rgba(240, 192, 64, 0.30);
  box-shadow: 0 8px 32px rgba(240, 192, 64, 0.14), 0 4px 16px rgba(0, 0, 0, 0.35);
  transform: scale(1.04);
  z-index: 2;
}
.oeos-pricing-card--featured:hover {
  border-color: rgba(240, 192, 64, 0.52);
  box-shadow: 0 20px 56px rgba(240, 192, 64, 0.22), 0 6px 24px rgba(0, 0, 0, 0.45);
  transform: scale(1.04) translateY(-5px);
}

.oeos-pricing-card--operator {
  border-color: rgba(167, 139, 250, 0.14);
}
.oeos-pricing-card--operator:hover {
  border-color: rgba(167, 139, 250, 0.32);
  box-shadow: 0 12px 40px rgba(167, 139, 250, 0.12), 0 4px 16px rgba(0, 0, 0, 0.4);
}

/* ── Featured badge: crown + "Start Here" label ── */
.oeos-pricing-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(240, 192, 64, 0.10);
  border: 1px solid rgba(240, 192, 64, 0.38);
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--suite-acquisition-color);
  margin-bottom: var(--space-3);
  width: fit-content;
}

.oeos-pricing-crown {
  font-size: 0.7rem;
  color: var(--suite-acquisition-color);
  filter: drop-shadow(0 0 5px rgba(240, 192, 64, 0.65));
}

/* ── Kicker label above card title ── */
.oeos-pricing-card-kicker {
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--pricing-card-accent);
  opacity: 0.72;
  margin-bottom: var(--space-2);
}

/* ── Plan title - primary visual element per spec ── */
.oeos-pricing-card-title {
  font-family: var(--font-primary);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 var(--space-2);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* ── Subtitle / value prop in accent color ── */
.oeos-pricing-card-subtitle {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--pricing-card-accent);
  margin: 0 0 var(--space-3);
  line-height: 1.4;
}

/* ── Short description ── */
.oeos-pricing-card-desc {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 1);
  line-height: 1.65;
  margin: 0 0 var(--space-4);
}

/* ── Horizontal rule between desc and bullets ── */
.oeos-pricing-card-divider {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 0 var(--space-5);
  opacity: 1;
}

/* ── Feature bullet list ── */
.oeos-pricing-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.oeos-pricing-card-bullet {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-2) 0;
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 1);
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.oeos-pricing-card-bullet:last-child {
  border-bottom: none;
}

/* Accent-colored dot bullet using CSS variable */
.oeos-pricing-bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pricing-card-accent);
  flex-shrink: 0;
  margin-top: 8px;
  opacity: 0.88;
}

/* ── Muted italic note below the card grid ── */
.oeos-pricing-philosophy-note {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--deep-gray);
  font-style: italic;
  max-width: 620px;
  margin: 0 auto;
  opacity: 0.78;
  line-height: 1.65;
}

/* ── Responsive: tablet (≤1024px) - 2 columns, featured spans full row ── */
@media (max-width: 1024px) {
  .oeos-pricing-philosophy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
  .oeos-pricing-card--featured {
    grid-column: 1 / -1;
    transform: none;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
  .oeos-pricing-card--featured:hover {
    transform: translateY(-4px);
  }
}

/* ── Responsive: mobile (≤640px) - 1 column, no scale transform ── */
@media (max-width: 640px) {
  .oeos-pricing-philosophy-grid {
    grid-template-columns: 1fr;
  }
  .oeos-pricing-card--featured {
    grid-column: auto;
    max-width: 100%;
    transform: none;
    box-shadow: 0 6px 24px rgba(240, 192, 64, 0.12), 0 2px 8px rgba(0, 0, 0, 0.3);
  }
  .oeos-pricing-card--featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(240, 192, 64, 0.18), 0 4px 12px rgba(0, 0, 0, 0.35);
  }
  .oeos-pricing-card {
    padding: var(--space-6);
  }
}


/* ==========================================================================
   19.  SERVICE SUITE PAGE - Reusable Premium Layout
   Applied to: Acquisition, Entity, Asset, Fund Manager, Partner Connect
   Pattern:  .oeos-suite-page  +  .oeos-suite-theme--[suite]
   ========================================================================== */

/* ── Suite theme: inherit accent variable per suite ── */
.oeos-suite-theme--acquisition {
  --suite-accent:       var(--suite-acquisition-color);
  --suite-accent-dark:  #B8860B;
  --suite-accent-soft:  rgba(240, 192, 64, 0.15);
  /* Badge uses global blue/mint default - no override here */
  /* Check list */
  --suite-check-color:  #B8860B;
  /* Web graphic */
  --suite-web-line:     rgba(200, 150, 20, 0.65);
  --suite-web-glow:     rgba(200, 150, 20, 0.40);
}
.oeos-suite-theme--entity {
  --suite-accent:       var(--suite-entity-color);
  --suite-accent-dark:  #0f7a4f;
  --suite-badge-bg:     rgba(52, 211, 153, 0.14);
  --suite-badge-text:   #064e35;
  --suite-badge-border: rgba(52, 211, 153, 0.50);
  --suite-badge-glow:   rgba(52, 211, 153, 0.20);
  --suite-check-color:  #0f7a4f;
  --suite-web-line:     rgba(52, 211, 153, 0.60);
  --suite-web-glow:     rgba(52, 211, 153, 0.35);
}
.oeos-suite-theme--asset {
  --suite-accent:       var(--suite-asset-color);
  --suite-accent-dark:  #1a5fa0;
  --suite-accent-soft:  rgba(96, 165, 250, 0.15);
  --suite-badge-bg:     rgba(96, 165, 250, 0.14);
  --suite-badge-text:   #1a3c6e;
  --suite-badge-border: rgba(96, 165, 250, 0.50);
  --suite-badge-glow:   rgba(96, 165, 250, 0.20);
  --suite-check-color:  #1a5fa0;
  --suite-web-line:     rgba(96, 165, 250, 0.60);
  --suite-web-glow:     rgba(96, 165, 250, 0.35);
}
.oeos-suite-theme--fund {
  --suite-accent:       var(--suite-fund-color);
  --suite-accent-dark:  #6930c3;
  --suite-badge-bg:     rgba(167, 139, 250, 0.14);
  --suite-badge-text:   #3d1a8a;
  --suite-badge-border: rgba(167, 139, 250, 0.50);
  --suite-badge-glow:   rgba(167, 139, 250, 0.20);
  --suite-check-color:  #6930c3;
  --suite-web-line:     rgba(167, 139, 250, 0.60);
  --suite-web-glow:     rgba(167, 139, 250, 0.35);
}
.oeos-suite-theme--partner {
  --suite-accent:       var(--suite-partner-color);
  --suite-accent-dark:  #c14a00;
  --suite-accent-soft:  rgba(251, 146, 60, 0.12);
  --suite-badge-bg:     rgba(251, 146, 60, 0.14);
  --suite-badge-text:   #6b2a00;
  --suite-badge-border: rgba(251, 146, 60, 0.50);
  --suite-badge-glow:   rgba(251, 146, 60, 0.20);
  --suite-check-color:  #c14a00;
  --suite-web-line:     rgba(251, 146, 60, 0.60);
  --suite-web-glow:     rgba(251, 146, 60, 0.35);
}

/* ── Section: replaces oeos-story + oeos-story-alt + hr-divider pattern ── */
.oeos-suite-section {
  padding: var(--space-8) 0;
}

.oeos-suite-section--muted {
  background-color: var(--soft-gray);
}

@media (max-width: 768px) {
  .oeos-suite-section {
    padding: var(--space-10) 0;
  }
}

/* ── Hero heading: larger/stronger within suite-page wrapper ── */
.oeos-suite-page .oeos-suite-hero-h1 {
  font-size: clamp(2rem, 3.2vw, var(--text-4xl));
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ── Phase badge pill ── */
.oeos-suite-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-secondary);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  background: rgba(48, 142, 251, 0.10);
  border: 1px solid rgba(48, 142, 251, 0.35);
  color: var(--primary-blue);
  margin-bottom: var(--space-3);
  width: fit-content;
}

.oeos-suite-theme--acquisition .oeos-suite-badge {
  background: rgba(240, 192, 64, 0.12);
  border-color: rgba(240, 192, 64, 0.42);
  color: var(--suite-acquisition-color);
}
.oeos-suite-theme--entity .oeos-suite-badge {
  background: rgba(52, 211, 153, 0.12);
  border-color: rgba(52, 211, 153, 0.42);
  color: var(--suite-entity-color);
}
.oeos-suite-theme--asset .oeos-suite-badge {
  background: rgba(96, 165, 250, 0.12);
  border-color: rgba(96, 165, 250, 0.42);
  color: var(--suite-asset-color);
}
.oeos-suite-theme--fund .oeos-suite-badge {
  background: rgba(167, 139, 250, 0.12);
  border-color: rgba(167, 139, 250, 0.42);
  color: var(--suite-fund-color);
}
.oeos-suite-theme--partner .oeos-suite-badge {
  background: rgba(251, 146, 60, 0.12);
  border-color: rgba(251, 146, 60, 0.42);
  color: var(--suite-partner-color);
}

/* ── Hero display tagline (short catchy line, italic with accent left-border) ── */
.oeos-suite-hero-tagline {
  font-family: var(--font-primary);
  font-size: clamp(1.15rem, 1.6vw, var(--text-xl));
  font-weight: 700;
  font-style: italic;
  color: var(--navy-blue);
  line-height: 1.4;
  margin-bottom: var(--space-5);
  border-left: 3px solid var(--suite-accent, var(--primary-blue));
  padding-left: var(--space-4);
}

/* ── Hero description paragraph - full width of its parent column ── */
.oeos-suite-hero-desc {
  font-size: var(--text-base);
  color: var(--deep-gray);
  line-height: 1.8;
  margin: 0;
}

/* ── Journey: acquisition-themed dots (dark navy + yellow icon) ── */
.oeos-suite-journey--acquisition .oeos-story-path-dot {
  background: var(--suite-icon-dark-bg);
  border-color: rgba(240, 192, 64, 0.35);
  color: var(--suite-acquisition-color);
}

.oeos-suite-journey--acquisition .oeos-story-path-step:hover .oeos-story-path-dot {
  background: var(--navy-blue-light);
  border-color: rgba(240, 192, 64, 0.65);
  color: var(--suite-acquisition-color);
}

.oeos-suite-journey--acquisition .oeos-story-path-step:not(:last-child)::after {
  background: rgba(240, 192, 64, 0.30);
}

/* ── Problem–Solution grid (3 columns → 2 → 1) ── */
.oeos-suite-problem-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

@media (max-width: 1100px) {
  .oeos-suite-problem-solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .oeos-suite-problem-solution-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Problem–Solution card (dark navy gradient - for white background sections) ── */
.oeos-suite-problem-card {
  background: linear-gradient(135deg, var(--navy-blue), var(--navy-blue-light));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: var(--space-7);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  box-shadow: var(--shadow-md);
  transition: transform var(--ease-base), box-shadow var(--ease-base), border-color var(--ease-base);
}

.oeos-suite-problem-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 255, 255, 0.10);
}

/* Problem block: red left-border accent */
.oeos-suite-problem-block {
  border-left: 3px solid rgba(248, 113, 113, 0.55);
  padding-left: var(--space-4);
}

.oeos-suite-problem-label {
  font-family: var(--font-secondary);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #F87171;
  margin-bottom: var(--space-2);
}

.oeos-suite-problem-text {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.65;
  margin: 0;
}

/* Thin divider between problem and solution */
.oeos-suite-card-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  margin: 0;
}

/* Solution block: suite accent left-border */
.oeos-suite-solution-block {
  border-left: 3px solid rgba(240, 192, 64, 0.55);
  padding-left: var(--space-4);
}

.oeos-suite-theme--entity .oeos-suite-solution-block   { border-left-color: rgba(52, 211, 153, 0.55); }
.oeos-suite-theme--asset .oeos-suite-solution-block    { border-left-color: rgba(96, 165, 250, 0.55); }
.oeos-suite-theme--fund .oeos-suite-solution-block     { border-left-color: rgba(167, 139, 250, 0.55); }
.oeos-suite-theme--partner .oeos-suite-solution-block  { border-left-color: rgba(251, 146, 60, 0.55); }

.oeos-suite-solution-label {
  font-family: var(--font-secondary);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--suite-acquisition-color);
  margin-bottom: var(--space-2);
}

.oeos-suite-theme--entity .oeos-suite-solution-label   { color: var(--suite-entity-color); }
.oeos-suite-theme--asset .oeos-suite-solution-label    { color: var(--suite-asset-color); }
.oeos-suite-theme--fund .oeos-suite-solution-label     { color: var(--suite-fund-color); }
.oeos-suite-theme--partner .oeos-suite-solution-label  { color: var(--suite-partner-color); }

.oeos-suite-solution-text {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}

/* ── Capability card grid (white cards - for grey/muted sections) ── */
.oeos-suite-capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

@media (max-width: 768px) {
  .oeos-suite-capability-grid {
    grid-template-columns: 1fr;
  }
}

.oeos-suite-capability-card {
  background: var(--white);
  border: 1px solid rgba(10, 26, 47, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-7);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease-base), transform var(--ease-base);
}

.oeos-suite-capability-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.oeos-suite-capability-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

/* Dark navy icon with suite accent color */
.oeos-suite-capability-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--suite-icon-dark-bg);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  color: var(--suite-acquisition-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(10, 26, 47, 0.06), var(--shadow-sm);
}

.oeos-suite-theme--entity .oeos-suite-capability-icon   { color: var(--suite-entity-color); }
.oeos-suite-theme--asset .oeos-suite-capability-icon    { color: var(--suite-asset-color); }
.oeos-suite-theme--fund .oeos-suite-capability-icon     { color: var(--suite-fund-color); }
.oeos-suite-theme--partner .oeos-suite-capability-icon  { color: var(--suite-partner-color); }

.oeos-suite-capability-title {
  font-family: var(--font-secondary);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy-blue);
  margin: 0;
  line-height: 1.3;
}

.oeos-suite-capability-desc {
  font-size: var(--text-base);
  color: var(--deep-gray);
  line-height: 1.7;
  margin: 0;
}

/* ── Detail capability list (white card - for grey/muted sections) ── */
.oeos-suite-detail-list {
  background: var(--white);
  border: 1px solid rgba(10, 26, 47, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-7);
  box-shadow: var(--shadow-sm);
}

.oeos-suite-detail-list-title {
  font-family: var(--font-secondary);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.oeos-suite-detail-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2) var(--space-8);
}

.oeos-suite-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--deep-gray);
  line-height: 1.55;
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.oeos-suite-detail-list li:last-child,
.oeos-suite-detail-list li:nth-last-child(2):nth-child(odd) {
  border-bottom: none;
}

/* Suite-accented check icon inside detail list */
.oeos-suite-detail-list .check-icon {
  color: var(--suite-acquisition-color);
  margin-top: 2px;
  flex-shrink: 0;
}

.oeos-suite-theme--entity .oeos-suite-detail-list .check-icon   { color: var(--suite-entity-color); }
.oeos-suite-theme--asset .oeos-suite-detail-list .check-icon    { color: var(--suite-asset-color); }
.oeos-suite-theme--fund .oeos-suite-detail-list .check-icon     { color: var(--suite-fund-color); }
.oeos-suite-theme--partner .oeos-suite-detail-list .check-icon  { color: var(--suite-partner-color); }

@media (max-width: 640px) {
  .oeos-suite-detail-list ul {
    grid-template-columns: 1fr;
  }
  .oeos-suite-detail-list li:nth-last-child(2):nth-child(odd) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }
  .oeos-suite-detail-list li:last-child {
    border-bottom: none;
  }
}

/* ── Outcome card grid (dark navy - for white background sections) ── */
.oeos-suite-outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
}

@media (max-width: 640px) {
  .oeos-suite-outcome-grid {
    grid-template-columns: 1fr;
  }
}

.oeos-suite-outcome-card {
  background: linear-gradient(135deg, var(--navy-blue), var(--navy-blue-light));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: var(--space-7);
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  box-shadow: var(--shadow-md);
  transition: transform var(--ease-base), box-shadow var(--ease-base), border-color var(--ease-base);
}

.oeos-suite-outcome-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.oeos-suite-theme--acquisition .oeos-suite-outcome-card:hover {
  border-color: rgba(240, 192, 64, 0.22);
}
.oeos-suite-theme--entity .oeos-suite-outcome-card:hover {
  border-color: rgba(52, 211, 153, 0.22);
}
.oeos-suite-theme--asset .oeos-suite-outcome-card:hover {
  border-color: rgba(96, 165, 250, 0.22);
}
.oeos-suite-theme--fund .oeos-suite-outcome-card:hover {
  border-color: rgba(167, 139, 250, 0.22);
}
.oeos-suite-theme--partner .oeos-suite-outcome-card:hover {
  border-color: rgba(251, 146, 60, 0.22);
}

/* Suite-accented icon chip inside outcome card */
.oeos-suite-outcome-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(240, 192, 64, 0.10);
  border: 1.5px solid rgba(240, 192, 64, 0.28);
  color: var(--suite-acquisition-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.oeos-suite-theme--entity .oeos-suite-outcome-icon {
  background: rgba(52, 211, 153, 0.10);
  border-color: rgba(52, 211, 153, 0.28);
  color: var(--suite-entity-color);
}
.oeos-suite-theme--asset .oeos-suite-outcome-icon {
  background: rgba(96, 165, 250, 0.10);
  border-color: rgba(96, 165, 250, 0.28);
  color: var(--suite-asset-color);
}
.oeos-suite-theme--fund .oeos-suite-outcome-icon {
  background: rgba(167, 139, 250, 0.10);
  border-color: rgba(167, 139, 250, 0.28);
  color: var(--suite-fund-color);
}
.oeos-suite-theme--partner .oeos-suite-outcome-icon {
  background: rgba(251, 146, 60, 0.10);
  border-color: rgba(251, 146, 60, 0.28);
  color: var(--suite-partner-color);
}

.oeos-suite-outcome-text {
  font-family: var(--font-secondary);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
  line-height: 1.45;
  margin: 0;
  padding-top: 2px;
}


/* ==========================================================================
   20.  SERVICE SUITE REFINEMENTS - Badge, Hero layout, Web graphic,
        Journey v2, Check list, Action note, Outcomes v2
   ========================================================================== */

/* ── Status badge - platform blue pill, consistent across all suites ── */
.oeos-suite-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.42rem 1.2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-blue-light);
  background: linear-gradient(
    135deg,
    rgba(48, 142, 251, 0.12),
    rgba(96, 165, 250, 0.18)
  );
  border: 1px solid rgba(48, 142, 251, 0.35);
  box-shadow:
    0 0 0 1px rgba(48, 142, 251, 0.10),
    0 6px 20px rgba(48, 142, 251, 0.16);
  margin-bottom: var(--space-3);
  position: relative;
  z-index: 0;
  transition: transform var(--ease-fast), box-shadow var(--ease-fast);
}

.oeos-suite-status-badge:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(48, 142, 251, 0.20),
    0 10px 28px rgba(48, 142, 251, 0.24);
}

/* Pseudo-element glow: matches the divider gradient (blue → mint → blue) */
.oeos-suite-status-badge--glow {
  position: relative;
}

.oeos-suite-status-badge--glow::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    var(--primary-blue),
    var(--mint-accent),
    var(--primary-blue)
  );
  opacity: 0.20;
  filter: blur(10px);
  z-index: -1;
  pointer-events: none;
}

/* ── Platform Overview hero badge row wrapper ── */
.platform-overview-hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin: 0.85rem 0 1rem;
}

/* ── Mobile: compact 3-column badge grid + centered hero heading ── */
@media (max-width: 767.98px) {
  /* Explicitly center h1 in case inherited text-align is overridden */
  .oeos-story-hero-text h1 {
    text-align: center;
  }

  /* 3 equal compact columns — scoped only to this hero's badge row */
  .platform-overview-hero-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.38rem;
    margin: 0.65rem 0 0.85rem;
  }

  .platform-overview-hero-badges .oeos-suite-status-badge {
    font-size: 0.7rem;
    padding: 0.42rem 0.22rem;
    letter-spacing: 0.05em;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin-bottom: 0;
    box-shadow:
      0 0 0 1px rgba(48, 142, 251, 0.10),
      0 3px 10px rgba(48, 142, 251, 0.12);
  }
}

/* ── Very small screens (≤360px): fall back to single column ── */
@media (max-width: 360px) {
  .platform-overview-hero-badges {
    grid-template-columns: 1fr;
  }
  .platform-overview-hero-badges .oeos-suite-status-badge {
    font-size: 0.65rem;
    padding: 0.42rem 0.75rem;
  }
}

/* ── Platform Overview hero meta stack (Georgia serif italic, gradient) ── */
.oeos-hero-meta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(2px, 0.35vw, 6px);
  margin: clamp(16px, 1.8vw, 24px) 0 clamp(26px, 2.8vw, 38px);
  max-width: 100%;
  text-align: center;
}

.oeos-hero-meta-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(8px, 1vw, 14px);
  max-width: 100%;
  white-space: nowrap;
}

.oeos-hero-meta-item {
  display: inline-block;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: var(--text-xl);
  font-style: italic;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-transform: none;
  white-space: nowrap;

  background: linear-gradient(
    120deg,
    var(--primary-blue) 0%,
    #4f8cff 38%,
    #35d6c8 72%,
    #183b74 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.oeos-hero-meta-separator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: var(--text-xs);
  line-height: 1;
  transform: translateY(1px);

  background: linear-gradient(135deg, #35d6c8, var(--primary-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;

  opacity: 0.9;
}

.oeos-hero-meta-row-single {
  margin-top: clamp(1px, 0.25vw, 4px);
}

@media (max-width: 1199px) {
  .oeos-hero-meta-item {
    font-size: var(--text-xl);
  }
}

@media (max-width: 991px) {
  .oeos-hero-meta-item {
    font-size: var(--text-lg);
  }
}

@media (max-width: 767px) {
  .oeos-hero-meta-stack {
    margin-top: 14px;
    margin-bottom: 28px;
  }

  .oeos-hero-meta-row {
    gap: 8px;
  }

  .oeos-hero-meta-item {
    font-size: var(--text-base);
  }
}

@media (max-width: 420px) {
  .oeos-hero-meta-row {
    flex-wrap: wrap;
    white-space: normal;
  }

  .oeos-hero-meta-item {
    white-space: normal;
  }

  .oeos-hero-meta-separator {
    font-size: var(--text-xs);
  }
}

/* ── Platform Overview hero copy: center-align scoped to this page only ── */
.oeos-platform-hero-copy {
  text-align: center;
  align-items: center;
}

.oeos-platform-hero-copy .oeos-story-eyebrow {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.oeos-platform-hero-copy .oeos-hero-meta-stack {
  margin-left: auto;
  margin-right: auto;
}

.oeos-platform-hero-copy h1 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.oeos-platform-hero-copy p {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.oeos-platform-hero-copy .oeos-story-hero-ctas {
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .oeos-platform-hero-copy {
    text-align: center;
    align-items: center;
  }

  .oeos-platform-hero-copy .oeos-story-hero-ctas {
    justify-content: center;
  }
}

/* ── Suite hero layout: outer grid (left-group | right-infographic) ── */
.oeos-suite-hero-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: var(--space-6) var(--space-8);
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-10);
  align-items: center;
}

/* Left column: vertical stack (badge → title-row → desc) */
.oeos-suite-hero-left {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

/* Title row: icon left, heading + tagline right */
.oeos-suite-hero-title-row {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

/* Icon slot - holds only the icon card, no sub-text */
.oeos-suite-hero-icon-stack {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icon card size (replaces inline style) */
.oeos-suite-hero-icon-stack .oeos-suite-story-icon {
  width: 88px;
  height: 88px;
  font-size: 2.2rem;
  border-radius: var(--radius-xl);
}

/* Heading + tagline block (right of icon) */
.oeos-suite-hero-title-copy {
  flex: 1;
  min-width: 0;
}

/* Legacy copy block - kept for other suite pages */
.oeos-suite-hero-copy {
  flex: 1;
  min-width: 0;
}

/* Responsive hero */
@media (max-width: 1100px) {
  .oeos-suite-hero-inner {
    grid-template-columns: 1fr 340px;
    gap: var(--space-8);
  }
}

@media (max-width: 900px) {
  .oeos-suite-hero-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .oeos-suite-hero-title-row {
    align-items: flex-start;
    gap: var(--space-3);
  }
  .oeos-suite-hero-icon-stack .oeos-suite-story-icon {
    width: 68px;
    height: 68px;
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .oeos-suite-hero-inner {
    padding: var(--space-4);
  }
  .oeos-suite-hero-left {
    gap: var(--space-3);
  }
}

/* ── Asset Management Suite only: custom hero alignment ── */
.ams-oeos-suite-hero {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  grid-column: 1 / -1;
}

.ams-oeos-suite-hero .oeos-suite-badge-row {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: clamp(18px, 2vw, 26px);
}

.ams-oeos-suite-hero .oeos-suite-hero-title-row {
  width: fit-content;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.4vw, 32px);
  margin-left: auto;
  margin-right: auto;
  margin-top: -25px;
  text-align: left;
}

.ams-oeos-suite-hero .oeos-suite-hero-icon-stack {
  flex: 0 0 auto;
  margin: 0;
}

.ams-oeos-suite-hero .oeos-suite-hero-title-copy {
  flex: 0 1 auto;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: none;
}

.ams-oeos-suite-hero .oeos-suite-hero-h1,
.ams-oeos-suite-hero h1 {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.ams-oeos-suite-hero .oeos-suite-hero-tagline {
  text-align: left;
  border-left: 3px solid var(--suite-accent, var(--primary-blue));
  padding-left: var(--space-4);
  margin-left: 0;
  margin-right: 0;
}

.ams-oeos-suite-hero .oeos-suite-hero-desc {
  width: 100%;
  max-width: none;
  margin: clamp(22px, 2.6vw, 34px) auto 0;
  text-align: center;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .ams-oeos-suite-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ams-oeos-suite-hero .oeos-suite-hero-title-row {
    flex-direction: column;
    margin-top: -15px;
    gap: 16px;
    text-align: center;
  }

  .ams-oeos-suite-hero .oeos-suite-hero-title-copy {
    align-items: center;
    text-align: center;
  }

  .ams-oeos-suite-hero .oeos-suite-hero-h1,
  .ams-oeos-suite-hero h1 {
    text-align: center;
  }

  .ams-oeos-suite-hero .oeos-suite-hero-tagline {
    text-align: center;
  }

  .ams-oeos-suite-hero .oeos-suite-hero-desc {
    width: 100%;
    max-width: 100%;
  }
}


/* ==========================================================================
   DEAL VAULT WEB GRAPHIC - CSS/SVG infographic
   Reusable: change center text, label content, and theme vars per suite.
   Structure: .oeos-suite-web-graphic > [SVG lines | center node | labels]
   ========================================================================== */

.oeos-suite-web-graphic {
  --suite-security-ring-size: 150px;
  position: relative;
  width: 360px;
  height: 360px;
  flex-shrink: 0;
}

/* Full-bleed SVG overlay for connector lines */
.oeos-suite-web-graphic__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.oeos-suite-web-graphic__line {
  stroke: var(--suite-web-line, rgba(240, 192, 64, 0.55));
  stroke-width: 5;
  stroke-linecap: round;
  fill: none;
  opacity: 0.7;
}

/* Core wrap: positions ring + center as a unit at the infographic midpoint.
   The float animation lives here so ring and card move together. */
.oeos-suite-web-graphic__core-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: var(--suite-security-ring-size, 150px);
  height: var(--suite-security-ring-size, 150px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* Center vault node */
.oeos-suite-web-graphic__center {
  position: relative;
  flex-shrink: 0;
  z-index: 2;
  width: 108px;
  min-height: 78px;
  background: linear-gradient(145deg, var(--navy-blue), var(--navy-blue-light));
  border: 2px solid var(--suite-web-line, rgba(240, 192, 64, 0.55));
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: var(--space-3) var(--space-4);
  box-shadow:
    0 0 24px var(--suite-web-glow, rgba(240, 192, 64, 0.28)),
    var(--shadow-lg);
}

.oeos-suite-web-graphic__center i {
  color: var(--suite-accent, var(--suite-acquisition-color));
  font-size: 1.5rem;
}

.oeos-suite-web-graphic__center-text {
  font-family: var(--font-secondary);
  font-size: var(--text-lg);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--suite-accent, var(--suite-acquisition-color));
  line-height: 1.2;
  text-align: center;
}

/* Label chips surrounding the center */
.oeos-suite-web-graphic__label {
  position: absolute;
  transform: translate(-50%, -50%) translateY(0);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  background: var(--suite-icon-dark-bg);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-full);
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}

.oeos-suite-web-graphic__label i {
  color: var(--suite-accent, var(--suite-acquisition-color));
  font-size: 1rem;
  flex-shrink: 0;
}

/* 6-node layout: r=130px at 60° intervals in 360×360 container (center 180,180).
   is-right / is-left retained for future 8-node reuse but unused here.        */
.oeos-suite-web-graphic__label.is-top          { top: 10%; left: 50%;   }
.oeos-suite-web-graphic__label.is-top-right    { top: 28%; left: 90%; }
.oeos-suite-web-graphic__label.is-right        { top: 50%;   left: 80%; }
.oeos-suite-web-graphic__label.is-bottom-right { top: 72%; left: 90%; }
.oeos-suite-web-graphic__label.is-bottom       { top: 90%; left: 50%;   }
.oeos-suite-web-graphic__label.is-bottom-left  { top: 72%; left: 10%; }
.oeos-suite-web-graphic__label.is-left         { top: 50%;   left: 20%; }
.oeos-suite-web-graphic__label.is-top-left     { top: 28%; left: 10%; }

/* ── Animations ── */
@keyframes oeosSuiteVaultFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50%       { transform: translate(-50%, -50%) translateY(-7px); }
}

@keyframes oeosSuiteWebLabelFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50%       { transform: translate(-50%, -50%) translateY(-4px); }
}

@keyframes oeosSuiteWebLinePulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 0.75; }
}

.oeos-suite-web-graphic--animated .oeos-suite-web-graphic__core-wrap {
  animation: oeosSuiteVaultFloat 5s ease-in-out infinite;
}

.oeos-suite-web-graphic--animated .oeos-suite-web-graphic__line {
  animation: oeosSuiteWebLinePulse 3.5s ease-in-out infinite;
}

.oeos-suite-web-graphic--animated .oeos-suite-web-graphic__label {
  animation: oeosSuiteWebLabelFloat 4.5s ease-in-out infinite;
}

/* Staggered label delays - 4.5s period ÷ 6 nodes = 0.75s per step */
.oeos-suite-web-graphic__label.is-top          { animation-delay: 0s;     }
.oeos-suite-web-graphic__label.is-top-right    { animation-delay: -0.75s; }
.oeos-suite-web-graphic__label.is-right        { animation-delay: -1.5s;  }
.oeos-suite-web-graphic__label.is-bottom-right { animation-delay: -2.25s; }
.oeos-suite-web-graphic__label.is-bottom       { animation-delay: -3.0s;  }
.oeos-suite-web-graphic__label.is-bottom-left  { animation-delay: -3.75s; }
.oeos-suite-web-graphic__label.is-left         { animation-delay: -4.5s;  }
.oeos-suite-web-graphic__label.is-top-left     { animation-delay: -5.25s; }

/* ── Hover effects ── */
.oeos-suite-web-graphic--hoverable:hover .oeos-suite-web-graphic__center {
  border-color: var(--suite-accent, rgba(240, 192, 64, 0.85));
  box-shadow:
    0 0 36px var(--suite-web-glow, rgba(240, 192, 64, 0.45)),
    var(--shadow-xl);
}

.oeos-suite-web-graphic--hoverable:hover .oeos-suite-web-graphic__line {
  opacity: 0.88;
}

.oeos-suite-web-graphic--hoverable:hover .oeos-suite-web-graphic__label {
  border-color: rgba(255, 255, 255, 0.18);
}

/* ── Security ring: rotating translucent dotted circle behind the center node ── */
@keyframes oeosSuiteSecurityRingRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.oeos-suite-web-graphic__security-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 5px dotted var(--suite-web-line, rgba(200, 150, 20, 0.75));
  background: var(--suite-web-glow, rgba(200, 150, 20, 0.20));
  box-shadow:
    0 0 20px var(--suite-web-glow, rgba(200, 150, 20, 0.28)),
    inset 0 0 14px var(--suite-web-glow, rgba(200, 150, 20, 0.18));
  opacity: 0.75;
  z-index: 1;
  pointer-events: none;
  animation: oeosSuiteSecurityRingRotate 100s linear infinite;
}

/* Responsive: scale down on smaller containers */
@media (max-width: 900px) {
  .oeos-suite-web-graphic {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .oeos-suite-web-graphic {
    --suite-security-ring-size: 155px;
  }
}

@media (max-width: 576px) {
  .oeos-suite-web-graphic {
    width: min(320px, 92vw);
    height: min(320px, 92vw);
    --suite-security-ring-size: 145px;
  }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .oeos-suite-web-graphic--animated .oeos-suite-web-graphic__core-wrap,
  .oeos-suite-web-graphic--animated .oeos-suite-web-graphic__label {
    animation: none !important;
  }
  .oeos-suite-web-graphic--animated .oeos-suite-web-graphic__line {
    animation: none !important;
    opacity: 0.55;
  }
  .oeos-suite-web-graphic__security-ring {
    animation: none !important;
  }
}


/* ==========================================================================
   JOURNEY TIMELINE v2 - Larger nodes, bolder connector
   ========================================================================== */

.oeos-suite-journey {
  display: flex;
  gap: 0;
  align-items: flex-start;
  position: relative;
  overflow-x: auto;
  padding-bottom: var(--space-4);
  -ms-overflow-style: none;
  scrollbar-width: thin;
}

/* Bold horizontal connector at center of 76px nodes */
.oeos-suite-journey::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(180, 120, 10, 0.08),
    var(--suite-web-line, rgba(200, 150, 20, 0.65)) 12%,
    var(--suite-web-line, rgba(200, 150, 20, 0.65)) 88%,
    rgba(180, 120, 10, 0.08)
  );
  border-radius: 2px;
  z-index: 0;
  pointer-events: none;
}

.oeos-suite-journey-step {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 var(--space-3);
  z-index: 1;
}

/* Larger icon circle: 76px vs original 56px */
.oeos-suite-journey-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--suite-icon-dark-bg);
  border: 2.5px solid var(--suite-web-line, rgba(200, 150, 20, 0.45));
  color: var(--suite-accent, var(--suite-acquisition-color));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-3);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--suite-accent-soft, rgba(240, 192, 64, 0.08)), var(--shadow-sm);
  transition:
    border-color var(--ease-base),
    box-shadow var(--ease-base),
    transform var(--ease-base);
}

.oeos-suite-journey-step:hover .oeos-suite-journey-icon {
  border-color: var(--suite-accent, rgba(240, 192, 64, 0.80));
  box-shadow: 0 0 0 6px var(--suite-accent-soft, rgba(240, 192, 64, 0.14)), var(--shadow-md);
  transform: scale(1.06);
}

.oeos-suite-journey-label {
  font-family: var(--font-secondary);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy-blue);
  text-align: center;
  max-width: 120px;
  line-height: 1.35;
  margin-bottom: var(--space-1);
}

.oeos-suite-journey-subtext {
  font-size: var(--text-base);
  color: var(--deep-gray);
  text-align: center;
  max-width: 120px;
  line-height: 1.3;
  opacity: 0.78;
}

/* Mobile: vertical stacked timeline */
@media (max-width: 640px) {
  .oeos-suite-journey {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-x: visible;
  }

  .oeos-suite-journey::before {
    /* vertical line along left side of steps */
    top: 0;
    bottom: 0;
    left: 38px;
    right: auto;
    width: 3px;
    height: auto;
    background: linear-gradient(
      180deg,
      rgba(180, 120, 10, 0.08),
      var(--suite-web-line, rgba(200, 150, 20, 0.65)) 12%,
      var(--suite-web-line, rgba(200, 150, 20, 0.65)) 88%,
      rgba(180, 120, 10, 0.08)
    );
  }

  .oeos-suite-journey-step {
    flex-direction: row;
    align-items: flex-start;
    min-width: auto;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-2) var(--space-4) var(--space-2);
    text-align: left;
  }

  .oeos-suite-journey-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
    margin-bottom: 0;
  }

  .oeos-suite-journey-label,
  .oeos-suite-journey-subtext {
    text-align: left;
    max-width: none;
  }
}


/* ==========================================================================
   CHECK LIST - Bold checkmarks with suite-accented color
   ========================================================================== */

.oeos-suite-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-1) var(--space-8);
}

.oeos-suite-check-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.045);
  font-size: var(--text-base);
  color: var(--deep-gray);
  line-height: 1.55;
}

.oeos-suite-check-list__item:last-child,
.oeos-suite-check-list__item:nth-last-child(2):nth-child(odd) {
  border-bottom: none;
}

.oeos-suite-check-list__icon {
  color: var(--suite-check-color, var(--suite-acquisition-color));
  font-size: 1.4rem;
  font-weight: 1000;
  margin-top: 0;
  flex-shrink: 0;
  line-height: 1.4;
}

.oeos-suite-check-list__text {
  flex: 1;
}

@media (max-width: 640px) {
  .oeos-suite-check-list {
    grid-template-columns: 1fr;
  }
  .oeos-suite-check-list__item:nth-last-child(2):nth-child(odd) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.045);
  }
  .oeos-suite-check-list__item:last-child {
    border-bottom: none;
  }
}


/* ==========================================================================
   ACTION PANEL NOTE - "Coming soon" indicator
   ========================================================================== */

.oeos-suite-action-note {
  font-size: var(--text-sm);
  font-style: italic;
  margin: var(--space-2) 0 0;
  opacity: 0.90;
}

.oeos-suite-theme--entity   .oeos-suite-action-note { color: rgba(52, 211, 153, 0.85); }
.oeos-suite-theme--asset    .oeos-suite-action-note { color: rgba(96, 165, 250, 0.85); }
.oeos-suite-theme--fund     .oeos-suite-action-note { color: rgba(167, 139, 250, 0.85); }
.oeos-suite-theme--partner  .oeos-suite-action-note { color: rgba(251, 146, 60, 0.85); }


/* ==========================================================================
   FUNCTIONAL OUTCOMES v2 - Premium panel rows with subtext
   ========================================================================== */

.oeos-suite-outcomes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
}

.oeos-suite-outcome-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  background: linear-gradient(135deg, var(--navy-blue), var(--navy-blue-light));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--suite-web-line, rgba(240, 192, 64, 0.55));
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-7);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--ease-base),
    box-shadow var(--ease-base),
    border-left-color var(--ease-base);
}

.oeos-suite-outcome-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.oeos-suite-theme--acquisition .oeos-suite-outcome-item:hover {
  border-left-color: var(--suite-acquisition-color);
}
.oeos-suite-theme--entity .oeos-suite-outcome-item:hover { border-left-color: var(--suite-entity-color); }
.oeos-suite-theme--asset .oeos-suite-outcome-item:hover  { border-left-color: var(--suite-asset-color); }
.oeos-suite-theme--fund .oeos-suite-outcome-item:hover   { border-left-color: var(--suite-fund-color); }
.oeos-suite-theme--partner .oeos-suite-outcome-item:hover{ border-left-color: var(--suite-partner-color); }

.oeos-suite-outcome-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(240, 192, 64, 0.10);
  border: 1.5px solid rgba(240, 192, 64, 0.28);
  color: var(--suite-acquisition-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.oeos-suite-theme--entity .oeos-suite-outcome-icon {
  background: rgba(52, 211, 153, 0.10);
  border-color: rgba(52, 211, 153, 0.28);
  color: var(--suite-entity-color);
}
.oeos-suite-theme--asset .oeos-suite-outcome-icon {
  background: rgba(96, 165, 250, 0.10);
  border-color: rgba(96, 165, 250, 0.28);
  color: var(--suite-asset-color);
}
.oeos-suite-theme--fund .oeos-suite-outcome-icon {
  background: rgba(167, 139, 250, 0.10);
  border-color: rgba(167, 139, 250, 0.28);
  color: var(--suite-fund-color);
}
.oeos-suite-theme--partner .oeos-suite-outcome-icon {
  background: rgba(251, 146, 60, 0.10);
  border-color: rgba(251, 146, 60, 0.28);
  color: var(--suite-partner-color);
}

.oeos-suite-outcome-copy {
  flex: 1;
  min-width: 0;
}

.oeos-suite-outcome-title {
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 var(--space-2);
  line-height: 1.35;
}

.oeos-suite-outcome-subtext {
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--suite-acquisition-color);
  line-height: 1.55;
  margin: 0;
  opacity: 1;
}

.oeos-suite-theme--entity .oeos-suite-outcome-subtext  { color: var(--suite-entity-color); }
.oeos-suite-theme--asset .oeos-suite-outcome-subtext   { color: var(--suite-asset-color); }
.oeos-suite-theme--fund .oeos-suite-outcome-subtext    { color: var(--suite-fund-color); }
.oeos-suite-theme--partner .oeos-suite-outcome-subtext { color: var(--suite-partner-color); }

@media (max-width: 768px) {
  .oeos-suite-outcomes {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   22.  CAPABILITY GRID - 3-column variant
   Use .oeos-suite-capability-grid--three alongside .oeos-suite-capability-grid
   when a suite has 6 capabilities (3×2 layout on desktop).
   ========================================================================== */

.oeos-suite-capability-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .oeos-suite-capability-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .oeos-suite-capability-grid--three {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   23.  ASSET VAULT INTELLIGENCE HUB - Checkpoint strip
   Reusable: .oeos-suite-hub-list / .oeos-suite-hub-item
   Light horizontal checklist rail - visually distinct from the dark navy
   outcome cards (.oeos-suite-outcome-item) used in the Functional Outcomes
   section. White background, compact icon chips, navy titles, muted subtext.
   ========================================================================== */

.oeos-suite-hub-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: var(--white);
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-top: 5px solid var(--suite-accent, var(--suite-asset-color));
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(10, 26, 47, 0.07);
}

.oeos-suite-hub-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  background: var(--white);
  border-right: 3px solid rgba(96, 165, 250, 0.15);
  padding: var(--space-6) var(--space-5);
  transition: background var(--ease-base);
}

.oeos-suite-hub-item:last-child {
  border-right: none;
}

.oeos-suite-hub-item:hover {
  background: var(--suite-accent-soft, rgba(96, 165, 250, 0.05));
}

.oeos-suite-hub-item-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy-blue), var(--navy-blue-light));
  border: 1.5px solid rgba(96, 165, 250, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.oeos-suite-hub-item-icon i {
  color: var(--suite-accent, var(--suite-asset-color));
  line-height: 1;
}



.oeos-suite-hub-item-copy {
  flex: 1;
  min-width: 0;
}

.oeos-suite-hub-item-title {
  font-family: var(--font-secondary);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: var(--space-1);
  line-height: 1.35;
}

.oeos-suite-hub-item-text {
  font-size: var(--text-base);
  color: #5a6a7e;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .oeos-suite-hub-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .oeos-suite-hub-item:nth-child(2) {
    border-right: none;
  }
  .oeos-suite-hub-item:nth-child(1),
  .oeos-suite-hub-item:nth-child(2) {
    border-bottom: 1px solid rgba(96, 165, 250, 0.15);
  }
}

@media (max-width: 576px) {
  .oeos-suite-hub-list {
    grid-template-columns: 1fr;
  }
  .oeos-suite-hub-item {
    border-right: none;
    border-bottom: 1px solid rgba(96, 165, 250, 0.15);
  }
  .oeos-suite-hub-item:last-child {
    border-bottom: none;
  }
}


/* ==========================================================================
   19. PLATFORM-IN-ACTION HERO  (premium white hero replacing original)
   ========================================================================== */

.oeos-platform-action-hero {
  background: var(--white);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
  margin-top: -30px;
}

.oeos-platform-action-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 25% 80%, rgba(48,142,251,0.05) 0%, transparent 65%),
    radial-gradient(ellipse 45% 55% at 75% 20%, rgba(52,211,153,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.oeos-platform-action-hero-inner {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 var(--space-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.oeos-platform-action-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, rgba(48, 142, 251, 0.10), rgba(52, 211, 153, 0.10));
  border: 1px solid rgba(48, 142, 251, 0.28);
  color: var(--primary-blue);
  box-shadow: 0 10px 28px rgba(48, 142, 251, 0.10);
  border-radius: var(--radius-full);
  padding: clamp(0.45rem, 1.6vw, 0.7rem) clamp(0.8rem, 3vw, 1.4rem);
  font-family: var(--font-secondary);
  font-size: clamp(0.68rem, 2vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-bottom: var(--space-7);
  max-width: min(100%, 520px);
  white-space: nowrap;
}

.oeos-platform-action-hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy-blue);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-1);
  white-space: nowrap;
}

.oeos-platform-action-hero-accent {
  background: linear-gradient(90deg, var(--primary-blue) 0%, #34D399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.oeos-platform-action-hero-sub {
  font-size: var(--text-lg);
  color: var(--deep-gray);
  line-height: 1.75;
  max-width: 700px;
  margin-bottom: var(--space-8);
}

.oeos-platform-action-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: -35px;
  margin-top: -20px;
}

.oeos-platform-action-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 2px solid rgba(10, 26, 47, 0.12);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy-blue);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.oeos-platform-action-pill-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.oeos-platform-action-hero-ctas {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-6);
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 768px) {
  .oeos-platform-action-hero {
    padding: 56px 0;
    text-align: center;
  }
  .oeos-platform-action-hero-inner {
    padding: 0 var(--space-4);
    text-align: center;
  }
  .oeos-platform-action-hero-title {
    font-size: clamp(1.75rem, 6vw, 2.6rem);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    white-space: normal;
  }
  .oeos-platform-action-hero-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .oeos-platform-action-pills {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .oeos-platform-action-hero {
    padding: 44px 0;
  }
  .oeos-platform-action-pill {
    font-size: 0.7rem;
    padding: 4px 11px;
  }
}

@media (max-width: 420px) {
  .oeos-platform-action-hero-eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.08em;
    padding-inline: 0.75rem;
  }
}


/* ==========================================================================
   20. PLATFORM-IN-ACTION INFOGRAPHIC SECTION
   ========================================================================== */

/* ── Section local variables (scoped — do not pollute global) ──────────── */
.oeos-platform-action-section {
  --action-acq:         #F0C040;
  --action-acq-dim:     rgba(240,192,64,0.10);
  --action-acq-border:  rgba(240,192,64,0.28);
  --action-dna:         #34D399;
  --action-dna-dim:     rgba(52,211,153,0.10);
  --action-dna-border:  rgba(52,211,153,0.28);
  --action-sentinel:    #A78BFA;
  --action-sent-dim:    rgba(167,139,250,0.10);
  --action-sent-border: rgba(167,139,250,0.28);
  --action-ok:          #52C77A;
  --action-warn:        #E0A830;
  --action-danger:      #E05C5C;
  --action-info:        #5CB8E0;
  /* Mockup dark skin */
  --action-bg-card:     #141E30;
  --action-bg-surface:  #1a2540;
  --action-border-clr:  rgba(255,255,255,0.07);
  --action-text:        #EEE9E0;
  --action-text-dim:    #8A98AC;
}

/* ── Shell ─────────────────────────────────────────────────────────────── */
.oeos-platform-action-shell {
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
}

/* ── Tabs wrapper ──────────────────────────────────────────────────────── */
.oeos-platform-action-tabs-row {
  display: flex;
  align-items: flex-end;
}

.oeos-platform-action-tabs {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  background: var(--action-bg-card);
  border: 1px solid var(--action-border-clr);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  padding: 8px 8px 0;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.oeos-platform-action-tabs::-webkit-scrollbar { display: none; }

.oeos-platform-action-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 8px 8px 0 0;
  font-family: var(--font-secondary);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--action-text-dim);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.oeos-platform-action-tab:hover:not(.oeos-platform-action-tab--active) {
  color: var(--action-text);
  background: rgba(255,255,255,0.04);
}
.oeos-platform-action-tab:focus-visible {
  outline: 2px solid var(--mint-accent);
  outline-offset: -2px;
  border-radius: 8px 8px 0 0;
}

.oeos-platform-action-tab--active.oeos-platform-action-tab--acq {
  background: var(--action-acq-dim);
  color: var(--action-acq);
}
.oeos-platform-action-tab--active.oeos-platform-action-tab--dna {
  background: var(--action-dna-dim);
  color: var(--action-dna);
}
.oeos-platform-action-tab--active.oeos-platform-action-tab--sentinel {
  background: var(--action-sent-dim);
  color: var(--action-sentinel);
}

/* ── Browser chrome ────────────────────────────────────────────────────── */
.oeos-platform-action-browser-chrome {
  background: var(--action-bg-card);
  border: 1px solid var(--action-border-clr);
  border-top: none;
  border-bottom: none;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.oeos-platform-action-browser-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.oeos-pat-bdot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.oeos-pat-bdot--r { background: #FF5F57; }
.oeos-pat-bdot--y { background: #FEBC2E; }
.oeos-pat-bdot--g { background: #28C840; }

.oeos-platform-action-browser-url {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--action-border-clr);
  border-radius: 6px;
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--action-text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Progress track + fill (scaleX animation, replaces static accent bar) */
.oeos-pat-progress-track {
  width: 100%;
  height: 4px;
  background: rgba(148, 163, 184, 0.18);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.oeos-pat-progress-fill {
  width: 100%;
  height: 100%;
  background: var(--oeos-pat-active-accent, var(--primary-blue));
  transform: scaleX(0);
  transform-origin: left center;
  border-radius: 999px;
  animation: none;
}

.oeos-pat-progress-fill.is-running {
  animation: oeosPatProgressFill 5000ms linear forwards;
}

@keyframes oeosPatProgressFill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ── Panels container ──────────────────────────────────────────────────── */
.oeos-platform-action-panels {
  background: var(--action-bg-card);
  border: 1px solid var(--action-border-clr);
  border-top: none;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  min-height: 460px;
}

.oeos-platform-action-panel {
  display: none;
}
.oeos-platform-action-panel--active {
  display: block;
}

/* ── Dots ──────────────────────────────────────────────────────────────── */
/* ── Controls row: prev arrow + dots + next arrow ─────────────────────── */
.oeos-platform-action-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-bottom: var(--space-2);
}

.oeos-platform-action-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.oeos-platform-action-arrow {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(48, 142, 251, 0.24);
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 8px 22px rgba(15, 35, 70, 0.10);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}
.oeos-platform-action-arrow:hover {
  transform: translateY(-1px);
  border-color: rgba(52, 211, 153, 0.55);
  background: linear-gradient(135deg, rgba(48, 142, 251, 0.10), rgba(52, 211, 153, 0.12));
  box-shadow: 0 12px 28px rgba(48, 142, 251, 0.16);
}
.oeos-platform-action-arrow:focus-visible {
  outline: 3px solid rgba(48, 142, 251, 0.25);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: no-preference) {
  .oeos-platform-action-arrow {
    transition:
      transform 0.18s ease,
      border-color 0.18s ease,
      background 0.18s ease,
      box-shadow 0.18s ease;
  }
}

@media (max-width: 480px) {
  .oeos-platform-action-arrow {
    width: 34px;
    height: 34px;
    font-size: 0.82rem;
  }
}
.oeos-platform-action-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(48, 142, 251, 0.20);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}
.oeos-platform-action-dot:focus-visible {
  outline: 2px solid var(--mint-accent);
  outline-offset: 2px;
}
/* Active dot: always light-blue regardless of which tab is active */
.oeos-platform-action-dot--active {
  width: 24px;
  border-radius: 4px;
  background: var(--primary-blue);
}


/* ── DEAL QUEUE (Panel 1 — Acquisition) ─────────────────────────────────── */

.oeos-pat-dq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--action-bg-surface);
  border-bottom: 1px solid var(--action-border-clr);
  flex-wrap: wrap;
  gap: 8px;
}
.oeos-pat-dq-header-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.oeos-pat-dq-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-secondary);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--action-acq);
}
.oeos-pat-dq-badge {
  background: var(--action-acq-dim);
  border: 1px solid var(--action-acq-border);
  color: var(--action-acq);
  border-radius: 6px;
  padding: 3px 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
}

.oeos-pat-dq-filter-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-bottom: 1px solid var(--action-border-clr);
  background: var(--action-bg-card);
  flex-wrap: wrap;
}
.oeos-pat-dq-filter {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 5px;
  border: 1px solid var(--action-border-clr);
  background: transparent;
  color: var(--action-text-dim);
  font-family: var(--font-secondary);
  white-space: nowrap;
}
.oeos-pat-dq-filter--active {
  background: var(--action-acq-dim);
  border-color: var(--action-acq-border);
  color: var(--action-acq);
}

.oeos-pat-dq-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--action-border-clr);
}
.oeos-pat-dq-row:last-child { border-bottom: none; }
.oeos-pat-dq-row--selected {
  background: rgba(240,192,64,0.05);
  border-left: 2px solid var(--action-acq);
  padding-left: 18px;
}

.oeos-pat-dq-score {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
}
.oeos-pat-dq-score--hi  { background: rgba(82,199,122,0.13);  color: #52C77A; }
.oeos-pat-dq-score--med { background: rgba(240,192,64,0.12);   color: var(--action-acq); }
.oeos-pat-dq-score--lo  { background: rgba(224,92,92,0.12);    color: #E05C5C; }

.oeos-pat-dq-prop { flex: 1; min-width: 0; }
.oeos-pat-dq-addr {
  font-family: var(--font-secondary);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--action-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.oeos-pat-dq-meta {
  font-size: 11px;
  color: var(--action-text-dim);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.oeos-pat-dq-price {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--action-text);
  white-space: nowrap;
  flex-shrink: 0;
}
.oeos-pat-dq-status {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.oeos-pat-dq-status--new       { background: rgba(92,184,224,0.12);  color: #5CB8E0; }
.oeos-pat-dq-status--analyzing { background: var(--action-acq-dim);  color: var(--action-acq); }
.oeos-pat-dq-status--offer     { background: rgba(82,199,122,0.12);  color: #52C77A; }

.oeos-pat-dq-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 20px;
  border-top: 1px solid var(--action-border-clr);
  background: var(--action-bg-surface);
  flex-wrap: wrap;
}
.oeos-pat-dq-stat { text-align: center; }
.oeos-pat-dq-stat-num { font-family: var(--font-mono); font-size: 16px; font-weight: 700; }
.oeos-pat-dq-stat-lbl { font-size: 10px; color: var(--action-text-dim); text-transform: uppercase; letter-spacing: 0.07em; margin-top: 2px; }
.oeos-pat-dq-footer-note { font-size: 11px; color: var(--action-text-dim); margin-left: auto; }

/* helper color classes */
.oeos-pat-acq-color { color: var(--action-acq); }
.oeos-pat-dim-color { color: var(--action-text-dim); }
.oeos-pat-text-dim  { color: var(--action-text-dim); }


/* ── SPLIT LAYOUT (Panels 2 & 3) ───────────────────────────────────────── */
.oeos-pat-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
}
.oeos-pat-split-left {
  padding: 32px;
  border-right: 1px solid var(--action-border-clr);
  display: flex;
  flex-direction: column;
}
.oeos-pat-split-right {
  padding: 32px;
  background: var(--action-bg-surface);
}


/* ── ASSET DNA panel ────────────────────────────────────────────────────── */

.oeos-pat-prop-badge {
  display: inline-block;
  border-radius: 5px;
  padding: 2px 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  border: 1px solid transparent;
}
.oeos-pat-prop-badge--owned {
  background: rgba(52,211,153,0.12);
  border-color: rgba(52,211,153,0.30);
  color: #34D399;
}
.oeos-pat-prop-address {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  color: var(--action-text);
  margin-bottom: 3px;
  line-height: 1.2;
}
.oeos-pat-prop-sub { font-size: 12px; color: var(--action-text-dim); margin-bottom: 14px; }
.oeos-pat-prop-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.oeos-pat-ptag {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--action-border-clr);
  border-radius: 5px;
  padding: 3px 9px;
  font-size: 11.5px;
  color: var(--action-text-dim);
}
.oeos-pat-ptag--highlight {
  background: rgba(240,192,64,0.10);
  border-color: var(--action-acq-border);
  color: var(--action-acq);
}

/* Health score ring */
.oeos-pat-health-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}
.oeos-pat-score-ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-shrink: 0;
  position: relative;
  font-family: var(--font-mono);
}
.oeos-pat-score-ring svg {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.oeos-pat-score-num   { font-size: 24px; font-weight: 700; z-index: 1; line-height: 1; }
.oeos-pat-score-denom { font-size: 10px; color: var(--action-text-dim); z-index: 1; }
.oeos-pat-score-label { font-size: 9px; color: var(--action-text-dim); text-transform: uppercase; letter-spacing: 0.08em; z-index: 1; }

.oeos-pat-health-dims { flex: 1; display: flex; flex-direction: column; gap: 7px; }
.oeos-pat-dim-row     { display: flex; align-items: center; gap: 8px; }
.oeos-pat-dim-label   { font-size: 11px; color: var(--action-text-dim); width: 68px; flex-shrink: 0; }
.oeos-pat-dim-bar-bg  { flex: 1; height: 5px; background: rgba(255,255,255,0.07); border-radius: 3px; overflow: hidden; }
.oeos-pat-dim-bar     { height: 100%; border-radius: 3px; }
.oeos-pat-dim-score   { font-size: 11px; font-family: var(--font-mono); width: 22px; text-align: right; color: var(--action-text-dim); }

.oeos-pat-suggestion-banner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(52,211,153,0.07);
  border: 1px solid rgba(52,211,153,0.20);
  border-radius: 8px;
  padding: 10px 12px;
  margin-top: auto;
}
.oeos-pat-suggestion-icon { font-size: 15px; flex-shrink: 0; line-height: 1.5; }
.oeos-pat-suggestion-text {
  font-size: 12px;
  color: var(--action-text-dim);
  line-height: 1.5;
}
.oeos-pat-suggestion-text strong { color: var(--action-dna); }

/* Right side module nav */
.oeos-pat-section-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--action-text-dim);
  margin-bottom: 10px;
}
.oeos-pat-screen-tabs {
  display: flex;
  border-bottom: 1px solid var(--action-border-clr);
  flex-wrap: wrap;
}
.oeos-pat-stab {
  padding: 8px 12px;
  font-size: 12px;
  color: var(--action-text-dim);
  border-bottom: 2px solid transparent;
  font-family: var(--font-secondary);
  font-weight: 500;
  white-space: nowrap;
  cursor: default;
}
.oeos-pat-stab--active { color: var(--action-dna); border-bottom-color: var(--action-dna); }
.oeos-pat-badge {
  background: #E05C5C;
  color: #fff;
  border-radius: 9px;
  padding: 1px 5px;
  font-size: 10px;
  font-weight: 700;
  margin-left: 3px;
}

.oeos-pat-dna-cards { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.oeos-pat-dna-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 13px;
  background: var(--action-bg-card);
  border: 1px solid var(--action-border-clr);
  border-radius: 8px;
}
.oeos-pat-dna-card-icon  { font-size: 17px; flex-shrink: 0; line-height: 1.4; }
.oeos-pat-dna-card-title { font-size: 12.5px; font-weight: 600; color: var(--action-text); margin-bottom: 2px; }
.oeos-pat-dna-card-sub   { font-size: 11.5px; color: var(--action-text-dim); line-height: 1.4; }


/* ── SENTINEL panel ─────────────────────────────────────────────────────── */

.oeos-pat-sentinel-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--action-sent-dim);
  border: 1px solid var(--action-sent-border);
  color: var(--action-sentinel);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  font-family: var(--font-secondary);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  width: fit-content;
}
.oeos-pat-sentinel-title {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--action-text);
  line-height: 1.25;
  margin-bottom: 12px;
}
.oeos-pat-sentinel-body {
  font-size: 13px;
  color: var(--action-text-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}
.oeos-pat-sentinel-features { display: flex; flex-direction: column; gap: 10px; }
.oeos-pat-sentinel-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  background: var(--action-bg-surface);
  border: 1px solid var(--action-border-clr);
  border-radius: 8px;
}
.oeos-pat-sentinel-feat-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--action-sent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--action-sentinel);
  flex-shrink: 0;
}
.oeos-pat-sentinel-feat-title { font-size: 12.5px; font-weight: 600; color: var(--action-text); margin-bottom: 2px; }
.oeos-pat-sentinel-feat-sub   { font-size: 11.5px; color: var(--action-text-dim); line-height: 1.4; }

.oeos-pat-srp-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}
.oeos-pat-srp-title { font-size: 13.5px; font-weight: 700; color: var(--action-sentinel); }
.oeos-pat-srp-sub   { font-size: 11px; color: var(--action-text-dim); margin-top: 2px; }
.oeos-pat-srp-alert-count {
  background: rgba(224,92,92,0.15);
  color: #E05C5C;
  border: 1px solid rgba(224,92,92,0.25);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-mono);
  white-space: nowrap;
}

.oeos-pat-monitor-list { display: flex; flex-direction: column; gap: 7px; }
.oeos-pat-monitor-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  background: var(--action-bg-card);
  border: 1px solid var(--action-border-clr);
  border-radius: 7px;
}
.oeos-pat-monitor-status {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.oeos-pat-monitor-status--alert { background: #E05C5C; box-shadow: 0 0 5px rgba(224,92,92,0.6); }
.oeos-pat-monitor-status--warn  { background: #E0A830; box-shadow: 0 0 5px rgba(224,168,48,0.6); }
.oeos-pat-monitor-status--ok    { background: #52C77A; box-shadow: 0 0 5px rgba(82,199,122,0.6); }
.oeos-pat-monitor-name { flex: 1; font-size: 12px; color: var(--action-text); }
.oeos-pat-monitor-tag  {
  font-size: 10.5px; padding: 2px 7px;
  border-radius: 4px; font-weight: 600; white-space: nowrap;
}
.oeos-pat-monitor-tag--alert  { background: rgba(224,92,92,0.15);  color: #E05C5C; }
.oeos-pat-monitor-tag--medium { background: rgba(224,168,48,0.12); color: #E0A830; }
.oeos-pat-monitor-tag--active { background: rgba(82,199,122,0.10); color: #52C77A; }


/* ── Responsive ─────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .oeos-platform-action-shell {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .oeos-pat-split-layout {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .oeos-pat-split-left {
    border-right: none;
    border-bottom: 1px solid var(--action-border-clr);
    padding: 24px 20px;
  }
  .oeos-pat-split-right {
    padding: 24px 20px;
  }
  .oeos-platform-action-tab {
    padding: 8px 12px;
    font-size: var(--text-xs);
    gap: 5px;
  }
  .oeos-pat-dq-meta,
  .oeos-pat-dq-price       { display: none; }
  .oeos-pat-dq-footer-note { display: none; }
  .oeos-platform-action-panels {
    min-height: unset;
  }
}

@media (max-width: 480px) {
  .oeos-pat-split-left,
  .oeos-pat-split-right   { padding: 16px; }
  .oeos-pat-dq-row        { padding: 10px 14px; gap: 8px; }
  .oeos-pat-dq-header,
  .oeos-pat-dq-filter-row,
  .oeos-pat-dq-footer     { padding: 10px 14px; }
  .oeos-pat-health-row    { gap: 14px; }
  .oeos-pat-score-ring    { width: 72px; height: 72px; }
  .oeos-pat-score-num     { font-size: 20px; }
  .oeos-pat-dq-filter     { font-size: 10px; padding: 2px 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .oeos-pat-progress-fill.is-running {
    animation: none;
    transform: scaleX(1);
  }
}


/* ==========================================================================
   SHORT-WIDE DESKTOP  (e.g. 1440 × 520 — "Desktop Short Wide" device)
   Scoped to Platform Overview hero only. No effect on normal desktops
   (height ≥ 650px), tablets, or mobiles.
   ========================================================================== */
@media (min-width: 1200px) and (max-height: 650px) {
  /* Reduce vertical breathing room so hero doesn't dominate the short viewport */
  .oeos-platform-action-hero {
    padding: 48px 0;
  }

  /* Scale heading down from ~52px (at 1440px) to ~42px — stays one line,
     just less dominant on a short-height desktop screen */
  .oeos-platform-action-hero-title {
    font-size: clamp(1.6rem, 3vw, 2.6rem);
  }
}

