/* ============================================================
   Enterprise operations orchestration, campaign landing page.
   Route: /orchestrate-your-operations/

   Loaded AFTER campaign.css and wla-alternative.css; holds only what
   they do not. Theme: the /stop-paying-for-a-scheduler/ language.
   Layout: dark hero, one continuous light body, dark demo band.

   RULES
   1. Band selectors are .gr .sec.so-* so they beat the theme's
      .gr .sec.wa-sec background (0-3-0).
   2. .so-alt is a TOKEN SWAP. Components use --text-primary,
      --text-secondary, --text-tertiary, --hair, --surface, --surface-2
      and inherit the light treatment.
   3. COLOUR SEMANTICS. Orange (--accent) is only ever a CTA. Violet
      (--eoo-sym) is only ever Symphony. Red (--eoo-exc) is only ever an
      exception. Nothing else gets a hue.
   4. Mono small-caps only for the hero eyebrow, the logo-strip label
      and the "Illustrative workflow" badge.
   ============================================================ */

/* ---------- 0. Tokens, focus, motion ---------- */

.eoo-page, .eoo-nav, .eoo-drawer, .eoo-sticky {
  --eoo-sym: #c79cff; --eoo-sym-line: rgba(199, 156, 255, 0.34); --eoo-sym-soft: rgba(152, 42, 243, 0.16);
  --eoo-exc: #f4685f; --eoo-exc-line: rgba(244, 104, 95, 0.4); --eoo-exc-soft: rgba(244, 104, 95, 0.1);
}
.gr .sec.so-alt {
  --eoo-sym: #47287d; --eoo-sym-line: rgba(71, 40, 125, 0.28); --eoo-sym-soft: rgba(71, 40, 125, 0.08);
  --eoo-exc: #b3261e; --eoo-exc-line: rgba(179, 38, 30, 0.35); --eoo-exc-soft: rgba(179, 38, 30, 0.06);
}
/* Adjacent light sections read as one body: same ground, a hairline between. */
.gr .sec.eoo-light { background-image: none; background-color: #f7f5fb; }

.eoo-skip { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--accent); color: #1a0e05; font-weight: 700; padding: 12px 20px; border-radius: 0 0 8px 0; }
.eoo-skip:focus { left: 0; }
.eoo-page a:focus-visible, .eoo-page button:focus-visible, .eoo-page summary:focus-visible, .eoo-page input:focus-visible, .eoo-page textarea:focus-visible, .eoo-page [tabindex]:focus-visible,
.eoo-nav a:focus-visible, .eoo-nav button:focus-visible, .eoo-drawer a:focus-visible, .eoo-sticky a:focus-visible, .eoo-skip:focus-visible { outline: 2px solid #ffb184; outline-offset: 3px; border-radius: 6px; }
.gr .sec.so-alt a:focus-visible, .gr .sec.so-alt button:focus-visible, .gr .sec.so-alt input:focus-visible, .gr .sec.so-alt textarea:focus-visible, .gr .sec.so-alt summary:focus-visible { outline-color: #6d28d9; }

.eoo-page .eyebrow { font-size: 0.8rem; letter-spacing: 0.08em; }
.eoo-page .lede { font-size: 1.08rem; }
.eoo-page .head { margin-bottom: 40px; }
.eoo-note { max-width: 64ch; margin: 26px auto 0; text-align: center; font-size: 1rem; line-height: 1.6; color: var(--text-tertiary); }
@media (prefers-reduced-motion: reduce) { .eoo-page *, .eoo-nav *, .eoo-drawer *, .eoo-sticky * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; } }

/* ---------- 1. Header, drawer, sticky ---------- */

.eoo-nav { background: transparent; }
.eoo-nav.scrolled { background: rgba(12, 9, 22, 0.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.eoo-nav .so-nav-links a { font-size: 1rem; color: #cbc4d2; transition: color .2s; }
.eoo-nav .so-nav-links a:hover, .eoo-nav .so-nav-links a.on { color: #fff; }
.eoo-nav .so-nav-links a.on::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; border-radius: 2px; background: var(--accent); }
.eoo-drawer { position: fixed; inset: 64px 0 0 0; z-index: 90; background: rgba(12, 9, 22, 0.98); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); display: flex; flex-direction: column; justify-content: space-between; padding: 24px 24px calc(24px + env(safe-area-inset-bottom)); overflow-y: auto; opacity: 0; transition: opacity .2s ease; }
.eoo-drawer.on { opacity: 1; }
.eoo-drawer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.eoo-drawer-list a { display: block; padding: 16px 4px; font-size: 1.15rem; font-weight: 600; color: #e7e0e9; border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
.eoo-drawer-foot { padding-top: 24px; display: grid; gap: 14px; }
.eoo-drawer-brand { font-family: var(--font-mono); font-size: 0.78rem; color: rgba(255, 255, 255, 0.5); text-align: center; }
body.eoo-locked { position: fixed; width: 100%; overflow: hidden; }
@media (min-width: 1025px) { .eoo-drawer { display: none !important; } }
@media (max-width: 1024px) { .eoo-nav .so-nav-links, .eoo-nav .nav-actions { display: none; } }

.eoo-sticky { display: none; }
@media (max-width: 760px) {
  .eoo-sticky { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; display: flex; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); background: rgba(12, 9, 22, 0.96); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-top: 1px solid rgba(255, 255, 255, 0.1); transform: translateY(100%); transition: transform .25s ease; }
  .eoo-sticky.on { transform: none; }
  .eoo-sticky[hidden] { display: none; }
  .eoo-sticky-b { width: 100%; justify-content: center; }
}

/* ---------- 2. Hero ---------- */

.eoo-hero { padding: 128px 0 72px; }
.eoo-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.eoo-hero-c h1 { font-size: clamp(2.05rem, 1.5rem + 2.1vw, 3rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin: 0 0 20px; }
.eoo-hero-c .gr-hero-sub { max-width: 34rem; font-size: 1.08rem; line-height: 1.65; }
.eoo-hero-act { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 18px; }
.eoo-btn-ghost { border: 1px solid rgba(255, 255, 255, 0.18); background: rgba(255, 255, 255, 0.03); color: #fff; font-weight: 700; padding: 14px 26px; border-radius: 10px; }
.eoo-btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(212, 187, 255, 0.4); }
.eoo-hero-foot { margin: 0; font-size: 1rem; color: rgba(255, 255, 255, 0.6); }

/* Conceptual platform visual: two areas feed Symphony; one shared band beneath. */
.eoo-vis { margin: 0; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; background: radial-gradient(120% 80% at 50% 0%, rgba(152, 42, 243, 0.1), transparent 70%), rgba(20, 14, 32, 0.66); padding: 22px; }
.eoo-vis-areas { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.eoo-vis-area { position: relative; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 12px; background: rgba(255, 255, 255, 0.04); padding: 16px 16px 18px; }
.eoo-vis-icons { display: flex; gap: 6px; margin-bottom: 12px; }
.eoo-vis-icons span { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 7px; color: var(--eoo-sym); background: rgba(199, 156, 255, 0.1); border: 1px solid rgba(199, 156, 255, 0.22); }
.eoo-vis-k { display: block; font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.eoo-vis-d { display: block; font-size: 1rem; line-height: 1.45; color: rgba(255, 255, 255, 0.72); }
.eoo-vis-feed { position: absolute; left: 50%; bottom: -18px; width: 1px; height: 18px; background: linear-gradient(to bottom, var(--eoo-sym-line), rgba(199, 156, 255, 0.1)); }
.eoo-vis-core { margin: 18px 0; border: 1px solid rgba(212, 187, 255, 0.4); border-radius: 12px; background: linear-gradient(100deg, rgba(71, 40, 125, 0.55), rgba(152, 42, 243, 0.3)); box-shadow: 0 12px 34px -18px rgba(152, 42, 243, 0.75); padding: 16px 18px; text-align: center; }
.eoo-vis-core-t { display: block; font-size: 1.2rem; font-weight: 800; color: #fff; }
.eoo-vis-core-s { display: block; margin-top: 3px; font-size: 0.92rem; color: #e9dcff; }
.eoo-vis-band { list-style: none; margin: 0; padding: 12px 14px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; border: 1px dashed rgba(255, 255, 255, 0.22); border-radius: 12px; background: rgba(255, 255, 255, 0.025); }
.eoo-vis-band li { text-align: center; font-size: 0.95rem; font-weight: 600; color: rgba(255, 255, 255, 0.85); padding: 6px 4px; border-right: 1px solid rgba(255, 255, 255, 0.1); }
.eoo-vis-band li:last-child { border-right: none; }

/* ---------- 3. Customer strip ---------- */

.eoo-clients { position: relative; z-index: 2; background: #fff; padding: 26px 0 24px; }
.eoo-clients-k { display: block; text-align: center; font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: #5c5c69; }
.eoo-clients-row { list-style: none; margin: 16px auto 0; padding: 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 30px; }
.eoo-clients-row li { display: flex; align-items: center; flex: none; }
.eoo-clients-row img { height: 24px; width: auto; max-width: 104px; object-fit: contain; display: block; }

/* ---------- 4. Platform scope ---------- */

.eoo-scope { max-width: 1060px; margin: 0 auto; border: 1px solid rgba(71, 40, 125, 0.14); border-radius: 16px; background: #fff; box-shadow: 0 1px 2px rgba(20, 16, 31, 0.04), 0 12px 32px -18px rgba(20, 16, 31, 0.22); overflow: hidden; }
.eoo-scope-areas { display: grid; grid-template-columns: 1fr 1fr; }
.eoo-scope-area { padding: 32px 34px 30px; }
.eoo-scope-area + .eoo-scope-area { border-left: 1px solid var(--hair); }
.eoo-scope-ic { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 11px; margin-bottom: 16px; color: var(--eoo-sym); border: 1px solid var(--eoo-sym-line); background: var(--eoo-sym-soft); }
.eoo-scope-area h3 { margin: 0 0 6px; font-size: 1.35rem; font-weight: 800; letter-spacing: -0.015em; color: var(--text-primary); }
.eoo-scope-lead { margin: 0 0 12px; font-size: 1.05rem; font-weight: 600; color: var(--eoo-sym); }
.eoo-scope-body { margin: 0 0 20px; font-size: 1rem; line-height: 1.6; color: var(--text-secondary); }
.eoo-scope-meta { margin: 0; padding-top: 16px; border-top: 1px solid var(--hair); display: grid; gap: 12px; }
.eoo-scope-meta dt { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.eoo-scope-meta dd { margin: 0; font-size: 1rem; line-height: 1.5; color: var(--text-secondary); }
.eoo-caps { list-style: none; margin: 0; padding: 22px 34px 26px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; border-top: 1px solid var(--hair); background: rgba(71, 40, 125, 0.035); }
.eoo-caps li { display: grid; grid-template-rows: auto auto auto; align-content: start; }
.eoo-caps-ic { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 9px; margin-bottom: 10px; color: var(--eoo-sym); border: 1px solid var(--eoo-sym-line); background: #fff; }
.eoo-caps-k { font-size: 1.02rem; font-weight: 700; color: var(--text-primary); margin-bottom: 3px; }
.eoo-caps-d { font-size: 1rem; line-height: 1.5; color: var(--text-secondary); }

/* ---------- 5. Orchestration in practice ----------
   Two top tabs the full width of the panel beneath them, six sub-tabs
   inside each, and a swim-lane storyboard per workflow.

   Lane diagrams: CSS grids of real chips with an SVG wire overlay that
   shares the grid's --cols and --rows, so a wire to viewBox cell (i, j)
   lands on grid cell (i, j) at any width. non-scaling-stroke keeps the
   line weight even under the stretch.

   Motion: a panel rises in when shown, Symphony wires draw in
   (pathLength="1" normalises every path so one keyframe fits all), and
   chips stagger by --i. Because a hidden panel is display:none, the
   animations restart naturally on every tab change. All of it is gated
   behind prefers-reduced-motion: no-preference. */

.eoo-ex { max-width: 1080px; margin: 0 auto; }

/* Top tabs: one bar, the panel's full width, joined to the panel. */
.eoo-ex-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid rgba(71, 40, 125, 0.14); border-bottom: none; border-radius: 16px 16px 0 0; background: #fff; overflow: hidden; }
.eoo-ex-tab { position: relative; display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 18px 16px 16px; border: none; background: transparent; color: var(--text-secondary); cursor: pointer; transition: background .18s, color .18s; }
.eoo-ex-tab + .eoo-ex-tab { border-left: 1px solid rgba(71, 40, 125, 0.14); }
.eoo-ex-tab:hover { background: var(--eoo-sym-soft); color: var(--text-primary); }
.eoo-ex-tab.on { color: var(--text-primary); }
.eoo-ex-tab::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--eoo-sym); transform: scaleX(0); transform-origin: center; transition: transform .28s cubic-bezier(.2,.7,.2,1); }
.eoo-ex-tab.on::after { transform: scaleX(1); }
.eoo-ex-tab-t { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.01em; }
.eoo-ex-tab-s { font-size: 0.92rem; color: var(--text-tertiary); }
.eoo-ex-tab.on .eoo-ex-tab-s { color: var(--eoo-sym); }

.eoo-ex-panel { border: 1px solid rgba(71, 40, 125, 0.14); border-radius: 0 0 16px 16px; background: #fff; padding: 22px 28px 28px; box-shadow: 0 1px 2px rgba(20, 16, 31, 0.04), 0 12px 32px -18px rgba(20, 16, 31, 0.22); }
.eoo-ex-panel:focus, .eoo-sb-panel:focus { outline: none; }

/* Sub-tabs: six across, numbered, wrapping to three and two on smaller screens. */
.eoo-sub-tabs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; padding: 6px; border: 1px solid var(--hair); border-radius: 12px; background: rgba(71, 40, 125, 0.04); margin-bottom: 22px; }
.eoo-sub-tab { display: flex; align-items: center; gap: 9px; min-height: 44px; padding: 8px 12px; border: none; border-radius: 8px; background: transparent; color: var(--text-secondary); font-size: 0.95rem; font-weight: 600; line-height: 1.25; text-align: left; cursor: pointer; transition: background .18s, color .18s, transform .18s; }
.eoo-sub-tab b { flex: none; width: 24px; height: 24px; border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 0.8rem; color: var(--eoo-sym); background: var(--eoo-sym-soft); border: 1px solid var(--eoo-sym-line); transition: background .18s, color .18s; }
.eoo-sub-tab:hover { background: #fff; color: var(--text-primary); }
.eoo-sub-tab.on { background: var(--eoo-sym); color: #fff; }
.eoo-sub-tab.on b { background: rgba(255, 255, 255, 0.18); color: #fff; border-color: transparent; }

/* --- Storyboard --- */
.eoo-sb-head { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 28px; align-items: start; padding-bottom: 22px; margin-bottom: 22px; border-bottom: 1px solid var(--hair); }
.eoo-ex-badge { display: inline-block; font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--eoo-sym); border: 1px solid var(--eoo-sym-line); border-radius: 6px; padding: 4px 8px; background: var(--eoo-sym-soft); }
.eoo-sb-head h3 { margin: 12px 0 0; font-size: 1.45rem; font-weight: 800; letter-spacing: -0.02em; color: var(--text-primary); }
.eoo-ex-k { display: block; font-size: 0.9rem; font-weight: 700; color: var(--eoo-sym); margin-bottom: 4px; }
.eoo-ex-ctx p { margin: 0; font-size: 1rem; line-height: 1.6; color: var(--text-secondary); }

.eoo-sb-block { border-radius: 12px; padding: 18px 20px 20px; }
.eoo-sb-today { background: rgba(20, 16, 31, 0.035); border: 1px solid var(--hair); }
.eoo-sb-sym { margin-top: 16px; background: linear-gradient(180deg, rgba(71, 40, 125, 0.06), rgba(71, 40, 125, 0.02)); border: 1px solid var(--eoo-sym-line); }
.eoo-sb-bh { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px 12px; margin-bottom: 14px; }
.eoo-sb-bk { font-size: 1.05rem; font-weight: 800; letter-spacing: -0.01em; color: var(--text-primary); }
.eoo-sb-sym .eoo-sb-bk { color: var(--eoo-sym); }
.eoo-sb-bs { font-size: 0.95rem; color: var(--text-secondary); }
.eoo-sb-badge { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.04em; padding: 4px 9px; border-radius: 6px; border: 1px solid; }
.eoo-sb-badge-t { color: var(--eoo-exc); border-color: var(--eoo-exc-line); background: var(--eoo-exc-soft); }
.eoo-sb-badge-s { color: var(--eoo-sym); border-color: var(--eoo-sym-line); background: var(--eoo-sym-soft); }

.eoo-sb-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.eoo-sb-lanes { --rh: 58px; display: grid; grid-template-columns: 132px minmax(0, 1fr); gap: 0 10px; min-width: 620px; }
.eoo-sb-labels { display: grid; grid-auto-rows: var(--rh); align-items: center; }
.eoo-sb-labels span { font-size: 0.9rem; font-weight: 600; line-height: 1.25; color: var(--text-secondary); padding-right: 6px; border-right: 2px solid var(--hair); height: 100%; display: flex; align-items: center; }
.eoo-sb-lab-sym { color: var(--eoo-sym) !important; border-right-color: var(--eoo-sym-line) !important; font-weight: 800 !important; }
.eoo-sb-canvas { position: relative; display: grid; grid-template-columns: repeat(var(--cols), minmax(0, 1fr)); grid-auto-rows: var(--rh); align-items: center; justify-items: center; border-radius: 8px; background: repeating-linear-gradient(to bottom, rgba(20, 16, 31, 0.035) 0, rgba(20, 16, 31, 0.035) var(--rh), transparent var(--rh), transparent calc(var(--rh) * 2)); }
.eoo-sb-canvas-sym { background: repeating-linear-gradient(to bottom, rgba(71, 40, 125, 0.05) 0, rgba(71, 40, 125, 0.05) var(--rh), transparent var(--rh), transparent calc(var(--rh) * 2)); }
.eoo-sb-wires { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; overflow: visible; }
.eoo-sb-wires path { fill: none; stroke-width: 1.6; vector-effect: non-scaling-stroke; }
.eoo-sb-today .eoo-sb-wires path { stroke: var(--eoo-exc-line); stroke-dasharray: 4 4; }
.eoo-sb-rail { stroke: var(--eoo-sym) !important; stroke-width: 2.4 !important; }
.eoo-sb-tick { stroke: var(--eoo-sym-line) !important; }
.eoo-sb-exc-wire { stroke: var(--eoo-exc-line) !important; stroke-dasharray: 4 4 !important; }
.eoo-sb-node { position: relative; z-index: 1; max-width: calc(100% - 10px); text-align: center; font-size: 0.86rem; font-weight: 600; line-height: 1.25; color: var(--text-primary); background: #fff; border: 1px solid var(--eoo-exc-line); border-radius: 8px; padding: 6px 9px; box-shadow: 0 1px 2px rgba(20, 16, 31, 0.06); }
.eoo-sb-step { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px; font-size: 0.92rem; font-weight: 700; color: #fff; background: var(--eoo-sym); border-radius: 9px; padding: 7px 12px 7px 7px; box-shadow: 0 6px 16px -10px rgba(71, 40, 125, 0.9); }
.eoo-sb-step b { width: 22px; height: 22px; border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 0.8rem; background: rgba(255, 255, 255, 0.18); }
.eoo-sb-dot { position: relative; z-index: 1; width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 3px solid var(--eoo-sym); }
.eoo-sb-gate { position: relative; z-index: 1; width: 30px; height: 30px; border-radius: 8px; transform: rotate(45deg); display: flex; align-items: center; justify-content: center; background: #fff; border: 2px solid var(--eoo-sym); color: var(--eoo-sym); }
.eoo-sb-gate svg { transform: rotate(-45deg); }
.eoo-sb-steps { list-style: none; margin: 16px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.eoo-sb-steps li { display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 9px; align-items: start; }
.eoo-sb-steps li b { width: 22px; height: 22px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 0.78rem; color: #fff; background: var(--eoo-sym); }
.eoo-sb-steps li span { font-size: 1rem; line-height: 1.5; color: var(--text-secondary); }
.eoo-sb-steps li strong { color: var(--text-primary); }
.eoo-sb-exc { margin-top: 16px; padding: 12px 14px; display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 10px; align-items: start; border: 1px dashed var(--eoo-exc-line); border-radius: 10px; background: var(--eoo-exc-soft); }
.eoo-sb-exc-ic { display: flex; color: var(--eoo-exc); margin-top: 2px; }
.eoo-sb-exc-k { display: block; margin-bottom: 3px; font-size: 0.9rem; font-weight: 700; color: var(--eoo-exc); }
.eoo-sb-exc span:last-child { font-size: 1rem; line-height: 1.5; color: var(--text-secondary); }

/* --- Motion, opt-in by the visitor's setting only. --- */
@media (prefers-reduced-motion: no-preference) {
  .eoo-ex-panel:not([hidden]), .eoo-sb-panel:not([hidden]) { animation: eooRise .32s cubic-bezier(.2,.7,.2,1) both; }
  .eoo-sb-panel:not([hidden]) .eoo-sb-node { animation: eooPop .36s cubic-bezier(.2,.7,.2,1) both; animation-delay: calc(120ms + var(--i, 0) * 70ms); }
  .eoo-sb-panel:not([hidden]) .eoo-sb-today .eoo-sb-wires path { opacity: 0; animation: eooFade .4s ease both; animation-delay: calc(160ms + var(--i, 0) * 70ms); }
  /* Drawn with a transform, not a dash. With non-scaling-stroke on and the
     SVG stretched over the grid, Chrome measures dash lengths in screen
     space, so a pathLength dash came out about 70% of the rail and the
     line appeared to stop between two steps. scaleX from the left edge
     and scaleY from the top are immune to the stretch. */
  .eoo-sb-panel:not([hidden]) .eoo-sb-rail { transform-box: fill-box; transform-origin: left center; animation: eooDrawX .7s cubic-bezier(.2,.7,.2,1) .25s both; }
  .eoo-sb-panel:not([hidden]) .eoo-sb-tick { transform-box: fill-box; transform-origin: center top; animation: eooDrawY .45s ease-out both; animation-delay: calc(600ms + var(--i, 0) * 90ms); }
  .eoo-sb-panel:not([hidden]) .eoo-sb-exc-wire { opacity: 0; animation: eooFade .4s ease 1.1s both; }
  .eoo-sb-panel:not([hidden]) .eoo-sb-step { animation: eooPop .36s cubic-bezier(.2,.7,.2,1) both; animation-delay: calc(300ms + var(--i, 0) * 90ms); }
  .eoo-sb-panel:not([hidden]) .eoo-sb-dot, .eoo-sb-panel:not([hidden]) .eoo-sb-gate { animation: eooDotIn .3s ease-out both; animation-delay: calc(640ms + var(--i, 0) * 90ms); }
  .eoo-sb-panel:not([hidden]) .eoo-sb-gate { animation-name: eooGateIn; }
  .eoo-sb-panel:not([hidden]) .eoo-sb-exc { animation: eooRise .36s ease-out 1.15s both; }
}
@keyframes eooRise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes eooPop { from { opacity: 0; transform: translateY(6px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes eooFade { to { opacity: 1; } }
@keyframes eooDrawX { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes eooDrawY { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes eooDotIn { from { opacity: 0; transform: scale(.4); } to { opacity: 1; transform: scale(1); } }
@keyframes eooGateIn { from { opacity: 0; transform: rotate(45deg) scale(.4); } to { opacity: 1; transform: rotate(45deg) scale(1); } }

/* ---------- 6. Execution and governance ---------- */

.eoo-controls { list-style: none; margin: 0 auto; padding: 0; max-width: 1060px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.eoo-controls li { border: 1px solid rgba(71, 40, 125, 0.14); border-top: 3px solid var(--eoo-sym); border-radius: 14px; background: #fff; padding: 24px 22px 26px; box-shadow: 0 1px 2px rgba(20, 16, 31, 0.04), 0 8px 24px -16px rgba(20, 16, 31, 0.18); }
.eoo-controls-ic { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 11px; margin-bottom: 14px; color: var(--eoo-sym); border: 1px solid var(--eoo-sym-line); background: var(--eoo-sym-soft); }
.eoo-controls h3 { margin: 0 0 6px; font-size: 1.12rem; font-weight: 700; color: var(--text-primary); }
.eoo-controls p { margin: 0; font-size: 1rem; line-height: 1.55; color: var(--text-secondary); }

/* ---------- 7. Integration fit ---------- */

.gr .sec.eoo-fit { padding-top: 48px; padding-bottom: 52px; }
.eoo-int { max-width: 900px; margin: 0 auto; border-top: 1px solid var(--hair); }
.eoo-int-group { display: grid; grid-template-columns: 320px 1fr; gap: 24px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--hair); }
.eoo-int-cat { display: inline-flex; align-items: center; gap: 12px; font-size: 1rem; font-weight: 700; color: var(--text-primary); }
.eoo-int-ic { display: flex; align-items: center; justify-content: center; flex: none; width: 36px; height: 36px; border-radius: 10px; color: var(--eoo-sym); border: 1px solid var(--eoo-sym-line); background: #fff; }
.eoo-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.eoo-chip { font-size: 0.95rem; padding: 7px 13px; border-radius: 8px; border: 1px solid var(--hair); background: #fff; color: var(--text-secondary); }

/* ---------- 8. FAQ ---------- */

.eoo-faq { max-width: 820px; margin: 0 auto; display: grid; gap: 10px; }
.eoo-faq-item { border: 1px solid rgba(71, 40, 125, 0.14); border-radius: 12px; background: #fff; padding: 2px 24px; }
.eoo-faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; }
.eoo-faq-item summary::-webkit-details-marker { display: none; }
.eoo-faq-item summary h3 { margin: 0; font-size: 1.05rem; font-weight: 600; color: var(--text-primary); }
.eoo-faq-item summary::after { content: '+'; flex: none; font-size: 1.5rem; font-weight: 300; color: var(--eoo-sym); transition: transform .3s; }
.eoo-faq-item[open] summary::after { transform: rotate(45deg); }
.eoo-faq-item > div { padding: 0 0 20px; }
.eoo-faq-item p { margin: 0; font-size: 1rem; line-height: 1.7; color: var(--text-secondary); }

/* ---------- 9. Demo request ---------- */

.gr .sec.eoo-close { padding: 88px 0 96px; }
.eoo-close-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.eoo-close-c .t { margin-bottom: 16px; }
.eoo-close-sup { margin: 26px 0 0; display: flex; align-items: flex-start; gap: 10px; font-size: 1rem; line-height: 1.55; color: rgba(255, 255, 255, 0.72); }
.eoo-close-sup svg { flex: none; margin-top: 3px; color: var(--eoo-sym); }
.eoo-form { border: 1px solid rgba(255, 255, 255, 0.1); border-top: 3px solid var(--accent); border-radius: 14px; background: #fff; padding: 30px; box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.6); }
.eoo-hp { position: absolute; left: -9999px; }
.eoo-form-h { font-size: 1.3rem; font-weight: 800; color: #14101f; margin-bottom: 20px; }
.eoo-frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.eoo-field { margin-bottom: 18px; }
.eoo-field label { display: block; margin-bottom: 7px; font-size: 0.95rem; font-weight: 600; color: #14101f; }
.eoo-field label .req { color: #b8410a; }
.eoo-field label .opt { font-size: 0.85rem; font-weight: 400; color: #635c78; }
.eoo-field input[type="text"], .eoo-field input[type="email"], .eoo-field textarea { width: 100%; font: inherit; font-size: 1rem; color: #14101f; background: #fbfaff; border: 1px solid rgba(71, 40, 125, 0.22); border-radius: 8px; padding: 12px 14px; transition: border-color .18s, background .18s; }
.eoo-field textarea { resize: vertical; min-height: 108px; line-height: 1.55; }
.eoo-field input::placeholder, .eoo-field textarea::placeholder { color: #7b7490; }
.eoo-field input:focus, .eoo-field textarea:focus { background: #fff; border-color: #6d28d9; }
.eoo-msg { display: none; margin: 7px 0 0; font-size: 0.95rem; line-height: 1.45; color: #b3261e; }
.eoo-field.eoo-invalid input, .eoo-field.eoo-invalid textarea { border-color: #d9534f; }
.eoo-field.eoo-invalid .eoo-msg { display: block; }
.eoo-consent label { display: grid; grid-template-columns: 20px 1fr; gap: 11px; align-items: start; font-weight: 400; font-size: 0.98rem; line-height: 1.55; color: #443d55; cursor: pointer; }
.eoo-consent input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: #6d28d9; }
.eoo-consent a { color: #6d28d9; text-decoration: underline; text-underline-offset: 3px; }
.eoo-consent.eoo-invalid input[type="checkbox"] { outline: 2px solid #d9534f; outline-offset: 2px; }
.eoo-err { display: none; margin: 0 0 20px; padding: 13px 15px; font-size: 1rem; line-height: 1.55; color: #8f2f08; border: 1px solid rgba(217, 83, 79, 0.4); background: rgba(217, 83, 79, 0.08); border-radius: 8px; }
.eoo-err.on { display: block; }
.eoo-submit { margin-top: 6px; }
.eoo-success { display: none; text-align: center; padding: 24px 8px 12px; }
.eoo-success.on { display: block; }
.eoo-success:focus { outline: none; }
.eoo-success-ic { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 50%; margin-bottom: 18px; color: #0f7a5a; border: 1px solid rgba(15, 122, 90, 0.3); background: rgba(45, 212, 167, 0.12); }
.eoo-success h3 { margin: 0 0 10px; font-size: 1.3rem; font-weight: 800; color: #14101f; }
.eoo-success p { margin: 0 auto; max-width: 38ch; font-size: 1rem; line-height: 1.65; color: #443d55; }
/* Form inputs sit on white inside the dark band; focus ring is the light one. */
.gr .sec.eoo-close input:focus-visible, .gr .sec.eoo-close textarea:focus-visible, .gr .sec.eoo-close .eoo-consent a:focus-visible { outline-color: #6d28d9; }

/* ---------- 10. Responsive ---------- */

@media (max-width: 1100px) { .eoo-caps { grid-template-columns: repeat(2, 1fr); } .eoo-controls { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 1024px) {
  .eoo-hero { padding: 108px 0 56px; }
  .eoo-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .eoo-vis { max-width: 560px; margin-inline: auto; }
  .eoo-sb-head { grid-template-columns: 1fr; gap: 14px; }
  .eoo-sub-tabs { grid-template-columns: repeat(3, 1fr); }
  .eoo-close-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 860px) {
  .eoo-sb-steps { grid-template-columns: repeat(2, 1fr); }
  .eoo-scope-areas { grid-template-columns: 1fr; }
  .eoo-scope-area + .eoo-scope-area { border-left: none; border-top: 1px solid var(--hair); }
  .eoo-scope-area, .eoo-caps { padding-left: 24px; padding-right: 24px; }
  .eoo-int-group { grid-template-columns: 1fr; gap: 12px; }
  .eoo-clients-row { gap: 14px 24px; }
  .eoo-clients-row img { height: 26px; max-width: 112px; }
}
@media (max-width: 640px) {
  .eoo-frow { grid-template-columns: 1fr; gap: 0; }
  .eoo-caps, .eoo-controls { grid-template-columns: 1fr; }
  .eoo-vis { padding: 16px; }
  .eoo-vis-areas { grid-template-columns: 1fr; gap: 30px; }
  .eoo-vis-feed { bottom: -22px; height: 22px; }
  .eoo-vis-band { grid-template-columns: 1fr 1fr; }
  .eoo-vis-band li { border-right: none; }
  .eoo-ex-tab { padding: 14px 10px 12px; }
  .eoo-ex-tab-t { font-size: 1rem; }
  .eoo-ex-tab-s { font-size: 0.85rem; }
  .eoo-ex-panel { padding: 16px 16px 20px; }
  .eoo-form { padding: 22px; }
  .eoo-sub-tabs { grid-template-columns: 1fr 1fr; }
  .eoo-sb-block { padding: 14px; }
  .eoo-sb-badge { margin-left: 0; }
  .eoo-sb-steps { grid-template-columns: 1fr; }
  /* The lane grid scrolls sideways inside its block on a phone. */
  .eoo-sb-scroll { -webkit-mask-image: linear-gradient(to right, #000 88%, transparent); mask-image: linear-gradient(to right, #000 88%, transparent); }
  .eoo-sb-scroll::after { content: 'Scroll sideways to follow the sequence'; display: block; margin-top: 8px; font-size: 0.85rem; color: var(--text-tertiary); }
  .eoo-page { padding-bottom: 64px; }
}

/* ---------- 11. Page footer ----------
   Replaces the site footer partial on this page. Dark, continuous with
   the demo band above it, four columns on desktop, two on tablet, one
   on a phone. */

.eoo-foot { position: relative; z-index: 1; background: #0b0814; border-top: 1px solid rgba(255, 255, 255, 0.08); color: #cbc4d2; padding: 56px 0 28px; }
.eoo-foot .wrap { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.eoo-foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.eoo-foot-logo { display: inline-block; margin-bottom: 14px; }
.eoo-foot-logo img { display: block; height: 40px; width: auto; }
.eoo-foot-tag { margin: 0 0 10px; font-size: 1.02rem; font-weight: 600; line-height: 1.5; color: #fff; }
.eoo-foot-sum { margin: 0 0 20px; max-width: 42ch; font-size: 1rem; line-height: 1.6; color: rgba(255, 255, 255, 0.66); }
.eoo-foot-col h4 { margin: 0 0 14px; font-size: 0.95rem; font-weight: 700; color: #fff; }
.eoo-foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.eoo-foot-col a { font-size: 1rem; line-height: 1.4; color: rgba(255, 255, 255, 0.7); transition: color .18s; }
.eoo-foot-col a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.eoo-foot-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px 24px; margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.eoo-foot-copy { margin: 0; font-size: 0.95rem; color: rgba(255, 255, 255, 0.6); }
.eoo-foot-meta { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 22px; }
.eoo-foot-meta li { position: relative; font-size: 0.95rem; color: rgba(255, 255, 255, 0.6); }
.eoo-foot-meta li + li::before { content: ''; position: absolute; left: -13px; top: 50%; width: 4px; height: 4px; border-radius: 50%; background: rgba(255, 255, 255, 0.3); transform: translateY(-50%); }
.eoo-foot-note { margin: 16px 0 0; font-size: 0.95rem; line-height: 1.55; color: rgba(255, 255, 255, 0.5); max-width: 78ch; }
.eoo-foot a:focus-visible { outline: 2px solid #ffb184; outline-offset: 3px; border-radius: 4px; }
@media (max-width: 1024px) { .eoo-foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } .eoo-foot-brand { grid-column: 1 / -1; } }
@media (max-width: 640px) { .eoo-foot { padding: 44px 0 24px; } .eoo-foot-grid { grid-template-columns: 1fr; gap: 28px; } .eoo-foot-bottom { flex-direction: column; align-items: flex-start; } .eoo-foot-meta { flex-direction: column; gap: 6px; } .eoo-foot-meta li + li::before { display: none; } }

/* ---------- 12. Agentic legend, close points, hidden form heading ---------- */

/* The legend reuses the diagram's own two marks so the eye links them. */
.eoo-sb-legend { list-style: none; margin: 14px 0 0; padding: 12px 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; border: 1px solid var(--hair); border-radius: 10px; background: rgba(255, 255, 255, 0.6); }
.eoo-sb-legend li { display: grid; grid-template-columns: 26px minmax(0, 1fr); gap: 10px; align-items: start; font-size: 1rem; line-height: 1.5; color: var(--text-secondary); }
.eoo-sb-legend strong { color: var(--text-primary); }
.eoo-sb-legend-m { display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; margin-top: 1px; }
.eoo-sb-legend-gate { border-radius: 6px; transform: rotate(45deg); background: #fff; border: 2px solid var(--eoo-sym); color: var(--eoo-sym); width: 20px; height: 20px; margin: 3px; }
.eoo-sb-legend-gate svg { transform: rotate(-45deg); }
.eoo-sb-legend-exc { border-radius: 7px; background: #fff; border: 1px solid var(--eoo-exc-line); color: var(--eoo-exc); }

.eoo-close-pts { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 16px; }
.eoo-close-pts li { display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 12px; align-items: start; }
.eoo-close-pt-ic { display: flex; color: var(--eoo-sym); margin-top: 3px; }
.eoo-close-pt-k { display: block; font-size: 1.05rem; font-weight: 700; color: #fff; }
.eoo-close-pt-d { display: block; margin-top: 2px; font-size: 1rem; line-height: 1.55; color: rgba(255, 255, 255, 0.7); }

/* Visually hidden, still announced. */
.eoo-sr { position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0; }

@media (max-width: 640px) { .eoo-sb-legend { grid-template-columns: 1fr; } }


/* ---------- 13. Alternating bands and light islands ----------
   The body now alternates dark and light. White cards that land on a
   dark band (the scope container, the tab bar and panel) redefine the
   light-theme tokens inside themselves, so everything built from
   --text-* and --hair keeps reading dark-on-white wherever it sits. */

.eoo-island, .eoo-scope, .eoo-ex-tabs, .eoo-ex-panel {
  --text-primary: #14101f; --text-secondary: #443d55; --text-tertiary: #635c78;
  --hair: rgba(71, 40, 125, 0.16); --surface: rgba(71, 40, 125, 0.035); --surface-2: rgba(71, 40, 125, 0.06);
  --eoo-sym: #47287d; --eoo-sym-line: rgba(71, 40, 125, 0.28); --eoo-sym-soft: rgba(71, 40, 125, 0.08);
  --eoo-exc: #b3261e; --eoo-exc-line: rgba(179, 38, 30, 0.35); --eoo-exc-soft: rgba(179, 38, 30, 0.06);
  color: var(--text-primary);
}
.gr .sec.eoo-band-d .eoo-scope, .gr .sec.eoo-band-d .eoo-ex-panel { border-color: rgba(255, 255, 255, 0.1); box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.6); }
.gr .sec.eoo-band-d .eoo-ex-tabs { border-color: rgba(255, 255, 255, 0.1); }
.gr .sec.eoo-band-d .eoo-ex-tab + .eoo-ex-tab { border-left-color: rgba(71, 40, 125, 0.14); }
.gr .sec.eoo-band-d .eoo-note { color: rgba(255, 255, 255, 0.62); }
.gr .sec.eoo-band-d .head .eyebrow { color: var(--accent); }

/* Integration rows on the dark band: token-driven, so only the two
   hard-coded whites need re-pointing. */
.gr .sec.eoo-band-d .eoo-int-ic { background: rgba(255, 255, 255, 0.05); color: #c79cff; border-color: rgba(199, 156, 255, 0.34); }
.gr .sec.eoo-band-d .eoo-chip { background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.12); color: rgba(255, 255, 255, 0.82); }
.gr .sec.eoo-band-d .eoo-int-group { border-bottom-color: rgba(255, 255, 255, 0.1); }
.gr .sec.eoo-band-d .eoo-int { border-top-color: rgba(255, 255, 255, 0.1); }
.gr .sec.eoo-band-d .eoo-int-cat { color: #fff; }

/* Top tabs no longer carry a sub-label. */
.eoo-ex-tab { padding: 18px 16px; }
.eoo-ex-tab-t { font-size: 1.12rem; }

/* ---------- 14. The agentic layer ----------
   Three modes on top, each tied down into one rail: inputs to the same
   sequence, not three products. Light band. */

.eoo-agent { max-width: 1060px; margin: 0 auto; }
.eoo-agent-modes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.eoo-agent-mode { position: relative; border: 1px solid rgba(71, 40, 125, 0.14); border-top: 3px solid var(--eoo-sym); border-radius: 14px; background: #fff; padding: 26px 24px 30px; box-shadow: 0 1px 2px rgba(20, 16, 31, 0.04), 0 8px 24px -16px rgba(20, 16, 31, 0.18); }
.eoo-agent-ic { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; margin-bottom: 16px; color: var(--eoo-sym); border: 1px solid var(--eoo-sym-line); background: var(--eoo-sym-soft); }
.eoo-agent-kicker { display: block; font-size: 0.95rem; color: var(--text-tertiary); margin-bottom: 4px; }
.eoo-agent-mode h3 { margin: 0 0 10px; font-size: 1.4rem; font-weight: 800; letter-spacing: -0.015em; color: var(--text-primary); }
.eoo-agent-mode p { margin: 0; font-size: 1rem; line-height: 1.6; color: var(--text-secondary); }
.eoo-agent-tie { position: absolute; left: 50%; bottom: -30px; width: 2px; height: 30px; background: linear-gradient(to bottom, var(--eoo-sym-line), var(--eoo-sym)); }
.eoo-agent-rail { position: relative; margin-top: 30px; }
.eoo-agent-rail-line { position: absolute; left: 16.66%; right: 16.66%; top: 0; height: 2px; background: var(--eoo-sym); }
.eoo-agent-rail-c { margin-top: 2px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px 16px; justify-content: center; padding: 18px 24px; border: 1px solid var(--eoo-sym-line); border-radius: 12px; background: linear-gradient(180deg, rgba(71, 40, 125, 0.08), rgba(71, 40, 125, 0.03)); }
.eoo-agent-rail-k { font-size: 1.15rem; font-weight: 800; color: var(--eoo-sym); }
.eoo-agent-rail-s { font-size: 1rem; color: var(--text-secondary); }
.eoo-agent-foot { margin: 22px auto 0; max-width: 72ch; display: flex; gap: 10px; align-items: flex-start; justify-content: center; font-size: 1rem; line-height: 1.55; color: var(--text-secondary); }
.eoo-agent-foot svg { flex: none; margin-top: 3px; color: var(--eoo-sym); }
@media (max-width: 1024px) {
  .eoo-agent-modes { grid-template-columns: 1fr; gap: 14px; }
  .eoo-agent-tie, .eoo-agent-rail-line { display: none; }
  .eoo-agent-rail { margin-top: 14px; }
}

/* ---------- 15. Centred nav ----------
   Logo at the left edge, button at the right, the section links centred
   between them. The site nav is a space-between flex row, so this page
   switches its inner bar to a three-column grid; the burger takes a
   fourth auto column and the hidden desktop columns collapse to zero on
   small screens. */
.eoo-nav .nav-inner { display: grid; grid-template-columns: 1fr auto 1fr auto; align-items: center; column-gap: 0; }
.eoo-nav .so-nav-links { padding: 0 16px; }
.eoo-nav .nav-logo { justify-self: start; }
.eoo-nav .so-nav-links { justify-content: center; }
.eoo-nav .nav-actions { justify-self: end; }
/* Equal outer tracks, so the links centre on the bar rather than on the
   leftover space between a narrow logo and a wide button. */
@media (max-width: 1024px) { .eoo-nav .nav-inner { grid-template-columns: 1fr auto; } }
