/*
Theme Name: Botspot Child
Template: astra
Version: 1.0
Description: Child theme for BotSpot — built on Astra. Converts static HTML to WordPress.
Author: BotSpot Inc.
Text Domain: botspot-child
*/

/* =========================================================
   DESIGN GUIDELINES — skills.md
   Brand-standard font sizes, CSS variables, and base rules.
   These cascade to ALL pages in the site.
   ========================================================= */

/* ── Brand CSS Variables ── */
:root {
  --primary-color:   #0284C7;
  --secondary-color: #FFFFFF;
  --accent-color:    #4F46E5;
  --text-color:      #0F1E3C;
  --text-secondary:  #445068;
  --text-muted:      #8A97B0;
}

/* ── Font Sizes (skills.md standard)
     Applied to body/content areas only — NOT hero sections.
     Hero headlines use clamp() values defined in their own CSS blocks. ── */
body { font-size: 18px; }
p, .text, label { font-size: 18px; }
input, textarea, select { font-size: 18px; }

/* Content-area headings (cards, sections, sidebar — not hero h1/h2) */
.entry-content h1,
.site-main .card h2,
.site-main .card h3,
.site-main .card h4 { font-size: 28px; }
.entry-content h2   { font-size: 24px; }
.entry-content h3   { font-size: 22px; }
.entry-content h4   { font-size: 20px; }

/* Buttons — 18px / weight 600 per brand guide */
.btn-primary, .btn-secondary, .btn-brand,
.btn-c, .btn-custom, button[type="submit"] { font-size: 18px; font-weight: 600; }

/* ── Suppress Astra's page title / entry-header on custom templates ── */
.page-template-page-agent-marketplace .entry-header,
.page-template-page-botworks .entry-header,
.page-template-page-developers .entry-header,
.page-template-page-how-it-works .entry-header,
.page-template-front-page .entry-header,
.page-template-page-solutions-hub .entry-header,
.page-template-page-solutions-financial .entry-header,
.page-template-page-solutions-healthcare .entry-header,
.page-template-page-solutions-manufacturing .entry-header,
.page-template-page-solutions-realestate .entry-header,
.ast-page-builder-template .entry-header,
body.page .entry-header .entry-title,
.ast-breadcrumbs-wrapper {
  display: none !important;
}

/* ── Remove Astra default padding on custom templates ── */
.page-template-page-agent-marketplace .entry-content,
.page-template-page-botworks .entry-content,
.page-template-page-developers .entry-content,
.page-template-page-how-it-works .entry-content,
.page-template-front-page .entry-content,
.page-template-page-solutions-hub .entry-content,
.page-template-page-solutions-financial .entry-content,
.page-template-page-solutions-healthcare .entry-content,
.page-template-page-solutions-manufacturing .entry-content,
.page-template-page-solutions-realestate .entry-content {
  margin: 0;
  padding: 0;
}

/* ── Full-width content area — disable Astra sidebar/container constraints ── */
.full-width-content {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

/* =========================================================
   All custom CSS extracted from the home page HTML
   ========================================================= */

/* ════════════════════════════════════════════════════════
   DESIGN TOKENS
════════════════════════════════════════════════════════ */
:root {
  /* Colors */
  --bg-base:        #F8FAFD;
  --bg-surface:     #FFFFFF;
  --bg-raised:      #F0F5FF;
  --bg-overlay:     #E8F0FE;
  --border:         rgba(15,30,80,0.07);
  --border-strong:  rgba(15,30,80,0.13);
  --blue:           #0284C7;
  --blue-rich:      #0369A1;
  --blue-dim:       rgba(2,132,199,0.08);
  --blue-glow:      rgba(2,132,199,0.22);
  --indigo:         #4F46E5;
  --indigo-rich:    #4338CA;
  --indigo-dim:     rgba(79,70,229,0.08);
  --indigo-glow:    rgba(79,70,229,0.18);
  --green:          #059669;
  --green-dim:      rgba(5,150,105,0.08);
  --amber:          #D97706;
  --red:            #DC2626;
  --text-primary:   #0F1E3C;
  --text-secondary: #445068;
  --text-muted:     #8A97B0;
  --gradient-brand: linear-gradient(135deg, #0284C7 0%, #4F46E5 100%);
  --gradient-brand-rev: linear-gradient(135deg, #4F46E5 0%, #0284C7 100%);

  /* Typography */
  --font-display: 'Sora', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Radius */
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  /* Layout */
  --max-w:    100%;
  --section-pad: 100px;
  --page-gutter: 5%;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(15,30,80,0.06), 0 1px 2px rgba(15,30,80,0.04);
  --shadow-md:   0 4px 16px rgba(15,30,80,0.08), 0 1px 4px rgba(15,30,80,0.05);
  --shadow-lg:   0 12px 40px rgba(15,30,80,0.10), 0 2px 8px rgba(15,30,80,0.06);
  --shadow-card: 0 2px 8px rgba(15,30,80,0.06), 0 0 0 1px rgba(15,30,80,0.05);

  /* Button System */
  --btn-font-size:   18px;
  --btn-font-weight: 600;
  --btn-padding:     11px 22px;
  --btn-radius:      var(--radius-sm);
  --btn-border-width: 1px;
}

/* ════════════════════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Skip-to-content (Guideline: accessibility) ────────── */
.bs-skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--gradient-brand);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: top 0.2s ease;
}
.bs-skip-link:focus { top: 16px; outline: 3px solid #fff; outline-offset: 2px; }

/* ── Focus-visible (Guideline: accessibility/QA) ───────── */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Image performance (Guideline: performance check) ───── */
img { max-width: 100%; height: auto; display: block; }

/* ── Print-safe base (Guideline: cross-browser QA) ─────── */
@media print {
  .nav, .hero-arrows, .hero-indicators, .mobile-menu,
  .cta-float-el, .cta-geo-shape, .pc-orb, .pc-particle { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  a { text-decoration: underline; }
}

/* ════════════════════════════════════════════════════════
   TYPOGRAPHY SYSTEM (STRICT)
════════════════════════════════════════════════════════ */
h1 { font-family: var(--font-display); font-size: 66px; font-weight: 800; line-height: 1.08; letter-spacing: -0.04em; }
h2 { font-family: var(--font-display); font-size: 44px; font-weight: 700; line-height: 1.15; letter-spacing: -0.03em; }
h3 { font-family: var(--font-display); font-size: 34px; font-weight: 600; line-height: 1.2;  letter-spacing: -0.02em; }
h4 { font-family: var(--font-display); font-size: 28px; font-weight: 600; line-height: 1.25; letter-spacing: -0.02em; }
h5 { font-family: var(--font-display); font-size: 24px; font-weight: 600; line-height: 1.3;  letter-spacing: -0.015em; }
h6 { font-family: var(--font-display); font-size: 18px; font-weight: 600; line-height: 1.4;  letter-spacing: -0.01em; }
p  { font-size: 18px; font-weight: 400; line-height: 1.7; color: var(--text-secondary); }
p.small { font-size: 16px; }

/* ════════════════════════════════════════════════════════
   LAYOUT
════════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: none;       /* Override Bootstrap breakpoint max-widths site-wide */
  margin: 0 auto;
  padding: 0 var(--page-gutter);
}
section {
  padding: var(--section-pad) 0;
}

/* ════════════════════════════════════════════════════════
   BUTTON SYSTEM (UNIFIED)
   Only 2 variants: primary + secondary
════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: var(--btn-padding);
  font-family: var(--font-body);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  border-radius: var(--btn-radius);
  border: var(--btn-border-width) solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  line-height: 1;
}
.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 2px 12px var(--blue-glow);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--blue-glow);
}
.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-primary);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  background: var(--bg-raised);
  box-shadow: var(--shadow-md);
}

/* ════════════════════════════════════════════════════════
   SECTION LABEL
════════════════════════════════════════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--blue);
}
.section-label.center { justify-content: center; }

/* ════════════════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════════════════ */
@keyframes float      { 0%,100%{transform:translateY(0)}   50%{transform:translateY(-7px)} }
@keyframes float-slow { 0%,100%{transform:translateY(0)}   50%{transform:translateY(-4px)} }
@keyframes pulse-dot  { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.55;transform:scale(.75)} }
@keyframes pulse      { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
@keyframes dash-flow  { to { stroke-dashoffset: -32; } }
@keyframes dash-rev   { to { stroke-dashoffset:  32; } }
@keyframes spin-slow  { to { transform: rotate(360deg); } }
@keyframes shimmer    { 0%{opacity:.4} 50%{opacity:1} 100%{opacity:.4} }
@keyframes slide-up   { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes orbit-rotate { to { transform: rotate(360deg); } }
@keyframes bar-fill   { from{width:0} to{width:var(--bar-target)} }
@keyframes ping       { 75%,100%{transform:scale(1.8);opacity:0} }
@keyframes gradient-x {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── New Enhancement Animations ───────────────────── */
@keyframes flow-right {
  0%   { stroke-dashoffset: 60; opacity: 0.2; }
  50%  { opacity: 1; }
  100% { stroke-dashoffset: -60; opacity: 0.2; }
}
@keyframes connector-flow {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes particle-float {
  0%,100% { transform: translate(0,0) scale(1); opacity: 0.4; }
  33%      { transform: translate(20px,-30px) scale(1.1); opacity: 0.7; }
  66%      { transform: translate(-15px,20px) scale(0.9); opacity: 0.5; }
}
@keyframes bubble-rise {
  0%   { transform: translateY(0) scale(1) rotate(0deg); opacity: 0.5; }
  50%  { opacity: 0.8; }
  100% { transform: translateY(-120px) scale(0.6) rotate(180deg); opacity: 0; }
}
@keyframes tilt-hover {
  0%,100% { transform: perspective(800px) rotateX(0deg) rotateY(0deg); }
}
@keyframes orch-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(2,132,199,0.4); }
  50%      { box-shadow: 0 0 0 10px rgba(2,132,199,0); }
}
@keyframes orch-data-flow {
  0%   { transform: translateX(-100%); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateX(400%); opacity: 0; }
}
@keyframes card-shine {
  0%   { transform: translateX(-200%) skewX(-20deg); }
  100% { transform: translateX(300%) skewX(-20deg); }
}
@keyframes float-elem {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  25%      { transform: translate(8px,-12px) rotate(2deg); }
  50%      { transform: translate(-6px,-20px) rotate(-1deg); }
  75%      { transform: translate(10px,-8px) rotate(1deg); }
}
@keyframes float-elem-b {
  0%,100% { transform: translate(0,0) rotate(0deg) scale(1); }
  33%      { transform: translate(-12px,-18px) rotate(-3deg) scale(1.05); }
  66%      { transform: translate(8px,-10px) rotate(2deg) scale(0.95); }
}
@keyframes glow-pulse {
  0%,100% { opacity: 0.4; transform: scale(1); }
  50%      { opacity: 0.7; transform: scale(1.1); }
}
@keyframes card-lift-reveal {
  from { opacity:0; transform: translateY(30px) rotateX(8deg) scale(0.97); }
  to   { opacity:1; transform: translateY(0) rotateX(0) scale(1); }
}
@keyframes border-trace {
  0%   { clip-path: inset(0 100% 0 0); }
  100% { clip-path: inset(0 0 0 0); }
}
@keyframes scan-line {
  0%   { top: 0%; opacity: 0.6; }
  100% { top: 100%; opacity: 0; }
}
@keyframes network-dot-pulse {
  0%,100% { r: 4; opacity: 0.6; }
  50%      { r: 7; opacity: 1; }
}
@keyframes step-connector-flow {
  0%   { background-position: -400% 0; }
  100% { background-position: 400% 0; }
}
@keyframes mondrian-drift {
  0%,100% { transform: translate(0,0); }
  50%      { transform: translate(5px, -8px); }
}
@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

.gradient-text {
  background: var(--gradient-brand);
  background-size: 200% 200%;
  animation: gradient-x 4s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ════════════════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 var(--page-gutter);
  background: rgba(248,250,253,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  box-shadow: 0 2px 10px var(--blue-glow);
}
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  padding: 6px 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text-primary); background: var(--bg-raised); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  padding: 8px;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--bg-surface);
  z-index: 199;
  padding: 32px var(--page-gutter);
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.mobile-menu-cta { margin-top: 16px; }

/* ════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════ */
#hero {
  min-height: 90vh;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-surface);
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 65% 50%, rgba(2,132,199,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 85% 25%, rgba(79,70,229,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 15% 75%, rgba(2,132,199,0.05) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(15,30,80,0.055) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 85% 85% at 55% 50%, black 20%, transparent 80%);
}

/* Hero Slider */
.hero-slider { position: relative; z-index: 2; width: 100%; height: 90vh; }
.hero-slide  {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.8s ease;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide-inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 108px 6% 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-dim);
  border: 1px solid rgba(2,132,199,0.15);
  border-radius: 100px;
  padding: 6px 14px 6px 10px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px rgba(5,150,105,0.5);
  animation: pulse-dot 2s ease infinite;
  flex-shrink: 0;
}
.hero-headline { font-size: 66px; margin-bottom: 20px; }
.hero-sub {
  color: var(--text-secondary);
  max-width: 414px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-social-proof { margin-top: 50px; display: flex; align-items: center; gap: 20px; }
.proof-avatars { display: flex; }
.proof-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg-surface);
  background: var(--bg-overlay);
  margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: var(--blue);
  box-shadow: 0 0 0 1px var(--border);
}
.proof-avatar:first-child { margin-left: 0; }
.proof-text { font-size: 14px; color: var(--text-muted); line-height: 1.4; }
.proof-text strong { color: var(--text-secondary); font-weight: 500; }

