:root{
  --navy:#0A1930;
  --navy-2:#0E2240;
  --navy-3:#13335A;
  --navy-deep:#06101F;
  --cyan:#34C7F5;
  --cyan-2:#1BA3D0;
  --cyan-3:#1D7AC0;
  --cyan-soft:rgba(52,199,245,.12);
  --cyan-soft-2:rgba(52,199,245,.18);
  --hero-pad-top:64px;
  --hero-pad-bot:84px;
  --pink:#FD4360;            
  --text:#1B1B1B;
  --text-2:#333;
  --muted:#666;
  --muted-2:#8a8d92;
  --line:#E8E8E8;
  --line-2:#EFF1F4;
  --bg:#ffffff;
  --bg-soft:#FAFCFF;
  --bg-warm:#FAF9F5;
  --footer:#0A1930;
  --shadow-sm:0 1px 2px rgba(3,7,18,.06);
  --shadow-md:0 8px 24px rgba(3,7,18,.08);
  --shadow-lg:0 24px 60px rgba(3,7,18,.18);
  --radius:8px;
  --radius-lg:14px;
}
.dw-chrome *{margin:0;padding:0;box-sizing:border-box}
.dw-chrome img{display:block;max-width:100%;height:auto}
.dw-chrome a{color:inherit;text-decoration:none}
.dw-chrome button{font-family:inherit;cursor:pointer;border:none;background:none}
.dw-chrome .container{max-width:1700px;margin:0 auto;padding:0 32px}
.dw-chrome .container--narrow{max-width:1280px}
.dw-chrome .container--read{max-width:1080px}
.dw-chrome .eyebrow{
  font-size:12px;font-weight:600;color:var(--cyan);
  text-transform:uppercase;letter-spacing:2px;
  display:inline-flex;align-items:center;gap:10px;margin-bottom:12px;
}
.dw-chrome .eyebrow::before{
  content:"";display:inline-block;width:24px;height:1px;background:var(--cyan);
}
.dw-chrome h1, .dw-chrome h2, .dw-chrome h3, .dw-chrome h4{font-family:'Poppins',sans-serif;color:var(--text-2);letter-spacing:-.4px}
.dw-chrome h1{font-size:clamp(40px,5vw,60px);font-weight:700;line-height:1.08}
.dw-chrome h2{font-size:clamp(28px,3.4vw,40px);font-weight:700;line-height:1.15}
.dw-chrome h3{font-size:18px;font-weight:600}
.dw-chrome .lead{font-size:17px;color:var(--muted);line-height:1.7;font-weight:300}
.dw-chrome .btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:14px 26px;border-radius:6px;
  font-size:15px;font-weight:600;font-family:inherit;
  transition:all .2s ease;white-space:nowrap;
}
.dw-chrome .btn-primary{background:var(--cyan);color:#fff;box-shadow:0 6px 20px rgba(52,199,245,.28)}
.dw-chrome .btn-primary:hover{background:var(--cyan-2);transform:translateY(-1px);box-shadow:0 10px 28px rgba(52,199,245,.35)}
.dw-chrome .btn-ghost{background:transparent;color:#fff;border:1px solid rgba(255,255,255,.28)}
.dw-chrome .btn-ghost:hover{border-color:#fff;background:rgba(255,255,255,.04)}
.dw-chrome .btn-dark{background:var(--navy);color:#fff}
.dw-chrome .btn-dark:hover{background:var(--navy-3)}
.dw-chrome .btn-arrow{transition:transform .2s ease}
.dw-chrome .btn:hover .btn-arrow{transform:translateX(3px)}
.dw-chrome .tagstrip{
  position:fixed;top:0;left:0;right:0;z-index:51;
  background:transparent;
  color:rgba(255,255,255,.7);font-size:12px;
  padding:8px 32px;
  display:flex;justify-content:space-between;align-items:center;gap:12px;
  border-bottom:none;
  transition:transform .3s cubic-bezier(.4,0,.2,1);
}
.dw-chrome .tagstrip.hidden{transform:translateY(-100%)}
.dw-chrome .tagstrip .left{display:flex;align-items:center;gap:18px}
.dw-chrome .tagstrip .pulse{display:inline-block;width:7px;height:7px;border-radius:50%;background:var(--cyan);box-shadow:0 0 0 0 rgba(52,199,245,.7);animation:pulse 2.4s infinite}
@keyframes pulse{0%{box-shadow:0 0 0 0 rgba(52,199,245,.5)}70%{box-shadow:0 0 0 8px rgba(52,199,245,0)}100%{box-shadow:0 0 0 0 rgba(52,199,245,0)}}
.dw-chrome .tagstrip .right{display:flex;gap:18px;color:rgba(255,255,255,.55)}
.dw-chrome .tagstrip a:hover{color:#fff}
@media(max-width:760px){.dw-chrome .tagstrip .right{display:none}}
.dw-chrome .site-header{
  position:fixed;top:var(--tagstrip-h,37px);left:0;right:0;z-index:50;
  background:transparent;
  border-bottom:1px solid transparent;
  transition:background .25s ease, backdrop-filter .25s ease, border-color .25s ease, box-shadow .25s ease, top .3s cubic-bezier(.4,0,.2,1);
}
.dw-chrome .site-header.scrolled{
  background:rgba(7,16,30,.88);
  -webkit-backdrop-filter:saturate(160%) blur(14px);
  backdrop-filter:saturate(160%) blur(14px);
  border-bottom-color:rgba(255,255,255,.06);
  box-shadow:0 8px 24px rgba(0,0,0,.18);
}
.dw-chrome .nav-wrap{background:transparent;border-bottom:none}
.dw-chrome .nav{display:flex;align-items:center;justify-content:space-between;padding:14px 0;gap:24px}
.dw-chrome .brand{display:flex;align-items:center;color:#fff;text-decoration:none}
.dw-chrome .brand-mark{
  height:42px;width:auto;display:inline-flex;align-items:center;
  background:transparent;flex-shrink:0;
}
.dw-chrome .brand-mark img{height:100%;width:auto;object-fit:contain;display:block;
  filter:drop-shadow(0 3px 7px rgba(52,199,245,.12))}
.dw-chrome .brand:hover .brand-mark img{filter:drop-shadow(0 4px 10px rgba(52,199,245,.20))}
.dw-chrome .nav-links{display:flex;gap:6px;align-items:center}
.dw-chrome .nav-links a{
  font-size:14px;color:rgba(255,255,255,.78);padding:8px 14px;border-radius:6px;
  transition:all .15s;font-weight:400;
}
.dw-chrome .nav-links a:hover{color:#fff;background:rgba(255,255,255,.05)}
.dw-chrome .nav-item{position:relative;display:flex;align-items:center}
.dw-chrome .nav-item > a{display:inline-flex;align-items:center;gap:6px}
.dw-chrome .nav-item .caret{width:11px;height:11px;transition:transform .2s;opacity:.7}
.dw-chrome .nav-item:hover .caret{transform:rotate(180deg)}
.dw-chrome .nav-dd{
  position:absolute;top:100%;left:0;min-width:230px;padding:8px;margin-top:8px;
  background:rgba(13,28,52,.97);border:1px solid rgba(255,255,255,.1);border-radius:12px;
  box-shadow:0 18px 44px rgba(3,12,28,.5);
  -webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);
  opacity:0;visibility:hidden;transform:translateY(-6px);transition:opacity .18s ease,transform .18s ease,visibility .18s;
  z-index:60;
}
.dw-chrome .nav-item::after{content:"";position:absolute;top:100%;left:0;right:0;height:12px}
.dw-chrome .nav-item:hover .nav-dd, .dw-chrome .nav-item:focus-within .nav-dd{opacity:1;visibility:visible;transform:translateY(0)}
.dw-chrome .nav-dd a{display:block;padding:10px 13px;border-radius:8px;font-size:13.5px;color:rgba(255,255,255,.82);font-weight:400;white-space:nowrap}
.dw-chrome .nav-dd a:hover{background:rgba(52,199,245,.12);color:#fff}
.dw-chrome .nav-cta{display:flex;align-items:center;gap:14px}
.dw-chrome .nav-link-quiet{font-size:14px;color:rgba(255,255,255,.65)}
.dw-chrome .nav-link-quiet:hover{color:#fff}
.dw-chrome .hamburger{display:none}
@media(max-width:960px){.dw-chrome .nav-links{display:none}
.dw-chrome .nav-link-quiet{display:none}
.dw-chrome .hamburger{display:grid;place-items:center;width:40px;height:40px;color:#fff;border-radius:6px}
.dw-chrome .hamburger:hover{background:rgba(255,255,255,.06)}}
.dw-chrome .hero{
  position:relative;overflow:hidden;
  background:var(--navy);
  color:#fff;
  min-height:100svh;
  display:flex;align-items:center;
  padding:calc(var(--header-h, 116px) + var(--hero-pad-top)) 0 var(--hero-pad-bot);
}
.dw-chrome .hero-video{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;z-index:0;pointer-events:none;
}
.dw-chrome .hero-scrim{
  content:"";position:absolute;inset:0;z-index:1;pointer-events:none;
  background:linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.6) 100%);
}
.dw-chrome .hero::before{
  content:"";position:absolute;inset:0;z-index:1;
  background:none;
  pointer-events:none;
}
.dw-chrome .hero::after{
  content:"";position:absolute;inset:0;z-index:1;
  background-image:none;
  pointer-events:none;
}
.dw-chrome .hero .container{position:relative;z-index:2}
.dw-chrome .hero-inner{max-width:980px;margin:0 auto;text-align:center;display:flex;flex-direction:column;align-items:center}
.dw-chrome .hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(52,199,245,.12);color:var(--cyan);
  font-size:12px;font-weight:600;letter-spacing:1.6px;text-transform:uppercase;
  padding:8px 14px;border-radius:999px;border:1px solid rgba(52,199,245,.25);
  margin-bottom:24px;
}
.dw-chrome .hero-badge .dot{width:6px;height:6px;border-radius:50%;background:var(--cyan);box-shadow:0 0 0 3px rgba(52,199,245,.18)}
.dw-chrome .hero h1{color:#fff;max-width:900px;font-size:clamp(34px,4.4vw,52px);line-height:1.16;letter-spacing:-1px}
.dw-chrome .hero h1 .grad{
  background:linear-gradient(90deg,var(--cyan) 0%, #7CDFFB 60%, #fff 110%);
  -webkit-background-clip:text;background-clip:text;color:transparent;
  display:inline-block;
}
.dw-chrome .hero p.lead{color:rgba(255,255,255,.72);max-width:760px;margin-top:22px;font-weight:300}
.dw-chrome .hero-ctas{margin-top:34px;display:flex;gap:12px;flex-wrap:wrap;justify-content:center}
.dw-chrome .hero-meta{margin-top:30px;display:flex;align-items:center;justify-content:center;gap:16px;color:rgba(255,255,255,.55);font-size:13px}
.dw-chrome .hero-meta .avatars{display:flex}
.dw-chrome .hero-meta .avatars span{
  width:30px;height:30px;border-radius:50%;border:2px solid var(--navy);
  margin-left:-8px;background:linear-gradient(135deg,#34C7F5,#1D7AC0);
  display:grid;place-items:center;color:#fff;font-size:11px;font-weight:600;
}
.dw-chrome .hero-meta .avatars span:nth-child(2){background:linear-gradient(135deg,#FD4360,#A52F47)}
.dw-chrome .hero-meta .avatars span:nth-child(3){background:linear-gradient(135deg,#7CDFFB,#34C7F5);color:var(--navy)}
.dw-chrome .hero-meta .avatars span:nth-child(4){background:linear-gradient(135deg,#1D7AC0,#0A1930)}
.dw-chrome .hero-panel{
  position:relative;
  background:linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:24px;
  backdrop-filter:blur(8px);
  box-shadow:0 30px 80px rgba(0,0,0,.35);
}
.dw-chrome .hero-panel::before{
  content:"";position:absolute;inset:-1px;border-radius:19px;pointer-events:none;
  background:linear-gradient(180deg, rgba(52,199,245,.45), transparent 40%);
  -webkit-mask:linear-gradient(#000,#000) content-box,linear-gradient(#000,#000);
  -webkit-mask-composite:xor;mask-composite:exclude;padding:1px;
}
.dw-chrome .panel-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:14px}
.dw-chrome .panel-title{font-size:13px;color:rgba(255,255,255,.65);font-weight:500;display:flex;align-items:center;gap:8px}
.dw-chrome .panel-title .lights{display:inline-flex;gap:5px}
.dw-chrome .panel-title .lights i{display:inline-block;width:8px;height:8px;border-radius:50%}
.dw-chrome .panel-title .lights i:nth-child(1){background:#FF5F57}
.dw-chrome .panel-title .lights i:nth-child(2){background:#FEBC2E}
.dw-chrome .panel-title .lights i:nth-child(3){background:#28C840}
.dw-chrome .panel-tag{font-size:10px;letter-spacing:1.5px;text-transform:uppercase;color:var(--cyan);background:rgba(52,199,245,.12);padding:4px 10px;border-radius:4px;font-weight:600}
.dw-chrome .panel-row{
  display:flex;align-items:center;justify-content:space-between;
  padding:12px 14px;background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);border-radius:10px;margin-bottom:8px;
}
.dw-chrome .panel-row:last-child{margin-bottom:0}
.dw-chrome .panel-row .pl{display:flex;align-items:center;gap:12px}
.dw-chrome .panel-row .ico{
  width:32px;height:32px;border-radius:8px;background:rgba(52,199,245,.12);
  display:grid;place-items:center;color:var(--cyan);
}
.dw-chrome .panel-row .ico svg{width:16px;height:16px}
.dw-chrome .panel-row .name{color:#fff;font-size:14px;font-weight:500}
.dw-chrome .panel-row .sub{font-size:11px;color:rgba(255,255,255,.45);margin-top:2px}
.dw-chrome .panel-row .val{font-size:14px;font-weight:600;color:var(--cyan);font-variant-numeric:tabular-nums}
.dw-chrome .panel-row .val.up::before{content:"▲ ";font-size:10px;margin-right:2px}
.dw-chrome .panel-row .val.down{color:#7CDFFB}
.dw-chrome .panel-row .val.down::before{content:"▼ ";font-size:10px;margin-right:2px}
.dw-chrome .spark{display:flex;align-items:flex-end;gap:3px;height:18px}
.dw-chrome .spark i{display:inline-block;width:3px;background:var(--cyan);border-radius:2px;opacity:.7}
.dw-chrome .spark i:nth-child(1){height:30%}
.dw-chrome .spark i:nth-child(2){height:55%}
.dw-chrome .spark i:nth-child(3){height:40%}
.dw-chrome .spark i:nth-child(4){height:75%}
.dw-chrome .spark i:nth-child(5){height:60%}
.dw-chrome .spark i:nth-child(6){height:90%;opacity:1}
.dw-chrome .spark i:nth-child(7){height:100%;opacity:1}
@media(max-width:980px){.dw-chrome .hero-grid{grid-template-columns:1fr;gap:36px}
.dw-chrome .hero{padding:calc(var(--header-h, 116px) + 24px) 0 70px}}
.dw-chrome .trust{
  border-top:1px solid var(--line);border-bottom:1px solid var(--line);
  background:#fff;padding:56px 0 60px;
}
.dw-chrome .trust-label{
  display:block;text-align:center;
  font-size:13px;letter-spacing:3px;text-transform:uppercase;
  color:var(--muted);font-weight:600;
  margin-bottom:34px;
}
.dw-chrome .marquee{
  position:relative;width:100%;overflow:hidden;
  
  -webkit-mask-image:linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image:linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.dw-chrome .marquee-track{
  display:flex;width:max-content;gap:88px;
  animation:marquee-scroll 50s linear infinite;
  will-change:transform;
}
.dw-chrome .marquee:hover .marquee-track{animation-play-state:paused}
@keyframes marquee-scroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}
@media (prefers-reduced-motion: reduce){.dw-chrome .marquee-track{animation:none}}
.dw-chrome .logo-item{
  display:flex;align-items:center;flex-shrink:0;
}
.dw-chrome .logo-item img{
  height:34px;width:auto;display:block;
  object-fit:contain;
  filter:grayscale(1);opacity:.6;
  transition:filter .25s, opacity .25s;
}
.dw-chrome .logo-item:hover img{filter:grayscale(0);opacity:1}
.dw-chrome .metrics{
  background:#fff;border-bottom:1px solid var(--line);
}
.dw-chrome .metrics-grid{display:grid;grid-template-columns:repeat(4,1fr)}
.dw-chrome .met{
  padding:42px 28px;text-align:center;border-right:1px solid var(--line);position:relative;
}
.dw-chrome .met:last-child{border-right:none}
.dw-chrome .met .num{
  font-size:44px;font-weight:700;color:var(--navy);letter-spacing:-1px;
  display:inline-flex;align-items:baseline;gap:2px;
}
.dw-chrome .met .num .accent{color:var(--cyan)}
.dw-chrome .met .lbl{font-size:13px;color:var(--muted);margin-top:6px;letter-spacing:.3px}
.dw-chrome .met .sub{font-size:11px;color:var(--muted-2);margin-top:4px;text-transform:uppercase;letter-spacing:1.2px}
@media(max-width:760px){.dw-chrome .metrics-grid{grid-template-columns:repeat(2,1fr)}
.dw-chrome .met:nth-child(2){border-right:none}
.dw-chrome .met:nth-child(1), .dw-chrome .met:nth-child(2){border-bottom:1px solid var(--line)}}
.dw-chrome .section{padding:96px 0}
.dw-chrome .section .head{margin-bottom:48px;max-width:760px}
.dw-chrome .section h2 + .lead{margin-top:14px}
@media(max-width:760px){.dw-chrome .section{padding:64px 0}}
.dw-chrome .svc-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.dw-chrome .svc{
  position:relative;display:block;height:336px;
  background:transparent;border:none;border-radius:24px;overflow:hidden;
  text-decoration:none;color:inherit;
  box-shadow:0 10px 30px rgba(10,25,48,.05);
  transition:transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease;
}
.dw-chrome .svc:hover{transform:translateY(-6px);box-shadow:0 22px 50px rgba(10,25,48,.14)}
.dw-chrome .svc:focus-visible{outline:2px solid var(--cyan);outline-offset:4px;border-radius:24px}
.dw-chrome .svc-inner{position:relative;width:100%;height:100%}
.dw-chrome .svc-face{
  position:absolute;inset:0;border-radius:24px;
  display:flex;flex-direction:column;overflow:hidden;
}
.dw-chrome .svc-front{
  z-index:1;
  background:linear-gradient(160deg,#ffffff 0%,#F4FAFE 100%);
  border:1px solid var(--line);
  align-items:flex-start;justify-content:flex-start;text-align:left;
  padding:30px 30px;overflow:hidden;
  transition:opacity .4s ease, transform .5s cubic-bezier(.22,1,.36,1);
}
.dw-chrome .svc:hover .svc-front{opacity:0;transform:translateY(-14px)}
.dw-chrome .svc-front::after{content:"";position:absolute;left:0;right:0;bottom:0;height:62px;pointer-events:none;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 70' preserveAspectRatio='none'%3E%3Cpath d='M0 46 C 70 46 100 24 150 27 C 210 31 240 9 300 13 C 350 16 380 33 400 30 L400 70 L0 70 Z' fill='%23A9D3F2' fill-opacity='0.16'/%3E%3Cpath d='M0 46 C 70 46 100 24 150 27 C 210 31 240 9 300 13 C 350 16 380 33 400 30' fill='none' stroke='%239FCDEE' stroke-opacity='0.55' stroke-width='2'/%3E%3C/svg%3E") bottom/cover no-repeat}
.dw-chrome .fz-ic{
  width:56px;height:56px;border-radius:50%;flex-shrink:0;
  background:linear-gradient(145deg,#ffffff,#EAF2F9);color:var(--cyan);
  display:grid;place-items:center;margin-bottom:24px;
  box-shadow:0 6px 16px rgba(10,25,48,.08), inset 0 1px 0 #fff;
}
.dw-chrome .fz-ic svg{width:24px;height:24px}
.dw-chrome .fz-logos{display:flex;gap:9px;margin-bottom:24px;flex-wrap:wrap}
.dw-chrome .fz-logos .lg{width:42px;height:42px;border-radius:12px;background:#fff;border:1px solid var(--line);
  display:grid;place-items:center;box-shadow:0 4px 12px rgba(10,25,48,.06)}
.dw-chrome .fz-logos .lg img{max-width:23px;max-height:23px;width:auto;height:auto;display:block;pointer-events:none}
.dw-chrome .svc-back .fz-logos{margin-bottom:18px}
.dw-chrome .svc-front .fz-title{
  font-family:'Poppins',sans-serif;font-weight:700;color:#16202E;
  font-size:30px;line-height:1.12;letter-spacing:-1px;text-align:left;
  min-height:67px;margin-bottom:16px;text-wrap:balance;
}
.dw-chrome .svc-front .fz-stat{position:relative;z-index:1;line-height:1}
.dw-chrome .svc-front .fz-stat b{display:block;font-size:30px;font-weight:800;color:#1a8fd1;letter-spacing:-1px}
.dw-chrome .svc-front .fz-stat b .x{color:#1a8fd1}
.dw-chrome .svc-front .fz-stat i{display:block;font-style:normal;font-size:11px;color:#8A94A3;text-transform:uppercase;letter-spacing:1.5px;font-weight:700;margin-top:9px}
.dw-chrome .svc-back{
  z-index:2;
  background:#fff;border:1.5px solid var(--cyan);
  box-shadow:0 18px 44px rgba(52,199,245,.16);
  padding:28px 28px 24px;
  transform:translateY(100%);
  transition:transform .5s cubic-bezier(.22,1,.36,1);
}
.dw-chrome .svc:hover .svc-back, .dw-chrome .svc:focus-visible .svc-back{transform:translateY(0)}
.dw-chrome .svc-back .svc-ic{
  width:46px;height:46px;border-radius:12px;flex-shrink:0;
  background:rgba(52,199,245,.12);color:var(--cyan);
  display:grid;place-items:center;margin-bottom:20px;
}
.dw-chrome .svc-back .svc-ic svg{width:23px;height:23px}
.dw-chrome .svc-back h3{font-size:19px;color:var(--text-2);margin-bottom:11px;letter-spacing:-.3px}
.dw-chrome .svc-back p{font-size:13.5px;color:var(--muted);line-height:1.62;min-height:87px}
.dw-chrome .svc-back .svc-rule{height:1px;background:var(--line-2);margin:18px 0 16px}
.dw-chrome .svc-back .svc-more{
  margin-top:auto;display:inline-flex;align-items:center;gap:7px;
  font-size:13.5px;font-weight:600;color:var(--cyan);
}
.dw-chrome .svc-back .svc-more svg{width:14px;height:14px;transition:transform .2s}
.dw-chrome .svc:hover .svc-back .svc-more svg{transform:translateX(3px)}
@media(max-width:1000px){.dw-chrome .svc-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.dw-chrome .svc-grid{grid-template-columns:1fr}
.dw-chrome .svc{height:300px}}
.dw-chrome .how{
  position:relative;color:#fff;
  background:
    radial-gradient(900px 500px at 90% 10%, rgba(52,199,245,.12), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, #081428 100%);
  overflow:hidden;
}
.dw-chrome .how::before{
  content:"";position:absolute;inset:0;
  background:url('/assets/wave-bg.png') center/cover no-repeat;
  opacity:.05;mix-blend-mode:screen;pointer-events:none;
}
.dw-chrome .how .container{position:relative;z-index:2}
.dw-chrome .how h2{color:#fff;max-width:700px}
.dw-chrome .how .lead{color:rgba(255,255,255,.65)}
.dw-chrome .how-orbs{position:absolute;inset:0;overflow:hidden;z-index:0;pointer-events:none}
.dw-chrome .how-orb{position:absolute;border-radius:50%;filter:blur(70px);opacity:.55;animation:jOrbFloat 20s ease-in-out infinite}
.dw-chrome .how-orb.o1{width:420px;height:420px;background:radial-gradient(circle,rgba(52,199,245,.38),transparent 70%);top:-140px;left:-90px}
.dw-chrome .how-orb.o2{width:320px;height:320px;background:radial-gradient(circle,rgba(29,122,192,.45),transparent 70%);bottom:-130px;right:-70px;animation-delay:-7s}
.dw-chrome .how-orb.o3{width:240px;height:240px;background:radial-gradient(circle,rgba(124,223,251,.28),transparent 70%);top:38%;left:52%;animation-delay:-13s}
@keyframes jOrbFloat{0%,100%{transform:translate(0,0) scale(1)}50%{transform:translate(34px,-26px) scale(1.14)}}
.dw-chrome .vj{position:relative;margin-top:50px;max-width:820px;margin-left:auto;margin-right:auto}
.dw-chrome .vj-line{position:absolute;inset:0;width:100%;height:100%;z-index:0;pointer-events:none;overflow:visible}
.dw-chrome .vj-line .vj-base{fill:none;stroke:rgba(52,199,245,.16);stroke-width:2}
.dw-chrome .vj-line .vj-flow{fill:none;stroke:url(#vjGrad);stroke-width:2.5;stroke-linecap:round;filter:drop-shadow(0 0 6px rgba(52,199,245,.65))}
.dw-chrome .vj-line .vj-particle{fill:#7CDFFB;filter:drop-shadow(0 0 6px rgba(124,223,251,.95))}
.dw-chrome .vj-row{position:relative;z-index:1;display:flex;margin-bottom:26px}
.dw-chrome .vj-row:last-child{margin-bottom:0}
.dw-chrome .vj-card{display:flex;align-items:flex-start;gap:26px;width:100%}
.dw-chrome .vj-num{position:relative;flex-shrink:0;width:58px;height:58px;border-radius:50%;
  background:linear-gradient(150deg, rgba(52,199,245,.22), rgba(29,122,192,.10));
  border:1px solid rgba(52,199,245,.45);color:var(--cyan);
  display:grid;place-items:center;font-weight:700;font-size:18px;letter-spacing:-.5px;
  box-shadow:0 0 0 6px #081428, 0 0 26px rgba(52,199,245,.3);transition:border-color .35s,box-shadow .35s}
.dw-chrome .vj-num::after{content:"";position:absolute;inset:-1px;border-radius:50%;border:1.5px solid rgba(52,199,245,.5);animation:vjPulse 2.8s ease-out infinite}
@keyframes vjPulse{0%{transform:scale(1);opacity:.6}100%{transform:scale(1.5);opacity:0}}
.dw-chrome .vj-body{position:relative;flex:1;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.09);border-radius:20px;
  padding:24px 28px;-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05);transition:border-color .3s,box-shadow .3s,background .3s,transform .3s}
.dw-chrome .vj-body::before{content:"";position:absolute;left:-26px;top:28px;width:26px;height:2px;background:rgba(52,199,245,.3)}
.dw-chrome .vj-row:hover .vj-body{border-color:rgba(52,199,245,.5);background:linear-gradient(165deg,rgba(52,199,245,.10),rgba(255,255,255,.04));
  box-shadow:0 18px 44px rgba(0,0,0,.4),0 0 44px rgba(52,199,245,.14);transform:translateX(3px)}
.dw-chrome .vj-row:hover .vj-num{border-color:var(--cyan);box-shadow:0 0 0 6px #081428, 0 0 30px rgba(52,199,245,.55)}
.dw-chrome .vj-step{font-size:11px;font-weight:700;letter-spacing:2.5px;text-transform:uppercase;color:var(--cyan);display:block;margin-bottom:8px}
.dw-chrome .vj-body h3{color:#fff;font-size:20px;margin-bottom:10px;letter-spacing:-.3px}
.dw-chrome .vj-body p{color:rgba(255,255,255,.64);font-size:14px;line-height:1.7;font-weight:300}
@media(max-width:600px){.dw-chrome .vj{margin-top:36px}
.dw-chrome .vj-card{gap:16px}
.dw-chrome .vj-num{width:50px;height:50px;font-size:16px}
.dw-chrome .vj-body{padding:20px 22px}
.dw-chrome .vj-body::before{display:none}
.dw-chrome .vj-body h3{font-size:18px}}
.dw-chrome .case-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
.dw-chrome .case{
  position:relative;border:1px solid var(--line);border-radius:var(--radius-lg);
  padding:32px;transition:all .25s;background:#fff;
  display:flex;flex-direction:column;
}
.dw-chrome .case:hover{border-color:var(--cyan);box-shadow:var(--shadow-md);transform:translateY(-2px)}
.dw-chrome .case-tag{
  font-size:11px;color:var(--cyan-3);background:var(--cyan-soft);
  padding:5px 12px;border-radius:4px;align-self:flex-start;
  font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:18px;
}
.dw-chrome .case h3{font-size:20px;margin-bottom:10px;line-height:1.3}
.dw-chrome .case p{color:var(--muted);font-size:14px;line-height:1.7;margin-bottom:24px}
.dw-chrome .case-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;border-top:1px solid var(--line);padding-top:20px}
.dw-chrome .cs .v{font-size:24px;font-weight:700;color:var(--navy);letter-spacing:-.5px}
.dw-chrome .cs .v.acc{color:var(--cyan)}
.dw-chrome .cs .l{font-size:11px;color:var(--muted-2);margin-top:4px;text-transform:uppercase;letter-spacing:.7px;line-height:1.4}
.dw-chrome .case-footer{display:flex;justify-content:space-between;align-items:center;margin-top:18px;font-size:12px;color:var(--muted-2);font-weight:500}
.dw-chrome .case-link{color:var(--cyan);font-weight:600;display:inline-flex;align-items:center;gap:6px}
.dw-chrome .case-link:hover .btn-arrow{transform:translateX(3px)}
@media(max-width:840px){.dw-chrome .case-grid{grid-template-columns:1fr}}
@media(max-width:480px){.dw-chrome .case-stats{grid-template-columns:1fr 1fr}}
.dw-chrome .test-sec{background:var(--bg-warm)}
.dw-chrome .test-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:22px}
.dw-chrome .tcard{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);
  padding:32px;border-left:3px solid var(--cyan);position:relative;
  transition:all .2s;
}
.dw-chrome .tcard:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}
.dw-chrome .tcard .qmark{
  position:absolute;top:18px;right:24px;font-size:48px;color:var(--cyan-soft);
  font-family:Georgia,serif;line-height:1;font-weight:700;
}
.dw-chrome .tcard .quote{font-size:16px;color:#3a3a3a;line-height:1.7;font-style:italic;margin-bottom:22px;font-weight:300}
.dw-chrome .tcard .who{display:flex;align-items:center;gap:14px}
.dw-chrome .tcard .av{
  width:44px;height:44px;border-radius:50%;
  background:linear-gradient(135deg,var(--cyan),var(--cyan-3));
  display:grid;place-items:center;color:#fff;font-weight:600;font-size:15px;
}
.dw-chrome .tcard .au{font-weight:600;color:var(--text-2);font-size:14px}
.dw-chrome .tcard .rl{font-size:12.5px;color:var(--muted);margin-top:2px}
@media(max-width:760px){.dw-chrome .test-grid{grid-template-columns:1fr}}
.dw-chrome .gallery-sec{
  position:relative;overflow:hidden;
  background:linear-gradient(120deg, var(--cyan-3) 0%, var(--cyan) 55%, #7CDFFB 100%);
  padding:84px 0;
}
.dw-chrome .gallery-sec::before{
  content:"";position:absolute;inset:0;
  background:url('/assets/wave-bg.png') center/cover no-repeat;
  opacity:.05;mix-blend-mode:overlay;pointer-events:none;
}
.dw-chrome .gallery-sec .container{position:relative;z-index:2}
.dw-chrome .gallery-head{display:flex;justify-content:space-between;align-items:flex-end;gap:24px;margin-bottom:30px;flex-wrap:wrap}
.dw-chrome .gallery-head .eyebrow{color:#fff}
.dw-chrome .gallery-head .eyebrow::before{background:#fff}
.dw-chrome .gallery-head h2{color:#fff;letter-spacing:-.4px}
.dw-chrome .gallery-head p{color:rgba(255,255,255,.88);font-size:15px;max-width:540px;margin-top:8px;font-weight:300}
.dw-chrome .gallery-nav{display:flex;gap:10px;flex-shrink:0}
.dw-chrome .gallery-nav button{
  width:46px;height:46px;border-radius:50%;
  background:rgba(255,255,255,.16);border:1px solid rgba(255,255,255,.5);
  color:#fff;display:grid;place-items:center;transition:all .18s;
}
.dw-chrome .gallery-nav button:hover{background:#fff;color:var(--cyan-3)}
.dw-chrome .gallery-nav svg{width:20px;height:20px}
.dw-chrome .gallery-track{
  display:flex;gap:18px;overflow-x:auto;scroll-snap-type:x mandatory;
  padding:6px 2px 14px;scroll-behavior:smooth;
  -ms-overflow-style:none;scrollbar-width:none;
}
.dw-chrome .gallery-track::-webkit-scrollbar{display:none}
.dw-chrome .gslide{
  flex:0 0 360px;height:300px;scroll-snap-align:start;
  border-radius:16px;overflow:hidden;border:3px solid rgba(255,255,255,.55);
  box-shadow:0 20px 50px rgba(3,16,40,.28);background:rgba(255,255,255,.10);
}
.dw-chrome .gslide image-slot{width:100%;height:100%;display:block}
@media(max-width:760px){.dw-chrome .gallery-sec{padding:56px 0}
.dw-chrome .gslide{flex-basis:82%;height:240px}
.dw-chrome .gallery-head{margin-bottom:24px}}
.dw-chrome .layers-sec{background:#fff;border-top:1px solid var(--line)}
.dw-chrome .layers-grid{display:grid;grid-template-columns:1fr 1fr;gap:0;border:1px solid var(--line);border-radius:var(--radius-lg);overflow:hidden;background:#fff}
.dw-chrome .layer{padding:38px 36px;position:relative;display:flex;flex-direction:column;min-height:380px}
.dw-chrome .layer.front{background:linear-gradient(180deg,#fff 0%,var(--bg-soft) 100%)}
.dw-chrome .layer.tech{background:linear-gradient(180deg,var(--navy) 0%,#081428 100%);color:#fff;position:relative;overflow:hidden}
.dw-chrome .layer.tech::before{content:"";position:absolute;inset:0;background:url('/assets/wave-bg.png') center/cover no-repeat;opacity:.05;mix-blend-mode:screen}
.dw-chrome .layer.tech > *{position:relative;z-index:2}
.dw-chrome .layer-tag{font-size:11px;letter-spacing:1.6px;text-transform:uppercase;font-weight:600;display:inline-flex;align-items:center;gap:8px;margin-bottom:18px}
.dw-chrome .layer.front .layer-tag{color:var(--cyan-3)}
.dw-chrome .layer.front .layer-tag::before{content:"";width:18px;height:1px;background:var(--cyan-3)}
.dw-chrome .layer.tech .layer-tag{color:var(--cyan)}
.dw-chrome .layer.tech .layer-tag::before{content:"";width:18px;height:1px;background:var(--cyan)}
.dw-chrome .layer h3{font-size:22px;line-height:1.25;margin-bottom:12px;color:var(--text-2)}
.dw-chrome .layer.tech h3{color:#fff}
.dw-chrome .layer p.l-lead{font-size:14.5px;line-height:1.7;color:var(--muted);margin-bottom:20px}
.dw-chrome .layer.tech p.l-lead{color:rgba(255,255,255,.65)}
.dw-chrome .layer ul{list-style:none;display:flex;flex-direction:column;gap:10px;margin-bottom:24px}
.dw-chrome .layer li{display:flex;gap:10px;align-items:flex-start;font-size:13.5px;line-height:1.6}
.dw-chrome .layer li svg{width:16px;height:16px;color:var(--cyan);flex-shrink:0;margin-top:3px}
.dw-chrome .layer.front li{color:var(--text-2)}
.dw-chrome .layer.tech li{color:rgba(255,255,255,.78)}
.dw-chrome .layer-foot{margin-top:auto;display:flex;align-items:center;justify-content:space-between;padding-top:20px;border-top:1px solid var(--line);font-size:12.5px;color:var(--muted);gap:12px}
.dw-chrome .layer.tech .layer-foot{border-color:rgba(255,255,255,.1);color:rgba(255,255,255,.5)}
.dw-chrome .layer-foot a{color:var(--cyan-3);font-weight:600;display:inline-flex;align-items:center;gap:6px;white-space:nowrap}
.dw-chrome .layer.tech .layer-foot a{color:var(--cyan)}
.dw-chrome .layer-foot a:hover .btn-arrow{transform:translateX(3px)}
.dw-chrome .layer .label-pill{display:inline-flex;align-items:center;gap:6px;background:rgba(52,199,245,.12);color:var(--cyan-3);font-size:11px;font-weight:600;padding:4px 10px;border-radius:4px;text-transform:uppercase;letter-spacing:1px;margin-bottom:14px;align-self:flex-start}
.dw-chrome .layer.tech .label-pill{background:rgba(52,199,245,.16);color:var(--cyan)}
@media(max-width:840px){.dw-chrome .layers-grid{grid-template-columns:1fr}}
.dw-chrome .aud-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.dw-chrome .aud{
  border:1px solid var(--line);border-radius:var(--radius-lg);padding:32px 28px;
  background:#fff;position:relative;transition:all .25s;
  display:flex;flex-direction:column;
}
.dw-chrome .aud:hover{border-color:var(--cyan);box-shadow:var(--shadow-md);transform:translateY(-2px)}
.dw-chrome .aud-num{font-size:11px;font-weight:600;letter-spacing:1.6px;text-transform:uppercase;color:var(--muted-2)}
.dw-chrome .aud h3{margin-top:8px;font-size:18px;line-height:1.3}
.dw-chrome .aud .role{font-size:13px;color:var(--cyan-3);font-weight:500;margin-top:4px;margin-bottom:18px}
.dw-chrome .aud .what{font-size:13.5px;color:var(--muted);line-height:1.7;margin-bottom:18px}
.dw-chrome .aud .signals{padding-top:18px;border-top:1px solid var(--line);display:flex;flex-direction:column;gap:8px;font-size:12.5px;color:var(--text-2)}
.dw-chrome .aud .signals span{display:flex;align-items:flex-start;gap:8px;line-height:1.55}
.dw-chrome .aud .signals strong{color:var(--muted-2);font-weight:500;min-width:62px;font-size:11px;letter-spacing:.5px;text-transform:uppercase;padding-top:1px}
.dw-chrome .aud .surface{margin-top:auto;padding-top:18px;font-size:11.5px;color:var(--muted-2);font-weight:500;letter-spacing:.4px}
.dw-chrome .aud .surface b{color:var(--cyan-3);font-weight:600}
@media(max-width:960px){.dw-chrome .aud-grid{grid-template-columns:1fr;gap:16px}}
.dw-chrome .versus-sec{background:var(--bg-soft);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.dw-chrome .versus-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:14px;align-items:stretch;margin-top:8px}
.dw-chrome .vs-col{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);
  padding:28px 26px;display:flex;flex-direction:column;
}
.dw-chrome .vs-col.center{
  background:var(--navy);color:#fff;border-color:var(--navy);
  position:relative;overflow:hidden;transform:translateY(-8px);
  box-shadow:var(--shadow-lg);
}
.dw-chrome .vs-col.center::before{content:"";position:absolute;inset:0;background:url('/assets/wave-bg.png') center/cover no-repeat;opacity:.05;mix-blend-mode:screen;pointer-events:none}
.dw-chrome .vs-col.center > *{position:relative;z-index:1}
.dw-chrome .vs-tag{font-size:11px;letter-spacing:1.6px;text-transform:uppercase;font-weight:600;color:var(--muted-2);margin-bottom:10px}
.dw-chrome .vs-col.center .vs-tag{color:var(--cyan)}
.dw-chrome .vs-col.recommended{}
.dw-chrome .vs-col h3{font-size:18px;color:var(--text-2);margin-bottom:6px}
.dw-chrome .vs-col.center h3{color:#fff}
.dw-chrome .vs-col .vs-sub{font-size:12.5px;color:var(--muted);margin-bottom:18px;line-height:1.6}
.dw-chrome .vs-col.center .vs-sub{color:rgba(255,255,255,.65)}
.dw-chrome .vs-col ul{list-style:none;display:flex;flex-direction:column;gap:9px;font-size:13px;line-height:1.55}
.dw-chrome .vs-col li{display:flex;gap:8px;align-items:flex-start;color:var(--muted)}
.dw-chrome .vs-col.center li{color:rgba(255,255,255,.78)}
.dw-chrome .vs-col li svg{width:14px;height:14px;flex-shrink:0;margin-top:3px;color:var(--muted-2)}
.dw-chrome .vs-col.center li svg{color:var(--cyan)}
.dw-chrome .vs-col.center li.win svg{color:var(--cyan)}
.dw-chrome .vs-foot{margin-top:auto;padding-top:18px;font-size:12px;color:var(--muted-2);font-style:italic;line-height:1.5}
.dw-chrome .vs-col.center .vs-foot{color:rgba(255,255,255,.5);font-weight:600;font-style:normal;letter-spacing:.3px}
.dw-chrome .vs-col.center .badge-best{display:inline-block;background:var(--cyan);color:var(--navy);font-size:10px;font-weight:700;letter-spacing:1.4px;padding:4px 9px;border-radius:4px;margin-bottom:14px;text-transform:uppercase;align-self:flex-start}
@media(max-width:960px){.dw-chrome .versus-grid{grid-template-columns:1fr}
.dw-chrome .vs-col.center{transform:none}}
.dw-chrome .discovery-sec{padding:80px 0;background:#fff}
.dw-chrome .discovery-card{
  max-width:920px;margin:0 auto;
  background:linear-gradient(180deg,var(--navy) 0%,#081428 100%);
  color:#fff;border-radius:var(--radius-lg);padding:48px 56px;
  position:relative;overflow:hidden;text-align:center;
}
.dw-chrome .discovery-card::before{content:"";position:absolute;inset:0;background:url('/assets/wave-bg.png') center/cover no-repeat;opacity:.05;mix-blend-mode:screen}
.dw-chrome .discovery-card > *{position:relative;z-index:1}
.dw-chrome .disc-q{font-size:12px;letter-spacing:1.8px;text-transform:uppercase;color:var(--cyan);font-weight:600;margin-bottom:18px}
.dw-chrome .disc-prompt{font-size:26px;color:#fff;margin-bottom:22px;font-weight:400;font-style:italic;line-height:1.4;letter-spacing:-.3px;max-width:780px;margin-left:auto;margin-right:auto}
.dw-chrome .disc-answer{font-size:17px;line-height:1.7;color:rgba(255,255,255,.78);font-weight:300;max-width:720px;margin:0 auto;letter-spacing:.1px}
.dw-chrome .disc-answer em{color:var(--cyan);font-style:normal;font-weight:500}
.dw-chrome .disc-foot{margin-top:24px;font-size:12.5px;color:rgba(255,255,255,.5);letter-spacing:.4px}
@media(max-width:600px){.dw-chrome .discovery-card{padding:36px 24px}
.dw-chrome .disc-prompt{font-size:21px}
.dw-chrome .disc-answer{font-size:15.5px}}
.dw-chrome .tech-sec{background:var(--bg-soft);border-top:1px solid var(--line);border-bottom:1px solid var(--line);text-align:center}
.dw-chrome .tech-sec h2{max-width:680px;margin:0 auto}
.dw-chrome .tech-sec .lead{max-width:620px;margin:14px auto 0}
.dw-chrome .tech-pills{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;margin-top:36px}
.dw-chrome .tp{
  background:#fff;border:1px solid var(--line);border-radius:6px;
  padding:10px 20px;font-size:13.5px;color:var(--muted);font-weight:500;
  display:inline-flex;align-items:center;gap:8px;transition:all .2s;
}
.dw-chrome .tp:hover{border-color:var(--cyan);color:var(--text-2)}
.dw-chrome .tp .dot{width:6px;height:6px;border-radius:50%;background:var(--cyan)}
.dw-chrome .tp.featured{background:var(--navy);color:#fff;border-color:var(--navy)}
.dw-chrome .tp.featured .dot{background:var(--cyan)}
.dw-chrome .tech-cta{margin-top:32px}
.dw-chrome .tech-cta a{font-weight:600;color:var(--cyan);display:inline-flex;align-items:center;gap:6px}
.dw-chrome .tech-cta a:hover .btn-arrow{transform:translateX(3px)}
.dw-chrome .cta-sec{
  position:relative;color:#fff;text-align:center;padding:96px 0;overflow:hidden;
  background:
    radial-gradient(700px 400px at 80% 0%, rgba(52,199,245,.18), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(29,122,192,.20), transparent 60%),
    var(--navy);
}
.dw-chrome .cta-sec::before{
  content:"";position:absolute;inset:0;
  background:url('/assets/wave-bg.png') center/cover no-repeat;
  opacity:.05;mix-blend-mode:screen;
}
.dw-chrome .cta-sec .container{position:relative;z-index:2}
.dw-chrome .cta-sec h2{color:#fff;max-width:680px;margin:0 auto 14px}
.dw-chrome .cta-sec p{color:rgba(255,255,255,.7);max-width:560px;margin:0 auto 36px;font-size:16px;line-height:1.7;font-weight:300}
.dw-chrome .cta-row{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
.dw-chrome .cta-trust{margin-top:36px;display:flex;justify-content:center;gap:30px;color:rgba(255,255,255,.5);font-size:12.5px;flex-wrap:wrap}
.dw-chrome .contact-form{
  margin-top:40px;text-align:left;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--radius-lg);
  padding:36px 40px;
  backdrop-filter:blur(8px);
}
.dw-chrome .cf-row{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-bottom:18px}
.dw-chrome .cf-field{display:flex;flex-direction:column;gap:8px}
.dw-chrome .cf-field label{
  font-size:11px;letter-spacing:1.4px;text-transform:uppercase;
  color:rgba(255,255,255,.65);font-weight:600;
}
.dw-chrome .cf-field label .req{color:var(--cyan);margin-left:3px}
.dw-chrome .cf-input, .dw-chrome .cf-select, .dw-chrome .cf-textarea{
  width:100%;font-family:inherit;font-size:15px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;border-radius:8px;
  padding:13px 14px;line-height:1.4;
  transition:border-color .15s, background .15s, box-shadow .15s;
}
.dw-chrome .cf-textarea{resize:vertical;min-height:120px;font-family:inherit}
.dw-chrome .cf-input::placeholder, .dw-chrome .cf-textarea::placeholder{color:rgba(255,255,255,.35)}
.dw-chrome .cf-input:focus, .dw-chrome .cf-select:focus, .dw-chrome .cf-textarea:focus{
  outline:none;border-color:var(--cyan);
  background:rgba(255,255,255,.09);
  box-shadow:0 0 0 4px rgba(52,199,245,.12);
}
.dw-chrome .cf-select{
  appearance:none;-webkit-appearance:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat:no-repeat;background-position:right 14px center;
  padding-right:38px;cursor:pointer;
}
.dw-chrome .cf-select option{background:var(--navy);color:#fff}
.dw-chrome .cf-submit{
  margin-top:8px;display:flex;justify-content:flex-end;align-items:center;gap:18px;
}
.dw-chrome .cf-note{font-size:12px;color:rgba(255,255,255,.45);font-weight:500;letter-spacing:.2px}
.dw-chrome .cf-overlay{
  position:fixed;inset:0;z-index:1000;
  background:rgba(7,16,30,.78);backdrop-filter:blur(6px);
  display:none;align-items:center;justify-content:center;
  padding:24px;
  opacity:0;transition:opacity .25s;
}
.dw-chrome .cf-overlay.show{display:flex;opacity:1}
.dw-chrome .cf-modal{
  background:#fff;color:var(--navy);
  width:100%;max-width:480px;border-radius:var(--radius-lg);
  padding:48px 44px 40px;text-align:center;
  box-shadow:0 30px 80px rgba(0,0,0,.4);
  transform:translateY(12px) scale(.98);transition:transform .3s cubic-bezier(.2,.9,.3,1.1);
}
.dw-chrome .cf-overlay.show .cf-modal{transform:translateY(0) scale(1)}
.dw-chrome .cf-check{
  width:64px;height:64px;border-radius:50%;
  background:linear-gradient(135deg,var(--cyan) 0%,var(--cyan-3) 100%);
  display:inline-flex;align-items:center;justify-content:center;
  margin-bottom:20px;color:#fff;
}
.dw-chrome .cf-modal h3{font-size:24px;margin-bottom:10px;color:var(--navy)}
.dw-chrome .cf-modal p{color:var(--muted);font-size:14.5px;line-height:1.65;margin-bottom:28px}
.dw-chrome .cf-modal .btn{margin:0 auto}
@media(max-width:640px){.dw-chrome .contact-form{padding:24px 20px}
.dw-chrome .cf-row{grid-template-columns:1fr;gap:14px;margin-bottom:14px}
.dw-chrome .cf-submit{flex-direction:column-reverse;align-items:stretch;gap:12px}
.dw-chrome .cf-submit .btn{justify-content:center}
.dw-chrome .cf-modal{padding:36px 24px 28px}}
.dw-chrome .cta-trust span{display:inline-flex;align-items:center;gap:6px}
.dw-chrome .cta-trust svg{width:14px;height:14px;color:var(--cyan)}
.dw-chrome .footer{background:var(--footer);color:rgba(255,255,255,.7);padding:64px 0 28px;border-top:1px solid rgba(255,255,255,.06)}
.dw-chrome .foot-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:42px}
.dw-chrome .foot-brand .desc{font-size:13.5px;color:rgba(255,255,255,.55);line-height:1.7;margin-top:16px;max-width:340px}
.dw-chrome .foot-badges{display:flex;gap:10px;margin-top:22px;flex-wrap:wrap}
.dw-chrome .foot-badge{
  background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);
  border-radius:6px;padding:8px 14px;font-size:11.5px;color:rgba(255,255,255,.6);
  font-weight:500;display:inline-flex;align-items:center;gap:8px;
}
.dw-chrome .foot-badge .pulse-mini{width:6px;height:6px;border-radius:50%;background:var(--cyan)}
.dw-chrome .foot-col h4{color:#fff;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:1.3px;margin-bottom:18px}
.dw-chrome .foot-col a{display:block;font-size:14px;color:rgba(255,255,255,.6);margin-bottom:10px;transition:color .15s}
.dw-chrome .foot-col a:hover{color:#fff}
.dw-chrome .foot-col p{font-size:14px;color:rgba(255,255,255,.6);margin-bottom:10px;display:flex;align-items:flex-start;gap:8px}
.dw-chrome .foot-col p svg{width:14px;height:14px;color:var(--cyan);flex-shrink:0;margin-top:3px}
.dw-chrome .foot-bot{
  margin-top:48px;padding-top:24px;border-top:1px solid rgba(255,255,255,.08);
  display:flex;justify-content:space-between;align-items:center;gap:20px;flex-wrap:wrap;
  font-size:12.5px;color:rgba(255,255,255,.45);
}
.dw-chrome .foot-bot .links{display:flex;gap:22px}
.dw-chrome .foot-bot a:hover{color:#fff}
.dw-chrome .foot-bot .socials{display:flex;gap:10px}
.dw-chrome .foot-bot .socials a{
  width:32px;height:32px;border-radius:50%;display:grid;place-items:center;
  background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);color:rgba(255,255,255,.6);
}
.dw-chrome .foot-bot .socials a:hover{background:var(--cyan);color:#fff;border-color:var(--cyan)}
.dw-chrome .foot-bot .socials svg{width:14px;height:14px}
@media(max-width:880px){.dw-chrome .foot-grid{grid-template-columns:1fr 1fr}}
@media(max-width:560px){.dw-chrome .foot-grid{grid-template-columns:1fr}}
.dw-chrome .mob-menu{
  position:fixed;inset:0;background:var(--navy);z-index:100;
  padding:24px 32px;transform:translateX(100%);transition:transform .25s ease;
  display:flex;flex-direction:column;gap:14px;color:#fff;
}
.dw-chrome .mob-menu.open{transform:translateX(0)}
.dw-chrome .mob-menu .top{display:flex;justify-content:space-between;align-items:center;margin-bottom:24px}
.dw-chrome .mob-menu .close{color:#fff;width:40px;height:40px;display:grid;place-items:center}
.dw-chrome .mob-menu a{font-size:22px;color:#fff;font-weight:500;padding:10px 0;border-bottom:1px solid rgba(255,255,255,.08)}
.dw-chrome .mob-menu .mob-sub{display:flex;flex-direction:column;border-bottom:1px solid rgba(255,255,255,.08)}
.dw-chrome .mob-menu .mob-sub a{font-size:16px;color:rgba(255,255,255,.62);font-weight:400;padding:9px 0 9px 18px;border-bottom:none;border-left:2px solid rgba(52,199,245,.4);margin-left:2px}
.dw-chrome .mob-menu .mob-sub a:hover{color:var(--cyan)}
.dw-chrome .mob-menu .btn{margin-top:auto}
@media(max-width:1000px){.dw-chrome .container{padding:0 24px}
.dw-chrome .section{padding:80px 0}
.dw-chrome .section .head{margin-bottom:40px}
.dw-chrome h1{font-size:clamp(34px,6vw,48px)}
.dw-chrome h2{font-size:clamp(26px,4.5vw,36px)}}
@media(max-width:760px){.dw-chrome .container{padding:0 20px}
.dw-chrome .section{padding:56px 0}
.dw-chrome .section .head{margin-bottom:32px}
.dw-chrome .tagstrip{padding:7px 16px;font-size:11px;line-height:1.4}
.dw-chrome .tagstrip .left{gap:10px}
.dw-chrome .tagstrip .left span:nth-child(2){font-size:11px}
.dw-chrome .nav{padding:12px 0;gap:12px}
.dw-chrome .brand-mark{height:36px}
.dw-chrome .nav-cta .btn{padding:10px 16px;font-size:13px}
.dw-chrome .nav-cta .btn .btn-arrow{display:none}
.dw-chrome .hero{padding:calc(var(--header-h, 116px) + 16px) 0 56px}
.dw-chrome .hero-grid{gap:32px}
.dw-chrome h1{font-size:clamp(30px,7.5vw,40px);line-height:1.12}
.dw-chrome .hero p.lead{font-size:15px;margin-top:18px}
.dw-chrome .hero-badge{font-size:10.5px;letter-spacing:1.3px;padding:8px 14px !important;white-space:normal;line-height:1.5;width:auto !important;max-width:100% !important;margin-left:0 !important}
.dw-chrome .hero-ctas{margin-top:26px;gap:10px}
.dw-chrome .hero-ctas .btn{flex:1 1 auto;justify-content:center;padding:13px 18px;font-size:14px}
.dw-chrome .hero-meta{margin-top:26px;gap:12px;font-size:12px;align-items:flex-start;flex-wrap:wrap}
.dw-chrome .hero-meta .avatars span{width:26px;height:26px;font-size:10px}
.dw-chrome .hero-panel{padding:18px;border-radius:14px}
.dw-chrome .panel-head{margin-bottom:12px}
.dw-chrome .panel-title{font-size:12px;gap:6px}
.dw-chrome .panel-tag{font-size:9px;padding:3px 8px}
.dw-chrome .panel-row{padding:10px 12px;border-radius:8px}
.dw-chrome .panel-row .ico{width:28px;height:28px}
.dw-chrome .panel-row .ico svg{width:14px;height:14px}
.dw-chrome .panel-row .name{font-size:13px}
.dw-chrome .panel-row .sub{font-size:10.5px}
.dw-chrome .panel-row .val{font-size:13px}
.dw-chrome .trust{padding:40px 0 44px}
.dw-chrome .trust-label{font-size:11px;letter-spacing:2px;margin-bottom:24px}
.dw-chrome .marquee-track{gap:64px}
.dw-chrome .logo-item img{height:28px}
.dw-chrome .met{padding:30px 16px}
.dw-chrome .met .num{font-size:34px}
.dw-chrome .met .lbl{font-size:12px}
.dw-chrome .met .sub{font-size:10px;letter-spacing:1px}
.dw-chrome .svc{padding:26px 22px;min-height:0}
.dw-chrome .svc h3{font-size:17px}
.dw-chrome .svc p{font-size:13px}
.dw-chrome .case{padding:26px 22px}
.dw-chrome .case h3{font-size:18px}
.dw-chrome .case p{font-size:13.5px;margin-bottom:20px}
.dw-chrome .cs .v{font-size:20px}
.dw-chrome .cs .l{font-size:10px}
.dw-chrome .case-footer{flex-direction:column;align-items:flex-start;gap:10px}
.dw-chrome .tcard{padding:26px 22px}
.dw-chrome .tcard .quote{font-size:15px;margin-bottom:18px}
.dw-chrome .tcard .qmark{font-size:38px;top:14px;right:18px}
.dw-chrome .layer{padding:30px 24px;min-height:0}
.dw-chrome .layer h3{font-size:19px}
.dw-chrome .layer p.l-lead{font-size:13.5px}
.dw-chrome .layer-foot{flex-direction:column;align-items:flex-start;gap:12px}
.dw-chrome .layer-foot a{align-self:flex-start}
.dw-chrome .aud{padding:26px 22px}
.dw-chrome .aud h3{font-size:17px}
.dw-chrome .aud .what{font-size:13px}
.dw-chrome .aud .signals strong{min-width:54px;font-size:10px}
.dw-chrome .versus-grid{gap:14px}
.dw-chrome .vs-col{padding:24px 22px}
.dw-chrome .vs-col h3{font-size:17px}
.dw-chrome .vs-col.center{transform:none;order:-1}
.dw-chrome .discovery-sec{padding:56px 0}
.dw-chrome .discovery-card{padding:32px 22px;border-radius:12px}
.dw-chrome .disc-prompt{font-size:20px;margin-bottom:18px}
.dw-chrome .disc-answer{font-size:15.5px;line-height:1.7}
.dw-chrome .tech-pills{margin-top:28px;gap:8px}
.dw-chrome .tp{padding:8px 14px;font-size:12.5px}
.dw-chrome .cta-sec{padding:64px 0}
.dw-chrome .cta-sec p{font-size:15px;margin-bottom:28px}
.dw-chrome .cta-row .btn{flex:1 1 auto;justify-content:center;min-width:0}
.dw-chrome .cta-trust{margin-top:28px;gap:14px;flex-direction:column;align-items:flex-start;text-align:left;max-width:380px;margin-left:auto;margin-right:auto}
.dw-chrome .cta-trust span{font-size:12.5px}
.dw-chrome .footer{padding:48px 0 24px}
.dw-chrome .foot-grid{gap:32px}
.dw-chrome .foot-col h4{margin-bottom:14px;font-size:12px}
.dw-chrome .foot-bot{flex-direction:column;align-items:flex-start;gap:14px;margin-top:36px}
.dw-chrome .foot-bot .links{flex-wrap:wrap;gap:14px}}
@media(max-width:480px){.dw-chrome .container{padding:0 16px}
.dw-chrome .tagstrip{padding:6px 12px}
.dw-chrome .tagstrip .left span:nth-child(2){font-size:10.5px}
.dw-chrome .nav-cta .nav-link-quiet{display:none}
.dw-chrome .hero{padding:calc(var(--header-h, 116px) + 8px) 0 44px}
.dw-chrome h1{font-size:30px;line-height:1.15}
.dw-chrome .hero p.lead{font-size:14.5px}
.dw-chrome .hero-ctas{flex-direction:column;width:100%}
.dw-chrome .hero-ctas .btn{width:100%}
.dw-chrome .hero-meta{font-size:11.5px}
.dw-chrome .hero-panel{padding:14px;border-radius:12px}
.dw-chrome .panel-row{padding:9px 10px}
.dw-chrome .panel-row .name{font-size:12.5px}
.dw-chrome .panel-row .sub{font-size:10px}
.dw-chrome .panel-row .val{font-size:12.5px}
.dw-chrome .panel-row .pl{gap:10px;min-width:0;flex:1}
.dw-chrome .panel-row > .val, .dw-chrome .panel-row > .spark{flex-shrink:0}
.dw-chrome .marquee-track{gap:48px}
.dw-chrome .logo-item img{height:24px}
.dw-chrome .met{padding:24px 12px}
.dw-chrome .met .num{font-size:30px;letter-spacing:-.5px}
.dw-chrome .met .lbl{font-size:11.5px}
.dw-chrome .met .sub{font-size:9.5px;letter-spacing:.7px;line-height:1.4}
.dw-chrome .svc, .dw-chrome .case, .dw-chrome .tcard, .dw-chrome .layer, .dw-chrome .aud, .dw-chrome .vs-col{padding:22px 18px}
.dw-chrome .case-stats{gap:12px}
.dw-chrome .cs .v{font-size:18px}
.dw-chrome .cs .l{font-size:9.5px;letter-spacing:.4px}
.dw-chrome .discovery-card{padding:28px 18px}
.dw-chrome .disc-prompt{font-size:18px;margin-bottom:16px;line-height:1.4}
.dw-chrome .disc-answer{font-size:14.5px;line-height:1.7}
.dw-chrome .disc-q{font-size:11px;letter-spacing:1.3px;margin-bottom:10px}
.dw-chrome .disc-foot{font-size:11px;margin-top:20px}
.dw-chrome .cta-row{flex-direction:column;width:100%}
.dw-chrome .cta-row .btn{width:100%}
.dw-chrome .section{padding:48px 0}
.dw-chrome .section .head{margin-bottom:28px}
.dw-chrome h2{font-size:26px;line-height:1.2}
.dw-chrome .lead{font-size:14.5px}
.dw-chrome .eyebrow{font-size:10.5px;letter-spacing:1.4px;margin-bottom:10px}}
@media(max-width:360px){.dw-chrome .container{padding:0 14px}
.dw-chrome h1{font-size:27px}
.dw-chrome h2{font-size:23px}
.dw-chrome .nav-cta .btn{padding:9px 14px;font-size:12.5px}
.dw-chrome .brand-mark{height:32px}}
@media(max-width:560px){.dw-chrome .svc{height:auto;overflow:visible;padding:0;
    border:1px solid var(--line);border-radius:24px;
    background:linear-gradient(160deg,#ffffff 0%,#F4FAFE 100%);
    box-shadow:0 10px 30px rgba(10,25,48,.05)}
.dw-chrome .svc:hover{transform:none;box-shadow:0 10px 30px rgba(10,25,48,.05)}
.dw-chrome .svc-inner{height:auto}
.dw-chrome .svc-face{position:relative;inset:auto;border-radius:0}
.dw-chrome .svc-front{opacity:1;transform:none;background:transparent;border:none;padding:26px 24px 2px}
.dw-chrome .svc-front::after{display:none}
.dw-chrome .svc-front .fz-ic{margin-bottom:18px}
.dw-chrome .svc-front .fz-title{min-height:0;margin-bottom:14px}
.dw-chrome .svc-back{transform:none;background:transparent;border:none;box-shadow:none;padding:6px 24px 24px}
.dw-chrome .svc-back .fz-logos, .dw-chrome .svc-back h3{display:none}
.dw-chrome .svc-back p{min-height:0}
.dw-chrome .svc-back .svc-rule{margin:16px 0 14px}}
@media(max-width:600px){.dw-chrome .vj-num{display:none}
.dw-chrome .vj-line{display:none}
.dw-chrome .vj-body::before{display:none}
.dw-chrome .vj-card{gap:0}}
@media(max-width:760px){.dw-chrome .versus-grid{
    display:flex;grid-template-columns:none;
    overflow-x:auto;scroll-snap-type:x mandatory;
    gap:14px;padding:6px 2px 16px;
    -ms-overflow-style:none;scrollbar-width:none;
  }
.dw-chrome .versus-grid::-webkit-scrollbar{display:none}
.dw-chrome .vs-col{flex:0 0 76%;scroll-snap-align:center}
.dw-chrome .vs-col.center{flex:0 0 90%;order:-1;transform:none;
    box-shadow:var(--shadow-lg), 0 0 0 2px var(--cyan)}}
.dw-chrome .mobile-cta{display:none}
@media(max-width:960px){.dw-chrome .nav-cta .btn{display:none}
.dw-chrome .mobile-cta{
    display:block;position:fixed;left:0;right:0;bottom:0;z-index:90;
    padding:14px 16px calc(14px + env(safe-area-inset-bottom,0px));
    background:linear-gradient(180deg, rgba(8,20,40,0) 0%, rgba(8,20,40,.94) 38%);
    transform:translateY(130%);transition:transform .4s cubic-bezier(.22,1,.36,1);
    pointer-events:none;
  }
.dw-chrome .mobile-cta.show{transform:translateY(0);pointer-events:auto}
.dw-chrome .mobile-cta .btn{
    display:flex;width:100%;justify-content:center;align-items:center;gap:8px;
    padding:15px 20px;font-size:15px;border-radius:14px;
    box-shadow:0 12px 34px rgba(52,199,245,.4);
  }
.dw-chrome .mobile-cta .btn .btn-arrow{display:inline-block}}
/* ---- privacy/chrome page tweaks ---- */
.dw-chrome{font-family:'Poppins',system-ui,sans-serif;line-height:1.55;-webkit-font-smoothing:antialiased}
.dw-chrome.dw-solid .tagstrip{background:var(--navy-deep)}
.dw-chrome.dw-solid .site-header,
.dw-chrome.dw-solid .site-header.scrolled{
  background:rgba(7,16,30,.92);
  -webkit-backdrop-filter:saturate(160%) blur(14px);
  backdrop-filter:saturate(160%) blur(14px);
  border-bottom-color:rgba(255,255,255,.06);
  box-shadow:0 8px 24px rgba(0,0,0,.18);
}
.dw-chrome .footer{background:var(--footer);color:rgba(255,255,255,.7)}
.dw-chrome ~ .page-content{padding-top:104px}
