:root{
  --ink:#0A0A0B;
  --muted:#5B5B66;
  --lime:#B9DCFB;
  --lime-lo:#93C0F2;
  --beam:#175CD3;
  --grid-fill:rgba(241,244,250,.5);   /* #F1F4FA @ 50% — cell fill from the design file */
  --grid-line:rgba(255,255,255,.5);   /* white @ 50% — cell stroke from the design file */
  --line-w:1.111px;
  --cell:106.667px;                    /* exact cell size from Frame_2147207809.svg */
  --beam-len:746.667px;                /* beam length — 7 grid cells */
  --nav-h:74px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
/* clears the fixed header when jumping to an anchor */
section[id],div[id="home"]{scroll-margin-top:118px}
#home{scroll-margin-top:0}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}}
html,body{margin:0;padding:0}
body{
  font-family:'Inter',system-ui,-apple-system,'Segoe UI',sans-serif;
  color:var(--ink);
  background:#F7F7FC;
  -webkit-font-smoothing:antialiased;
  overflow-x:clip;   /* clip, not hidden — hidden would break position:sticky */
}

/* ---------- background stage ---------- */
.stage{position:relative;isolation:isolate;overflow:hidden;padding-top:96px}
.bg{position:absolute;inset:0;z-index:0;pointer-events:none}

.bg-wash{
  position:absolute;inset:0;
  background:
    radial-gradient(120% 70% at 50% -10%, #DEE9F9 0%, #EDF2FB 34%, #F7F7FC 62%, #F4F6FB 100%),
    linear-gradient(180deg,#EAF1FB 0%,#F7F7FC 45%,#EEF2FA 100%);
}

.bg-grid{
  position:absolute;inset:0;
  background-color:var(--grid-fill);
  background-image:
    linear-gradient(to right, var(--grid-line) var(--line-w), transparent var(--line-w)),
    linear-gradient(to bottom, var(--grid-line) var(--line-w), transparent var(--line-w));
  background-size:var(--cell) var(--cell);
  background-position:0 0;
}

.layer{position:absolute;inset:0}

/* soft filled squares that breathe in and out */
.cell{
  position:absolute;
  width:var(--cell);height:var(--cell);
  background:rgba(255,255,255,.7);
  opacity:0;
}
.cell.tint{ background:rgba(255,255,255,.95); }

/* travelling glow — vertical, one grid column wide, 531px long (design spec).
   The glow is a separate blurred layer that only exists at the leading head,
   so the faded tail stays fully transparent with no halo behind it. */
.beam{
  position:absolute;
  width:var(--line-w);
  height:var(--beam-len);
  will-change:transform,opacity;
  background:linear-gradient(180deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.55) 46%,
    rgba(255,255,255,.95) 74%,
    #ffffff 88%,
    var(--beam) 97%,
    rgba(23,92,211,0) 100%);
}
.beam::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  width:15.556px;            /* glow width from the design file's clip box */
  height:100%;
  transform:translateX(-50%);
  border-radius:999px;
  pointer-events:none;
  background:linear-gradient(180deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0) 66%,
    rgba(255,255,255,.30) 82%,
    rgba(255,255,255,.60) 92%,
    rgba(23,92,211,.45) 98%,
    rgba(23,92,211,0) 100%);
  filter:blur(4px);
}
.beam.lime{
  background:linear-gradient(180deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.55) 46%,
    rgba(255,255,255,.95) 74%,
    #ffffff 88%,
    var(--lime-lo) 97%,
    rgba(209,233,255,0) 100%);
}
.beam.lime::before{
  background:linear-gradient(180deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0) 66%,
    rgba(255,255,255,.30) 82%,
    rgba(255,255,255,.60) 92%,
    rgba(23,92,211,.45) 98%,
    rgba(23,92,211,0) 100%);
  filter:blur(4px);
}

/* fades so the grid dissolves at the edges */
.bg-vignette{
  position:absolute;inset:0;
  background:
    radial-gradient(85% 68% at 50% 42%, rgba(255,255,255,0) 58%, rgba(247,247,252,.45) 100%),
    linear-gradient(180deg, rgba(240,238,251,.9) 0%, rgba(255,255,255,0) 18%, rgba(255,255,255,0) 72%, rgba(238,242,250,.95) 100%);
}