/* Slider controls */
.hero-indicators {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 10px; align-items: center;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(15,30,80,0.15);
  border: none; cursor: pointer;
  transition: all 0.3s; padding: 0;
}
.hero-dot.active {
  width: 32px; border-radius: 4px;
  background: var(--gradient-brand);
  box-shadow: 0 2px 8px var(--blue-glow);
}
.hero-arrows {
  position: absolute; bottom: 32px; right: 5%;
  z-index: 10; display: flex; gap: 8px;
}
.hero-arrow {
  width: 40px; height: 40px;
  min-width: 40px; min-height: 40px;
  padding: 0;                          /* prevent Bootstrap button padding */
  flex-shrink: 0;
  border-radius: 50% !important;      /* override Bootstrap button border-radius: 0 */
  background: var(--bg-surface);
  border: 1.5px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s; color: var(--text-primary);
  box-shadow: 0 2px 8px rgba(15,30,80,0.12);
  line-height: 1;
}
.hero-arrow:hover {
  background: var(--bg-raised);
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: var(--shadow-md);
}

/* ─ Hero Visual: Ecosystem Diagram ─ */
.hero-visual { position: relative; width: 100%; max-width: 468px; display: flex; align-items: center; justify-content: center; }
.ecosystem-diagram {
  position: relative; width: 100%; max-width: 468px; aspect-ratio: 1;
  filter: drop-shadow(0 24px 48px rgba(2,132,199,0.12));
}
.eco-svg { width: 100%; height: 100%; overflow: visible; }
.eco-node-center { animation: float 4s ease-in-out infinite; }
.eco-node-orbit   { animation: float-slow 5.5s ease-in-out infinite; }
.flow-line     { stroke-dasharray: 8 4; animation: dash-flow 2.5s linear infinite; }
.flow-line-rev { stroke-dasharray: 8 4; animation: dash-rev 2.5s linear infinite; }

/* ─ Hero Visual: Dashboard (Slide 2) ─ */
.slide2-visual { position: relative; width: 100%; max-width: 468px; }
.s2-dashboard {
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.s2-dash-header {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-raised);
}
.s2-dash-title {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  color: var(--text-primary); display: flex; align-items: center; gap: 8px;
}
.s2-status {
  font-family: var(--font-mono); font-size: 10px; color: var(--green);
  display: flex; align-items: center; gap: 5px;
}
.s2-status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); animation: pulse-dot 2s ease infinite;
}
.s2-agents-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 20px; }
.s2-agent-card {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 14px; background: var(--bg-surface); transition: all 0.3s;
}
.s2-agent-card:hover { border-color: rgba(2,132,199,0.3); box-shadow: var(--shadow-md); }
.s2-agent-top { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.s2-agent-avatar {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.s2-agent-name { font-family: var(--font-display); font-size: 14px; font-weight: 700; }
.s2-agent-role { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); }
.s2-agent-bar { height: 4px; border-radius: 2px; background: var(--bg-raised); overflow: hidden; margin-bottom: 6px; }
.s2-agent-bar-fill { height: 100%; border-radius: 2px; }
.s2-agent-meta { font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); display: flex; justify-content: space-between; }
.s2-bottom-bar {
  padding: 14px 20px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(2,132,199,0.02);
}
.s2-cost { font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); }
.s2-cost strong { color: var(--blue); font-weight: 600; }
.s2-security { display: flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 10px; color: var(--green); }
.s2-float-badge {
  position: absolute; padding: 8px 14px; border-radius: 100px;
  background: var(--bg-surface); border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-md); font-family: var(--font-mono); font-size: 10px;
  display: flex; align-items: center; gap: 6px; color: var(--text-secondary);
  animation: float 4s ease-in-out infinite;
}
.s2-float-badge.top-right  { top: -10px; right: -10px; animation-delay: -0.5s; }
.s2-float-badge.bottom-left { bottom: 10px; left: -20px; animation-delay: -1.5s; }

/* ─ Hero Visual: Workflow (Slide 3) ─ */
.slide3-visual { position: relative; width: 100%; max-width: 468px; }
.s3-workflow {
  background: var(--bg-surface); border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg);
}
.s3-wf-header {
  padding: 16px 24px; border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(2,132,199,0.04), rgba(79,70,229,0.04));
  display: flex; align-items: center; gap: 10px;
}
.s3-wf-title { font-family: var(--font-display); font-size: 14px; font-weight: 700; }
.s3-wf-auto {
  margin-left: auto; font-family: var(--font-mono); font-size: 12px;
  padding: 3px 10px; border-radius: 100px;
  background: rgba(5,150,105,0.1); color: var(--green);
  border: 1px solid rgba(5,150,105,0.2);
}
.s3-inputs { padding: 20px 24px; display: flex; flex-direction: column; gap: 10px; border-bottom: 1px solid var(--border); }
.s3-input-row { display: flex; align-items: center; gap: 10px; }
.s3-input-label { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; width: 70px; flex-shrink: 0; }
.s3-input-val {
  flex: 1; padding: 8px 14px; border-radius: var(--radius-sm);
  background: var(--bg-raised); border: 1px solid var(--border);
  font-family: var(--font-body); font-size: 14px; color: var(--text-primary);
}
.s3-gen-divider {
  text-align: center; padding: 12px; font-size: 14px; color: var(--text-muted);
  font-family: var(--font-mono); letter-spacing: 0.1em;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.s3-gen-divider::before, .s3-gen-divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}
