/* ═══ GUARANTEED VISIBILITY OVERRIDES ═══ */
/* Force all .rev elements visible - JS handles animation */
.rev { opacity: 1 !important; transform: none !important; }
.rev.on { opacity: 1 !important; transform: none !important; }


/* === index === */

/* ═══════════════════════════════════════════════════════
   RESET
════════════════════════════════════════════════════════ */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;font-size:16px}
body{
  font-family:'Plus Jakarta Sans',system-ui,sans-serif;
  background:#ffffff;
  color:#0f172a;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
button{font-family:inherit;cursor:pointer;border:none;background:none}



/* ═══════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════ */
nav{
  position:fixed;top:0;left:0;right:0;z-index:900;
  height:66px;
  background:rgba(255,255,255,0.93);
  backdrop-filter:blur(22px);-webkit-backdrop-filter:blur(22px);
  border-bottom:1px solid rgba(0,0,0,0.055);
  display:flex;align-items:center;
  transition:box-shadow .3s;
}
nav.scrolled{box-shadow:0 2px 28px rgba(0,0,0,0.07)}
.nw{max-width:1560px;margin:0 auto;padding:0 48px;display:flex;align-items:center;width:100%}
.logo{display:flex;align-items:center;gap:10px;margin-right:auto}
.logo svg{width:46px;height:36px;flex-shrink:0}
.logo-t{font-size:17px;font-weight:800;letter-spacing:1px;color:#0f172a;text-transform:uppercase}
.nl{display:flex;list-style:none;gap:2px;margin-right:24px}
.nl a{
  font-size:17.5px;font-weight:500;color:#64748b;
  padding:7px 13px;border-radius:8px;
  transition:color .14s,background .14s;
  display:block;
}
.nl a:hover{color:#0f172a;background:#f8fafc}
.nav-btn{
  background:#f97316;color:#fff;
  font-size:13.5px;font-weight:600;
  padding:10px 22px;border-radius:10px;
  box-shadow:0 2px 14px rgba(249,115,22,0.38);
  transition:all .2s;
  display:inline-flex;align-items:center;gap:6px;
}
.nav-btn:hover{background:#ea580c;transform:translateY(-1px);box-shadow:0 4px 20px rgba(249,115,22,0.48)}

/* ═══════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════ */
.hero{
  min-height:calc(100vh - 44px);padding-top:76px;
  display:flex;align-items:center;justify-content:center;
  background:#fff;position:relative;overflow:hidden;
}

/* Animated dot grid */
.hero-dots{
  position:absolute;inset:0;pointer-events:none;
  background-image:radial-gradient(circle,#e2e8f0 1px,transparent 1px);
  background-size:30px 30px;
  opacity:0.45;
  animation:dotsBreath 8s ease-in-out infinite;
}
@keyframes dotsBreath{0%,100%{opacity:.45;background-size:30px 30px}50%{opacity:.35;background-size:32px 32px}}

/* Orange aurora glow */
.hero-aura{
  position:absolute;pointer-events:none;
  width:900px;height:700px;
  left:50%;top:50%;
  transform:translate(-50%,-52%);
  background:radial-gradient(ellipse at center,rgba(249,115,22,.07) 0%,rgba(251,146,60,.03) 35%,transparent 65%);
  animation:auraFloat 7s ease-in-out infinite;
}
@keyframes auraFloat{0%,100%{transform:translate(-50%,-52%) scale(1)}50%{transform:translate(-50%,-50%) scale(1.04)}}

/* Floating orbs */
.orb{
  position:absolute;border-radius:50%;
  pointer-events:none;filter:blur(60px);opacity:.25;
  animation:orbDrift var(--d,12s) ease-in-out infinite;
}
.orb1{width:300px;height:300px;background:#f97316;top:10%;left:5%;--d:11s}
.orb2{width:200px;height:200px;background:#fb923c;bottom:20%;right:8%;--d:14s;animation-delay:-4s}
.orb3{width:150px;height:150px;background:#fbbf24;top:60%;left:60%;--d:9s;animation-delay:-7s;opacity:.15}
@keyframes orbDrift{
  0%,100%{transform:translateY(0) translateX(0)}
  33%{transform:translateY(-30px) translateX(15px)}
  66%{transform:translateY(20px) translateX(-10px)}
}

.hero-inner{
  position:relative;z-index:2;
  display:flex;flex-direction:column;
  align-items:center;text-align:center;
  padding:64px 32px 80px;
  max-width:1000px;
}

/* Badge */
.hero-badge{
  display:inline-flex;align-items:center;gap:9px;
  background:#fff7ed;border:1px solid #fed7aa;
  border-radius:100px;padding:7px 18px;
  font-size:12.5px;font-weight:600;color:#f97316;
  margin-bottom:20px;
  opacity:0;animation:slideDown .7s cubic-bezier(.22,1,.36,1) .1s forwards;
}
.badge-pulse{
  width:8px;height:8px;border-radius:50%;
  background:#f97316;flex-shrink:0;
  animation:pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot{
  0%,100%{transform:scale(1);opacity:1;box-shadow:0 0 0 0 rgba(249,115,22,.4)}
  50%{transform:scale(.85);opacity:.6;box-shadow:0 0 0 6px rgba(249,115,22,0)}
}
@keyframes slideDown{from{opacity:0;transform:translateY(-12px)}to{opacity:1;transform:translateY(0)}}

/* Headline */
.hero-h1{
  font-size:clamp(40px,6vw,70px);
  font-weight:800;line-height:1.04;
  letter-spacing:-2.5px;color:#0f172a;
  margin-bottom:18px;
  opacity:0;animation:slideUp .8s cubic-bezier(.22,1,.36,1) .22s forwards;
}
.hero-h1 .or{
  color:#f97316;position:relative;display:inline-block;
}
.hero-h1 .or::after{
  content:'';
  position:absolute;left:0;right:100%;bottom:-4px;
  height:3px;border-radius:2px;background:#f97316;
  animation:lineGrow .9s cubic-bezier(.22,1,.36,1) 1.2s forwards;
}
@keyframes lineGrow{to{right:0}}
@keyframes slideUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}

.hero-sub{
  font-size:16px;color:#64748b;line-height:1.65;
  max-width:640px;margin:0 auto 28px;
  opacity:0;animation:slideUp .8s cubic-bezier(.22,1,.36,1) .36s forwards;
}

/* Buttons */
.hero-btns{
  display:flex;gap:13px;justify-content:center;
  margin-bottom:44px;
  opacity:0;animation:slideUp .8s cubic-bezier(.22,1,.36,1) .48s forwards;
}
.btn-pr{
  background:#f97316;color:#fff;
  font-size:15px;font-weight:700;
  padding:15px 32px;border-radius:13px;
  box-shadow:0 4px 20px rgba(249,115,22,.4);
  display:inline-flex;align-items:center;gap:7px;
  transition:all .2s cubic-bezier(.22,1,.36,1);
  position:relative;overflow:hidden;
}
.btn-pr::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,.15),transparent);
  opacity:0;transition:opacity .2s;
}
.btn-pr:hover{background:#ea580c;transform:translateY(-2px);box-shadow:0 8px 30px rgba(249,115,22,.5)}
.btn-pr:hover::before{opacity:1}
.btn-pr:active{transform:translateY(0);box-shadow:0 4px 16px rgba(249,115,22,.35)}
.btn-sc{
  background:#fff;color:#0f172a;
  font-size:15px;font-weight:600;
  padding:15px 32px;border-radius:13px;
  border:1.5px solid #e2e8f0;
  box-shadow:0 1px 4px rgba(0,0,0,.05);
  display:inline-flex;align-items:center;gap:7px;
  transition:all .2s;
}
.btn-sc:hover{border-color:#94a3b8;background:#f8fafc;transform:translateY(-1px)}

/* Stats */
.hero-stats{
  display:flex;gap:60px;
  padding-top:22px;border-top:1px solid #f1f5f9;
  opacity:0;animation:slideUp .8s cubic-bezier(.22,1,.36,1) .62s forwards;
}
.stat-n{font-size:44px;font-weight:800;line-height:1;color:#0f172a;font-variant-numeric:tabular-nums}
.stat-n .hl{color:#f97316}
.stat-l{font-size:13px;color:#94a3b8;margin-top:6px;font-weight:500;letter-spacing:.2px}

/* ═══════════════════════════════════════════════════════
   LIVE TICKER STRIP
════════════════════════════════════════════════════════ */
.ticker-wrap{
  background:#fafafa;
  border-top:1px solid #f1f5f9;border-bottom:1px solid #f1f5f9;
  overflow:hidden;position:relative;height:44px;display:flex;align-items:center;
}
.ticker-wrap::before,.ticker-wrap::after{
  content:'';position:absolute;top:0;bottom:0;width:100px;z-index:2;pointer-events:none;
}
.ticker-wrap::before{left:0;background:linear-gradient(90deg,#fafafa 0%,transparent 100%)}
.ticker-wrap::after{right:0;background:linear-gradient(-90deg,#fafafa 0%,transparent 100%)}
.ticker-track{
  display:flex;animation:scrollTicker 30s linear infinite;
  will-change:transform;
}
@keyframes scrollTicker{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.tick{
  display:inline-flex;align-items:center;gap:8px;
  padding:0 28px;border-right:1px solid #f1f5f9;white-space:nowrap;
}
.tick-dot{width:6px;height:6px;border-radius:50%;flex-shrink:0}
.tick-lbl{font-size:12.5px;font-weight:500;color:#475569}
.tick-val{font-size:12.5px;font-weight:700}

/* ═══════════════════════════════════════════════════════
   LOGO STRIP
════════════════════════════════════════════════════════ */
.logos-section{background:#f8fafc;border-bottom:1px solid #f1f5f9;padding:28px 0}
.logos-inner{max-width:1560px;margin:0 auto;padding:0 48px}
.logos-lbl{font-size:11px;font-weight:700;color:#94a3b8;text-transform:uppercase;letter-spacing:1.5px;text-align:center;margin-bottom:16px}
.logos-row{display:flex;gap:8px;flex-wrap:wrap;justify-content:center}
.lchip{
  background:#fff;border:1px solid #e2e8f0;border-radius:8px;
  padding:8px 17px;font-size:11.5px;font-weight:700;
  color:#94a3b8;letter-spacing:.4px;text-transform:uppercase;
  transition:all .22s cubic-bezier(.22,1,.36,1);
}
.lchip:hover{border-color:#f97316;color:#f97316;transform:translateY(-2px);box-shadow:0 4px 14px rgba(249,115,22,.15)}

/* ═══════════════════════════════════════════════════════
   UTILITY
════════════════════════════════════════════════════════ */
.section{padding:72px 0}
.section-alt{padding:72px 0;background:#f8fafc}
.wrap{max-width:1560px;margin:0 auto;padding:0 48px}
.sec-head{text-align:center;margin-bottom:40px}
.eyebrow{
  display:inline-flex;align-items:center;gap:7px;
  background:#fff7ed;border:1px solid #fed7aa;
  border-radius:100px;padding:5px 14px;
  font-size:11.5px;font-weight:600;color:#f97316;
  margin-bottom:14px;letter-spacing:.2px;
}
.eyebrow::before{content:'';width:5px;height:5px;border-radius:50%;background:#f97316;flex-shrink:0}
h2.big{
  font-size:clamp(24px,3.2vw,40px);font-weight:800;
  letter-spacing:-1px;line-height:1.1;color:#0f172a;
  margin-bottom:12px;
}
h2.big .or{color:#f97316}
.sub{font-size:15.5px;color:#64748b;line-height:1.65;max-width:700px;margin:0 auto}

/* Scroll reveal */
.rev{
  opacity:0;transform:translateY(30px);
  transition:opacity .7s cubic-bezier(.22,1,.36,1),
             transform .7s cubic-bezier(.22,1,.36,1);
}
.rev.on{opacity:1;transform:translateY(0)}
.rev.d1{transition-delay:.08s}.rev.d2{transition-delay:.16s}.rev.d3{transition-delay:.24s}

/* ═══════════════════════════════════════════════════════
   PROBLEM SECTION
════════════════════════════════════════════════════════ */
.prob-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.prob-card{
  background:#fff;border:1px solid #e2e8f0;border-radius:20px;
  padding:26px 22px;text-align:center;
  transition:all .3s cubic-bezier(.22,1,.36,1);
  position:relative;overflow:hidden;
}
.prob-card::before{
  content:'';position:absolute;inset:0;opacity:0;
  transition:opacity .3s;
  background:linear-gradient(135deg,rgba(249,115,22,.02) 0%,rgba(249,115,22,.05) 100%);
}
.prob-card:hover{box-shadow:0 16px 48px rgba(0,0,0,.09);transform:translateY(-5px)}
.prob-card:hover::before{opacity:1}
.prob-num{font-size:46px;font-weight:800;line-height:1;margin-bottom:8px;font-variant-numeric:tabular-nums}
.prob-title{font-size:15px;font-weight:700;color:#0f172a;margin-bottom:8px}
.prob-desc{font-size:13px;color:#64748b;line-height:1.65}

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════════════ */
.how-grid{display:grid;grid-template-columns:1fr 1fr;gap:52px;align-items:center}
.how-steps{display:flex;flex-direction:column;gap:6px}
.how-step{
  display:flex;gap:14px;align-items:flex-start;
  padding:14px;border-radius:12px;border:1px solid transparent;
  transition:all .22s cubic-bezier(.22,1,.36,1);
}
.how-step:hover{background:#fff7ed;border-color:#fed7aa;transform:translateX(4px)}
.step-badge{
  width:30px;height:30px;border-radius:8px;background:#f97316;
  display:flex;align-items:center;justify-content:center;
  font-size:11.5px;font-weight:800;color:#fff;flex-shrink:0;
}
.step-t{font-size:13.5px;font-weight:700;color:#0f172a;margin-bottom:3px}
.step-d{font-size:12.5px;color:#64748b;line-height:1.55}

/* Flow visualizer */
.flow-vis{
  background:#f8fafc;border:1px solid #e2e8f0;
  border-radius:18px;padding:20px;
  box-shadow:0 4px 24px rgba(0,0,0,.04);
}
.flow-hdr{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}
.flow-ttl{font-size:11px;font-weight:700;color:#94a3b8;text-transform:uppercase;letter-spacing:1.5px}
.live-chip{display:flex;align-items:center;gap:5px;font-size:11px;font-weight:700;color:#dc2626}
.live-dot{width:6px;height:6px;border-radius:50%;background:#dc2626;animation:blink 1.4s ease-in-out infinite}
@keyframes blink{0%,100%{opacity:1}50%{opacity:.2}}
.flow-/* removed bad body rule */
.f-row{
  background:#fff;border:1px solid #e2e8f0;border-radius:11px;
  padding:12px 14px;display:flex;gap:9px;align-items:center;
  font-size:13px;color:#0f172a;
  animation:fadeSlide .4s cubic-bezier(.22,1,.36,1) both;
}
@keyframes fadeSlide{from{opacity:0;transform:translateX(12px)}to{opacity:1;transform:translateX(0)}}
.f-brs{
  background:#fff7ed;border:1px solid #fed7aa;border-radius:11px;
  padding:12px 14px;display:flex;gap:9px;align-items:center;
  font-size:13px;animation:fadeSlide .4s cubic-bezier(.22,1,.36,1) .08s both;
}
.brs-dot{width:7px;height:7px;border-radius:50%;background:#f97316;flex-shrink:0;animation:blink 1.4s infinite}
.f-eng{
  background:#fff;border:1.5px solid #f97316;border-radius:11px;
  padding:12px 14px;font-size:13px;color:#0f172a;
  animation:fadeSlide .4s cubic-bezier(.22,1,.36,1) .16s both;
}
.f-win{
  background:#dcfce7;border:1px solid rgba(22,163,74,.22);border-radius:11px;
  padding:12px 14px;display:flex;justify-content:space-between;align-items:center;
  animation:fadeSlide .4s cubic-bezier(.22,1,.36,1) .24s both;
}
.f-sep{text-align:center;font-size:11px;font-weight:700;color:#e2e8f0;margin:2px 0}
.flow-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-top:14px}
.fstat{background:#fff;border:1px solid #e2e8f0;border-radius:10px;padding:12px;text-align:center}
.fstat-n{font-size:17px;font-weight:800;color:#0f172a}
.fstat-l{font-size:10px;color:#94a3b8;margin-top:2px}

/* ═══════════════════════════════════════════════════════
   FEATURES GRID
════════════════════════════════════════════════════════ */
.feat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.feat-card{
  background:#fff;border:1px solid #e2e8f0;border-radius:18px;padding:20px;
  transition:all .28s cubic-bezier(.22,1,.36,1);
  position:relative;overflow:hidden;
}
.feat-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:2px;
  background:transparent;transition:background .28s;
}
.feat-card:hover{
  border-color:#f97316;transform:translateY(-4px);
  box-shadow:0 0 0 3px rgba(249,115,22,.07), 0 14px 44px rgba(0,0,0,.09);
}
.feat-card:hover::before{background:linear-gradient(90deg,#f97316 0%,#fb923c 50%,#fbbf24 100%)}
.feat-icon{
  width:46px;height:46px;border-radius:12px;background:#fff7ed;
  display:flex;align-items:center;justify-content:center;font-size:21px;
  margin-bottom:14px;transition:transform .25s cubic-bezier(.22,1,.36,1);
}
.feat-card:hover .feat-icon{transform:scale(1.12) rotate(-3deg)}
.feat-title{font-size:15px;font-weight:700;color:#0f172a;margin-bottom:7px}
.feat-desc{font-size:13px;color:#64748b;line-height:1.65}
.feat-kpi{margin-top:13px;padding-top:11px;border-top:1px solid #f8fafc;font-size:11.5px;font-weight:700;color:#f97316}

/* ═══════════════════════════════════════════════════════
   INTENT JOURNEY
════════════════════════════════════════════════════════ */
.intent-row{display:grid;grid-template-columns:repeat(9,1fr);gap:8px}
.ic{
  border:1.5px solid #e2e8f0;border-radius:13px;
  padding:14px 5px;text-align:center;background:#fff;
  transition:all .25s cubic-bezier(.22,1,.36,1);
  position:relative;overflow:hidden;
}
.ic:hover{
  transform:translateY(-4px);border-color:#f97316;background:#fff7ed;
  box-shadow:0 6px 20px rgba(249,115,22,.15);
}
.ic-n{font-size:10px;font-weight:700;color:#f97316;margin-bottom:5px;letter-spacing:.5px}
.ic-i{font-size:19px;display:block;margin-bottom:5px}
.ic-l{font-size:10px;font-weight:700;color:#0f172a;line-height:1.3}
.ic-k{font-size:9px;color:#94a3b8;margin-top:4px}

/* Active intent chips */
.ic-act{border-color:#f97316;background:#fff7ed}
.ic-red{border-color:#fecaca;background:#fef2f2}
.ic-grn1{border-color:rgba(22,163,74,.3);background:#dcfce7}
.ic-grn2{border-color:rgba(22,163,74,.2);background:#f0fdf4}

/* ═══════════════════════════════════════════════════════
   METRICS BAND
════════════════════════════════════════════════════════ */
.metrics-band{
  background:#0f172a;padding:60px 0;
  position:relative;overflow:hidden;
}
.metrics-band::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse at 50% 50%,rgba(249,115,22,.08) 0%,transparent 60%);
}
.metrics-grid{
  display:grid;grid-template-columns:repeat(5,1fr);gap:24px;
  text-align:center;position:relative;z-index:1;
}
.met-n{
  font-size:48px;font-weight:800;color:#f97316;
  display:block;line-height:1;font-variant-numeric:tabular-nums;
  transition:all .3s;
}
.met-l{font-size:13px;color:rgba(255,255,255,.38);display:block;margin-top:9px;letter-spacing:.2px}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════════ */
.tgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.tcard{
  background:#fff;border:1px solid #e2e8f0;border-radius:20px;padding:22px;
  transition:all .28s cubic-bezier(.22,1,.36,1);
}
.tcard:hover{box-shadow:0 14px 44px rgba(0,0,0,.09);transform:translateY(-4px)}
.stars{color:#f97316;font-size:13px;letter-spacing:2px;margin-bottom:14px}
.tq{font-size:14.5px;color:#374151;line-height:1.76;font-style:italic;margin-bottom:18px}
.tau{display:flex;align-items:center;gap:11px}
.tav{width:40px;height:40px;border-radius:50%;background:#fff7ed;display:flex;align-items:center;justify-content:center;font-size:17px;flex-shrink:0}
.tn{font-size:14px;font-weight:700;color:#0f172a}
.tr{font-size:12px;color:#94a3b8;margin-top:1px}

/* ═══════════════════════════════════════════════════════
   ANIMATED BRS COUNTER SECTION
════════════════════════════════════════════════════════ */
.brs-section{
  background:#0f172a;padding:68px 0;
  position:relative;overflow:hidden;
}
.brs-section::before{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(circle at 20% 50%,rgba(249,115,22,.07) 0%,transparent 45%),
    radial-gradient(circle at 80% 50%,rgba(251,146,60,.05) 0%,transparent 45%);
}
.brs-inner{
  max-width:1560px;margin:0 auto;padding:0 32px;
  display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;
  position:relative;z-index:1;
}
.brs-score-wrap{
  display:flex;flex-direction:column;align-items:center;gap:16px;
}
.brs-ring{
  position:relative;width:180px;height:180px;
}
.brs-ring svg{width:180px;height:180px;transform:rotate(-90deg)}
.ring-bg{fill:none;stroke:rgba(255,255,255,.06);stroke-width:10}
.ring-prog{
  fill:none;stroke:url(#ringGrad);stroke-width:10;
  stroke-linecap:round;
  stroke-dasharray:480;stroke-dashoffset:480;
  transition:stroke-dashoffset 2s cubic-bezier(.22,1,.36,1);
}
.ring-prog.animate{stroke-dashoffset:125}
.brs-center{
  position:absolute;inset:0;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
}
.brs-num{
  font-size:46px;font-weight:800;color:#fff;line-height:1;
  font-variant-numeric:tabular-nums;
}
.brs-sub{font-size:12px;font-weight:600;color:rgba(255,255,255,.45);letter-spacing:1px;text-transform:uppercase;margin-top:2px}
.brs-label{
  font-size:14px;font-weight:700;color:#f97316;
  background:rgba(249,115,22,.12);border:1px solid rgba(249,115,22,.2);
  border-radius:100px;padding:6px 16px;
}
.brs-stages{
  display:flex;gap:8px;
}
.brs-st{
  flex:1;padding:8px 4px;border-radius:8px;text-align:center;font-size:11px;font-weight:700;
  transition:all .3s;
}
.brs-st.active-stage{transform:scale(1.05)}

/* ═══════════════════════════════════════════════════════
   CTA BAND
════════════════════════════════════════════════════════ */
.cta-band{
  background:#f97316;padding:64px 0;
  position:relative;overflow:hidden;
}
.cta-band::before{
  content:'';position:absolute;right:-150px;top:-150px;
  width:600px;height:600px;border-radius:50%;
  background:rgba(255,255,255,.07);
  animation:ctaOrb 10s ease-in-out infinite;
}
.cta-band::after{
  content:'';position:absolute;left:-80px;bottom:-100px;
  width:400px;height:400px;border-radius:50%;
  background:rgba(255,255,255,.05);
  animation:ctaOrb 14s ease-in-out infinite reverse;
}
@keyframes ctaOrb{0%,100%{transform:scale(1) translate(0,0)}50%{transform:scale(1.06) translate(10px,-10px)}}
.cta-grid{
  position:relative;z-index:2;
  display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;
}
.cta-h2{
  font-size:clamp(28px,3.2vw,42px);font-weight:800;
  line-height:1.1;letter-spacing:-.8px;color:#fff;margin-bottom:14px;
}
.cta-p{font-size:16.5px;color:rgba(255,255,255,.82);line-height:1.7;margin-bottom:30px}
.btn-wh{
  background:#fff;color:#0f172a;font-size:15px;font-weight:700;
  padding:15px 30px;border-radius:13px;
  box-shadow:0 2px 12px rgba(0,0,0,.1);
  display:inline-flex;align-items:center;gap:6px;
  transition:all .2s;
}
.btn-wh:hover{transform:translateY(-2px);box-shadow:0 6px 22px rgba(0,0,0,.14)}
.btn-gh{
  background:rgba(255,255,255,.14);color:#fff;font-size:15px;font-weight:600;
  padding:15px 30px;border-radius:13px;border:1.5px solid rgba(255,255,255,.3);
  display:inline-flex;align-items:center;gap:6px;transition:all .2s;
}
.btn-gh:hover{background:rgba(255,255,255,.22)}
.trust-row{display:flex;gap:16px;flex-wrap:wrap;margin-top:20px}
.trust-item{display:flex;align-items:center;gap:6px;font-size:13px;color:rgba(255,255,255,.8)}
.trust-item::before{content:'✓';font-weight:700;color:#fff}
.cta-box{
  background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.2);
  border-radius:22px;padding:20px;
}
.d-item{display:flex;gap:12px;margin-bottom:14px}
.d-item:last-child{margin-bottom:0}
.d-icon{font-size:18px;flex-shrink:0;margin-top:1px}
.d-t{font-size:14px;font-weight:600;color:#fff}
.d-s{font-size:12px;color:rgba(255,255,255,.6);margin-top:2px}

/* ═══════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
footer{background:#0f172a;padding:64px 0 32px}
.fg{display:grid;grid-template-columns:2fr 1fr 1fr 1fr 1fr;gap:40px;margin-bottom:48px}
.f-desc{font-size:13.5px;color:rgba(255,255,255,.32);line-height:1.7;margin-top:14px;max-width:230px}
.fc h5{font-size:11px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:rgba(255,255,255,.25);margin-bottom:12px}
.fc a{display:block;font-size:13.5px;color:rgba(255,255,255,.42);margin-bottom:8px;transition:color .14s}
.fc a:hover{color:#f97316}
.f-btm{border-top:1px solid rgba(255,255,255,.05);padding-top:22px;display:flex;justify-content:space-between;align-items:center}
.f-btm p{font-size:13px;color:rgba(255,255,255,.22)}

/* ═══════════════════════════════════════════════════════
   PLATFORM ARCHITECTURE SECTION
════════════════════════════════════════════════════════ */
.plat-sec {
  background: linear-gradient(180deg, #f8fafc 0%, #fff7ed 50%, #f8fafc 100%);
  padding: 48px 0 44px;
  position: relative; overflow: hidden;
}
.plat-sec::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(249,115,22,.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(249,115,22,.08) 0%, transparent 50%);
}
.plat-sec .sec-head { position: relative; z-index: 1; margin-bottom: 8px; }

/* Panel titles */
.panel-titles {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.panel-title-bad {
  text-align: center; padding: 0 12px;
}
.panel-title-good {
  text-align: center; padding: 0 12px;
}
.pt-label {
  font-size: 16px; font-weight: 800; letter-spacing: -.3px; line-height: 1.2;
  margin-bottom: 6px;
}
.pt-label-bad  { color: #dc2626; }
.pt-label-good { color: #f97316; }
.pt-sub {
  font-size: 12px; font-weight: 500; line-height: 1.5;
  max-width: 280px; margin: 0 auto;
}
.pt-sub-bad  { color: #94a3b8; }
.pt-sub-good { color: #78716c; }

/* Two-panel layout */
.plat-panels {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  position: relative; z-index: 1;
  align-items: stretch;
}

/* VS column */
.plat-vs-col {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 0 8px;
}
.pvs-line {
  flex: 1; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(15,23,42,.15), transparent);
  min-height: 40px;
}
.pvs-badge {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: #fff;
  border: 2.5px solid #0f172a;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; color: #0f172a;
  letter-spacing: .5px;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}

/* Panel wrappers — equal height via grid stretch */
.plat-panel {
  border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
}
.plat-panel-bad  {
  border: 1.5px solid rgba(220,38,38,.25);
  background: #fff;
  box-shadow: 0 4px 40px rgba(220,38,38,.06), 0 1px 0 rgba(220,38,38,.1);
}
.plat-panel-good {
  border: 1.5px solid rgba(249,115,22,.35);
  background: #fff;
  box-shadow: 0 4px 40px rgba(249,115,22,.1), 0 1px 0 rgba(249,115,22,.15);
}

/* Panel header strip */
.pp-hdr {
  padding: 13px 20px;
  display: flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: .3px;
  text-transform: uppercase;
  border-bottom: 1px solid;
  flex-shrink: 0;
}
.pp-hdr-bad  { background: rgba(220,38,38,.06); border-color: rgba(220,38,38,.15); color: #dc2626; }
.pp-hdr-good { background: rgba(249,115,22,.07); border-color: rgba(249,115,22,.2); color: #ea580c; }
.pp-hdr-dot  { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.pp-hdr-bad  .pp-hdr-dot { background: #ef4444; }
.pp-hdr-good .pp-hdr-dot { background: #f97316; animation: pulseDot 1.8s infinite; }

/* SVG diagram */
.diag-wrap { flex: 1; }
.diag-wrap svg { display: block; width: 100%; height: 100%; }

/* Pills row */
.pp-pills {
  padding: 11px 16px; display: flex; gap: 6px; flex-wrap: wrap;
  border-top: 1px solid rgba(249,115,22,.12);
  background: rgba(249,115,22,.03);
  flex-shrink: 0;
}
.pp-pill {
  font-size: 10.5px; font-weight: 600; color: #ea580c;
  background: rgba(249,115,22,.1); border: 1px solid rgba(249,115,22,.2);
  border-radius: 100px; padding: 4px 11px;
}

/* Saving banner */
.saving-banner {
  margin-top: 20px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  border-radius: 16px; padding: 24px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  position: relative; z-index: 1; overflow: hidden;
}
.saving-banner::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(249,115,22,.08);
  pointer-events: none;
}
.sb-left { flex: 1; }
.sb-eyebrow {
  font-size: 10px; font-weight: 700; color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px;
}
.sb-headline {
  font-size: clamp(18px, 2.2vw, 26px); font-weight: 800;
  color: #fff; line-height: 1.1; letter-spacing: -.4px;
}
.sb-headline span { color: #f97316; }
.sb-sub {
  font-size: 13px; color: rgba(255,255,255,.5); margin-top: 6px; line-height: 1.55;
}
.sb-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex-shrink: 0;
}
.sb-amount {
  font-size: clamp(30px, 3.2vw, 42px); font-weight: 900;
  color: #f97316; line-height: 1;
  text-shadow: 0 0 40px rgba(249,115,22,.4);
}
.sb-amount-sub { font-size: 13px; color: rgba(255,255,255,.45); text-align: right; }
.sb-cta {
  background: #f97316; color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  padding: 12px 24px; border-radius: 11px; border: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all .2s; cursor: pointer;
  box-shadow: 0 4px 18px rgba(249,115,22,.4);
}
.sb-cta:hover { background: #ea580c; transform: translateY(-2px); }

/* animations */
@keyframes badPulse { 0%,100%{opacity:.5} 50%{opacity:.12} }
@keyframes zigMove  { 0%{stroke-dashoffset:800} 100%{stroke-dashoffset:0} }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */
@media(max-width:900px){
  .how-grid,.cta-grid,.brs-inner,.teams-grid{grid-template-columns:1fr}
  .prob-grid,.feat-grid,.tgrid{grid-template-columns:1fr}
  .intent-row{grid-template-columns:repeat(3,1fr)}
  .metrics-grid{grid-template-columns:repeat(2,1fr)}
  .hero-stats{gap:32px}
  .nl{display:none}
  .fg{grid-template-columns:1fr 1fr 1fr}
  .plat-compare{grid-template-columns:1fr;gap:24px}
  .plat-vs{flex-direction:row;padding-top:0;justify-content:center}
  .vs-line{width:60px;height:1px;background:rgba(255,255,255,.15)!important}
  .uni-row{grid-template-columns:repeat(2,1fr)}
}

/* ═══════════════════════════════════════════════════════
   TEAMS SECTION
════════════════════════════════════════════════════════ */
.teams-section { padding: 72px 0; background: #fff; }
.teams-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 32px;
}
.team-card {
  border-radius: 20px; padding: 22px 20px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  transition: all .28s cubic-bezier(.22,1,.36,1);
  position: relative; overflow: hidden;
}
.team-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--tc); border-radius: 20px 20px 0 0;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.08);
  border-color: var(--tc);
}
.team-icon-wrap {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--tb); display: flex; align-items: center;
  justify-content: center; font-size: 20px; margin-bottom: 12px;
  transition: transform .25s cubic-bezier(.22,1,.36,1);
}
.team-card:hover .team-icon-wrap { transform: scale(1.1) rotate(-4deg); }
.team-name {
  font-size: 10px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--tc); margin-bottom: 4px;
}
.team-title {
  font-size: 16px; font-weight: 800; color: #0f172a;
  line-height: 1.2; letter-spacing: -.3px; margin-bottom: 8px;
}
.team-sub {
  font-size: 12.5px; color: #64748b; line-height: 1.55; margin-bottom: 14px;
}
.team-wins { display: flex; flex-direction: column; gap: 6px; }
.team-win {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 12px; color: #374151; line-height: 1.45;
}
.team-win::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--tc); flex-shrink: 0; margin-top: 5px;
}
.team-kpi-row {
  display: flex; gap: 12px; margin-top: 14px;
  padding-top: 14px; border-top: 1px solid #f1f5f9;
}
.team-kpi { text-align: center; }
.team-kpi-n { font-size: 22px; font-weight: 800; color: var(--tc); line-height: 1; }
.team-kpi-l { font-size: 10px; color: #94a3b8; margin-top: 3px; font-weight: 500; }


                @keyframes sigRun { to { stroke-dashoffset: -80; } }
                @keyframes sigStop { 0%,100%{opacity:0} 40%,60%{opacity:1} }
                .sig { animation: sigRun 2s linear infinite; }
              

/* === about === */


/* ═══════════════════════════════════════════════════════
   RESET
════════════════════════════════════════════════════════ */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;font-size:16px}
body{
  font-family:'Plus Jakarta Sans',system-ui,sans-serif;
  background:#ffffff;
  color:#0f172a;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
button{font-family:inherit;cursor:pointer;border:none;background:none}



/* ═══════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════ */
nav{
  position:fixed;top:0;left:0;right:0;z-index:900;
  height:66px;
  background:rgba(255,255,255,0.93);
  backdrop-filter:blur(22px);-webkit-backdrop-filter:blur(22px);
  border-bottom:1px solid rgba(0,0,0,0.055);
  display:flex;align-items:center;
  transition:box-shadow .3s;
}
nav.scrolled{box-shadow:0 2px 28px rgba(0,0,0,0.07)}
.nw{max-width:1560px;margin:0 auto;padding:0 48px;display:flex;align-items:center;width:100%}
.logo{display:flex;align-items:center;gap:10px;margin-right:auto}
.logo svg{width:46px;height:36px;flex-shrink:0}
.logo-t{font-size:17px;font-weight:800;letter-spacing:1px;color:#0f172a;text-transform:uppercase}
.nl{display:flex;list-style:none;gap:2px;margin-right:24px}
.nl a{
  font-size:17.5px;font-weight:500;color:#64748b;
  padding:7px 13px;border-radius:8px;
  transition:color .14s,background .14s;
  display:block;
}
.nl a:hover{color:#0f172a;background:#f8fafc}
.nav-btn{
  background:#f97316;color:#fff;
  font-size:13.5px;font-weight:600;
  padding:10px 22px;border-radius:10px;
  box-shadow:0 2px 14px rgba(249,115,22,0.38);
  transition:all .2s;
  display:inline-flex;align-items:center;gap:6px;
}
.nav-btn:hover{background:#ea580c;transform:translateY(-1px);box-shadow:0 4px 20px rgba(249,115,22,0.48)}

/* ═══════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════ */
.hero{
  min-height:calc(100vh - 44px);padding-top:76px;
  display:flex;align-items:center;justify-content:center;
  background:#fff;position:relative;overflow:hidden;
}

/* Animated dot grid */
.hero-dots{
  position:absolute;inset:0;pointer-events:none;
  background-image:radial-gradient(circle,#e2e8f0 1px,transparent 1px);
  background-size:30px 30px;
  opacity:0.45;
  animation:dotsBreath 8s ease-in-out infinite;
}
@keyframes dotsBreath{0%,100%{opacity:.45;background-size:30px 30px}50%{opacity:.35;background-size:32px 32px}}

/* Orange aurora glow */
.hero-aura{
  position:absolute;pointer-events:none;
  width:900px;height:700px;
  left:50%;top:50%;
  transform:translate(-50%,-52%);
  background:radial-gradient(ellipse at center,rgba(249,115,22,.07) 0%,rgba(251,146,60,.03) 35%,transparent 65%);
  animation:auraFloat 7s ease-in-out infinite;
}
@keyframes auraFloat{0%,100%{transform:translate(-50%,-52%) scale(1)}50%{transform:translate(-50%,-50%) scale(1.04)}}

/* Floating orbs */
.orb{
  position:absolute;border-radius:50%;
  pointer-events:none;filter:blur(60px);opacity:.25;
  animation:orbDrift var(--d,12s) ease-in-out infinite;
}
.orb1{width:300px;height:300px;background:#f97316;top:10%;left:5%;--d:11s}
.orb2{width:200px;height:200px;background:#fb923c;bottom:20%;right:8%;--d:14s;animation-delay:-4s}
.orb3{width:150px;height:150px;background:#fbbf24;top:60%;left:60%;--d:9s;animation-delay:-7s;opacity:.15}
@keyframes orbDrift{
  0%,100%{transform:translateY(0) translateX(0)}
  33%{transform:translateY(-30px) translateX(15px)}
  66%{transform:translateY(20px) translateX(-10px)}
}

.hero-inner{
  position:relative;z-index:2;
  display:flex;flex-direction:column;
  align-items:center;text-align:center;
  padding:88px 32px 110px;
  max-width:1000px;
}

/* Badge */
.hero-badge{
  display:inline-flex;align-items:center;gap:9px;
  background:#fff7ed;border:1px solid #fed7aa;
  border-radius:100px;padding:7px 18px;
  font-size:12.5px;font-weight:600;color:#f97316;
  margin-bottom:30px;
  opacity:0;animation:slideDown .7s cubic-bezier(.22,1,.36,1) .1s forwards;
}
.badge-pulse{
  width:8px;height:8px;border-radius:50%;
  background:#f97316;flex-shrink:0;
  animation:pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot{
  0%,100%{transform:scale(1);opacity:1;box-shadow:0 0 0 0 rgba(249,115,22,.4)}
  50%{transform:scale(.85);opacity:.6;box-shadow:0 0 0 6px rgba(249,115,22,0)}
}
@keyframes slideDown{from{opacity:0;transform:translateY(-12px)}to{opacity:1;transform:translateY(0)}}

/* Headline */
.hero-h1{
  font-size:clamp(48px,7vw,82px);
  font-weight:800;line-height:1.04;
  letter-spacing:-3px;color:#0f172a;
  margin-bottom:24px;
  opacity:0;animation:slideUp .8s cubic-bezier(.22,1,.36,1) .22s forwards;
}
.hero-h1 .or{
  color:#f97316;position:relative;display:inline-block;
}
.hero-h1 .or::after{
  content:'';
  position:absolute;left:0;right:100%;bottom:-4px;
  height:3px;border-radius:2px;background:#f97316;
  animation:lineGrow .9s cubic-bezier(.22,1,.36,1) 1.2s forwards;
}
@keyframes lineGrow{to{right:0}}
@keyframes slideUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}

.hero-sub{
  font-size:17.5px;color:#64748b;line-height:1.72;
  max-width:640px;margin:0 auto 40px;
  opacity:0;animation:slideUp .8s cubic-bezier(.22,1,.36,1) .36s forwards;
}

/* Buttons */
.hero-btns{
  display:flex;gap:13px;justify-content:center;
  margin-bottom:68px;
  opacity:0;animation:slideUp .8s cubic-bezier(.22,1,.36,1) .48s forwards;
}
.btn-pr{
  background:#f97316;color:#fff;
  font-size:15px;font-weight:700;
  padding:15px 32px;border-radius:13px;
  box-shadow:0 4px 20px rgba(249,115,22,.4);
  display:inline-flex;align-items:center;gap:7px;
  transition:all .2s cubic-bezier(.22,1,.36,1);
  position:relative;overflow:hidden;
}
.btn-pr::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,.15),transparent);
  opacity:0;transition:opacity .2s;
}
.btn-pr:hover{background:#ea580c;transform:translateY(-2px);box-shadow:0 8px 30px rgba(249,115,22,.5)}
.btn-pr:hover::before{opacity:1}
.btn-pr:active{transform:translateY(0);box-shadow:0 4px 16px rgba(249,115,22,.35)}
.btn-sc{
  background:#fff;color:#0f172a;
  font-size:15px;font-weight:600;
  padding:15px 32px;border-radius:13px;
  border:1.5px solid #e2e8f0;
  box-shadow:0 1px 4px rgba(0,0,0,.05);
  display:inline-flex;align-items:center;gap:7px;
  transition:all .2s;
}
.btn-sc:hover{border-color:#94a3b8;background:#f8fafc;transform:translateY(-1px)}

/* Stats */
.hero-stats{
  display:flex;gap:60px;
  padding-top:30px;border-top:1px solid #f1f5f9;
  opacity:0;animation:slideUp .8s cubic-bezier(.22,1,.36,1) .62s forwards;
}
.stat-n{font-size:44px;font-weight:800;line-height:1;color:#0f172a;font-variant-numeric:tabular-nums}
.stat-n .hl{color:#f97316}
.stat-l{font-size:13px;color:#94a3b8;margin-top:6px;font-weight:500;letter-spacing:.2px}

/* ═══════════════════════════════════════════════════════
   LIVE TICKER STRIP
════════════════════════════════════════════════════════ */
.ticker-wrap{
  background:#fafafa;
  border-top:1px solid #f1f5f9;border-bottom:1px solid #f1f5f9;
  overflow:hidden;position:relative;height:44px;display:flex;align-items:center;
}
.ticker-wrap::before,.ticker-wrap::after{
  content:'';position:absolute;top:0;bottom:0;width:100px;z-index:2;pointer-events:none;
}
.ticker-wrap::before{left:0;background:linear-gradient(90deg,#fafafa 0%,transparent 100%)}
.ticker-wrap::after{right:0;background:linear-gradient(-90deg,#fafafa 0%,transparent 100%)}
.ticker-track{
  display:flex;animation:scrollTicker 30s linear infinite;
  will-change:transform;
}
@keyframes scrollTicker{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.tick{
  display:inline-flex;align-items:center;gap:8px;
  padding:0 28px;border-right:1px solid #f1f5f9;white-space:nowrap;
}
.tick-dot{width:6px;height:6px;border-radius:50%;flex-shrink:0}
.tick-lbl{font-size:12.5px;font-weight:500;color:#475569}
.tick-val{font-size:12.5px;font-weight:700}

/* ═══════════════════════════════════════════════════════
   LOGO STRIP
════════════════════════════════════════════════════════ */
.logos-section{background:#f8fafc;border-bottom:1px solid #f1f5f9;padding:28px 0}
.logos-inner{max-width:1560px;margin:0 auto;padding:0 48px}
.logos-lbl{font-size:11px;font-weight:700;color:#94a3b8;text-transform:uppercase;letter-spacing:1.5px;text-align:center;margin-bottom:16px}
.logos-row{display:flex;gap:8px;flex-wrap:wrap;justify-content:center}
.lchip{
  background:#fff;border:1px solid #e2e8f0;border-radius:8px;
  padding:8px 17px;font-size:11.5px;font-weight:700;
  color:#94a3b8;letter-spacing:.4px;text-transform:uppercase;
  transition:all .22s cubic-bezier(.22,1,.36,1);
}
.lchip:hover{border-color:#f97316;color:#f97316;transform:translateY(-2px);box-shadow:0 4px 14px rgba(249,115,22,.15)}

/* ═══════════════════════════════════════════════════════
   UTILITY
════════════════════════════════════════════════════════ */
.section{padding:100px 0}
.section-alt{padding:100px 0;background:#f8fafc}
.wrap{max-width:1560px;margin:0 auto;padding:0 48px}
.sec-head{text-align:center;margin-bottom:64px}
.eyebrow{
  display:inline-flex;align-items:center;gap:7px;
  background:#fff7ed;border:1px solid #fed7aa;
  border-radius:100px;padding:5px 14px;
  font-size:11.5px;font-weight:600;color:#f97316;
  margin-bottom:14px;letter-spacing:.2px;
}
.eyebrow::before{content:'';width:5px;height:5px;border-radius:50%;background:#f97316;flex-shrink:0}
h2.big{
  font-size:clamp(28px,3.8vw,46px);font-weight:800;
  letter-spacing:-1.2px;line-height:1.1;color:#0f172a;
  margin-bottom:14px;
}
h2.big .or{color:#f97316}
.sub{font-size:17px;color:#64748b;line-height:1.7;max-width:700px;margin:0 auto}

/* Scroll reveal */
.rev{
  opacity:0;transform:translateY(30px);
  transition:opacity .7s cubic-bezier(.22,1,.36,1),
             transform .7s cubic-bezier(.22,1,.36,1);
}
.rev.on{opacity:1;transform:translateY(0)}
.rev.d1{transition-delay:.08s}.rev.d2{transition-delay:.16s}.rev.d3{transition-delay:.24s}

/* ═══════════════════════════════════════════════════════
   PROBLEM SECTION
════════════════════════════════════════════════════════ */
.prob-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.prob-card{
  background:#fff;border:1px solid #e2e8f0;border-radius:20px;
  padding:34px 28px;text-align:center;
  transition:all .3s cubic-bezier(.22,1,.36,1);
  position:relative;overflow:hidden;
}
.prob-card::before{
  content:'';position:absolute;inset:0;opacity:0;
  transition:opacity .3s;
  background:linear-gradient(135deg,rgba(249,115,22,.02) 0%,rgba(249,115,22,.05) 100%);
}
.prob-card:hover{box-shadow:0 16px 48px rgba(0,0,0,.09);transform:translateY(-5px)}
.prob-card:hover::before{opacity:1}
.prob-num{font-size:54px;font-weight:800;line-height:1;margin-bottom:10px;font-variant-numeric:tabular-nums}
.prob-title{font-size:15px;font-weight:700;color:#0f172a;margin-bottom:8px}
.prob-desc{font-size:13px;color:#64748b;line-height:1.65}

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════════════ */
.how-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.how-steps{display:flex;flex-direction:column;gap:6px}
.how-step{
  display:flex;gap:16px;align-items:flex-start;
  padding:18px;border-radius:14px;border:1px solid transparent;
  transition:all .22s cubic-bezier(.22,1,.36,1);
}
.how-step:hover{background:#fff7ed;border-color:#fed7aa;transform:translateX(4px)}
.step-badge{
  width:34px;height:34px;border-radius:9px;background:#f97316;
  display:flex;align-items:center;justify-content:center;
  font-size:12.5px;font-weight:800;color:#fff;flex-shrink:0;
}
.step-t{font-size:14.5px;font-weight:700;color:#0f172a;margin-bottom:4px}
.step-d{font-size:13.5px;color:#64748b;line-height:1.6}

/* Flow visualizer */
.flow-vis{
  background:#f8fafc;border:1px solid #e2e8f0;
  border-radius:22px;padding:26px;
  box-shadow:0 4px 24px rgba(0,0,0,.04);
}
.flow-hdr{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}
.flow-ttl{font-size:11px;font-weight:700;color:#94a3b8;text-transform:uppercase;letter-spacing:1.5px}
.live-chip{display:flex;align-items:center;gap:5px;font-size:11px;font-weight:700;color:#dc2626}
.live-dot{width:6px;height:6px;border-radius:50%;background:#dc2626;animation:blink 1.4s ease-in-out infinite}
@keyframes blink{0%,100%{opacity:1}50%{opacity:.2}}
.flow-/* removed bad body rule */
.f-row{
  background:#fff;border:1px solid #e2e8f0;border-radius:11px;
  padding:12px 14px;display:flex;gap:9px;align-items:center;
  font-size:13px;color:#0f172a;
  animation:fadeSlide .4s cubic-bezier(.22,1,.36,1) both;
}
@keyframes fadeSlide{from{opacity:0;transform:translateX(12px)}to{opacity:1;transform:translateX(0)}}
.f-brs{
  background:#fff7ed;border:1px solid #fed7aa;border-radius:11px;
  padding:12px 14px;display:flex;gap:9px;align-items:center;
  font-size:13px;animation:fadeSlide .4s cubic-bezier(.22,1,.36,1) .08s both;
}
.brs-dot{width:7px;height:7px;border-radius:50%;background:#f97316;flex-shrink:0;animation:blink 1.4s infinite}
.f-eng{
  background:#fff;border:1.5px solid #f97316;border-radius:11px;
  padding:12px 14px;font-size:13px;color:#0f172a;
  animation:fadeSlide .4s cubic-bezier(.22,1,.36,1) .16s both;
}
.f-win{
  background:#dcfce7;border:1px solid rgba(22,163,74,.22);border-radius:11px;
  padding:12px 14px;display:flex;justify-content:space-between;align-items:center;
  animation:fadeSlide .4s cubic-bezier(.22,1,.36,1) .24s both;
}
.f-sep{text-align:center;font-size:11px;font-weight:700;color:#e2e8f0;margin:2px 0}
.flow-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-top:14px}
.fstat{background:#fff;border:1px solid #e2e8f0;border-radius:10px;padding:12px;text-align:center}
.fstat-n{font-size:17px;font-weight:800;color:#0f172a}
.fstat-l{font-size:10px;color:#94a3b8;margin-top:2px}

/* ═══════════════════════════════════════════════════════
   FEATURES GRID
════════════════════════════════════════════════════════ */
.feat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.feat-card{
  background:#fff;border:1px solid #e2e8f0;border-radius:18px;padding:26px;
  transition:all .28s cubic-bezier(.22,1,.36,1);
  position:relative;overflow:hidden;
}
.feat-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:2px;
  background:transparent;transition:background .28s;
}
.feat-card:hover{
  border-color:#f97316;transform:translateY(-4px);
  box-shadow:0 0 0 3px rgba(249,115,22,.07), 0 14px 44px rgba(0,0,0,.09);
}
.feat-card:hover::before{background:linear-gradient(90deg,#f97316 0%,#fb923c 50%,#fbbf24 100%)}
.feat-icon{
  width:46px;height:46px;border-radius:12px;background:#fff7ed;
  display:flex;align-items:center;justify-content:center;font-size:21px;
  margin-bottom:14px;transition:transform .25s cubic-bezier(.22,1,.36,1);
}
.feat-card:hover .feat-icon{transform:scale(1.12) rotate(-3deg)}
.feat-title{font-size:15px;font-weight:700;color:#0f172a;margin-bottom:7px}
.feat-desc{font-size:13px;color:#64748b;line-height:1.65}
.feat-kpi{margin-top:13px;padding-top:11px;border-top:1px solid #f8fafc;font-size:11.5px;font-weight:700;color:#f97316}

/* ═══════════════════════════════════════════════════════
   INTENT JOURNEY
════════════════════════════════════════════════════════ */
.intent-row{display:grid;grid-template-columns:repeat(9,1fr);gap:8px}
.ic{
  border:1.5px solid #e2e8f0;border-radius:13px;
  padding:14px 5px;text-align:center;background:#fff;
  transition:all .25s cubic-bezier(.22,1,.36,1);
  position:relative;overflow:hidden;
}
.ic:hover{
  transform:translateY(-4px);border-color:#f97316;background:#fff7ed;
  box-shadow:0 6px 20px rgba(249,115,22,.15);
}
.ic-n{font-size:10px;font-weight:700;color:#f97316;margin-bottom:5px;letter-spacing:.5px}
.ic-i{font-size:19px;display:block;margin-bottom:5px}
.ic-l{font-size:10px;font-weight:700;color:#0f172a;line-height:1.3}
.ic-k{font-size:9px;color:#94a3b8;margin-top:4px}

/* Active intent chips */
.ic-act{border-color:#f97316;background:#fff7ed}
.ic-red{border-color:#fecaca;background:#fef2f2}
.ic-grn1{border-color:rgba(22,163,74,.3);background:#dcfce7}
.ic-grn2{border-color:rgba(22,163,74,.2);background:#f0fdf4}

/* ═══════════════════════════════════════════════════════
   METRICS BAND
════════════════════════════════════════════════════════ */
.metrics-band{
  background:#0f172a;padding:88px 0;
  position:relative;overflow:hidden;
}
.metrics-band::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse at 50% 50%,rgba(249,115,22,.08) 0%,transparent 60%);
}
.metrics-grid{
  display:grid;grid-template-columns:repeat(5,1fr);gap:24px;
  text-align:center;position:relative;z-index:1;
}
.met-n{
  font-size:48px;font-weight:800;color:#f97316;
  display:block;line-height:1;font-variant-numeric:tabular-nums;
  transition:all .3s;
}
.met-l{font-size:13px;color:rgba(255,255,255,.38);display:block;margin-top:9px;letter-spacing:.2px}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════════ */
.tgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.tcard{
  background:#fff;border:1px solid #e2e8f0;border-radius:20px;padding:28px;
  transition:all .28s cubic-bezier(.22,1,.36,1);
}
.tcard:hover{box-shadow:0 14px 44px rgba(0,0,0,.09);transform:translateY(-4px)}
.stars{color:#f97316;font-size:13px;letter-spacing:2px;margin-bottom:14px}
.tq{font-size:14.5px;color:#374151;line-height:1.76;font-style:italic;margin-bottom:18px}
.tau{display:flex;align-items:center;gap:11px}
.tav{width:40px;height:40px;border-radius:50%;background:#fff7ed;display:flex;align-items:center;justify-content:center;font-size:17px;flex-shrink:0}
.tn{font-size:14px;font-weight:700;color:#0f172a}
.tr{font-size:12px;color:#94a3b8;margin-top:1px}

/* ═══════════════════════════════════════════════════════
   ANIMATED BRS COUNTER SECTION
════════════════════════════════════════════════════════ */
.brs-section{
  background:#0f172a;padding:96px 0;
  position:relative;overflow:hidden;
}
.brs-section::before{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(circle at 20% 50%,rgba(249,115,22,.07) 0%,transparent 45%),
    radial-gradient(circle at 80% 50%,rgba(251,146,60,.05) 0%,transparent 45%);
}
.brs-inner{
  max-width:1560px;margin:0 auto;padding:0 32px;
  display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;
  position:relative;z-index:1;
}
.brs-score-wrap{
  display:flex;flex-direction:column;align-items:center;gap:24px;
}
.brs-ring{
  position:relative;width:220px;height:220px;
}
.brs-ring svg{width:220px;height:220px;transform:rotate(-90deg)}
.ring-bg{fill:none;stroke:rgba(255,255,255,.06);stroke-width:12}
.ring-prog{
  fill:none;stroke:url(#ringGrad);stroke-width:12;
  stroke-linecap:round;
  stroke-dasharray:589;stroke-dashoffset:589;
  transition:stroke-dashoffset 2s cubic-bezier(.22,1,.36,1);
}
.ring-prog.animate{stroke-dashoffset:156}/* 589 * (1 - 0.74) = ~153 */
.brs-center{
  position:absolute;inset:0;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
}
.brs-num{
  font-size:54px;font-weight:800;color:#fff;line-height:1;
  font-variant-numeric:tabular-nums;
}
.brs-sub{font-size:12px;font-weight:600;color:rgba(255,255,255,.45);letter-spacing:1px;text-transform:uppercase;margin-top:2px}
.brs-label{
  font-size:14px;font-weight:700;color:#f97316;
  background:rgba(249,115,22,.12);border:1px solid rgba(249,115,22,.2);
  border-radius:100px;padding:6px 16px;
}
.brs-stages{
  display:flex;gap:8px;
}
.brs-st{
  flex:1;padding:8px 4px;border-radius:8px;text-align:center;font-size:11px;font-weight:700;
  transition:all .3s;
}
.brs-st.active-stage{transform:scale(1.05)}

/* ═══════════════════════════════════════════════════════
   CTA BAND
════════════════════════════════════════════════════════ */
.cta-band{
  background:#f97316;padding:92px 0;
  position:relative;overflow:hidden;
}
.cta-band::before{
  content:'';position:absolute;right:-150px;top:-150px;
  width:600px;height:600px;border-radius:50%;
  background:rgba(255,255,255,.07);
  animation:ctaOrb 10s ease-in-out infinite;
}
.cta-band::after{
  content:'';position:absolute;left:-80px;bottom:-100px;
  width:400px;height:400px;border-radius:50%;
  background:rgba(255,255,255,.05);
  animation:ctaOrb 14s ease-in-out infinite reverse;
}
@keyframes ctaOrb{0%,100%{transform:scale(1) translate(0,0)}50%{transform:scale(1.06) translate(10px,-10px)}}
.cta-grid{
  position:relative;z-index:2;
  display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;
}
.cta-h2{
  font-size:clamp(28px,3.2vw,42px);font-weight:800;
  line-height:1.1;letter-spacing:-.8px;color:#fff;margin-bottom:14px;
}
.cta-p{font-size:16.5px;color:rgba(255,255,255,.82);line-height:1.7;margin-bottom:30px}
.btn-wh{
  background:#fff;color:#0f172a;font-size:15px;font-weight:700;
  padding:15px 30px;border-radius:13px;
  box-shadow:0 2px 12px rgba(0,0,0,.1);
  display:inline-flex;align-items:center;gap:6px;
  transition:all .2s;
}
.btn-wh:hover{transform:translateY(-2px);box-shadow:0 6px 22px rgba(0,0,0,.14)}
.btn-gh{
  background:rgba(255,255,255,.14);color:#fff;font-size:15px;font-weight:600;
  padding:15px 30px;border-radius:13px;border:1.5px solid rgba(255,255,255,.3);
  display:inline-flex;align-items:center;gap:6px;transition:all .2s;
}
.btn-gh:hover{background:rgba(255,255,255,.22)}
.trust-row{display:flex;gap:16px;flex-wrap:wrap;margin-top:20px}
.trust-item{display:flex;align-items:center;gap:6px;font-size:13px;color:rgba(255,255,255,.8)}
.trust-item::before{content:'✓';font-weight:700;color:#fff}
.cta-box{
  background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.2);
  border-radius:22px;padding:28px;
}
.d-item{display:flex;gap:12px;margin-bottom:14px}
.d-item:last-child{margin-bottom:0}
.d-icon{font-size:18px;flex-shrink:0;margin-top:1px}
.d-t{font-size:14px;font-weight:600;color:#fff}
.d-s{font-size:12px;color:rgba(255,255,255,.6);margin-top:2px}

/* ═══════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
footer{background:#0f172a;padding:64px 0 32px}
.fg{display:grid;grid-template-columns:2fr 1fr 1fr 1fr 1fr;gap:40px;margin-bottom:48px}
.f-desc{font-size:13.5px;color:rgba(255,255,255,.32);line-height:1.7;margin-top:14px;max-width:230px}
.fc h5{font-size:11px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:rgba(255,255,255,.25);margin-bottom:12px}
.fc a{display:block;font-size:13.5px;color:rgba(255,255,255,.42);margin-bottom:8px;transition:color .14s}
.fc a:hover{color:#f97316}
.f-btm{border-top:1px solid rgba(255,255,255,.05);padding-top:22px;display:flex;justify-content:space-between;align-items:center}
.f-btm p{font-size:13px;color:rgba(255,255,255,.22)}

/* ═══════════════════════════════════════════════════════
   PLATFORM ARCHITECTURE SECTION
════════════════════════════════════════════════════════ */
.plat-sec {
  background: linear-gradient(180deg, #f8fafc 0%, #fff7ed 50%, #f8fafc 100%);
  padding: 64px 0 60px;
  position: relative; overflow: hidden;
}
.plat-sec::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(249,115,22,.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(249,115,22,.08) 0%, transparent 50%);
}
.plat-sec .sec-head { position: relative; z-index: 1; margin-bottom: 8px; }

/* Panel titles */
.panel-titles {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.panel-title-bad {
  text-align: center; padding: 0 12px;
}
.panel-title-good {
  text-align: center; padding: 0 12px;
}
.pt-label {
  font-size: 16px; font-weight: 800; letter-spacing: -.3px; line-height: 1.2;
  margin-bottom: 6px;
}
.pt-label-bad  { color: #dc2626; }
.pt-label-good { color: #f97316; }
.pt-sub {
  font-size: 12px; font-weight: 500; line-height: 1.5;
  max-width: 280px; margin: 0 auto;
}
.pt-sub-bad  { color: #94a3b8; }
.pt-sub-good { color: #78716c; }

/* Two-panel layout */
.plat-panels {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  position: relative; z-index: 1;
  align-items: stretch;
}

/* VS column */
.plat-vs-col {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 0 8px;
}
.pvs-line {
  flex: 1; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(15,23,42,.15), transparent);
  min-height: 40px;
}
.pvs-badge {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: #fff;
  border: 2.5px solid #0f172a;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; color: #0f172a;
  letter-spacing: .5px;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}

/* Panel wrappers — equal height via grid stretch */
.plat-panel {
  border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
}
.plat-panel-bad  {
  border: 1.5px solid rgba(220,38,38,.25);
  background: #fff;
  box-shadow: 0 4px 40px rgba(220,38,38,.06), 0 1px 0 rgba(220,38,38,.1);
}
.plat-panel-good {
  border: 1.5px solid rgba(249,115,22,.35);
  background: #fff;
  box-shadow: 0 4px 40px rgba(249,115,22,.1), 0 1px 0 rgba(249,115,22,.15);
}

/* Panel header strip */
.pp-hdr {
  padding: 13px 20px;
  display: flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: .3px;
  text-transform: uppercase;
  border-bottom: 1px solid;
  flex-shrink: 0;
}
.pp-hdr-bad  { background: rgba(220,38,38,.06); border-color: rgba(220,38,38,.15); color: #dc2626; }
.pp-hdr-good { background: rgba(249,115,22,.07); border-color: rgba(249,115,22,.2); color: #ea580c; }
.pp-hdr-dot  { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.pp-hdr-bad  .pp-hdr-dot { background: #ef4444; }
.pp-hdr-good .pp-hdr-dot { background: #f97316; animation: pulseDot 1.8s infinite; }

/* SVG diagram */
.diag-wrap { flex: 1; }
.diag-wrap svg { display: block; width: 100%; height: 100%; }

/* Pills row */
.pp-pills {
  padding: 11px 16px; display: flex; gap: 6px; flex-wrap: wrap;
  border-top: 1px solid rgba(249,115,22,.12);
  background: rgba(249,115,22,.03);
  flex-shrink: 0;
}
.pp-pill {
  font-size: 10.5px; font-weight: 600; color: #ea580c;
  background: rgba(249,115,22,.1); border: 1px solid rgba(249,115,22,.2);
  border-radius: 100px; padding: 4px 11px;
}

/* Saving banner */
.saving-banner {
  margin-top: 24px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  border-radius: 18px; padding: 32px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  position: relative; z-index: 1; overflow: hidden;
}
.saving-banner::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(249,115,22,.08);
  pointer-events: none;
}
.sb-left { flex: 1; }
.sb-eyebrow {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px;
}
.sb-headline {
  font-size: clamp(22px, 2.8vw, 32px); font-weight: 800;
  color: #fff; line-height: 1.1; letter-spacing: -.5px;
}
.sb-headline span { color: #f97316; }
.sb-sub {
  font-size: 14px; color: rgba(255,255,255,.5); margin-top: 8px; line-height: 1.6;
}
.sb-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px; flex-shrink: 0;
}
.sb-amount {
  font-size: clamp(36px, 4vw, 52px); font-weight: 900;
  color: #f97316; line-height: 1;
  text-shadow: 0 0 40px rgba(249,115,22,.4);
}
.sb-amount-sub { font-size: 13px; color: rgba(255,255,255,.45); text-align: right; }
.sb-cta {
  background: #f97316; color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  padding: 12px 24px; border-radius: 11px; border: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all .2s; cursor: pointer;
  box-shadow: 0 4px 18px rgba(249,115,22,.4);
}
.sb-cta:hover { background: #ea580c; transform: translateY(-2px); }

/* animations */
@keyframes badPulse { 0%,100%{opacity:.5} 50%{opacity:.12} }
@keyframes zigMove  { 0%{stroke-dashoffset:800} 100%{stroke-dashoffset:0} }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */
@media(max-width:900px){
  .how-grid,.cta-grid,.brs-inner,.teams-grid{grid-template-columns:1fr}
  .prob-grid,.feat-grid,.tgrid{grid-template-columns:1fr}
  .intent-row{grid-template-columns:repeat(3,1fr)}
  .metrics-grid{grid-template-columns:repeat(2,1fr)}
  .hero-stats{gap:32px}
  .nl{display:none}
  .fg{grid-template-columns:1fr 1fr 1fr}
  .plat-compare{grid-template-columns:1fr;gap:24px}
  .plat-vs{flex-direction:row;padding-top:0;justify-content:center}
  .vs-line{width:60px;height:1px;background:rgba(255,255,255,.15)!important}
  .uni-row{grid-template-columns:repeat(2,1fr)}
}

/* ═══════════════════════════════════════════════════════
   TEAMS SECTION
════════════════════════════════════════════════════════ */
.teams-section { padding: 100px 0; background: #fff; }
.teams-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px;
}
.team-card {
  border-radius: 20px; padding: 32px 28px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  transition: all .28s cubic-bezier(.22,1,.36,1);
  position: relative; overflow: hidden;
}
.team-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--tc); border-radius: 20px 20px 0 0;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.09);
  border-color: var(--tc);
}
.team-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--tb); display: flex; align-items: center;
  justify-content: center; font-size: 24px; margin-bottom: 18px;
  transition: transform .25s cubic-bezier(.22,1,.36,1);
}
.team-card:hover .team-icon-wrap { transform: scale(1.1) rotate(-4deg); }
.team-name {
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--tc); margin-bottom: 6px;
}
.team-title {
  font-size: 19px; font-weight: 800; color: #0f172a;
  line-height: 1.2; letter-spacing: -.4px; margin-bottom: 12px;
}
.team-sub {
  font-size: 13.5px; color: #64748b; line-height: 1.65; margin-bottom: 20px;
}
.team-wins { display: flex; flex-direction: column; gap: 8px; }
.team-win {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: #374151; line-height: 1.5;
}
.team-win::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--tc); flex-shrink: 0; margin-top: 6px;
}
.team-kpi-row {
  display: flex; gap: 16px; margin-top: 20px;
  padding-top: 18px; border-top: 1px solid #f1f5f9;
}
.team-kpi { text-align: center; }
.team-kpi-n { font-size: 22px; font-weight: 800; color: var(--tc); line-height: 1; }
.team-kpi-l { font-size: 10px; color: #94a3b8; margin-top: 3px; font-weight: 500; }

.page-hero{background:#0f172a;padding:140px 0 80px;position:relative;overflow:hidden;}
.page-hero::before{content:"";position:absolute;inset:0;background:radial-gradient(ellipse 80% 60% at 50% 0%, rgba(249,115,22,.13) 0%, transparent 70%);pointer-events:none;}
.page-hero-inner{max-width:1560px;margin:0 auto;padding:0 32px;position:relative;z-index:1;text-align:center;}
.page-eyebrow{display:inline-flex;align-items:center;gap:7px;background:rgba(249,115,22,.12);border:1px solid rgba(249,115,22,.25);border-radius:100px;padding:6px 16px;font-size:12px;font-weight:700;color:#f97316;text-transform:uppercase;letter-spacing:1.2px;margin-bottom:22px;}
.page-h1{font-size:clamp(36px,5vw,64px);font-weight:800;line-height:1.05;letter-spacing:-2px;color:#fff;margin-bottom:20px;}
.page-h1 .or{color:#f97316}
.page-sub{font-size:18px;color:rgba(255,255,255,.65);line-height:1.7;max-width:620px;margin:0 auto;}

.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:72px;align-items:center}
.team-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.tm{background:#fff;border:1px solid #e2e8f0;border-radius:18px;padding:22px;text-align:center;transition:all .25s}
.tm:hover{transform:translateY(-3px);box-shadow:0 12px 36px rgba(0,0,0,.08);border-color:#f97316}
.tm-avatar{width:64px;height:64px;border-radius:50%;background:var(--av,#f8fafc);display:flex;align-items:center;justify-content:center;font-size:30px;margin:0 auto 14px}
.tm-name{font-size:15px;font-weight:800;color:#0f172a;margin-bottom:3px}
.tm-role{font-size:12.5px;color:#64748b;margin-bottom:8px}
.tm-bg{font-size:11.5px;font-weight:600;color:#f97316;background:#fff7ed;border-radius:100px;padding:3px 10px;display:inline-block}
.values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.value-card{background:#fff;border:1px solid #e2e8f0;border-radius:16px;padding:24px;transition:all .22s}
.value-card:hover{transform:translateY(-2px);border-color:#f97316}
.value-icon{font-size:26px;margin-bottom:10px}
.value-title{font-size:15px;font-weight:800;color:#0f172a;margin-bottom:6px}
.value-desc{font-size:13.5px;color:#64748b;line-height:1.65}
.timeline{display:flex;flex-direction:column;gap:0;position:relative;padding-left:40px}
.timeline::before{content:"";position:absolute;left:14px;top:0;bottom:0;width:2px;background:#e2e8f0}
.tl-item{position:relative;padding-bottom:28px}
.tl-item:last-child{padding-bottom:0}
.tl-dot{position:absolute;left:-34px;top:4px;width:20px;height:20px;border-radius:50%;background:#fff;border:2.5px solid #f97316}
.tl-year{font-size:11px;font-weight:700;color:#f97316;margin-bottom:4px;text-transform:uppercase;letter-spacing:.8px}
.tl-event{font-size:15px;font-weight:700;color:#0f172a;margin-bottom:3px}
.tl-detail{font-size:13px;color:#64748b}



/* === contact === */


/* ═══════════════════════════════════════════════════════
   RESET
════════════════════════════════════════════════════════ */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;font-size:16px}
body{
  font-family:'Plus Jakarta Sans',system-ui,sans-serif;
  background:#ffffff;
  color:#0f172a;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
button{font-family:inherit;cursor:pointer;border:none;background:none}



/* ═══════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════ */
nav{
  position:fixed;top:0;left:0;right:0;z-index:900;
  height:66px;
  background:rgba(255,255,255,0.93);
  backdrop-filter:blur(22px);-webkit-backdrop-filter:blur(22px);
  border-bottom:1px solid rgba(0,0,0,0.055);
  display:flex;align-items:center;
  transition:box-shadow .3s;
}
nav.scrolled{box-shadow:0 2px 28px rgba(0,0,0,0.07)}
.nw{max-width:1560px;margin:0 auto;padding:0 48px;display:flex;align-items:center;width:100%}
.logo{display:flex;align-items:center;gap:10px;margin-right:auto}
.logo svg{width:46px;height:36px;flex-shrink:0}
.logo-t{font-size:17px;font-weight:800;letter-spacing:1px;color:#0f172a;text-transform:uppercase}
.nl{display:flex;list-style:none;gap:2px;margin-right:24px}
.nl a{
  font-size:17.5px;font-weight:500;color:#64748b;
  padding:7px 13px;border-radius:8px;
  transition:color .14s,background .14s;
  display:block;
}
.nl a:hover{color:#0f172a;background:#f8fafc}
.nav-btn{
  background:#f97316;color:#fff;
  font-size:13.5px;font-weight:600;
  padding:10px 22px;border-radius:10px;
  box-shadow:0 2px 14px rgba(249,115,22,0.38);
  transition:all .2s;
  display:inline-flex;align-items:center;gap:6px;
}
.nav-btn:hover{background:#ea580c;transform:translateY(-1px);box-shadow:0 4px 20px rgba(249,115,22,0.48)}

/* ═══════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════ */
.hero{
  min-height:calc(100vh - 44px);padding-top:76px;
  display:flex;align-items:center;justify-content:center;
  background:#fff;position:relative;overflow:hidden;
}

/* Animated dot grid */
.hero-dots{
  position:absolute;inset:0;pointer-events:none;
  background-image:radial-gradient(circle,#e2e8f0 1px,transparent 1px);
  background-size:30px 30px;
  opacity:0.45;
  animation:dotsBreath 8s ease-in-out infinite;
}
@keyframes dotsBreath{0%,100%{opacity:.45;background-size:30px 30px}50%{opacity:.35;background-size:32px 32px}}

/* Orange aurora glow */
.hero-aura{
  position:absolute;pointer-events:none;
  width:900px;height:700px;
  left:50%;top:50%;
  transform:translate(-50%,-52%);
  background:radial-gradient(ellipse at center,rgba(249,115,22,.07) 0%,rgba(251,146,60,.03) 35%,transparent 65%);
  animation:auraFloat 7s ease-in-out infinite;
}
@keyframes auraFloat{0%,100%{transform:translate(-50%,-52%) scale(1)}50%{transform:translate(-50%,-50%) scale(1.04)}}

/* Floating orbs */
.orb{
  position:absolute;border-radius:50%;
  pointer-events:none;filter:blur(60px);opacity:.25;
  animation:orbDrift var(--d,12s) ease-in-out infinite;
}
.orb1{width:300px;height:300px;background:#f97316;top:10%;left:5%;--d:11s}
.orb2{width:200px;height:200px;background:#fb923c;bottom:20%;right:8%;--d:14s;animation-delay:-4s}
.orb3{width:150px;height:150px;background:#fbbf24;top:60%;left:60%;--d:9s;animation-delay:-7s;opacity:.15}
@keyframes orbDrift{
  0%,100%{transform:translateY(0) translateX(0)}
  33%{transform:translateY(-30px) translateX(15px)}
  66%{transform:translateY(20px) translateX(-10px)}
}

.hero-inner{
  position:relative;z-index:2;
  display:flex;flex-direction:column;
  align-items:center;text-align:center;
  padding:88px 32px 110px;
  max-width:1000px;
}

/* Badge */
.hero-badge{
  display:inline-flex;align-items:center;gap:9px;
  background:#fff7ed;border:1px solid #fed7aa;
  border-radius:100px;padding:7px 18px;
  font-size:12.5px;font-weight:600;color:#f97316;
  margin-bottom:30px;
  opacity:0;animation:slideDown .7s cubic-bezier(.22,1,.36,1) .1s forwards;
}
.badge-pulse{
  width:8px;height:8px;border-radius:50%;
  background:#f97316;flex-shrink:0;
  animation:pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot{
  0%,100%{transform:scale(1);opacity:1;box-shadow:0 0 0 0 rgba(249,115,22,.4)}
  50%{transform:scale(.85);opacity:.6;box-shadow:0 0 0 6px rgba(249,115,22,0)}
}
@keyframes slideDown{from{opacity:0;transform:translateY(-12px)}to{opacity:1;transform:translateY(0)}}

/* Headline */
.hero-h1{
  font-size:clamp(48px,7vw,82px);
  font-weight:800;line-height:1.04;
  letter-spacing:-3px;color:#0f172a;
  margin-bottom:24px;
  opacity:0;animation:slideUp .8s cubic-bezier(.22,1,.36,1) .22s forwards;
}
.hero-h1 .or{
  color:#f97316;position:relative;display:inline-block;
}
.hero-h1 .or::after{
  content:'';
  position:absolute;left:0;right:100%;bottom:-4px;
  height:3px;border-radius:2px;background:#f97316;
  animation:lineGrow .9s cubic-bezier(.22,1,.36,1) 1.2s forwards;
}
@keyframes lineGrow{to{right:0}}
@keyframes slideUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}

.hero-sub{
  font-size:17.5px;color:#64748b;line-height:1.72;
  max-width:640px;margin:0 auto 40px;
  opacity:0;animation:slideUp .8s cubic-bezier(.22,1,.36,1) .36s forwards;
}

/* Buttons */
.hero-btns{
  display:flex;gap:13px;justify-content:center;
  margin-bottom:68px;
  opacity:0;animation:slideUp .8s cubic-bezier(.22,1,.36,1) .48s forwards;
}
.btn-pr{
  background:#f97316;color:#fff;
  font-size:15px;font-weight:700;
  padding:15px 32px;border-radius:13px;
  box-shadow:0 4px 20px rgba(249,115,22,.4);
  display:inline-flex;align-items:center;gap:7px;
  transition:all .2s cubic-bezier(.22,1,.36,1);
  position:relative;overflow:hidden;
}
.btn-pr::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,.15),transparent);
  opacity:0;transition:opacity .2s;
}
.btn-pr:hover{background:#ea580c;transform:translateY(-2px);box-shadow:0 8px 30px rgba(249,115,22,.5)}
.btn-pr:hover::before{opacity:1}
.btn-pr:active{transform:translateY(0);box-shadow:0 4px 16px rgba(249,115,22,.35)}
.btn-sc{
  background:#fff;color:#0f172a;
  font-size:15px;font-weight:600;
  padding:15px 32px;border-radius:13px;
  border:1.5px solid #e2e8f0;
  box-shadow:0 1px 4px rgba(0,0,0,.05);
  display:inline-flex;align-items:center;gap:7px;
  transition:all .2s;
}
.btn-sc:hover{border-color:#94a3b8;background:#f8fafc;transform:translateY(-1px)}

/* Stats */
.hero-stats{
  display:flex;gap:60px;
  padding-top:30px;border-top:1px solid #f1f5f9;
  opacity:0;animation:slideUp .8s cubic-bezier(.22,1,.36,1) .62s forwards;
}
.stat-n{font-size:44px;font-weight:800;line-height:1;color:#0f172a;font-variant-numeric:tabular-nums}
.stat-n .hl{color:#f97316}
.stat-l{font-size:13px;color:#94a3b8;margin-top:6px;font-weight:500;letter-spacing:.2px}

/* ═══════════════════════════════════════════════════════
   LIVE TICKER STRIP
════════════════════════════════════════════════════════ */
.ticker-wrap{
  background:#fafafa;
  border-top:1px solid #f1f5f9;border-bottom:1px solid #f1f5f9;
  overflow:hidden;position:relative;height:44px;display:flex;align-items:center;
}
.ticker-wrap::before,.ticker-wrap::after{
  content:'';position:absolute;top:0;bottom:0;width:100px;z-index:2;pointer-events:none;
}
.ticker-wrap::before{left:0;background:linear-gradient(90deg,#fafafa 0%,transparent 100%)}
.ticker-wrap::after{right:0;background:linear-gradient(-90deg,#fafafa 0%,transparent 100%)}
.ticker-track{
  display:flex;animation:scrollTicker 30s linear infinite;
  will-change:transform;
}
@keyframes scrollTicker{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.tick{
  display:inline-flex;align-items:center;gap:8px;
  padding:0 28px;border-right:1px solid #f1f5f9;white-space:nowrap;
}
.tick-dot{width:6px;height:6px;border-radius:50%;flex-shrink:0}
.tick-lbl{font-size:12.5px;font-weight:500;color:#475569}
.tick-val{font-size:12.5px;font-weight:700}

/* ═══════════════════════════════════════════════════════
   LOGO STRIP
════════════════════════════════════════════════════════ */
.logos-section{background:#f8fafc;border-bottom:1px solid #f1f5f9;padding:28px 0}
.logos-inner{max-width:1560px;margin:0 auto;padding:0 48px}
.logos-lbl{font-size:11px;font-weight:700;color:#94a3b8;text-transform:uppercase;letter-spacing:1.5px;text-align:center;margin-bottom:16px}
.logos-row{display:flex;gap:8px;flex-wrap:wrap;justify-content:center}
.lchip{
  background:#fff;border:1px solid #e2e8f0;border-radius:8px;
  padding:8px 17px;font-size:11.5px;font-weight:700;
  color:#94a3b8;letter-spacing:.4px;text-transform:uppercase;
  transition:all .22s cubic-bezier(.22,1,.36,1);
}
.lchip:hover{border-color:#f97316;color:#f97316;transform:translateY(-2px);box-shadow:0 4px 14px rgba(249,115,22,.15)}

/* ═══════════════════════════════════════════════════════
   UTILITY
════════════════════════════════════════════════════════ */
.section{padding:100px 0}
.section-alt{padding:100px 0;background:#f8fafc}
.wrap{max-width:1560px;margin:0 auto;padding:0 48px}
.sec-head{text-align:center;margin-bottom:64px}
.eyebrow{
  display:inline-flex;align-items:center;gap:7px;
  background:#fff7ed;border:1px solid #fed7aa;
  border-radius:100px;padding:5px 14px;
  font-size:11.5px;font-weight:600;color:#f97316;
  margin-bottom:14px;letter-spacing:.2px;
}
.eyebrow::before{content:'';width:5px;height:5px;border-radius:50%;background:#f97316;flex-shrink:0}
h2.big{
  font-size:clamp(28px,3.8vw,46px);font-weight:800;
  letter-spacing:-1.2px;line-height:1.1;color:#0f172a;
  margin-bottom:14px;
}
h2.big .or{color:#f97316}
.sub{font-size:17px;color:#64748b;line-height:1.7;max-width:700px;margin:0 auto}

/* Scroll reveal */
.rev{
  opacity:0;transform:translateY(30px);
  transition:opacity .7s cubic-bezier(.22,1,.36,1),
             transform .7s cubic-bezier(.22,1,.36,1);
}
.rev.on{opacity:1;transform:translateY(0)}
.rev.d1{transition-delay:.08s}.rev.d2{transition-delay:.16s}.rev.d3{transition-delay:.24s}

/* ═══════════════════════════════════════════════════════
   PROBLEM SECTION
════════════════════════════════════════════════════════ */
.prob-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.prob-card{
  background:#fff;border:1px solid #e2e8f0;border-radius:20px;
  padding:34px 28px;text-align:center;
  transition:all .3s cubic-bezier(.22,1,.36,1);
  position:relative;overflow:hidden;
}
.prob-card::before{
  content:'';position:absolute;inset:0;opacity:0;
  transition:opacity .3s;
  background:linear-gradient(135deg,rgba(249,115,22,.02) 0%,rgba(249,115,22,.05) 100%);
}
.prob-card:hover{box-shadow:0 16px 48px rgba(0,0,0,.09);transform:translateY(-5px)}
.prob-card:hover::before{opacity:1}
.prob-num{font-size:54px;font-weight:800;line-height:1;margin-bottom:10px;font-variant-numeric:tabular-nums}
.prob-title{font-size:15px;font-weight:700;color:#0f172a;margin-bottom:8px}
.prob-desc{font-size:13px;color:#64748b;line-height:1.65}

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════════════ */
.how-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.how-steps{display:flex;flex-direction:column;gap:6px}
.how-step{
  display:flex;gap:16px;align-items:flex-start;
  padding:18px;border-radius:14px;border:1px solid transparent;
  transition:all .22s cubic-bezier(.22,1,.36,1);
}
.how-step:hover{background:#fff7ed;border-color:#fed7aa;transform:translateX(4px)}
.step-badge{
  width:34px;height:34px;border-radius:9px;background:#f97316;
  display:flex;align-items:center;justify-content:center;
  font-size:12.5px;font-weight:800;color:#fff;flex-shrink:0;
}
.step-t{font-size:14.5px;font-weight:700;color:#0f172a;margin-bottom:4px}
.step-d{font-size:13.5px;color:#64748b;line-height:1.6}

/* Flow visualizer */
.flow-vis{
  background:#f8fafc;border:1px solid #e2e8f0;
  border-radius:22px;padding:26px;
  box-shadow:0 4px 24px rgba(0,0,0,.04);
}
.flow-hdr{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}
.flow-ttl{font-size:11px;font-weight:700;color:#94a3b8;text-transform:uppercase;letter-spacing:1.5px}
.live-chip{display:flex;align-items:center;gap:5px;font-size:11px;font-weight:700;color:#dc2626}
.live-dot{width:6px;height:6px;border-radius:50%;background:#dc2626;animation:blink 1.4s ease-in-out infinite}
@keyframes blink{0%,100%{opacity:1}50%{opacity:.2}}
.flow-/* removed bad body rule */
.f-row{
  background:#fff;border:1px solid #e2e8f0;border-radius:11px;
  padding:12px 14px;display:flex;gap:9px;align-items:center;
  font-size:13px;color:#0f172a;
  animation:fadeSlide .4s cubic-bezier(.22,1,.36,1) both;
}
@keyframes fadeSlide{from{opacity:0;transform:translateX(12px)}to{opacity:1;transform:translateX(0)}}
.f-brs{
  background:#fff7ed;border:1px solid #fed7aa;border-radius:11px;
  padding:12px 14px;display:flex;gap:9px;align-items:center;
  font-size:13px;animation:fadeSlide .4s cubic-bezier(.22,1,.36,1) .08s both;
}
.brs-dot{width:7px;height:7px;border-radius:50%;background:#f97316;flex-shrink:0;animation:blink 1.4s infinite}
.f-eng{
  background:#fff;border:1.5px solid #f97316;border-radius:11px;
  padding:12px 14px;font-size:13px;color:#0f172a;
  animation:fadeSlide .4s cubic-bezier(.22,1,.36,1) .16s both;
}
.f-win{
  background:#dcfce7;border:1px solid rgba(22,163,74,.22);border-radius:11px;
  padding:12px 14px;display:flex;justify-content:space-between;align-items:center;
  animation:fadeSlide .4s cubic-bezier(.22,1,.36,1) .24s both;
}
.f-sep{text-align:center;font-size:11px;font-weight:700;color:#e2e8f0;margin:2px 0}
.flow-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-top:14px}
.fstat{background:#fff;border:1px solid #e2e8f0;border-radius:10px;padding:12px;text-align:center}
.fstat-n{font-size:17px;font-weight:800;color:#0f172a}
.fstat-l{font-size:10px;color:#94a3b8;margin-top:2px}

/* ═══════════════════════════════════════════════════════
   FEATURES GRID
════════════════════════════════════════════════════════ */
.feat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.feat-card{
  background:#fff;border:1px solid #e2e8f0;border-radius:18px;padding:26px;
  transition:all .28s cubic-bezier(.22,1,.36,1);
  position:relative;overflow:hidden;
}
.feat-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:2px;
  background:transparent;transition:background .28s;
}
.feat-card:hover{
  border-color:#f97316;transform:translateY(-4px);
  box-shadow:0 0 0 3px rgba(249,115,22,.07), 0 14px 44px rgba(0,0,0,.09);
}
.feat-card:hover::before{background:linear-gradient(90deg,#f97316 0%,#fb923c 50%,#fbbf24 100%)}
.feat-icon{
  width:46px;height:46px;border-radius:12px;background:#fff7ed;
  display:flex;align-items:center;justify-content:center;font-size:21px;
  margin-bottom:14px;transition:transform .25s cubic-bezier(.22,1,.36,1);
}
.feat-card:hover .feat-icon{transform:scale(1.12) rotate(-3deg)}
.feat-title{font-size:15px;font-weight:700;color:#0f172a;margin-bottom:7px}
.feat-desc{font-size:13px;color:#64748b;line-height:1.65}
.feat-kpi{margin-top:13px;padding-top:11px;border-top:1px solid #f8fafc;font-size:11.5px;font-weight:700;color:#f97316}

/* ═══════════════════════════════════════════════════════
   INTENT JOURNEY
════════════════════════════════════════════════════════ */
.intent-row{display:grid;grid-template-columns:repeat(9,1fr);gap:8px}
.ic{
  border:1.5px solid #e2e8f0;border-radius:13px;
  padding:14px 5px;text-align:center;background:#fff;
  transition:all .25s cubic-bezier(.22,1,.36,1);
  position:relative;overflow:hidden;
}
.ic:hover{
  transform:translateY(-4px);border-color:#f97316;background:#fff7ed;
  box-shadow:0 6px 20px rgba(249,115,22,.15);
}
.ic-n{font-size:10px;font-weight:700;color:#f97316;margin-bottom:5px;letter-spacing:.5px}
.ic-i{font-size:19px;display:block;margin-bottom:5px}
.ic-l{font-size:10px;font-weight:700;color:#0f172a;line-height:1.3}
.ic-k{font-size:9px;color:#94a3b8;margin-top:4px}

/* Active intent chips */
.ic-act{border-color:#f97316;background:#fff7ed}
.ic-red{border-color:#fecaca;background:#fef2f2}
.ic-grn1{border-color:rgba(22,163,74,.3);background:#dcfce7}
.ic-grn2{border-color:rgba(22,163,74,.2);background:#f0fdf4}

/* ═══════════════════════════════════════════════════════
   METRICS BAND
════════════════════════════════════════════════════════ */
.metrics-band{
  background:#0f172a;padding:88px 0;
  position:relative;overflow:hidden;
}
.metrics-band::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse at 50% 50%,rgba(249,115,22,.08) 0%,transparent 60%);
}
.metrics-grid{
  display:grid;grid-template-columns:repeat(5,1fr);gap:24px;
  text-align:center;position:relative;z-index:1;
}
.met-n{
  font-size:48px;font-weight:800;color:#f97316;
  display:block;line-height:1;font-variant-numeric:tabular-nums;
  transition:all .3s;
}
.met-l{font-size:13px;color:rgba(255,255,255,.38);display:block;margin-top:9px;letter-spacing:.2px}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════════ */
.tgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.tcard{
  background:#fff;border:1px solid #e2e8f0;border-radius:20px;padding:28px;
  transition:all .28s cubic-bezier(.22,1,.36,1);
}
.tcard:hover{box-shadow:0 14px 44px rgba(0,0,0,.09);transform:translateY(-4px)}
.stars{color:#f97316;font-size:13px;letter-spacing:2px;margin-bottom:14px}
.tq{font-size:14.5px;color:#374151;line-height:1.76;font-style:italic;margin-bottom:18px}
.tau{display:flex;align-items:center;gap:11px}
.tav{width:40px;height:40px;border-radius:50%;background:#fff7ed;display:flex;align-items:center;justify-content:center;font-size:17px;flex-shrink:0}
.tn{font-size:14px;font-weight:700;color:#0f172a}
.tr{font-size:12px;color:#94a3b8;margin-top:1px}

/* ═══════════════════════════════════════════════════════
   ANIMATED BRS COUNTER SECTION
════════════════════════════════════════════════════════ */
.brs-section{
  background:#0f172a;padding:96px 0;
  position:relative;overflow:hidden;
}
.brs-section::before{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(circle at 20% 50%,rgba(249,115,22,.07) 0%,transparent 45%),
    radial-gradient(circle at 80% 50%,rgba(251,146,60,.05) 0%,transparent 45%);
}
.brs-inner{
  max-width:1560px;margin:0 auto;padding:0 32px;
  display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;
  position:relative;z-index:1;
}
.brs-score-wrap{
  display:flex;flex-direction:column;align-items:center;gap:24px;
}
.brs-ring{
  position:relative;width:220px;height:220px;
}
.brs-ring svg{width:220px;height:220px;transform:rotate(-90deg)}
.ring-bg{fill:none;stroke:rgba(255,255,255,.06);stroke-width:12}
.ring-prog{
  fill:none;stroke:url(#ringGrad);stroke-width:12;
  stroke-linecap:round;
  stroke-dasharray:589;stroke-dashoffset:589;
  transition:stroke-dashoffset 2s cubic-bezier(.22,1,.36,1);
}
.ring-prog.animate{stroke-dashoffset:156}/* 589 * (1 - 0.74) = ~153 */
.brs-center{
  position:absolute;inset:0;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
}
.brs-num{
  font-size:54px;font-weight:800;color:#fff;line-height:1;
  font-variant-numeric:tabular-nums;
}
.brs-sub{font-size:12px;font-weight:600;color:rgba(255,255,255,.45);letter-spacing:1px;text-transform:uppercase;margin-top:2px}
.brs-label{
  font-size:14px;font-weight:700;color:#f97316;
  background:rgba(249,115,22,.12);border:1px solid rgba(249,115,22,.2);
  border-radius:100px;padding:6px 16px;
}
.brs-stages{
  display:flex;gap:8px;
}
.brs-st{
  flex:1;padding:8px 4px;border-radius:8px;text-align:center;font-size:11px;font-weight:700;
  transition:all .3s;
}
.brs-st.active-stage{transform:scale(1.05)}

/* ═══════════════════════════════════════════════════════
   CTA BAND
════════════════════════════════════════════════════════ */
.cta-band{
  background:#f97316;padding:92px 0;
  position:relative;overflow:hidden;
}
.cta-band::before{
  content:'';position:absolute;right:-150px;top:-150px;
  width:600px;height:600px;border-radius:50%;
  background:rgba(255,255,255,.07);
  animation:ctaOrb 10s ease-in-out infinite;
}
.cta-band::after{
  content:'';position:absolute;left:-80px;bottom:-100px;
  width:400px;height:400px;border-radius:50%;
  background:rgba(255,255,255,.05);
  animation:ctaOrb 14s ease-in-out infinite reverse;
}
@keyframes ctaOrb{0%,100%{transform:scale(1) translate(0,0)}50%{transform:scale(1.06) translate(10px,-10px)}}
.cta-grid{
  position:relative;z-index:2;
  display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;
}
.cta-h2{
  font-size:clamp(28px,3.2vw,42px);font-weight:800;
  line-height:1.1;letter-spacing:-.8px;color:#fff;margin-bottom:14px;
}
.cta-p{font-size:16.5px;color:rgba(255,255,255,.82);line-height:1.7;margin-bottom:30px}
.btn-wh{
  background:#fff;color:#0f172a;font-size:15px;font-weight:700;
  padding:15px 30px;border-radius:13px;
  box-shadow:0 2px 12px rgba(0,0,0,.1);
  display:inline-flex;align-items:center;gap:6px;
  transition:all .2s;
}
.btn-wh:hover{transform:translateY(-2px);box-shadow:0 6px 22px rgba(0,0,0,.14)}
.btn-gh{
  background:rgba(255,255,255,.14);color:#fff;font-size:15px;font-weight:600;
  padding:15px 30px;border-radius:13px;border:1.5px solid rgba(255,255,255,.3);
  display:inline-flex;align-items:center;gap:6px;transition:all .2s;
}
.btn-gh:hover{background:rgba(255,255,255,.22)}
.trust-row{display:flex;gap:16px;flex-wrap:wrap;margin-top:20px}
.trust-item{display:flex;align-items:center;gap:6px;font-size:13px;color:rgba(255,255,255,.8)}
.trust-item::before{content:'✓';font-weight:700;color:#fff}
.cta-box{
  background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.2);
  border-radius:22px;padding:28px;
}
.d-item{display:flex;gap:12px;margin-bottom:14px}
.d-item:last-child{margin-bottom:0}
.d-icon{font-size:18px;flex-shrink:0;margin-top:1px}
.d-t{font-size:14px;font-weight:600;color:#fff}
.d-s{font-size:12px;color:rgba(255,255,255,.6);margin-top:2px}

/* ═══════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
footer{background:#0f172a;padding:64px 0 32px}
.fg{display:grid;grid-template-columns:2fr 1fr 1fr 1fr 1fr;gap:40px;margin-bottom:48px}
.f-desc{font-size:13.5px;color:rgba(255,255,255,.32);line-height:1.7;margin-top:14px;max-width:230px}
.fc h5{font-size:11px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:rgba(255,255,255,.25);margin-bottom:12px}
.fc a{display:block;font-size:13.5px;color:rgba(255,255,255,.42);margin-bottom:8px;transition:color .14s}
.fc a:hover{color:#f97316}
.f-btm{border-top:1px solid rgba(255,255,255,.05);padding-top:22px;display:flex;justify-content:space-between;align-items:center}
.f-btm p{font-size:13px;color:rgba(255,255,255,.22)}

/* ═══════════════════════════════════════════════════════
   PLATFORM ARCHITECTURE SECTION
════════════════════════════════════════════════════════ */
.plat-sec {
  background: linear-gradient(180deg, #f8fafc 0%, #fff7ed 50%, #f8fafc 100%);
  padding: 64px 0 60px;
  position: relative; overflow: hidden;
}
.plat-sec::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(249,115,22,.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(249,115,22,.08) 0%, transparent 50%);
}
.plat-sec .sec-head { position: relative; z-index: 1; margin-bottom: 8px; }

/* Panel titles */
.panel-titles {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.panel-title-bad {
  text-align: center; padding: 0 12px;
}
.panel-title-good {
  text-align: center; padding: 0 12px;
}
.pt-label {
  font-size: 16px; font-weight: 800; letter-spacing: -.3px; line-height: 1.2;
  margin-bottom: 6px;
}
.pt-label-bad  { color: #dc2626; }
.pt-label-good { color: #f97316; }
.pt-sub {
  font-size: 12px; font-weight: 500; line-height: 1.5;
  max-width: 280px; margin: 0 auto;
}
.pt-sub-bad  { color: #94a3b8; }
.pt-sub-good { color: #78716c; }

/* Two-panel layout */
.plat-panels {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  position: relative; z-index: 1;
  align-items: stretch;
}

/* VS column */
.plat-vs-col {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 0 8px;
}
.pvs-line {
  flex: 1; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(15,23,42,.15), transparent);
  min-height: 40px;
}
.pvs-badge {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: #fff;
  border: 2.5px solid #0f172a;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; color: #0f172a;
  letter-spacing: .5px;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}

/* Panel wrappers — equal height via grid stretch */
.plat-panel {
  border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
}
.plat-panel-bad  {
  border: 1.5px solid rgba(220,38,38,.25);
  background: #fff;
  box-shadow: 0 4px 40px rgba(220,38,38,.06), 0 1px 0 rgba(220,38,38,.1);
}
.plat-panel-good {
  border: 1.5px solid rgba(249,115,22,.35);
  background: #fff;
  box-shadow: 0 4px 40px rgba(249,115,22,.1), 0 1px 0 rgba(249,115,22,.15);
}

/* Panel header strip */
.pp-hdr {
  padding: 13px 20px;
  display: flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: .3px;
  text-transform: uppercase;
  border-bottom: 1px solid;
  flex-shrink: 0;
}
.pp-hdr-bad  { background: rgba(220,38,38,.06); border-color: rgba(220,38,38,.15); color: #dc2626; }
.pp-hdr-good { background: rgba(249,115,22,.07); border-color: rgba(249,115,22,.2); color: #ea580c; }
.pp-hdr-dot  { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.pp-hdr-bad  .pp-hdr-dot { background: #ef4444; }
.pp-hdr-good .pp-hdr-dot { background: #f97316; animation: pulseDot 1.8s infinite; }

/* SVG diagram */
.diag-wrap { flex: 1; }
.diag-wrap svg { display: block; width: 100%; height: 100%; }

/* Pills row */
.pp-pills {
  padding: 11px 16px; display: flex; gap: 6px; flex-wrap: wrap;
  border-top: 1px solid rgba(249,115,22,.12);
  background: rgba(249,115,22,.03);
  flex-shrink: 0;
}
.pp-pill {
  font-size: 10.5px; font-weight: 600; color: #ea580c;
  background: rgba(249,115,22,.1); border: 1px solid rgba(249,115,22,.2);
  border-radius: 100px; padding: 4px 11px;
}

/* Saving banner */
.saving-banner {
  margin-top: 24px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  border-radius: 18px; padding: 32px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  position: relative; z-index: 1; overflow: hidden;
}
.saving-banner::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(249,115,22,.08);
  pointer-events: none;
}
.sb-left { flex: 1; }
.sb-eyebrow {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px;
}
.sb-headline {
  font-size: clamp(22px, 2.8vw, 32px); font-weight: 800;
  color: #fff; line-height: 1.1; letter-spacing: -.5px;
}
.sb-headline span { color: #f97316; }
.sb-sub {
  font-size: 14px; color: rgba(255,255,255,.5); margin-top: 8px; line-height: 1.6;
}
.sb-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px; flex-shrink: 0;
}
.sb-amount {
  font-size: clamp(36px, 4vw, 52px); font-weight: 900;
  color: #f97316; line-height: 1;
  text-shadow: 0 0 40px rgba(249,115,22,.4);
}
.sb-amount-sub { font-size: 13px; color: rgba(255,255,255,.45); text-align: right; }
.sb-cta {
  background: #f97316; color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  padding: 12px 24px; border-radius: 11px; border: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all .2s; cursor: pointer;
  box-shadow: 0 4px 18px rgba(249,115,22,.4);
}
.sb-cta:hover { background: #ea580c; transform: translateY(-2px); }

/* animations */
@keyframes badPulse { 0%,100%{opacity:.5} 50%{opacity:.12} }
@keyframes zigMove  { 0%{stroke-dashoffset:800} 100%{stroke-dashoffset:0} }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */
@media(max-width:900px){
  .how-grid,.cta-grid,.brs-inner,.teams-grid{grid-template-columns:1fr}
  .prob-grid,.feat-grid,.tgrid{grid-template-columns:1fr}
  .intent-row{grid-template-columns:repeat(3,1fr)}
  .metrics-grid{grid-template-columns:repeat(2,1fr)}
  .hero-stats{gap:32px}
  .nl{display:none}
  .fg{grid-template-columns:1fr 1fr 1fr}
  .plat-compare{grid-template-columns:1fr;gap:24px}
  .plat-vs{flex-direction:row;padding-top:0;justify-content:center}
  .vs-line{width:60px;height:1px;background:rgba(255,255,255,.15)!important}
  .uni-row{grid-template-columns:repeat(2,1fr)}
}

/* ═══════════════════════════════════════════════════════
   TEAMS SECTION
════════════════════════════════════════════════════════ */
.teams-section { padding: 100px 0; background: #fff; }
.teams-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px;
}
.team-card {
  border-radius: 20px; padding: 32px 28px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  transition: all .28s cubic-bezier(.22,1,.36,1);
  position: relative; overflow: hidden;
}
.team-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--tc); border-radius: 20px 20px 0 0;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.09);
  border-color: var(--tc);
}
.team-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--tb); display: flex; align-items: center;
  justify-content: center; font-size: 24px; margin-bottom: 18px;
  transition: transform .25s cubic-bezier(.22,1,.36,1);
}
.team-card:hover .team-icon-wrap { transform: scale(1.1) rotate(-4deg); }
.team-name {
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--tc); margin-bottom: 6px;
}
.team-title {
  font-size: 19px; font-weight: 800; color: #0f172a;
  line-height: 1.2; letter-spacing: -.4px; margin-bottom: 12px;
}
.team-sub {
  font-size: 13.5px; color: #64748b; line-height: 1.65; margin-bottom: 20px;
}
.team-wins { display: flex; flex-direction: column; gap: 8px; }
.team-win {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: #374151; line-height: 1.5;
}
.team-win::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--tc); flex-shrink: 0; margin-top: 6px;
}
.team-kpi-row {
  display: flex; gap: 16px; margin-top: 20px;
  padding-top: 18px; border-top: 1px solid #f1f5f9;
}
.team-kpi { text-align: center; }
.team-kpi-n { font-size: 22px; font-weight: 800; color: var(--tc); line-height: 1; }
.team-kpi-l { font-size: 10px; color: #94a3b8; margin-top: 3px; font-weight: 500; }

.page-hero{background:#0f172a;padding:140px 0 80px;position:relative;overflow:hidden;}
.page-hero::before{content:"";position:absolute;inset:0;background:radial-gradient(ellipse 80% 60% at 50% 0%, rgba(249,115,22,.13) 0%, transparent 70%);pointer-events:none;}
.page-hero-inner{max-width:1560px;margin:0 auto;padding:0 32px;position:relative;z-index:1;text-align:center;}
.page-eyebrow{display:inline-flex;align-items:center;gap:7px;background:rgba(249,115,22,.12);border:1px solid rgba(249,115,22,.25);border-radius:100px;padding:6px 16px;font-size:12px;font-weight:700;color:#f97316;text-transform:uppercase;letter-spacing:1.2px;margin-bottom:22px;}
.page-h1{font-size:clamp(36px,5vw,64px);font-weight:800;line-height:1.05;letter-spacing:-2px;color:#fff;margin-bottom:20px;}
.page-h1 .or{color:#f97316}
.page-sub{font-size:18px;color:rgba(255,255,255,.65);line-height:1.7;max-width:620px;margin:0 auto;}

.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:flex-start}
.form-group{margin-bottom:18px}
.form-group label{display:block;font-size:13px;font-weight:700;color:#374151;margin-bottom:7px}
.form-group input,.form-group select,.form-group textarea{
  width:100%;background:#fff;border:1.5px solid #e2e8f0;border-radius:11px;
  padding:13px 16px;font-size:14.5px;color:#0f172a;font-family:inherit;
  outline:none;transition:border-color .15s;
}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:#f97316;box-shadow:0 0 0 3px rgba(249,115,22,.08)}
.form-group textarea{resize:vertical;min-height:110px}
.form-group select{-webkit-appearance:none;appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2394a3b8'%3E%3Cpath d='M8 10.5L3 5.5h10L8 10.5z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 14px center;background-size:16px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.contact-sidebar{}
.sidebar-block{background:#f8fafc;border:1px solid #e2e8f0;border-radius:18px;padding:24px;margin-bottom:18px}
.sb-head{font-size:13px;font-weight:700;color:#94a3b8;text-transform:uppercase;letter-spacing:1px;margin-bottom:12px}
.sb-item{display:flex;align-items:flex-start;gap:11px;margin-bottom:14px}
.sb-item:last-child{margin-bottom:0}
.sb-icon{font-size:18px;flex-shrink:0;margin-top:2px}
.sb-label{font-size:13px;font-weight:700;color:#0f172a;margin-bottom:2px}
.sb-val{font-size:13px;color:#64748b}
.social-row{display:flex;gap:10px;margin-top:6px}
.soc-btn{background:#fff;border:1px solid #e2e8f0;border-radius:9px;padding:8px 14px;font-size:12.5px;font-weight:600;color:#374151;cursor:pointer;transition:all .15s}
.soc-btn:hover{border-color:#f97316;color:#f97316}



/* === case_studies === */


/* ═══════════════════════════════════════════════════════
   RESET
════════════════════════════════════════════════════════ */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;font-size:16px}
body{
  font-family:'Plus Jakarta Sans',system-ui,sans-serif;
  background:#ffffff;
  color:#0f172a;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
button{font-family:inherit;cursor:pointer;border:none;background:none}



/* ═══════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════ */
nav{
  position:fixed;top:0;left:0;right:0;z-index:900;
  height:66px;
  background:rgba(255,255,255,0.93);
  backdrop-filter:blur(22px);-webkit-backdrop-filter:blur(22px);
  border-bottom:1px solid rgba(0,0,0,0.055);
  display:flex;align-items:center;
  transition:box-shadow .3s;
}
nav.scrolled{box-shadow:0 2px 28px rgba(0,0,0,0.07)}
.nw{max-width:1560px;margin:0 auto;padding:0 48px;display:flex;align-items:center;width:100%}
.logo{display:flex;align-items:center;gap:10px;margin-right:auto}
.logo svg{width:46px;height:36px;flex-shrink:0}
.logo-t{font-size:17px;font-weight:800;letter-spacing:1px;color:#0f172a;text-transform:uppercase}
.nl{display:flex;list-style:none;gap:2px;margin-right:24px}
.nl a{
  font-size:17.5px;font-weight:500;color:#64748b;
  padding:7px 13px;border-radius:8px;
  transition:color .14s,background .14s;
  display:block;
}
.nl a:hover{color:#0f172a;background:#f8fafc}
.nav-btn{
  background:#f97316;color:#fff;
  font-size:13.5px;font-weight:600;
  padding:10px 22px;border-radius:10px;
  box-shadow:0 2px 14px rgba(249,115,22,0.38);
  transition:all .2s;
  display:inline-flex;align-items:center;gap:6px;
}
.nav-btn:hover{background:#ea580c;transform:translateY(-1px);box-shadow:0 4px 20px rgba(249,115,22,0.48)}

/* ═══════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════ */
.hero{
  min-height:calc(100vh - 44px);padding-top:76px;
  display:flex;align-items:center;justify-content:center;
  background:#fff;position:relative;overflow:hidden;
}

/* Animated dot grid */
.hero-dots{
  position:absolute;inset:0;pointer-events:none;
  background-image:radial-gradient(circle,#e2e8f0 1px,transparent 1px);
  background-size:30px 30px;
  opacity:0.45;
  animation:dotsBreath 8s ease-in-out infinite;
}
@keyframes dotsBreath{0%,100%{opacity:.45;background-size:30px 30px}50%{opacity:.35;background-size:32px 32px}}

/* Orange aurora glow */
.hero-aura{
  position:absolute;pointer-events:none;
  width:900px;height:700px;
  left:50%;top:50%;
  transform:translate(-50%,-52%);
  background:radial-gradient(ellipse at center,rgba(249,115,22,.07) 0%,rgba(251,146,60,.03) 35%,transparent 65%);
  animation:auraFloat 7s ease-in-out infinite;
}
@keyframes auraFloat{0%,100%{transform:translate(-50%,-52%) scale(1)}50%{transform:translate(-50%,-50%) scale(1.04)}}

/* Floating orbs */
.orb{
  position:absolute;border-radius:50%;
  pointer-events:none;filter:blur(60px);opacity:.25;
  animation:orbDrift var(--d,12s) ease-in-out infinite;
}
.orb1{width:300px;height:300px;background:#f97316;top:10%;left:5%;--d:11s}
.orb2{width:200px;height:200px;background:#fb923c;bottom:20%;right:8%;--d:14s;animation-delay:-4s}
.orb3{width:150px;height:150px;background:#fbbf24;top:60%;left:60%;--d:9s;animation-delay:-7s;opacity:.15}
@keyframes orbDrift{
  0%,100%{transform:translateY(0) translateX(0)}
  33%{transform:translateY(-30px) translateX(15px)}
  66%{transform:translateY(20px) translateX(-10px)}
}

.hero-inner{
  position:relative;z-index:2;
  display:flex;flex-direction:column;
  align-items:center;text-align:center;
  padding:88px 32px 110px;
  max-width:1000px;
}

/* Badge */
.hero-badge{
  display:inline-flex;align-items:center;gap:9px;
  background:#fff7ed;border:1px solid #fed7aa;
  border-radius:100px;padding:7px 18px;
  font-size:12.5px;font-weight:600;color:#f97316;
  margin-bottom:30px;
  opacity:0;animation:slideDown .7s cubic-bezier(.22,1,.36,1) .1s forwards;
}
.badge-pulse{
  width:8px;height:8px;border-radius:50%;
  background:#f97316;flex-shrink:0;
  animation:pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot{
  0%,100%{transform:scale(1);opacity:1;box-shadow:0 0 0 0 rgba(249,115,22,.4)}
  50%{transform:scale(.85);opacity:.6;box-shadow:0 0 0 6px rgba(249,115,22,0)}
}
@keyframes slideDown{from{opacity:0;transform:translateY(-12px)}to{opacity:1;transform:translateY(0)}}

/* Headline */
.hero-h1{
  font-size:clamp(48px,7vw,82px);
  font-weight:800;line-height:1.04;
  letter-spacing:-3px;color:#0f172a;
  margin-bottom:24px;
  opacity:0;animation:slideUp .8s cubic-bezier(.22,1,.36,1) .22s forwards;
}
.hero-h1 .or{
  color:#f97316;position:relative;display:inline-block;
}
.hero-h1 .or::after{
  content:'';
  position:absolute;left:0;right:100%;bottom:-4px;
  height:3px;border-radius:2px;background:#f97316;
  animation:lineGrow .9s cubic-bezier(.22,1,.36,1) 1.2s forwards;
}
@keyframes lineGrow{to{right:0}}
@keyframes slideUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}

.hero-sub{
  font-size:17.5px;color:#64748b;line-height:1.72;
  max-width:640px;margin:0 auto 40px;
  opacity:0;animation:slideUp .8s cubic-bezier(.22,1,.36,1) .36s forwards;
}

/* Buttons */
.hero-btns{
  display:flex;gap:13px;justify-content:center;
  margin-bottom:68px;
  opacity:0;animation:slideUp .8s cubic-bezier(.22,1,.36,1) .48s forwards;
}
.btn-pr{
  background:#f97316;color:#fff;
  font-size:15px;font-weight:700;
  padding:15px 32px;border-radius:13px;
  box-shadow:0 4px 20px rgba(249,115,22,.4);
  display:inline-flex;align-items:center;gap:7px;
  transition:all .2s cubic-bezier(.22,1,.36,1);
  position:relative;overflow:hidden;
}
.btn-pr::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,.15),transparent);
  opacity:0;transition:opacity .2s;
}
.btn-pr:hover{background:#ea580c;transform:translateY(-2px);box-shadow:0 8px 30px rgba(249,115,22,.5)}
.btn-pr:hover::before{opacity:1}
.btn-pr:active{transform:translateY(0);box-shadow:0 4px 16px rgba(249,115,22,.35)}
.btn-sc{
  background:#fff;color:#0f172a;
  font-size:15px;font-weight:600;
  padding:15px 32px;border-radius:13px;
  border:1.5px solid #e2e8f0;
  box-shadow:0 1px 4px rgba(0,0,0,.05);
  display:inline-flex;align-items:center;gap:7px;
  transition:all .2s;
}
.btn-sc:hover{border-color:#94a3b8;background:#f8fafc;transform:translateY(-1px)}

/* Stats */
.hero-stats{
  display:flex;gap:60px;
  padding-top:30px;border-top:1px solid #f1f5f9;
  opacity:0;animation:slideUp .8s cubic-bezier(.22,1,.36,1) .62s forwards;
}
.stat-n{font-size:44px;font-weight:800;line-height:1;color:#0f172a;font-variant-numeric:tabular-nums}
.stat-n .hl{color:#f97316}
.stat-l{font-size:13px;color:#94a3b8;margin-top:6px;font-weight:500;letter-spacing:.2px}

/* ═══════════════════════════════════════════════════════
   LIVE TICKER STRIP
════════════════════════════════════════════════════════ */
.ticker-wrap{
  background:#fafafa;
  border-top:1px solid #f1f5f9;border-bottom:1px solid #f1f5f9;
  overflow:hidden;position:relative;height:44px;display:flex;align-items:center;
}
.ticker-wrap::before,.ticker-wrap::after{
  content:'';position:absolute;top:0;bottom:0;width:100px;z-index:2;pointer-events:none;
}
.ticker-wrap::before{left:0;background:linear-gradient(90deg,#fafafa 0%,transparent 100%)}
.ticker-wrap::after{right:0;background:linear-gradient(-90deg,#fafafa 0%,transparent 100%)}
.ticker-track{
  display:flex;animation:scrollTicker 30s linear infinite;
  will-change:transform;
}
@keyframes scrollTicker{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.tick{
  display:inline-flex;align-items:center;gap:8px;
  padding:0 28px;border-right:1px solid #f1f5f9;white-space:nowrap;
}
.tick-dot{width:6px;height:6px;border-radius:50%;flex-shrink:0}
.tick-lbl{font-size:12.5px;font-weight:500;color:#475569}
.tick-val{font-size:12.5px;font-weight:700}

/* ═══════════════════════════════════════════════════════
   LOGO STRIP
════════════════════════════════════════════════════════ */
.logos-section{background:#f8fafc;border-bottom:1px solid #f1f5f9;padding:28px 0}
.logos-inner{max-width:1560px;margin:0 auto;padding:0 48px}
.logos-lbl{font-size:11px;font-weight:700;color:#94a3b8;text-transform:uppercase;letter-spacing:1.5px;text-align:center;margin-bottom:16px}
.logos-row{display:flex;gap:8px;flex-wrap:wrap;justify-content:center}
.lchip{
  background:#fff;border:1px solid #e2e8f0;border-radius:8px;
  padding:8px 17px;font-size:11.5px;font-weight:700;
  color:#94a3b8;letter-spacing:.4px;text-transform:uppercase;
  transition:all .22s cubic-bezier(.22,1,.36,1);
}
.lchip:hover{border-color:#f97316;color:#f97316;transform:translateY(-2px);box-shadow:0 4px 14px rgba(249,115,22,.15)}

/* ═══════════════════════════════════════════════════════
   UTILITY
════════════════════════════════════════════════════════ */
.section{padding:100px 0}
.section-alt{padding:100px 0;background:#f8fafc}
.wrap{max-width:1560px;margin:0 auto;padding:0 48px}
.sec-head{text-align:center;margin-bottom:64px}
.eyebrow{
  display:inline-flex;align-items:center;gap:7px;
  background:#fff7ed;border:1px solid #fed7aa;
  border-radius:100px;padding:5px 14px;
  font-size:11.5px;font-weight:600;color:#f97316;
  margin-bottom:14px;letter-spacing:.2px;
}
.eyebrow::before{content:'';width:5px;height:5px;border-radius:50%;background:#f97316;flex-shrink:0}
h2.big{
  font-size:clamp(28px,3.8vw,46px);font-weight:800;
  letter-spacing:-1.2px;line-height:1.1;color:#0f172a;
  margin-bottom:14px;
}
h2.big .or{color:#f97316}
.sub{font-size:17px;color:#64748b;line-height:1.7;max-width:700px;margin:0 auto}

/* Scroll reveal */
.rev{
  opacity:0;transform:translateY(30px);
  transition:opacity .7s cubic-bezier(.22,1,.36,1),
             transform .7s cubic-bezier(.22,1,.36,1);
}
.rev.on{opacity:1;transform:translateY(0)}
.rev.d1{transition-delay:.08s}.rev.d2{transition-delay:.16s}.rev.d3{transition-delay:.24s}

/* ═══════════════════════════════════════════════════════
   PROBLEM SECTION
════════════════════════════════════════════════════════ */
.prob-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.prob-card{
  background:#fff;border:1px solid #e2e8f0;border-radius:20px;
  padding:34px 28px;text-align:center;
  transition:all .3s cubic-bezier(.22,1,.36,1);
  position:relative;overflow:hidden;
}
.prob-card::before{
  content:'';position:absolute;inset:0;opacity:0;
  transition:opacity .3s;
  background:linear-gradient(135deg,rgba(249,115,22,.02) 0%,rgba(249,115,22,.05) 100%);
}
.prob-card:hover{box-shadow:0 16px 48px rgba(0,0,0,.09);transform:translateY(-5px)}
.prob-card:hover::before{opacity:1}
.prob-num{font-size:54px;font-weight:800;line-height:1;margin-bottom:10px;font-variant-numeric:tabular-nums}
.prob-title{font-size:15px;font-weight:700;color:#0f172a;margin-bottom:8px}
.prob-desc{font-size:13px;color:#64748b;line-height:1.65}

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════════════ */
.how-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.how-steps{display:flex;flex-direction:column;gap:6px}
.how-step{
  display:flex;gap:16px;align-items:flex-start;
  padding:18px;border-radius:14px;border:1px solid transparent;
  transition:all .22s cubic-bezier(.22,1,.36,1);
}
.how-step:hover{background:#fff7ed;border-color:#fed7aa;transform:translateX(4px)}
.step-badge{
  width:34px;height:34px;border-radius:9px;background:#f97316;
  display:flex;align-items:center;justify-content:center;
  font-size:12.5px;font-weight:800;color:#fff;flex-shrink:0;
}
.step-t{font-size:14.5px;font-weight:700;color:#0f172a;margin-bottom:4px}
.step-d{font-size:13.5px;color:#64748b;line-height:1.6}

/* Flow visualizer */
.flow-vis{
  background:#f8fafc;border:1px solid #e2e8f0;
  border-radius:22px;padding:26px;
  box-shadow:0 4px 24px rgba(0,0,0,.04);
}
.flow-hdr{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}
.flow-ttl{font-size:11px;font-weight:700;color:#94a3b8;text-transform:uppercase;letter-spacing:1.5px}
.live-chip{display:flex;align-items:center;gap:5px;font-size:11px;font-weight:700;color:#dc2626}
.live-dot{width:6px;height:6px;border-radius:50%;background:#dc2626;animation:blink 1.4s ease-in-out infinite}
@keyframes blink{0%,100%{opacity:1}50%{opacity:.2}}
.flow-/* removed bad body rule */
.f-row{
  background:#fff;border:1px solid #e2e8f0;border-radius:11px;
  padding:12px 14px;display:flex;gap:9px;align-items:center;
  font-size:13px;color:#0f172a;
  animation:fadeSlide .4s cubic-bezier(.22,1,.36,1) both;
}
@keyframes fadeSlide{from{opacity:0;transform:translateX(12px)}to{opacity:1;transform:translateX(0)}}
.f-brs{
  background:#fff7ed;border:1px solid #fed7aa;border-radius:11px;
  padding:12px 14px;display:flex;gap:9px;align-items:center;
  font-size:13px;animation:fadeSlide .4s cubic-bezier(.22,1,.36,1) .08s both;
}
.brs-dot{width:7px;height:7px;border-radius:50%;background:#f97316;flex-shrink:0;animation:blink 1.4s infinite}
.f-eng{
  background:#fff;border:1.5px solid #f97316;border-radius:11px;
  padding:12px 14px;font-size:13px;color:#0f172a;
  animation:fadeSlide .4s cubic-bezier(.22,1,.36,1) .16s both;
}
.f-win{
  background:#dcfce7;border:1px solid rgba(22,163,74,.22);border-radius:11px;
  padding:12px 14px;display:flex;justify-content:space-between;align-items:center;
  animation:fadeSlide .4s cubic-bezier(.22,1,.36,1) .24s both;
}
.f-sep{text-align:center;font-size:11px;font-weight:700;color:#e2e8f0;margin:2px 0}
.flow-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-top:14px}
.fstat{background:#fff;border:1px solid #e2e8f0;border-radius:10px;padding:12px;text-align:center}
.fstat-n{font-size:17px;font-weight:800;color:#0f172a}
.fstat-l{font-size:10px;color:#94a3b8;margin-top:2px}

/* ═══════════════════════════════════════════════════════
   FEATURES GRID
════════════════════════════════════════════════════════ */
.feat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.feat-card{
  background:#fff;border:1px solid #e2e8f0;border-radius:18px;padding:26px;
  transition:all .28s cubic-bezier(.22,1,.36,1);
  position:relative;overflow:hidden;
}
.feat-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:2px;
  background:transparent;transition:background .28s;
}
.feat-card:hover{
  border-color:#f97316;transform:translateY(-4px);
  box-shadow:0 0 0 3px rgba(249,115,22,.07), 0 14px 44px rgba(0,0,0,.09);
}
.feat-card:hover::before{background:linear-gradient(90deg,#f97316 0%,#fb923c 50%,#fbbf24 100%)}
.feat-icon{
  width:46px;height:46px;border-radius:12px;background:#fff7ed;
  display:flex;align-items:center;justify-content:center;font-size:21px;
  margin-bottom:14px;transition:transform .25s cubic-bezier(.22,1,.36,1);
}
.feat-card:hover .feat-icon{transform:scale(1.12) rotate(-3deg)}
.feat-title{font-size:15px;font-weight:700;color:#0f172a;margin-bottom:7px}
.feat-desc{font-size:13px;color:#64748b;line-height:1.65}
.feat-kpi{margin-top:13px;padding-top:11px;border-top:1px solid #f8fafc;font-size:11.5px;font-weight:700;color:#f97316}

/* ═══════════════════════════════════════════════════════
   INTENT JOURNEY
════════════════════════════════════════════════════════ */
.intent-row{display:grid;grid-template-columns:repeat(9,1fr);gap:8px}
.ic{
  border:1.5px solid #e2e8f0;border-radius:13px;
  padding:14px 5px;text-align:center;background:#fff;
  transition:all .25s cubic-bezier(.22,1,.36,1);
  position:relative;overflow:hidden;
}
.ic:hover{
  transform:translateY(-4px);border-color:#f97316;background:#fff7ed;
  box-shadow:0 6px 20px rgba(249,115,22,.15);
}
.ic-n{font-size:10px;font-weight:700;color:#f97316;margin-bottom:5px;letter-spacing:.5px}
.ic-i{font-size:19px;display:block;margin-bottom:5px}
.ic-l{font-size:10px;font-weight:700;color:#0f172a;line-height:1.3}
.ic-k{font-size:9px;color:#94a3b8;margin-top:4px}

/* Active intent chips */
.ic-act{border-color:#f97316;background:#fff7ed}
.ic-red{border-color:#fecaca;background:#fef2f2}
.ic-grn1{border-color:rgba(22,163,74,.3);background:#dcfce7}
.ic-grn2{border-color:rgba(22,163,74,.2);background:#f0fdf4}

/* ═══════════════════════════════════════════════════════
   METRICS BAND
════════════════════════════════════════════════════════ */
.metrics-band{
  background:#0f172a;padding:88px 0;
  position:relative;overflow:hidden;
}
.metrics-band::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse at 50% 50%,rgba(249,115,22,.08) 0%,transparent 60%);
}
.metrics-grid{
  display:grid;grid-template-columns:repeat(5,1fr);gap:24px;
  text-align:center;position:relative;z-index:1;
}
.met-n{
  font-size:48px;font-weight:800;color:#f97316;
  display:block;line-height:1;font-variant-numeric:tabular-nums;
  transition:all .3s;
}
.met-l{font-size:13px;color:rgba(255,255,255,.38);display:block;margin-top:9px;letter-spacing:.2px}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════════ */
.tgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.tcard{
  background:#fff;border:1px solid #e2e8f0;border-radius:20px;padding:28px;
  transition:all .28s cubic-bezier(.22,1,.36,1);
}
.tcard:hover{box-shadow:0 14px 44px rgba(0,0,0,.09);transform:translateY(-4px)}
.stars{color:#f97316;font-size:13px;letter-spacing:2px;margin-bottom:14px}
.tq{font-size:14.5px;color:#374151;line-height:1.76;font-style:italic;margin-bottom:18px}
.tau{display:flex;align-items:center;gap:11px}
.tav{width:40px;height:40px;border-radius:50%;background:#fff7ed;display:flex;align-items:center;justify-content:center;font-size:17px;flex-shrink:0}
.tn{font-size:14px;font-weight:700;color:#0f172a}
.tr{font-size:12px;color:#94a3b8;margin-top:1px}

/* ═══════════════════════════════════════════════════════
   ANIMATED BRS COUNTER SECTION
════════════════════════════════════════════════════════ */
.brs-section{
  background:#0f172a;padding:96px 0;
  position:relative;overflow:hidden;
}
.brs-section::before{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(circle at 20% 50%,rgba(249,115,22,.07) 0%,transparent 45%),
    radial-gradient(circle at 80% 50%,rgba(251,146,60,.05) 0%,transparent 45%);
}
.brs-inner{
  max-width:1560px;margin:0 auto;padding:0 32px;
  display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;
  position:relative;z-index:1;
}
.brs-score-wrap{
  display:flex;flex-direction:column;align-items:center;gap:24px;
}
.brs-ring{
  position:relative;width:220px;height:220px;
}
.brs-ring svg{width:220px;height:220px;transform:rotate(-90deg)}
.ring-bg{fill:none;stroke:rgba(255,255,255,.06);stroke-width:12}
.ring-prog{
  fill:none;stroke:url(#ringGrad);stroke-width:12;
  stroke-linecap:round;
  stroke-dasharray:589;stroke-dashoffset:589;
  transition:stroke-dashoffset 2s cubic-bezier(.22,1,.36,1);
}
.ring-prog.animate{stroke-dashoffset:156}/* 589 * (1 - 0.74) = ~153 */
.brs-center{
  position:absolute;inset:0;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
}
.brs-num{
  font-size:54px;font-weight:800;color:#fff;line-height:1;
  font-variant-numeric:tabular-nums;
}
.brs-sub{font-size:12px;font-weight:600;color:rgba(255,255,255,.45);letter-spacing:1px;text-transform:uppercase;margin-top:2px}
.brs-label{
  font-size:14px;font-weight:700;color:#f97316;
  background:rgba(249,115,22,.12);border:1px solid rgba(249,115,22,.2);
  border-radius:100px;padding:6px 16px;
}
.brs-stages{
  display:flex;gap:8px;
}
.brs-st{
  flex:1;padding:8px 4px;border-radius:8px;text-align:center;font-size:11px;font-weight:700;
  transition:all .3s;
}
.brs-st.active-stage{transform:scale(1.05)}

/* ═══════════════════════════════════════════════════════
   CTA BAND
════════════════════════════════════════════════════════ */
.cta-band{
  background:#f97316;padding:92px 0;
  position:relative;overflow:hidden;
}
.cta-band::before{
  content:'';position:absolute;right:-150px;top:-150px;
  width:600px;height:600px;border-radius:50%;
  background:rgba(255,255,255,.07);
  animation:ctaOrb 10s ease-in-out infinite;
}
.cta-band::after{
  content:'';position:absolute;left:-80px;bottom:-100px;
  width:400px;height:400px;border-radius:50%;
  background:rgba(255,255,255,.05);
  animation:ctaOrb 14s ease-in-out infinite reverse;
}
@keyframes ctaOrb{0%,100%{transform:scale(1) translate(0,0)}50%{transform:scale(1.06) translate(10px,-10px)}}
.cta-grid{
  position:relative;z-index:2;
  display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;
}
.cta-h2{
  font-size:clamp(28px,3.2vw,42px);font-weight:800;
  line-height:1.1;letter-spacing:-.8px;color:#fff;margin-bottom:14px;
}
.cta-p{font-size:16.5px;color:rgba(255,255,255,.82);line-height:1.7;margin-bottom:30px}
.btn-wh{
  background:#fff;color:#0f172a;font-size:15px;font-weight:700;
  padding:15px 30px;border-radius:13px;
  box-shadow:0 2px 12px rgba(0,0,0,.1);
  display:inline-flex;align-items:center;gap:6px;
  transition:all .2s;
}
.btn-wh:hover{transform:translateY(-2px);box-shadow:0 6px 22px rgba(0,0,0,.14)}
.btn-gh{
  background:rgba(255,255,255,.14);color:#fff;font-size:15px;font-weight:600;
  padding:15px 30px;border-radius:13px;border:1.5px solid rgba(255,255,255,.3);
  display:inline-flex;align-items:center;gap:6px;transition:all .2s;
}
.btn-gh:hover{background:rgba(255,255,255,.22)}
.trust-row{display:flex;gap:16px;flex-wrap:wrap;margin-top:20px}
.trust-item{display:flex;align-items:center;gap:6px;font-size:13px;color:rgba(255,255,255,.8)}
.trust-item::before{content:'✓';font-weight:700;color:#fff}
.cta-box{
  background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.2);
  border-radius:22px;padding:28px;
}
.d-item{display:flex;gap:12px;margin-bottom:14px}
.d-item:last-child{margin-bottom:0}
.d-icon{font-size:18px;flex-shrink:0;margin-top:1px}
.d-t{font-size:14px;font-weight:600;color:#fff}
.d-s{font-size:12px;color:rgba(255,255,255,.6);margin-top:2px}

/* ═══════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
footer{background:#0f172a;padding:64px 0 32px}
.fg{display:grid;grid-template-columns:2fr 1fr 1fr 1fr 1fr;gap:40px;margin-bottom:48px}
.f-desc{font-size:13.5px;color:rgba(255,255,255,.32);line-height:1.7;margin-top:14px;max-width:230px}
.fc h5{font-size:11px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:rgba(255,255,255,.25);margin-bottom:12px}
.fc a{display:block;font-size:13.5px;color:rgba(255,255,255,.42);margin-bottom:8px;transition:color .14s}
.fc a:hover{color:#f97316}
.f-btm{border-top:1px solid rgba(255,255,255,.05);padding-top:22px;display:flex;justify-content:space-between;align-items:center}
.f-btm p{font-size:13px;color:rgba(255,255,255,.22)}

/* ═══════════════════════════════════════════════════════
   PLATFORM ARCHITECTURE SECTION
════════════════════════════════════════════════════════ */
.plat-sec {
  background: linear-gradient(180deg, #f8fafc 0%, #fff7ed 50%, #f8fafc 100%);
  padding: 64px 0 60px;
  position: relative; overflow: hidden;
}
.plat-sec::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(249,115,22,.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(249,115,22,.08) 0%, transparent 50%);
}
.plat-sec .sec-head { position: relative; z-index: 1; margin-bottom: 8px; }

/* Panel titles */
.panel-titles {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.panel-title-bad {
  text-align: center; padding: 0 12px;
}
.panel-title-good {
  text-align: center; padding: 0 12px;
}
.pt-label {
  font-size: 16px; font-weight: 800; letter-spacing: -.3px; line-height: 1.2;
  margin-bottom: 6px;
}
.pt-label-bad  { color: #dc2626; }
.pt-label-good { color: #f97316; }
.pt-sub {
  font-size: 12px; font-weight: 500; line-height: 1.5;
  max-width: 280px; margin: 0 auto;
}
.pt-sub-bad  { color: #94a3b8; }
.pt-sub-good { color: #78716c; }

/* Two-panel layout */
.plat-panels {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  position: relative; z-index: 1;
  align-items: stretch;
}

/* VS column */
.plat-vs-col {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 0 8px;
}
.pvs-line {
  flex: 1; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(15,23,42,.15), transparent);
  min-height: 40px;
}
.pvs-badge {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: #fff;
  border: 2.5px solid #0f172a;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; color: #0f172a;
  letter-spacing: .5px;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}

/* Panel wrappers — equal height via grid stretch */
.plat-panel {
  border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
}
.plat-panel-bad  {
  border: 1.5px solid rgba(220,38,38,.25);
  background: #fff;
  box-shadow: 0 4px 40px rgba(220,38,38,.06), 0 1px 0 rgba(220,38,38,.1);
}
.plat-panel-good {
  border: 1.5px solid rgba(249,115,22,.35);
  background: #fff;
  box-shadow: 0 4px 40px rgba(249,115,22,.1), 0 1px 0 rgba(249,115,22,.15);
}

/* Panel header strip */
.pp-hdr {
  padding: 13px 20px;
  display: flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: .3px;
  text-transform: uppercase;
  border-bottom: 1px solid;
  flex-shrink: 0;
}
.pp-hdr-bad  { background: rgba(220,38,38,.06); border-color: rgba(220,38,38,.15); color: #dc2626; }
.pp-hdr-good { background: rgba(249,115,22,.07); border-color: rgba(249,115,22,.2); color: #ea580c; }
.pp-hdr-dot  { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.pp-hdr-bad  .pp-hdr-dot { background: #ef4444; }
.pp-hdr-good .pp-hdr-dot { background: #f97316; animation: pulseDot 1.8s infinite; }

/* SVG diagram */
.diag-wrap { flex: 1; }
.diag-wrap svg { display: block; width: 100%; height: 100%; }

/* Pills row */
.pp-pills {
  padding: 11px 16px; display: flex; gap: 6px; flex-wrap: wrap;
  border-top: 1px solid rgba(249,115,22,.12);
  background: rgba(249,115,22,.03);
  flex-shrink: 0;
}
.pp-pill {
  font-size: 10.5px; font-weight: 600; color: #ea580c;
  background: rgba(249,115,22,.1); border: 1px solid rgba(249,115,22,.2);
  border-radius: 100px; padding: 4px 11px;
}

/* Saving banner */
.saving-banner {
  margin-top: 24px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  border-radius: 18px; padding: 32px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  position: relative; z-index: 1; overflow: hidden;
}
.saving-banner::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(249,115,22,.08);
  pointer-events: none;
}
.sb-left { flex: 1; }
.sb-eyebrow {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px;
}
.sb-headline {
  font-size: clamp(22px, 2.8vw, 32px); font-weight: 800;
  color: #fff; line-height: 1.1; letter-spacing: -.5px;
}
.sb-headline span { color: #f97316; }
.sb-sub {
  font-size: 14px; color: rgba(255,255,255,.5); margin-top: 8px; line-height: 1.6;
}
.sb-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px; flex-shrink: 0;
}
.sb-amount {
  font-size: clamp(36px, 4vw, 52px); font-weight: 900;
  color: #f97316; line-height: 1;
  text-shadow: 0 0 40px rgba(249,115,22,.4);
}
.sb-amount-sub { font-size: 13px; color: rgba(255,255,255,.45); text-align: right; }
.sb-cta {
  background: #f97316; color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  padding: 12px 24px; border-radius: 11px; border: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all .2s; cursor: pointer;
  box-shadow: 0 4px 18px rgba(249,115,22,.4);
}
.sb-cta:hover { background: #ea580c; transform: translateY(-2px); }

/* animations */
@keyframes badPulse { 0%,100%{opacity:.5} 50%{opacity:.12} }
@keyframes zigMove  { 0%{stroke-dashoffset:800} 100%{stroke-dashoffset:0} }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */
@media(max-width:900px){
  .how-grid,.cta-grid,.brs-inner,.teams-grid{grid-template-columns:1fr}
  .prob-grid,.feat-grid,.tgrid{grid-template-columns:1fr}
  .intent-row{grid-template-columns:repeat(3,1fr)}
  .metrics-grid{grid-template-columns:repeat(2,1fr)}
  .hero-stats{gap:32px}
  .nl{display:none}
  .fg{grid-template-columns:1fr 1fr 1fr}
  .plat-compare{grid-template-columns:1fr;gap:24px}
  .plat-vs{flex-direction:row;padding-top:0;justify-content:center}
  .vs-line{width:60px;height:1px;background:rgba(255,255,255,.15)!important}
  .uni-row{grid-template-columns:repeat(2,1fr)}
}

/* ═══════════════════════════════════════════════════════
   TEAMS SECTION
════════════════════════════════════════════════════════ */
.teams-section { padding: 100px 0; background: #fff; }
.teams-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px;
}
.team-card {
  border-radius: 20px; padding: 32px 28px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  transition: all .28s cubic-bezier(.22,1,.36,1);
  position: relative; overflow: hidden;
}
.team-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--tc); border-radius: 20px 20px 0 0;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.09);
  border-color: var(--tc);
}
.team-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--tb); display: flex; align-items: center;
  justify-content: center; font-size: 24px; margin-bottom: 18px;
  transition: transform .25s cubic-bezier(.22,1,.36,1);
}
.team-card:hover .team-icon-wrap { transform: scale(1.1) rotate(-4deg); }
.team-name {
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--tc); margin-bottom: 6px;
}
.team-title {
  font-size: 19px; font-weight: 800; color: #0f172a;
  line-height: 1.2; letter-spacing: -.4px; margin-bottom: 12px;
}
.team-sub {
  font-size: 13.5px; color: #64748b; line-height: 1.65; margin-bottom: 20px;
}
.team-wins { display: flex; flex-direction: column; gap: 8px; }
.team-win {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: #374151; line-height: 1.5;
}
.team-win::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--tc); flex-shrink: 0; margin-top: 6px;
}
.team-kpi-row {
  display: flex; gap: 16px; margin-top: 20px;
  padding-top: 18px; border-top: 1px solid #f1f5f9;
}
.team-kpi { text-align: center; }
.team-kpi-n { font-size: 22px; font-weight: 800; color: var(--tc); line-height: 1; }
.team-kpi-l { font-size: 10px; color: #94a3b8; margin-top: 3px; font-weight: 500; }

.page-hero{background:#0f172a;padding:140px 0 80px;position:relative;overflow:hidden;}
.page-hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 80% 60% at 50% 0%, rgba(249,115,22,.13) 0%, transparent 70%);pointer-events:none;}
.page-hero-inner{max-width:1560px;margin:0 auto;padding:0 32px;position:relative;z-index:1;text-align:center;}
.page-eyebrow{display:inline-flex;align-items:center;gap:7px;background:rgba(249,115,22,.12);border:1px solid rgba(249,115,22,.25);border-radius:100px;padding:6px 16px;font-size:12px;font-weight:700;color:#f97316;text-transform:uppercase;letter-spacing:1.2px;margin-bottom:22px;}
.page-h1{font-size:clamp(36px,5vw,64px);font-weight:800;line-height:1.05;letter-spacing:-2px;color:#fff;margin-bottom:20px;}
.page-h1 .or{color:#f97316}
.page-sub{font-size:18px;color:rgba(255,255,255,.65);line-height:1.7;max-width:620px;margin:0 auto;}

.cs-hero-stats{display:flex;gap:40px;margin-top:44px;justify-content:center;flex-wrap:wrap}
.cs-hero-stat{text-align:center}
.cs-hero-num{font-size:42px;font-weight:900;color:#f97316;line-height:1}
.cs-hero-label{font-size:13px;color:rgba(255,255,255,.55);margin-top:4px}
.cs-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.cs-card{background:#fff;border:1px solid #e2e8f0;border-radius:22px;overflow:hidden;transition:all .25s}
.cs-card:hover{transform:translateY(-4px);box-shadow:0 16px 48px rgba(0,0,0,.09);border-color:#f97316}
.cs-card-header{padding:28px 28px 0;position:relative}
.cs-brand-row{display:flex;align-items:center;gap:12px;margin-bottom:16px}
.cs-brand-logo{width:42px;height:42px;border-radius:10px;background:var(--bc,#f8fafc);display:flex;align-items:center;justify-content:center;font-size:20px;border:1px solid #e2e8f0}
.cs-brand-name{font-size:16px;font-weight:800;color:#0f172a}
.cs-brand-cat{font-size:12px;color:#94a3b8}
.cs-headline{font-size:20px;font-weight:800;color:#0f172a;line-height:1.25;margin-bottom:12px}
.cs-desc{font-size:13.5px;color:#64748b;line-height:1.65;margin-bottom:20px}
.cs-metrics{display:grid;grid-template-columns:repeat(3,1fr);gap:0;border-top:1px solid #f1f5f9;padding:20px 28px}
.cs-metric{text-align:center;padding:0 8px}
.cs-metric:not(:last-child){border-right:1px solid #f1f5f9}
.cs-m-num{font-size:24px;font-weight:900;color:#f97316;line-height:1;margin-bottom:4px}
.cs-m-label{font-size:11.5px;color:#64748b;font-weight:600}
.deep-dive{background:#f8fafc;border:1px solid #e2e8f0;border-radius:22px;padding:40px;margin-bottom:60px}
.dd-header{display:flex;align-items:flex-start;gap:20px;margin-bottom:32px;flex-wrap:wrap}
.dd-logo{width:56px;height:56px;border-radius:14px;background:#fff;border:1px solid #e2e8f0;display:flex;align-items:center;justify-content:center;font-size:26px}
.dd-meta{flex:1}
.dd-brand{font-size:22px;font-weight:800;color:#0f172a;margin-bottom:4px}
.dd-tag{font-size:12px;font-weight:700;color:#f97316;background:#fff7ed;border:1px solid #fed7aa;border-radius:100px;padding:3px 12px;display:inline-block}
.dd-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px}
.dd-section{margin-bottom:20px}
.dd-label{font-size:11px;font-weight:700;color:#94a3b8;text-transform:uppercase;letter-spacing:1px;margin-bottom:10px}
.dd-text{font-size:14px;color:#374151;line-height:1.7}
.dd-results{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:28px}
.dd-result{background:#fff;border:1px solid #e2e8f0;border-radius:14px;padding:16px;text-align:center}
.dd-r-num{font-size:28px;font-weight:900;color:#f97316;line-height:1;margin-bottom:4px}
.dd-r-label{font-size:12px;color:#64748b;font-weight:600}



/* === blog === */


/* ═══════════════════════════════════════════════════════
   RESET
════════════════════════════════════════════════════════ */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;font-size:16px}
body{
  font-family:'Plus Jakarta Sans',system-ui,sans-serif;
  background:#ffffff;
  color:#0f172a;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
button{font-family:inherit;cursor:pointer;border:none;background:none}



/* ═══════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════ */
nav{
  position:fixed;top:0;left:0;right:0;z-index:900;
  height:66px;
  background:rgba(255,255,255,0.93);
  backdrop-filter:blur(22px);-webkit-backdrop-filter:blur(22px);
  border-bottom:1px solid rgba(0,0,0,0.055);
  display:flex;align-items:center;
  transition:box-shadow .3s;
}
nav.scrolled{box-shadow:0 2px 28px rgba(0,0,0,0.07)}
.nw{max-width:1560px;margin:0 auto;padding:0 48px;display:flex;align-items:center;width:100%}
.logo{display:flex;align-items:center;gap:10px;margin-right:auto}
.logo svg{width:46px;height:36px;flex-shrink:0}
.logo-t{font-size:17px;font-weight:800;letter-spacing:1px;color:#0f172a;text-transform:uppercase}
.nl{display:flex;list-style:none;gap:2px;margin-right:24px}
.nl a{
  font-size:17.5px;font-weight:500;color:#64748b;
  padding:7px 13px;border-radius:8px;
  transition:color .14s,background .14s;
  display:block;
}
.nl a:hover{color:#0f172a;background:#f8fafc}
.nav-btn{
  background:#f97316;color:#fff;
  font-size:13.5px;font-weight:600;
  padding:10px 22px;border-radius:10px;
  box-shadow:0 2px 14px rgba(249,115,22,0.38);
  transition:all .2s;
  display:inline-flex;align-items:center;gap:6px;
}
.nav-btn:hover{background:#ea580c;transform:translateY(-1px);box-shadow:0 4px 20px rgba(249,115,22,0.48)}

/* ═══════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════ */
.hero{
  min-height:calc(100vh - 44px);padding-top:76px;
  display:flex;align-items:center;justify-content:center;
  background:#fff;position:relative;overflow:hidden;
}

/* Animated dot grid */
.hero-dots{
  position:absolute;inset:0;pointer-events:none;
  background-image:radial-gradient(circle,#e2e8f0 1px,transparent 1px);
  background-size:30px 30px;
  opacity:0.45;
  animation:dotsBreath 8s ease-in-out infinite;
}
@keyframes dotsBreath{0%,100%{opacity:.45;background-size:30px 30px}50%{opacity:.35;background-size:32px 32px}}

/* Orange aurora glow */
.hero-aura{
  position:absolute;pointer-events:none;
  width:900px;height:700px;
  left:50%;top:50%;
  transform:translate(-50%,-52%);
  background:radial-gradient(ellipse at center,rgba(249,115,22,.07) 0%,rgba(251,146,60,.03) 35%,transparent 65%);
  animation:auraFloat 7s ease-in-out infinite;
}
@keyframes auraFloat{0%,100%{transform:translate(-50%,-52%) scale(1)}50%{transform:translate(-50%,-50%) scale(1.04)}}

/* Floating orbs */
.orb{
  position:absolute;border-radius:50%;
  pointer-events:none;filter:blur(60px);opacity:.25;
  animation:orbDrift var(--d,12s) ease-in-out infinite;
}
.orb1{width:300px;height:300px;background:#f97316;top:10%;left:5%;--d:11s}
.orb2{width:200px;height:200px;background:#fb923c;bottom:20%;right:8%;--d:14s;animation-delay:-4s}
.orb3{width:150px;height:150px;background:#fbbf24;top:60%;left:60%;--d:9s;animation-delay:-7s;opacity:.15}
@keyframes orbDrift{
  0%,100%{transform:translateY(0) translateX(0)}
  33%{transform:translateY(-30px) translateX(15px)}
  66%{transform:translateY(20px) translateX(-10px)}
}

.hero-inner{
  position:relative;z-index:2;
  display:flex;flex-direction:column;
  align-items:center;text-align:center;
  padding:88px 32px 110px;
  max-width:1000px;
}

/* Badge */
.hero-badge{
  display:inline-flex;align-items:center;gap:9px;
  background:#fff7ed;border:1px solid #fed7aa;
  border-radius:100px;padding:7px 18px;
  font-size:12.5px;font-weight:600;color:#f97316;
  margin-bottom:30px;
  opacity:0;animation:slideDown .7s cubic-bezier(.22,1,.36,1) .1s forwards;
}
.badge-pulse{
  width:8px;height:8px;border-radius:50%;
  background:#f97316;flex-shrink:0;
  animation:pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot{
  0%,100%{transform:scale(1);opacity:1;box-shadow:0 0 0 0 rgba(249,115,22,.4)}
  50%{transform:scale(.85);opacity:.6;box-shadow:0 0 0 6px rgba(249,115,22,0)}
}
@keyframes slideDown{from{opacity:0;transform:translateY(-12px)}to{opacity:1;transform:translateY(0)}}

/* Headline */
.hero-h1{
  font-size:clamp(48px,7vw,82px);
  font-weight:800;line-height:1.04;
  letter-spacing:-3px;color:#0f172a;
  margin-bottom:24px;
  opacity:0;animation:slideUp .8s cubic-bezier(.22,1,.36,1) .22s forwards;
}
.hero-h1 .or{
  color:#f97316;position:relative;display:inline-block;
}
.hero-h1 .or::after{
  content:'';
  position:absolute;left:0;right:100%;bottom:-4px;
  height:3px;border-radius:2px;background:#f97316;
  animation:lineGrow .9s cubic-bezier(.22,1,.36,1) 1.2s forwards;
}
@keyframes lineGrow{to{right:0}}
@keyframes slideUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}

.hero-sub{
  font-size:17.5px;color:#64748b;line-height:1.72;
  max-width:640px;margin:0 auto 40px;
  opacity:0;animation:slideUp .8s cubic-bezier(.22,1,.36,1) .36s forwards;
}

/* Buttons */
.hero-btns{
  display:flex;gap:13px;justify-content:center;
  margin-bottom:68px;
  opacity:0;animation:slideUp .8s cubic-bezier(.22,1,.36,1) .48s forwards;
}
.btn-pr{
  background:#f97316;color:#fff;
  font-size:15px;font-weight:700;
  padding:15px 32px;border-radius:13px;
  box-shadow:0 4px 20px rgba(249,115,22,.4);
  display:inline-flex;align-items:center;gap:7px;
  transition:all .2s cubic-bezier(.22,1,.36,1);
  position:relative;overflow:hidden;
}
.btn-pr::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,.15),transparent);
  opacity:0;transition:opacity .2s;
}
.btn-pr:hover{background:#ea580c;transform:translateY(-2px);box-shadow:0 8px 30px rgba(249,115,22,.5)}
.btn-pr:hover::before{opacity:1}
.btn-pr:active{transform:translateY(0);box-shadow:0 4px 16px rgba(249,115,22,.35)}
.btn-sc{
  background:#fff;color:#0f172a;
  font-size:15px;font-weight:600;
  padding:15px 32px;border-radius:13px;
  border:1.5px solid #e2e8f0;
  box-shadow:0 1px 4px rgba(0,0,0,.05);
  display:inline-flex;align-items:center;gap:7px;
  transition:all .2s;
}
.btn-sc:hover{border-color:#94a3b8;background:#f8fafc;transform:translateY(-1px)}

/* Stats */
.hero-stats{
  display:flex;gap:60px;
  padding-top:30px;border-top:1px solid #f1f5f9;
  opacity:0;animation:slideUp .8s cubic-bezier(.22,1,.36,1) .62s forwards;
}
.stat-n{font-size:44px;font-weight:800;line-height:1;color:#0f172a;font-variant-numeric:tabular-nums}
.stat-n .hl{color:#f97316}
.stat-l{font-size:13px;color:#94a3b8;margin-top:6px;font-weight:500;letter-spacing:.2px}

/* ═══════════════════════════════════════════════════════
   LIVE TICKER STRIP
════════════════════════════════════════════════════════ */
.ticker-wrap{
  background:#fafafa;
  border-top:1px solid #f1f5f9;border-bottom:1px solid #f1f5f9;
  overflow:hidden;position:relative;height:44px;display:flex;align-items:center;
}
.ticker-wrap::before,.ticker-wrap::after{
  content:'';position:absolute;top:0;bottom:0;width:100px;z-index:2;pointer-events:none;
}
.ticker-wrap::before{left:0;background:linear-gradient(90deg,#fafafa 0%,transparent 100%)}
.ticker-wrap::after{right:0;background:linear-gradient(-90deg,#fafafa 0%,transparent 100%)}
.ticker-track{
  display:flex;animation:scrollTicker 30s linear infinite;
  will-change:transform;
}
@keyframes scrollTicker{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.tick{
  display:inline-flex;align-items:center;gap:8px;
  padding:0 28px;border-right:1px solid #f1f5f9;white-space:nowrap;
}
.tick-dot{width:6px;height:6px;border-radius:50%;flex-shrink:0}
.tick-lbl{font-size:12.5px;font-weight:500;color:#475569}
.tick-val{font-size:12.5px;font-weight:700}

/* ═══════════════════════════════════════════════════════
   LOGO STRIP
════════════════════════════════════════════════════════ */
.logos-section{background:#f8fafc;border-bottom:1px solid #f1f5f9;padding:28px 0}
.logos-inner{max-width:1560px;margin:0 auto;padding:0 48px}
.logos-lbl{font-size:11px;font-weight:700;color:#94a3b8;text-transform:uppercase;letter-spacing:1.5px;text-align:center;margin-bottom:16px}
.logos-row{display:flex;gap:8px;flex-wrap:wrap;justify-content:center}
.lchip{
  background:#fff;border:1px solid #e2e8f0;border-radius:8px;
  padding:8px 17px;font-size:11.5px;font-weight:700;
  color:#94a3b8;letter-spacing:.4px;text-transform:uppercase;
  transition:all .22s cubic-bezier(.22,1,.36,1);
}
.lchip:hover{border-color:#f97316;color:#f97316;transform:translateY(-2px);box-shadow:0 4px 14px rgba(249,115,22,.15)}

/* ═══════════════════════════════════════════════════════
   UTILITY
════════════════════════════════════════════════════════ */
.section{padding:100px 0}
.section-alt{padding:100px 0;background:#f8fafc}
.wrap{max-width:1560px;margin:0 auto;padding:0 48px}
.sec-head{text-align:center;margin-bottom:64px}
.eyebrow{
  display:inline-flex;align-items:center;gap:7px;
  background:#fff7ed;border:1px solid #fed7aa;
  border-radius:100px;padding:5px 14px;
  font-size:11.5px;font-weight:600;color:#f97316;
  margin-bottom:14px;letter-spacing:.2px;
}
.eyebrow::before{content:'';width:5px;height:5px;border-radius:50%;background:#f97316;flex-shrink:0}
h2.big{
  font-size:clamp(28px,3.8vw,46px);font-weight:800;
  letter-spacing:-1.2px;line-height:1.1;color:#0f172a;
  margin-bottom:14px;
}
h2.big .or{color:#f97316}
.sub{font-size:17px;color:#64748b;line-height:1.7;max-width:700px;margin:0 auto}

/* Scroll reveal */
.rev{
  opacity:0;transform:translateY(30px);
  transition:opacity .7s cubic-bezier(.22,1,.36,1),
             transform .7s cubic-bezier(.22,1,.36,1);
}
.rev.on{opacity:1;transform:translateY(0)}
.rev.d1{transition-delay:.08s}.rev.d2{transition-delay:.16s}.rev.d3{transition-delay:.24s}

/* ═══════════════════════════════════════════════════════
   PROBLEM SECTION
════════════════════════════════════════════════════════ */
.prob-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.prob-card{
  background:#fff;border:1px solid #e2e8f0;border-radius:20px;
  padding:34px 28px;text-align:center;
  transition:all .3s cubic-bezier(.22,1,.36,1);
  position:relative;overflow:hidden;
}
.prob-card::before{
  content:'';position:absolute;inset:0;opacity:0;
  transition:opacity .3s;
  background:linear-gradient(135deg,rgba(249,115,22,.02) 0%,rgba(249,115,22,.05) 100%);
}
.prob-card:hover{box-shadow:0 16px 48px rgba(0,0,0,.09);transform:translateY(-5px)}
.prob-card:hover::before{opacity:1}
.prob-num{font-size:54px;font-weight:800;line-height:1;margin-bottom:10px;font-variant-numeric:tabular-nums}
.prob-title{font-size:15px;font-weight:700;color:#0f172a;margin-bottom:8px}
.prob-desc{font-size:13px;color:#64748b;line-height:1.65}

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════════════ */
.how-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.how-steps{display:flex;flex-direction:column;gap:6px}
.how-step{
  display:flex;gap:16px;align-items:flex-start;
  padding:18px;border-radius:14px;border:1px solid transparent;
  transition:all .22s cubic-bezier(.22,1,.36,1);
}
.how-step:hover{background:#fff7ed;border-color:#fed7aa;transform:translateX(4px)}
.step-badge{
  width:34px;height:34px;border-radius:9px;background:#f97316;
  display:flex;align-items:center;justify-content:center;
  font-size:12.5px;font-weight:800;color:#fff;flex-shrink:0;
}
.step-t{font-size:14.5px;font-weight:700;color:#0f172a;margin-bottom:4px}
.step-d{font-size:13.5px;color:#64748b;line-height:1.6}

/* Flow visualizer */
.flow-vis{
  background:#f8fafc;border:1px solid #e2e8f0;
  border-radius:22px;padding:26px;
  box-shadow:0 4px 24px rgba(0,0,0,.04);
}
.flow-hdr{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}
.flow-ttl{font-size:11px;font-weight:700;color:#94a3b8;text-transform:uppercase;letter-spacing:1.5px}
.live-chip{display:flex;align-items:center;gap:5px;font-size:11px;font-weight:700;color:#dc2626}
.live-dot{width:6px;height:6px;border-radius:50%;background:#dc2626;animation:blink 1.4s ease-in-out infinite}
@keyframes blink{0%,100%{opacity:1}50%{opacity:.2}}
.flow-/* removed bad body rule */
.f-row{
  background:#fff;border:1px solid #e2e8f0;border-radius:11px;
  padding:12px 14px;display:flex;gap:9px;align-items:center;
  font-size:13px;color:#0f172a;
  animation:fadeSlide .4s cubic-bezier(.22,1,.36,1) both;
}
@keyframes fadeSlide{from{opacity:0;transform:translateX(12px)}to{opacity:1;transform:translateX(0)}}
.f-brs{
  background:#fff7ed;border:1px solid #fed7aa;border-radius:11px;
  padding:12px 14px;display:flex;gap:9px;align-items:center;
  font-size:13px;animation:fadeSlide .4s cubic-bezier(.22,1,.36,1) .08s both;
}
.brs-dot{width:7px;height:7px;border-radius:50%;background:#f97316;flex-shrink:0;animation:blink 1.4s infinite}
.f-eng{
  background:#fff;border:1.5px solid #f97316;border-radius:11px;
  padding:12px 14px;font-size:13px;color:#0f172a;
  animation:fadeSlide .4s cubic-bezier(.22,1,.36,1) .16s both;
}
.f-win{
  background:#dcfce7;border:1px solid rgba(22,163,74,.22);border-radius:11px;
  padding:12px 14px;display:flex;justify-content:space-between;align-items:center;
  animation:fadeSlide .4s cubic-bezier(.22,1,.36,1) .24s both;
}
.f-sep{text-align:center;font-size:11px;font-weight:700;color:#e2e8f0;margin:2px 0}
.flow-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-top:14px}
.fstat{background:#fff;border:1px solid #e2e8f0;border-radius:10px;padding:12px;text-align:center}
.fstat-n{font-size:17px;font-weight:800;color:#0f172a}
.fstat-l{font-size:10px;color:#94a3b8;margin-top:2px}

/* ═══════════════════════════════════════════════════════
   FEATURES GRID
════════════════════════════════════════════════════════ */
.feat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.feat-card{
  background:#fff;border:1px solid #e2e8f0;border-radius:18px;padding:26px;
  transition:all .28s cubic-bezier(.22,1,.36,1);
  position:relative;overflow:hidden;
}
.feat-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:2px;
  background:transparent;transition:background .28s;
}
.feat-card:hover{
  border-color:#f97316;transform:translateY(-4px);
  box-shadow:0 0 0 3px rgba(249,115,22,.07), 0 14px 44px rgba(0,0,0,.09);
}
.feat-card:hover::before{background:linear-gradient(90deg,#f97316 0%,#fb923c 50%,#fbbf24 100%)}
.feat-icon{
  width:46px;height:46px;border-radius:12px;background:#fff7ed;
  display:flex;align-items:center;justify-content:center;font-size:21px;
  margin-bottom:14px;transition:transform .25s cubic-bezier(.22,1,.36,1);
}
.feat-card:hover .feat-icon{transform:scale(1.12) rotate(-3deg)}
.feat-title{font-size:15px;font-weight:700;color:#0f172a;margin-bottom:7px}
.feat-desc{font-size:13px;color:#64748b;line-height:1.65}
.feat-kpi{margin-top:13px;padding-top:11px;border-top:1px solid #f8fafc;font-size:11.5px;font-weight:700;color:#f97316}

/* ═══════════════════════════════════════════════════════
   INTENT JOURNEY
════════════════════════════════════════════════════════ */
.intent-row{display:grid;grid-template-columns:repeat(9,1fr);gap:8px}
.ic{
  border:1.5px solid #e2e8f0;border-radius:13px;
  padding:14px 5px;text-align:center;background:#fff;
  transition:all .25s cubic-bezier(.22,1,.36,1);
  position:relative;overflow:hidden;
}
.ic:hover{
  transform:translateY(-4px);border-color:#f97316;background:#fff7ed;
  box-shadow:0 6px 20px rgba(249,115,22,.15);
}
.ic-n{font-size:10px;font-weight:700;color:#f97316;margin-bottom:5px;letter-spacing:.5px}
.ic-i{font-size:19px;display:block;margin-bottom:5px}
.ic-l{font-size:10px;font-weight:700;color:#0f172a;line-height:1.3}
.ic-k{font-size:9px;color:#94a3b8;margin-top:4px}

/* Active intent chips */
.ic-act{border-color:#f97316;background:#fff7ed}
.ic-red{border-color:#fecaca;background:#fef2f2}
.ic-grn1{border-color:rgba(22,163,74,.3);background:#dcfce7}
.ic-grn2{border-color:rgba(22,163,74,.2);background:#f0fdf4}

/* ═══════════════════════════════════════════════════════
   METRICS BAND
════════════════════════════════════════════════════════ */
.metrics-band{
  background:#0f172a;padding:88px 0;
  position:relative;overflow:hidden;
}
.metrics-band::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse at 50% 50%,rgba(249,115,22,.08) 0%,transparent 60%);
}
.metrics-grid{
  display:grid;grid-template-columns:repeat(5,1fr);gap:24px;
  text-align:center;position:relative;z-index:1;
}
.met-n{
  font-size:48px;font-weight:800;color:#f97316;
  display:block;line-height:1;font-variant-numeric:tabular-nums;
  transition:all .3s;
}
.met-l{font-size:13px;color:rgba(255,255,255,.38);display:block;margin-top:9px;letter-spacing:.2px}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════════ */
.tgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.tcard{
  background:#fff;border:1px solid #e2e8f0;border-radius:20px;padding:28px;
  transition:all .28s cubic-bezier(.22,1,.36,1);
}
.tcard:hover{box-shadow:0 14px 44px rgba(0,0,0,.09);transform:translateY(-4px)}
.stars{color:#f97316;font-size:13px;letter-spacing:2px;margin-bottom:14px}
.tq{font-size:14.5px;color:#374151;line-height:1.76;font-style:italic;margin-bottom:18px}
.tau{display:flex;align-items:center;gap:11px}
.tav{width:40px;height:40px;border-radius:50%;background:#fff7ed;display:flex;align-items:center;justify-content:center;font-size:17px;flex-shrink:0}
.tn{font-size:14px;font-weight:700;color:#0f172a}
.tr{font-size:12px;color:#94a3b8;margin-top:1px}

/* ═══════════════════════════════════════════════════════
   ANIMATED BRS COUNTER SECTION
════════════════════════════════════════════════════════ */
.brs-section{
  background:#0f172a;padding:96px 0;
  position:relative;overflow:hidden;
}
.brs-section::before{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(circle at 20% 50%,rgba(249,115,22,.07) 0%,transparent 45%),
    radial-gradient(circle at 80% 50%,rgba(251,146,60,.05) 0%,transparent 45%);
}
.brs-inner{
  max-width:1560px;margin:0 auto;padding:0 32px;
  display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;
  position:relative;z-index:1;
}
.brs-score-wrap{
  display:flex;flex-direction:column;align-items:center;gap:24px;
}
.brs-ring{
  position:relative;width:220px;height:220px;
}
.brs-ring svg{width:220px;height:220px;transform:rotate(-90deg)}
.ring-bg{fill:none;stroke:rgba(255,255,255,.06);stroke-width:12}
.ring-prog{
  fill:none;stroke:url(#ringGrad);stroke-width:12;
  stroke-linecap:round;
  stroke-dasharray:589;stroke-dashoffset:589;
  transition:stroke-dashoffset 2s cubic-bezier(.22,1,.36,1);
}
.ring-prog.animate{stroke-dashoffset:156}/* 589 * (1 - 0.74) = ~153 */
.brs-center{
  position:absolute;inset:0;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
}
.brs-num{
  font-size:54px;font-weight:800;color:#fff;line-height:1;
  font-variant-numeric:tabular-nums;
}
.brs-sub{font-size:12px;font-weight:600;color:rgba(255,255,255,.45);letter-spacing:1px;text-transform:uppercase;margin-top:2px}
.brs-label{
  font-size:14px;font-weight:700;color:#f97316;
  background:rgba(249,115,22,.12);border:1px solid rgba(249,115,22,.2);
  border-radius:100px;padding:6px 16px;
}
.brs-stages{
  display:flex;gap:8px;
}
.brs-st{
  flex:1;padding:8px 4px;border-radius:8px;text-align:center;font-size:11px;font-weight:700;
  transition:all .3s;
}
.brs-st.active-stage{transform:scale(1.05)}

/* ═══════════════════════════════════════════════════════
   CTA BAND
════════════════════════════════════════════════════════ */
.cta-band{
  background:#f97316;padding:92px 0;
  position:relative;overflow:hidden;
}
.cta-band::before{
  content:'';position:absolute;right:-150px;top:-150px;
  width:600px;height:600px;border-radius:50%;
  background:rgba(255,255,255,.07);
  animation:ctaOrb 10s ease-in-out infinite;
}
.cta-band::after{
  content:'';position:absolute;left:-80px;bottom:-100px;
  width:400px;height:400px;border-radius:50%;
  background:rgba(255,255,255,.05);
  animation:ctaOrb 14s ease-in-out infinite reverse;
}
@keyframes ctaOrb{0%,100%{transform:scale(1) translate(0,0)}50%{transform:scale(1.06) translate(10px,-10px)}}
.cta-grid{
  position:relative;z-index:2;
  display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;
}
.cta-h2{
  font-size:clamp(28px,3.2vw,42px);font-weight:800;
  line-height:1.1;letter-spacing:-.8px;color:#fff;margin-bottom:14px;
}
.cta-p{font-size:16.5px;color:rgba(255,255,255,.82);line-height:1.7;margin-bottom:30px}
.btn-wh{
  background:#fff;color:#0f172a;font-size:15px;font-weight:700;
  padding:15px 30px;border-radius:13px;
  box-shadow:0 2px 12px rgba(0,0,0,.1);
  display:inline-flex;align-items:center;gap:6px;
  transition:all .2s;
}
.btn-wh:hover{transform:translateY(-2px);box-shadow:0 6px 22px rgba(0,0,0,.14)}
.btn-gh{
  background:rgba(255,255,255,.14);color:#fff;font-size:15px;font-weight:600;
  padding:15px 30px;border-radius:13px;border:1.5px solid rgba(255,255,255,.3);
  display:inline-flex;align-items:center;gap:6px;transition:all .2s;
}
.btn-gh:hover{background:rgba(255,255,255,.22)}
.trust-row{display:flex;gap:16px;flex-wrap:wrap;margin-top:20px}
.trust-item{display:flex;align-items:center;gap:6px;font-size:13px;color:rgba(255,255,255,.8)}
.trust-item::before{content:'✓';font-weight:700;color:#fff}
.cta-box{
  background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.2);
  border-radius:22px;padding:28px;
}
.d-item{display:flex;gap:12px;margin-bottom:14px}
.d-item:last-child{margin-bottom:0}
.d-icon{font-size:18px;flex-shrink:0;margin-top:1px}
.d-t{font-size:14px;font-weight:600;color:#fff}
.d-s{font-size:12px;color:rgba(255,255,255,.6);margin-top:2px}

/* ═══════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
footer{background:#0f172a;padding:64px 0 32px}
.fg{display:grid;grid-template-columns:2fr 1fr 1fr 1fr 1fr;gap:40px;margin-bottom:48px}
.f-desc{font-size:13.5px;color:rgba(255,255,255,.32);line-height:1.7;margin-top:14px;max-width:230px}
.fc h5{font-size:11px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:rgba(255,255,255,.25);margin-bottom:12px}
.fc a{display:block;font-size:13.5px;color:rgba(255,255,255,.42);margin-bottom:8px;transition:color .14s}
.fc a:hover{color:#f97316}
.f-btm{border-top:1px solid rgba(255,255,255,.05);padding-top:22px;display:flex;justify-content:space-between;align-items:center}
.f-btm p{font-size:13px;color:rgba(255,255,255,.22)}

/* ═══════════════════════════════════════════════════════
   PLATFORM ARCHITECTURE SECTION
════════════════════════════════════════════════════════ */
.plat-sec {
  background: linear-gradient(180deg, #f8fafc 0%, #fff7ed 50%, #f8fafc 100%);
  padding: 64px 0 60px;
  position: relative; overflow: hidden;
}
.plat-sec::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(249,115,22,.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(249,115,22,.08) 0%, transparent 50%);
}
.plat-sec .sec-head { position: relative; z-index: 1; margin-bottom: 8px; }

/* Panel titles */
.panel-titles {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.panel-title-bad {
  text-align: center; padding: 0 12px;
}
.panel-title-good {
  text-align: center; padding: 0 12px;
}
.pt-label {
  font-size: 16px; font-weight: 800; letter-spacing: -.3px; line-height: 1.2;
  margin-bottom: 6px;
}
.pt-label-bad  { color: #dc2626; }
.pt-label-good { color: #f97316; }
.pt-sub {
  font-size: 12px; font-weight: 500; line-height: 1.5;
  max-width: 280px; margin: 0 auto;
}
.pt-sub-bad  { color: #94a3b8; }
.pt-sub-good { color: #78716c; }

/* Two-panel layout */
.plat-panels {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  position: relative; z-index: 1;
  align-items: stretch;
}

/* VS column */
.plat-vs-col {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 0 8px;
}
.pvs-line {
  flex: 1; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(15,23,42,.15), transparent);
  min-height: 40px;
}
.pvs-badge {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: #fff;
  border: 2.5px solid #0f172a;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; color: #0f172a;
  letter-spacing: .5px;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}

/* Panel wrappers — equal height via grid stretch */
.plat-panel {
  border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
}
.plat-panel-bad  {
  border: 1.5px solid rgba(220,38,38,.25);
  background: #fff;
  box-shadow: 0 4px 40px rgba(220,38,38,.06), 0 1px 0 rgba(220,38,38,.1);
}
.plat-panel-good {
  border: 1.5px solid rgba(249,115,22,.35);
  background: #fff;
  box-shadow: 0 4px 40px rgba(249,115,22,.1), 0 1px 0 rgba(249,115,22,.15);
}

/* Panel header strip */
.pp-hdr {
  padding: 13px 20px;
  display: flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: .3px;
  text-transform: uppercase;
  border-bottom: 1px solid;
  flex-shrink: 0;
}
.pp-hdr-bad  { background: rgba(220,38,38,.06); border-color: rgba(220,38,38,.15); color: #dc2626; }
.pp-hdr-good { background: rgba(249,115,22,.07); border-color: rgba(249,115,22,.2); color: #ea580c; }
.pp-hdr-dot  { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.pp-hdr-bad  .pp-hdr-dot { background: #ef4444; }
.pp-hdr-good .pp-hdr-dot { background: #f97316; animation: pulseDot 1.8s infinite; }

/* SVG diagram */
.diag-wrap { flex: 1; }
.diag-wrap svg { display: block; width: 100%; height: 100%; }

/* Pills row */
.pp-pills {
  padding: 11px 16px; display: flex; gap: 6px; flex-wrap: wrap;
  border-top: 1px solid rgba(249,115,22,.12);
  background: rgba(249,115,22,.03);
  flex-shrink: 0;
}
.pp-pill {
  font-size: 10.5px; font-weight: 600; color: #ea580c;
  background: rgba(249,115,22,.1); border: 1px solid rgba(249,115,22,.2);
  border-radius: 100px; padding: 4px 11px;
}

/* Saving banner */
.saving-banner {
  margin-top: 24px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  border-radius: 18px; padding: 32px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  position: relative; z-index: 1; overflow: hidden;
}
.saving-banner::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(249,115,22,.08);
  pointer-events: none;
}
.sb-left { flex: 1; }
.sb-eyebrow {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px;
}
.sb-headline {
  font-size: clamp(22px, 2.8vw, 32px); font-weight: 800;
  color: #fff; line-height: 1.1; letter-spacing: -.5px;
}
.sb-headline span { color: #f97316; }
.sb-sub {
  font-size: 14px; color: rgba(255,255,255,.5); margin-top: 8px; line-height: 1.6;
}
.sb-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px; flex-shrink: 0;
}
.sb-amount {
  font-size: clamp(36px, 4vw, 52px); font-weight: 900;
  color: #f97316; line-height: 1;
  text-shadow: 0 0 40px rgba(249,115,22,.4);
}
.sb-amount-sub { font-size: 13px; color: rgba(255,255,255,.45); text-align: right; }
.sb-cta {
  background: #f97316; color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  padding: 12px 24px; border-radius: 11px; border: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all .2s; cursor: pointer;
  box-shadow: 0 4px 18px rgba(249,115,22,.4);
}
.sb-cta:hover { background: #ea580c; transform: translateY(-2px); }

/* animations */
@keyframes badPulse { 0%,100%{opacity:.5} 50%{opacity:.12} }
@keyframes zigMove  { 0%{stroke-dashoffset:800} 100%{stroke-dashoffset:0} }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */
@media(max-width:900px){
  .how-grid,.cta-grid,.brs-inner,.teams-grid{grid-template-columns:1fr}
  .prob-grid,.feat-grid,.tgrid{grid-template-columns:1fr}
  .intent-row{grid-template-columns:repeat(3,1fr)}
  .metrics-grid{grid-template-columns:repeat(2,1fr)}
  .hero-stats{gap:32px}
  .nl{display:none}
  .fg{grid-template-columns:1fr 1fr 1fr}
  .plat-compare{grid-template-columns:1fr;gap:24px}
  .plat-vs{flex-direction:row;padding-top:0;justify-content:center}
  .vs-line{width:60px;height:1px;background:rgba(255,255,255,.15)!important}
  .uni-row{grid-template-columns:repeat(2,1fr)}
}

/* ═══════════════════════════════════════════════════════
   TEAMS SECTION
════════════════════════════════════════════════════════ */
.teams-section { padding: 100px 0; background: #fff; }
.teams-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px;
}
.team-card {
  border-radius: 20px; padding: 32px 28px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  transition: all .28s cubic-bezier(.22,1,.36,1);
  position: relative; overflow: hidden;
}
.team-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--tc); border-radius: 20px 20px 0 0;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.09);
  border-color: var(--tc);
}
.team-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--tb); display: flex; align-items: center;
  justify-content: center; font-size: 24px; margin-bottom: 18px;
  transition: transform .25s cubic-bezier(.22,1,.36,1);
}
.team-card:hover .team-icon-wrap { transform: scale(1.1) rotate(-4deg); }
.team-name {
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--tc); margin-bottom: 6px;
}
.team-title {
  font-size: 19px; font-weight: 800; color: #0f172a;
  line-height: 1.2; letter-spacing: -.4px; margin-bottom: 12px;
}
.team-sub {
  font-size: 13.5px; color: #64748b; line-height: 1.65; margin-bottom: 20px;
}
.team-wins { display: flex; flex-direction: column; gap: 8px; }
.team-win {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: #374151; line-height: 1.5;
}
.team-win::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--tc); flex-shrink: 0; margin-top: 6px;
}
.team-kpi-row {
  display: flex; gap: 16px; margin-top: 20px;
  padding-top: 18px; border-top: 1px solid #f1f5f9;
}
.team-kpi { text-align: center; }
.team-kpi-n { font-size: 22px; font-weight: 800; color: var(--tc); line-height: 1; }
.team-kpi-l { font-size: 10px; color: #94a3b8; margin-top: 3px; font-weight: 500; }

.page-hero{background:#0f172a;padding:140px 0 80px;position:relative;overflow:hidden;}
.page-hero::before{content:"";position:absolute;inset:0;background:radial-gradient(ellipse 80% 60% at 50% 0%, rgba(249,115,22,.13) 0%, transparent 70%);pointer-events:none;}
.page-hero-inner{max-width:1560px;margin:0 auto;padding:0 32px;position:relative;z-index:1;text-align:center;}
.page-eyebrow{display:inline-flex;align-items:center;gap:7px;background:rgba(249,115,22,.12);border:1px solid rgba(249,115,22,.25);border-radius:100px;padding:6px 16px;font-size:12px;font-weight:700;color:#f97316;text-transform:uppercase;letter-spacing:1.2px;margin-bottom:22px;}
.page-h1{font-size:clamp(36px,5vw,64px);font-weight:800;line-height:1.05;letter-spacing:-2px;color:#fff;margin-bottom:20px;}
.page-h1 .or{color:#f97316}
.page-sub{font-size:18px;color:rgba(255,255,255,.65);line-height:1.7;max-width:620px;margin:0 auto;}

.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.blog-card{background:#fff;border:1px solid #e2e8f0;border-radius:20px;overflow:hidden;transition:all .25s}
.blog-card:hover{transform:translateY(-4px);box-shadow:0 14px 40px rgba(0,0,0,.08);border-color:#f97316}
.blog-thumb{width:100%;height:180px;display:flex;align-items:center;justify-content:center;font-size:52px;background:var(--tb,#f8fafc)}
.blog-body{padding:22px}
.blog-cat{font-size:11px;font-weight:700;color:#f97316;text-transform:uppercase;letter-spacing:1px;margin-bottom:8px}
.blog-title{font-size:17px;font-weight:800;color:#0f172a;line-height:1.3;margin-bottom:8px}
.blog-excerpt{font-size:13.5px;color:#64748b;line-height:1.65;margin-bottom:16px}
.blog-meta{display:flex;align-items:center;gap:8px;font-size:12px;color:#94a3b8}
.featured-post{background:linear-gradient(135deg,#0f172a 0%,#1e293b 100%);border-radius:22px;padding:48px;display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center;margin-bottom:56px;overflow:hidden;position:relative}
.fp-tag{display:inline-flex;align-items:center;background:rgba(249,115,22,.15);border:1px solid rgba(249,115,22,.3);border-radius:100px;padding:5px 14px;font-size:11px;font-weight:700;color:#f97316;text-transform:uppercase;letter-spacing:1px;margin-bottom:16px}
.fp-title{font-size:28px;font-weight:800;color:#fff;line-height:1.2;letter-spacing:-.6px;margin-bottom:14px}
.fp-excerpt{font-size:15px;color:rgba(255,255,255,.6);line-height:1.7;margin-bottom:24px}
.fp-visual{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:16px;padding:24px;min-height:200px;display:flex;align-items:center;justify-content:center;font-size:64px}
.nl-box{background:#f8fafc;border:1px solid #e2e8f0;border-radius:18px;padding:40px;text-align:center;margin-top:56px}
.nl-form{display:flex;gap:10px;max-width:420px;margin:0 auto}
.nl-form input{flex:1;background:#fff;border:1px solid #e2e8f0;border-radius:10px;padding:13px 16px;font-size:14px;font-family:inherit;outline:none}
.nl-form input:focus{border-color:#f97316}



/* === why_switch === */


/* ═══════════════════════════════════════════════════════
   RESET
════════════════════════════════════════════════════════ */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;font-size:16px}
body{
  font-family:'Plus Jakarta Sans',system-ui,sans-serif;
  background:#ffffff;
  color:#0f172a;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
button{font-family:inherit;cursor:pointer;border:none;background:none}



/* ═══════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════ */
nav{
  position:fixed;top:0;left:0;right:0;z-index:900;
  height:66px;
  background:rgba(255,255,255,0.93);
  backdrop-filter:blur(22px);-webkit-backdrop-filter:blur(22px);
  border-bottom:1px solid rgba(0,0,0,0.055);
  display:flex;align-items:center;
  transition:box-shadow .3s;
}
nav.scrolled{box-shadow:0 2px 28px rgba(0,0,0,0.07)}
.nw{max-width:1560px;margin:0 auto;padding:0 48px;display:flex;align-items:center;width:100%}
.logo{display:flex;align-items:center;gap:10px;margin-right:auto}
.logo svg{width:46px;height:36px;flex-shrink:0}
.logo-t{font-size:17px;font-weight:800;letter-spacing:1px;color:#0f172a;text-transform:uppercase}
.nl{display:flex;list-style:none;gap:2px;margin-right:24px}
.nl a{
  font-size:17.5px;font-weight:500;color:#64748b;
  padding:7px 13px;border-radius:8px;
  transition:color .14s,background .14s;
  display:block;
}
.nl a:hover{color:#0f172a;background:#f8fafc}
.nav-btn{
  background:#f97316;color:#fff;
  font-size:13.5px;font-weight:600;
  padding:10px 22px;border-radius:10px;
  box-shadow:0 2px 14px rgba(249,115,22,0.38);
  transition:all .2s;
  display:inline-flex;align-items:center;gap:6px;
}
.nav-btn:hover{background:#ea580c;transform:translateY(-1px);box-shadow:0 4px 20px rgba(249,115,22,0.48)}

/* ═══════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════ */
.hero{
  min-height:calc(100vh - 44px);padding-top:76px;
  display:flex;align-items:center;justify-content:center;
  background:#fff;position:relative;overflow:hidden;
}

/* Animated dot grid */
.hero-dots{
  position:absolute;inset:0;pointer-events:none;
  background-image:radial-gradient(circle,#e2e8f0 1px,transparent 1px);
  background-size:30px 30px;
  opacity:0.45;
  animation:dotsBreath 8s ease-in-out infinite;
}
@keyframes dotsBreath{0%,100%{opacity:.45;background-size:30px 30px}50%{opacity:.35;background-size:32px 32px}}

/* Orange aurora glow */
.hero-aura{
  position:absolute;pointer-events:none;
  width:900px;height:700px;
  left:50%;top:50%;
  transform:translate(-50%,-52%);
  background:radial-gradient(ellipse at center,rgba(249,115,22,.07) 0%,rgba(251,146,60,.03) 35%,transparent 65%);
  animation:auraFloat 7s ease-in-out infinite;
}
@keyframes auraFloat{0%,100%{transform:translate(-50%,-52%) scale(1)}50%{transform:translate(-50%,-50%) scale(1.04)}}

/* Floating orbs */
.orb{
  position:absolute;border-radius:50%;
  pointer-events:none;filter:blur(60px);opacity:.25;
  animation:orbDrift var(--d,12s) ease-in-out infinite;
}
.orb1{width:300px;height:300px;background:#f97316;top:10%;left:5%;--d:11s}
.orb2{width:200px;height:200px;background:#fb923c;bottom:20%;right:8%;--d:14s;animation-delay:-4s}
.orb3{width:150px;height:150px;background:#fbbf24;top:60%;left:60%;--d:9s;animation-delay:-7s;opacity:.15}
@keyframes orbDrift{
  0%,100%{transform:translateY(0) translateX(0)}
  33%{transform:translateY(-30px) translateX(15px)}
  66%{transform:translateY(20px) translateX(-10px)}
}

.hero-inner{
  position:relative;z-index:2;
  display:flex;flex-direction:column;
  align-items:center;text-align:center;
  padding:88px 32px 110px;
  max-width:1000px;
}

/* Badge */
.hero-badge{
  display:inline-flex;align-items:center;gap:9px;
  background:#fff7ed;border:1px solid #fed7aa;
  border-radius:100px;padding:7px 18px;
  font-size:12.5px;font-weight:600;color:#f97316;
  margin-bottom:30px;
  opacity:0;animation:slideDown .7s cubic-bezier(.22,1,.36,1) .1s forwards;
}
.badge-pulse{
  width:8px;height:8px;border-radius:50%;
  background:#f97316;flex-shrink:0;
  animation:pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot{
  0%,100%{transform:scale(1);opacity:1;box-shadow:0 0 0 0 rgba(249,115,22,.4)}
  50%{transform:scale(.85);opacity:.6;box-shadow:0 0 0 6px rgba(249,115,22,0)}
}
@keyframes slideDown{from{opacity:0;transform:translateY(-12px)}to{opacity:1;transform:translateY(0)}}

/* Headline */
.hero-h1{
  font-size:clamp(48px,7vw,82px);
  font-weight:800;line-height:1.04;
  letter-spacing:-3px;color:#0f172a;
  margin-bottom:24px;
  opacity:0;animation:slideUp .8s cubic-bezier(.22,1,.36,1) .22s forwards;
}
.hero-h1 .or{
  color:#f97316;position:relative;display:inline-block;
}
.hero-h1 .or::after{
  content:'';
  position:absolute;left:0;right:100%;bottom:-4px;
  height:3px;border-radius:2px;background:#f97316;
  animation:lineGrow .9s cubic-bezier(.22,1,.36,1) 1.2s forwards;
}
@keyframes lineGrow{to{right:0}}
@keyframes slideUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}

.hero-sub{
  font-size:17.5px;color:#64748b;line-height:1.72;
  max-width:640px;margin:0 auto 40px;
  opacity:0;animation:slideUp .8s cubic-bezier(.22,1,.36,1) .36s forwards;
}

/* Buttons */
.hero-btns{
  display:flex;gap:13px;justify-content:center;
  margin-bottom:68px;
  opacity:0;animation:slideUp .8s cubic-bezier(.22,1,.36,1) .48s forwards;
}
.btn-pr{
  background:#f97316;color:#fff;
  font-size:15px;font-weight:700;
  padding:15px 32px;border-radius:13px;
  box-shadow:0 4px 20px rgba(249,115,22,.4);
  display:inline-flex;align-items:center;gap:7px;
  transition:all .2s cubic-bezier(.22,1,.36,1);
  position:relative;overflow:hidden;
}
.btn-pr::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,.15),transparent);
  opacity:0;transition:opacity .2s;
}
.btn-pr:hover{background:#ea580c;transform:translateY(-2px);box-shadow:0 8px 30px rgba(249,115,22,.5)}
.btn-pr:hover::before{opacity:1}
.btn-pr:active{transform:translateY(0);box-shadow:0 4px 16px rgba(249,115,22,.35)}
.btn-sc{
  background:#fff;color:#0f172a;
  font-size:15px;font-weight:600;
  padding:15px 32px;border-radius:13px;
  border:1.5px solid #e2e8f0;
  box-shadow:0 1px 4px rgba(0,0,0,.05);
  display:inline-flex;align-items:center;gap:7px;
  transition:all .2s;
}
.btn-sc:hover{border-color:#94a3b8;background:#f8fafc;transform:translateY(-1px)}

/* Stats */
.hero-stats{
  display:flex;gap:60px;
  padding-top:30px;border-top:1px solid #f1f5f9;
  opacity:0;animation:slideUp .8s cubic-bezier(.22,1,.36,1) .62s forwards;
}
.stat-n{font-size:44px;font-weight:800;line-height:1;color:#0f172a;font-variant-numeric:tabular-nums}
.stat-n .hl{color:#f97316}
.stat-l{font-size:13px;color:#94a3b8;margin-top:6px;font-weight:500;letter-spacing:.2px}

/* ═══════════════════════════════════════════════════════
   LIVE TICKER STRIP
════════════════════════════════════════════════════════ */
.ticker-wrap{
  background:#fafafa;
  border-top:1px solid #f1f5f9;border-bottom:1px solid #f1f5f9;
  overflow:hidden;position:relative;height:44px;display:flex;align-items:center;
}
.ticker-wrap::before,.ticker-wrap::after{
  content:'';position:absolute;top:0;bottom:0;width:100px;z-index:2;pointer-events:none;
}
.ticker-wrap::before{left:0;background:linear-gradient(90deg,#fafafa 0%,transparent 100%)}
.ticker-wrap::after{right:0;background:linear-gradient(-90deg,#fafafa 0%,transparent 100%)}
.ticker-track{
  display:flex;animation:scrollTicker 30s linear infinite;
  will-change:transform;
}
@keyframes scrollTicker{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.tick{
  display:inline-flex;align-items:center;gap:8px;
  padding:0 28px;border-right:1px solid #f1f5f9;white-space:nowrap;
}
.tick-dot{width:6px;height:6px;border-radius:50%;flex-shrink:0}
.tick-lbl{font-size:12.5px;font-weight:500;color:#475569}
.tick-val{font-size:12.5px;font-weight:700}

/* ═══════════════════════════════════════════════════════
   LOGO STRIP
════════════════════════════════════════════════════════ */
.logos-section{background:#f8fafc;border-bottom:1px solid #f1f5f9;padding:28px 0}
.logos-inner{max-width:1560px;margin:0 auto;padding:0 48px}
.logos-lbl{font-size:11px;font-weight:700;color:#94a3b8;text-transform:uppercase;letter-spacing:1.5px;text-align:center;margin-bottom:16px}
.logos-row{display:flex;gap:8px;flex-wrap:wrap;justify-content:center}
.lchip{
  background:#fff;border:1px solid #e2e8f0;border-radius:8px;
  padding:8px 17px;font-size:11.5px;font-weight:700;
  color:#94a3b8;letter-spacing:.4px;text-transform:uppercase;
  transition:all .22s cubic-bezier(.22,1,.36,1);
}
.lchip:hover{border-color:#f97316;color:#f97316;transform:translateY(-2px);box-shadow:0 4px 14px rgba(249,115,22,.15)}

/* ═══════════════════════════════════════════════════════
   UTILITY
════════════════════════════════════════════════════════ */
.section{padding:100px 0}
.section-alt{padding:100px 0;background:#f8fafc}
.wrap{max-width:1560px;margin:0 auto;padding:0 48px}
.sec-head{text-align:center;margin-bottom:64px}
.eyebrow{
  display:inline-flex;align-items:center;gap:7px;
  background:#fff7ed;border:1px solid #fed7aa;
  border-radius:100px;padding:5px 14px;
  font-size:11.5px;font-weight:600;color:#f97316;
  margin-bottom:14px;letter-spacing:.2px;
}
.eyebrow::before{content:'';width:5px;height:5px;border-radius:50%;background:#f97316;flex-shrink:0}
h2.big{
  font-size:clamp(28px,3.8vw,46px);font-weight:800;
  letter-spacing:-1.2px;line-height:1.1;color:#0f172a;
  margin-bottom:14px;
}
h2.big .or{color:#f97316}
.sub{font-size:17px;color:#64748b;line-height:1.7;max-width:700px;margin:0 auto}

/* Scroll reveal */
.rev{
  opacity:0;transform:translateY(30px);
  transition:opacity .7s cubic-bezier(.22,1,.36,1),
             transform .7s cubic-bezier(.22,1,.36,1);
}
.rev.on{opacity:1;transform:translateY(0)}
.rev.d1{transition-delay:.08s}.rev.d2{transition-delay:.16s}.rev.d3{transition-delay:.24s}

/* ═══════════════════════════════════════════════════════
   PROBLEM SECTION
════════════════════════════════════════════════════════ */
.prob-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.prob-card{
  background:#fff;border:1px solid #e2e8f0;border-radius:20px;
  padding:34px 28px;text-align:center;
  transition:all .3s cubic-bezier(.22,1,.36,1);
  position:relative;overflow:hidden;
}
.prob-card::before{
  content:'';position:absolute;inset:0;opacity:0;
  transition:opacity .3s;
  background:linear-gradient(135deg,rgba(249,115,22,.02) 0%,rgba(249,115,22,.05) 100%);
}
.prob-card:hover{box-shadow:0 16px 48px rgba(0,0,0,.09);transform:translateY(-5px)}
.prob-card:hover::before{opacity:1}
.prob-num{font-size:54px;font-weight:800;line-height:1;margin-bottom:10px;font-variant-numeric:tabular-nums}
.prob-title{font-size:15px;font-weight:700;color:#0f172a;margin-bottom:8px}
.prob-desc{font-size:13px;color:#64748b;line-height:1.65}

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════════════ */
.how-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.how-steps{display:flex;flex-direction:column;gap:6px}
.how-step{
  display:flex;gap:16px;align-items:flex-start;
  padding:18px;border-radius:14px;border:1px solid transparent;
  transition:all .22s cubic-bezier(.22,1,.36,1);
}
.how-step:hover{background:#fff7ed;border-color:#fed7aa;transform:translateX(4px)}
.step-badge{
  width:34px;height:34px;border-radius:9px;background:#f97316;
  display:flex;align-items:center;justify-content:center;
  font-size:12.5px;font-weight:800;color:#fff;flex-shrink:0;
}
.step-t{font-size:14.5px;font-weight:700;color:#0f172a;margin-bottom:4px}
.step-d{font-size:13.5px;color:#64748b;line-height:1.6}

/* Flow visualizer */
.flow-vis{
  background:#f8fafc;border:1px solid #e2e8f0;
  border-radius:22px;padding:26px;
  box-shadow:0 4px 24px rgba(0,0,0,.04);
}
.flow-hdr{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}
.flow-ttl{font-size:11px;font-weight:700;color:#94a3b8;text-transform:uppercase;letter-spacing:1.5px}
.live-chip{display:flex;align-items:center;gap:5px;font-size:11px;font-weight:700;color:#dc2626}
.live-dot{width:6px;height:6px;border-radius:50%;background:#dc2626;animation:blink 1.4s ease-in-out infinite}
@keyframes blink{0%,100%{opacity:1}50%{opacity:.2}}
.flow-/* removed bad body rule */
.f-row{
  background:#fff;border:1px solid #e2e8f0;border-radius:11px;
  padding:12px 14px;display:flex;gap:9px;align-items:center;
  font-size:13px;color:#0f172a;
  animation:fadeSlide .4s cubic-bezier(.22,1,.36,1) both;
}
@keyframes fadeSlide{from{opacity:0;transform:translateX(12px)}to{opacity:1;transform:translateX(0)}}
.f-brs{
  background:#fff7ed;border:1px solid #fed7aa;border-radius:11px;
  padding:12px 14px;display:flex;gap:9px;align-items:center;
  font-size:13px;animation:fadeSlide .4s cubic-bezier(.22,1,.36,1) .08s both;
}
.brs-dot{width:7px;height:7px;border-radius:50%;background:#f97316;flex-shrink:0;animation:blink 1.4s infinite}
.f-eng{
  background:#fff;border:1.5px solid #f97316;border-radius:11px;
  padding:12px 14px;font-size:13px;color:#0f172a;
  animation:fadeSlide .4s cubic-bezier(.22,1,.36,1) .16s both;
}
.f-win{
  background:#dcfce7;border:1px solid rgba(22,163,74,.22);border-radius:11px;
  padding:12px 14px;display:flex;justify-content:space-between;align-items:center;
  animation:fadeSlide .4s cubic-bezier(.22,1,.36,1) .24s both;
}
.f-sep{text-align:center;font-size:11px;font-weight:700;color:#e2e8f0;margin:2px 0}
.flow-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-top:14px}
.fstat{background:#fff;border:1px solid #e2e8f0;border-radius:10px;padding:12px;text-align:center}
.fstat-n{font-size:17px;font-weight:800;color:#0f172a}
.fstat-l{font-size:10px;color:#94a3b8;margin-top:2px}

/* ═══════════════════════════════════════════════════════
   FEATURES GRID
════════════════════════════════════════════════════════ */
.feat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.feat-card{
  background:#fff;border:1px solid #e2e8f0;border-radius:18px;padding:26px;
  transition:all .28s cubic-bezier(.22,1,.36,1);
  position:relative;overflow:hidden;
}
.feat-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:2px;
  background:transparent;transition:background .28s;
}
.feat-card:hover{
  border-color:#f97316;transform:translateY(-4px);
  box-shadow:0 0 0 3px rgba(249,115,22,.07), 0 14px 44px rgba(0,0,0,.09);
}
.feat-card:hover::before{background:linear-gradient(90deg,#f97316 0%,#fb923c 50%,#fbbf24 100%)}
.feat-icon{
  width:46px;height:46px;border-radius:12px;background:#fff7ed;
  display:flex;align-items:center;justify-content:center;font-size:21px;
  margin-bottom:14px;transition:transform .25s cubic-bezier(.22,1,.36,1);
}
.feat-card:hover .feat-icon{transform:scale(1.12) rotate(-3deg)}
.feat-title{font-size:15px;font-weight:700;color:#0f172a;margin-bottom:7px}
.feat-desc{font-size:13px;color:#64748b;line-height:1.65}
.feat-kpi{margin-top:13px;padding-top:11px;border-top:1px solid #f8fafc;font-size:11.5px;font-weight:700;color:#f97316}

/* ═══════════════════════════════════════════════════════
   INTENT JOURNEY
════════════════════════════════════════════════════════ */
.intent-row{display:grid;grid-template-columns:repeat(9,1fr);gap:8px}
.ic{
  border:1.5px solid #e2e8f0;border-radius:13px;
  padding:14px 5px;text-align:center;background:#fff;
  transition:all .25s cubic-bezier(.22,1,.36,1);
  position:relative;overflow:hidden;
}
.ic:hover{
  transform:translateY(-4px);border-color:#f97316;background:#fff7ed;
  box-shadow:0 6px 20px rgba(249,115,22,.15);
}
.ic-n{font-size:10px;font-weight:700;color:#f97316;margin-bottom:5px;letter-spacing:.5px}
.ic-i{font-size:19px;display:block;margin-bottom:5px}
.ic-l{font-size:10px;font-weight:700;color:#0f172a;line-height:1.3}
.ic-k{font-size:9px;color:#94a3b8;margin-top:4px}

/* Active intent chips */
.ic-act{border-color:#f97316;background:#fff7ed}
.ic-red{border-color:#fecaca;background:#fef2f2}
.ic-grn1{border-color:rgba(22,163,74,.3);background:#dcfce7}
.ic-grn2{border-color:rgba(22,163,74,.2);background:#f0fdf4}

/* ═══════════════════════════════════════════════════════
   METRICS BAND
════════════════════════════════════════════════════════ */
.metrics-band{
  background:#0f172a;padding:88px 0;
  position:relative;overflow:hidden;
}
.metrics-band::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse at 50% 50%,rgba(249,115,22,.08) 0%,transparent 60%);
}
.metrics-grid{
  display:grid;grid-template-columns:repeat(5,1fr);gap:24px;
  text-align:center;position:relative;z-index:1;
}
.met-n{
  font-size:48px;font-weight:800;color:#f97316;
  display:block;line-height:1;font-variant-numeric:tabular-nums;
  transition:all .3s;
}
.met-l{font-size:13px;color:rgba(255,255,255,.38);display:block;margin-top:9px;letter-spacing:.2px}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════════ */
.tgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.tcard{
  background:#fff;border:1px solid #e2e8f0;border-radius:20px;padding:28px;
  transition:all .28s cubic-bezier(.22,1,.36,1);
}
.tcard:hover{box-shadow:0 14px 44px rgba(0,0,0,.09);transform:translateY(-4px)}
.stars{color:#f97316;font-size:13px;letter-spacing:2px;margin-bottom:14px}
.tq{font-size:14.5px;color:#374151;line-height:1.76;font-style:italic;margin-bottom:18px}
.tau{display:flex;align-items:center;gap:11px}
.tav{width:40px;height:40px;border-radius:50%;background:#fff7ed;display:flex;align-items:center;justify-content:center;font-size:17px;flex-shrink:0}
.tn{font-size:14px;font-weight:700;color:#0f172a}
.tr{font-size:12px;color:#94a3b8;margin-top:1px}

/* ═══════════════════════════════════════════════════════
   ANIMATED BRS COUNTER SECTION
════════════════════════════════════════════════════════ */
.brs-section{
  background:#0f172a;padding:96px 0;
  position:relative;overflow:hidden;
}
.brs-section::before{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(circle at 20% 50%,rgba(249,115,22,.07) 0%,transparent 45%),
    radial-gradient(circle at 80% 50%,rgba(251,146,60,.05) 0%,transparent 45%);
}
.brs-inner{
  max-width:1560px;margin:0 auto;padding:0 32px;
  display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;
  position:relative;z-index:1;
}
.brs-score-wrap{
  display:flex;flex-direction:column;align-items:center;gap:24px;
}
.brs-ring{
  position:relative;width:220px;height:220px;
}
.brs-ring svg{width:220px;height:220px;transform:rotate(-90deg)}
.ring-bg{fill:none;stroke:rgba(255,255,255,.06);stroke-width:12}
.ring-prog{
  fill:none;stroke:url(#ringGrad);stroke-width:12;
  stroke-linecap:round;
  stroke-dasharray:589;stroke-dashoffset:589;
  transition:stroke-dashoffset 2s cubic-bezier(.22,1,.36,1);
}
.ring-prog.animate{stroke-dashoffset:156}/* 589 * (1 - 0.74) = ~153 */
.brs-center{
  position:absolute;inset:0;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
}
.brs-num{
  font-size:54px;font-weight:800;color:#fff;line-height:1;
  font-variant-numeric:tabular-nums;
}
.brs-sub{font-size:12px;font-weight:600;color:rgba(255,255,255,.45);letter-spacing:1px;text-transform:uppercase;margin-top:2px}
.brs-label{
  font-size:14px;font-weight:700;color:#f97316;
  background:rgba(249,115,22,.12);border:1px solid rgba(249,115,22,.2);
  border-radius:100px;padding:6px 16px;
}
.brs-stages{
  display:flex;gap:8px;
}
.brs-st{
  flex:1;padding:8px 4px;border-radius:8px;text-align:center;font-size:11px;font-weight:700;
  transition:all .3s;
}
.brs-st.active-stage{transform:scale(1.05)}

/* ═══════════════════════════════════════════════════════
   CTA BAND
════════════════════════════════════════════════════════ */
.cta-band{
  background:#f97316;padding:92px 0;
  position:relative;overflow:hidden;
}
.cta-band::before{
  content:'';position:absolute;right:-150px;top:-150px;
  width:600px;height:600px;border-radius:50%;
  background:rgba(255,255,255,.07);
  animation:ctaOrb 10s ease-in-out infinite;
}
.cta-band::after{
  content:'';position:absolute;left:-80px;bottom:-100px;
  width:400px;height:400px;border-radius:50%;
  background:rgba(255,255,255,.05);
  animation:ctaOrb 14s ease-in-out infinite reverse;
}
@keyframes ctaOrb{0%,100%{transform:scale(1) translate(0,0)}50%{transform:scale(1.06) translate(10px,-10px)}}
.cta-grid{
  position:relative;z-index:2;
  display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;
}
.cta-h2{
  font-size:clamp(28px,3.2vw,42px);font-weight:800;
  line-height:1.1;letter-spacing:-.8px;color:#fff;margin-bottom:14px;
}
.cta-p{font-size:16.5px;color:rgba(255,255,255,.82);line-height:1.7;margin-bottom:30px}
.btn-wh{
  background:#fff;color:#0f172a;font-size:15px;font-weight:700;
  padding:15px 30px;border-radius:13px;
  box-shadow:0 2px 12px rgba(0,0,0,.1);
  display:inline-flex;align-items:center;gap:6px;
  transition:all .2s;
}
.btn-wh:hover{transform:translateY(-2px);box-shadow:0 6px 22px rgba(0,0,0,.14)}
.btn-gh{
  background:rgba(255,255,255,.14);color:#fff;font-size:15px;font-weight:600;
  padding:15px 30px;border-radius:13px;border:1.5px solid rgba(255,255,255,.3);
  display:inline-flex;align-items:center;gap:6px;transition:all .2s;
}
.btn-gh:hover{background:rgba(255,255,255,.22)}
.trust-row{display:flex;gap:16px;flex-wrap:wrap;margin-top:20px}
.trust-item{display:flex;align-items:center;gap:6px;font-size:13px;color:rgba(255,255,255,.8)}
.trust-item::before{content:'✓';font-weight:700;color:#fff}
.cta-box{
  background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.2);
  border-radius:22px;padding:28px;
}
.d-item{display:flex;gap:12px;margin-bottom:14px}
.d-item:last-child{margin-bottom:0}
.d-icon{font-size:18px;flex-shrink:0;margin-top:1px}
.d-t{font-size:14px;font-weight:600;color:#fff}
.d-s{font-size:12px;color:rgba(255,255,255,.6);margin-top:2px}

/* ═══════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
footer{background:#0f172a;padding:64px 0 32px}
.fg{display:grid;grid-template-columns:2fr 1fr 1fr 1fr 1fr;gap:40px;margin-bottom:48px}
.f-desc{font-size:13.5px;color:rgba(255,255,255,.32);line-height:1.7;margin-top:14px;max-width:230px}
.fc h5{font-size:11px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:rgba(255,255,255,.25);margin-bottom:12px}
.fc a{display:block;font-size:13.5px;color:rgba(255,255,255,.42);margin-bottom:8px;transition:color .14s}
.fc a:hover{color:#f97316}
.f-btm{border-top:1px solid rgba(255,255,255,.05);padding-top:22px;display:flex;justify-content:space-between;align-items:center}
.f-btm p{font-size:13px;color:rgba(255,255,255,.22)}

/* ═══════════════════════════════════════════════════════
   PLATFORM ARCHITECTURE SECTION
════════════════════════════════════════════════════════ */
.plat-sec {
  background: linear-gradient(180deg, #f8fafc 0%, #fff7ed 50%, #f8fafc 100%);
  padding: 64px 0 60px;
  position: relative; overflow: hidden;
}
.plat-sec::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(249,115,22,.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(249,115,22,.08) 0%, transparent 50%);
}
.plat-sec .sec-head { position: relative; z-index: 1; margin-bottom: 8px; }

/* Panel titles */
.panel-titles {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.panel-title-bad {
  text-align: center; padding: 0 12px;
}
.panel-title-good {
  text-align: center; padding: 0 12px;
}
.pt-label {
  font-size: 16px; font-weight: 800; letter-spacing: -.3px; line-height: 1.2;
  margin-bottom: 6px;
}
.pt-label-bad  { color: #dc2626; }
.pt-label-good { color: #f97316; }
.pt-sub {
  font-size: 12px; font-weight: 500; line-height: 1.5;
  max-width: 280px; margin: 0 auto;
}
.pt-sub-bad  { color: #94a3b8; }
.pt-sub-good { color: #78716c; }

/* Two-panel layout */
.plat-panels {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  position: relative; z-index: 1;
  align-items: stretch;
}

/* VS column */
.plat-vs-col {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 0 8px;
}
.pvs-line {
  flex: 1; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(15,23,42,.15), transparent);
  min-height: 40px;
}
.pvs-badge {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: #fff;
  border: 2.5px solid #0f172a;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; color: #0f172a;
  letter-spacing: .5px;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}

/* Panel wrappers — equal height via grid stretch */
.plat-panel {
  border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
}
.plat-panel-bad  {
  border: 1.5px solid rgba(220,38,38,.25);
  background: #fff;
  box-shadow: 0 4px 40px rgba(220,38,38,.06), 0 1px 0 rgba(220,38,38,.1);
}
.plat-panel-good {
  border: 1.5px solid rgba(249,115,22,.35);
  background: #fff;
  box-shadow: 0 4px 40px rgba(249,115,22,.1), 0 1px 0 rgba(249,115,22,.15);
}

/* Panel header strip */
.pp-hdr {
  padding: 13px 20px;
  display: flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: .3px;
  text-transform: uppercase;
  border-bottom: 1px solid;
  flex-shrink: 0;
}
.pp-hdr-bad  { background: rgba(220,38,38,.06); border-color: rgba(220,38,38,.15); color: #dc2626; }
.pp-hdr-good { background: rgba(249,115,22,.07); border-color: rgba(249,115,22,.2); color: #ea580c; }
.pp-hdr-dot  { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.pp-hdr-bad  .pp-hdr-dot { background: #ef4444; }
.pp-hdr-good .pp-hdr-dot { background: #f97316; animation: pulseDot 1.8s infinite; }

/* SVG diagram */
.diag-wrap { flex: 1; }
.diag-wrap svg { display: block; width: 100%; height: 100%; }

/* Pills row */
.pp-pills {
  padding: 11px 16px; display: flex; gap: 6px; flex-wrap: wrap;
  border-top: 1px solid rgba(249,115,22,.12);
  background: rgba(249,115,22,.03);
  flex-shrink: 0;
}
.pp-pill {
  font-size: 10.5px; font-weight: 600; color: #ea580c;
  background: rgba(249,115,22,.1); border: 1px solid rgba(249,115,22,.2);
  border-radius: 100px; padding: 4px 11px;
}

/* Saving banner */
.saving-banner {
  margin-top: 24px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  border-radius: 18px; padding: 32px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  position: relative; z-index: 1; overflow: hidden;
}
.saving-banner::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(249,115,22,.08);
  pointer-events: none;
}
.sb-left { flex: 1; }
.sb-eyebrow {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px;
}
.sb-headline {
  font-size: clamp(22px, 2.8vw, 32px); font-weight: 800;
  color: #fff; line-height: 1.1; letter-spacing: -.5px;
}
.sb-headline span { color: #f97316; }
.sb-sub {
  font-size: 14px; color: rgba(255,255,255,.5); margin-top: 8px; line-height: 1.6;
}
.sb-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px; flex-shrink: 0;
}
.sb-amount {
  font-size: clamp(36px, 4vw, 52px); font-weight: 900;
  color: #f97316; line-height: 1;
  text-shadow: 0 0 40px rgba(249,115,22,.4);
}
.sb-amount-sub { font-size: 13px; color: rgba(255,255,255,.45); text-align: right; }
.sb-cta {
  background: #f97316; color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  padding: 12px 24px; border-radius: 11px; border: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all .2s; cursor: pointer;
  box-shadow: 0 4px 18px rgba(249,115,22,.4);
}
.sb-cta:hover { background: #ea580c; transform: translateY(-2px); }

/* animations */
@keyframes badPulse { 0%,100%{opacity:.5} 50%{opacity:.12} }
@keyframes zigMove  { 0%{stroke-dashoffset:800} 100%{stroke-dashoffset:0} }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */
@media(max-width:900px){
  .how-grid,.cta-grid,.brs-inner,.teams-grid{grid-template-columns:1fr}
  .prob-grid,.feat-grid,.tgrid{grid-template-columns:1fr}
  .intent-row{grid-template-columns:repeat(3,1fr)}
  .metrics-grid{grid-template-columns:repeat(2,1fr)}
  .hero-stats{gap:32px}
  .nl{display:none}
  .fg{grid-template-columns:1fr 1fr 1fr}
  .plat-compare{grid-template-columns:1fr;gap:24px}
  .plat-vs{flex-direction:row;padding-top:0;justify-content:center}
  .vs-line{width:60px;height:1px;background:rgba(255,255,255,.15)!important}
  .uni-row{grid-template-columns:repeat(2,1fr)}
}

/* ═══════════════════════════════════════════════════════
   TEAMS SECTION
════════════════════════════════════════════════════════ */
.teams-section { padding: 100px 0; background: #fff; }
.teams-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px;
}
.team-card {
  border-radius: 20px; padding: 32px 28px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  transition: all .28s cubic-bezier(.22,1,.36,1);
  position: relative; overflow: hidden;
}
.team-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--tc); border-radius: 20px 20px 0 0;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.09);
  border-color: var(--tc);
}
.team-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--tb); display: flex; align-items: center;
  justify-content: center; font-size: 24px; margin-bottom: 18px;
  transition: transform .25s cubic-bezier(.22,1,.36,1);
}
.team-card:hover .team-icon-wrap { transform: scale(1.1) rotate(-4deg); }
.team-name {
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--tc); margin-bottom: 6px;
}
.team-title {
  font-size: 19px; font-weight: 800; color: #0f172a;
  line-height: 1.2; letter-spacing: -.4px; margin-bottom: 12px;
}
.team-sub {
  font-size: 13.5px; color: #64748b; line-height: 1.65; margin-bottom: 20px;
}
.team-wins { display: flex; flex-direction: column; gap: 8px; }
.team-win {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: #374151; line-height: 1.5;
}
.team-win::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--tc); flex-shrink: 0; margin-top: 6px;
}
.team-kpi-row {
  display: flex; gap: 16px; margin-top: 20px;
  padding-top: 18px; border-top: 1px solid #f1f5f9;
}
.team-kpi { text-align: center; }
.team-kpi-n { font-size: 22px; font-weight: 800; color: var(--tc); line-height: 1; }
.team-kpi-l { font-size: 10px; color: #94a3b8; margin-top: 3px; font-weight: 500; }

.page-hero{background:#0f172a;padding:140px 0 80px;position:relative;overflow:hidden;}
.page-hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 80% 60% at 50% 0%, rgba(249,115,22,.13) 0%, transparent 70%);pointer-events:none;}
.page-hero-inner{max-width:1560px;margin:0 auto;padding:0 32px;position:relative;z-index:1;text-align:center;}
.page-eyebrow{display:inline-flex;align-items:center;gap:7px;background:rgba(249,115,22,.12);border:1px solid rgba(249,115,22,.25);border-radius:100px;padding:6px 16px;font-size:12px;font-weight:700;color:#f97316;text-transform:uppercase;letter-spacing:1.2px;margin-bottom:22px;}
.page-h1{font-size:clamp(36px,5vw,64px);font-weight:800;line-height:1.05;letter-spacing:-2px;color:#fff;margin-bottom:20px;}
.page-h1 .or{color:#f97316}
.page-sub{font-size:18px;color:rgba(255,255,255,.65);line-height:1.7;max-width:620px;margin:0 auto;}

.reason-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.reason-card{background:#fff;border:1px solid #e2e8f0;border-radius:20px;padding:28px;transition:all .25s;}
.reason-card:hover{transform:translateY(-4px);box-shadow:0 14px 40px rgba(0,0,0,.08);border-color:#f97316}
.reason-icon{font-size:28px;margin-bottom:14px}
.reason-title{font-size:16px;font-weight:800;color:#0f172a;margin-bottom:8px}
.reason-desc{font-size:14px;color:#64748b;line-height:1.68}
.compare-table{width:100%;border-collapse:separate;border-spacing:0;border-radius:16px;overflow:hidden;border:1px solid #e2e8f0}
.compare-table th{padding:14px 20px;font-size:12.5px;font-weight:700;text-transform:uppercase;letter-spacing:.8px;background:#f8fafc;color:#64748b}
.compare-table th:first-child{text-align:left;color:#0f172a}
.compare-table td{padding:14px 20px;font-size:14px;border-top:1px solid #f1f5f9;text-align:center;color:#64748b}
.compare-table td:first-child{text-align:left;font-weight:600;color:#0f172a}
.compare-table tr:hover td{background:#fafafa}
.good{color:#16a34a;font-weight:700}
.bad{color:#dc2626}
.roi-calc{background:linear-gradient(135deg,#0f172a 0%,#1e293b 100%);border-radius:22px;padding:48px;position:relative;overflow:hidden}
.roi-calc::before{content:'';position:absolute;right:-40px;top:-40px;width:200px;height:200px;border-radius:50%;background:rgba(249,115,22,.08)}
.roi-input{display:flex;flex-direction:column;gap:6px;margin-bottom:18px}
.roi-input label{font-size:13px;font-weight:700;color:rgba(255,255,255,.6)}
.roi-input input{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);border-radius:10px;padding:12px 16px;font-size:15px;color:#fff;font-family:inherit;outline:none}
.roi-input input:focus{border-color:#f97316}
.roi-output{background:rgba(249,115,22,.12);border:1px solid rgba(249,115,22,.25);border-radius:14px;padding:20px;text-align:center;margin-top:10px}
.roi-amount{font-size:40px;font-weight:900;color:#f97316;line-height:1}



/* === how_it_works === */


/* ═══════════════════════════════════════════════════════
   RESET
════════════════════════════════════════════════════════ */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;font-size:16px}
body{
  font-family:'Plus Jakarta Sans',system-ui,sans-serif;
  background:#ffffff;
  color:#0f172a;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
button{font-family:inherit;cursor:pointer;border:none;background:none}



/* ═══════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════ */
nav{
  position:fixed;top:0;left:0;right:0;z-index:900;
  height:66px;
  background:rgba(255,255,255,0.93);
  backdrop-filter:blur(22px);-webkit-backdrop-filter:blur(22px);
  border-bottom:1px solid rgba(0,0,0,0.055);
  display:flex;align-items:center;
  transition:box-shadow .3s;
}
nav.scrolled{box-shadow:0 2px 28px rgba(0,0,0,0.07)}
.nw{max-width:1560px;margin:0 auto;padding:0 48px;display:flex;align-items:center;width:100%}
.logo{display:flex;align-items:center;gap:10px;margin-right:auto}
.logo svg{width:46px;height:36px;flex-shrink:0}
.logo-t{font-size:17px;font-weight:800;letter-spacing:1px;color:#0f172a;text-transform:uppercase}
.nl{display:flex;list-style:none;gap:2px;margin-right:24px}
.nl a{
  font-size:17.5px;font-weight:500;color:#64748b;
  padding:7px 13px;border-radius:8px;
  transition:color .14s,background .14s;
  display:block;
}
.nl a:hover{color:#0f172a;background:#f8fafc}
.nav-btn{
  background:#f97316;color:#fff;
  font-size:13.5px;font-weight:600;
  padding:10px 22px;border-radius:10px;
  box-shadow:0 2px 14px rgba(249,115,22,0.38);
  transition:all .2s;
  display:inline-flex;align-items:center;gap:6px;
}
.nav-btn:hover{background:#ea580c;transform:translateY(-1px);box-shadow:0 4px 20px rgba(249,115,22,0.48)}

/* ═══════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════ */
.hero{
  min-height:calc(100vh - 44px);padding-top:76px;
  display:flex;align-items:center;justify-content:center;
  background:#fff;position:relative;overflow:hidden;
}

/* Animated dot grid */
.hero-dots{
  position:absolute;inset:0;pointer-events:none;
  background-image:radial-gradient(circle,#e2e8f0 1px,transparent 1px);
  background-size:30px 30px;
  opacity:0.45;
  animation:dotsBreath 8s ease-in-out infinite;
}
@keyframes dotsBreath{0%,100%{opacity:.45;background-size:30px 30px}50%{opacity:.35;background-size:32px 32px}}

/* Orange aurora glow */
.hero-aura{
  position:absolute;pointer-events:none;
  width:900px;height:700px;
  left:50%;top:50%;
  transform:translate(-50%,-52%);
  background:radial-gradient(ellipse at center,rgba(249,115,22,.07) 0%,rgba(251,146,60,.03) 35%,transparent 65%);
  animation:auraFloat 7s ease-in-out infinite;
}
@keyframes auraFloat{0%,100%{transform:translate(-50%,-52%) scale(1)}50%{transform:translate(-50%,-50%) scale(1.04)}}

/* Floating orbs */
.orb{
  position:absolute;border-radius:50%;
  pointer-events:none;filter:blur(60px);opacity:.25;
  animation:orbDrift var(--d,12s) ease-in-out infinite;
}
.orb1{width:300px;height:300px;background:#f97316;top:10%;left:5%;--d:11s}
.orb2{width:200px;height:200px;background:#fb923c;bottom:20%;right:8%;--d:14s;animation-delay:-4s}
.orb3{width:150px;height:150px;background:#fbbf24;top:60%;left:60%;--d:9s;animation-delay:-7s;opacity:.15}
@keyframes orbDrift{
  0%,100%{transform:translateY(0) translateX(0)}
  33%{transform:translateY(-30px) translateX(15px)}
  66%{transform:translateY(20px) translateX(-10px)}
}

.hero-inner{
  position:relative;z-index:2;
  display:flex;flex-direction:column;
  align-items:center;text-align:center;
  padding:88px 32px 110px;
  max-width:1000px;
}

/* Badge */
.hero-badge{
  display:inline-flex;align-items:center;gap:9px;
  background:#fff7ed;border:1px solid #fed7aa;
  border-radius:100px;padding:7px 18px;
  font-size:12.5px;font-weight:600;color:#f97316;
  margin-bottom:30px;
  opacity:0;animation:slideDown .7s cubic-bezier(.22,1,.36,1) .1s forwards;
}
.badge-pulse{
  width:8px;height:8px;border-radius:50%;
  background:#f97316;flex-shrink:0;
  animation:pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot{
  0%,100%{transform:scale(1);opacity:1;box-shadow:0 0 0 0 rgba(249,115,22,.4)}
  50%{transform:scale(.85);opacity:.6;box-shadow:0 0 0 6px rgba(249,115,22,0)}
}
@keyframes slideDown{from{opacity:0;transform:translateY(-12px)}to{opacity:1;transform:translateY(0)}}

/* Headline */
.hero-h1{
  font-size:clamp(48px,7vw,82px);
  font-weight:800;line-height:1.04;
  letter-spacing:-3px;color:#0f172a;
  margin-bottom:24px;
  opacity:0;animation:slideUp .8s cubic-bezier(.22,1,.36,1) .22s forwards;
}
.hero-h1 .or{
  color:#f97316;position:relative;display:inline-block;
}
.hero-h1 .or::after{
  content:'';
  position:absolute;left:0;right:100%;bottom:-4px;
  height:3px;border-radius:2px;background:#f97316;
  animation:lineGrow .9s cubic-bezier(.22,1,.36,1) 1.2s forwards;
}
@keyframes lineGrow{to{right:0}}
@keyframes slideUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}

.hero-sub{
  font-size:17.5px;color:#64748b;line-height:1.72;
  max-width:640px;margin:0 auto 40px;
  opacity:0;animation:slideUp .8s cubic-bezier(.22,1,.36,1) .36s forwards;
}

/* Buttons */
.hero-btns{
  display:flex;gap:13px;justify-content:center;
  margin-bottom:68px;
  opacity:0;animation:slideUp .8s cubic-bezier(.22,1,.36,1) .48s forwards;
}
.btn-pr{
  background:#f97316;color:#fff;
  font-size:15px;font-weight:700;
  padding:15px 32px;border-radius:13px;
  box-shadow:0 4px 20px rgba(249,115,22,.4);
  display:inline-flex;align-items:center;gap:7px;
  transition:all .2s cubic-bezier(.22,1,.36,1);
  position:relative;overflow:hidden;
}
.btn-pr::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,.15),transparent);
  opacity:0;transition:opacity .2s;
}
.btn-pr:hover{background:#ea580c;transform:translateY(-2px);box-shadow:0 8px 30px rgba(249,115,22,.5)}
.btn-pr:hover::before{opacity:1}
.btn-pr:active{transform:translateY(0);box-shadow:0 4px 16px rgba(249,115,22,.35)}
.btn-sc{
  background:#fff;color:#0f172a;
  font-size:15px;font-weight:600;
  padding:15px 32px;border-radius:13px;
  border:1.5px solid #e2e8f0;
  box-shadow:0 1px 4px rgba(0,0,0,.05);
  display:inline-flex;align-items:center;gap:7px;
  transition:all .2s;
}
.btn-sc:hover{border-color:#94a3b8;background:#f8fafc;transform:translateY(-1px)}

/* Stats */
.hero-stats{
  display:flex;gap:60px;
  padding-top:30px;border-top:1px solid #f1f5f9;
  opacity:0;animation:slideUp .8s cubic-bezier(.22,1,.36,1) .62s forwards;
}
.stat-n{font-size:44px;font-weight:800;line-height:1;color:#0f172a;font-variant-numeric:tabular-nums}
.stat-n .hl{color:#f97316}
.stat-l{font-size:13px;color:#94a3b8;margin-top:6px;font-weight:500;letter-spacing:.2px}

/* ═══════════════════════════════════════════════════════
   LIVE TICKER STRIP
════════════════════════════════════════════════════════ */
.ticker-wrap{
  background:#fafafa;
  border-top:1px solid #f1f5f9;border-bottom:1px solid #f1f5f9;
  overflow:hidden;position:relative;height:44px;display:flex;align-items:center;
}
.ticker-wrap::before,.ticker-wrap::after{
  content:'';position:absolute;top:0;bottom:0;width:100px;z-index:2;pointer-events:none;
}
.ticker-wrap::before{left:0;background:linear-gradient(90deg,#fafafa 0%,transparent 100%)}
.ticker-wrap::after{right:0;background:linear-gradient(-90deg,#fafafa 0%,transparent 100%)}
.ticker-track{
  display:flex;animation:scrollTicker 30s linear infinite;
  will-change:transform;
}
@keyframes scrollTicker{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.tick{
  display:inline-flex;align-items:center;gap:8px;
  padding:0 28px;border-right:1px solid #f1f5f9;white-space:nowrap;
}
.tick-dot{width:6px;height:6px;border-radius:50%;flex-shrink:0}
.tick-lbl{font-size:12.5px;font-weight:500;color:#475569}
.tick-val{font-size:12.5px;font-weight:700}

/* ═══════════════════════════════════════════════════════
   LOGO STRIP
════════════════════════════════════════════════════════ */
.logos-section{background:#f8fafc;border-bottom:1px solid #f1f5f9;padding:28px 0}
.logos-inner{max-width:1560px;margin:0 auto;padding:0 48px}
.logos-lbl{font-size:11px;font-weight:700;color:#94a3b8;text-transform:uppercase;letter-spacing:1.5px;text-align:center;margin-bottom:16px}
.logos-row{display:flex;gap:8px;flex-wrap:wrap;justify-content:center}
.lchip{
  background:#fff;border:1px solid #e2e8f0;border-radius:8px;
  padding:8px 17px;font-size:11.5px;font-weight:700;
  color:#94a3b8;letter-spacing:.4px;text-transform:uppercase;
  transition:all .22s cubic-bezier(.22,1,.36,1);
}
.lchip:hover{border-color:#f97316;color:#f97316;transform:translateY(-2px);box-shadow:0 4px 14px rgba(249,115,22,.15)}

/* ═══════════════════════════════════════════════════════
   UTILITY
════════════════════════════════════════════════════════ */
.section{padding:100px 0}
.section-alt{padding:100px 0;background:#f8fafc}
.wrap{max-width:1560px;margin:0 auto;padding:0 48px}
.sec-head{text-align:center;margin-bottom:64px}
.eyebrow{
  display:inline-flex;align-items:center;gap:7px;
  background:#fff7ed;border:1px solid #fed7aa;
  border-radius:100px;padding:5px 14px;
  font-size:11.5px;font-weight:600;color:#f97316;
  margin-bottom:14px;letter-spacing:.2px;
}
.eyebrow::before{content:'';width:5px;height:5px;border-radius:50%;background:#f97316;flex-shrink:0}
h2.big{
  font-size:clamp(28px,3.8vw,46px);font-weight:800;
  letter-spacing:-1.2px;line-height:1.1;color:#0f172a;
  margin-bottom:14px;
}
h2.big .or{color:#f97316}
.sub{font-size:17px;color:#64748b;line-height:1.7;max-width:700px;margin:0 auto}

/* Scroll reveal */
.rev{
  opacity:0;transform:translateY(30px);
  transition:opacity .7s cubic-bezier(.22,1,.36,1),
             transform .7s cubic-bezier(.22,1,.36,1);
}
.rev.on{opacity:1;transform:translateY(0)}
.rev.d1{transition-delay:.08s}.rev.d2{transition-delay:.16s}.rev.d3{transition-delay:.24s}

/* ═══════════════════════════════════════════════════════
   PROBLEM SECTION
════════════════════════════════════════════════════════ */
.prob-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.prob-card{
  background:#fff;border:1px solid #e2e8f0;border-radius:20px;
  padding:34px 28px;text-align:center;
  transition:all .3s cubic-bezier(.22,1,.36,1);
  position:relative;overflow:hidden;
}
.prob-card::before{
  content:'';position:absolute;inset:0;opacity:0;
  transition:opacity .3s;
  background:linear-gradient(135deg,rgba(249,115,22,.02) 0%,rgba(249,115,22,.05) 100%);
}
.prob-card:hover{box-shadow:0 16px 48px rgba(0,0,0,.09);transform:translateY(-5px)}
.prob-card:hover::before{opacity:1}
.prob-num{font-size:54px;font-weight:800;line-height:1;margin-bottom:10px;font-variant-numeric:tabular-nums}
.prob-title{font-size:15px;font-weight:700;color:#0f172a;margin-bottom:8px}
.prob-desc{font-size:13px;color:#64748b;line-height:1.65}

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════════════ */
.how-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.how-steps{display:flex;flex-direction:column;gap:6px}
.how-step{
  display:flex;gap:16px;align-items:flex-start;
  padding:18px;border-radius:14px;border:1px solid transparent;
  transition:all .22s cubic-bezier(.22,1,.36,1);
}
.how-step:hover{background:#fff7ed;border-color:#fed7aa;transform:translateX(4px)}
.step-badge{
  width:34px;height:34px;border-radius:9px;background:#f97316;
  display:flex;align-items:center;justify-content:center;
  font-size:12.5px;font-weight:800;color:#fff;flex-shrink:0;
}
.step-t{font-size:14.5px;font-weight:700;color:#0f172a;margin-bottom:4px}
.step-d{font-size:13.5px;color:#64748b;line-height:1.6}

/* Flow visualizer */
.flow-vis{
  background:#f8fafc;border:1px solid #e2e8f0;
  border-radius:22px;padding:26px;
  box-shadow:0 4px 24px rgba(0,0,0,.04);
}
.flow-hdr{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}
.flow-ttl{font-size:11px;font-weight:700;color:#94a3b8;text-transform:uppercase;letter-spacing:1.5px}
.live-chip{display:flex;align-items:center;gap:5px;font-size:11px;font-weight:700;color:#dc2626}
.live-dot{width:6px;height:6px;border-radius:50%;background:#dc2626;animation:blink 1.4s ease-in-out infinite}
@keyframes blink{0%,100%{opacity:1}50%{opacity:.2}}
.flow-/* removed bad body rule */
.f-row{
  background:#fff;border:1px solid #e2e8f0;border-radius:11px;
  padding:12px 14px;display:flex;gap:9px;align-items:center;
  font-size:13px;color:#0f172a;
  animation:fadeSlide .4s cubic-bezier(.22,1,.36,1) both;
}
@keyframes fadeSlide{from{opacity:0;transform:translateX(12px)}to{opacity:1;transform:translateX(0)}}
.f-brs{
  background:#fff7ed;border:1px solid #fed7aa;border-radius:11px;
  padding:12px 14px;display:flex;gap:9px;align-items:center;
  font-size:13px;animation:fadeSlide .4s cubic-bezier(.22,1,.36,1) .08s both;
}
.brs-dot{width:7px;height:7px;border-radius:50%;background:#f97316;flex-shrink:0;animation:blink 1.4s infinite}
.f-eng{
  background:#fff;border:1.5px solid #f97316;border-radius:11px;
  padding:12px 14px;font-size:13px;color:#0f172a;
  animation:fadeSlide .4s cubic-bezier(.22,1,.36,1) .16s both;
}
.f-win{
  background:#dcfce7;border:1px solid rgba(22,163,74,.22);border-radius:11px;
  padding:12px 14px;display:flex;justify-content:space-between;align-items:center;
  animation:fadeSlide .4s cubic-bezier(.22,1,.36,1) .24s both;
}
.f-sep{text-align:center;font-size:11px;font-weight:700;color:#e2e8f0;margin:2px 0}
.flow-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-top:14px}
.fstat{background:#fff;border:1px solid #e2e8f0;border-radius:10px;padding:12px;text-align:center}
.fstat-n{font-size:17px;font-weight:800;color:#0f172a}
.fstat-l{font-size:10px;color:#94a3b8;margin-top:2px}

/* ═══════════════════════════════════════════════════════
   FEATURES GRID
════════════════════════════════════════════════════════ */
.feat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.feat-card{
  background:#fff;border:1px solid #e2e8f0;border-radius:18px;padding:26px;
  transition:all .28s cubic-bezier(.22,1,.36,1);
  position:relative;overflow:hidden;
}
.feat-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:2px;
  background:transparent;transition:background .28s;
}
.feat-card:hover{
  border-color:#f97316;transform:translateY(-4px);
  box-shadow:0 0 0 3px rgba(249,115,22,.07), 0 14px 44px rgba(0,0,0,.09);
}
.feat-card:hover::before{background:linear-gradient(90deg,#f97316 0%,#fb923c 50%,#fbbf24 100%)}
.feat-icon{
  width:46px;height:46px;border-radius:12px;background:#fff7ed;
  display:flex;align-items:center;justify-content:center;font-size:21px;
  margin-bottom:14px;transition:transform .25s cubic-bezier(.22,1,.36,1);
}
.feat-card:hover .feat-icon{transform:scale(1.12) rotate(-3deg)}
.feat-title{font-size:15px;font-weight:700;color:#0f172a;margin-bottom:7px}
.feat-desc{font-size:13px;color:#64748b;line-height:1.65}
.feat-kpi{margin-top:13px;padding-top:11px;border-top:1px solid #f8fafc;font-size:11.5px;font-weight:700;color:#f97316}

/* ═══════════════════════════════════════════════════════
   INTENT JOURNEY
════════════════════════════════════════════════════════ */
.intent-row{display:grid;grid-template-columns:repeat(9,1fr);gap:8px}
.ic{
  border:1.5px solid #e2e8f0;border-radius:13px;
  padding:14px 5px;text-align:center;background:#fff;
  transition:all .25s cubic-bezier(.22,1,.36,1);
  position:relative;overflow:hidden;
}
.ic:hover{
  transform:translateY(-4px);border-color:#f97316;background:#fff7ed;
  box-shadow:0 6px 20px rgba(249,115,22,.15);
}
.ic-n{font-size:10px;font-weight:700;color:#f97316;margin-bottom:5px;letter-spacing:.5px}
.ic-i{font-size:19px;display:block;margin-bottom:5px}
.ic-l{font-size:10px;font-weight:700;color:#0f172a;line-height:1.3}
.ic-k{font-size:9px;color:#94a3b8;margin-top:4px}

/* Active intent chips */
.ic-act{border-color:#f97316;background:#fff7ed}
.ic-red{border-color:#fecaca;background:#fef2f2}
.ic-grn1{border-color:rgba(22,163,74,.3);background:#dcfce7}
.ic-grn2{border-color:rgba(22,163,74,.2);background:#f0fdf4}

/* ═══════════════════════════════════════════════════════
   METRICS BAND
════════════════════════════════════════════════════════ */
.metrics-band{
  background:#0f172a;padding:88px 0;
  position:relative;overflow:hidden;
}
.metrics-band::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse at 50% 50%,rgba(249,115,22,.08) 0%,transparent 60%);
}
.metrics-grid{
  display:grid;grid-template-columns:repeat(5,1fr);gap:24px;
  text-align:center;position:relative;z-index:1;
}
.met-n{
  font-size:48px;font-weight:800;color:#f97316;
  display:block;line-height:1;font-variant-numeric:tabular-nums;
  transition:all .3s;
}
.met-l{font-size:13px;color:rgba(255,255,255,.38);display:block;margin-top:9px;letter-spacing:.2px}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════════ */
.tgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.tcard{
  background:#fff;border:1px solid #e2e8f0;border-radius:20px;padding:28px;
  transition:all .28s cubic-bezier(.22,1,.36,1);
}
.tcard:hover{box-shadow:0 14px 44px rgba(0,0,0,.09);transform:translateY(-4px)}
.stars{color:#f97316;font-size:13px;letter-spacing:2px;margin-bottom:14px}
.tq{font-size:14.5px;color:#374151;line-height:1.76;font-style:italic;margin-bottom:18px}
.tau{display:flex;align-items:center;gap:11px}
.tav{width:40px;height:40px;border-radius:50%;background:#fff7ed;display:flex;align-items:center;justify-content:center;font-size:17px;flex-shrink:0}
.tn{font-size:14px;font-weight:700;color:#0f172a}
.tr{font-size:12px;color:#94a3b8;margin-top:1px}

/* ═══════════════════════════════════════════════════════
   ANIMATED BRS COUNTER SECTION
════════════════════════════════════════════════════════ */
.brs-section{
  background:#0f172a;padding:96px 0;
  position:relative;overflow:hidden;
}
.brs-section::before{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(circle at 20% 50%,rgba(249,115,22,.07) 0%,transparent 45%),
    radial-gradient(circle at 80% 50%,rgba(251,146,60,.05) 0%,transparent 45%);
}
.brs-inner{
  max-width:1560px;margin:0 auto;padding:0 32px;
  display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;
  position:relative;z-index:1;
}
.brs-score-wrap{
  display:flex;flex-direction:column;align-items:center;gap:24px;
}
.brs-ring{
  position:relative;width:220px;height:220px;
}
.brs-ring svg{width:220px;height:220px;transform:rotate(-90deg)}
.ring-bg{fill:none;stroke:rgba(255,255,255,.06);stroke-width:12}
.ring-prog{
  fill:none;stroke:url(#ringGrad);stroke-width:12;
  stroke-linecap:round;
  stroke-dasharray:589;stroke-dashoffset:589;
  transition:stroke-dashoffset 2s cubic-bezier(.22,1,.36,1);
}
.ring-prog.animate{stroke-dashoffset:156}/* 589 * (1 - 0.74) = ~153 */
.brs-center{
  position:absolute;inset:0;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
}
.brs-num{
  font-size:54px;font-weight:800;color:#fff;line-height:1;
  font-variant-numeric:tabular-nums;
}
.brs-sub{font-size:12px;font-weight:600;color:rgba(255,255,255,.45);letter-spacing:1px;text-transform:uppercase;margin-top:2px}
.brs-label{
  font-size:14px;font-weight:700;color:#f97316;
  background:rgba(249,115,22,.12);border:1px solid rgba(249,115,22,.2);
  border-radius:100px;padding:6px 16px;
}
.brs-stages{
  display:flex;gap:8px;
}
.brs-st{
  flex:1;padding:8px 4px;border-radius:8px;text-align:center;font-size:11px;font-weight:700;
  transition:all .3s;
}
.brs-st.active-stage{transform:scale(1.05)}

/* ═══════════════════════════════════════════════════════
   CTA BAND
════════════════════════════════════════════════════════ */
.cta-band{
  background:#f97316;padding:92px 0;
  position:relative;overflow:hidden;
}
.cta-band::before{
  content:'';position:absolute;right:-150px;top:-150px;
  width:600px;height:600px;border-radius:50%;
  background:rgba(255,255,255,.07);
  animation:ctaOrb 10s ease-in-out infinite;
}
.cta-band::after{
  content:'';position:absolute;left:-80px;bottom:-100px;
  width:400px;height:400px;border-radius:50%;
  background:rgba(255,255,255,.05);
  animation:ctaOrb 14s ease-in-out infinite reverse;
}
@keyframes ctaOrb{0%,100%{transform:scale(1) translate(0,0)}50%{transform:scale(1.06) translate(10px,-10px)}}
.cta-grid{
  position:relative;z-index:2;
  display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;
}
.cta-h2{
  font-size:clamp(28px,3.2vw,42px);font-weight:800;
  line-height:1.1;letter-spacing:-.8px;color:#fff;margin-bottom:14px;
}
.cta-p{font-size:16.5px;color:rgba(255,255,255,.82);line-height:1.7;margin-bottom:30px}
.btn-wh{
  background:#fff;color:#0f172a;font-size:15px;font-weight:700;
  padding:15px 30px;border-radius:13px;
  box-shadow:0 2px 12px rgba(0,0,0,.1);
  display:inline-flex;align-items:center;gap:6px;
  transition:all .2s;
}
.btn-wh:hover{transform:translateY(-2px);box-shadow:0 6px 22px rgba(0,0,0,.14)}
.btn-gh{
  background:rgba(255,255,255,.14);color:#fff;font-size:15px;font-weight:600;
  padding:15px 30px;border-radius:13px;border:1.5px solid rgba(255,255,255,.3);
  display:inline-flex;align-items:center;gap:6px;transition:all .2s;
}
.btn-gh:hover{background:rgba(255,255,255,.22)}
.trust-row{display:flex;gap:16px;flex-wrap:wrap;margin-top:20px}
.trust-item{display:flex;align-items:center;gap:6px;font-size:13px;color:rgba(255,255,255,.8)}
.trust-item::before{content:'✓';font-weight:700;color:#fff}
.cta-box{
  background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.2);
  border-radius:22px;padding:28px;
}
.d-item{display:flex;gap:12px;margin-bottom:14px}
.d-item:last-child{margin-bottom:0}
.d-icon{font-size:18px;flex-shrink:0;margin-top:1px}
.d-t{font-size:14px;font-weight:600;color:#fff}
.d-s{font-size:12px;color:rgba(255,255,255,.6);margin-top:2px}

/* ═══════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
footer{background:#0f172a;padding:64px 0 32px}
.fg{display:grid;grid-template-columns:2fr 1fr 1fr 1fr 1fr;gap:40px;margin-bottom:48px}
.f-desc{font-size:13.5px;color:rgba(255,255,255,.32);line-height:1.7;margin-top:14px;max-width:230px}
.fc h5{font-size:11px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:rgba(255,255,255,.25);margin-bottom:12px}
.fc a{display:block;font-size:13.5px;color:rgba(255,255,255,.42);margin-bottom:8px;transition:color .14s}
.fc a:hover{color:#f97316}
.f-btm{border-top:1px solid rgba(255,255,255,.05);padding-top:22px;display:flex;justify-content:space-between;align-items:center}
.f-btm p{font-size:13px;color:rgba(255,255,255,.22)}

/* ═══════════════════════════════════════════════════════
   PLATFORM ARCHITECTURE SECTION
════════════════════════════════════════════════════════ */
.plat-sec {
  background: linear-gradient(180deg, #f8fafc 0%, #fff7ed 50%, #f8fafc 100%);
  padding: 64px 0 60px;
  position: relative; overflow: hidden;
}
.plat-sec::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(249,115,22,.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(249,115,22,.08) 0%, transparent 50%);
}
.plat-sec .sec-head { position: relative; z-index: 1; margin-bottom: 8px; }

/* Panel titles */
.panel-titles {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.panel-title-bad {
  text-align: center; padding: 0 12px;
}
.panel-title-good {
  text-align: center; padding: 0 12px;
}
.pt-label {
  font-size: 16px; font-weight: 800; letter-spacing: -.3px; line-height: 1.2;
  margin-bottom: 6px;
}
.pt-label-bad  { color: #dc2626; }
.pt-label-good { color: #f97316; }
.pt-sub {
  font-size: 12px; font-weight: 500; line-height: 1.5;
  max-width: 280px; margin: 0 auto;
}
.pt-sub-bad  { color: #94a3b8; }
.pt-sub-good { color: #78716c; }

/* Two-panel layout */
.plat-panels {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  position: relative; z-index: 1;
  align-items: stretch;
}

/* VS column */
.plat-vs-col {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 0 8px;
}
.pvs-line {
  flex: 1; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(15,23,42,.15), transparent);
  min-height: 40px;
}
.pvs-badge {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: #fff;
  border: 2.5px solid #0f172a;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; color: #0f172a;
  letter-spacing: .5px;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}

/* Panel wrappers — equal height via grid stretch */
.plat-panel {
  border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
}
.plat-panel-bad  {
  border: 1.5px solid rgba(220,38,38,.25);
  background: #fff;
  box-shadow: 0 4px 40px rgba(220,38,38,.06), 0 1px 0 rgba(220,38,38,.1);
}
.plat-panel-good {
  border: 1.5px solid rgba(249,115,22,.35);
  background: #fff;
  box-shadow: 0 4px 40px rgba(249,115,22,.1), 0 1px 0 rgba(249,115,22,.15);
}

/* Panel header strip */
.pp-hdr {
  padding: 13px 20px;
  display: flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: .3px;
  text-transform: uppercase;
  border-bottom: 1px solid;
  flex-shrink: 0;
}
.pp-hdr-bad  { background: rgba(220,38,38,.06); border-color: rgba(220,38,38,.15); color: #dc2626; }
.pp-hdr-good { background: rgba(249,115,22,.07); border-color: rgba(249,115,22,.2); color: #ea580c; }
.pp-hdr-dot  { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.pp-hdr-bad  .pp-hdr-dot { background: #ef4444; }
.pp-hdr-good .pp-hdr-dot { background: #f97316; animation: pulseDot 1.8s infinite; }

/* SVG diagram */
.diag-wrap { flex: 1; }
.diag-wrap svg { display: block; width: 100%; height: 100%; }

/* Pills row */
.pp-pills {
  padding: 11px 16px; display: flex; gap: 6px; flex-wrap: wrap;
  border-top: 1px solid rgba(249,115,22,.12);
  background: rgba(249,115,22,.03);
  flex-shrink: 0;
}
.pp-pill {
  font-size: 10.5px; font-weight: 600; color: #ea580c;
  background: rgba(249,115,22,.1); border: 1px solid rgba(249,115,22,.2);
  border-radius: 100px; padding: 4px 11px;
}

/* Saving banner */
.saving-banner {
  margin-top: 24px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  border-radius: 18px; padding: 32px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  position: relative; z-index: 1; overflow: hidden;
}
.saving-banner::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(249,115,22,.08);
  pointer-events: none;
}
.sb-left { flex: 1; }
.sb-eyebrow {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px;
}
.sb-headline {
  font-size: clamp(22px, 2.8vw, 32px); font-weight: 800;
  color: #fff; line-height: 1.1; letter-spacing: -.5px;
}
.sb-headline span { color: #f97316; }
.sb-sub {
  font-size: 14px; color: rgba(255,255,255,.5); margin-top: 8px; line-height: 1.6;
}
.sb-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px; flex-shrink: 0;
}
.sb-amount {
  font-size: clamp(36px, 4vw, 52px); font-weight: 900;
  color: #f97316; line-height: 1;
  text-shadow: 0 0 40px rgba(249,115,22,.4);
}
.sb-amount-sub { font-size: 13px; color: rgba(255,255,255,.45); text-align: right; }
.sb-cta {
  background: #f97316; color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  padding: 12px 24px; border-radius: 11px; border: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all .2s; cursor: pointer;
  box-shadow: 0 4px 18px rgba(249,115,22,.4);
}
.sb-cta:hover { background: #ea580c; transform: translateY(-2px); }

/* animations */
@keyframes badPulse { 0%,100%{opacity:.5} 50%{opacity:.12} }
@keyframes zigMove  { 0%{stroke-dashoffset:800} 100%{stroke-dashoffset:0} }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */
@media(max-width:900px){
  .how-grid,.cta-grid,.brs-inner,.teams-grid{grid-template-columns:1fr}
  .prob-grid,.feat-grid,.tgrid{grid-template-columns:1fr}
  .intent-row{grid-template-columns:repeat(3,1fr)}
  .metrics-grid{grid-template-columns:repeat(2,1fr)}
  .hero-stats{gap:32px}
  .nl{display:none}
  .fg{grid-template-columns:1fr 1fr 1fr}
  .plat-compare{grid-template-columns:1fr;gap:24px}
  .plat-vs{flex-direction:row;padding-top:0;justify-content:center}
  .vs-line{width:60px;height:1px;background:rgba(255,255,255,.15)!important}
  .uni-row{grid-template-columns:repeat(2,1fr)}
}

/* ═══════════════════════════════════════════════════════
   TEAMS SECTION
════════════════════════════════════════════════════════ */
.teams-section { padding: 100px 0; background: #fff; }
.teams-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px;
}
.team-card {
  border-radius: 20px; padding: 32px 28px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  transition: all .28s cubic-bezier(.22,1,.36,1);
  position: relative; overflow: hidden;
}
.team-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--tc); border-radius: 20px 20px 0 0;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.09);
  border-color: var(--tc);
}
.team-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--tb); display: flex; align-items: center;
  justify-content: center; font-size: 24px; margin-bottom: 18px;
  transition: transform .25s cubic-bezier(.22,1,.36,1);
}
.team-card:hover .team-icon-wrap { transform: scale(1.1) rotate(-4deg); }
.team-name {
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--tc); margin-bottom: 6px;
}
.team-title {
  font-size: 19px; font-weight: 800; color: #0f172a;
  line-height: 1.2; letter-spacing: -.4px; margin-bottom: 12px;
}
.team-sub {
  font-size: 13.5px; color: #64748b; line-height: 1.65; margin-bottom: 20px;
}
.team-wins { display: flex; flex-direction: column; gap: 8px; }
.team-win {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: #374151; line-height: 1.5;
}
.team-win::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--tc); flex-shrink: 0; margin-top: 6px;
}
.team-kpi-row {
  display: flex; gap: 16px; margin-top: 20px;
  padding-top: 18px; border-top: 1px solid #f1f5f9;
}
.team-kpi { text-align: center; }
.team-kpi-n { font-size: 22px; font-weight: 800; color: var(--tc); line-height: 1; }
.team-kpi-l { font-size: 10px; color: #94a3b8; margin-top: 3px; font-weight: 500; }

.nl a.active{color:#f97316 !important;font-weight:700;}
.page-hero{background:#0f172a;padding:140px 0 80px;position:relative;overflow:hidden;}
.page-hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 80% 60% at 50% 0%, rgba(249,115,22,.13) 0%, transparent 70%);pointer-events:none;}
.page-hero-inner{max-width:1560px;margin:0 auto;padding:0 32px;position:relative;z-index:1;text-align:center;}
.page-eyebrow{display:inline-flex;align-items:center;gap:7px;background:rgba(249,115,22,.12);border:1px solid rgba(249,115,22,.25);border-radius:100px;padding:6px 16px;font-size:12px;font-weight:700;color:#f97316;text-transform:uppercase;letter-spacing:1.2px;margin-bottom:22px;}
.page-h1{font-size:clamp(36px,5vw,64px);font-weight:800;line-height:1.05;letter-spacing:-2px;color:#fff;margin-bottom:20px;}
.page-h1 .or{color:#f97316}
.page-sub{font-size:18px;color:rgba(255,255,255,.65);line-height:1.7;max-width:620px;margin:0 auto;}

.step-full{display:grid;grid-template-columns:1fr 1fr;gap:72px;align-items:center;margin-bottom:80px}
.step-full:last-child{margin-bottom:0}
.step-full.rev-layout{direction:rtl}
.step-full.rev-layout>*{direction:ltr}
.step-num{font-size:80px;font-weight:900;color:rgba(249,115,22,.12);line-height:1;margin-bottom:8px}
.step-tag{font-size:11px;font-weight:700;color:#f97316;text-transform:uppercase;letter-spacing:1.2px;margin-bottom:8px}
.step-h{font-size:clamp(22px,3vw,34px);font-weight:800;color:#0f172a;letter-spacing:-.8px;line-height:1.15;margin-bottom:14px}
.step-p{font-size:15px;color:#64748b;line-height:1.75;margin-bottom:20px}
.step-signals{display:flex;flex-wrap:wrap;gap:7px}
.sig-chip{background:#f8fafc;border:1px solid #e2e8f0;border-radius:100px;padding:5px 13px;font-size:12px;font-weight:600;color:#374151}
.step-visual{background:linear-gradient(135deg,#f8fafc 0%,#fff 100%);border:1px solid #e2e8f0;border-radius:22px;padding:28px;min-height:280px;display:flex;align-items:center;justify-content:center;}
.brs-spectrum{width:100%;max-width:380px}
.spec-bar{height:14px;border-radius:100px;background:linear-gradient(90deg,#dc2626 0%,#f59e0b 33%,#22c55e 67%,#16a34a 100%);margin-bottom:12px;position:relative}
.spec-marker{position:absolute;top:-20px;left:74%;transform:translateX(-50%);font-size:11px;font-weight:700;color:#f97316}
.spec-marker::after{content:'';position:absolute;top:16px;left:50%;transform:translateX(-50%);width:2px;height:10px;background:#f97316;border-radius:1px}
.spec-labels{display:flex;justify-content:space-between;font-size:11px;color:#94a3b8;font-weight:600}
.orchestration-visual{display:flex;flex-direction:column;gap:10px;width:100%;max-width:340px}
.orch-row{background:#fff;border:1px solid #e2e8f0;border-radius:12px;padding:12px 16px;display:flex;align-items:center;gap:10px}
.orch-channel{font-size:13px;font-weight:700;color:#0f172a}
.orch-status{margin-left:auto;font-size:11px;font-weight:700;color:#16a34a;background:#f0fdf4;border-radius:100px;padding:3px 10px}
.learn-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.learn-card{background:#fff;border:1px solid #e2e8f0;border-radius:16px;padding:22px;text-align:center}
.learn-num{font-size:36px;font-weight:900;color:#f97316;line-height:1;margin-bottom:6px}
.learn-label{font-size:13px;font-weight:600;color:#64748b}



/* === tech_stack === */


/* ═══════════════════════════════════════════════════════
   RESET
════════════════════════════════════════════════════════ */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;font-size:16px}
body{
  font-family:'Plus Jakarta Sans',system-ui,sans-serif;
  background:#ffffff;
  color:#0f172a;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
button{font-family:inherit;cursor:pointer;border:none;background:none}



/* ═══════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════ */
nav{
  position:fixed;top:0;left:0;right:0;z-index:900;
  height:66px;
  background:rgba(255,255,255,0.93);
  backdrop-filter:blur(22px);-webkit-backdrop-filter:blur(22px);
  border-bottom:1px solid rgba(0,0,0,0.055);
  display:flex;align-items:center;
  transition:box-shadow .3s;
}
nav.scrolled{box-shadow:0 2px 28px rgba(0,0,0,0.07)}
.nw{max-width:1560px;margin:0 auto;padding:0 48px;display:flex;align-items:center;width:100%}
.logo{display:flex;align-items:center;gap:10px;margin-right:auto}
.logo svg{width:46px;height:36px;flex-shrink:0}
.logo-t{font-size:17px;font-weight:800;letter-spacing:1px;color:#0f172a;text-transform:uppercase}
.nl{display:flex;list-style:none;gap:2px;margin-right:24px}
.nl a{
  font-size:17.5px;font-weight:500;color:#64748b;
  padding:7px 13px;border-radius:8px;
  transition:color .14s,background .14s;
  display:block;
}
.nl a:hover{color:#0f172a;background:#f8fafc}
.nav-btn{
  background:#f97316;color:#fff;
  font-size:13.5px;font-weight:600;
  padding:10px 22px;border-radius:10px;
  box-shadow:0 2px 14px rgba(249,115,22,0.38);
  transition:all .2s;
  display:inline-flex;align-items:center;gap:6px;
}
.nav-btn:hover{background:#ea580c;transform:translateY(-1px);box-shadow:0 4px 20px rgba(249,115,22,0.48)}

/* ═══════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════ */
.hero{
  min-height:calc(100vh - 44px);padding-top:76px;
  display:flex;align-items:center;justify-content:center;
  background:#fff;position:relative;overflow:hidden;
}

/* Animated dot grid */
.hero-dots{
  position:absolute;inset:0;pointer-events:none;
  background-image:radial-gradient(circle,#e2e8f0 1px,transparent 1px);
  background-size:30px 30px;
  opacity:0.45;
  animation:dotsBreath 8s ease-in-out infinite;
}
@keyframes dotsBreath{0%,100%{opacity:.45;background-size:30px 30px}50%{opacity:.35;background-size:32px 32px}}

/* Orange aurora glow */
.hero-aura{
  position:absolute;pointer-events:none;
  width:900px;height:700px;
  left:50%;top:50%;
  transform:translate(-50%,-52%);
  background:radial-gradient(ellipse at center,rgba(249,115,22,.07) 0%,rgba(251,146,60,.03) 35%,transparent 65%);
  animation:auraFloat 7s ease-in-out infinite;
}
@keyframes auraFloat{0%,100%{transform:translate(-50%,-52%) scale(1)}50%{transform:translate(-50%,-50%) scale(1.04)}}

/* Floating orbs */
.orb{
  position:absolute;border-radius:50%;
  pointer-events:none;filter:blur(60px);opacity:.25;
  animation:orbDrift var(--d,12s) ease-in-out infinite;
}
.orb1{width:300px;height:300px;background:#f97316;top:10%;left:5%;--d:11s}
.orb2{width:200px;height:200px;background:#fb923c;bottom:20%;right:8%;--d:14s;animation-delay:-4s}
.orb3{width:150px;height:150px;background:#fbbf24;top:60%;left:60%;--d:9s;animation-delay:-7s;opacity:.15}
@keyframes orbDrift{
  0%,100%{transform:translateY(0) translateX(0)}
  33%{transform:translateY(-30px) translateX(15px)}
  66%{transform:translateY(20px) translateX(-10px)}
}

.hero-inner{
  position:relative;z-index:2;
  display:flex;flex-direction:column;
  align-items:center;text-align:center;
  padding:88px 32px 110px;
  max-width:1000px;
}

/* Badge */
.hero-badge{
  display:inline-flex;align-items:center;gap:9px;
  background:#fff7ed;border:1px solid #fed7aa;
  border-radius:100px;padding:7px 18px;
  font-size:12.5px;font-weight:600;color:#f97316;
  margin-bottom:30px;
  opacity:0;animation:slideDown .7s cubic-bezier(.22,1,.36,1) .1s forwards;
}
.badge-pulse{
  width:8px;height:8px;border-radius:50%;
  background:#f97316;flex-shrink:0;
  animation:pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot{
  0%,100%{transform:scale(1);opacity:1;box-shadow:0 0 0 0 rgba(249,115,22,.4)}
  50%{transform:scale(.85);opacity:.6;box-shadow:0 0 0 6px rgba(249,115,22,0)}
}
@keyframes slideDown{from{opacity:0;transform:translateY(-12px)}to{opacity:1;transform:translateY(0)}}

/* Headline */
.hero-h1{
  font-size:clamp(48px,7vw,82px);
  font-weight:800;line-height:1.04;
  letter-spacing:-3px;color:#0f172a;
  margin-bottom:24px;
  opacity:0;animation:slideUp .8s cubic-bezier(.22,1,.36,1) .22s forwards;
}
.hero-h1 .or{
  color:#f97316;position:relative;display:inline-block;
}
.hero-h1 .or::after{
  content:'';
  position:absolute;left:0;right:100%;bottom:-4px;
  height:3px;border-radius:2px;background:#f97316;
  animation:lineGrow .9s cubic-bezier(.22,1,.36,1) 1.2s forwards;
}
@keyframes lineGrow{to{right:0}}
@keyframes slideUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}

.hero-sub{
  font-size:17.5px;color:#64748b;line-height:1.72;
  max-width:640px;margin:0 auto 40px;
  opacity:0;animation:slideUp .8s cubic-bezier(.22,1,.36,1) .36s forwards;
}

/* Buttons */
.hero-btns{
  display:flex;gap:13px;justify-content:center;
  margin-bottom:68px;
  opacity:0;animation:slideUp .8s cubic-bezier(.22,1,.36,1) .48s forwards;
}
.btn-pr{
  background:#f97316;color:#fff;
  font-size:15px;font-weight:700;
  padding:15px 32px;border-radius:13px;
  box-shadow:0 4px 20px rgba(249,115,22,.4);
  display:inline-flex;align-items:center;gap:7px;
  transition:all .2s cubic-bezier(.22,1,.36,1);
  position:relative;overflow:hidden;
}
.btn-pr::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,.15),transparent);
  opacity:0;transition:opacity .2s;
}
.btn-pr:hover{background:#ea580c;transform:translateY(-2px);box-shadow:0 8px 30px rgba(249,115,22,.5)}
.btn-pr:hover::before{opacity:1}
.btn-pr:active{transform:translateY(0);box-shadow:0 4px 16px rgba(249,115,22,.35)}
.btn-sc{
  background:#fff;color:#0f172a;
  font-size:15px;font-weight:600;
  padding:15px 32px;border-radius:13px;
  border:1.5px solid #e2e8f0;
  box-shadow:0 1px 4px rgba(0,0,0,.05);
  display:inline-flex;align-items:center;gap:7px;
  transition:all .2s;
}
.btn-sc:hover{border-color:#94a3b8;background:#f8fafc;transform:translateY(-1px)}

/* Stats */
.hero-stats{
  display:flex;gap:60px;
  padding-top:30px;border-top:1px solid #f1f5f9;
  opacity:0;animation:slideUp .8s cubic-bezier(.22,1,.36,1) .62s forwards;
}
.stat-n{font-size:44px;font-weight:800;line-height:1;color:#0f172a;font-variant-numeric:tabular-nums}
.stat-n .hl{color:#f97316}
.stat-l{font-size:13px;color:#94a3b8;margin-top:6px;font-weight:500;letter-spacing:.2px}

/* ═══════════════════════════════════════════════════════
   LIVE TICKER STRIP
════════════════════════════════════════════════════════ */
.ticker-wrap{
  background:#fafafa;
  border-top:1px solid #f1f5f9;border-bottom:1px solid #f1f5f9;
  overflow:hidden;position:relative;height:44px;display:flex;align-items:center;
}
.ticker-wrap::before,.ticker-wrap::after{
  content:'';position:absolute;top:0;bottom:0;width:100px;z-index:2;pointer-events:none;
}
.ticker-wrap::before{left:0;background:linear-gradient(90deg,#fafafa 0%,transparent 100%)}
.ticker-wrap::after{right:0;background:linear-gradient(-90deg,#fafafa 0%,transparent 100%)}
.ticker-track{
  display:flex;animation:scrollTicker 30s linear infinite;
  will-change:transform;
}
@keyframes scrollTicker{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.tick{
  display:inline-flex;align-items:center;gap:8px;
  padding:0 28px;border-right:1px solid #f1f5f9;white-space:nowrap;
}
.tick-dot{width:6px;height:6px;border-radius:50%;flex-shrink:0}
.tick-lbl{font-size:12.5px;font-weight:500;color:#475569}
.tick-val{font-size:12.5px;font-weight:700}

/* ═══════════════════════════════════════════════════════
   LOGO STRIP
════════════════════════════════════════════════════════ */
.logos-section{background:#f8fafc;border-bottom:1px solid #f1f5f9;padding:28px 0}
.logos-inner{max-width:1560px;margin:0 auto;padding:0 48px}
.logos-lbl{font-size:11px;font-weight:700;color:#94a3b8;text-transform:uppercase;letter-spacing:1.5px;text-align:center;margin-bottom:16px}
.logos-row{display:flex;gap:8px;flex-wrap:wrap;justify-content:center}
.lchip{
  background:#fff;border:1px solid #e2e8f0;border-radius:8px;
  padding:8px 17px;font-size:11.5px;font-weight:700;
  color:#94a3b8;letter-spacing:.4px;text-transform:uppercase;
  transition:all .22s cubic-bezier(.22,1,.36,1);
}
.lchip:hover{border-color:#f97316;color:#f97316;transform:translateY(-2px);box-shadow:0 4px 14px rgba(249,115,22,.15)}

/* ═══════════════════════════════════════════════════════
   UTILITY
════════════════════════════════════════════════════════ */
.section{padding:100px 0}
.section-alt{padding:100px 0;background:#f8fafc}
.wrap{max-width:1560px;margin:0 auto;padding:0 48px}
.sec-head{text-align:center;margin-bottom:64px}
.eyebrow{
  display:inline-flex;align-items:center;gap:7px;
  background:#fff7ed;border:1px solid #fed7aa;
  border-radius:100px;padding:5px 14px;
  font-size:11.5px;font-weight:600;color:#f97316;
  margin-bottom:14px;letter-spacing:.2px;
}
.eyebrow::before{content:'';width:5px;height:5px;border-radius:50%;background:#f97316;flex-shrink:0}
h2.big{
  font-size:clamp(28px,3.8vw,46px);font-weight:800;
  letter-spacing:-1.2px;line-height:1.1;color:#0f172a;
  margin-bottom:14px;
}
h2.big .or{color:#f97316}
.sub{font-size:17px;color:#64748b;line-height:1.7;max-width:700px;margin:0 auto}

/* Scroll reveal */
.rev{
  opacity:0;transform:translateY(30px);
  transition:opacity .7s cubic-bezier(.22,1,.36,1),
             transform .7s cubic-bezier(.22,1,.36,1);
}
.rev.on{opacity:1;transform:translateY(0)}
.rev.d1{transition-delay:.08s}.rev.d2{transition-delay:.16s}.rev.d3{transition-delay:.24s}

/* ═══════════════════════════════════════════════════════
   PROBLEM SECTION
════════════════════════════════════════════════════════ */
.prob-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.prob-card{
  background:#fff;border:1px solid #e2e8f0;border-radius:20px;
  padding:34px 28px;text-align:center;
  transition:all .3s cubic-bezier(.22,1,.36,1);
  position:relative;overflow:hidden;
}
.prob-card::before{
  content:'';position:absolute;inset:0;opacity:0;
  transition:opacity .3s;
  background:linear-gradient(135deg,rgba(249,115,22,.02) 0%,rgba(249,115,22,.05) 100%);
}
.prob-card:hover{box-shadow:0 16px 48px rgba(0,0,0,.09);transform:translateY(-5px)}
.prob-card:hover::before{opacity:1}
.prob-num{font-size:54px;font-weight:800;line-height:1;margin-bottom:10px;font-variant-numeric:tabular-nums}
.prob-title{font-size:15px;font-weight:700;color:#0f172a;margin-bottom:8px}
.prob-desc{font-size:13px;color:#64748b;line-height:1.65}

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════════════ */
.how-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.how-steps{display:flex;flex-direction:column;gap:6px}
.how-step{
  display:flex;gap:16px;align-items:flex-start;
  padding:18px;border-radius:14px;border:1px solid transparent;
  transition:all .22s cubic-bezier(.22,1,.36,1);
}
.how-step:hover{background:#fff7ed;border-color:#fed7aa;transform:translateX(4px)}
.step-badge{
  width:34px;height:34px;border-radius:9px;background:#f97316;
  display:flex;align-items:center;justify-content:center;
  font-size:12.5px;font-weight:800;color:#fff;flex-shrink:0;
}
.step-t{font-size:14.5px;font-weight:700;color:#0f172a;margin-bottom:4px}
.step-d{font-size:13.5px;color:#64748b;line-height:1.6}

/* Flow visualizer */
.flow-vis{
  background:#f8fafc;border:1px solid #e2e8f0;
  border-radius:22px;padding:26px;
  box-shadow:0 4px 24px rgba(0,0,0,.04);
}
.flow-hdr{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}
.flow-ttl{font-size:11px;font-weight:700;color:#94a3b8;text-transform:uppercase;letter-spacing:1.5px}
.live-chip{display:flex;align-items:center;gap:5px;font-size:11px;font-weight:700;color:#dc2626}
.live-dot{width:6px;height:6px;border-radius:50%;background:#dc2626;animation:blink 1.4s ease-in-out infinite}
@keyframes blink{0%,100%{opacity:1}50%{opacity:.2}}
.flow-/* removed bad body rule */
.f-row{
  background:#fff;border:1px solid #e2e8f0;border-radius:11px;
  padding:12px 14px;display:flex;gap:9px;align-items:center;
  font-size:13px;color:#0f172a;
  animation:fadeSlide .4s cubic-bezier(.22,1,.36,1) both;
}
@keyframes fadeSlide{from{opacity:0;transform:translateX(12px)}to{opacity:1;transform:translateX(0)}}
.f-brs{
  background:#fff7ed;border:1px solid #fed7aa;border-radius:11px;
  padding:12px 14px;display:flex;gap:9px;align-items:center;
  font-size:13px;animation:fadeSlide .4s cubic-bezier(.22,1,.36,1) .08s both;
}
.brs-dot{width:7px;height:7px;border-radius:50%;background:#f97316;flex-shrink:0;animation:blink 1.4s infinite}
.f-eng{
  background:#fff;border:1.5px solid #f97316;border-radius:11px;
  padding:12px 14px;font-size:13px;color:#0f172a;
  animation:fadeSlide .4s cubic-bezier(.22,1,.36,1) .16s both;
}
.f-win{
  background:#dcfce7;border:1px solid rgba(22,163,74,.22);border-radius:11px;
  padding:12px 14px;display:flex;justify-content:space-between;align-items:center;
  animation:fadeSlide .4s cubic-bezier(.22,1,.36,1) .24s both;
}
.f-sep{text-align:center;font-size:11px;font-weight:700;color:#e2e8f0;margin:2px 0}
.flow-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-top:14px}
.fstat{background:#fff;border:1px solid #e2e8f0;border-radius:10px;padding:12px;text-align:center}
.fstat-n{font-size:17px;font-weight:800;color:#0f172a}
.fstat-l{font-size:10px;color:#94a3b8;margin-top:2px}

/* ═══════════════════════════════════════════════════════
   FEATURES GRID
════════════════════════════════════════════════════════ */
.feat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.feat-card{
  background:#fff;border:1px solid #e2e8f0;border-radius:18px;padding:26px;
  transition:all .28s cubic-bezier(.22,1,.36,1);
  position:relative;overflow:hidden;
}
.feat-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:2px;
  background:transparent;transition:background .28s;
}
.feat-card:hover{
  border-color:#f97316;transform:translateY(-4px);
  box-shadow:0 0 0 3px rgba(249,115,22,.07), 0 14px 44px rgba(0,0,0,.09);
}
.feat-card:hover::before{background:linear-gradient(90deg,#f97316 0%,#fb923c 50%,#fbbf24 100%)}
.feat-icon{
  width:46px;height:46px;border-radius:12px;background:#fff7ed;
  display:flex;align-items:center;justify-content:center;font-size:21px;
  margin-bottom:14px;transition:transform .25s cubic-bezier(.22,1,.36,1);
}
.feat-card:hover .feat-icon{transform:scale(1.12) rotate(-3deg)}
.feat-title{font-size:15px;font-weight:700;color:#0f172a;margin-bottom:7px}
.feat-desc{font-size:13px;color:#64748b;line-height:1.65}
.feat-kpi{margin-top:13px;padding-top:11px;border-top:1px solid #f8fafc;font-size:11.5px;font-weight:700;color:#f97316}

/* ═══════════════════════════════════════════════════════
   INTENT JOURNEY
════════════════════════════════════════════════════════ */
.intent-row{display:grid;grid-template-columns:repeat(9,1fr);gap:8px}
.ic{
  border:1.5px solid #e2e8f0;border-radius:13px;
  padding:14px 5px;text-align:center;background:#fff;
  transition:all .25s cubic-bezier(.22,1,.36,1);
  position:relative;overflow:hidden;
}
.ic:hover{
  transform:translateY(-4px);border-color:#f97316;background:#fff7ed;
  box-shadow:0 6px 20px rgba(249,115,22,.15);
}
.ic-n{font-size:10px;font-weight:700;color:#f97316;margin-bottom:5px;letter-spacing:.5px}
.ic-i{font-size:19px;display:block;margin-bottom:5px}
.ic-l{font-size:10px;font-weight:700;color:#0f172a;line-height:1.3}
.ic-k{font-size:9px;color:#94a3b8;margin-top:4px}

/* Active intent chips */
.ic-act{border-color:#f97316;background:#fff7ed}
.ic-red{border-color:#fecaca;background:#fef2f2}
.ic-grn1{border-color:rgba(22,163,74,.3);background:#dcfce7}
.ic-grn2{border-color:rgba(22,163,74,.2);background:#f0fdf4}

/* ═══════════════════════════════════════════════════════
   METRICS BAND
════════════════════════════════════════════════════════ */
.metrics-band{
  background:#0f172a;padding:88px 0;
  position:relative;overflow:hidden;
}
.metrics-band::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse at 50% 50%,rgba(249,115,22,.08) 0%,transparent 60%);
}
.metrics-grid{
  display:grid;grid-template-columns:repeat(5,1fr);gap:24px;
  text-align:center;position:relative;z-index:1;
}
.met-n{
  font-size:48px;font-weight:800;color:#f97316;
  display:block;line-height:1;font-variant-numeric:tabular-nums;
  transition:all .3s;
}
.met-l{font-size:13px;color:rgba(255,255,255,.38);display:block;margin-top:9px;letter-spacing:.2px}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════════ */
.tgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.tcard{
  background:#fff;border:1px solid #e2e8f0;border-radius:20px;padding:28px;
  transition:all .28s cubic-bezier(.22,1,.36,1);
}
.tcard:hover{box-shadow:0 14px 44px rgba(0,0,0,.09);transform:translateY(-4px)}
.stars{color:#f97316;font-size:13px;letter-spacing:2px;margin-bottom:14px}
.tq{font-size:14.5px;color:#374151;line-height:1.76;font-style:italic;margin-bottom:18px}
.tau{display:flex;align-items:center;gap:11px}
.tav{width:40px;height:40px;border-radius:50%;background:#fff7ed;display:flex;align-items:center;justify-content:center;font-size:17px;flex-shrink:0}
.tn{font-size:14px;font-weight:700;color:#0f172a}
.tr{font-size:12px;color:#94a3b8;margin-top:1px}

/* ═══════════════════════════════════════════════════════
   ANIMATED BRS COUNTER SECTION
════════════════════════════════════════════════════════ */
.brs-section{
  background:#0f172a;padding:96px 0;
  position:relative;overflow:hidden;
}
.brs-section::before{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(circle at 20% 50%,rgba(249,115,22,.07) 0%,transparent 45%),
    radial-gradient(circle at 80% 50%,rgba(251,146,60,.05) 0%,transparent 45%);
}
.brs-inner{
  max-width:1560px;margin:0 auto;padding:0 32px;
  display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;
  position:relative;z-index:1;
}
.brs-score-wrap{
  display:flex;flex-direction:column;align-items:center;gap:24px;
}
.brs-ring{
  position:relative;width:220px;height:220px;
}
.brs-ring svg{width:220px;height:220px;transform:rotate(-90deg)}
.ring-bg{fill:none;stroke:rgba(255,255,255,.06);stroke-width:12}
.ring-prog{
  fill:none;stroke:url(#ringGrad);stroke-width:12;
  stroke-linecap:round;
  stroke-dasharray:589;stroke-dashoffset:589;
  transition:stroke-dashoffset 2s cubic-bezier(.22,1,.36,1);
}
.ring-prog.animate{stroke-dashoffset:156}/* 589 * (1 - 0.74) = ~153 */
.brs-center{
  position:absolute;inset:0;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
}
.brs-num{
  font-size:54px;font-weight:800;color:#fff;line-height:1;
  font-variant-numeric:tabular-nums;
}
.brs-sub{font-size:12px;font-weight:600;color:rgba(255,255,255,.45);letter-spacing:1px;text-transform:uppercase;margin-top:2px}
.brs-label{
  font-size:14px;font-weight:700;color:#f97316;
  background:rgba(249,115,22,.12);border:1px solid rgba(249,115,22,.2);
  border-radius:100px;padding:6px 16px;
}
.brs-stages{
  display:flex;gap:8px;
}
.brs-st{
  flex:1;padding:8px 4px;border-radius:8px;text-align:center;font-size:11px;font-weight:700;
  transition:all .3s;
}
.brs-st.active-stage{transform:scale(1.05)}

/* ═══════════════════════════════════════════════════════
   CTA BAND
════════════════════════════════════════════════════════ */
.cta-band{
  background:#f97316;padding:92px 0;
  position:relative;overflow:hidden;
}
.cta-band::before{
  content:'';position:absolute;right:-150px;top:-150px;
  width:600px;height:600px;border-radius:50%;
  background:rgba(255,255,255,.07);
  animation:ctaOrb 10s ease-in-out infinite;
}
.cta-band::after{
  content:'';position:absolute;left:-80px;bottom:-100px;
  width:400px;height:400px;border-radius:50%;
  background:rgba(255,255,255,.05);
  animation:ctaOrb 14s ease-in-out infinite reverse;
}
@keyframes ctaOrb{0%,100%{transform:scale(1) translate(0,0)}50%{transform:scale(1.06) translate(10px,-10px)}}
.cta-grid{
  position:relative;z-index:2;
  display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;
}
.cta-h2{
  font-size:clamp(28px,3.2vw,42px);font-weight:800;
  line-height:1.1;letter-spacing:-.8px;color:#fff;margin-bottom:14px;
}
.cta-p{font-size:16.5px;color:rgba(255,255,255,.82);line-height:1.7;margin-bottom:30px}
.btn-wh{
  background:#fff;color:#0f172a;font-size:15px;font-weight:700;
  padding:15px 30px;border-radius:13px;
  box-shadow:0 2px 12px rgba(0,0,0,.1);
  display:inline-flex;align-items:center;gap:6px;
  transition:all .2s;
}
.btn-wh:hover{transform:translateY(-2px);box-shadow:0 6px 22px rgba(0,0,0,.14)}
.btn-gh{
  background:rgba(255,255,255,.14);color:#fff;font-size:15px;font-weight:600;
  padding:15px 30px;border-radius:13px;border:1.5px solid rgba(255,255,255,.3);
  display:inline-flex;align-items:center;gap:6px;transition:all .2s;
}
.btn-gh:hover{background:rgba(255,255,255,.22)}
.trust-row{display:flex;gap:16px;flex-wrap:wrap;margin-top:20px}
.trust-item{display:flex;align-items:center;gap:6px;font-size:13px;color:rgba(255,255,255,.8)}
.trust-item::before{content:'✓';font-weight:700;color:#fff}
.cta-box{
  background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.2);
  border-radius:22px;padding:28px;
}
.d-item{display:flex;gap:12px;margin-bottom:14px}
.d-item:last-child{margin-bottom:0}
.d-icon{font-size:18px;flex-shrink:0;margin-top:1px}
.d-t{font-size:14px;font-weight:600;color:#fff}
.d-s{font-size:12px;color:rgba(255,255,255,.6);margin-top:2px}

/* ═══════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
footer{background:#0f172a;padding:64px 0 32px}
.fg{display:grid;grid-template-columns:2fr 1fr 1fr 1fr 1fr;gap:40px;margin-bottom:48px}
.f-desc{font-size:13.5px;color:rgba(255,255,255,.32);line-height:1.7;margin-top:14px;max-width:230px}
.fc h5{font-size:11px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:rgba(255,255,255,.25);margin-bottom:12px}
.fc a{display:block;font-size:13.5px;color:rgba(255,255,255,.42);margin-bottom:8px;transition:color .14s}
.fc a:hover{color:#f97316}
.f-btm{border-top:1px solid rgba(255,255,255,.05);padding-top:22px;display:flex;justify-content:space-between;align-items:center}
.f-btm p{font-size:13px;color:rgba(255,255,255,.22)}

/* ═══════════════════════════════════════════════════════
   PLATFORM ARCHITECTURE SECTION
════════════════════════════════════════════════════════ */
.plat-sec {
  background: linear-gradient(180deg, #f8fafc 0%, #fff7ed 50%, #f8fafc 100%);
  padding: 64px 0 60px;
  position: relative; overflow: hidden;
}
.plat-sec::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(249,115,22,.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(249,115,22,.08) 0%, transparent 50%);
}
.plat-sec .sec-head { position: relative; z-index: 1; margin-bottom: 8px; }

/* Panel titles */
.panel-titles {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.panel-title-bad {
  text-align: center; padding: 0 12px;
}
.panel-title-good {
  text-align: center; padding: 0 12px;
}
.pt-label {
  font-size: 16px; font-weight: 800; letter-spacing: -.3px; line-height: 1.2;
  margin-bottom: 6px;
}
.pt-label-bad  { color: #dc2626; }
.pt-label-good { color: #f97316; }
.pt-sub {
  font-size: 12px; font-weight: 500; line-height: 1.5;
  max-width: 280px; margin: 0 auto;
}
.pt-sub-bad  { color: #94a3b8; }
.pt-sub-good { color: #78716c; }

/* Two-panel layout */
.plat-panels {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  position: relative; z-index: 1;
  align-items: stretch;
}

/* VS column */
.plat-vs-col {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 0 8px;
}
.pvs-line {
  flex: 1; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(15,23,42,.15), transparent);
  min-height: 40px;
}
.pvs-badge {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: #fff;
  border: 2.5px solid #0f172a;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; color: #0f172a;
  letter-spacing: .5px;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}

/* Panel wrappers — equal height via grid stretch */
.plat-panel {
  border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
}
.plat-panel-bad  {
  border: 1.5px solid rgba(220,38,38,.25);
  background: #fff;
  box-shadow: 0 4px 40px rgba(220,38,38,.06), 0 1px 0 rgba(220,38,38,.1);
}
.plat-panel-good {
  border: 1.5px solid rgba(249,115,22,.35);
  background: #fff;
  box-shadow: 0 4px 40px rgba(249,115,22,.1), 0 1px 0 rgba(249,115,22,.15);
}

/* Panel header strip */
.pp-hdr {
  padding: 13px 20px;
  display: flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: .3px;
  text-transform: uppercase;
  border-bottom: 1px solid;
  flex-shrink: 0;
}
.pp-hdr-bad  { background: rgba(220,38,38,.06); border-color: rgba(220,38,38,.15); color: #dc2626; }
.pp-hdr-good { background: rgba(249,115,22,.07); border-color: rgba(249,115,22,.2); color: #ea580c; }
.pp-hdr-dot  { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.pp-hdr-bad  .pp-hdr-dot { background: #ef4444; }
.pp-hdr-good .pp-hdr-dot { background: #f97316; animation: pulseDot 1.8s infinite; }

/* SVG diagram */
.diag-wrap { flex: 1; }
.diag-wrap svg { display: block; width: 100%; height: 100%; }

/* Pills row */
.pp-pills {
  padding: 11px 16px; display: flex; gap: 6px; flex-wrap: wrap;
  border-top: 1px solid rgba(249,115,22,.12);
  background: rgba(249,115,22,.03);
  flex-shrink: 0;
}
.pp-pill {
  font-size: 10.5px; font-weight: 600; color: #ea580c;
  background: rgba(249,115,22,.1); border: 1px solid rgba(249,115,22,.2);
  border-radius: 100px; padding: 4px 11px;
}

/* Saving banner */
.saving-banner {
  margin-top: 24px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  border-radius: 18px; padding: 32px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  position: relative; z-index: 1; overflow: hidden;
}
.saving-banner::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(249,115,22,.08);
  pointer-events: none;
}
.sb-left { flex: 1; }
.sb-eyebrow {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px;
}
.sb-headline {
  font-size: clamp(22px, 2.8vw, 32px); font-weight: 800;
  color: #fff; line-height: 1.1; letter-spacing: -.5px;
}
.sb-headline span { color: #f97316; }
.sb-sub {
  font-size: 14px; color: rgba(255,255,255,.5); margin-top: 8px; line-height: 1.6;
}
.sb-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px; flex-shrink: 0;
}
.sb-amount {
  font-size: clamp(36px, 4vw, 52px); font-weight: 900;
  color: #f97316; line-height: 1;
  text-shadow: 0 0 40px rgba(249,115,22,.4);
}
.sb-amount-sub { font-size: 13px; color: rgba(255,255,255,.45); text-align: right; }
.sb-cta {
  background: #f97316; color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  padding: 12px 24px; border-radius: 11px; border: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all .2s; cursor: pointer;
  box-shadow: 0 4px 18px rgba(249,115,22,.4);
}
.sb-cta:hover { background: #ea580c; transform: translateY(-2px); }

/* animations */
@keyframes badPulse { 0%,100%{opacity:.5} 50%{opacity:.12} }
@keyframes zigMove  { 0%{stroke-dashoffset:800} 100%{stroke-dashoffset:0} }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */
@media(max-width:900px){
  .how-grid,.cta-grid,.brs-inner,.teams-grid{grid-template-columns:1fr}
  .prob-grid,.feat-grid,.tgrid{grid-template-columns:1fr}
  .intent-row{grid-template-columns:repeat(3,1fr)}
  .metrics-grid{grid-template-columns:repeat(2,1fr)}
  .hero-stats{gap:32px}
  .nl{display:none}
  .fg{grid-template-columns:1fr 1fr 1fr}
  .plat-compare{grid-template-columns:1fr;gap:24px}
  .plat-vs{flex-direction:row;padding-top:0;justify-content:center}
  .vs-line{width:60px;height:1px;background:rgba(255,255,255,.15)!important}
  .uni-row{grid-template-columns:repeat(2,1fr)}
}

/* ═══════════════════════════════════════════════════════
   TEAMS SECTION
════════════════════════════════════════════════════════ */
.teams-section { padding: 100px 0; background: #fff; }
.teams-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px;
}
.team-card {
  border-radius: 20px; padding: 32px 28px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  transition: all .28s cubic-bezier(.22,1,.36,1);
  position: relative; overflow: hidden;
}
.team-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--tc); border-radius: 20px 20px 0 0;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.09);
  border-color: var(--tc);
}
.team-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--tb); display: flex; align-items: center;
  justify-content: center; font-size: 24px; margin-bottom: 18px;
  transition: transform .25s cubic-bezier(.22,1,.36,1);
}
.team-card:hover .team-icon-wrap { transform: scale(1.1) rotate(-4deg); }
.team-name {
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--tc); margin-bottom: 6px;
}
.team-title {
  font-size: 19px; font-weight: 800; color: #0f172a;
  line-height: 1.2; letter-spacing: -.4px; margin-bottom: 12px;
}
.team-sub {
  font-size: 13.5px; color: #64748b; line-height: 1.65; margin-bottom: 20px;
}
.team-wins { display: flex; flex-direction: column; gap: 8px; }
.team-win {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: #374151; line-height: 1.5;
}
.team-win::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--tc); flex-shrink: 0; margin-top: 6px;
}
.team-kpi-row {
  display: flex; gap: 16px; margin-top: 20px;
  padding-top: 18px; border-top: 1px solid #f1f5f9;
}
.team-kpi { text-align: center; }
.team-kpi-n { font-size: 22px; font-weight: 800; color: var(--tc); line-height: 1; }
.team-kpi-l { font-size: 10px; color: #94a3b8; margin-top: 3px; font-weight: 500; }


.page-hero{background:#0f172a;padding:140px 0 90px;position:relative;overflow:hidden;}
.page-hero::before{content:"";position:absolute;inset:0;background:radial-gradient(ellipse 80% 60% at 50% 0%,rgba(249,115,22,.14) 0%,transparent 70%);pointer-events:none;}
.page-hero-inner{max-width:1560px;margin:0 auto;padding:0 32px;position:relative;z-index:1;text-align:center;}
.page-eyebrow{display:inline-flex;align-items:center;gap:7px;background:rgba(249,115,22,.12);border:1px solid rgba(249,115,22,.25);border-radius:100px;padding:6px 16px;font-size:12px;font-weight:700;color:#f97316;text-transform:uppercase;letter-spacing:1.2px;margin-bottom:22px;}
.page-h1{font-size:clamp(38px,5.5vw,72px);font-weight:800;line-height:1.03;letter-spacing:-2.5px;color:#fff;margin-bottom:22px;}
.page-h1 .or{color:#f97316}
.page-sub{font-size:18px;color:rgba(255,255,255,.6);line-height:1.75;max-width:660px;margin:0 auto 48px;}

/* USP PILLS */
.usp-row{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin-bottom:0}
.usp-pill{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);border-radius:14px;padding:12px 20px;text-align:center;min-width:140px}
.usp-num{font-size:24px;font-weight:900;color:#f97316;line-height:1}
.usp-lbl{font-size:11.5px;color:rgba(255,255,255,.45);margin-top:3px}

/* STICKY COMPONENT NAV */
.cnav{background:#fff;border-bottom:2px solid #f1f5f9;padding:0;position:sticky;top:66px;z-index:890;overflow:hidden;}
@keyframes cnav-scroll{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}
.cnav-inner{display:flex;gap:0;width:max-content;animation:cnav-scroll 20s linear infinite;}
.cnav:hover .cnav-inner{animation-play-state:paused;}
.cnav-inner::-webkit-scrollbar{display:none}
.cnav-pill{display:inline-flex;align-items:center;gap:6px;padding:16px 18px;font-size:12.5px;font-weight:700;color:#94a3b8;text-decoration:none;white-space:nowrap;border-bottom:3px solid transparent;transition:all .18s;flex-shrink:0;margin-bottom:-2px}
.cnav-pill:hover{color:var(--nc);border-bottom-color:var(--nc)}
.cnav-pill.active{color:var(--nc);border-bottom-color:var(--nc)}

/* INTEGRATION ADVANTAGE BAND */
.int-band{background:#0f172a;padding:72px 0}
.int-grid{display:grid;grid-template-columns:1fr 1fr;gap:72px;align-items:center}
.int-point{display:flex;gap:16px;align-items:flex-start;margin-bottom:24px}
.int-point:last-child{margin-bottom:0}
.int-dot{width:10px;height:10px;border-radius:50%;background:#f97316;flex-shrink:0;margin-top:6px}
.int-text{font-size:15px;color:rgba(255,255,255,.7);line-height:1.7}
.int-text strong{color:#fff}

/* COMPONENT CARDS */
.comp-list{display:flex;flex-direction:column;gap:2px}
.comp-card{background:#fff;border-left:4px solid var(--cc,#f97316);border-top:1px solid #f1f5f9;border-right:1px solid #f1f5f9;border-bottom:1px solid #f1f5f9;border-radius:0 18px 18px 0;overflow:hidden;transition:all .2s;scroll-margin-top:116px;display:grid;grid-template-columns:120px 1fr}
.comp-card:first-child{border-radius:18px 18px 0 0;border-left:4px solid var(--cc)}
.comp-card:last-child{border-radius:0 0 18px 18px}
.comp-card:hover{box-shadow:0 8px 32px rgba(0,0,0,.08);transform:translateX(2px)}
.cc-left{background:var(--cb,#fff7ed);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;padding:28px 16px;border-right:1px solid rgba(0,0,0,.04)}
.cc-num{font-size:11px;font-weight:800;color:var(--cc);opacity:.5;letter-spacing:1px}
.cc-icon{font-size:32px;line-height:1}
.cc-label-pill{font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.8px;color:var(--cc);background:#fff;border:1px solid;border-color:color-mix(in srgb,var(--cc) 30%,transparent);border-radius:100px;padding:3px 9px;text-align:center}
.cc-body{padding:28px 32px}
.cc-name{font-size:21px;font-weight:800;color:#0f172a;margin-bottom:4px;letter-spacing:-.4px}
.cc-tagline{font-size:13px;color:#94a3b8;font-weight:600;margin-bottom:14px}
.cc-desc{font-size:14.5px;color:#475569;line-height:1.75;margin-bottom:20px}
.cc-feats{margin-bottom:20px}
.cc-feat-head{font-size:10.5px;font-weight:800;text-transform:uppercase;letter-spacing:1px;color:#94a3b8;margin-bottom:10px}
.cc-feat-list{display:grid;grid-template-columns:1fr 1fr;gap:5px 24px;margin:0;padding:0;list-style:none}
.cc-feat-list li{font-size:13px;color:#374151;padding-left:14px;position:relative;line-height:1.55}
.cc-feat-list li::before{content:"";position:absolute;left:0;top:7px;width:5px;height:5px;border-radius:50%;background:var(--cc)}
.cc-integration{background:var(--cb);border-left:3px solid var(--cc);border-radius:0 10px 10px 0;padding:14px 16px;display:flex;gap:10px;align-items:flex-start}
.cc-int-badge{font-size:11px;font-weight:800;color:var(--cc);white-space:nowrap;flex-shrink:0;margin-top:1px}
.cc-int-text{font-size:13px;color:#374151;line-height:1.6}

/* COMPOUND EFFECT SECTION */
.compound-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.compound-card{background:#fff;border:1px solid #e2e8f0;border-radius:16px;padding:24px;text-align:center;transition:all .2s}
.compound-card:hover{border-color:#f97316;transform:translateY(-2px)}
.compound-num{font-size:36px;font-weight:900;color:#f97316;line-height:1;margin-bottom:6px}
.compound-label{font-size:14px;font-weight:700;color:#0f172a;margin-bottom:6px}
.compound-sub{font-size:13px;color:#64748b;line-height:1.55}


      @keyframes spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}
      @keyframes spin2{from{transform:rotate(0deg)}to{transform:rotate(-360deg)}}
      @keyframes pulse{0%,100%{opacity:.5;r:3}50%{opacity:1;r:4.5}}
      .orbit1{transform-origin:280px 280px;animation:spin 32s linear infinite}
      .orbit2{transform-origin:280px 280px;animation:spin2 48s linear infinite}
      .dot{animation:pulse 2s ease-in-out infinite}
    

/* ══════════════════════════════════════════
   MOBILE RESPONSIVE — complete fix
   ══════════════════════════════════════════ */

/* ── Hamburger & Mobile Nav ── */
.hamburger { display: none !important; }
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 9999;
  flex-direction: column;
  align-items: flex-start;
  padding: 80px 28px 40px;
  gap: 4px;
  overflow-y: auto;
}
.mobile-nav a {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  padding: 14px 0;
  border-bottom: 1px solid #f1f5f9;
  width: 100%;
  text-decoration: none;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .mob-cta {
  margin-top: 24px;
  background: #f97316;
  color: #fff !important;
  border-radius: 10px;
  padding: 16px 28px !important;
  text-align: center;
  border-bottom: none !important;
  font-size: 18px !important;
}
.mobile-nav.open { display: flex; }
.mob-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none; border: none;
  font-size: 28px; cursor: pointer;
  color: #0f172a;
}

@media (max-width: 900px) {
  /* Show hamburger, hide desktop nav */
  .hamburger { display: flex !important; align-items: center; justify-content: center; }
  .nl { display: none !important; }

  /* Nav layout */
  .nw {
    padding: 0 16px !important;
    height: 60px !important;
  }

  /* Wrap max-width */
  .wrap { max-width: 100% !important; padding: 0 16px !important; }

  /* Global grid fix */
  * { box-sizing: border-box; }
  img { max-width: 100%; height: auto; }

  /* Section padding */
  section, .section { padding: 48px 0 !important; overflow-x: hidden !important; }

  /* Hero */
  .hero { padding: 80px 0 48px !important; text-align: center !important; }
  .hero-title { font-size: clamp(28px, 7vw, 48px) !important; line-height: 1.2 !important; }
  .hero-sub { font-size: 15px !important; }
  .hero-btns { flex-direction: column !important; align-items: center !important; gap: 12px !important; }
  .hero-btns a, .hero-btns button { width: 100% !important; justify-content: center !important; }
  .hero-stats { flex-direction: column !important; gap: 16px !important; align-items: center !important; }

  /* All grids to single column */
  .feat-cards, .feat-grid, .kpi-block,
  .how-grid, .team-cards, .persona-cards,
  .brs-inner, .loyalty-grid, .saas-inner,
  .card-grid, .two-col, .split,
  [class*="grid-2"], [class*="grid-3"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Platform stats */
  .platform-stats { flex-wrap: wrap !important; gap: 12px !important; justify-content: center !important; }

  /* Savings / advantage section */
  .savings-badge { font-size: clamp(48px, 15vw, 80px) !important; }
  [class*="advantage"], [class*="savings"] {
    grid-template-columns: 1fr !important;
    padding: 28px 20px !important;
  }

  /* Hide live ticker on mobile */
  .ticker-wrap, .live-ticker { display: none !important; }

  /* Typography */
  h1 { font-size: clamp(26px, 7vw, 44px) !important; }
  h2 { font-size: clamp(22px, 6vw, 36px) !important; }
  h3 { font-size: clamp(18px, 5vw, 26px) !important; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 24px !important; }
  .footer-brand { grid-column: 1 / -1 !important; }
  .footer-bottom { flex-direction: column !important; gap: 12px !important; text-align: center !important; }

  /* Buttons */
  .nav-btn { display: none !important; }

  /* Tables */
  table { font-size: 13px !important; }
  td, th { padding: 8px !important; }

  /* Hide SVG diagrams that don't scale */
  .arch-svg, .comparison-svg { max-width: 100% !important; height: auto !important; }

  /* Carousel */
  .carousel { overflow-x: auto !important; -webkit-overflow-scrolling: touch !important; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 12px !important; }
  h1 { font-size: clamp(24px, 8vw, 36px) !important; }
  .footer-grid { grid-template-columns: 1fr !important; }
}

@media(max-width:900px){
  .logo img{height:32px!important;width:auto!important}
  .logo svg{width:32px!important;height:26px!important}
  .logo-t{font-size:16px!important}
  .footer-logo img{height:28px!important;width:auto!important}
}

@media(max-width:900px){
  .fg{grid-template-columns:1fr 1fr!important;gap:24px!important}
  .fg>*:first-child{grid-column:1/-1!important}
  footer{padding:40px 0 24px!important}
  .f-btm{flex-direction:column!important;gap:8px!important;text-align:center!important}
}
@media(max-width:480px){
  .fg{grid-template-columns:1fr!important}
}

@media(max-width:900px){
  /* Footer brand column — constrain width */
  .fg > div:first-child {
    max-width: 100% !important;
  }
  .fg > div:first-child a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
  }
  .fg > div:first-child svg {
    width: 24px !important;
    height: 20px !important;
    flex-shrink: 0 !important;
  }
  .fg > div:first-child span {
    font-size: 14px !important;
  }
  /* Footer grid — 2 columns on tablet, 1 on phone */
  .fg {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
  }
  .fg > div:first-child {
    grid-column: 1 / -1 !important;
  }
  .f-btm {
    flex-direction: column !important;
    gap: 8px !important;
    text-align: center !important;
  }
}
@media(max-width:480px){
  .fg { grid-template-columns: 1fr !important; }
}

@media(max-width:900px){
  /* Cap footer logo image size */
  footer .fg > div:first-child img {
    max-height: 36px !important;
    max-width: 160px !important;
    width: auto !important;
    height: auto !important;
  }
  /* Flow stats — fix 3rd box cutoff */
  .flow-stats {
    overflow: visible !important;
  }
  .flow-stat:last-child {
    overflow: hidden !important;
  }
  .flow-stat-l {
    font-size: 9px !important;
    word-break: break-word !important;
    white-space: normal !important;
  }
}

@media(max-width:900px){
  /* Footer links — 2 columns */
  .fg {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
  }
  .fg > div:first-child {
    grid-column: 1 / -1 !important;
  }
}

@media(max-width:900px){
  /* Footer nav columns — 2 col grid */
  .fg {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px 16px !important;
  }
  .fg > div:first-child {
    grid-column: 1 / -1 !important;
  }
}

@media(max-width:900px){
  /* Footer grid — 2 columns */
  footer .fg {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px 16px !important;
  }
  footer .fg > div:first-child {
    grid-column: 1 / -1 !important;
  }
  /* Reduce outer learn-cards container height */
  .learn-cards {
    padding: 8px !important;
  }
  .step-visual .learn-cards {
    min-height: auto !important;
    height: auto !important;
  }
}