/* ---------- nav ---------- */
.nav-wrap{position:fixed;top:0;left:0;right:0;z-index:100;padding:22px 24px 0}
.nav-links a[aria-current="true"]{color:#000;font-weight:600}

/* mobile menu */
.nav-toggle{
  display:none;appearance:none;border:0;cursor:pointer;background:transparent;
  width:44px;height:44px;border-radius:999px;place-items:center;margin-left:auto;
}
.nav-toggle span{
  display:block;width:20px;height:2px;background:#0A0A0B;border-radius:2px;
  position:relative;transition:transform .25s ease, opacity .25s ease;
}
.nav-toggle span::before,.nav-toggle span::after{
  content:"";position:absolute;left:0;width:20px;height:2px;background:#0A0A0B;border-radius:2px;
  transition:transform .25s ease;
}
.nav-toggle span::before{top:-6px}
.nav-toggle span::after{top:6px}
.nav-toggle[aria-expanded="true"] span{background:transparent}
.nav-toggle[aria-expanded="true"] span::before{transform:translateY(6px) rotate(45deg)}
.nav-toggle[aria-expanded="true"] span::after{transform:translateY(-6px) rotate(-45deg)}
.nav-panel{display:none}
.nav{
  max-width:1160px;margin:0 auto;height:var(--nav-h);
  background:rgba(255,255,255,0.65);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,0.4);
  border-radius:999px;
  display:flex;align-items:center;gap:24px;
  padding:0 12px 0 24px;
  box-shadow:0 8px 32px 0 rgba(0,0,0,0.06), inset 0 1px 0 0 rgba(255,255,255,0.4);
}
.logo-svg,.logo-img{height:42px;width:auto;display:block}
.nav .logo-svg,.nav .logo-img{height:52px;width:auto;display:block;transition:transform .2s ease}
.nav .logo-svg:hover,.nav .logo-img:hover{transform:scale(1.04)}
.nav-links{display:flex;align-items:center;gap:30px;margin:0 auto;list-style:none;padding:0}
.nav-links a{
  font-size:14px;font-weight:500;color:#2A2A33;text-decoration:none;
  letter-spacing:-.01em;transition:color .18s ease;
}
.nav-links a:hover,.nav-links a[aria-current]{color:#000}

/* ---------- pill buttons (measured from Frame_15.png @2x + icon SVGs) ---------- */
.btn{
  display:inline-flex;align-items:center;
  gap:16px;                       /* 32px @2x */
  height:50px;                    /* 100px @2x */
  padding:4px 20px 4px 4px;       /* 8 / 40 / 8 / 8 @2x */
  border-radius:999px;            /* corner radius = half the height */
  border:0;box-sizing:border-box;
  text-decoration:none;cursor:pointer;
  font-family:inherit;font-size:16px;font-weight:500;line-height:1;
  letter-spacing:-.01em;white-space:nowrap;
  transition:transform .18s ease, box-shadow .22s ease, background-color .2s ease;
}
.btn .knob{
  width:58px;height:42px;         /* 116 x 84 @2x — a wide stadium, not a circle */
  border-radius:999px;
  flex:0 0 auto;
  display:grid;place-items:center;
  overflow:hidden;                /* the window the arrow travels through */
}
/* two arrows stacked in one grid cell: one leaves right, its twin arrives from the left */
.knob-ico{
  grid-area:1 / 1;
  display:grid;place-items:center;
  transition:transform .42s cubic-bezier(.65,0,.35,1);
}
.knob-ico-2{transform:translateX(-190%)}
.btn:hover .knob-ico-1,
.btn:focus-visible .knob-ico-1{transform:translateX(190%)}
.btn:hover .knob-ico-2,
.btn:focus-visible .knob-ico-2{transform:translateX(0)}
.btn .knob svg{width:24px;height:24px;display:block}
.btn .knob svg path{fill:currentColor}
.btn:focus-visible{outline:2px solid var(--beam);outline-offset:3px}

/* primary — black pill, lime knob, dark icon */
.btn-lime{background:#1A1A1C;color:#fff}
.btn-lime .knob{background:linear-gradient(180deg,#D1E9FF,#93C0F2);color:#0A0A0B}
.btn-lime:hover{background:#000}

/* secondary — white pill, 1px grey hairline, black knob, white icon */
.btn-ghost{background:#fff;color:#0A0A0B;box-shadow:inset 0 0 0 1px #CCCCCC}
.btn-ghost .knob{background:#000;color:#fff}
.btn-ghost:hover{box-shadow:inset 0 0 0 1px #B4B4B4}

/* nav CTA — identical geometry (measured 29px vs 28px in the design export) */
.btn-dark{background:#1A1A1C;color:#fff}
.btn-dark .knob{background:linear-gradient(180deg,#D1E9FF,#93C0F2);color:#0A0A0B}
.btn-dark:hover{background:#000}

/* ---------- hero ---------- */
.hero{
  position:relative;z-index:10;
  max-width:1120px;margin:0 auto;
  padding:64px 24px 0;
  text-align:center;
}
.eyebrow{
  display:inline-flex;align-items:center;gap:9px;
  background:#1A1A1C;color:#fff;
  border-radius:999px;padding:5px 18px 5px 5px;
  font-size:12.5px;font-weight:500;letter-spacing:.005em;
}
.eyebrow .dot{
  width:26px;height:20px;border-radius:999px;
  background:linear-gradient(180deg,#D1E9FF,#93C0F2);
  color:#0A0A0B;
  display:grid;place-items:center;
}
.eyebrow .dot svg{width:15px;height:15px;display:block}
.eyebrow .dot svg path{fill:currentColor}
h1{
  margin:26px auto 0;
  font-size:clamp(34px,5.6vw,66px);
  line-height:1.06;
  letter-spacing:-.035em;
  font-weight:400;
  max-width:920px;      /* wide enough to keep line 2 unbroken at desktop sizes */
}
h1 .strong{display:block;font-weight:700}
.sub{
  margin:22px auto 0;
  max-width:620px;
  font-size:clamp(14px,1.35vw,16.5px);
  line-height:1.6;
  color:var(--muted);
  font-weight:400;
}
.cta-row{display:flex;flex-wrap:wrap;justify-content:center;gap:14px;margin-top:34px}

.device{
  position:relative;
  margin:52px auto 0;
  max-width:820px;
  padding:0 12px;
}
.device img{width:100%;height:auto;display:block}
.device::after{
  content:"";position:absolute;left:12%;right:12%;bottom:2%;height:90px;
  background:radial-gradient(50% 50% at 50% 50%, rgba(23,92,211,.16), rgba(23,92,211,0) 70%);
  filter:blur(6px);z-index:-1;
}

/* reveal on load */
.rise{opacity:0;transform:translateY(16px);animation:rise .9s cubic-bezier(.2,.7,.25,1) forwards}
.d1{animation-delay:.05s}.d2{animation-delay:.14s}.d3{animation-delay:.23s}
.d4{animation-delay:.32s}.d5{animation-delay:.42s}
@keyframes rise{to{opacity:1;transform:none;filter:blur(0)}}

/* white fade that dissolves the bottom of the tablet + hands */
.hero-fade{
  position:relative;z-index:20;
  height:280px;
  margin-top:-280px;
  pointer-events:none;
  background:linear-gradient(180deg,
    rgba(255,255,255,0)   0%,
    rgba(255,255,255,.35) 34%,
    rgba(255,255,255,.72) 58%,
    rgba(255,255,255,.94) 80%,
    #ffffff               100%);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  /* the mask keeps the blur from touching the sharp top of the tablet */
  -webkit-mask-image:linear-gradient(180deg, transparent 0%, #000 46%);
  mask-image:linear-gradient(180deg, transparent 0%, #000 46%);
}

/* peek of next fold */
.next-peek{position:relative;z-index:20;background:#fff;padding:8px 24px 72px}
.next-peek-inner{max-width:1120px;margin:0 auto;display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.peek-card{
  background:#fff;border:1px solid rgba(18,16,45,.07);border-radius:18px;
  padding:22px;box-shadow:0 20px 40px -34px rgba(20,16,50,.5);
  text-align:left;
}
.peek-card h3{margin:0 0 6px;font-size:15px;font-weight:600;letter-spacing:-.015em}
.peek-card p{margin:0;font-size:13.5px;line-height:1.55;color:var(--muted)}


/* ================= METRICS SECTION =================
   Measured from Frame_2147224190.jpg (3840px export = 1920 frame @2x) */
.metrics{position:relative;z-index:20;background:#fff;padding:120px 0 140px}
.wrap{max-width:1368px;margin:0 auto;padding:0 24px}  /* 1320 content + 24 gutters */

/* white pill tag with black knob — differs from the hero's dark eyebrow */
.tag{
  display:inline-flex;align-items:center;gap:10px;
  height:32px;padding:0 18px 0 4px;
  background:#fff;border-radius:999px;
  box-shadow:inset 0 0 0 1px #D6DDE5;
  font-size:15px;font-weight:400;color:#0D0D0D;letter-spacing:-.005em;
}
.tag-knob{
  width:32px;height:24px;border-radius:999px;
  background:#0D0D0D;color:#fff;
  display:grid;place-items:center;flex:0 0 auto;
}
.tag-knob svg{width:16px;height:16px;display:block}
.tag-knob svg path{fill:currentColor}

.metrics-head{
  display:flex;align-items:flex-start;justify-content:space-between;gap:64px;
  margin-top:24px;
}
.metrics-head h2{
  margin:0;
  font-size:clamp(32px,3.4vw,48px);
  line-height:1.05;
  font-weight:700;
  letter-spacing:-.032em;
  color:#000;
}
.metrics-head p{
  margin:6px 0 0;
  max-width:445px;
  font-size:clamp(15px,1.15vw,18px);
  line-height:1.45;
  font-weight:400;
  color:#484848;
}

.metrics-grid{
  margin-top:78px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  column-gap:180px;
  row-gap:0;
}
.stat{display:flex;flex-direction:column}
.stat-num{
  font-size:clamp(64px,7.6vw,120px);
  line-height:.92;
  font-weight:700;
  letter-spacing:-.045em;
  color:#0D0D0D;
  font-variant-numeric:lining-nums tabular-nums;
}
.stat-label{
  margin:44px 0 0;
  font-size:clamp(20px,1.95vw,30px);
  line-height:1.06;
  font-weight:400;
  letter-spacing:-.012em;
  color:#0D0D0D;
}
.stat-rule{
  display:block;
  margin-top:auto;
  height:1px;
  background:linear-gradient(90deg,#175CD3 0%,rgba(23,92,211,0) 100%);
}
/* the rule sits at the bottom of the stat container and 78px above the next row's number */
.metrics-grid .stat{padding-bottom:78px}
.metrics-grid .stat:nth-child(n+4){padding-bottom:0}

@media (max-width:1100px){
  .metrics-grid{column-gap:72px}
  .metrics-head{gap:40px}
}
@media (max-width:820px){
  .metrics{padding:80px 0 96px}
  .metrics-head{flex-direction:column;gap:20px}
  .metrics-head p{max-width:none}
  .metrics-grid{grid-template-columns:repeat(2,1fr);column-gap:48px}
  .metrics-grid .stat{padding-bottom:56px}
  .metrics-grid .stat:nth-child(n+4){padding-bottom:56px}
  .metrics-grid .stat:nth-last-child(-n+2){padding-bottom:0}
  .stat-label{margin-top:28px}
  .stat-rule{margin-top:auto}
}
@media (max-width:520px){
  .metrics-grid{grid-template-columns:1fr}
  .metrics-grid .stat:nth-last-child(-n+2){padding-bottom:56px}
  .metrics-grid .stat:last-child{padding-bottom:0}
}


/* ================= INDUSTRY REALITIES =================
   Measured from Frame_2147224191.jpg (3840px export = 1920 frame @2x) */
.realities{position:relative;z-index:20;background:#fff;padding:110px 0 140px}
.rl-head{margin-left:400px;max-width:920px}
.rl-head h2{
  margin:26px 0 0;
  font-size:clamp(32px,3.4vw,48px);
  line-height:1.05;font-weight:700;letter-spacing:-.032em;color:#000;
}
.rl-head p{
  margin:20px 0 0;max-width:660px;
  font-size:clamp(15px,1.15vw,18px);line-height:1.45;font-weight:400;color:#484848;
}

.rl-body{display:grid;grid-template-columns:400px 1fr;margin-top:64px}

/* ---- sticky rail ---- */
.rl-rail{position:sticky;top:110px;align-self:start;padding-left:32px}
.rl-rail-inner{position:relative}
.rl-progress{
  position:absolute;left:-31px;width:1px;height:380px;
  background:linear-gradient(180deg,#175CD3 0%,rgba(23,92,211,0) 100%);
  transition:top .45s cubic-bezier(.4,0,.2,1);
  pointer-events:none;
}
.rl-dot{
  position:absolute;left:-31px;width:12px;height:12px;margin-left:-5.5px;
  border-radius:999px;background:#175CD3;
  transition:top .45s cubic-bezier(.4,0,.2,1);
  pointer-events:none;
}
.rl-list{list-style:none;margin:0;padding:0}
.rl-list button{
  display:block;width:100%;text-align:left;
  background:none;border:0;padding:0;margin:0;cursor:pointer;
  font-family:inherit;font-size:19px;font-weight:500;line-height:38px;
  letter-spacing:-.005em;text-transform:uppercase;
  color:#B5B5B5;
  transition:color .3s ease;
}
.rl-list button:hover{color:#8A8A8A}
.rl-list li.is-active button{color:#282828}
.rl-list button:focus-visible{outline:2px solid #175CD3;outline-offset:3px;border-radius:4px}

/* ---- scrolling panels ---- */
.rl-panels{display:flex;flex-direction:column;gap:24px}
.rl-card{
  background:#F9F9FB;border-radius:24px;padding:48px;
  scroll-margin-top:110px;
}
.rl-card h3{
  margin:0;font-size:clamp(22px,2.1vw,32px);line-height:1.15;
  font-weight:600;letter-spacing:-.024em;color:#0D0D0D;
}
.rl-figure{
  margin:44px auto 0;display:block;width:100%;max-width:597px;height:auto;
}
.rl-card p{
  margin:48px 0 0;
  font-size:clamp(15px,1.15vw,18px);line-height:1.45;font-weight:400;color:#484848;
}

@media (max-width:1100px){
  .rl-head{margin-left:0}
  .rl-body{grid-template-columns:280px 1fr}
  .rl-list button{font-size:16px;line-height:34px}
}
@media (max-width:820px){
  .realities{padding:80px 0 96px}
  .rl-body{grid-template-columns:1fr;margin-top:40px}
  .rl-rail{position:static;padding-left:26px;margin-bottom:36px}
  .rl-progress{height:120px}
  .rl-card{padding:28px;border-radius:20px}
  .rl-card p{margin-top:32px}
}


/* ================= ONE PLATFORM CAROUSEL =================
   Measured from Frame_2147224192.jpg + Services.jpg (both 1:1 with the 1920 frame).
   Card 598x490, 43px gap, 28px radius, 48px padding, left margin 160. */
.platform-pin-wrapper{position:relative;width:100%}
.platform{
  position:sticky;top:0;height:100vh;
  display:flex;flex-direction:column;justify-content:center;
  box-sizing:border-box;overflow:hidden;
  z-index:20;background:#fff;
  padding:clamp(24px, 4vh, 72px) 0;
  --pf-pad:max(24px, calc((100vw - 1600px) / 2));
  --pf-gap:43px;
  --pf-visible:3.5;
  --pf-gaps:3;
}
.pf-head{padding-left:var(--pf-pad);padding-right:var(--pf-pad)}
.pf-head h2{
  margin:18px 0 0;
  font-size:clamp(28px,3.2vw,48px);line-height:1.05;
  font-weight:700;letter-spacing:-.032em;color:#000;
}
.pf-head p{
  margin:14px 0 0;max-width:560px;
  font-size:clamp(14px,1.1vw,18px);line-height:1.45;color:#484848;
}

/* ---- track ---- */
.pf-rail{
  display:flex;gap:var(--pf-gap);
  margin-top:clamp(20px,3.5vh,48px);
  padding:2px var(--pf-pad) 2px var(--pf-pad);
  overflow-x:auto;overscroll-behavior-x:contain;
  scroll-snap-type:none;
  scroll-padding-left:var(--pf-pad);   /* keep the first card off the left margin when snapping */
  scrollbar-width:none;-ms-overflow-style:none;
  will-change:scroll-position;
}
.pf-rail::-webkit-scrollbar{display:none}

.pf-card{
  position:relative;flex:0 0 auto;
  width:calc((100vw - var(--pf-pad) - var(--pf-gaps) * var(--pf-gap)) / var(--pf-visible));
  min-height:clamp(370px,46vh,490px);
  display:flex;flex-direction:column;justify-content:flex-start;
  padding:clamp(28px, 3vw, 48px);border-radius:28px;background:#fff;
  scroll-snap-align:start;
}
.pf-card-more{
  background:linear-gradient(145deg, #ffffff 0%, #f4f7ff 100%);
  box-shadow:0 12px 32px -8px rgba(23,92,211,.12);
}
/* gradient hairline: transparent at the top-left, saturating toward the
   left edge and the top-right — matches the stroke sampled off the mock */
.pf-card::before{
  content:"";position:absolute;inset:0;border-radius:inherit;padding:1px;
  background:conic-gradient(from 0deg at 50% 50%,
    rgba(23,92,211,.95) 0deg,
    rgba(23,92,211,1)   24deg,
    rgba(23,92,211,1)   51deg,
    rgba(23,92,211,.50) 75deg,
    rgba(23,92,211,.12) 100deg,
    rgba(23,92,211,.06) 119deg,
    rgba(23,92,211,.14) 132deg,
    rgba(23,92,211,.26) 180deg,
    rgba(23,92,211,.90) 225deg,
    rgba(23,92,211,1)   231deg,
    rgba(23,92,211,1)   267deg,
    rgba(23,92,211,.58) 294deg,
    rgba(23,92,211,.28) 336deg,
    rgba(23,92,211,.95) 360deg);
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite:exclude;pointer-events:none;
}
.pf-ico{width:clamp(80px, 8vw, 120px);height:clamp(80px, 8vw, 120px);display:block;flex:0 0 auto;margin-bottom:clamp(18px, 2.5vh, 32px)}
.pf-card > div{display:flex;flex-direction:column;flex:1}
.pf-card h3{
  margin:0;font-size:clamp(20px,2vw,32px);line-height:1.15;
  font-weight:600;letter-spacing:-.024em;color:#000;
  min-height:clamp(48px, 6vh, 74px);display:flex;align-items:flex-start;
}
.pf-card p{
  margin:12px 0 0;font-size:clamp(14px, 1.1vw, 17px);line-height:1.5;color:#484848;
}
.pf-link{
  display:inline-flex;align-items:center;gap:9px;
  margin-top:auto;padding-top:20px;
  font-size:15px;font-weight:500;letter-spacing:.05em;text-transform:uppercase;
  color:#000;text-decoration:none;width:fit-content;
}
.pf-link svg{width:15px;height:15px;stroke:#175CD3;transition:transform .2s ease}
.pf-link:hover svg{transform:translateX(4px)}
.pf-link:focus-visible{outline:2px solid #175CD3;outline-offset:4px;border-radius:4px}

/* ---- custom scrollbar ---- */
.pf-bar{
  position:relative;height:2px;margin:clamp(20px,3vh,48px) var(--pf-pad) 0;
  background:#CFCFCF;border-radius:2px;cursor:pointer;
}
.pf-thumb{
  position:absolute;top:0;left:0;height:2px;border-radius:2px;
  background:linear-gradient(90deg, rgba(23,92,211,.15) 0%, rgba(23,92,211,1) 100%);
  box-shadow:0 0 12px 3px rgba(23,92,211,.35);
}


/* ---- drag-to-scroll + custom cursor ---- */
.pf-rail{cursor:grab}
.pf-rail.is-dragging{cursor:grabbing;scroll-snap-type:none;user-select:none}
.pf-rail.is-dragging a{pointer-events:none}

.pf-cursor{
  position:fixed;top:0;left:0;z-index:60;
  width:76px;height:76px;border-radius:999px;
  display:grid;place-items:center;
  background:#175CD3;color:#fff;
  box-shadow:0 10px 30px -10px rgba(23,92,211,.65);
  pointer-events:none;
  opacity:0;transform:translate3d(-50%,-50%,0) scale(.6);
  transition:opacity .22s ease, transform .22s cubic-bezier(.2,.7,.3,1);
  will-change:transform;
}
.pf-cursor svg{width:26px;height:26px;display:block}
.pf-cursor.is-on{opacity:1}
.pf-cursor.is-down{--pf-cur-scale:.86}

/* only take over the pointer on real mice */
@media (hover:hover) and (pointer:fine){
  .pf-rail.has-cursor{cursor:none}
  .pf-rail.has-cursor a{cursor:none}
}
@media (hover:none),(pointer:coarse){
  .pf-cursor{display:none}
}
@media (prefers-reduced-motion:reduce){
  .pf-cursor{transition:opacity .15s linear}
}

@media (max-width:1280px){
  .platform{--pf-visible:2.4;--pf-gaps:2;--pf-gap:32px}
}
@media (max-width:820px){
  .platform{padding:clamp(20px, 3vh, 40px) 0;--pf-visible:1.15;--pf-gaps:1;--pf-gap:20px}
  .pf-card{min-height:clamp(340px, 44vh, 420px);padding:24px;border-radius:22px}
  .pf-ico{width:72px;height:72px;margin-bottom:14px}
  .pf-card h3{min-height:44px}
  .pf-link{margin-top:auto}
  .pf-rail{margin-top:20px}
  .pf-bar{margin-top:16px}
}


/* ================= INTELLIGENT APPS (tabbed) =================
   Measured from Frame_2147224193.jpg / __1_.jpg (1:1 with the 1920 frame) */
.stake{position:relative;z-index:20;background:#F1F4FB;padding:110px 0 120px}
.st-wrap{max-width:1648px;margin:0 auto;padding:0 24px}  /* 1600 content */
.st-head{text-align:center}
.st-head h2{
  margin:24px 0 0;
  font-size:clamp(32px,3.5vw,50px);line-height:1.08;
  font-weight:700;letter-spacing:-.032em;color:#0D0D0D;
}
.st-head p{
  margin:18px auto 0;max-width:640px;
  font-size:clamp(15px,1.15vw,18px);line-height:1.45;color:#484848;
}

/* ---- segmented toggle ---- */
.st-tabs-row{
  display:flex;justify-content:center;
  width:100%;
  overflow-x:auto;
  overscroll-behavior-x:contain;
  -webkit-overflow-scrolling:touch;
  padding:12px 20px 4px;
  scrollbar-width:none;
  -ms-overflow-style:none;
}
.st-tabs-row::-webkit-scrollbar{display:none}

.st-tabs{
  display:inline-flex;gap:4px;margin:44px 0 0;
  background:#fff;border-radius:999px;padding:6px;
  box-shadow:0 6px 24px -14px rgba(20,16,50,.35);
  flex-shrink:0;
  max-width:none;
}
.st-tab{
  appearance:none;border:0;cursor:pointer;background:transparent;
  height:49px;padding:0 24px;border-radius:999px;
  font-family:inherit;font-size:15px;font-weight:500;letter-spacing:-.01em;
  color:#0D0D0D;white-space:nowrap;flex-shrink:0;
  transition:background-color .28s ease, color .28s ease;
}
.st-tab[aria-selected="true"]{background:#1A1A1C;color:#fff}
.st-tab:focus-visible{outline:2px solid #175CD3;outline-offset:3px}

/* ---- card ---- */
.st-card{
  margin-top:60px;background:#fff;border-radius:24px;overflow:hidden;
  display:grid;grid-template-columns:1fr 788px;align-items:stretch;
  min-height:650px;
}
.st-pane{display:none}
.st-pane.is-on{display:contents}

.st-copy{padding:66px 60px 60px}
.st-eyebrow{
  margin:0;font-size:18px;font-weight:600;letter-spacing:.02em;
  text-transform:uppercase;color:#175CD3;
}
.st-copy h3{
  margin:22px 0 0;font-size:clamp(24px,2.2vw,32px);line-height:1.2;
  font-weight:700;letter-spacing:-.028em;color:#0D0D0D;
}
.st-copy > p{
  margin:20px 0 0;max-width:600px;
  font-size:17px;line-height:26px;color:#484848;
}
.st-rule{
  display:block;height:1px;margin:32px 0 0;max-width:610px;
  background:linear-gradient(90deg,#175CD3 0%,rgba(23,92,211,0) 100%);
}
.st-list{list-style:none;margin:34px 0 0;padding:0;display:flex;flex-direction:column;gap:26px}
.st-list li{display:grid;grid-template-columns:22px 1fr;gap:14px;align-items:start}
.st-list svg{width:22px;height:22px;margin-top:2px;stroke:#175CD3;flex:0 0 auto}
.st-list p{margin:0;font-size:17px;line-height:24px;color:#8A8A8A;max-width:520px}
.st-list strong{color:#0D0D0D;font-weight:600}
.st-actions{display:flex;flex-wrap:wrap;gap:20px;margin-top:46px}

.st-panel{
  position:relative;overflow:hidden;
  border-radius:0 24px 24px 0;
  background:linear-gradient(160deg,#F6FAFE 0%,#EDF4FF 100%);
  display:grid;place-items:center;
  padding:48px 32px;
}
.st-panel-phone{padding:54px 24px}
.st-art{width:100%;height:auto;max-width:788px;display:block}

/* Floating phone mockups (mobile1 & mobile2) */
.st-art-phone{
  max-width:315px;width:100%;height:auto;display:block;
  border-radius:40px;
  overflow:hidden;
  will-change:transform, filter;
  animation:floatPhone 5.5s ease-in-out infinite;
}

/* Floating chatbot mockup (chatbot) */
.st-art-chat{
  max-width:550px;width:100%;height:auto;display:block;
  border-radius:28px;
  will-change:transform, box-shadow;
  animation:floatChat 6s ease-in-out infinite;
}

@keyframes floatPhone{
  0%,100%{
    transform:translateY(0px);
    filter:drop-shadow(0 14px 28px rgba(23,92,211,.14));
  }
  50%{
    transform:translateY(-16px);
    filter:drop-shadow(0 32px 55px rgba(23,92,211,.25));
  }
}

@keyframes floatChat{
  0%,100%{
    transform:translateY(0px);
    box-shadow:0 12px 28px -6px rgba(20,30,60,.12);
  }
  50%{
    transform:translateY(-14px);
    box-shadow:0 28px 55px -8px rgba(23,92,211,.22);
  }
}

@media (prefers-reduced-motion:reduce){
  .st-art-phone, .st-art-chat{animation:none}
}

@media (max-width:1400px){
  .st-card{grid-template-columns:1fr 46%}
  .st-copy{padding:48px 40px}
}
@media (max-width:1000px){
  .stake{padding:72px 0 80px}
  .st-card{grid-template-columns:1fr;min-height:0}
  .st-panel{border-radius:0 0 24px 24px;padding:32px 16px 40px}
  .st-copy{padding:36px 20px 16px}
  .st-tabs-row{justify-content:flex-start;padding:8px 20px 12px;margin-top:24px;scroll-snap-type:x proximity}
  .st-tabs{margin:0 auto;width:max-content;max-width:none;padding:5px;border-radius:999px}
  .st-tab{height:44px;padding:0 18px;font-size:14px;scroll-snap-align:center}
}


/* ================= TESTIMONIALS =================
   Measured from Frame_2147224194.jpg (1:1 with the 1920 frame) */
.tm{position:relative;z-index:20;background:#fff;padding:120px 0 130px}
.tm-wrap{max-width:1648px;margin:0 auto;padding:0 24px}
.tm-head{padding-left:240px}
.tm-head h2{
  margin:26px 0 0;
  font-size:clamp(32px,3.4vw,48px);line-height:1.06;
  font-weight:700;letter-spacing:-.032em;color:#0D0D0D;
}

.tm-body{
  margin-top:96px;
  display:grid;grid-template-columns:240px minmax(0,1fr);
  align-items:center;
  column-gap:0;
}
/* the rail centres against the quote, not the whole block — as drawn */
.tm-rail{display:flex;flex-direction:column;align-items:center;gap:30px;width:92px}
.tm-content{display:flex;flex-direction:column;gap:48px}
.tm-quote{margin:0}
.tm-person{margin:0}

.tm-dot{
  appearance:none;border:0;padding:0;background:none;cursor:pointer;
  width:60px;height:60px;border-radius:999px;
  display:grid;place-items:center;flex:0 0 auto;
  transition:width .38s cubic-bezier(.2,.7,.3,1), height .38s cubic-bezier(.2,.7,.3,1);
}
.tm-dot img{
  width:100%;height:100%;border-radius:999px;object-fit:cover;display:block;
  filter:grayscale(1);opacity:.7;
  transition:filter .38s ease, opacity .38s ease;
}
.tm-dot[aria-selected="true"]{
  width:92px;height:92px;
  border:2px solid #175CD3;padding:5px;background:#fff;box-sizing:border-box;
}
.tm-dot[aria-selected="true"] img{filter:none;opacity:1}
.tm-dot:hover img{opacity:.9}
.tm-dot:focus-visible{outline:2px solid #175CD3;outline-offset:4px}

.tm-quote p{
  margin:0;max-width:1135px;
  font-size:clamp(20px,2.35vw,36px);line-height:1.33;
  font-weight:400;letter-spacing:-.02em;color:#333;
}
.tm-person .tm-name{
  margin:0;font-size:24px;font-weight:700;letter-spacing:-.02em;color:#0D0D0D;
}
.tm-person .tm-role{
  margin:8px 0 0;max-width:330px;
  font-size:18px;line-height:24px;color:#8C8C8C;
}
.tm-fade{transition:opacity .3s ease}
.tm-fade.is-out{opacity:0}

@media (max-width:1100px){
  .tm-head{padding-left:0}
  .tm-body{display:flex;flex-direction:column;margin-top:56px}
  .tm-rail{flex-direction:row;justify-content:flex-start;width:auto;margin-bottom:36px}
  .tm-content{display:flex;flex-direction:column;gap:32px}
}
@media (max-width:820px){
  .tm{padding:80px 0 90px}
  .tm-dot{width:48px;height:48px}
  .tm-dot[aria-selected="true"]{width:68px;height:68px;padding:4px}
  .tm-person .tm-role{max-width:none}
}


/* ================= IMPLEMENTATION STEPS =================
   Measured from Frame_2147224195.jpg (1:1 with the 1920 frame) */
.imp{position:relative;z-index:20;background:#F1F4FB;padding:120px 0 140px}
.imp-wrap{max-width:1648px;margin:0 auto;padding:0 24px}
.imp-head{text-align:center}
.imp-head h2{
  margin:26px 0 0;
  font-size:clamp(30px,3.4vw,48px);line-height:1.06;
  font-weight:700;letter-spacing:-.032em;color:#0D0D0D;
}

.imp-steps{
  position:relative;
  display:grid;grid-template-columns:repeat(3,1fr);gap:26px;
  margin-top:78px;
}
/* connector runs centre-to-centre and simply passes behind the discs */
.imp-steps::before{
  content:"";position:absolute;z-index:0;
  left:calc((100% - 52px) / 6);right:calc((100% - 52px) / 6);top:50%;
  height:4px;margin-top:-2px;
  background:#DCE9FB;
}
.imp-disc{
  position:relative;z-index:1;
  justify-self:center;
  width:100px;height:100px;border-radius:999px;
  background:#0D0D0D;color:#D1E9FF;
  display:grid;place-items:center;
}
.imp-ico{width:46px;height:46px;display:block}

.imp-cards{
  display:grid;grid-template-columns:repeat(3,1fr);gap:26px;
  margin-top:59px;
}
.imp-card{
  background:#fff;border-radius:28px;
  min-height:196px;
  padding:43px 32px 33px;
  text-align:center;
}
.imp-card h3{
  margin:0;font-size:clamp(22px,2.1vw,32px);line-height:1.2;
  font-weight:400;letter-spacing:-.022em;color:#0D0D0D;
}
.imp-card p{
  margin:21px auto 0;max-width:330px;
  font-size:17px;line-height:26px;color:#484848;
}


/* ================= PRICING =================
   Measured from Frame_2147224196.jpg (1:1 with the 1920 frame) */
.pr{position:relative;z-index:20;background:#fff;padding:70px 0 120px}
.pr-wrap{max-width:1648px;margin:0 auto;padding:0 24px}
.pr-head{text-align:center}
.pr-head h2{
  margin:26px auto 0;max-width:14ch;
  font-size:clamp(30px,3.4vw,48px);line-height:1.06;
  font-weight:700;letter-spacing:-.032em;color:#0D0D0D;
}

/* ---- monthly / yearly switch ---- */
.pr-toggle{
  display:flex;align-items:center;justify-content:center;gap:18px;
  width:340px;height:83px;margin:56px auto 0;
  background:#F4F5F7;border-radius:999px;
  position:relative;
}
.pr-toggle .pr-discount-badge{
  position:absolute;
  top:-22px;
  right:-26px;
  background:#1A1A1C;
  color:#FFFFFF !important;
  font-size:16px;
  font-weight:800;
  padding:8px 20px;
  border-radius:999px;
  transform:rotate(14deg);
  box-shadow:0 8px 22px rgba(0,0,0,0.22);
  white-space:nowrap;
  pointer-events:none;
  z-index:2;
}
.pr-toggle span{font-size:19px;font-weight:400;color:#0D0D0D;transition:color .25s ease}
.pr-toggle span.is-dim{color:#8C8C90}
.pr-switch{
  appearance:none;border:0;cursor:pointer;flex:0 0 auto;
  width:62px;height:34px;border-radius:999px;background:#1A1A1C;
  position:relative;padding:0;
}
.pr-switch::after{
  content:"";position:absolute;top:4px;left:4px;
  width:26px;height:26px;border-radius:999px;background:#fff;
  transition:transform .28s cubic-bezier(.2,.7,.3,1);
}
.pr-switch[aria-checked="true"]::after{transform:translateX(28px)}
.pr-switch:focus-visible{outline:2px solid #175CD3;outline-offset:3px}

/* ---- cards ---- */
/* ---- cards ---- */
.pr-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:24px;
  align-items:stretch;margin-top:58px;
}
.pr-card{
  background:#F4F5F7;border-radius:28px;padding:34px 28px;
  display:flex;flex-direction:column;
  border:1px solid transparent;
  transition:transform 0.35s cubic-bezier(0.2, 0.8, 0.25, 1), box-shadow 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
}
.pr-card:hover{
  transform:translateY(-8px);
  background:#FFFFFF;
  border-color:rgba(23,92,211,0.22);
  box-shadow:0 20px 40px -12px rgba(23,92,211,0.14), 0 6px 16px rgba(0,0,0,0.04);
}
.pr-card:hover .pr-amount{
  color:#175CD3;
  transition:color 0.3s ease;
}
.pr-card h3{
  margin:0;font-size:clamp(22px,2vw,28px);line-height:1.1;
  font-weight:600;letter-spacing:-.022em;color:#0D0D0D;
}
.pr-desc{margin:16px 0 0;max-width:290px;font-size:15px;line-height:22px;color:#464648;min-height:44px}
.pr-period{margin:12px 0 0;font-size:14px;line-height:1.2;color:#666;font-weight:500}
.pr-price{margin:28px 0 0;display:flex;align-items:center;justify-content:center;height:36px}
.pr-price .pr-amount{font-size:clamp(26px,2.4vw,32px);font-weight:800;color:#1A1A1C;letter-spacing:-.03em;line-height:1;text-align:center}

.pr-dual-price{
  margin:28px auto 0;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  gap:12px;
  width:100%;
  text-align:center;
}
.pr-dual-col{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  flex:1;
}
.pr-dual-col .pr-amount-row{
  display:flex;
  align-items:center;
  justify-content:center;
  height:36px;
  width:100%;
}
.pr-amount{
  display:inline-block;
  transition:transform 0.22s cubic-bezier(0.2,0.8,0.25,1), opacity 0.22s ease;
  will-change:transform, opacity;
}
.pr-amount.is-animating{
  opacity:0;
  transform:translateY(-10px) scale(0.92);
}
.pr-dual-col .pr-amount{
  font-size:clamp(24px,2.2vw,32px);
  font-weight:700;
  color:#1A1A1C;
  letter-spacing:-.03em;
  line-height:1;
  text-align:center;
}
.pr-dual-col .pr-unit{
  margin-top:6px;
  font-size:11.5px;
  font-weight:600;
  color:#555;
  line-height:1.25;
  white-space:nowrap;
  text-align:center;
}
.pr-dual-sep{
  font-size:22px;
  font-weight:700;
  color:#175CD3;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  padding:0 2px;
}

.pr-btn{
  width:100%;height:46px;margin-top:32px;
  padding:4px;justify-content:flex-start;position:relative;
}
.pr-btn .knob{width:52px;height:38px}
.pr-btn .pr-btn-label{position:absolute;left:0;right:0;text-align:center;pointer-events:none}

.pr-feats{list-style:none;margin:32px 0 0;padding:0;display:flex;flex-direction:column;gap:14px}
.pr-feats li{display:flex;align-items:center;gap:10px;font-size:15px;line-height:1.3}
.pr-check{width:22px;height:22px;flex:0 0 auto;display:block}
.pr-feats li.on{color:#1A1A1C}
.pr-feats li.off{color:#87868B}

/* ---- featured card ---- */
.pr-frame{
  border-radius:36px;padding:8px;
  background-image:url('../images/pricing-frame.jpg');
  background-size:cover;background-position:center;
  transition:transform 0.35s cubic-bezier(0.2, 0.8, 0.25, 1), box-shadow 0.35s ease;
}
.pr-frame:hover{
  transform:translateY(-10px) scale(1.015);
  box-shadow:0 24px 50px -10px rgba(23,92,211,0.28);
}
.pr-frame .pr-card{background:#fff;border-radius:28px;padding:32px 26px;border:1px solid rgba(23,92,211,0.15)}
.pr-frame:hover .pr-card{border-color:rgba(23,92,211,0.35);box-shadow:0 12px 30px -8px rgba(23,92,211,0.18)}

/* ---- Addons & Unit Pricing ---- */
.pr-addons-wrap{
  margin-top:64px;
  background:#fff;
  border-radius:28px;
  padding:44px 40px;
  box-shadow:0 12px 36px -12px rgba(20,25,50,0.06);
  border:1px solid #EAEAEF;
}
.pr-addons-head{text-align:center;margin-bottom:36px}
.pr-addons-head h3{
  margin:0;font-size:clamp(22px,2vw,28px);font-weight:700;letter-spacing:-.022em;color:#0D0D0D;
}
.pr-addons-head p{
  margin:10px auto 0;font-size:16px;color:#555;max-width:540px;
}

.pr-addons-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:20px;
}
.pr-addon-card{
  background:#F8FAFC;
  border:1px solid #E2E8F0;
  border-radius:22px;
  padding:22px 26px;
  display:grid;
  grid-template-columns:52px 1fr auto;
  gap:18px;
  align-items:center;
  transition:transform .25s ease, box-shadow .25s ease, background-color .25s ease, border-color .25s ease;
}
.pr-addon-card:hover{
  background:#fff;
  border-color:#C7D2FE;
  transform:translateY(-3px);
  box-shadow:0 14px 32px -10px rgba(23,92,211,0.15);
}
.pr-addon-card.pr-addon-featured{
  background:linear-gradient(135deg, #F0F4FF 0%, #F8FAFC 100%);
  border:1.5px solid #C7D2FE;
}
.pr-addon-icon{
  width:52px;height:52px;border-radius:14px;
  background:linear-gradient(135deg, #FFFFFF 0%, #EFF6FF 100%);
  display:grid;place-items:center;
  box-shadow:0 6px 16px -4px rgba(23,92,211,0.14);
  border:1px solid #DBE8FE;
  flex:0 0 auto;
}
.pr-addon-icon svg{width:32px;height:32px;display:block}
.pr-addon-info h4{
  margin:0;font-size:16px;font-weight:700;color:#0D0D0D;
  display:flex;align-items:center;gap:8px;
}
.pr-addon-info p{
  margin:4px 0 0;font-size:14px;color:#666;line-height:1.35;
}
.pr-addon-badge{
  font-size:10px;font-weight:700;letter-spacing:.05em;text-transform:uppercase;
  background:#175CD3;color:#fff;padding:2px 8px;border-radius:999px;
}
.pr-feat-badge{
  font-size:10px;font-weight:700;letter-spacing:.03em;text-transform:uppercase;
  background:#EFF6FF;color:#175CD3;border:1px solid #BFDBFE;
  padding:1px 6px;border-radius:6px;margin-left:4px;display:inline-block;vertical-align:middle;
}
.pr-addon-price{
  text-align:right;flex:0 0 auto;
}
.pr-addon-price .pr-amount{
  display:block;font-size:20px;font-weight:700;color:#175CD3;letter-spacing:-.02em;
}
.pr-addon-unit{
  display:block;font-size:12px;color:#777;margin-top:2px;font-weight:500;
}

@media (max-width:1200px){
  .pr-grid{grid-template-columns:repeat(2,1fr);gap:24px}
  .pr-addons-grid{grid-template-columns:1fr}
}
@media (max-width:768px){
  .pr{padding:40px 0 70px}
  .pr-grid{grid-template-columns:1fr;gap:20px;max-width:480px;margin-left:auto;margin-right:auto}
  .pr-card{padding:26px 20px}
  .pr-desc{min-height:0;margin-top:10px;font-size:14px}
  .pr-price{margin-top:20px}
  .pr-frame{border-radius:28px;padding:4px}
  .pr-frame .pr-card{padding:24px 20px}
  .pr-toggle{width:100%;max-width:320px;height:62px;margin-top:28px}
  .pr-toggle span{font-size:16px}
  .pr-addons-wrap{margin-top:40px;padding:24px 16px;border-radius:20px}
  .pr-addons-head{margin-bottom:24px}
  .pr-addons-head h3{font-size:20px}
  .pr-addons-head p{font-size:14px}
  .pr-addon-card{
    grid-template-columns:44px 1fr;
    text-align:left;
    justify-items:start;
    padding:18px 16px;
    gap:14px;
    border-radius:18px;
  }
  .pr-addon-icon{width:44px;height:44px;border-radius:12px}
  .pr-addon-icon svg{width:26px;height:26px}
  .pr-addon-info h4{font-size:15px}
  .pr-addon-info p{font-size:13px}
  .pr-addon-price{grid-column:2 / -1;text-align:left;margin-top:2px;display:flex;align-items:baseline;gap:6px}
  .pr-addon-price .pr-amount{font-size:18px;display:inline-block}
  .pr-addon-unit{display:inline-block;font-size:12px}
}


/* ================= CONTACT =================
   Measured from Frame_2147224197.jpg (1:1 with the 1920 frame) */
.ct{position:relative;z-index:20;background:#fff;padding:100px 0 120px}
.ct-wrap{max-width:1648px;margin:0 auto;padding:0 24px}
.ct-grid{display:grid;grid-template-columns:minmax(0,1fr) 923px;column-gap:60px;align-items:start}

.ct-left h2{
  margin:0;max-width:12ch;
  font-size:clamp(32px,3.4vw,48px);line-height:1.05;
  font-weight:700;letter-spacing:-.032em;color:#0D0D0D;
}
.ct-left > p{
  margin:30px 0 0;max-width:492px;
  font-size:17px;line-height:26px;color:#333;
}
.ct-rows{margin:72px 0 0;padding:0;list-style:none}
.ct-rows li{display:flex;align-items:flex-start;gap:24px;padding:6px 0}
.ct-ico{width:24px;height:24px;flex:0 0 auto;margin-top:3px;color:#333;display:block}
.ct-rows p{margin:0;font-size:18px;line-height:24px;color:#0D0D0D;min-width:0;overflow-wrap:anywhere}
.ct-rows a{color:inherit;text-decoration:none}
.ct-rows a:hover{text-decoration:underline}
.ct-sep{
  display:block;height:1px;width:322px;margin:28px 0;
  background:linear-gradient(90deg,#175CD3 0%,rgba(23,92,211,0) 100%);
}

/* ---- form card ---- */
.ct-card{background:#F4F5F7;border-radius:28px;padding:40px}
.ct-fields{display:grid;grid-template-columns:1fr 1fr;column-gap:34px;row-gap:26px}
.ct-field{display:flex;flex-direction:column}
.ct-field.is-wide{grid-column:1 / -1}
.ct-field label{
  font-size:18px;line-height:1.2;font-weight:400;color:#0D0D0D;margin-bottom:14px;
}
.ct-field input,
.ct-field select,
.ct-field textarea{
  font-family:inherit;font-size:18px;color:#0D0D0D;
  background:#fff;border:0;outline:none;width:100%;
  transition:box-shadow .2s ease;
}
.ct-field input,
.ct-field select{height:52px;border-radius:999px;padding:0 28px}
.ct-field textarea{
  height:118px;border-radius:24px;padding:18px 28px;resize:vertical;line-height:26px;
}
.ct-field input::placeholder,
.ct-field textarea::placeholder{color:#9A9AA0}
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus{box-shadow:0 0 0 2px #175CD3}
.ct-field.has-error input,
.ct-field.has-error select,
.ct-field.has-error textarea{box-shadow:0 0 0 2px #E5484D}
.ct-error-msg{color:#E5484D;font-size:14px;margin-top:8px;padding-left:28px}

.ct-select{position:relative}
.ct-select select{appearance:none;-webkit-appearance:none;cursor:pointer;padding-right:52px}
.ct-select svg{
  position:absolute;right:24px;bottom:18px;width:16px;height:16px;
  pointer-events:none;stroke:#0D0D0D;fill:none;
}

.ct-submit{
  width:100%;height:52px;margin-top:34px;
  padding:4px;justify-content:flex-start;position:relative;
}
.ct-submit .knob{width:60px;height:44px}
.ct-submit .ct-submit-label{position:absolute;left:0;right:0;text-align:center;pointer-events:none}
.ct-submit.is-submitting{
  animation:ctPulse 1.5s ease-in-out infinite;
  pointer-events:none;
  opacity:0.9;
}
.ct-submit.is-submitting .knob-ico-1{
  animation:ctSpin 1.2s linear infinite;
}
.ct-submit.is-submitting .knob-ico-2{
  display:none;
}
@keyframes ctSpin{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}
@keyframes ctPulse{
  0%{transform:scale(1)}
  50%{transform:scale(0.99)}
  100%{transform:scale(1)}
}

@media (max-width:1250px){
  .ct-grid{grid-template-columns:1fr;row-gap:48px}
  .ct-left h2{max-width:none}
  .ct-rows{margin-top:44px}
}
@media (max-width:820px){
  .ct{padding:70px 0 90px}
  .ct-card{padding:24px;border-radius:24px}
  .ct-fields{grid-template-columns:1fr;row-gap:20px}
  .ct-sep{width:100%;max-width:322px}
  .ct-rows li{gap:16px}
  .ct-rows p{font-size:16px}
}


/* ================= CTA =================
   Measured from Frame_2147224198.jpg (1:1 with the 1920 frame) */
.cta{position:relative;z-index:20;background:#fff;padding:40px 0 90px}
.cta-wrap{max-width:1648px;margin:0 auto;padding:0 24px}
.cta-card{
  position:relative;overflow:hidden;
  min-height:712px;border-radius:24px;background:#E9F2FD;
  display:grid;place-items:center;
  text-align:center;padding:80px 24px;
}
.cta-globe{
  position:absolute;left:50%;top:55px;
  width:720px;height:661px;
  transform:translateX(-50%);
  pointer-events:none;user-select:none;
}
.cta-inner{position:relative;z-index:1;max-width:700px}
.cta-inner h2{
  margin:0;
  font-size:clamp(34px,4.2vw,62px);line-height:1.08;
  font-weight:700;letter-spacing:-.034em;color:#0D0D0D;
}
.cta-inner p{
  margin:24px auto 0;max-width:570px;
  font-size:clamp(15px,1.15vw,18px);line-height:26px;color:#484848;
}
.cta-actions{display:flex;flex-wrap:wrap;justify-content:center;gap:20px;margin-top:36px}

@media (max-width:820px){
  .cta{padding:20px 0 70px}
  .cta-card{min-height:520px;padding:56px 20px;border-radius:20px}
  .cta-globe{width:520px;height:477px;top:40px}
}


/* ================= FOOTER =================
   Measured from Frame_2147224199.jpg (1:1 with the 1920 frame) */
.ft{position:relative;z-index:20;background:#fff;padding:80px 0 46px}
.ft-wrap{max-width:1648px;margin:0 auto;padding:0 24px}
.ft-grid{
  display:grid;grid-template-columns:2.745fr 1.286fr 1fr;
  align-items:stretch;
}
.ft-brand .logo-svg{height:38px;width:auto;display:block}
.ft-brand p{
  margin:31px 0 0;max-width:370px;
  font-size:17px;line-height:26px;color:#484848;
}
.ft-dev{
  margin:20px 0 0;
  font-size:15px;color:#484848;
}
.ft-dev a{
  color:#175CD3;text-decoration:none;font-weight:500;
}
.ft-dev a:hover{
  text-decoration:underline;
}
.ft-socials{display:flex;gap:10px;margin-top:30px}
.ft-soc{
  width:36px;height:36px;border-radius:999px;
  background:#fff;box-shadow:inset 0 0 0 1px #E0E0E0;
  display:grid;place-items:center;color:#0D0D0D;
  transition:box-shadow .2s ease, transform .2s ease;
}
.ft-soc:hover{box-shadow:inset 0 0 0 1px #0D0D0D;transform:translateY(-1px)}
.ft-soc:focus-visible{outline:2px solid #175CD3;outline-offset:3px}
.ft-soc-ico{width:18px;height:18px;display:block}

.ft-col{border-left:1px solid #EBEFF2;padding-left:131px}
.ft-col h3{
  margin:0;font-size:18px;line-height:1.2;font-weight:700;
  letter-spacing:-.01em;color:#1A1A1C;
}
.ft-col ul{list-style:none;margin:26px 0 0;padding:0;display:flex;flex-direction:column;gap:17px}
.ft-col a{
  font-size:17px;line-height:1.2;color:#1A1A1C;text-decoration:none;
  transition:color .18s ease;
}
.ft-col a:hover{color:#175CD3}
.ft-col a:focus-visible{outline:2px solid #175CD3;outline-offset:3px;border-radius:3px}

.ft-bottom{
  margin-top:61px;text-align:center;
  font-size:17px;line-height:1.2;color:#1A1A1C;
}

@media (max-width:1100px){
  .ft-grid{grid-template-columns:1fr 1fr;row-gap:48px}
  .ft-brand{grid-column:1 / -1}
  .ft-col{padding-left:32px}
  .ft-socials{margin-top:36px}
}
@media (max-width:600px){
  .ft{padding:56px 0 36px}
  .ft-grid{grid-template-columns:1fr;row-gap:36px}
  .ft-col{border-left:0;padding-left:0}
  .ft-bottom{margin-top:40px;font-size:15px}
}


/* ================= SCROLL REVEALS ================= */
.rv-on .rv{transition:opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1), filter .85s cubic-bezier(.16,1,.3,1);will-change:opacity,transform,filter}
/* drop the compositing hint once the element has landed */
.rv-on .rv.rv-done{filter:none;will-change:auto}
.rv-on .metrics .tag,
.rv-on .metrics-head h2,
.rv-on .metrics-head p,
.rv-on .stat,
.rv-on .rl-head .tag,
.rv-on .rl-head h2,
.rv-on .rl-head p,
.rv-on .rl-rail,
.rv-on .rl-card,
.rv-on .pf-head .tag,
.rv-on .pf-head h2,
.rv-on .pf-head p,
.rv-on .pf-rail,
.rv-on .st-head .tag,
.rv-on .st-head h2,
.rv-on .st-head p,
.rv-on .st-card,
.rv-on .tm-head .tag,
.rv-on .tm-head h2,
.rv-on .tm-rail,
.rv-on .tm-quote,
.rv-on .tm-person,
.rv-on .imp-head .tag,
.rv-on .imp-head h2,
.rv-on .imp-card,
.rv-on .pr-head .tag,
.rv-on .pr-head h2,
.rv-on .pr-grid > *,
.rv-on .ct-left h2,
.rv-on .ct-left > p,
.rv-on .ct-rows,
.rv-on .ct-card,
.rv-on .cta-card,
.rv-on .ft-brand,
.rv-on .ft-col{opacity:0;transform:translateY(22px);filter:blur(10px)}
.rv-on .metrics .tag.rv-in,
.rv-on .metrics-head h2.rv-in,
.rv-on .metrics-head p.rv-in,
.rv-on .stat.rv-in,
.rv-on .rl-head .tag.rv-in,
.rv-on .rl-head h2.rv-in,
.rv-on .rl-head p.rv-in,
.rv-on .rl-rail.rv-in,
.rv-on .rl-card.rv-in,
.rv-on .pf-head .tag.rv-in,
.rv-on .pf-head h2.rv-in,
.rv-on .pf-head p.rv-in,
.rv-on .pf-rail.rv-in,
.rv-on .st-head .tag.rv-in,
.rv-on .st-head h2.rv-in,
.rv-on .st-head p.rv-in,
.rv-on .st-card.rv-in,
.rv-on .tm-head .tag.rv-in,
.rv-on .tm-head h2.rv-in,
.rv-on .tm-rail.rv-in,
.rv-on .tm-quote.rv-in,
.rv-on .tm-person.rv-in,
.rv-on .imp-head .tag.rv-in,
.rv-on .imp-head h2.rv-in,
.rv-on .imp-card.rv-in,
.rv-on .pr-head .tag.rv-in,
.rv-on .pr-head h2.rv-in,
.rv-on .pr-grid > *.rv-in,
.rv-on .ct-left h2.rv-in,
.rv-on .ct-left > p.rv-in,
.rv-on .ct-rows.rv-in,
.rv-on .ct-card.rv-in,
.rv-on .cta-card.rv-in,
.rv-on .ft-brand.rv-in,
.rv-on .ft-col.rv-in{opacity:1;transform:none;filter:blur(0)}
.rv-on .stat-rule{transform:scaleX(0);transform-origin:left center}
.rv-on .stat-rule.rv-in{transform:scaleX(1)}
.rv-on .pf-bar,
.rv-on .ft-bottom{opacity:0;filter:blur(8px)}
.rv-on .pf-bar.rv-in,
.rv-on .ft-bottom.rv-in{opacity:1;filter:blur(0)}
.rv-on .st-tabs,
.rv-on .imp-disc,
.rv-on .pr-toggle{opacity:0;transform:scale(.94);filter:blur(9px)}
.rv-on .st-tabs.rv-in,
.rv-on .imp-disc.rv-in,
.rv-on .pr-toggle.rv-in{opacity:1;transform:none;filter:blur(0)}
.rv-on .cta-globe{opacity:0;transform:translateX(-50%) scale(1.06);filter:blur(14px)}
.rv-on .cta-globe.rv-in{opacity:1;transform:translateX(-50%) scale(1);filter:blur(0)}
/* the implementation connector draws itself in */
.rv-on .imp-steps::before{transform:scaleX(0);transform-origin:left center;transition:transform 1.1s cubic-bezier(.16,1,.3,1) .25s}
.rv-on .imp-steps.rv-in::before{transform:scaleX(1)}
.rv-on .cta-globe{transition:opacity 1.2s ease, transform 1.6s cubic-bezier(.16,1,.3,1)}
@media (prefers-reduced-motion:reduce){
  .rv-on .rv{transition:none!important}
  .rv-on .rv{opacity:1!important;transform:none!important;filter:none!important}
  .rv-on .cta-globe{opacity:1!important;transform:translateX(-50%)!important;filter:none!important}
  .rv-on .imp-steps::before{transform:scaleX(1)!important}
}

@media (max-width:900px){
  .imp{padding:80px 0 90px}
  .imp-steps{grid-template-columns:repeat(3,1fr);margin-top:48px}
  .imp-disc{width:72px;height:72px}
  .imp-ico{width:34px;height:34px}
  .imp-cards{grid-template-columns:1fr;gap:16px;margin-top:32px}
  .imp-card{min-height:0;padding:28px 24px}
  /* stacked cards no longer pair up with the row of discs */
  .imp-steps::before{left:calc((100% - 32px) / 6);right:calc((100% - 32px) / 6)}
  .imp-steps{gap:16px}
}

@media (max-width:900px){
  :root{--cell:66.667px;--beam-len:466.667px}
  .nav-links{display:none}
  .nav .btn-dark{display:none}
  .nav-toggle{display:grid}
  .nav{padding:0 8px 0 16px;justify-content:space-between}
  .nav-panel{
    display:block;max-width:1120px;margin:10px auto 0;
    background:rgba(255,255,255,.97);backdrop-filter:blur(14px);
    border:1px solid rgba(18,16,45,.06);border-radius:24px;
    box-shadow:0 18px 40px -22px rgba(20,16,50,.4);
    overflow:hidden;max-height:0;opacity:0;pointer-events:none;
    transition:max-height .32s ease, opacity .22s ease;
  }
  .nav-panel.is-open{max-height:520px;opacity:1;pointer-events:auto}
  .nav-panel ul{list-style:none;margin:0;padding:12px 12px 6px}
  .nav-panel ul a{
    display:block;padding:13px 16px;border-radius:14px;
    font-size:16px;font-weight:500;color:#2A2A33;text-decoration:none;
  }
  .nav-panel ul a[aria-current="true"]{background:#F1F4FB;color:#000}
  .nav-panel .btn{
    display:inline-flex!important;
    align-items:center;
    justify-content:center;
    width:calc(100% - 24px);
    margin:6px 12px 16px;
    height:50px;
    padding:4px 20px 4px 4px;
    font-size:16px;
    font-weight:600;
    border-radius:999px;
    box-sizing:border-box;
  }
  .hero{padding-top:44px}
  .next-peek-inner{grid-template-columns:1fr}
  .hero-fade{height:200px;margin-top:-200px}
  .btn{height:46px;font-size:15px;gap:12px;padding-right:18px}
  .btn .knob{width:52px;height:38px}
}
@media (prefers-reduced-motion:reduce){
  .rise{animation:none;opacity:1;transform:none}
  .beam{display:none}
  .cell{opacity:.5!important}
}