.s3-pipeline { padding: 16px 24px 20px; display: flex; flex-direction: column; gap: 8px; }
.s3-pipe-step {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--radius-md); border: 1px solid var(--border); transition: all 0.3s;
}
.s3-pipe-step.active  { border-color: rgba(2,132,199,0.3); background: rgba(2,132,199,0.04); }
.s3-pipe-step.complete{ border-color: rgba(5,150,105,0.3); background: rgba(5,150,105,0.04); }
.s3-pipe-icon { width: 28px; height: 28px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.s3-pipe-info { flex: 1; }
.s3-pipe-name  { font-family: var(--font-display); font-size: 12px; font-weight: 700; }
.s3-pipe-model { font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); }
.s3-pipe-status { font-family: var(--font-mono); font-size: 10px; padding: 2px 8px; border-radius: 100px; }
.s3-pipe-status.done    { background: rgba(5,150,105,0.1); color: var(--green); }
.s3-pipe-status.running { background: rgba(2,132,199,0.1); color: var(--blue); }
.s3-pipe-status.queued  { background: var(--bg-raised); color: var(--text-muted); }
.s3-float-badge {
  position: absolute; padding: 10px 16px; border-radius: var(--radius-md);
  background: var(--bg-surface); border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg); animation: float 5s ease-in-out infinite;
}
.s3-float-vacation { bottom: 20px; right: -30px; animation-delay: -1s; display: flex; align-items: center; gap: 8px; font-size: 14px; }
.s3-vacation-text { font-family: var(--font-display); font-size: 12px; font-weight: 700; color: var(--text-primary); }
.s3-vacation-sub  { font-family: var(--font-mono); font-size: 10px; color: var(--green); }

/* ════════════════════════════════════════════════════════
   STATS BAR
════════════════════════════════════════════════════════ */
#stats-bar {
  padding: 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  
  padding: 32px 40px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  
  font-family: var(--font-display); font-size: 34px; font-weight: 800;
   line-height: 1; margin-bottom: 6px;
  background: var(--gradient-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 14px; color: var(--text-muted); font-weight: 400; line-height: 1.4; }

/* ════════════════════════════════════════════════════════
   PROBLEM SECTION
════════════════════════════════════════════════════════ */
#why { background: var(--bg-base); }
.why-header-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  margin-bottom: 72px;
  padding: 0 40px;
}
.why-heading-area { }
.why-animated-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.why-badge-orbit {
  position: relative;
  width: 48px; height: 48px;
}
.why-badge-orbit-ring {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px dashed rgba(220,38,38,0.35);
  animation: orbit-rotate 8s linear infinite;
}
.why-badge-orbit-dot {
  position: absolute; top: -4px; left: 50%; margin-left: -4px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 8px rgba(220,38,38,0.5);
}
.why-badge-text {
  font-family: var(--font-mono); font-size: 18px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--red);
}
.why-h2 { margin-bottom: 18px; }
.why-graphic-area {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.why-svg-wrap {
  position: relative;
  width: 100%; max-width: 460px;
}
.chaos-anim-wrap {
  width: 100%;
  max-width: 460px;
  margin-left: auto;
}

/* Problem cards — point-based */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.problem-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 36px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.problem-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: rgba(2,132,199,0.2); }
.problem-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-brand); opacity: 0; transition: opacity 0.25s;
}
.problem-card:hover::before { opacity: 1; }
.problem-icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.problem-icon-wrap.red    { background: rgba(220,38,38,0.08); border: 1px solid rgba(220,38,38,0.15); color: var(--red); }
.problem-icon-wrap.amber  { background: rgba(217,119,6,0.08);  border: 1px solid rgba(217,119,6,0.15);  color: var(--amber); }
.problem-icon-wrap.blue   { background: var(--blue-dim);        border: 1px solid rgba(2,132,199,0.15);  color: var(--blue); }
.problem-card-title { margin-bottom: 20px; font-family: var(--font-display); letter-spacing: -0.015em; }
.problem-points { display: flex; flex-direction: column; gap: 10px; }
.problem-point {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 18px; color: var(--text-secondary); line-height: 1.55;
}
.problem-point-dot {
  width: 5px; height: 5px; border-radius: 50%;
  margin-top: 7px; flex-shrink: 0;
}
.problem-point-dot.red   { background: var(--red); }
.problem-point-dot.amber { background: var(--amber); }
.problem-point-dot.blue  { background: var(--blue); }
/* Outline ring bullets – replaced with native list style */
.problem-points {
  display: flex; flex-direction: column; gap: 10px;
  list-style: circle;
  padding-left: 20px;
}

}
/* hide the old ring/dot spans – kept in HTML for backward compat */
.problem-point-ring,
.problem-point-dot { display: none; }

/* Chaos animation keyframes */
@keyframes chaos-float-a {
  0%,100% { transform: translate(0,0); }
  30%      { transform: translate(6px,-8px); }
  60%      { transform: translate(-4px,5px); }
}
@keyframes chaos-float-b {
  0%,100% { transform: translate(0,0); }
  40%      { transform: translate(-8px,-6px); }
  70%      { transform: translate(5px,4px); }
}
@keyframes chaos-warn-pulse {
  0%,100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.25); }
}
@keyframes dash-flow-chaos { to { stroke-dashoffset: -20; } }
@keyframes packet-travel-1 {
  0%   { cx: 68; cy: 45; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { cx: 330; cy: 43; opacity: 0; }
}
@keyframes packet-travel-2 {
  0%   { cx: 214; cy: 35; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { cx: 68; cy: 165; opacity: 0; }
}
@keyframes packet-travel-3 {
  0%   { cx: 366; cy: 60; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { cx: 68; cy: 172; opacity: 0; }
}
@keyframes log-row-blink {
  0%,49% { opacity: 1; }
  50%,100% { opacity: 0.3; }
}
@keyframes cursor-blink {
  0%,49% { opacity: 1; }
  50%,100% { opacity: 0; }
}
/* Mini graphic inside card */
.problem-mini-graphic {
  margin-top: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ════════════════════════════════════════════════════════
   PLATFORM SECTION (PRODUCTS)
════════════════════════════════════════════════════════ */
#what { background: linear-gradient(180deg, var(--bg-base) 0%, #EEF3FF 100%); }
.what-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.what-sub { font-size: 18px; color: var(--text-secondary); margin-top: 14px; }

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
/* product-card base handled by enhancement block above */
.product-card.blue-card   { border-color: rgba(2,132,199,0.18); }
.product-card.indigo-card { border-color: rgba(79,70,229,0.18); }
.product-card.blue-card:hover   { border-color: rgba(2,132,199,0.4); }
.product-card.indigo-card:hover { border-color: rgba(79,70,229,0.35); }

/* Title area graphic overlay */
.product-title-area {
  position: relative;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.product-title-bg {
  position: absolute; top: -52px; right: -44px;
  width: 220px; height: 180px; border-radius: 50%;
  pointer-events: none; opacity: 0.6;
}
.blue-card   .product-title-bg { background: radial-gradient(circle, rgba(2,132,199,0.12), transparent 70%); }
.indigo-card .product-title-bg { background: radial-gradient(circle, rgba(79,70,229,0.12), transparent 70%); }
/* Geometric decorations in title area */
.product-geo {
  position: absolute; top: 0; right: 0;
  pointer-events: none; opacity: 0.25;
}

.product-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px; margin-bottom: 16px; width: fit-content;
}
.product-tag.blue-tag   { background: var(--blue-dim);   color: var(--blue-rich);   border: 1px solid rgba(2,132,199,0.2); }
.product-tag.indigo-tag { background: var(--indigo-dim); color: var(--indigo-rich); border: 1px solid rgba(79,70,229,0.2); }
.product-name { font-size: 34px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 8px; font-family: var(--font-display); }
.blue-card   .product-name { color: var(--blue-rich); }
.indigo-card .product-name { color: var(--indigo-rich); }
.product-tagline { font-size: 18px; font-weight: 600; color: var(--text-primary); line-height: 1.3; font-family: var(--font-display); }

.product-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
  margin: 28px 0 36px;
  flex: 1;
}
.product-features li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 18px; color: var(--text-secondary); line-height: 1.55;
}
.feat-icon {
  width: 20px; height: 20px; border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px; font-size: 11px;
}
.feat-icon.blue-icon   { background: var(--blue-dim); color: var(--blue); }
.feat-icon.indigo-icon { background: var(--indigo-dim); color: var(--indigo); }

/* Visual representation inside product card */
.product-visual-bar {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px;
  margin-bottom: 28px;
}
.pv-bar-col {
  display: flex; flex-direction: column; gap: 3px; align-items: center;
}
.pv-bar-seg {
  width: 100%; border-radius: 2px; transition: opacity 0.3s;
}
.pv-bar-label {
  font-family: var(--font-mono); font-size: 12px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px;
}

/* ════════════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════════════ */
#how { background: var(--bg-surface); }
.how-header { max-width: 640px; margin-bottom: 72px; }
.how-header p { margin-top: 14px; }

.steps-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 72px;
}
.steps-connector {
  position: absolute;
  top: 44px; left: calc(12.5% + 24px); right: calc(12.5% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--indigo));
  opacity: 0.2;
  z-index: 0;
}
.step { position: relative; z-index: 1; padding: 0 28px; text-align: center; }
.step-num-wrap {
  width: 88px; height: 88px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--bg-surface);
  display: flex; align-items: center; justify-content: center;
  margin: 10px auto 10px ;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.step:hover .step-num-wrap {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(2,132,199,0.1), var(--shadow-md);
  background: var(--bg-raised);
}
.step-icon-svg { width: 70px; height: 70px; color: var(--blue); }
.step:nth-child(2) .step-icon-svg { color: var(--indigo); }
.step:nth-child(3) .step-icon-svg { color: var(--blue); }
.step:nth-child(4) .step-icon-svg { color: var(--indigo); }
.step-index {
  position: absolute; top: -8px; right: -8px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gradient-brand); color: #fff;
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(2,132,199,0.35);
}
.step-title { margin-bottom: 10px; font-family: var(--font-display); }
.step-desc  { color: var(--text-secondary); line-height: 1.6; }

