/*
 * Otera Component Library — Variant Styles
 * Source of truth for every .demo-* class used in the gallery AND in real Otera pages.
 * Last updated: 2026-05-28
 *
 * Pair this file with landing-page-base.css (which provides tokens, typography scale,
 * containers, padding scaffold, fluid root font).
 *
 * Naming convention: .demo-{block}__{element}--{modifier} (BEM-ish, gallery-scoped).
 * Future refactor: rename to production Webflow names (.section_*, .card_*, .button-*).
 *
 * NOTE on fluid root font-size system:
 *   The :root / html font-size scale lives in components.html (and in any consuming page).
 *   It is intentionally NOT in this file so consumers can opt out. If you want a single
 *   source of truth, move it into landing-page-base.css.
 */

/* ════════════════════════════════════════════════════════════════
   HERO VARIANTS H1–H7 (gallery-scoped, production-faithful)
   Background: dark with subtle agentic shape pattern at low opacity.
   Headlines use pale-blue color (#a8c7d5) with white <strong> highlights: production pattern.
   ════════════════════════════════════════════════════════════════ */
.demo-hero {
  background: #1b2123;
  color: rgba(255,255,255,.95);
  position: relative;
  overflow: hidden;
  padding: 3rem 2rem 3.5rem;
  isolation: isolate;
}
.demo-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 8% 18%, rgba(255,255,255,.04) 6px, transparent 7px),
    radial-gradient(circle at 92% 12%, rgba(255,255,255,.04) 6px, transparent 7px),
    radial-gradient(circle at 18% 78%, rgba(255,255,255,.04) 6px, transparent 7px),
    radial-gradient(circle at 82% 82%, rgba(255,255,255,.04) 6px, transparent 7px),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.03) 6px, transparent 7px);
  background-size: 240px 240px;
  background-repeat: repeat;
  z-index: 0;
  pointer-events: none;
  opacity: .65;
}
.demo-hero > * { position: relative; z-index: 1; }
.demo-hero__eyebrow {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #5cf998;
  text-align: center;
  margin-bottom: 1rem;
}
.demo-hero__eyebrow.is-pale { color: #a8c7d5; }
.demo-hero__h1 {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  color: #a8c7d5;
  text-align: center;
  margin: 0 auto;
  max-width: 880px;
  letter-spacing: -.01em;
}
.demo-hero__h1 strong { color: #fff; font-weight: 500; }
.demo-hero__h1.is-left { text-align: left; margin: 0; }
.demo-hero__sub {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  max-width: 640px;
  margin: 1.25rem auto 0;
}
.demo-hero__sub.is-left { text-align: left; margin: 1.25rem 0 0; }
.demo-hero__ctas {
  display: flex; justify-content: center; gap: .75rem;
  margin-top: 1.5rem; flex-wrap: wrap;
}
.demo-hero__ctas.is-left { justify-content: flex-start; }
.demo-hero__btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 1.5rem;
  font-size: .82rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: 4px; text-decoration: none;
  border: 1px solid transparent; line-height: 1;
  white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s;
}
.demo-hero__btn--mint { background: #5cf998; color: #1b2123; border-color: rgba(0,0,0,.10); }
.demo-hero__btn--mint:hover { background: #3fe37d; }
.demo-hero__btn--outline { background: transparent; color: #fff; border-color: #fff; }
.demo-hero__btn--outline:hover { border-color: #5cf998; color: #5cf998; }
/* H1: Homepage hero: split 2-col with video right */
.demo-hero__grid {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width:800px){ .demo-hero__grid { grid-template-columns: 1fr; } }
.demo-hero__analysts {
  display: flex; align-items: center; gap: 1.5rem; margin-top: 1.5rem;
  color: rgba(255,255,255,.45);
  font-weight: 800;
}
.demo-hero__analysts span {
  font-size: 1.1rem; letter-spacing: -.01em;
  font-family: 'Figtree', serif;
}
.demo-hero__video {
  position: relative; aspect-ratio: 16/9;
  border-radius: 8px; overflow: hidden;
  background: linear-gradient(135deg, #2c4a3f 0%, #4a5d4f 50%, #5a6358 100%);
  display: flex; align-items: center; justify-content: center;
}
.demo-hero__video::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 70% 50%, rgba(180,140,100,.4) 0%, transparent 40%),
    radial-gradient(circle at 30% 30%, rgba(80,120,90,.5) 0%, transparent 50%);
  pointer-events: none;
}
.demo-hero__play {
  position: relative; z-index: 2;
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.95);
  display: flex; align-items: center; justify-content: center;
  color: #1b2123; font-size: 1.4rem;
}
.demo-hero__video-badge {
  position: absolute; bottom: 1rem; left: 1rem; z-index: 2;
  display: flex; align-items: center; gap: .75rem;
}
.demo-hero__video-badge-logo {
  background: #5cf998; color: #1b2123;
  padding: .35rem .8rem; border-radius: 4px;
  font-weight: 900; font-size: .82rem; letter-spacing: -.02em;
}
.demo-hero__video-badge-attr {
  background: rgba(255,255,255,.95); color: #1b2123;
  padding: .35rem .8rem; border-radius: 4px;
  font-weight: 800; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
}
/* H2: Product page: centered + product UI below */
.demo-hero__media-below {
  margin: 2.5rem auto 0; max-width: 980px;
  border-radius: 8px; overflow: hidden;
  background: #fff;
}
.demo-hero__product-ui {
  background: #fff; padding: 1rem 1.25rem; color: #1b2123;
  font-family: 'Figtree', sans-serif;
}
.demo-hero__product-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 1rem; border-bottom: 1px solid #eef1f3;
}
.demo-hero__product-bar-l { display: flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .9rem; }
.demo-hero__product-bar-r { display: flex; gap: .35rem; }
.demo-hero__product-tab { padding: .3rem .75rem; border: 1px solid #eef1f3; border-radius: 4px; font-size: .72rem; }
.demo-hero__product-tab.is-active { background: #1b2123; color: #fff; border-color: #1b2123; }
.demo-hero__product-table { width: 100%; font-size: .72rem; margin-top: .75rem; }
.demo-hero__product-table th { text-align: left; color: #8097a2; font-weight: 600; padding: .4rem .25rem; font-size: .65rem; }
.demo-hero__product-table td { padding: .55rem .25rem; border-top: 1px solid #f3f5f6; color: #374151; }
.demo-hero__product-table td.id { color: #2563eb; font-weight: 600; }
.demo-hero__pill { display:inline-flex; align-items:center; gap:.25rem; padding:.15rem .45rem; border-radius:4px; font-size:.62rem; font-weight:700; }
.demo-hero__pill--high { background: #fee2e2; color: #b91c1c; }
.demo-hero__pill--low { background: #d1fae5; color: #065f46; }
.demo-hero__pill--med { background: #fef3c7; color: #92400e; }
/* H3: Industry hero: photo + mint stat tiles */
.demo-hero__photo {
  margin: 1.75rem auto 0; max-width: 980px;
  border-radius: 8px; overflow: hidden; aspect-ratio: 16/7;
  background: #2c3a3f url('./photography/unsplash/linkedin-sales-solutions-hrhjn6ZTgrM-unsplash.jpg') center/cover;
}
.demo-hero__tiles {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin: 1.25rem auto 0; max-width: 980px;
}
.demo-hero__tile {
  background: #2e373a;
  color: #fff;
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.demo-hero__tile-val {
  color: #5cf998; font-weight: 600; font-size: 2.5rem;
  line-height: 1; letter-spacing: -.02em;
  font-family: 'Figtree', sans-serif;
}
.demo-hero__tile-lbl { color: rgba(255,255,255,.78); font-size: .92rem; margin-top: .65rem; line-height: 1.4; }
@media (max-width:700px){ .demo-hero__tiles { grid-template-columns: 1fr; } }
/* H5: Partners hero: analyst cards row */
.demo-hero__analyst-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin: 2rem auto 0; max-width: 880px;
}
.demo-hero__analyst-card {
  background: #2e373a; border-radius: 8px;
  padding: 1.5rem 1rem; text-align: center;
}
.demo-hero__analyst-card-logo {
  color: #fff; font-weight: 800; font-size: 1.2rem;
  letter-spacing: -.01em; font-family: 'Figtree', serif;
  margin-bottom: .5rem;
}
.demo-hero__analyst-card-cap { color: rgba(255,255,255,.55); font-size: .82rem; }
@media (max-width:700px){ .demo-hero__analyst-cards { grid-template-columns: 1fr; } }

/* H8: dark hero with image straddling the dark/white boundary (half on each) */
.demo-hero-straddle { position: relative; background: #fff; }
.demo-hero-straddle__top {
  /* Extra bottom padding so the upper half of the image sits on dark */
  padding: 3rem 2rem 14.5rem;
  text-align: center;
}
.demo-hero-straddle__media-wrap {
  /* image pulled up so its vertical center sits exactly on the dark/white boundary */
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: -11.5rem auto 3rem;
  padding: 0 2rem;
}
.demo-hero-straddle__media {
  aspect-ratio: 16/7;
  background-size: cover;
  background-position: center;
  background-color: #2c3a3f;
  border-radius: 12px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.45);
}
.demo-hero-straddle__bottom { height: 2rem; background: #fff; }
@media (max-width:900px) {
  .demo-hero-straddle__top { padding-bottom: 11rem; }
  .demo-hero-straddle__media-wrap { margin-top: -8rem; }
}
@media (max-width:600px) {
  .demo-hero-straddle__top { padding-bottom: 8.5rem; }
  .demo-hero-straddle__media-wrap { margin-top: -6rem; padding: 0 1rem; }
}

/* ════════════════════════════════════════════════════════════════
   PROOF BAR / LOGO STRIP (PB1-PB5)
   ════════════════════════════════════════════════════════════════ */
.demo-proofbar { padding: 2.25rem 2rem; font-family: 'Figtree', sans-serif; }
.demo-proofbar__label {
  text-align: center; font-size: .82rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 1.75rem; color: inherit;
}
.demo-proofbar__row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-around;
  gap: 2rem; max-width: 1200px; margin: 0 auto;
}
.demo-proofbar__logo {
  font-size: 1.1rem; font-weight: 800; color: #1b2123;
  letter-spacing: -.01em; white-space: nowrap; line-height: 1.1;
  display: inline-flex; align-items: center; gap: .35rem;
}
.demo-proofbar__logo--small { font-size: .82rem; }
.demo-proofbar__logo-img { max-height: 28px; width: auto; filter: brightness(0); opacity: .85; }

/* ── N1: Standard fixed dark nav (production-faithful, gallery-scoped) ── */
.demo-navbar {
  background: #1b2123;
  color: #fff;
  width: 100%;
  font-family: 'Figtree', sans-serif;
}
.demo-navbar__wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem 2rem;
  min-height: 80px;
}
.demo-navbar__logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; min-width: 110px; }
.demo-navbar__logo img { height: 36px !important; width: 110px !important; min-width: 110px; max-width: 110px; display: block !important; object-fit: contain; object-position: left center; }
.demo-navbar__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.75rem;
}
.demo-navbar__link {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 800;
  font-size: .82rem;
  padding: .5rem .25rem;
  transition: color .2s;
  white-space: nowrap;
}
.demo-navbar__link:hover { color: #5cf998; }
.demo-navbar__cta {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.demo-navbar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.4rem;
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-radius: 4px;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
  border: 1px solid transparent;
  white-space: nowrap;
  line-height: 1;
}
.demo-navbar__btn--mint {
  background: #5cf998;
  color: #1b2123;
  border-color: rgba(0,0,0,.10);
}
.demo-navbar__btn--mint:hover { background: #3fe37d; }
.demo-navbar__btn--outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.demo-navbar__btn--outline:hover { border-color: #5cf998; color: #5cf998; }
@media (max-width: 900px) {
  .demo-navbar__wrap { grid-template-columns: auto auto; gap: 1rem; padding: .85rem 1rem; }
  .demo-navbar__menu { display: none; }
}

/* ════════════════════════════════════════════════════════════════
   SHARED SECTION PRIMITIVES (gallery-scoped, .demo-* prefix)
   Built from 49 reference screenshots, 2026-05-28
   ════════════════════════════════════════════════════════════════ */
.demo-sec { padding: clamp(3rem, 6vw, 5.5rem) clamp(1.25rem, 4vw, 3rem); font-family: 'Figtree', sans-serif; position: relative; isolation: isolate; }
.demo-sec--light { background: #fbfcfe; color: #1b2123; }
.demo-sec--soft  { background: #eef4f7; color: #1b2123; }
.demo-sec--dark  { background: #1b2123; color: rgba(255,255,255,.95); }
.demo-sec--mint  { background: #5CF998; color: #0f1416; }
.demo-sec__inner { max-width: 1200px; margin: 0 auto; }
.demo-sec__inner--narrow { max-width: 880px; margin: 0 auto; text-align: center; }
.demo-eyebrow { display:block; text-align:center; font-size:.7rem; font-weight:800; letter-spacing:.18em; text-transform:uppercase; color:#8097a2; margin-bottom: 1rem; }
.demo-sec--dark .demo-eyebrow { color: #5cf998; }
.demo-h2 { font-family:'Figtree',sans-serif; font-size:clamp(1.6rem,3vw,2.4rem); font-weight:500; line-height:1.15; letter-spacing:-.01em; color:#a8c7d5; text-align:center; margin: 0 auto; max-width: 880px; }
.demo-h2 strong { color:#1b2123; font-weight:500; }
.demo-sec--dark .demo-h2 strong { color:#fff; }
.demo-lede { color: #455055; text-align:center; max-width: 720px; margin: 1.25rem auto 0; line-height:1.6; }
.demo-sec--dark .demo-lede { color: rgba(255,255,255,.7); }
.demo-btn { display:inline-flex; align-items:center; justify-content:center; padding:.85rem 1.5rem; font-size:.78rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; border-radius:4px; text-decoration:none; border:1px solid transparent; line-height:1; transition: background .2s; }
.demo-btn--mint { background:#5cf998; color:#1b2123; }
.demo-btn--mint:hover { background:#3fe37d; }
.demo-btn--outline-dark { background:transparent; color:#1b2123; border-color:#1b2123; }
.demo-btn--outline-light { background:transparent; color:#fff; border-color:#fff; }

/* Pattern background helper (subtle geometric shapes) */
.demo-pattern::before {
  content:''; position:absolute; inset:0; z-index:-1; pointer-events:none;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(168,199,213,.18) 5px, transparent 6px),
    radial-gradient(circle at 90% 15%, rgba(168,199,213,.14) 5px, transparent 6px),
    radial-gradient(circle at 15% 80%, rgba(168,199,213,.14) 5px, transparent 6px),
    radial-gradient(circle at 85% 78%, rgba(168,199,213,.18) 5px, transparent 6px);
  background-size: 320px 320px; background-repeat: repeat; opacity:.7;
}
.demo-sec--dark.demo-pattern::before {
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,.05) 5px, transparent 6px),
    radial-gradient(circle at 90% 15%, rgba(255,255,255,.04) 5px, transparent 6px),
    radial-gradient(circle at 15% 80%, rgba(255,255,255,.04) 5px, transparent 6px),
    radial-gradient(circle at 85% 78%, rgba(255,255,255,.05) 5px, transparent 6px);
}

/* RS: Stat tiles */
.demo-stat-tiles { display:grid; gap:1rem; max-width:1200px; margin: 0 auto; }
.demo-stat-tiles.is-3 { grid-template-columns: repeat(3,1fr); }
.demo-stat-tiles.is-2 { grid-template-columns: repeat(2,1fr); }
.demo-stat-tile { background:#252e30; border-radius:14px; padding:2rem 1.75rem; }
.demo-stat-tile__num { display:block; font-size:clamp(2rem,4vw,3rem); font-weight:600; color:#5CF998; line-height:1; letter-spacing:-.01em; }
.demo-stat-tile__lbl { display:block; color:rgba(255,255,255,.78); margin-top:1rem; line-height:1.5; }
@media (max-width:720px){ .demo-stat-tiles.is-3{grid-template-columns:1fr;} }

/* RS4: 4-col dark stat band with source attribution (borderless cells + dividers) */
.demo-reality { display:grid; grid-template-columns:repeat(4,1fr); gap:0; max-width:1200px; margin:0 auto; }
.demo-reality__cell { padding:.5rem 1.75rem; text-align:center; border-left:1px solid rgba(255,255,255,.10); }
.demo-reality__cell:first-child { border-left:0; }
.demo-reality__num { display:block; font-size:clamp(2rem,4vw,3rem); font-weight:700; color:#5CF998; line-height:1; letter-spacing:-.01em; }
.demo-reality__desc { display:block; color:rgba(255,255,255,.80); margin-top:.85rem; line-height:1.45; font-size:.95rem; }
.demo-reality__src { display:block; color:rgba(255,255,255,.45); margin-top:.7rem; font-size:.66rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
@media (max-width:820px){ .demo-reality{grid-template-columns:repeat(2,1fr);row-gap:2.5rem;} .demo-reality__cell:nth-child(odd){border-left:0;} }
@media (max-width:480px){ .demo-reality{grid-template-columns:1fr;} .demo-reality__cell{border-left:0;} }

/* RS5: inline 4-col stat row, thin top divider, no boxes (hero-footer style) */
.demo-statrow { display:grid; grid-template-columns:repeat(4,1fr); gap:2rem; max-width:1000px; margin:0 auto; padding-top:2.5rem; border-top:1px solid rgba(255,255,255,.12); text-align:center; }
.demo-statrow__item { display:flex; flex-direction:column; gap:.4rem; }
.demo-statrow__num { font-size:clamp(1.6rem,2.6vw,2.3rem); font-weight:800; color:#5CF998; line-height:1; letter-spacing:-.02em; }
.demo-statrow__lbl { font-size:.92rem; color:rgba(255,255,255,.72); line-height:1.4; }
@media (max-width:760px){ .demo-statrow{grid-template-columns:repeat(2,1fr);gap:1.75rem;} }
@media (max-width:460px){ .demo-statrow{grid-template-columns:1fr;} }

/* Pillar tabs (Autonomy/Control/Velocity) */
.demo-tabs { display:flex; justify-content:center; gap:2.5rem; border-bottom:1px solid rgba(0,0,0,.08); margin-bottom: 2.5rem; }
.demo-sec--dark .demo-tabs { border-bottom-color: rgba(255,255,255,.1); }
.demo-tab { padding:.85rem .25rem; font-size:.75rem; font-weight:800; letter-spacing:.14em; text-transform:uppercase; color:#8097a2; cursor:pointer; border-bottom: 2px solid transparent; transform: translateY(1px); }
.demo-tab.is-active { color:#1b2123; border-bottom-color:#5cf998; }
.demo-sec--dark .demo-tab { color: rgba(255,255,255,.5); }
.demo-sec--dark .demo-tab.is-active { color:#fff; }
.demo-pillar-grid { display:grid; grid-template-columns: .9fr 1.4fr; gap: 2rem; align-items:center; max-width:1200px; margin: 0 auto; }
.demo-pillar-card { background:#1b2123; color:#fff; border-radius:14px; padding:2.25rem 2rem; }
.demo-pillar-card__chip { display:inline-flex; align-items:center; gap:.45rem; background:#5cf998; color:#0f1416; padding:.3rem .65rem; border-radius:4px; font-weight:800; font-size:.65rem; letter-spacing:.14em; text-transform:uppercase; margin-bottom:1.5rem; }
.demo-pillar-card__chip::before { content:''; width:8px;height:8px;background:#0f1416;border-radius:2px; }
.demo-pillar-card__title { font-size: clamp(1.4rem, 2.2vw, 2rem); font-weight:500; line-height:1.15; color:#a8c7d5; margin-bottom: 1rem; }
.demo-pillar-card__title strong { color:#fff; font-weight:500; }
.demo-pillar-card__sub { font-weight:700; color:#fff; margin-top:1.5rem; margin-bottom:.5rem; }
.demo-pillar-card__copy { color: rgba(255,255,255,.7); line-height:1.55; }
.demo-pillar-card__list { list-style:none; padding:0; margin: 1.25rem 0 0; display:flex; flex-direction:column; gap:.6rem; }
.demo-pillar-card__list li { color: rgba(255,255,255,.78); padding-left: 1.25rem; position:relative; }
.demo-pillar-card__list li::before { content:''; position:absolute; left:0; top:.55em; width:.6rem;height:.6rem;background:#5cf998;border-radius:2px; }
.demo-pillar-ui { background:#fff; border-radius:12px; min-height: 320px; box-shadow: 0 12px 30px -12px rgba(0,0,0,.18); padding:1rem; color:#1b2123; font-size:.7rem; }
@media (max-width:900px){ .demo-pillar-grid{grid-template-columns:1fr;} }

/* Before/After comparison cards */
.demo-ba-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.demo-ba-card { padding: 2rem 1.75rem; border-radius:18px; }
.demo-ba-card--manual { background:#eef4f7; color:#1b2123; }
.demo-ba-card--auto { background:#5cf998; color:#0f1416; }
.demo-ba-card__icon { display:flex; align-items:center; justify-content:center; width:96px; height:96px; margin: .5rem auto 1.25rem; }
.demo-ba-card__icon img { width:100%; height:100%; object-fit: cover; border-radius: 12px; }
.demo-ba-card__icon--hex { background: #1b2123; clip-path: polygon(25% 5%,75% 5%,98% 50%,75% 95%,25% 95%,2% 50%); border-radius: 0; overflow:hidden; }
.demo-ba-card__icon--hex img { clip-path: inherit; }
.demo-ba-card__icon--mark { background:#1b2123; clip-path: polygon(25% 5%,75% 5%,98% 50%,75% 95%,25% 95%,2% 50%); display:flex; align-items:center; justify-content:center; color:#5cf998; font-weight:900; font-size:2rem; }
.demo-ba-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .35rem; }
.demo-ba-card .demo-ba-sub { font-size:.7rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase; opacity:.85; }
.demo-ba-card__list { list-style:none; padding:0; margin: 1.25rem 0 0; display:flex; flex-direction:column; gap:.55rem; }
.demo-ba-card__list li { padding-left:1.5rem; position:relative; font-size:.92rem; }
.demo-ba-card__list li::before { content:''; position:absolute; left:0; top:.4em; width:.95rem; height:.95rem; border-radius:3px; background:#fff; }
.demo-ba-card--auto .demo-ba-card__list li::before { background:#fff; }
.demo-ba-card__check-icon { color:#0f1416; }
@media (max-width:780px){ .demo-ba-grid{grid-template-columns:1fr;} }

/* Solution split (text + product/photo) */
.demo-split { display:grid; grid-template-columns: .95fr 1.05fr; gap: 2.5rem; align-items:center; max-width: 1200px; margin: 0 auto; }
.demo-split--reverse > :first-child { order: 2; }
.demo-split__media { border-radius:12px; overflow:hidden; aspect-ratio: 16/10; background:#2c3a3f center/cover no-repeat; box-shadow: 0 12px 30px -12px rgba(0,0,0,.2); }
.demo-split__title { font-size: clamp(1.5rem, 2.6vw, 2.25rem); font-weight: 500; color:#a8c7d5; line-height:1.15; }
.demo-split__title strong { color:#1b2123; font-weight:500; }
.demo-sec--dark .demo-split__title strong { color:#fff; }
.demo-split__lede { color:#455055; margin-top: 1.25rem; line-height:1.6; }
.demo-sec--dark .demo-split__lede { color: rgba(255,255,255,.7); }
@media (max-width:900px){ .demo-split{grid-template-columns:1fr;} .demo-split--reverse > :first-child{order:0;} }

/* HW tabs / agent menu split */
.demo-hw-grid { display:grid; grid-template-columns: 240px 1fr; gap: 1rem; max-width:1100px; margin: 0 auto; background:#1b2123; border-radius: 14px; overflow:hidden; }
.demo-hw-grid__menu { background:#1b2123; padding: 1.5rem 1.25rem; display:flex; flex-direction:column; gap:.4rem; border-right:1px solid rgba(255,255,255,.08); }
.demo-hw-grid__title { color:#fff; font-weight:700; margin-bottom: 1rem; line-height:1.2; }
.demo-hw-grid__item { display:flex; gap:.6rem; align-items:center; padding:.65rem .75rem; border-radius:8px; color: rgba(255,255,255,.78); font-size:.85rem; }
.demo-hw-grid__item.is-active { background: #2e373a; color:#fff; }
.demo-hw-grid__item::before { content:''; width:1rem;height:1rem; background:#5cf998; border-radius:3px; flex-shrink:0; }
.demo-hw-grid__body { background:#252e30; color: rgba(255,255,255,.85); padding: 2rem 2rem; font-size:.92rem; line-height:1.6; }
.demo-hw-grid__body h4 { color:#fff; font-size:1.1rem; font-weight:700; margin-bottom: .85rem; }
.demo-hw-grid__body h5 { color:#fff; font-size:.92rem; font-weight:700; margin-top: 1.25rem; margin-bottom:.5rem; }
.demo-hw-grid__body ul { list-style:none; padding:0; display:flex; flex-direction:column; gap:.45rem; }
.demo-hw-grid__body ul li { padding-left:1rem; position:relative; }
.demo-hw-grid__body ul li::before { content:''; position:absolute; left:0; top:.55em; width:.4rem;height:.4rem; background:#5cf998; border-radius:1px; }
@media (max-width:780px){ .demo-hw-grid{grid-template-columns:1fr;} }

/* Agent grid cards */
.demo-agent-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width:1100px; margin: 0 auto; }
.demo-agent-card { background:#1b2123; color:#fff; border-radius:14px; padding:1.75rem 1.5rem; min-height:170px; }
.demo-agent-card__chip { display:inline-flex; width:36px;height:36px; align-items:center;justify-content:center; background:#5cf998; color:#0f1416; border-radius:8px; margin-bottom:1rem; font-weight:900; }
.demo-agent-card__title { color:#fff; font-weight:700; margin-bottom:.5rem; font-size:1.05rem; }
.demo-agent-card__desc { color: rgba(255,255,255,.7); font-size:.88rem; line-height:1.5; }
.demo-agent-card--light { background:#eef4f7; color:#1b2123; }
.demo-agent-card--light .demo-agent-card__title { color:#1b2123; }
.demo-agent-card--light .demo-agent-card__desc { color:#455055; }
@media (max-width:780px){ .demo-agent-grid{grid-template-columns:1fr;} }

/* Metric cards (3-col with check icons) */
.demo-metric-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:1rem; max-width:1100px; margin: 2.5rem auto 0; }
.demo-metric-card { background:#eef4f7; border-radius:14px; padding:1.75rem 1.5rem; }
.demo-metric-card__chip { width:36px;height:36px;background:#5cf998;border-radius:8px;display:flex;align-items:center;justify-content:center;color:#0f1416;font-weight:900;margin-bottom:1rem; }
.demo-metric-card__title { font-weight:700; color:#1b2123; margin-bottom: .35rem; }
.demo-metric-card__sub { font-size:.78rem; color:#8097a2; }
@media (max-width:780px){ .demo-metric-grid{grid-template-columns:1fr;} }

/* FAQ */
.demo-faq { max-width: 880px; margin: 0 auto; display:flex; flex-direction:column; gap: .5rem; }
.demo-faq__item { background:#eef4f7; border-radius:8px; padding: 1.1rem 1.4rem; display:flex; align-items:center; justify-content:space-between; gap:1rem; font-weight:500; }
.demo-faq__plus { color:#5cf998; font-weight:300; font-size:1.5rem; line-height:1; }

/* Integration logo grid */
.demo-logo-grid { display:grid; grid-template-columns: repeat(5, 1fr); gap: .85rem; max-width:1100px; margin: 0 auto; }
.demo-logo-grid__cell { background:#fff; border:1px solid #e9f0f5; border-radius:10px; padding: 1.25rem 1rem; display:flex; align-items:center; justify-content:center; font-weight:800; color:#1b2123; font-size: 1rem; letter-spacing:-.01em; min-height: 76px; }
@media (max-width:780px){ .demo-logo-grid{grid-template-columns:repeat(2,1fr);} }

/* Compliance badges row */
.demo-badges { display:flex; flex-wrap:wrap; justify-content:center; align-items:center; gap: 2rem; margin-top: 2rem; }
.demo-badges img { height: 70px; width: auto; }

/* Testimonial / Quote */
.demo-quote-split { display:grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.demo-quote-card { background:#252e30; color:#fff; border-radius:14px; padding: 2rem 1.75rem; display:flex; flex-direction:column; gap: 1rem; min-height: 280px; }
.demo-quote-card__text { color: rgba(255,255,255,.85); line-height:1.55; font-size:.95rem; flex:1; }
.demo-quote-card__attr { display:flex; align-items:center; gap: .85rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.08); }
.demo-quote-card__attr-name { color:#fff; font-weight:700; }
.demo-quote-card__attr-role { color: rgba(255,255,255,.55); font-size:.75rem; letter-spacing:.1em; text-transform:uppercase; }
@media (max-width:780px){ .demo-quote-split{grid-template-columns:1fr;} }

/* Career / Investor split (photo or building) */
.demo-prose-split { display:grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width:1100px; margin: 2rem auto 0; align-items:start; }
.demo-prose-split__media { aspect-ratio: 4/5; background:#2c3a3f center/cover no-repeat; border-radius: 12px; }
.demo-prose-split__body h4 { font-size:.7rem; letter-spacing:.14em; text-transform:uppercase; color:#8097a2; font-weight:800; margin-top:1.5rem; margin-bottom: .25rem; }
.demo-prose-split__body h4:first-child { margin-top: 0; }
.demo-prose-split__body p { color:#455055; line-height:1.6; margin-bottom: 1rem; }
@media (max-width:780px){ .demo-prose-split{grid-template-columns:1fr;} }

/* CTA mint band + mascot row */
.demo-cta-mint { background:#5cf998; color:#0f1416; border-radius:14px; padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 3rem); text-align:center; max-width:1100px; margin: 0 auto; position:relative; }
.demo-cta-mint__eyebrow { font-size:.7rem; font-weight:800; letter-spacing:.18em; text-transform:uppercase; color:#0f1416; margin-bottom: 1.25rem; }
.demo-cta-mint__title { font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight:600; line-height:1.15; color:#0f1416; margin-bottom: 2rem; }
.demo-cta-mint__btn { background:#0f1416; color:#5cf998; padding:1rem 2rem; }
.demo-cta-mint__btn:hover { background:#1b2123; }
.demo-mascots { display:flex; justify-content:center; align-items:flex-end; gap:.5rem; margin-top: 1.75rem; flex-wrap:wrap; }
.demo-mascots img { max-height: 80px; width:auto; }

/* Footer */
.demo-footer { background:#1b2123; color:#fff; padding: clamp(2.5rem,5vw,4rem) clamp(1.5rem,4vw,3rem); }
.demo-footer__top { display:grid; grid-template-columns: 1fr 1fr; gap:2rem; margin-bottom: 2rem; align-items:start; }
.demo-footer__brand { font-size: 2.25rem; font-weight: 900; color:#5cf998; letter-spacing:-.02em; }
.demo-footer__tag { color:rgba(255,255,255,.7); font-size:.95rem; margin-top:.25rem; }
.demo-footer__tag strong { color:#fff; font-weight:500; }
.demo-footer__sub-h { font-size:.7rem; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.55); font-weight:800; margin-bottom: .5rem; }
.demo-footer__sub-input { display:flex; gap:.4rem; }
.demo-footer__sub-input input { flex:1; background: #252e30; color: #fff; border: 1px solid rgba(255,255,255,.15); border-radius:6px; padding: .6rem .8rem; font-family:inherit; font-size:.85rem; }
.demo-footer__sub-input button { background:#5cf998; color:#0f1416; border:none; border-radius:6px; padding: 0 .9rem; font-size:1rem; cursor:pointer; }
.demo-footer__grid { display:grid; grid-template-columns: repeat(6, 1fr); gap: 1.25rem; }
.demo-footer__col h5 { font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.6); font-weight:800; margin-bottom: .9rem; }
.demo-footer__col ul { list-style:none; padding:0; display:flex; flex-direction:column; gap: .5rem; }
.demo-footer__col li a { color: rgba(255,255,255,.85); font-size:.9rem; text-decoration:none; }
.demo-footer__col li a:hover { color: #5cf998; }
@media (max-width:900px){ .demo-footer__top, .demo-footer__grid{grid-template-columns:1fr 1fr;} }

/* Iceberg / illustration split (PS3) */
.demo-iceberg { display:grid; grid-template-columns: 1fr 1.4fr; gap:2rem; max-width:1100px; margin: 0 auto; align-items:center; }
.demo-iceberg__art { background: radial-gradient(circle at 50% 30%, #fff 0%, #fff 25%, transparent 26%), linear-gradient(to bottom, #fff 0%, #fff 35%, #a8c7d5 36%, #a8c7d5 100%); aspect-ratio: 4/5; border-radius: 16px; position:relative; display:flex; align-items:flex-end; justify-content:center; padding: 1.5rem; color: #1b2123; font-weight:900; text-align:center; font-size:1.5rem; line-height:1.05; letter-spacing:-.01em; overflow:hidden; }
.demo-iceberg__art::before { content:'PRODUCTIVE'; position:absolute; top:1rem; left:50%; transform:translateX(-50%); font-size:.7rem; letter-spacing:.14em; color:#1b2123; font-weight:800; }
.demo-iceberg__body p { color:#455055; line-height:1.6; margin-bottom: 1rem; }
.demo-iceberg__body p strong { color:#1b2123; font-weight:700; }
.demo-iceberg__body h3 { font-size: clamp(1.5rem,2.6vw,2.2rem); font-weight:500; color:#a8c7d5; line-height:1.15; margin-bottom: 1.25rem; }
.demo-iceberg__body h3 strong { color:#1b2123; font-weight:500; }
@media (max-width:780px){ .demo-iceberg{grid-template-columns:1fr;} }

/* Folder grid for M2 */
.demo-folder-split { display:grid; grid-template-columns: 1fr 1fr; gap:2.5rem; align-items:center; max-width:1100px; margin: 0 auto; }
.demo-folder-grid { display:grid; grid-template-columns: repeat(5, 1fr); gap: .55rem; }
.demo-folder { aspect-ratio: 1; background:#5cf998; border-radius: 10px; display:flex; align-items:center; justify-content:center; font-size: 1.6rem; color: #0f1416; }
.demo-folder.is-red { background:#ef4444; color:#fff; }
.demo-folder::before { content:'\1F4C2'; }
@media (max-width:780px){ .demo-folder-split{grid-template-columns:1fr;} }

/* Media relations dual card */
.demo-mr-wrap { background:#1b2123; border-radius: 18px; padding: 2.5rem 2rem; max-width:1100px; margin: 0 auto; display:grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.demo-mr-card h4 { font-size: 1.1rem; color:#fff; font-weight:700; margin: .5rem 0; }
.demo-mr-card__chip { width:40px;height:40px;background:#5cf998;border-radius:8px;display:flex;align-items:center;justify-content:center;color:#0f1416;margin-bottom: .5rem; }
.demo-mr-card p { color: rgba(255,255,255,.7); line-height: 1.5; margin-bottom: 1.25rem; font-size:.92rem; }
@media (max-width:780px){ .demo-mr-wrap{grid-template-columns:1fr;} }

/* Section intro (centered title + lede only) */
.demo-intro { text-align:center; max-width: 860px; margin: 0 auto; }

/* Analyst feature cards (mint cards w/ logo + meta) */
.demo-af-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width:1100px; margin: 0 auto; }
.demo-af-card { background:#5cf998; color:#0f1416; border-radius:14px; padding: 1.5rem 1.25rem; }
.demo-af-card__meta { font-size:.62rem; letter-spacing:.14em; text-transform:uppercase; color: rgba(15,20,22,.65); font-weight:800; margin-bottom:.65rem; }
.demo-af-card__logo { font-size: 1.5rem; font-weight: 900; color:#0f1416; letter-spacing:-.02em; margin-bottom: 1rem; font-family: 'Figtree',serif; }
.demo-af-card__date { font-size:.7rem; letter-spacing:.12em; text-transform:uppercase; color: rgba(15,20,22,.65); font-weight:700; margin-bottom: .5rem; }
.demo-af-card__title { color:#0f1416; line-height:1.4; font-size:.85rem; margin-bottom: 1.25rem; min-height: 4rem; }
.demo-af-card__btn { display:inline-block; background:#0f1416; color:#fff; padding:.5rem .9rem; border-radius:4px; font-size:.65rem; letter-spacing:.14em; text-transform:uppercase; font-weight:800; text-decoration:none; }
@media (max-width:780px){ .demo-af-grid{grid-template-columns:1fr;} }

/* Partner ecosystem diagram */
.demo-pe-orbit { position:relative; aspect-ratio: 16/10; max-width:1100px; margin: 0 auto; background:#1b2123; border-radius: 16px; overflow:hidden; }
.demo-pe-orbit::before, .demo-pe-orbit::after { content:''; position:absolute; left:50%; top:50%; transform: translate(-50%,-50%); border:1px solid rgba(255,255,255,.12); border-radius:50%; }
.demo-pe-orbit::before { width: 70%; aspect-ratio:1; }
.demo-pe-orbit::after { width: 100%; aspect-ratio:1; }
.demo-pe-orbit__center { position:absolute; left:50%; top:50%; transform: translate(-50%,-50%); background:#5cf998; color:#0f1416; width: 200px; height:200px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:900; font-size:2rem; }
.demo-pe-orbit__chip { position:absolute; background:#2e373a; color:#fff; padding:.45rem .85rem; border-radius:6px; font-weight:700; font-size:.78rem; }
.demo-pe-orbit__chip.is-tl { left:62%; top:18%; background:#fff; color:#0f1416; border-top:2px solid #5cf998; }
.demo-pe-orbit__chip.is-l { left:18%; top:46%; }
.demo-pe-orbit__chip.is-br { left:60%; top:78%; }

/* PE: partner logo grid in card */
.demo-pe-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.demo-pe-cell { background:#fbfcfe; border:1px solid #e9f0f5; border-radius:10px; padding: 1rem; display:flex; align-items:center; justify-content:center; font-weight:800; color:#1b2123; font-size:.95rem; min-height: 64px; }
.demo-pe-cell.is-active { background:#fff; border-color: #5cf998; }
.demo-pe-split { display:grid; grid-template-columns: 1.2fr 1fr; gap:1.25rem; max-width:1100px; margin: 0 auto; align-items:start; }
@media (max-width:900px){ .demo-pe-split{grid-template-columns:1fr;} }

/* ════════════════════════════════════════════════════════════════
   PL1 · 3-tab feature switcher (Autonomy / Control / Velocity)
   Working tabbed component: click a tab → swap panel.
   ════════════════════════════════════════════════════════════════ */
.demo-pl { padding: 4rem clamp(1.25rem, 4vw, 3.5rem); }
.demo-pl__h2 {
  max-width: 880px; margin: 0 auto 2.5rem; text-align: center;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem); font-weight: 500;
  letter-spacing: -.01em; line-height: 1.25; color: #455055;
}
.demo-pl__hl {
  display: inline-block; padding: .1em .55em; border-radius: 6px;
  font-weight: 600; color: #1b2123;
}
.demo-pl__hl--pink   { background: #f95cc5; color: #1b2123; }
.demo-pl__hl--mint   { background: #5cf998; color: #1b2123; }
.demo-pl__hl--violet { background: #ac5cf9; color: #fff; }

.demo-pl__tabs {
  display: flex; justify-content: center; gap: 2.5rem;
  margin: 0 auto 2.5rem; max-width: 720px;
  border-bottom: 1px solid #e2eaee;
}
.demo-pl__tab {
  background: transparent; border: 0; border-bottom: 2px solid transparent;
  padding: .9rem .25rem; cursor: pointer;
  font-family: inherit; font-size: .82rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; color: #8097a2;
  transition: color .2s, border-color .2s;
}
.demo-pl__tab:hover { color: #1b2123; }
.demo-pl__tab.is-active { color: #1b2123; border-bottom-color: #1b2123; }

.demo-pl__panel { display: none; }
.demo-pl__panel.is-active { display: block; }

.demo-pl__panel-left {
  background: #1b2123; color: rgba(251,252,254,.95);
  border-radius: 14px; padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.demo-pl__chip {
  display: inline-flex; align-self: flex-start;
  padding: .35rem .65rem; border-radius: 4px;
  font-size: .65rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: #1b2123;
}
.demo-pl__chip--pink   { background: #f95cc5; }
.demo-pl__chip--mint   { background: #5cf998; }
.demo-pl__chip--violet { background: #ac5cf9; color: #fff; }

.demo-pl__panel-h {
  font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 500;
  line-height: 1.2; color: #fff; margin: 0;
}
.demo-pl__panel-tag {
  font-size: .95rem; font-weight: 400; line-height: 1.55;
  color: rgba(251,252,254,.72); margin: 0;
}
.demo-pl__panel-ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .55rem;
}
.demo-pl__panel-ul li {
  font-size: .9rem; color: rgba(251,252,254,.8); padding-left: 1.25rem; position: relative;
}
.demo-pl__panel-ul li::before {
  content: ''; position: absolute; left: 0; top: .5em;
  width: 6px; height: 6px; border-radius: 50%; background: #5cf998;
}

.demo-pl__panel-right {
  background: #f6f9fb; border-radius: 14px; overflow: hidden;
  display: flex; align-items: stretch; min-height: 320px;
}
.demo-pl__panel-right .media-placeholder,
.demo-pl__panel-right img { width: 100%; height: 100%; display: block; min-height: 320px; object-fit: cover; }

/* PL1 v2 — connected box (left dark accordion + right image), sub-point click swaps image */
.demo-pl__box {
  width: 100%;
  display: grid; grid-template-columns: .85fr 1.15fr;
  background: #1b2123;
  border-radius: 18px;
  overflow: hidden;
  align-items: center;
}
/* Pin the image height: it follows the right column's aspect-ratio.
   The left column auto-matches via grid stretch. */
@media (max-width: 800px) { .demo-pl__box { grid-template-columns: 1fr; } }

.demo-pl__box-left {
  background: #1b2123;
  color: rgba(251,252,254,.95);
  padding: 2.25rem 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.demo-pl__box-right {
  position: relative;
  min-width: 0;
  overflow: hidden;
  align-self: stretch;
  display: flex; align-items: center; justify-content: center;
  padding: 2.5rem;                /* breathing room so image never touches edges */
}
.demo-pl__box-right .demo-pl__image {
  width: 100%;
  max-width: 100%;
  display: block;
}
.demo-pl__box-right .demo-pl__image[hidden] { display: none; }
/* The placeholder slot fills the entire right half. The aspect-ratio is set by
   the right column itself, not the slot — so the owner can drop any image (landscape
   or portrait) and use object-fit: cover to fit. Below resets the aspect-ratio
   inherited from the global media-placeholder--screenshot rule. */
.demo-pl__box-right .media-placeholder {
  width: 100%; height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  border-radius: 0;
  border: 2px dashed rgba(92,249,152,.45);   /* mint dashed border, clearly visible on dark */
  background: rgba(92,249,152,.04);           /* faint mint tint so the slot is obvious */
  display: flex; align-items: center; justify-content: center;
  color: rgba(92,249,152,.7);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.demo-pl__box-right .media-placeholder::after {
  content: 'Image goes here (landscape or portrait)';
}
.demo-pl__box-right img {
  width: 100%; height: auto; display: block;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
}

/* Per-pillar gradient backgrounds (matches live site pattern) */
.demo-pl__box--pink   .demo-pl__box-right { background: linear-gradient(180deg, #f95cc5 0%, #a8c7d5 100%); }
.demo-pl__box--mint   .demo-pl__box-right { background: linear-gradient(180deg, #5cf998 0%, #a8c7d5 100%); }
.demo-pl__box--violet .demo-pl__box-right { background: linear-gradient(180deg, #ac5cf9 0%, #a8c7d5 100%); }


/* Accordion sub-points */
.demo-pl__subs {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(255,255,255,.08);
}
.demo-pl__sub { border-bottom: 1px solid rgba(255,255,255,.08); }
.demo-pl__sub-btn {
  width: 100%; background: transparent; border: 0; color: inherit;
  padding: .9rem 0; cursor: pointer; font-family: inherit;
  display: flex; align-items: center; gap: .65rem;
  text-align: left;
  font-size: .92rem; font-weight: 500; line-height: 1.3;
  transition: color .2s;
}
.demo-pl__sub-btn:hover { color: #5cf998; }
.demo-pl__sub-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #5cf998;
  flex-shrink: 0;
}
.demo-pl__sub-title { flex: 1; }
.demo-pl__sub-chev {
  font-size: 1.1rem; color: rgba(255,255,255,.5);
  transition: transform .25s ease, color .2s;
}
.demo-pl__sub.is-open .demo-pl__sub-chev { transform: rotate(45deg); color: #5cf998; }
.demo-pl__sub-body {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
}
.demo-pl__sub.is-open .demo-pl__sub-body { max-height: 600px; }
.demo-pl__sub-body p {
  padding: 0 0 1rem 1.15rem;
  font-size: .88rem; line-height: 1.6;
  color: rgba(251,252,254,.7);
}

/* ============================================================
   PS1a — Pillar headline + mascot row (functional tabs)
   Reuses .demo-tabs and .demo-mascots from base styles.
   Only adds panel show/hide on top.
   ============================================================ */
.demo-ps1a__panel { display: none; }
.demo-ps1a__panel.is-active { display: block; }
.demo-ps1a .demo-tab[data-ps1a-tab] { cursor: pointer; }
.demo-ps1a__image-wrap { margin: 3rem auto 0; max-width: 1000px; }
.demo-ps1a__image { width: 100%; height: auto; display: none; border-radius: 14px; box-shadow: 0 12px 32px rgba(0,0,0,.12); }
.demo-ps1a__image.is-active { display: block; }

/* ============================================================
   PS1b — Sticky scroll image stack (one at a time, next scrolls OVER)
   Each card pins at top:0 and fills the section's viewport area.
   Next card scrolls up and covers the previous.
   ============================================================ */
/* Sticky needs scroll-able, non-clipped ancestors. Free PS1b from the gallery card. */
#PS1b.lib-variant,
#PS1b .lib-variant__render,
#PS1b .demo-sec,
#PS1b .demo-ps1b {
  overflow: visible !important;
  transform: none !important;
  isolation: auto !important;
  contain: none !important;
}
/* NOTE: .demo-ps1b__stack INTENTIONALLY keeps overflow-y:auto — it's the scroll port. */

.demo-ps1b { padding: 4rem clamp(1.25rem, 4vw, 3.5rem); }
.demo-ps1b__intro { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.demo-ps1b__stack {
  max-width: 1100px;
  margin: 0 auto;
  height: 80vh;
  overflow-y: auto;
  padding: 2rem;
  border-radius: 24px;
  background: #f5f7f8;
  scrollbar-width: none;
  padding-bottom: 30vh;          /* runway so last card has time to fully pin */
}
.demo-ps1b__stack::-webkit-scrollbar { display: none; }
.demo-ps1b__card {
  position: sticky;
  top: calc(var(--i, 0) * 2rem);
  border-radius: 24px;
  overflow: hidden;
  background: #5cf998;
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
  padding: 2rem;
  margin-bottom: 1rem;
}
.demo-ps1b__card:last-child { margin-bottom: 0; }
.demo-ps1b__card img {
  width: 100%; height: auto; display: block;
  border-radius: 18px;
}

/* PS4 — Light hero with full landscape image */
.demo-ps4__image { margin: 3rem auto 0; max-width: 1100px; }
.demo-ps4__image img { width: 100%; height: auto; display: block; border-radius: 14px; box-shadow: 0 12px 32px rgba(0,0,0,.12); }

/* PS5 — Eyebrow + big headline + photo/prose split */
.demo-ps5 { padding: 4rem clamp(1.25rem, 4vw, 3.5rem); }
.demo-ps5__top { text-align: center; max-width: 900px; margin: 0 auto 3rem; }
.demo-ps5__h2 { font-family: 'Figtree', sans-serif; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 500; color: #a8c7d5; letter-spacing: -.01em; line-height: 1.05; margin: .75rem 0 0; }
.demo-ps5__h2 strong { color: #1b2123; font-weight: 600; }
.demo-ps5__split { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 800px) { .demo-ps5__split { grid-template-columns: 1fr; } }
.demo-ps5__media img { width: 100%; height: auto; display: block; border-radius: 14px; }
.demo-ps5__body p { color: #455055; line-height: 1.7; margin: 0 0 1.1rem; }
.demo-eyebrow--inline { display: inline-block; margin-top: 1.5rem; }

/* PS6 — 3 scenario cards (centered title + grid) */
.demo-ps6 { padding: 4rem clamp(1.25rem, 4vw, 3.5rem); }
.demo-ps6__grid { max-width: 1100px; margin: 3rem auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 800px) { .demo-ps6__grid { grid-template-columns: 1fr; } }
.demo-ps6__card { background: #eef4f7; border-radius: 14px; padding: 1.75rem; }
.demo-ps6__icon { width: 44px; height: 44px; border-radius: 10px; background: #5cf998; color: #1b2123; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1rem; }
.demo-ps6__h3 { font-family: 'Figtree', sans-serif; font-weight: 700; font-size: 1.15rem; color: #1b2123; margin: 0 0 .6rem; }
.demo-ps6__card p { color: #455055; line-height: 1.6; margin: 0; }

/* PS7 — Dark agent rail + prose deep-dive */
.demo-ps7 { padding: 4rem clamp(1.25rem, 4vw, 3.5rem); }
.demo-ps7__layout { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 320px 1fr; gap: 0; background: #1b2123; border-radius: 18px; overflow: hidden; }
@media (max-width: 800px) { .demo-ps7__layout { grid-template-columns: 1fr; } }
.demo-ps7__rail { background: #1b2123; color: #fff; padding: 2rem 1.5rem; }
.demo-ps7__rail-h { font-weight: 800; letter-spacing: .04em; margin-bottom: 1.25rem; color: #fff; }
.demo-ps7__agents { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .35rem; }
.demo-ps7__agents li { display: flex; align-items: center; gap: .75rem; padding: .75rem .9rem; border-radius: 8px; color: rgba(255,255,255,.7); font-size: .9rem; cursor: pointer; }
.demo-ps7__agents li i { font-size: 1.1rem; color: #5cf998; }
.demo-ps7__agents li.is-active { background: rgba(92,249,152,.12); color: #fff; }
.demo-ps7__body { background: #fff; color: #1b2123; padding: 2rem 2.5rem; }
.demo-ps7__body h3 { font-family: 'Figtree', sans-serif; font-weight: 700; font-size: 1.1rem; margin: 1.5rem 0 .75rem; color: #1b2123; }
.demo-ps7__body p { color: #455055; line-height: 1.7; margin: 0 0 1rem; }
.demo-ps7__body ul { list-style: none; padding: 0; margin: 0; }
.demo-ps7__body ul li { padding: .5rem 0 .5rem 1.25rem; position: relative; color: #455055; line-height: 1.6; }
.demo-ps7__body ul li::before { content: '•'; position: absolute; left: 0; color: #5cf998; font-weight: 800; }

/* PS6 — Slider with progress + arrows (overrides prior grid layout) */
.demo-ps6__slider { max-width: 1100px; margin: 3rem auto 0; }
.demo-ps6__track { display: flex; gap: 1.25rem; overflow: hidden; scroll-behavior: smooth; }
.demo-ps6__track .demo-ps6__card { flex: 0 0 calc((100% - 2.5rem) / 3); }
@media (max-width: 800px) { .demo-ps6__track .demo-ps6__card { flex: 0 0 100%; } }
.demo-ps6__controls { display: flex; align-items: center; gap: 2rem; margin-top: 1.75rem; }
.demo-ps6__progress { flex: 1; height: 4px; background: #d9e2e7; border-radius: 2px; overflow: hidden; }
.demo-ps6__progress-fill { display: block; height: 100%; width: 33.33%; background: #5cf998; border-radius: 2px; transition: width .35s ease; }
.demo-ps6__arrows { display: flex; gap: .5rem; }
.demo-ps6__arrow { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(0,0,0,.15); background: transparent; color: #1b2123; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.1rem; }
.demo-ps6__arrow:hover { border-color: #1b2123; background: #1b2123; color: #5cf998; }

/* PS7 — darker outer band so white prose card stands out; rail items clickable */
.demo-ps7 { background: #eef4f7; }
.demo-ps7__agents li { transition: background .15s, color .15s; }
.demo-ps7__agents li:hover { background: rgba(92,249,152,.08); color: #fff; }

/* PS6 — section light, cards take the soft pale-blue (darker than bg) */
.demo-ps6 { background: #fbfcfe; }
.demo-ps6__card { background: #eef4f7; }

/* PS7 — kill any pattern decoration leak, scope clean */
.demo-ps7::before { display: none !important; }
.demo-ps7__panel { display: none; }
.demo-ps7__panel.is-active { display: block; }

/* BA1a — Before Otera / With Otera + photo */
.demo-ba1a { padding: 4rem clamp(1.25rem, 4vw, 3.5rem); }
.demo-ba1a__layout { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 800px) { .demo-ba1a__layout { grid-template-columns: 1fr; } }
.demo-ba1a__sub { color: #455055; line-height: 1.6; margin: 1rem 0 1.75rem; max-width: 560px; }
.demo-ba1a__compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.demo-ba1a__col { background: #eef4f7; border-radius: 14px; padding: 1.5rem 1.4rem; }
.demo-ba1a__col-h { font-weight: 700; color: #1b2123; margin-bottom: .9rem; font-size: 1rem; }
.demo-ba1a__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; }
.demo-ba1a__col li { display: flex; align-items: flex-start; gap: .55rem; color: #455055; font-size: .92rem; line-height: 1.45; }
.demo-ba1a__col--before li i { color: rgba(120,120,120,.65); }
.demo-ba1a__col--after  li i { color: #5cf998; background: #1b2123; border-radius: 50%; padding: 2px; font-size: .8rem; }
.demo-ba1a__photo { aspect-ratio: 4/5; border-radius: 18px; overflow: hidden; }
.demo-ba1a__photo .media-placeholder { width: 100%; height: 100%; min-height: 0; }

/* BA1b — Dark feature comparison table (Partner Economics) */
.demo-ba1b { padding: 4rem clamp(1.25rem, 4vw, 3.5rem); }
.demo-ba1b__intro { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.demo-ba1b__h2 {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  color: #1b2123;
  letter-spacing: -.01em;
  line-height: 1.1;
  margin: 0;
}
.demo-ba1b__h2 span { color: #5cf998; font-weight: 500; }
.demo-ba1b__sub { color: #8097a2; line-height: 1.6; margin: 1rem auto 0; max-width: 600px; font-size: .95rem; }
.demo-ba1b__table {
  max-width: 1080px; margin: 0 auto;
  background: #1b2123;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}
.demo-ba1b__row {
  display: grid; grid-template-columns: 1.1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.demo-ba1b__row:last-child { border-bottom: 0; }
.demo-ba1b__row--head { background: rgba(255,255,255,.03); }
.demo-ba1b__row--head .demo-ba1b__cell { color: #fff; font-weight: 700; font-size: .92rem; }
.demo-ba1b__cell {
  padding: 1.1rem 1.5rem;
  display: flex; align-items: center; gap: .7rem;
  font-size: .92rem;
  color: rgba(255,255,255,.78);
  border-right: 1px solid rgba(255,255,255,.06);
}
.demo-ba1b__cell:last-child { border-right: 0; }
.demo-ba1b__cell--rowlabel { color: #fff; font-weight: 600; }
.demo-ba1b__chip {
  flex: 0 0 18px;
  width: 18px; height: 18px;
  border-radius: 5px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .65rem;
  letter-spacing: -.02em;
}
.demo-ba1b__chip--off   { background: #ef4444; }
.demo-ba1b__chip--on    { background: #5cf998; }
.demo-ba1b__chip--otera { background: #5cf998; color: #1b2123; }

/* BA4 — FAQ accordion */
.demo-ba4 { padding: 4rem clamp(1.25rem, 4vw, 3.5rem); }
.demo-ba4__list { max-width: 820px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: .6rem; }
.demo-ba4__item { background: #eef4f7; border-radius: 12px; padding: 0 1.25rem; overflow: hidden; }
.demo-ba4__item summary { list-style: none; cursor: pointer; padding: 1.1rem 0; display: flex; align-items: center; justify-content: space-between; font-weight: 600; color: #1b2123; }
.demo-ba4__item summary::-webkit-details-marker { display: none; }
.demo-ba4__item summary i { transition: transform .2s; color: #5cf998; background: #1b2123; border-radius: 50%; padding: 4px; font-size: .9rem; }
.demo-ba4__item[open] summary i { transform: rotate(45deg); }
.demo-ba4__body { padding: 0 0 1.1rem; color: #455055; line-height: 1.6; }

/* BA1a-v2 — exact 16.19.39 match (eyebrow + headline + 2-col compare + photo, inside a soft card) */
.demo-ba1av2 { padding: 4rem clamp(1.25rem, 4vw, 3.5rem); background: #fbfcfe; }
.demo-ba1av2__card {
  max-width: 1180px; margin: 0 auto;
  background: #eef4f7;
  border-radius: 20px;
  padding: 2.5rem;
  display: grid; grid-template-columns: 1.45fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 900px) { .demo-ba1av2__card { grid-template-columns: 1fr; } }
.demo-ba1av2__eyebrow {
  display: inline-block;
  font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: #1b2123; margin-bottom: 1rem;
}
.demo-ba1av2__h2 {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: #1b2123;
  line-height: 1.15;
  letter-spacing: -.01em;
  margin: 0;
}
.demo-ba1av2__h2 strong { font-weight: 600; }
.demo-ba1av2__sub { color: #455055; line-height: 1.55; margin: 1rem 0 2rem; }
.demo-ba1av2__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 600px) { .demo-ba1av2__grid { grid-template-columns: 1fr; } }
.demo-ba1av2__col-h { font-weight: 700; color: #1b2123; margin-bottom: .9rem; font-size: 1rem; }
.demo-ba1av2__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .6rem; }
.demo-ba1av2__col li { display: flex; align-items: flex-start; gap: .65rem; color: #1b2123; font-size: .93rem; line-height: 1.45; }
.demo-ba1av2__col li i {
  flex: 0 0 18px; width: 18px; height: 18px;
  border-radius: 4px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .7rem;
  margin-top: .15rem;
}
.demo-ba1av2__col:nth-child(1) li i { background: #c4c9cc; color: #1b2123; }
.demo-ba1av2__col:nth-child(2) li i { background: #5cf998; color: #1b2123; }
.demo-ba1av2__photo {
  aspect-ratio: 3/4;
  border-radius: 14px;
  overflow: hidden;
  background: #d9e2e7;
}
.demo-ba1av2__photo .media-placeholder { width: 100%; height: 100%; min-height: 0; border-radius: 0; }

/* SO1 — Dark hero + agent rail + Topline/Bottom-Line impact */
.demo-so1 { padding: 4rem clamp(1.25rem, 4vw, 3.5rem); }
.demo-so1__intro { text-align: center; max-width: 880px; margin: 0 auto 3rem; }
.demo-so1__h2 { font-family: 'Figtree', sans-serif; font-size: clamp(2rem, 4.2vw, 3.2rem); font-weight: 500; color: #a8c7d5; line-height: 1.1; letter-spacing: -.01em; margin: .5rem 0 0; }
.demo-so1__h2 strong { color: #fff; font-weight: 500; }
.demo-so1__sub { color: rgba(255,255,255,.7); margin: 1.25rem auto 0; max-width: 700px; line-height: 1.6; }
.demo-so1__card { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 320px 1fr; background: #2e373a; border-radius: 16px; overflow: hidden; }
@media (max-width: 900px) { .demo-so1__card { grid-template-columns: 1fr; } }
.demo-so1__rail { background: #1b2123; color: #fff; padding: 2rem 1.5rem; }
.demo-so1__rail-h { font-family: 'Figtree', sans-serif; font-weight: 500; font-size: 1.15rem; color: #a8c7d5; line-height: 1.25; margin-bottom: 1.5rem; }
.demo-so1__agents { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .25rem; }
.demo-so1__agents li { display: flex; align-items: center; gap: .75rem; padding: .75rem .9rem; border-radius: 8px; color: rgba(255,255,255,.65); font-size: .9rem; cursor: pointer; }
.demo-so1__agents li i { color: #5cf998; font-size: 1.05rem; }
.demo-so1__agents li.is-active { background: rgba(92,249,152,.12); color: #fff; }
.demo-so1__body { padding: 2rem 2.5rem; background: #2e373a; color: rgba(255,255,255,.85); }
.demo-so1__body-h { color: #fff; font-family: 'Figtree', sans-serif; font-weight: 600; font-size: 1.4rem; margin: 0 0 1rem; }
.demo-so1__body p { color: rgba(255,255,255,.7); line-height: 1.65; margin: 0 0 1.5rem; }
.demo-so1__impact { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 1rem; }
@media (max-width: 700px) { .demo-so1__impact { grid-template-columns: 1fr; } }
.demo-so1__impact-h { color: #fff; font-weight: 700; font-size: .95rem; margin-bottom: .75rem; }
.demo-so1__impact ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .75rem; }
.demo-so1__impact li { color: rgba(255,255,255,.7); font-size: .88rem; line-height: 1.5; }
.demo-so1__impact li strong { color: #fff; font-weight: 600; }

/* SO2 — Centered headline + 3 sub-tabs + illustration + prose */
.demo-so2 { padding: 4rem clamp(1.25rem, 4vw, 3.5rem); }
.demo-so2__intro { text-align: center; max-width: 880px; margin: 0 auto 2rem; }
.demo-so2__h2 { font-family: 'Figtree', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; color: #a8c7d5; line-height: 1.1; letter-spacing: -.01em; margin: .5rem 0 0; }
.demo-so2__h2 strong { color: #1b2123; font-weight: 500; }
.demo-so2__tabs { display: flex; justify-content: center; gap: .5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.demo-so2__tab { background: transparent; border: 0; padding: .85rem 1.5rem; font: inherit; font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(27,33,35,.45); cursor: pointer; border-bottom: 2px solid transparent; }
.demo-so2__tab:hover { color: #1b2123; }
.demo-so2__tab.is-active { color: #1b2123; border-bottom-color: #1b2123; }
.demo-so2__panel { display: none; }
.demo-so2__panel.is-active { display: block; }
.demo-so2__split { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; background: #eef4f7; border-radius: 18px; padding: 2rem; }
@media (max-width: 800px) { .demo-so2__split { grid-template-columns: 1fr; } }
.demo-so2__media { aspect-ratio: 4/3; }
.demo-so2__media .media-placeholder { width: 100%; height: 100%; min-height: 0; }
.demo-so2__body p { color: #1b2123; line-height: 1.65; margin: 0; }

/* SO3 — Partner logo grid + dark partner detail card */
.demo-so3 { padding: 4rem clamp(1.25rem, 4vw, 3.5rem); }
.demo-so3__layout { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr; gap: 1.25rem; align-items: start; }
@media (max-width: 800px) { .demo-so3__layout { grid-template-columns: 1fr; } }
.demo-so3__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.demo-so3__cell { background: #eef4f7; border-radius: 10px; aspect-ratio: 5/2; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.demo-so3__cell .media-placeholder { width: 100%; height: 100%; min-height: 0; border-radius: 0; aspect-ratio: auto; border: 1px dashed rgba(0,0,0,.15); color: rgba(0,0,0,.4); }
.demo-so3__cell--active { background: #fff; border: 2px solid #1b2123; }
.demo-so3__cell--empty { background: transparent; }
.demo-so3__nav { grid-column: 1 / -1; display: flex; justify-content: center; gap: .5rem; margin-top: .5rem; }
.demo-so3__arrow { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(0,0,0,.15); background: transparent; color: #1b2123; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.demo-so3__arrow:hover { background: #1b2123; color: #5cf998; border-color: #1b2123; }
.demo-so3__detail { background: #1b2123; color: rgba(255,255,255,.85); border-radius: 14px; padding: 1.5rem 1.5rem 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.demo-so3__detail-logo { height: 40px; }
.demo-so3__detail-logo .media-placeholder { width: auto; height: 100%; min-height: 0; aspect-ratio: 3/1; border: 1px dashed rgba(255,255,255,.25); background: rgba(255,255,255,.05); color: rgba(255,255,255,.5); }
.demo-so3__detail-text { color: rgba(255,255,255,.8); line-height: 1.55; margin: 0; font-size: .92rem; }
.demo-so3__detail-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .65rem; }
.demo-so3__detail-list li { display: flex; align-items: flex-start; gap: .55rem; color: rgba(255,255,255,.8); font-size: .88rem; line-height: 1.5; }
.demo-so3__detail-list li i { color: #5cf998; margin-top: .2rem; }

/* SO1 — multi-panel + rail visibility */
.demo-so1 { background: #0f1416; }                   /* outer slightly darker than card so rail pops */
.demo-so1__card { border: 1px solid rgba(255,255,255,.08); }
.demo-so1__rail { background: #1b2123; border-right: 1px solid rgba(255,255,255,.08); }
.demo-so1__agents li { transition: background .15s, color .15s; }
.demo-so1__agents li:hover { background: rgba(92,249,152,.08); color: #fff; }
.demo-so1__panel { display: none; }
.demo-so1__panel.is-active { display: block; }

/* SO3 — partner grid styling (overrides earlier light defaults) */
.demo-so3__col-grid { display: flex; flex-direction: column; gap: 1rem; }
.demo-so3__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.demo-so3__cell {
  background: #eef4f7;
  border: 2px solid transparent;
  border-radius: 12px;
  aspect-ratio: 16/7;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  cursor: pointer;
  font: inherit;
  transition: border-color .15s, background .15s;
}
.demo-so3__cell:hover { border-color: rgba(0,0,0,.2); }
.demo-so3__cell--active { background: #fff; border-color: #1b2123; box-shadow: 0 6px 18px rgba(0,0,0,.08); }
.demo-so3__cell--empty { background: transparent; border: 0; pointer-events: none; }
.demo-so3__nav { display: flex; justify-content: center; gap: .5rem; margin-top: .25rem; }

/* ============================================================
   HW1 — Centered headline + long-form body */
.demo-hw1 { padding: 4rem clamp(1.25rem, 4vw, 3.5rem); }
.demo-hw1__wrap { max-width: 760px; margin: 0 auto; text-align: center; }
.demo-hw1__h2 { font-family: 'Figtree', sans-serif; font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 500; color: #1b2123; line-height: 1.15; margin: 0 0 1.5rem; }
.demo-hw1__body { color: #455055; line-height: 1.75; text-align: left; }
.demo-hw1__body p { margin: 0 0 1rem; }

/* HW2 — Orbit ecosystem */
.demo-hw2 { padding: 4rem clamp(1.25rem, 4vw, 3.5rem); }
.demo-hw2__intro { text-align: center; max-width: 900px; margin: 0 auto 3rem; }
.demo-hw2__h2 { font-family: 'Figtree', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; color: #a8c7d5; line-height: 1.1; margin: 0; }
.demo-hw2__h2 strong { color: #fff; font-weight: 500; }
.demo-hw2__sub { color: rgba(255,255,255,.7); line-height: 1.6; margin: 1.25rem auto 0; max-width: 700px; }
.demo-hw2__split { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 800px) { .demo-hw2__split { grid-template-columns: 1fr; } }
.demo-hw2__body { color: rgba(255,255,255,.85); }
.demo-hw2__panel { display: none; }
.demo-hw2__panel.is-active { display: block; }
.demo-hw2__panel-h { font-family: 'Figtree', sans-serif; font-size: 1.75rem; font-weight: 600; color: #fff; margin: 0 0 .25rem; }
.demo-hw2__panel-tag { color: #fff; font-weight: 600; font-size: .9rem; margin: 0 0 1rem; }
.demo-hw2__panel p { color: rgba(255,255,255,.7); line-height: 1.65; margin: 0; }
.demo-hw2__orbit {
  position: relative;
  width: 100%;                          /* without this, abs-positioned children collapse the box to 0 */
  max-width: 460px;
  aspect-ratio: 1/1;
  margin: 0 auto;
  overflow: visible;
}
.demo-hw2__orbit::before, .demo-hw2__orbit::after { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.demo-hw2__orbit::before { width: 55%;  height: 55%;  }   /* inner ring tight around the core */
.demo-hw2__orbit::after  { width: 100%; height: 100%; }   /* outer ring */
.demo-hw2__core { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 50%; height: 50%; border-radius: 50%; background: #5cf998; color: #1b2123; display: flex; align-items: center; justify-content: center; font-family: 'Figtree', sans-serif; font-weight: 600; font-size: clamp(1.5rem, 3.5vw, 2.8rem); }
.demo-hw2__node { position: absolute; background: #2e373a; color: #fff; border: 1px solid rgba(255,255,255,.1); border-radius: 8px; padding: .5rem .9rem; font: inherit; font-size: .85rem; font-weight: 600; cursor: pointer; white-space: nowrap; transition: background .15s, border-color .15s; }
.demo-hw2__node.is-active { background: #fff; color: #1b2123; }
/* Labels anchor to ring points and extend OUTWARD from the orbit so they don't clip. */
/* Inner ring radius = 27.5% of container; outer ring radius = 50% */
.demo-hw2__node--bp  { left: 22.5%; top: 50%;    transform: translate(-100%, -50%); }   /* 9 o'clock on inner ring; node extends LEFT */
.demo-hw2__node--tp  { left: 75%;   top: 6.7%;   transform: translate(0%, -50%); }      /* 60° upper-right on outer ring; node extends RIGHT */
.demo-hw2__node--oem { left: 75%;   top: 93.3%;  transform: translate(0%, -50%); }      /* 60° lower-right on outer ring; node extends RIGHT */

/* AG1 — agent cards with icons */
.demo-ag1 { padding: 4rem clamp(1.25rem, 4vw, 3.5rem); }
.demo-ag1__grid { max-width: 1100px; margin: 3rem auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 800px) { .demo-ag1__grid { grid-template-columns: 1fr; } }
.demo-ag1__card { background: #1b2123; color: rgba(255,255,255,.85); border-radius: 14px; padding: 1.75rem 1.5rem; }
.demo-ag1__icon { width: 36px; height: 36px; border-radius: 8px; background: #5cf998; color: #1b2123; display: flex; align-items: center; justify-content: center; font-size: 1rem; margin-bottom: 1.5rem; }
.demo-ag1__h3 { font-family: 'Figtree', sans-serif; font-weight: 700; font-size: 1.1rem; color: #fff; margin: 0 0 .5rem; }
.demo-ag1__card p { color: rgba(255,255,255,.7); line-height: 1.6; margin: 0; }

/* AG2 — Top/Bottom Line toggle + 3 check cards */
.demo-ag2 { padding: 4rem clamp(1.25rem, 4vw, 3.5rem); }
.demo-ag2__intro { text-align: center; max-width: 880px; margin: 0 auto 2rem; }
.demo-ag2__h2 { font-family: 'Figtree', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; color: #1b2123; line-height: 1.15; margin: 0; }
.demo-ag2__h2 strong { font-weight: 500; }
.demo-ag2__sub { color: #455055; line-height: 1.6; margin: 1rem auto 0; max-width: 640px; }
.demo-ag2__toggle { display: flex; justify-content: center; gap: 2rem; border-bottom: 1px solid rgba(0,0,0,.08); margin-bottom: 2.5rem; }
.demo-ag2__tog { background: transparent; border: 0; padding: 1rem .25rem; font: inherit; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .8rem; color: rgba(27,33,35,.45); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.demo-ag2__tog:hover { color: #1b2123; }
.demo-ag2__tog.is-active { color: #1b2123; border-bottom-color: #1b2123; }
.demo-ag2__panel { display: none; }
.demo-ag2__panel.is-active { display: block; }
.demo-ag2__grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 800px) { .demo-ag2__grid { grid-template-columns: 1fr; } }
.demo-ag2__card { background: #eef4f7; border-radius: 14px; padding: 1.75rem 1.5rem; }
.demo-ag2__check { width: 36px; height: 36px; border-radius: 8px; background: #5cf998; color: #1b2123; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 1rem; }
.demo-ag2__h3 { font-family: 'Figtree', sans-serif; font-weight: 700; font-size: 1.1rem; color: #1b2123; margin: 0 0 .5rem; }
.demo-ag2__card p { color: #455055; line-height: 1.55; font-size: .92rem; margin: 0; }

/* M1 — Prebuilt Agents carousel */
.demo-m1 { padding: 4rem clamp(1.25rem, 4vw, 3.5rem); }
.demo-m1 .demo-lede { text-align: center; max-width: 600px; margin: 1rem auto 2.5rem; }
.demo-m1__slider { max-width: 1100px; margin: 0 auto; }
.demo-m1__track { display: flex; gap: 1.25rem; overflow: hidden; scroll-behavior: smooth; }
.demo-m1__card { flex: 0 0 calc((100% - 2.5rem) / 3); background: #1b2123; color: rgba(255,255,255,.85); border-radius: 14px; padding: 1.75rem; }
.demo-m1__icon { width: 36px; height: 36px; border-radius: 8px; background: #5cf998; color: #1b2123; display: flex; align-items: center; justify-content: center; font-size: 1rem; margin-bottom: 1.5rem; }
.demo-m1__h3 { font-family: 'Figtree', sans-serif; font-weight: 700; font-size: 1.1rem; color: #fff; margin: 0 0 .6rem; }
.demo-m1__card p { color: rgba(255,255,255,.7); line-height: 1.55; font-size: .9rem; margin: 0; }
.demo-m1__controls { display: flex; align-items: center; gap: 2rem; margin-top: 1.75rem; }
.demo-m1__progress { flex: 1; height: 4px; background: #d9e2e7; border-radius: 2px; overflow: hidden; }
.demo-m1__progress-fill { display: block; height: 100%; width: 33.33%; background: #5cf998; transition: width .35s ease; }
.demo-m1__arrows { display: flex; gap: .5rem; }
.demo-m1__arrow { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(0,0,0,.15); background: transparent; color: #1b2123; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; }
.demo-m1__arrow:hover { background: #1b2123; color: #5cf998; border-color: #1b2123; }

/* M2 — Enablement Hub */
.demo-m2 { padding: 4rem clamp(1.25rem, 4vw, 3.5rem); }
.demo-m2__top { max-width: 900px; margin: 0 auto 2rem; }
.demo-m2__h2 { font-family: 'Figtree', sans-serif; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 500; color: #5cf998; line-height: 1.05; margin: 0; }
.demo-m2__h2 strong { color: #1b2123; font-weight: 600; }
.demo-m2__sub { color: #1b2123; font-weight: 600; margin: .75rem 0 1.5rem; }
.demo-m2__lede { color: #455055; line-height: 1.65; margin: 0 0 1.5rem; }
.demo-m2__bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .75rem; }
.demo-m2__bullets li { color: #455055; line-height: 1.55; }
.demo-m2__bullets strong { color: #1b2123; }
.demo-m2__pills { max-width: 900px; margin: 1.5rem auto 2rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; }
@media (max-width: 700px) { .demo-m2__pills { grid-template-columns: repeat(2, 1fr); } }
.demo-m2__pill { display: flex; flex-direction: column; align-items: center; gap: .5rem; text-align: center; }
.demo-m2__pill-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(92,249,152,.25); color: #1b2123; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.demo-m2__pill span { font-size: .82rem; font-weight: 600; color: #1b2123; }
.demo-m2__media { max-width: 1100px; margin: 0 auto; background: #5cf998; border-radius: 18px; padding: 2rem; }
.demo-m2__media .media-placeholder { width: 100%; min-height: 300px; aspect-ratio: 16/8; background: rgba(255,255,255,.9); }

/* I1 — Connect existing infrastructure logo grid */
.demo-i1 { padding: 4rem clamp(1.25rem, 4vw, 3.5rem); }
.demo-i1__intro { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.demo-i1__h2 { font-family: 'Figtree', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; color: #a8c7d5; line-height: 1.1; margin: .75rem 0 0; }
.demo-i1__grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); gap: .75rem; }
@media (max-width: 800px) { .demo-i1__grid { grid-template-columns: repeat(3, 1fr); } }
.demo-i1__cell { background: #eef4f7; border-radius: 10px; aspect-ratio: 5/2; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.demo-i1__cell .media-placeholder { width: 100%; height: 100%; min-height: 0; aspect-ratio: auto; border: 1px dashed rgba(0,0,0,.15); color: rgba(0,0,0,.4); border-radius: 0; }
.demo-i1__cta { text-align: center; margin-top: 2rem; }

/* C1 — Partner Journey 3-step */
.demo-c1 { padding: 4rem clamp(1.25rem, 4vw, 3.5rem); }
.demo-c1__intro { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.demo-c1__h2 { font-family: 'Figtree', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; color: #1b2123; line-height: 1.1; margin: 0; }
.demo-c1__sub { color: #455055; line-height: 1.6; margin: 1rem auto 0; }
.demo-c1__steps { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 800px) { .demo-c1__steps { grid-template-columns: 1fr; } }
.demo-c1__step { background: #eef4f7; border-radius: 14px; padding: 1.75rem; }
.demo-c1__step-icon { width: 44px; height: 44px; border-radius: 10px; background: #5cf998; color: #1b2123; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1rem; }
.demo-c1__step-h { font-family: 'Figtree', sans-serif; font-weight: 700; font-size: 1.15rem; color: #1b2123; margin: 0 0 .5rem; }
.demo-c1__step p { color: #455055; line-height: 1.55; margin: 0; }

/* AF1 — Proof in Action quote cards */
.demo-af1 { padding: 4rem clamp(1.25rem, 4vw, 3.5rem); }
.demo-af1__intro { text-align: center; max-width: 760px; margin: 0 auto 3rem; }
.demo-af1__h2 { font-family: 'Figtree', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; color: #1b2123; line-height: 1.1; margin: 0; }
.demo-af1__h2 strong { color: #5cf998; font-weight: 500; }
.demo-af1__sub { color: #455055; line-height: 1.6; margin: 1rem auto 0; }
.demo-af1__grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 800px) { .demo-af1__grid { grid-template-columns: 1fr; } }
.demo-af1__card { background: #1b2123; color: rgba(255,255,255,.85); border-radius: 18px; padding: 2rem; position: relative; overflow: hidden; min-height: 320px; display: flex; flex-direction: column; }
.demo-af1__quote { font-style: italic; line-height: 1.55; margin: 0 0 1.5rem; color: rgba(255,255,255,.9); position: relative; z-index: 1; }
.demo-af1__author { position: relative; z-index: 1; margin-top: auto; }
.demo-af1__author-name { color: #fff; font-weight: 700; font-size: .9rem; }
.demo-af1__author-role { color: rgba(255,255,255,.55); font-size: .8rem; }
.demo-af1__photo { position: absolute; right: 0; top: 0; bottom: 0; width: 40%; min-height: 0; border-radius: 0; opacity: .35; background: #2e373a; border: 0; }

/* PE2 — What we look for careers */
.demo-pe2 { padding: 4rem clamp(1.25rem, 4vw, 3.5rem); }
.demo-pe2__split { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 800px) { .demo-pe2__split { grid-template-columns: 1fr; } }
.demo-pe2__photo { aspect-ratio: 4/3; border-radius: 14px; min-height: 0; }
.demo-pe2__body p:first-child { color: #1b2123; line-height: 1.65; margin: 0 0 1.5rem; }
.demo-pe2__list { list-style: none; padding: 0; margin: 1.25rem 0 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.demo-pe2__list li strong { display: block; color: #1b2123; font-weight: 700; margin-bottom: .15rem; }
.demo-pe2__list li p { color: #455055; line-height: 1.5; margin: 0; }

/* PE3 — Welcome to the Autonomous Era hero */
.demo-pe3 { padding: 4rem clamp(1.25rem, 4vw, 3.5rem); }
.demo-pe3__split { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 800px) { .demo-pe3__split { grid-template-columns: 1fr; } }
.demo-pe3__body h2 { font-family: 'Figtree', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 500; color: #1b2123; line-height: 1.15; margin: 0 0 1.5rem; }
.demo-pe3__body p { color: #455055; line-height: 1.65; margin: 0 0 1rem; }
.demo-pe3__body strong { color: #1b2123; }
.demo-pe3__art { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.demo-pe3__welcome { font-family: 'Figtree', sans-serif; font-size: clamp(1.5rem, 3vw, 2.2rem); color: #1b2123; font-weight: 500; }
.demo-pe3__strike { color: #a8c7d5; text-decoration: line-through; text-decoration-color: #1b2123; text-decoration-thickness: 2px; }
.demo-pe3__brand { display: inline-flex; align-items: center; gap: 0; font-family: 'Figtree', sans-serif; font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; color: #1b2123; letter-spacing: -.02em; }
.demo-pe3__mascot { display: inline-flex; width: 1em; height: 1em; }
.demo-pe3__mascot img { width: 100%; height: 100%; object-fit: contain; }

/* CR1 — Investor split */
.demo-cr1 { padding: 4rem clamp(1.25rem, 4vw, 3.5rem); }
.demo-cr1__split { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 800px) { .demo-cr1__split { grid-template-columns: 1fr; } }
.demo-cr1__body p { color: #455055; line-height: 1.65; margin: 0 0 1rem; }
.demo-cr1__list { list-style: none; padding: 0; margin: 1.25rem 0 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.demo-cr1__list li strong { display: block; color: #1b2123; font-weight: 700; margin-bottom: .15rem; }
.demo-cr1__list li p { color: #455055; line-height: 1.5; margin: 0; }
.demo-cr1__photo { aspect-ratio: 4/5; border-radius: 14px; min-height: 0; }

/* MR1 — Press kit / Press contact */
.demo-mr1 { padding: 4rem clamp(1.25rem, 4vw, 3.5rem); }
.demo-mr1__h2 { font-family: 'Figtree', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; color: #a8c7d5; text-align: left; margin: 0 0 1.5rem; max-width: 1100px; margin-left: auto; margin-right: auto; }
.demo-mr1__dark { max-width: 1100px; margin: 0 auto; background: #1b2123; border-radius: 18px; padding: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 800px) { .demo-mr1__dark { grid-template-columns: 1fr; } }
.demo-mr1__cell { color: rgba(255,255,255,.85); }
.demo-mr1__icon { width: 36px; height: 36px; border-radius: 8px; background: #5cf998; color: #1b2123; display: flex; align-items: center; justify-content: center; font-size: 1rem; margin-bottom: 1.5rem; }
.demo-mr1__h3 { font-family: 'Figtree', sans-serif; font-weight: 700; font-size: 1.2rem; color: #fff; margin: 0 0 .6rem; }
.demo-mr1__cell p { color: rgba(255,255,255,.7); line-height: 1.6; margin: 0 0 1.5rem; font-size: .95rem; }
.demo-btn--outline-dark { background: transparent; border: 1px solid #fff; color: #fff; }
.demo-btn--outline-dark:hover { background: #fff; color: #1b2123; }

/* CTA2 — Manual First vs Autonomous Operations */
.demo-cta2 { padding: 4rem clamp(1.25rem, 4vw, 3.5rem); }
.demo-cta2__intro { text-align: center; max-width: 760px; margin: 0 auto 3rem; }
.demo-cta2__h2 { font-family: 'Figtree', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; color: #a8c7d5; line-height: 1.1; margin: 0; }
.demo-cta2__h2 strong { color: #1b2123; font-weight: 500; }
.demo-cta2__sub { color: #455055; line-height: 1.6; margin: 1rem auto 0; max-width: 640px; }
.demo-cta2__grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 700px) { .demo-cta2__grid { grid-template-columns: 1fr; } }
.demo-cta2__card { border-radius: 14px; padding: 1.75rem; }
.demo-cta2__card--manual { background: #eef4f7; color: #1b2123; }
.demo-cta2__card--auto { background: #5cf998; color: #1b2123; }
.demo-cta2__hex { width: 64px; height: 64px; border-radius: 12px; background: rgba(0,0,0,.06); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; min-height: 0; aspect-ratio: 1/1; border: 0; }
.demo-cta2__hex--mint { background: #1b2123; color: #fff; font-size: 1.5rem; }
.demo-cta2__card-h { font-family: 'Figtree', sans-serif; font-weight: 700; font-size: 1.15rem; margin: 0 0 .25rem; }
.demo-cta2__card-tag { font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.demo-cta2__card p { line-height: 1.55; margin: 0 0 1rem; font-size: .92rem; }
.demo-cta2__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.demo-cta2__list li { display: flex; align-items: center; gap: .55rem; font-size: .9rem; }
.demo-cta2__chip { width: 16px; height: 16px; border-radius: 4px; display: inline-block; flex: 0 0 16px; }
.demo-cta2__chip--off { background: #ef4444; }
.demo-cta2__chip--on  { background: #1b2123; }
