/* ══════════════════════════════════════════════
   INDEX.CSS — exclusive styles for index.html
   Depends on: base.css, nav.css, footer.css, animations.css
   ══════════════════════════════════════════════ */

/* ── HERO ── */
.hero{background:linear-gradient(135deg,#060d1f 0%,#0b1a35 45%,#0f1245 100%);color:#fff;padding:80px 0 72px;overflow:hidden;position:relative}
.hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 70% 60% at 55% 40%,rgba(35,97,217,.14) 0%,transparent 70%)}
.hero::after{content:'';position:absolute;top:-20%;right:-10%;width:600px;height:600px;border-radius:50%;background:radial-gradient(circle,rgba(100,108,255,.08) 0%,transparent 65%);pointer-events:none}
.hero-grid{display:grid;grid-template-columns:1.05fr 1fr;gap:60px;align-items:center;position:relative;z-index:1}
.hero-eyebrow{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.14);padding:6px 14px;border-radius:100px;font-size:13px;font-weight:600;margin-bottom:24px}
.hero-eyebrow .dot{width:7px;height:7px;border-radius:50%;background:#4ade80;animation:pulse 2s infinite}
.hero h1{color:#fff;margin-bottom:20px;font-size:clamp(40px,5vw,64px)}
.hero h1 .h1-line2{color:#60a5fa}
.hero-sub{font-size:18px;color:rgba(255,255,255,.68);line-height:1.65;margin-bottom:36px;max-width:540px}
.hero-ctas{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:40px}
.hero-stats{display:flex;gap:0;border-top:1px solid rgba(255,255,255,.1);padding-top:28px}
.hero-stat{padding:0 28px 0 0;margin-right:28px;border-right:1px solid rgba(255,255,255,.1)}
.hero-stat:last-child{border-right:none;margin-right:0}
.hero-stat-val{font-size:24px;font-weight:800;color:#fff;line-height:1}
.hero-stat-lbl{font-size:12px;color:rgba(255,255,255,.45);margin-top:4px}

/* Hero video / demo panel */
.hero-video{position:relative;border-radius:16px;overflow:hidden;box-shadow:0 40px 80px rgba(0,0,0,.5),0 0 0 1px rgba(255,255,255,.08)}
.hvid-bar{background:var(--navy2);display:flex;align-items:center;gap:6px;padding:10px 14px}
.hvid-dot{width:10px;height:10px;border-radius:50%}
.hvid-title{flex:1;text-align:center;font-size:11px;color:rgba(255,255,255,.4);font-weight:500}
.hvid-live{display:flex;align-items:center;gap:5px;font-size:11px;color:#4ade80;font-weight:700}
.hvid-live-dot{width:6px;height:6px;border-radius:50%;background:#4ade80;animation:pulse 1.5s infinite}
.hvid-body {
  background: #0a1428;
  /* min-height: 340px; */
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.hvid-body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(35,97,217,.12), transparent);
  pointer-events: none;
  z-index: 1;
}
.hvid-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0 0 14px 14px;
  position: relative;
  z-index: 0;
  object-position: 0 -14px;
  transform: scale(1.1);
}
.hvid-placeholder-badge{background:rgba(100,108,255,.2);border:1px solid rgba(100,108,255,.35);color:#a5b4fc;font-size:11px;font-weight:700;padding:4px 12px;border-radius:100px;display:flex;align-items:center;gap:6px}
.hvid-chat-preview{width:100%;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:10px;padding:14px 16px}
.hvid-query{font-size:13px;color:rgba(255,255,255,.6);margin-bottom:10px;padding-bottom:10px;border-bottom:1px solid rgba(255,255,255,.07);display:flex;align-items:center;gap:6px}
.hvid-query span{color:#a5b4fc;font-weight:600}
.hvid-answer{font-size:16px;font-weight:800;color:#fff}
.hvid-answer-sub{font-size:11px;color:rgba(255,255,255,.35);margin-top:4px}

/* ── LOGO MARQUEE ── */
.logos-sec{padding:28px 0 32px;border-bottom:1px solid var(--g200);background:#fff}
.logos-lbl{font-size:12px;color:var(--g400);text-transform:uppercase;letter-spacing:.1em;font-weight:700;text-align:center;margin-bottom:20px}
.marquee-outer{overflow:hidden;position:relative}
.marquee-outer::before,.marquee-outer::after{content:'';position:absolute;top:0;width:100px;height:100%;z-index:2;pointer-events:none}
.marquee-outer::before{left:0;background:linear-gradient(to right,#fff,transparent)}
.marquee-outer::after{right:0;background:linear-gradient(to left,#fff,transparent)}
.marquee-track{display:flex;gap:20px;animation:marquee 30s linear infinite;width:max-content;align-items:center}
.marquee-track:hover{animation-play-state:paused}
.logo-pill {
  padding: 10px 20px;
  background: var(--g100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  min-width: 140px;
  flex-shrink: 0;
  transition: background .2s, box-shadow .2s;
  cursor: default;
}
.logo-pill:hover {
  background: var(--g200);
  box-shadow: var(--shm);
}
.logo-pill img {
  height: 42px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%) contrast(0.7) brightness(1.1);
  opacity: 0.75;
  transition: filter .2s, opacity .2s;
}
.logo-pill:hover img {
  filter: grayscale(0%) contrast(1) brightness(1);
  opacity: 1;
}

/* ── PROBLEM ── */
.prob-headline-wrap{margin-bottom:48px}
.prob-headline-wrap h2{font-size:clamp(28px,4vw,46px);color:#fff;margin-bottom:6px}
.prob-headline-wrap h2 em{font-style:normal;color:var(--orange)}
.prob-eyebrow{font-size:11px;font-weight:700;color:var(--g400);text-transform:uppercase;letter-spacing:.1em;margin-bottom:16px}
.prob-deck{font-size:17px;color:rgba(255,255,255,.55);max-width:620px;line-height:1.65;font-style:italic;border-left:3px solid rgba(255,255,255,.15);padding-left:18px;margin-top:16px}
.prob-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-bottom:36px}
.prob-card{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:var(--r);padding:26px 22px;transition:border-color .2s}
.prob-card:hover{border-color:rgba(255,255,255,.18)}
.prob-ico{font-size:28px;margin-bottom:14px;display:flex}
.prob-card h3{color:#fff;font-size:17px;margin-bottom:8px}
.prob-card p{color:rgba(255,255,255,.5);font-size:13px;line-height:1.65}
.prob-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r); padding: 26px 22px; transition: border-color .2s, opacity 0.6s ease, transform 0.6s ease; }

/* ── HOW IT WORKS ── */
.hiw-headline{text-align:center;margin-bottom:56px}
.hiw-headline h2{font-size:clamp(22px,3vw,34px);margin-bottom:0}
.hiw-headline h2 .accent{color:var(--blue)}
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;position:relative}
.steps::before{content:'';position:absolute;top:26px;left:10%;right:10%;height:2px;background:linear-gradient(90deg,var(--blue),var(--purple));z-index:0}
.step{text-align:center;position:relative;z-index:1}
.step-num{width:52px;height:52px;border-radius:50%;background:var(--blue);color:#fff;font-size:20px;font-weight:800;display:flex;align-items:center;justify-content:center;margin:0 auto 18px;border:4px solid #fff;box-shadow:0 0 0 2px var(--blue),var(--shl)}
.step h3{font-size:17px;margin-bottom:8px}
.step p{font-size:13px;color:var(--g500);line-height:1.6}

/* ── DASHBOARD SHOWCASE ── */
.dash-head{text-align:center;margin-bottom:20px}
.dash-head h2{font-size:clamp(22px,3vw,34px)}
.dash-head h2 .accent{color:var(--blue)}
.dash-shell{background:#fff;border-radius:var(--r3);box-shadow:var(--shxl);border:1px solid var(--g200);overflow:hidden}
.dtab-bar{display:flex;background:var(--navy);padding:0 12px;gap:0;overflow-x:auto}
.dtab{display:flex;align-items:center;gap:7px;padding:14px 18px;font-size:13px;font-weight:600;color:rgba(255,255,255,.4);cursor:pointer;border:none;background:none;white-space:nowrap;border-bottom:3px solid transparent;transition:all .2s}
.dtab:hover{color:rgba(255,255,255,.75)}
.dtab.on{color:#fff;border-bottom-color:var(--purple);background:rgba(255,255,255,.04)}
.dtab.on.blue-tab{border-bottom-color:var(--blue)}
.dtab.on.green-tab{border-bottom-color:var(--green)}
.dpanel{display:none}
.dpanel.on{display:block}
.dfilters{display:flex;align-items:center;gap:10px;padding:10px 16px;background:var(--g50);border-bottom:1px solid var(--g200);flex-wrap:wrap}
.dfchip{display:flex;align-items:center;gap:6px;background:#fff;border:1px solid var(--g300);border-radius:6px;padding:5px 11px;font-size:12px;color:var(--g700);cursor:pointer;transition:border-color .15s}
.dfchip:hover{border-color:var(--blue);color:var(--blue)}
.dfsep{flex:1}
.df-export{display:flex;align-items:center;gap:5px;background:var(--blue);color:#fff;border:none;border-radius:6px;padding:6px 12px;font-size:12px;font-weight:700;cursor:pointer}
.df-live{display:flex;align-items:center;gap:5px;background:var(--green-lt);color:#059669;border-radius:100px;padding:4px 10px;font-size:11px;font-weight:700}
.df-live-dot{width:6px;height:6px;border-radius:50%;background:var(--green);animation:pulse 1.5s infinite}
.dkpi-row{display:grid;grid-template-columns:repeat(4,1fr);background:var(--g100);gap:1px;border-bottom:1px solid var(--g200)}
.dkpi{background:#fff;padding:18px 20px}
.dkpi-lbl{font-size:11px;color:var(--g400);text-transform:uppercase;letter-spacing:.06em;font-weight:700;margin-bottom:5px}
.dkpi-val{font-size:26px;font-weight:800;color:var(--navy);line-height:1;margin-bottom:5px}
.dkpi-trend{font-size:11px;font-weight:700;display:flex;align-items:center;gap:3px}
.dkpi-trend.pos{color:var(--green)}
.dkpi-trend.neg{color:var(--red)}
.dchart-row{display:grid;grid-template-columns:1.8fr 1fr;gap:1px;background:var(--g200);border-bottom:1px solid var(--g200)}
.dchart-box{background:#fff;padding:18px 20px}
.dchart-ttl{font-size:13px;font-weight:700;color:var(--g900);margin-bottom:3px}
.dchart-sub{font-size:11px;color:var(--g400);margin-bottom:14px}
.cbar-wrap{display:flex;align-items:flex-end;gap:7px;height:140px}
.cbar-col{flex:1;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:flex-end}
.cbar{width:100%;border-radius:4px 4px 0 0;transition:opacity .2s;cursor:pointer}
.cbar:hover{opacity:.8}
.cbar-lbl{font-size:10px;color:var(--g400);margin-top:5px;white-space:nowrap}
.cbar-val{font-size:9px;color:var(--g500);margin-bottom:3px}
.donut-area{display:flex;flex-direction:column;align-items:center;gap:14px}
.donut-ring{width:130px;height:130px;border-radius:50%;position:relative;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.donut-hole{position:absolute;inset:26px;background:#fff;border-radius:50%;display:flex;flex-direction:column;align-items:center;justify-content:center}
.donut-cval{font-size:15px;font-weight:800;color:var(--navy)}
.donut-clbl{font-size:9px;color:var(--g400)}
.dlegend{width:100%}
.dleg-row{display:flex;align-items:center;gap:7px;padding:4px 0;font-size:12px;color:var(--g700)}
.dleg-dot{width:9px;height:9px;border-radius:50%;flex-shrink:0}
.dleg-pct{margin-left:auto;font-weight:700;font-size:12px}
.dtbl-wrap{padding:16px 20px}
.dtbl-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:12px}
.dtbl-ttl{font-size:13px;font-weight:700;color:var(--g900)}
.dtbl-more{font-size:12px;color:var(--blue);cursor:pointer}
.dtbl{width:100%;border-collapse:collapse;font-size:12px}
.dtbl th{padding:7px 10px;text-align:left;font-size:10px;font-weight:700;color:var(--g400);text-transform:uppercase;letter-spacing:.05em;border-bottom:1px solid var(--g200)}
.dtbl td{padding:9px 10px;border-bottom:1px solid var(--g100);color:var(--g700)}
.dtbl tr:last-child td{border-bottom:none}
.dtbl tr:hover td{background:var(--g50)}
.tbl-name{font-weight:700;color:var(--g900)}
.tbl-up{color:var(--green);font-weight:700}
.tbl-dn{color:var(--red);font-weight:700}
.mbadge{display:inline-block;padding:2px 8px;border-radius:100px;font-size:10px;font-weight:700}
.mbg{background:var(--green-lt);color:#059669}
.mbb{background:var(--blue-lt);color:var(--blue)}
.mba{background:var(--amber-lt);color:#d97706}

/* ── DASHBOARD: AI PANEL ── */
.ai-panel{padding:20px}
.ai-panel-lbl{font-size:11px;font-weight:700;color:var(--g400);text-transform:uppercase;letter-spacing:.08em;margin-bottom:14px;display:flex;align-items:center;gap:6px}
.ai-qbar{display:flex;align-items:center;gap:10px;background:var(--g50);border:2px solid var(--purple);border-radius:10px;padding:10px 16px;margin-bottom:16px}
.ai-qbar-txt{flex:1;font-size:14px;font-weight:600;color:var(--g900)}
.ai-cursor{display:inline-block;width:2px;height:16px;background:var(--purple);animation:blink 1s infinite;vertical-align:middle;margin-left:2px}
.ai-qbar-btn{background:var(--purple);color:#fff;border:none;border-radius:6px;padding:6px 14px;font-size:12px;font-weight:700;cursor:pointer}
.ai-chips{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:18px}
.ai-chip{background:var(--g100);border:1px solid var(--g200);border-radius:100px;padding:6px 14px;font-size:12px;color:var(--g600);cursor:default;transition:all .15s}
.ai-chip:hover{background:var(--purple-lt);border-color:var(--purple);color:var(--purple)}
.ai-result{background:var(--g50);border:1px solid var(--g200);border-radius:10px;padding:16px 18px}
.ai-res-q{font-size:12px;color:var(--g400);margin-bottom:6px;font-weight:600}
.ai-res-a{font-size:18px;font-weight:800;color:var(--navy);margin-bottom:12px}
.ai-res-bars{display:flex;align-items:flex-end;gap:6px;height:70px;margin-bottom:8px}
.ai-res-b{flex:1;border-radius:3px 3px 0 0;position:relative}
.ai-res-b span{position:absolute;bottom:-18px;left:50%;transform:translateX(-50%);font-size:9px;color:var(--g500);white-space:nowrap}
.ai-insight{margin-top:40px;font-size:12px;color:var(--g600);background:#fff;border-radius:6px;padding:8px 12px;border-left:3px solid var(--purple);line-height:1.5}
.ai-panel:has(.ai-panel-video) {
  padding: 0;
  overflow: hidden;
  /* min-height: 340px; */
  display: flex;
  align-items: stretch;
}
.ai-panel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 -34px;
  display: block;
  transform: scale(1.2);
  transform-origin: center;
}
.default-video-panel {
  object-position: center;
  transform: scale(1);
}

/* ── GALLUS AI SECTION ── */
.ai-spot{background:linear-gradient(135deg,#0a0f1e 0%,#0d1535 50%,#120d2e 100%);padding:88px 0;position:relative;overflow:hidden}
.ai-spot::before{content:'';position:absolute;top:-20%;left:-10%;width:700px;height:700px;border-radius:50%;background:radial-gradient(circle,rgba(100,108,255,.07) 0%,transparent 60%);pointer-events:none}
.ai-spot-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
.ai-spot-tag{display:inline-flex;align-items:center;gap:7px;background:rgba(100,108,255,.15);border:1px solid rgba(100,108,255,.3);color:#a5b4fc;padding:6px 14px;border-radius:100px;font-size:12px;font-weight:700;margin-bottom:16px}
.ai-spot-h2{font-size:clamp(28px,3.5vw,44px);color:#fff;margin-bottom:6px;font-weight:800}
.ai-spot-h2 em{font-style:normal;color:var(--purple)}
.ai-spot-sub{font-size:16px;color:rgba(255,255,255,.55);margin-bottom:8px}
.ai-spot-tagline{font-size:13px;color:rgba(255,255,255,.35);font-style:italic;margin-bottom:28px}
.ai-feats{display:flex;flex-direction:column;gap:12px}
.ai-feat{display:flex;align-items:flex-start;gap:14px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.07);border-radius:10px;padding:14px 16px;transition:border-color .2s}
.ai-feat:hover{border-color:rgba(100,108,255,.3)}
.ai-feat-ico{width:36px;height:36px;border-radius:8px;background:rgba(100,108,255,.2);display:flex;align-items:center;justify-content:center;font-size:20px;flex-shrink:0}
.ai-feat-txt strong{display:block;font-size:14px;font-weight:700;color:#fff;margin-bottom:3px}
.ai-feat-txt span{font-size:13px;color:rgba(255,255,255,.5);line-height:1.5}
.ai-chat-demo{background:var(--navy2);border-radius:16px;border:1px solid rgba(255,255,255,.08);overflow:hidden;box-shadow:0 32px 64px rgba(0,0,0,.4)}
.ai-chat-header{background:#0a0f1e;padding:12px 16px;display:flex;align-items:center;gap:10px;border-bottom:1px solid rgba(255,255,255,.07)}
.ai-chat-brand{font-size:13px;font-weight:700;color:#a5b4fc}
.ai-chat-status{font-size:11px;color:#4ade80;margin-left:auto;display:flex;align-items:center;gap:5px}
.ai-chat-status::before{content:'';width:6px;height:6px;border-radius:50%;background:#4ade80;display:block;animation:pulse 1.5s infinite}
.ai-messages{padding:20px;display:flex;flex-direction:column;gap:14px}
.ai-msg{max-width:85%}
.ai-msg.user{align-self:flex-end;background:rgba(100,108,255,.25);border:1px solid rgba(100,108,255,.3);border-radius:12px 12px 2px 12px;padding:10px 14px;font-size:13px;color:#c4c9ff}
.ai-msg.bot{align-self:flex-start;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);border-radius:12px 12px 12px 2px;padding:10px 14px;font-size:13px;color:rgba(255,255,255,.8);line-height:1.6}
.ai-msg.bot strong{color:#fff}
.ai-chat-input{padding:14px 16px;border-top:1px solid rgba(255,255,255,.07);display:flex;gap:10px}
.ai-chat-input input{flex:1;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);border-radius:8px;padding:9px 14px;font-size:13px;color:#fff;font-family:'Jost',sans-serif;outline:none}
.ai-chat-input input::placeholder{color:rgba(255,255,255,.3)}
.ai-chat-input button{background:var(--purple);color:#fff;border:none;border-radius:8px;padding:9px 16px;font-size:13px;font-weight:700;cursor:pointer;white-space:nowrap;display:flex;align-items:center;gap:4px}
.no-pointer{cursor:default !important}
.ai-chat-demo:has(.ai-chat-video) {
  padding-bottom: 0;
  overflow: hidden;
}
.ai-chat-video-wrap {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background-color: black;
}
.ai-chat-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% -36px;
  display: block;
}

/* ── BY ROLE ── */
.rtab-row{display:flex;gap:8px;flex-wrap:wrap;justify-content:center;margin-bottom:40px}
.rtab{padding:10px 22px;border-radius:100px;font-size:14px;font-weight:600;cursor:pointer;border:2px solid var(--g200);background:#fff;color:var(--g600);transition:all .2s}
.rtab:hover{border-color:var(--blue);color:var(--blue)}
.rtab.on{background:var(--blue);border-color:var(--blue);color:#fff}
.rpanel{display:none}
.rpanel.on{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start}
.rpanel-persona{background:var(--g50);border-radius:var(--r3);padding:28px;text-align:center}
.rpanel-icon{font-size:52px;margin-bottom:12px;display:flex;justify-content:center}
.rpanel-title{font-size:18px;font-weight:700;color:var(--navy);margin-bottom:10px}
.rpanel-quote{font-size:14px;color:var(--g500);font-style:italic;line-height:1.65;padding:12px 16px;background:#fff;border-radius:8px;border-left:3px solid var(--blue)}
.rpanel-features{display:flex;flex-direction:column;gap:12px}
.rpanel-feat{background:#fff;border:1px solid var(--g200);border-radius:10px;padding:16px;border-left:3px solid var(--blue);transition:box-shadow .2s}
.rpanel-feat:hover{box-shadow:var(--shm)}
.rpanel-feat-title{font-size:14px;font-weight:700;color:var(--navy);margin-bottom:4px;display:flex;align-items:center;gap:8px}
.rpanel-feat-title .mi{color:var(--green);font-size:16px}
.rpanel-feat-desc{font-size:13px;color:var(--g500);line-height:1.55}

/* ── TESTIMONIALS ── */
.test-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.test-card{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:var(--r);padding:28px;position:relative;transition:border-color .2s}
.test-card:hover{border-color:rgba(255,255,255,.18)}
.test-accent{height:4px;border-radius:2px;margin-bottom:20px}
.test-stars{color:#f59e0b;font-size:16px;margin-bottom:14px;display:flex;gap:2px;align-items:center}
.test-q{font-size:14px;line-height:1.75;color:rgba(255,255,255,.65);margin-bottom:20px;font-style:italic}
.test-auth strong{display:block;font-size:13px;font-weight:700;color:#fff;margin-bottom:2px}
.test-auth span{font-size:12px;color:rgba(255,255,255,.35)}

/* ── INTEGRATIONS / ECO ── */
.eco-section{background:var(--navy);padding:88px 0;position:relative;overflow:hidden}
.eco-section::before{content:'';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:800px;height:800px;border-radius:50%;background:radial-gradient(circle,rgba(35,97,217,.06) 0%,transparent 65%);pointer-events:none}
.eco-flow{display:grid;grid-template-columns:1fr auto 1fr auto 1fr;gap:0;align-items:stretch;margin-top:48px}
.eco-panel{border-radius:16px;padding:28px 24px;border:1px solid rgba(255,255,255,.08)}
.eco-panel-sources{background:var(--navy2)}
.eco-panel-engine{background:var(--blue);position:relative;overflow:hidden}
.eco-panel-engine::before{content:'';position:absolute;top:-30%;left:-20%;width:200%;height:200%;background:radial-gradient(ellipse,rgba(255,255,255,.08) 0%,transparent 60%)}
.eco-panel-output{background:var(--navy2)}
.eco-panel-label{font-size:10px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;margin-bottom:20px;text-align:center}
.eco-panel-sources .eco-panel-label{color:rgba(35,97,217,.8)}
.eco-panel-engine .eco-panel-label{color:rgba(255,255,255,.6)}
.eco-panel-output .eco-panel-label{color:rgba(100,108,255,.8)}
.eco-arrow{display:flex;align-items:center;padding:0 12px;color:rgba(255,255,255,.35);flex-shrink:0;font-size:28px}
.eco-source-grid{display:flex;flex-direction:column;gap:8px}
.eco-source{display:flex;align-items:center;gap:10px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.06);border-radius:8px;padding:10px 12px;transition:border-color .2s;cursor:default}
.eco-source:hover{border-color:rgba(35,97,217,.4)}
.eco-source-ico{font-size:20px;flex-shrink:0;display:flex}
.eco-source-txt strong{display:block;font-size:12px;font-weight:700;color:#fff;line-height:1.2}
.eco-source-txt span{font-size:11px;color:rgba(255,255,255,.35)}
.eco-engine-center{text-align:center;position:relative;z-index:1;margin-bottom:20px}
.eco-engine-icon{font-size:44px;margin-bottom:12px;display:flex;justify-content:center}
.eco-engine-title{font-size:18px;font-weight:800;color:#fff;margin-bottom:4px}
.eco-engine-sub{font-size:13px;color:rgba(255,255,255,.65);margin-bottom:18px}
.eco-powered{display:flex;gap:8px;justify-content:center;flex-wrap:wrap;margin-bottom:20px}
.eco-powered-pill{background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.2);border-radius:8px;padding:7px 14px;font-size:12px;font-weight:700;color:#fff;display:flex;align-items:center;gap:6px}
.eco-caps{display:flex;flex-direction:column;gap:7px}
.eco-cap{font-size:12px;color:rgba(255,255,255,.75);display:flex;align-items:center;gap:7px}
.eco-cap .mi{color:#4ade80;font-size:16px;flex-shrink:0}
.eco-output-tiles{display:flex;flex-direction:column;gap:12px}
.eco-output-tile{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:12px;padding:18px;text-align:center;transition:border-color .2s;cursor:default}
.eco-output-tile:hover{border-color:rgba(100,108,255,.4)}
.eco-output-tile.ai-tile{border-color:rgba(100,108,255,.2)}
.eco-output-icon{font-size:32px;margin-bottom:10px;display:flex;justify-content:center}
.eco-output-title{font-size:15px;font-weight:700;color:#fff;margin-bottom:4px}
.eco-output-desc{font-size:12px;color:rgba(255,255,255,.4);line-height:1.5}
.eco-anim-note{background:rgba(35,97,217,.1);border:1px dashed rgba(35,97,217,.35);border-radius:10px;padding:14px 18px;margin-top:24px;font-size:13px;color:rgba(255,255,255,.5);text-align:center;font-style:italic;display:flex;align-items:center;justify-content:center;gap:8px}
.eco-anim-note strong{color:rgba(255,255,255,.7);font-style:normal}
.eco-ph{display:flex;align-items:center;gap:10px;margin-bottom:24px}
.eco-ph-ico{width:36px;height:36px;border-radius:8px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.eco-ph-ico-dim{background:rgba(255,255,255,.08)}
.eco-ph-ico-bright{background:rgba(255,255,255,.12)}
.eco-ph-name{font-size:15px;font-weight:700;color:#fff}
.eco-ph-sub{font-size:12px;color:rgba(255,255,255,.45);margin-top:1px}
.eco-divider{height:1px;background:rgba(255,255,255,.1);margin-bottom:20px}
.eco-tagline{font-size:13px;color:rgba(255,255,255,.5);line-height:1.6;margin-bottom:22px}
.eco-list{display:flex;flex-direction:column;gap:2px}
.eco-row{display:flex;align-items:center;gap:12px;padding:10px 12px;border-radius:8px;cursor:default;transition:background .15s}
.eco-row:hover{background:rgba(255,255,255,.06)}
.eco-row-tall{display:flex;align-items:flex-start;gap:12px;padding:14px 12px;border-radius:8px;cursor:default;transition:background .15s}
.eco-row-tall:hover{background:rgba(255,255,255,.06)}
.eco-row-ai{border:1px solid transparent}
.eco-row-ico{flex-shrink:0;margin-top:1px}
.eco-row-name{font-size:13px;font-weight:600;color:#fff;line-height:1.3;margin-bottom:4px}
.eco-row-name-ai{color:#a5b4fc}
.eco-row-desc{font-size:11px;color:rgba(255,255,255,.4);line-height:1.6}
.eco-bullet-list{display:flex;flex-direction:column;gap:14px}
.eco-bullet{display:flex;align-items:flex-start;gap:10px}
.eco-bullet-dot{width:5px;height:5px;border-radius:50%;background:#4ade80;flex-shrink:0;margin-top:6px}
.eco-bullet-title{color:#fff;font-size:13px;font-weight:600;display:block}
.eco-bullet-desc{font-size:13px;color:rgba(255,255,255,.6);line-height:1.5}
.eco-footer{margin-top:26px;padding-top:18px;border-top:1px solid rgba(255,255,255,.1)}
.eco-footer-pills{display:flex;gap:8px}
.eco-footer-pill{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.14);border-radius:6px;padding:5px 12px;font-size:11px;font-weight:600;color:rgba(255,255,255,.6);letter-spacing:.04em;display:flex;align-items:center;gap:5px}
.eco-footer-note{font-size:11px;color:rgba(255,255,255,.3);line-height:1.6}

/* ── STATS ── */
.stats-sec{background:var(--blue);color:#fff}
.stats-grid{display:grid;grid-template-columns:repeat(5,1fr)}
.stat-item{padding:40px 20px;text-align:center;border-right:1px solid rgba(255,255,255,.15)}
.stat-item:last-child{border-right:none}
.stat-val{font-size:42px;font-weight:800;line-height:1;margin-bottom:8px}
.stat-lbl{font-size:13px;color:rgba(255,255,255,.7)}

/* ── SECURITY ── */
.sec-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin:36px 0}
.sec-card{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:var(--r);padding:22px}
.sec-card-ico{font-size:26px;margin-bottom:12px;display:flex}
.sec-card h4{color:#fff;font-size:15px;margin-bottom:7px}
.sec-card p{color:rgba(255,255,255,.5);font-size:13px;line-height:1.6}

/* ── CTA ── */
.cta-sec{background:linear-gradient(135deg,var(--navy),#1e3a8a,#1a1040);color:#fff;text-align:center;padding:96px 0;position:relative;overflow:hidden}
.cta-sec::before{content:'';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:600px;height:600px;border-radius:50%;background:radial-gradient(circle,rgba(35,97,217,.15),transparent 65%)}
.cta-sec h2{color:#fff;font-size:clamp(32px,5vw,52px);margin-bottom:8px;position:relative}
.cta-sec .cta-sub{color:#60a5fa;font-size:clamp(24px,3.5vw,38px);font-weight:700;margin-bottom:16px;position:relative}
.cta-sec .cta-tagline{color:rgba(255,255,255,.5);font-size:16px;margin-bottom:40px;font-style:italic;position:relative}
.cta-btn-wrap{position:relative}

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .hero-grid{grid-template-columns:1fr}
  .hero-video{display:none}
  .steps{grid-template-columns:repeat(2,1fr)}
  .steps::before{display:none}
  .dchart-row{grid-template-columns:1fr}
  .dkpi-row{grid-template-columns:repeat(2,1fr)}
  .ai-spot-grid{grid-template-columns:1fr}
  .rpanel.on{grid-template-columns:1fr}
  .eco-flow{grid-template-columns:1fr;gap:12px}
  .eco-arrow{transform:rotate(90deg);justify-content:center;padding:8px 0}
  .prob-grid{grid-template-columns:repeat(2,1fr)}
  .stats-grid{grid-template-columns:repeat(3,1fr)}
  .sec-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
  .prob-grid{grid-template-columns:1fr}
  .test-grid{grid-template-columns:1fr}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:480px){
  .stats-grid{grid-template-columns:1fr 1fr}
}