/* Orchestration Engine Block */
.orch-block {
  background: var(--text-primary);
  border-radius: var(--radius-xl);
  padding: 56px 60px;
  position: relative; overflow: hidden;
}
.orch-block-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 80% 50%, rgba(2,132,199,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 15% 40%, rgba(79,70,229,0.14) 0%, transparent 60%);
}
.orch-block-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}
.orch-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.orch-label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 16px;
}
.orch-headline {
  font-family: var(--font-display); font-size: 34px; font-weight: 700;
  letter-spacing: -0.03em; color: #fff; line-height: 1.2; margin-bottom: 14px;
}
.orch-sub { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 32px; }
.orch-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.orch-tag {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  padding: 6px 14px; border-radius: 100px; letter-spacing: 0.06em;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.55);
}
.orch-tag.active-blue   { border-color: rgba(2,132,199,0.5); color: #38BDF8; background: rgba(2,132,199,0.12); }
.orch-tag.active-indigo { border-color: rgba(79,70,229,0.5); color: #818CF8; background: rgba(79,70,229,0.12); }

/* Orchestration visual */
.orch-visual { display: flex; align-items: center; justify-content: center; }
.orch-diagram {
  width: 100%; max-width: 420px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg); padding: 24px;
}
.orch-models-row { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.model-chip {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 100px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,0.5);
}
.model-dot { width: 6px; height: 6px; border-radius: 50%; }
.model-dot.gpt     { background: #10A37F; }
.model-dot.claude  { background: #C67229; }
.model-dot.gemini  { background: #4285F4; }
.model-dot.llama   { background: #8B5CF6; }
.model-dot.mistral { background: #FF7700; }
.orch-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 12px 0; }
.orch-flow { display: flex; flex-direction: column; gap: 6px; }
.orch-flow-row { display: flex; align-items: center; gap: 8px; }
.orch-flow-node {
  flex: 1; padding: 8px 14px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,0.4);
  text-align: center;
}
.orch-flow-node.blue-node   { background: rgba(2,132,199,0.12); border-color: rgba(2,132,199,0.3); color: #38BDF8; }
.orch-flow-node.indigo-node { background: rgba(79,70,229,0.12); border-color: rgba(79,70,229,0.3); color: #818CF8; }
.orch-flow-arrow { color: rgba(255,255,255,0.2); font-size: 10px; flex-shrink: 0; }
.orch-metrics-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 14px; }
.orch-metric {
  padding: 10px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.orch-metric-val { font-family: var(--font-display); font-size: 16px; font-weight: 800; color: rgba(255,255,255,0.8); margin-bottom: 2px; }
.orch-metric-lbl { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,0.3); letter-spacing: 0.08em; }

/* Flow animation diagram */
.flow-diagram-wrap {
  margin-top: 64px;
  padding: 48px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  position: relative; overflow: hidden;
}
.flow-diagram-label {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); text-align: center; margin-bottom: 40px;
}
.flow-diagram {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: nowrap; overflow-x: auto;
}
.flow-node {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  flex: 1; min-width: 120px; max-width: 180px;
}
.flow-node-circle {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-strong);
  background: var(--bg-surface);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.25s;
}
.flow-node:hover .flow-node-circle {
  box-shadow: 0 0 0 4px rgba(2,132,199,0.12), var(--shadow-md);
  border-color: var(--blue);
}
.flow-node-num {
  position: absolute; top: 0px; right: -6px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gradient-brand); color: #fff;
  font-family: var(--font-display); font-size: 14px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.flow-node-label { font-family: var(--font-display); font-size: 14px; font-weight: 600; text-align: center; }
.flow-node-sub   { font-size: 12px; color: var(--text-muted); text-align: center; line-height: 1.4; max-width: 120px; }
.flow-connector  {
  flex: 0 0 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--border-strong), rgba(2,132,199,0.3), var(--border-strong));
  position: relative;
  overflow: hidden;
}
.flow-connector::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(2,132,199,0.8), transparent);
  transform: translateX(-100%);
  animation: flow-pulse 2.5s ease-in-out infinite;
}
@keyframes flow-pulse {
  0%   { transform: translateX(-100%); opacity: 0; }
  30%  { opacity: 1; }
  70%  { opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}
.flow-connector:nth-child(2)  { animation-delay: 0s; }
.flow-connector:nth-child(4)  { animation-delay: 0.6s; }
.flow-connector:nth-child(6)  { animation-delay: 1.2s; }

/* ════════════════════════════════════════════════════════
   SOLUTIONS — CASE STUDY SLIDER
════════════════════════════════════════════════════════ */
/* Slider wrapper */
.case-slider-outer {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 0 0 48px;
}
.case-slider-track-wrap {
  overflow: hidden;
  padding: 16px 0 24px;
  cursor: grab;
}
.case-slider-track-wrap:active { cursor: grabbing; }
.case-slider-track {
  display: flex;
  gap: 24px;
  padding: 0 5%;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  user-select: none;
}
.case-slide-card {
  flex: 0 0 400px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.4s, transform 0.4s, border-color 0.4s, opacity 0.4s;
  display: flex;
  flex-direction: column;
  position: relative;
  opacity: 0.7;
  transform: scale(0.97);
}
.case-slide-card.active-slide {
  box-shadow: var(--shadow-lg);
  opacity: 1;
  transform: scale(1);
  border-color: rgba(2,132,199,0.22);
}
.case-slide-card:hover { opacity: 1; transform: scale(1.01); box-shadow: var(--shadow-lg); }

/* Card top accent strip */
.case-slide-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  border-radius: 3px 3px 0 0;
  opacity: 0; transition: opacity 0.3s;
}
.case-slide-card.active-slide::before,
.case-slide-card:hover::before { opacity: 1; }

/* Per-dept accent colors */
.case-slide-card[data-dept="sales"]::before   { background: linear-gradient(90deg, #0284C7, #38BDF8); }
.case-slide-card[data-dept="finance"]::before { background: linear-gradient(90deg, #059669, #34D399); }
.case-slide-card[data-dept="legal"]::before   { background: linear-gradient(90deg, #4F46E5, #818CF8); }
.case-slide-card[data-dept="hr"]::before      { background: linear-gradient(90deg, #D97706, #FCD34D); }
.case-slide-card[data-dept="ops"]::before     { background: linear-gradient(90deg, #0284C7, #4F46E5); }
.case-slide-card[data-dept="eng"]::before     { background: linear-gradient(90deg, #4F46E5, #818CF8); }

.case-slide-header {
  padding: 24px 28px 18px;
  display: flex; align-items: center; gap: 14px;
  border-bottom: 1px solid var(--border);
}
.case-slide-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.case-slide-card:hover .case-slide-icon { transform: scale(1.12) rotate(-4deg); }
.case-slide-dept { font-family: var(--font-display); font-size: 16px; font-weight: 700; }
.case-slide-badge {
  margin-left: auto;
  font-family: var(--font-mono); font-size: 9px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
}
.case-slide-body { padding: 22px 28px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.case-slide-before, .case-slide-after {
  border-radius: var(--radius-md); padding: 14px 16px;
}
.case-slide-before { background: rgba(220,38,38,0.04); border: 1px solid rgba(220,38,38,0.1); }
.case-slide-after  { background: rgba(5,150,105,0.04);  border: 1px solid rgba(5,150,105,0.1); }
.slide-tag {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 7px;
}
.slide-tag-before { color: var(--red); }
.slide-tag-after  { color: var(--green); }
.slide-dot { width: 6px; height: 6px; border-radius: 50%; }
.slide-dot-red   { background: var(--red); }
.slide-dot-green { background: var(--green); }
.slide-text { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.case-slide-arrow { text-align: center; font-size: 18px; color: var(--text-muted); line-height: 1; }
.case-slide-footer {
  padding: 16px 28px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(248,250,253,0.5);
}
.case-slide-metric-val {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--gradient-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.case-slide-metric-lbl { font-size: 11px; color: var(--text-muted); line-height: 1.4; margin-top: 2px; }
.case-slide-agents {
  font-family: var(--font-mono); font-size: 10px; color: var(--text-muted);
  display: flex; align-items: center; gap: 4px;
}
.agent-pip { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); opacity: 0.5; }

/* Slider controls */
.case-slider-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-top: 32px;
}
.case-slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-surface); border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s; color: var(--text-primary);
  font-size: 0;
}
.case-slider-btn:hover {
  background: var(--gradient-brand); color: #fff; border-color: transparent;
  box-shadow: 0 4px 14px var(--blue-glow);
}
.case-slider-btn svg { width: 16px; height: 16px; }
.case-slider-dots {
  display: flex; align-items: center; gap: 8px;
}
.case-slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(15,30,80,0.15);
  border: none; cursor: pointer; transition: all 0.3s; padding: 0;
}
.case-slider-dot.active {
  width: 28px; border-radius: 4px;
  background: var(--gradient-brand);
  box-shadow: 0 2px 8px var(--blue-glow);
}
/* Progress bar beneath slider */
.case-slider-progress {
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  margin: 0 5%;
  margin-top: 8px;
  overflow: hidden;
}
.case-slider-progress-fill {
  height: 100%;
  background: var(--gradient-brand);
  border-radius: 2px;
  transition: width 0.5s ease;
}

/* ── Product card title area: live animated graphics ── */
.product-title-anim {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
/* Animated network nodes in title area */
.pta-node {
  position: absolute; border-radius: 50%;
  border: 1px solid currentColor;
  display: flex; align-items: center; justify-content: center;
}
.pta-node-inner { border-radius: 50%; background: currentColor; opacity: 0.4; }
.pta-node-1 { width: 36px; height: 36px; top: 12px; right: 60px; color: rgba(2,132,199,0.35); animation: float-slow 5s ease-in-out infinite; }
.pta-node-1 .pta-node-inner { width: 14px; height: 14px; }
.pta-node-2 { width: 24px; height: 24px; top: 30px; right: 110px; color: rgba(79,70,229,0.3); animation: float-slow 7s ease-in-out infinite 1s; }
.pta-node-2 .pta-node-inner { width: 8px; height: 8px; }
.pta-node-3 { width: 18px; height: 18px; top: 8px; right: 140px; color: rgba(5,150,105,0.3); animation: float 6s ease-in-out infinite 0.5s; }
.pta-node-3 .pta-node-inner { width: 6px; height: 6px; }
.indigo-card .pta-node-1 { color: rgba(79,70,229,0.35); }
.indigo-card .pta-node-2 { color: rgba(2,132,199,0.3); }
/* Animated SVG connecting lines in title area */
.pta-lines {
  position: absolute; top: 0; right: 0; width: 180px; height: 80px;
  pointer-events: none;
}

/* ── Step live animations ── */
.step-num-wrap {
  position: relative;
}
/* Ripple ring on step hover */
.step-ring-anim {
  position: absolute; inset: -8px; border-radius: 50%;
  border: 2px solid transparent;
  pointer-events: none;
  transition: border-color 0.3s;
}
.step:hover .step-ring-anim {
  border-color: rgba(2,132,199,0.25);
  animation: ping 1.2s cubic-bezier(0,0,0.2,1) infinite;
}
/* Animated icon inside step */
.step:nth-child(2) .step-ring-anim { border-color: transparent; }
.step:nth-child(2):hover .step-ring-anim { border-color: rgba(79,70,229,0.25); }

/* Btn gradient match for product card buttons */
.product-card .btn-secondary {
  background: var(--gradient-brand);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 2px 12px var(--blue-glow);
  transition: all 0.25s;
}
.product-card .btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--blue-glow);
}

/* Slider responsive */
@media (max-width: 900px) {
  .case-slider-track { padding: 0 5%; }
  .case-slide-card { flex: 0 0 85vw; }
}
@media (max-width: 600px) {
  .case-slide-card { flex: 0 0 92vw; }
  .case-slider-progress { margin: 0 5%; }
}
.nav-cta .btn-primary {
  position: relative;
  overflow: hidden;
}
.nav-cta .btn-primary::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  animation: card-shine 3s ease-in-out infinite;
}

/* ════════════════════════════════════════════════════════
   PLATFORM CARD ENHANCED BG ANIMATIONS
════════════════════════════════════════════════════════ */
.product-card {
  border-radius: var(--radius-xl);
  padding: 52px 44px;
  position: relative; overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.4s, transform 0.4s, border-color 0.4s;
  display: flex; flex-direction: column;
  transform-style: preserve-3d;
  cursor: default;
}
.product-card:hover { transform: translateY(-6px) rotateX(1deg); box-shadow: var(--shadow-lg); }

/* Animated BG particles inside product cards */
.product-card-bg-anim {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.pc-orb {
  position: absolute; border-radius: 50%; filter: blur(40px);
}
.pc-orb-1 {
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(2,132,199,0.18), transparent 70%);
  top: -40px; right: -40px;
  animation: particle-float 8s ease-in-out infinite;
}
.pc-orb-2 {
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(79,70,229,0.14), transparent 70%);
  bottom: 20px; left: -20px;
  animation: particle-float 10s ease-in-out infinite reverse;
}
.pc-orb-3 {
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(5,150,105,0.1), transparent 70%);
  top: 50%; left: 50%;
  animation: glow-pulse 6s ease-in-out infinite;
}
.indigo-card .pc-orb-1 {
  background: radial-gradient(circle, rgba(79,70,229,0.18), transparent 70%);
}
.indigo-card .pc-orb-2 {
  background: radial-gradient(circle, rgba(2,132,199,0.14), transparent 70%);
}

/* Floating light particles */
.pc-particle {
  position: absolute; border-radius: 50%;
  pointer-events: none;
}
.pc-p1 { width: 4px; height: 4px; background: rgba(2,132,199,0.5); top: 30%; left: 20%; animation: bubble-rise 5s ease-in-out infinite; }
.pc-p2 { width: 3px; height: 3px; background: rgba(79,70,229,0.4); top: 60%; left: 70%; animation: bubble-rise 7s ease-in-out infinite 1s; }
.pc-p3 { width: 5px; height: 5px; background: rgba(5,150,105,0.3); top: 80%; left: 40%; animation: bubble-rise 6s ease-in-out infinite 2s; }
.pc-p4 { width: 3px; height: 3px; background: rgba(2,132,199,0.3); top: 50%; left: 85%; animation: bubble-rise 8s ease-in-out infinite 0.5s; }
.pc-p5 { width: 6px; height: 6px; background: rgba(79,70,229,0.25); top: 90%; left: 15%; animation: bubble-rise 9s ease-in-out infinite 3s; }

/* Shine sweep on hover */
.product-card::after {
  content: '';
  position: absolute; top: 0; left: -200%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: skewX(-20deg);
  transition: none;
  pointer-events: none;
}
.product-card:hover::after {
  animation: card-shine 0.8s ease forwards;
}

/* Live data animation widget inside product card */
.pc-live-widget {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 8px 12px;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10px;
  box-shadow: var(--shadow-sm);
  animation: float-slow 4s ease-in-out infinite;
  z-index: 3;
}
.pc-live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px rgba(5,150,105,0.6);
  animation: pulse-dot 1.5s ease-in-out infinite;
}
.pc-live-counter {
  font-weight: 600; color: var(--text-primary);
}
.pc-live-label { color: var(--text-muted); }

/* ════════════════════════════════════════════════════════
   SOLUTION CARD TILT ANIMATIONS (Yaraa style)
════════════════════════════════════════════════════════ */
.case-card {
  border-radius: var(--radius-lg) !important;
  transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  transform-style: preserve-3d;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.case-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  border-radius: 3px 3px 0 0; opacity: 0; transition: opacity 0.3s;
  background: var(--gradient-brand);
}
.case-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0) 40%, rgba(255,255,255,0.5) 100%);
  opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.case-card:hover { transform: translateY(-8px) rotateX(3deg) rotateY(-1deg); box-shadow: var(--shadow-lg) !important; }
.case-card:hover::before { opacity: 1; }
.case-card:hover::after  { opacity: 1; }

/* Solution dept icons animate on hover */
.case-card:hover .dept-icon {
  transform: translateZ(20px) scale(1.15);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

/* ════════════════════════════════════════════════════════
   GOVERNANCE CARDS — Yaraa-style 3D design
════════════════════════════════════════════════════════ */
.gov-pillars { display: grid; gap: 12px; margin-bottom: 12px; }
.gov-pillars-row1 { grid-template-columns: repeat(3, 1fr); }
.gov-pillars-row2 { grid-template-columns: repeat(2, 1fr); max-width: 67%; margin-left: auto; margin-right: auto; }
@media (max-width: 900px) {
  .gov-pillars-row1 { grid-template-columns: repeat(2, 1fr); }
  .gov-pillars-row2 { grid-template-columns: repeat(2, 1fr); max-width: 100%; margin-left: auto; margin-right: auto; }
}
@media (max-width: 600px) {
  .gov-pillars-row1,
  .gov-pillars-row2 { grid-template-columns: 1fr; max-width: 100%; margin-left: auto; margin-right: auto; }
}
.gov-pillar {
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px 18px;   /* less top/bottom = shorter cards */
  box-shadow: var(--shadow-sm);
  transition: all 0.45s cubic-bezier(0.34,1.56,0.64,1);
  position: relative; overflow: hidden;
  transform-style: preserve-3d;
  cursor: default;
}
.gov-pillar::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  border-radius: 3px 3px 0 0;
  opacity: 0; transition: opacity 0.3s;
}
.gov-pillar::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0) 40%, rgba(255,255,255,0.55) 100%);
  opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.gov-pillar:hover { box-shadow: var(--shadow-lg); transform: translateY(-8px) rotateX(3deg); }
.gov-pillar:hover::before { opacity: 1; }
.gov-pillar:hover::after { opacity: 1; }
.gov-pillar:nth-child(1)::before { background: linear-gradient(90deg, #0284C7, #38BDF8); }
.gov-pillar:nth-child(2)::before { background: linear-gradient(90deg, #4F46E5, #818CF8); }
.gov-pillar:nth-child(3)::before { background: linear-gradient(90deg, #059669, #34D399); }
.gov-pillar:nth-child(5)::before { background: linear-gradient(90deg, #D97706, #FCD34D); }
.gov-pillar:nth-child(6)::before { background: linear-gradient(90deg, #DC2626, #F87171); }
.gov-pillar:nth-child(7)::before { background: linear-gradient(90deg, #4F46E5, #818CF8); }

.gov-pillar-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 10px;
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  transform-style: preserve-3d;
  position: relative; z-index: 1;
}
.gov-pillar:hover .gov-pillar-icon {
  transform: translateZ(24px) rotateY(-10deg) scale(1.15);
}
.gov-pillar-num {
  position: absolute; top: 16px; right: 18px;
  font-family: var(--font-display); font-size: 16px; font-weight: 800;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gradient-brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(2,132,199,0.3);
  z-index: 2;
}
.gov-pillar-title {
  font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 5px;
  position: relative; z-index: 1;
  transition: transform 0.4s;
}
.gov-pillar:hover .gov-pillar-title { transform: translateZ(12px); }
.gov-pillar-desc {
  font-size: 14px; color: var(--text-primary); line-height: 1.55;
  position: relative; z-index: 1;
  transition: transform 0.4s;
}
.gov-pillar:hover .gov-pillar-desc { transform: translateZ(8px); }

/* Gov card scan-line decoration */
.gov-pillar-scan {
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(2,132,199,0.4), transparent);
  top: -1px; pointer-events: none;
  animation: scan-line 3s ease-in-out infinite;
  opacity: 0; transition: opacity 0.3s;
}
.gov-pillar:hover .gov-pillar-scan { opacity: 1; }

/* ════════════════════════════════════════════════════════
   GET STARTED — Floating light BG elements
════════════════════════════════════════════════════════ */
.cta-float-el {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.cta-fe-1 {
  width: 120px; height: 120px;
  background: rgba(2,132,199,0.15);
  filter: blur(30px);
  top: 15%; left: 8%;
  animation: float-elem 8s ease-in-out infinite;
}
.cta-fe-2 {
  width: 80px; height: 80px;
  background: rgba(79,70,229,0.12);
  filter: blur(24px);
  top: 60%; right: 10%;
  animation: float-elem-b 10s ease-in-out infinite;
}
.cta-fe-3 {
  width: 60px; height: 60px;
  background: rgba(5,150,105,0.1);
  filter: blur(20px);
  bottom: 20%; left: 30%;
  animation: float-elem 12s ease-in-out infinite 2s;
}
.cta-fe-4 {
  width: 40px; height: 40px;
  background: rgba(2,132,199,0.1);
  filter: blur(16px);
  top: 40%; right: 25%;
  animation: float-elem-b 9s ease-in-out infinite 1s;
}
.cta-fe-5 {
  width: 100px; height: 100px;
  background: rgba(79,70,229,0.08);
  filter: blur(28px);
  bottom: 10%; right: 35%;
  animation: float-elem 14s ease-in-out infinite 3s;
}
/* Geometric cta shapes */
.cta-geo-shape {
  position: absolute; pointer-events: none; opacity: 0.08;
  border: 1px solid rgba(255,255,255,0.4);
}
.cta-geo-1 {
  width: 80px; height: 80px; border-radius: 14px;
  top: 20%; left: 15%;
  transform: rotate(20deg);
  animation: mondrian-drift 8s ease-in-out infinite;
}
.cta-geo-2 {
  width: 50px; height: 50px; border-radius: 50%;
  bottom: 30%; right: 20%;
  animation: mondrian-drift 10s ease-in-out infinite reverse;
}
.cta-geo-3 {
  width: 35px; height: 35px; border-radius: 8px;
  top: 50%; right: 8%;
  transform: rotate(-15deg);
  animation: float-elem 7s ease-in-out infinite 1.5s;
}

/* ════════════════════════════════════════════════════════
   HOW IT WORKS — Flowing gradient connector
════════════════════════════════════════════════════════ */
.steps-connector {
  position: absolute;
  top: 44px; left: calc(12.5% + 24px); right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, 
    var(--blue) 0%, var(--indigo) 25%, var(--blue) 50%, var(--indigo) 75%, var(--blue) 100%);
  background-size: 400% 100%;
  animation: step-connector-flow 3s linear infinite;
  opacity: 0.5;
  z-index: 0;
  border-radius: 2px;
}
/* Connector flow particles */
.steps-connector::before {
  content: '';
  position: absolute;
  top: -2px; left: 0;
  width: 20px; height: 6px;
  border-radius: 3px;
  background: rgba(2,132,199,0.9);
  box-shadow: 0 0 10px rgba(2,132,199,0.6);
  animation: connector-flow 2s ease-in-out infinite;
}
.steps-connector::after {
  content: '';
  position: absolute;
  top: -2px; left: 0;
  width: 12px; height: 6px;
  border-radius: 3px;
  background: rgba(79,70,229,0.9);
  box-shadow: 0 0 8px rgba(79,70,229,0.6);
  animation: connector-flow 2s ease-in-out infinite 1s;
}

/* ════════════════════════════════════════════════════════
   ORCHESTRATION ENGINE ANIMATIONS
════════════════════════════════════════════════════════ */
.orch-block {
  background: var(--text-primary);
  border-radius: var(--radius-xl);
  padding: 56px 60px;
  position: relative; overflow: hidden;
}
/* Animated node in orch diagram */
.orch-node-anim {
  animation: orch-pulse 2.5s ease-in-out infinite;
}
/* Data packet flow animation */
.orch-data-packet {
  animation: orch-data-flow 3s ease-in-out infinite;
}
.orch-data-packet:nth-child(2) { animation-delay: 1s; }
.orch-data-packet:nth-child(3) { animation-delay: 2s; }

/* Orch tag pulse effect */
.orch-tag.active-blue {
  animation: shimmer 2s ease-in-out infinite;
}
.orch-tag.active-indigo {
  animation: shimmer 2s ease-in-out infinite 0.7s;
}

/* Orch bg animated gradient mesh */
.orch-block-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 80% 50%, rgba(2,132,199,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 15% 40%, rgba(79,70,229,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 50% 80%, rgba(5,150,105,0.08) 0%, transparent 60%);
  animation: gradient-x 8s ease-in-out infinite;
  background-size: 200% 200%;
}

/* Floating labels in orch */
.orch-float-tag {
  animation: float-slow 4s ease-in-out infinite;
}
.orch-float-tag:nth-child(2) { animation-delay: -1.5s; }
.orch-float-tag:nth-child(3) { animation-delay: -2.8s; }

/* SVG path dash animations in orch diagram */
.orch-path-animated {
  stroke-dasharray: 8 4;
  animation: dash-flow 1.5s linear infinite;
}
.orch-path-rev {
  stroke-dasharray: 8 4;
  animation: dash-rev 1.5s linear infinite;
}



/* ════════════════════════════════════════════════════════
   GOVERNANCE
════════════════════════════════════════════════════════ */
#governance { padding: 0; background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.gov-inner {
  width: 100%; margin: 0 auto; padding: 80px var(--page-gutter);
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start;
}
.gov-headline { margin-bottom: 14px; }
.gov-sub { line-height: 1.7; color: var(--text-primary); }
.gov-pillars-spacer { grid-column: 1 / -1; height: 1px; background: linear-gradient(90deg, transparent, var(--border-strong), transparent); }
.gov-compliance-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.compliance-pill {
  display: flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 100px;
  background: var(--bg-surface); border: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); box-shadow: var(--shadow-sm);
}
.c-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 5px rgba(5,150,105,0.4); }
#cta {
  position: relative; overflow: hidden; padding: 0;
}
.cta-bg {
  position: absolute; inset: 0;
  background: var(--text-primary);
}
.cta-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 75% 50%, rgba(2,132,199,0.2) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 20% 30%, rgba(79,70,229,0.15) 0%, transparent 60%);
}
.cta-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.cta-inner {
  position: relative; z-index: 2;
  padding: 100px var(--page-gutter);
  width: 100%; margin: 0 auto;
  text-align: center;
}
.cta-headline {
  font-family: var(--font-display); font-size: 44px; font-weight: 800;
  letter-spacing: -0.04em; color: #fff; margin-bottom: 20px; line-height: 1.15;
}
.cta-sub {rgba(255,255,255,0.9); max-width: 580px; margin: 0 auto 44px; line-height: 1.65; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.cta-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: var(--btn-padding);
  font-family: var(--font-body);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  border-radius: var(--btn-radius);
  border: var(--btn-border-width) solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.2s;
  background: rgba(255,255,255,0.05);
}
.cta-btn-outline:hover { border-color: rgba(255,255,255,0.4); color: #fff; background: rgba(255,255,255,0.1); }
.cta-footnote {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  font-size: 14px; color: rgba(255,255,255,0.3);
}
.cta-footnote-sep { opacity: 0.3; }

/* ════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 24px var(--page-gutter);
}
.footer-inner {
  width: 100%; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-brand { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.footer-brand-text { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--text-primary); }
.footer-links { display: flex; gap: 0; list-style: none; flex-wrap: wrap; }
.footer-links a { padding: 6px 12px; font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text-secondary); }
.footer-copy { font-size: 12px; color: var(--text-muted); }

/* ════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  h1 { font-size: 52px; }
  h2 { font-size: 38px; }
  .hero-headline { font-size: 52px; }
  .hero-slide-inner { gap: 44px; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(odd)  { border-right: 1px solid var(--border); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .gov-inner { grid-template-columns: 1fr; gap: 48px; }
  .proof-inner { gap: 48px; }
}

@media (max-width: 900px) {
  :root { --section-pad: 72px; }
  h1 { font-size: 44px; }
  h2 { font-size: 34px; }
  h3 { font-size: 28px; }
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-btn { display: flex; }
  .hero-slide-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-slide.active { align-items: flex-start; }
  .hero-slide-inner { padding-top: 90px; }
  .hero-headline { font-size: 44px; }
  .hero-sub { font-size: 16px; max-width: none; }
  .hero-visual, .slide2-visual, .slide3-visual { display: none; }
  .why-header-row { grid-template-columns: 1fr; }
  .why-graphic-area { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .steps-track { grid-template-columns: 1fr 1fr; }
  .steps-connector { display: none; }
  .orch-inner { grid-template-columns: 1fr; gap: 40px; }
  .orch-block { padding: 40px 32px; }
  .orch-headline { font-size: 28px; }
  .case-grid { grid-template-columns: 1fr 1fr; }
  .gov-pillars { grid-template-columns: 1fr 1fr; }
  .proof-inner { grid-template-columns: 1fr; }
  .proof-big-num { font-size: 60px; }
  .cta-headline { font-size: 34px; }
  .flow-diagram-wrap { padding: 32px 24px; }
  .flow-diagram { flex-direction: column; align-items: center; gap: 0; }
  .flow-connector { width: 2px; height: 40px; background: linear-gradient(180deg, var(--border-strong), rgba(2,132,199,0.3), var(--border-strong)); }
  /* Accordion stacks on tablet */
  .sol-accordion { height: auto; flex-direction: column; gap: 12px; }
  .sol-acc-card { flex: none !important; min-width: unset; height: 200px; }
  .sol-acc-before { display: none; }
  .sol-acc-after { opacity: 1 !important; padding-top: 0; justify-content: center; padding: 20px; }
  .sol-acc-icons { display: none; }
}

/* ── Tablet breakpoint: 768px ─────────────────────────── */
@media (max-width: 768px) {
  :root { --section-pad: 64px; --page-gutter: 4%; }
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  .products-grid { grid-template-columns: 1fr; }
  .why-header-row { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .steps-track { grid-template-columns: 1fr 1fr; gap: 16px; }
  .gov-pillars-row1 { grid-template-columns: 1fr 1fr; }
  .gov-pillars-row2 { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .orch-inner { grid-template-columns: 1fr; }
  .sol-accordion { height: auto; flex-direction: column; }
  .sol-acc-card { flex: none !important; min-width: unset; height: 280px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cta-actions { flex-direction: column; align-items: center; gap: 10px; }
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-btn { display: flex; }
}

@media (max-width: 600px) {
  :root { --section-pad: 60px; }
  h1 { font-size: 34px; }
  h2 { font-size: 28px; }
  h3 { font-size: 24px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 24px 20px; }
  .steps-track { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .gov-pillars { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-links { gap: 0; }
  .hero-indicators { bottom: 24px; }
  .hero-arrows { right: 5%; bottom: 20px; }
  .proof-metrics-grid { grid-template-columns: 1fr 1fr; }
  .orch-block { padding: 32px 24px; }
}

/* ════════════════════════════════════════════════════════
   GUIDELINE UTILITY CLASSES
   Extracted from inline styles per naming convention:
   Format: .bs-{block}--{modifier}  (BotSpot prefix)
════════════════════════════════════════════════════════ */

/* Chip positions — upper half only, never into text zone */
.bs-chip--top-left   { top: 18px; left: 14px; }
.bs-chip--bottom-right { top: 64px; right: 14px; }

/* Network SVG — background texture only, very faint, top portion */
.bs-acc-network-svg {
  top: 0; left: 0;
  width: 100%;
  height: 55%;   /* only top 55% of card — never into text zone */
  opacity: 0.08; /* very subtle — pure decoration */
  pointer-events: none;
}

/* Repeated inline-block SVG dimensions */
.bs-svg--full-width { display: block; width: 100%; }

/* Common icon dot colors (extracted from repeated style="background:#xxx") */
.bs-dot--blue   { background: var(--blue); }
.bs-dot--indigo { background: var(--indigo); }
.bs-dot--green  { background: var(--green); }
.bs-dot--amber  { background: var(--amber); }
.bs-dot--red    { background: var(--red); }

/* Mini graphic overflow hidden pattern */
.bs-mini-graphic { margin-top: 20px; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); padding: 0; }

/* ── Solution filter tabs ───────────────────────────────── */
.sol-filter-tabs {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.sol-filter-tab {
  padding: 8px 20px;
  border-radius: 100px;
  font-family: var(--font-mono); font-size: 14px; font-weight: 600;
  text-transform: uppercase;
  background: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}
/* "All" tab active */
.sol-filter-tab[data-dept="all"].active { background: #0F1E3C; color: #fff; border-color: #0F1E3C; box-shadow: 0 4px 12px rgba(15,30,80,0.3); }
/* Per-dept active colors matching card themes */
.sol-filter-tab[data-dept="sales"].active    { background: #6d28d9; color: #fff; border-color: #6d28d9; box-shadow: 0 4px 12px rgba(109,40,217,0.35); }
.sol-filter-tab[data-dept="finance"].active  { background: #d97706; color: #fff; border-color: #d97706; box-shadow: 0 4px 12px rgba(217,119,6,0.35); }
.sol-filter-tab[data-dept="legal"].active    { background: #059669; color: #fff; border-color: #059669; box-shadow: 0 4px 12px rgba(5,150,105,0.35); }
.sol-filter-tab[data-dept="hr"].active       { background: #0284c7; color: #fff; border-color: #0284c7; box-shadow: 0 4px 12px rgba(2,132,199,0.35); }
.sol-filter-tab[data-dept="marketing"].active{ background: #e11d48; color: #fff; border-color: #e11d48; box-shadow: 0 4px 12px rgba(225,29,72,0.35); }
.sol-filter-tab[data-dept="eng"].active      { background: #4f46e5; color: #fff; border-color: #4f46e5; box-shadow: 0 4px 12px rgba(79,70,229,0.35); }
.sol-filter-tab[data-dept="ops"].active      { background: #0d9488; color: #fff; border-color: #0d9488; box-shadow: 0 4px 12px rgba(13,148,136,0.35); }
/* Hover states per dept */
.sol-filter-tab[data-dept="all"]:hover      { border-color: #0F1E3C; color: #0F1E3C; background: rgba(255,255,255,0.95); }
.sol-filter-tab[data-dept="sales"]:hover    { border-color: #6d28d9; color: #6d28d9; background: rgba(255,255,255,0.95); }
.sol-filter-tab[data-dept="finance"]:hover  { border-color: #d97706; color: #d97706; background: rgba(255,255,255,0.95); }
.sol-filter-tab[data-dept="legal"]:hover    { border-color: #059669; color: #059669; background: rgba(255,255,255,0.95); }
.sol-filter-tab[data-dept="hr"]:hover       { border-color: #0284c7; color: #0284c7; background: rgba(255,255,255,0.95); }
.sol-filter-tab[data-dept="marketing"]:hover{ border-color: #e11d48; color: #e11d48; background: rgba(255,255,255,0.95); }
.sol-filter-tab[data-dept="eng"]:hover      { border-color: #4f46e5; color: #4f46e5; background: rgba(255,255,255,0.95); }
.sol-filter-tab[data-dept="ops"]:hover      { border-color: #0d9488; color: #0d9488; background: rgba(255,255,255,0.95); }
/* Filter-driven expand/collapse — all cards stay visible */
/* Force-expanded: overrides accordion hover, always shows content */
.sol-accordion .sol-acc-card.sol-force-expanded {
  flex: 3.8 !important;
}
.sol-accordion .sol-acc-card.sol-force-expanded .sol-acc-before { opacity: 0 !important; }
.sol-accordion .sol-acc-card.sol-force-expanded .sol-acc-icons  { opacity: 1 !important; }
.sol-accordion .sol-acc-card.sol-force-expanded .sol-acc-after  { opacity: 1 !important; transition-delay: .15s !important; }

/* Force-collapsed: always narrow — hover does NOT expand */
.sol-accordion .sol-acc-card.sol-force-collapsed {
  flex: 1 !important;
}
.sol-accordion .sol-acc-card.sol-force-collapsed .sol-acc-before { opacity: 1 !important; }
.sol-accordion .sol-acc-card.sol-force-collapsed .sol-acc-icons  { opacity: 0 !important; }
.sol-accordion .sol-acc-card.sol-force-collapsed .sol-acc-after  { opacity: 0 !important; }
/* Override any generic :hover rules on force-collapsed cards */
.sol-accordion .sol-acc-card.sol-force-collapsed:hover { flex: 1 !important; }
.sol-accordion .sol-acc-card.sol-force-collapsed:hover .sol-acc-before { opacity: 1 !important; }
.sol-accordion .sol-acc-card.sol-force-collapsed:hover .sol-acc-icons  { opacity: 0 !important; }
.sol-accordion .sol-acc-card.sol-force-collapsed:hover .sol-acc-after  { opacity: 0 !important; }

/* Hidden card */
.sol-acc-card.sol-hidden { display: none; }

/* Single-dept mode: accordion becomes a centered single card at full expanded size */
.sol-accordion.sol-single-mode {
  justify-content: center;
  height: 460px;
}
.sol-accordion.sol-single-mode .sol-acc-card {
  flex: 0 0 min(640px, 100%) !important;
  max-width: 640px;
}

/* ════════════════════════════════════════════════════════
   SOLUTIONS — YARAA-STYLE ACCORDION
════════════════════════════════════════════════════════ */
#solution {
  background: linear-gradient(180deg, var(--bg-base) 0%, #EEF3FF 100%);
  padding: 100px 0 110px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.solution-header { text-align: center; max-width: 680px; margin: 0 auto; }
.solution-sub { font-size: 18px; color: #445068; margin: 14px auto 56px; max-width: 560px; }

/* Solution section heading overrides for blue background */
#solution .solution-header h2 { color: #0F1E3C; }
#solution .solution-sub { color: #445068; }

/* Accordion container — styled like why-section */
.sol-accordion {
  display: flex;
  gap: 8px;
  height: 460px;
  border-radius: 20px;
  overflow: hidden;
}
.sol-acc-card {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  
  border: 1px solid rgba(255,255,255,0.07);
  transition: flex 0.75s cubic-bezier(0.25, 1, 0.5, 1);
  min-width: 44px;
  box-shadow: 0 4px 24px rgba(0,0,0,.2);
 
}
/* First card expanded by default — matching why-section pattern */
.sol-accordion .sol-acc-card:first-child { flex: 3.5; }
/* Accordion hover interactions */
.sol-accordion:hover .sol-acc-card { flex: 1 !important; }
.sol-accordion .sol-acc-card:hover { flex: 3.5 !important; }

/* Coloured top border per card */
.sol-acc-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  z-index: 4; border-radius: 18px 18px 0 0;
}
.sol-acc-card:nth-child(1)::after { background: linear-gradient(90deg,#0284C7,#38BDF8); }
.sol-acc-card:nth-child(2)::after { background: linear-gradient(90deg,#ddc900,#ffefae); }
.sol-acc-card:nth-child(3)::after { background: linear-gradient(90deg,#00a169,#d0fff1); }
.sol-acc-card:nth-child(4)::after { background: linear-gradient(90deg,#D97706,#FCD34D); }
.sol-acc-card:nth-child(5)::after { background: linear-gradient(90deg,#E11D48,#F43F5E); }
.sol-acc-card:nth-child(6)::after { background: linear-gradient(90deg,#4F46E5,#818CF8); }
.sol-acc-card:nth-child(7)::after { background: linear-gradient(90deg,#4F46E5,#0284C7); }

/* Subtle glow blob per card */
.sol-acc-card:nth-child(1)::before { content:'';position:absolute;top:-30px;right:-30px;width:140px;height:140px;background:rgba(2,132,199,.18);border-radius:50%;filter:blur(50px);z-index:0;pointer-events:none; }
.sol-acc-card:nth-child(2)::before { content:'';position:absolute;top:-30px;right:-30px;width:140px;height:140px;background:rgba(5,150,105,.18);border-radius:50%;filter:blur(50px);z-index:0;pointer-events:none; }
.sol-acc-card:nth-child(3)::before { content:'';position:absolute;top:-30px;right:-30px;width:140px;height:140px;background:rgba(79,70,229,.18);border-radius:50%;filter:blur(50px);z-index:0;pointer-events:none; }
.sol-acc-card:nth-child(4)::before { content:'';position:absolute;top:-30px;right:-30px;width:140px;height:140px;background:rgba(217,119,6,.18);border-radius:50%;filter:blur(50px);z-index:0;pointer-events:none; }
.sol-acc-card:nth-child(5)::before { content:'';position:absolute;top:-30px;right:-30px;width:140px;height:140px;background:rgba(2,132,199,.15);border-radius:50%;filter:blur(50px);z-index:0;pointer-events:none; }
.sol-acc-card:nth-child(6)::before { content:'';position:absolute;top:-30px;right:-30px;width:140px;height:140px;background:rgba(79,70,229,.15);border-radius:50%;filter:blur(50px);z-index:0;pointer-events:none; }
.sol-acc-card:nth-child(7)::before { content:'';position:absolute;top:-30px;right:-30px;width:140px;height:140px;background:rgba(225,29,72,.15);border-radius:50%;filter:blur(50px);z-index:0;pointer-events:none; }

/* Dot grid background texture */
.sol-acc-dotgrid {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.25;
  background-image: radial-gradient(circle, #94a3b8 1px, transparent 1px);
  background-size: 22px 22px;
}

/* Collapsed state: dept name label — HORIZONTAL at top */
.sol-acc-collapsed {
  position: absolute; top: 0; left: 0; right: 0; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  padding: 16px 10px;
  pointer-events: none;
  transition: opacity 0.5s ease;
  opacity: 1;
}
.sol-acc-collapsed span {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  transform: none;
  line-height: 1.2;
  text-align: center;
}
/* Collapsed label: hidden on first card by default */

/* Floating decorative icons layer — top 60% of card only, never into text zone */
.sol-acc-icons {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60%;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.45s ease;
  opacity: 0;
  overflow: hidden;
}
/* First card icons visible by default */
.sol-accordion .sol-acc-card:first-child .sol-acc-icons { opacity: 1; }
/* On hover over accordion: reset all, then expand hovered */
.sol-accordion:hover .sol-acc-card .sol-acc-icons { opacity: 0 !important; }
.sol-accordion .sol-acc-card:hover .sol-acc-icons { opacity: 1 !important; }

/* ── wai dotgrid / icon-box / chips — identical to yaraa why-section ── */

.wai-icon-box{position:absolute;top:18px;left:18px;width:46px;height:46px;background:#fff;border:1.5px solid rgba(0,0,0,.09);border-radius:13px;display:flex;align-items:center;justify-content:center;box-shadow:0 2px 10px rgba(0,0,0,.08);font-size:1.3rem;z-index:3;pointer-events:none;}
.wai-chip{position:absolute;display:inline-flex;align-items:center;gap:8px;background:#ffffff;border:1.5px solid rgba(0,0,0,.08);border-radius:12px;padding:8px 14px;font-size:12px;font-weight:600;color:#000000;white-space:nowrap;box-shadow:0 4px 16px rgba(0,0,0,.08);pointer-events:none;z-index:3;}
.wai{position:absolute;font-size:1rem;line-height:1;filter:drop-shadow(0 3px 10px rgba(0,0,0,.10));animation:waiFloat 4s ease-in-out infinite;display:block;opacity:.85;}
@keyframes waiFloat{0%,100%{transform:translateY(0);}50%{transform:translateY(-8px);}}

/* ── sol-acc-bg ── */
.sol-acc-bg{position:absolute;inset:0;transition:background .45s ease;opacity:1;}

/* ── sol-acc-icons: full-card graphic layer (yaraa style — full inset) ── */
.sol-acc-icons{position:absolute;inset:0;z-index:2;pointer-events:none;transition:opacity .45s ease;opacity:0;overflow:hidden;}
.sol-accordion .sol-acc-card:first-child .sol-acc-icons{opacity:1;}
.sol-accordion:hover .sol-acc-card .sol-acc-icons{opacity:0 !important;}
.sol-accordion .sol-acc-card:hover .sol-acc-icons{opacity:1 !important;}

/* ── sol-acc-before: collapsed dept label (bottom-left, like yaraa) ── */
.sol-acc-before{position:relative;top:25px;left:-1px;inset:0;z-index:3;transition:opacity 0.6s ease;opacity:1;pointer-events:none;display:flex;align-items:flex-end;padding:24px 10px;}
.sol-acc-before span{font-family:'Sora',sans-serif;font-size:18px;font-weight:500;color:#111111;letter-spacing:-.01em;white-space:normal;display:block;line-height:1.15;max-width:160px;}
.sol-accordion .sol-acc-card:first-child .sol-acc-before{opacity:0;}
.sol-accordion:hover .sol-acc-card .sol-acc-before{opacity:1 !important;}
.sol-accordion .sol-acc-card:hover .sol-acc-before{opacity:0 !important;}

/* ── sol-acc-after: expanded content (centred, like yaraa) ── */
.sol-acc-after{position:absolute;inset:0;z-index:3;padding:28px;opacity:0;transition:opacity 0.6s ease 0s;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center;}
.sol-accordion .sol-acc-card:first-child .sol-acc-after{opacity:1;transition-delay:.15s;}
.sol-accordion:hover .sol-acc-card .sol-acc-after{opacity:0 !important;transition-delay:0s !important;}
.sol-accordion .sol-acc-card:hover .sol-acc-after{opacity:1 !important;transition-delay:.18s !important;}

/* ── sol-acc-tag: per-card colour pill (nth-child like yaraa) ── */
.sol-acc-tag{display:inline-flex;align-items:center;gap:6px;font-size:10px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:5px 12px;border-radius:50px;margin-bottom:16px;width:fit-content;}
.sol-acc-card:nth-child(1) .sol-acc-tag{background:#bde9ff;color:#0284C7;border:1px solid #0284C7;}
.sol-acc-card:nth-child(2) .sol-acc-tag{background:#fef3c7;color:#d97706;border:1px solid #fde68a;}
.sol-acc-card:nth-child(3) .sol-acc-tag{background:#d1fae5;color:#059669;border:1px solid #6ee7b7;}
.sol-acc-card:nth-child(4) .sol-acc-tag{background:#e0f2fe;color:#0284c7;border:1px solid #7dd3fc;}
.sol-acc-card:nth-child(5) .sol-acc-tag{background:#ffe4e6;color:#e11d48;border:1px solid #fda4af;}
.sol-acc-card:nth-child(6) .sol-acc-tag{background:#e0e7ff;color:#4f46e5;border:1px solid #a5b4fc;}
.sol-acc-card:nth-child(7) .sol-acc-tag{background:#a1c6ff;color:#1d45df;border:1px solid #1d45df;}

/* ── sol-acc-h / sol-acc-p (yaraa typography) ── */
.sol-acc-h{font-family:'Sora',sans-serif;font-size:28px;font-weight:600;color:#000000;line-height:1.25;margin-bottom:10px;letter-spacing:-.02em;}
.sol-acc-p{font-size:16px;color:#333333;line-height:1.7;margin:0;max-width:320px;text-align:center;}

/* ── metric row ── */
.sol-acc-metric-row{display:inline-flex;align-items:center;gap:10px;margin-top:18px;background:rgba(255,255,255,.85);backdrop-filter:blur(8px);border:1px solid rgba(0,0,0,.09);border-radius:12px;padding:9px 16px;}
.sol-acc-metric-val{font-family:'Sora',sans-serif;font-size:20px;font-weight:800;letter-spacing:-.04em;background:linear-gradient(135deg,#0284C7,#4F46E5);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;}
.sol-acc-metric-lbl{font-size:12px;color:#445068;line-height:1.35;}

