:root{
  --ink:#061126;
  --ink-2:#0c1d3d;
  --navy:#071a42;
  --blue:#1268ff;
  --blue-2:#0b54e7;
  --cyan:#13b8ff;
  --paper:#f5f9ff;
  --paper-2:#eef5ff;
  --white:#ffffff;
  --muted:#66748d;
  --muted-2:#8290a7;
  --line:rgba(8,39,92,.12);
  --line-strong:rgba(12,76,181,.20);
  --glass:rgba(255,255,255,.78);
  --shadow:0 24px 70px rgba(18,61,132,.10);
  --shadow-hover:0 34px 90px rgba(18,61,132,.16);
  --radius-xl:30px;
  --radius-lg:24px;
  --radius-md:18px;
  --shell:1180px;
  --header-offset:112px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:116px}
body{
  margin:0;
  min-width:320px;
  overflow-x:hidden;
  color:var(--ink);
  background:
    radial-gradient(circle at 92% 10%,rgba(25,162,255,.07),transparent 28%),
    radial-gradient(circle at 6% 50%,rgba(18,104,255,.05),transparent 26%),
    linear-gradient(180deg,#fbfdff 0%,#f6f9ff 48%,#fff 100%);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
body::selection{background:#176fff;color:#fff}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button,input,textarea{font:inherit}
button,a{-webkit-tap-highlight-color:transparent}
.shell{width:min(var(--shell),calc(100% - 44px));margin-inline:auto}
.narrow{max-width:900px}
main{position:relative}

/* Ambient pointer interaction */
.page-pointer-glow{
  position:fixed;
  left:0;top:0;
  width:540px;height:540px;
  border-radius:50%;
  pointer-events:none;
  z-index:0;
  opacity:0;
  background:radial-gradient(circle,rgba(28,144,255,.12),rgba(18,103,255,.04) 38%,transparent 68%);
  filter:blur(20px);
  transform:translate3d(-50%,-50%,0);
  transition:opacity .3s ease;
}
.cursor-lens{
  position:fixed;
  left:0;top:0;
  width:42px;height:42px;
  pointer-events:none;
  z-index:180;
  border:1px solid rgba(17,104,255,.25);
  border-radius:50%;
  background:rgba(255,255,255,.08);
  backdrop-filter:none;
  opacity:0;
  transform:translate3d(-50%,-50%,0);
  box-shadow:0 0 0 8px rgba(19,125,255,.035),inset 0 0 22px rgba(23,132,255,.08);
}
body.pointer-active.pointer-visible .page-pointer-glow,
body.pointer-active.pointer-visible .cursor-lens{opacity:1}

/* Header */
.site-header{
  position:fixed;
  z-index:150;
  top:0;left:0;right:0;
  padding:14px 0;
  transition:padding .28s ease,background .28s ease,border-color .28s ease;
}
.site-header.scrolled{
  padding:7px 0;
  background:rgba(248,251,255,.82);
  backdrop-filter:blur(18px) saturate(1.1);
  border-bottom:1px solid rgba(8,44,101,.07);
}
.nav-shell{
  min-height:76px;
  display:flex;
  align-items:center;
  gap:26px;
  padding:9px 12px 9px 16px;
  border:1px solid rgba(11,66,156,.13);
  border-radius:22px;
  background:rgba(255,255,255,.82);
  box-shadow:0 15px 46px rgba(18,64,137,.08);
  backdrop-filter:blur(18px);
}
.brand-lockup{
  width:195px;
  flex:0 0 auto;
  display:flex;
  flex-direction:column;
  gap:2px;
  align-items:stretch;
}
.brand-lockup img{width:100%;height:auto}
.brand-lockup small{
  display:block;
  text-align:center;
  color:#1767e6;
  font-size:7.8px;
  font-weight:760;
  letter-spacing:.055em;
  white-space:nowrap;
}
.desktop-nav{margin-left:auto;display:flex;align-items:center;gap:27px}
.desktop-nav a{
  position:relative;
  color:#43526d;
  font-size:13px;
  font-weight:700;
  transition:color .2s ease;
}
.desktop-nav a::after{
  content:"";
  position:absolute;
  left:0;right:100%;bottom:-8px;
  height:2px;
  border-radius:2px;
  background:linear-gradient(90deg,var(--blue),var(--cyan));
  transition:right .25s ease;
}
.desktop-nav a:hover,.desktop-nav a.active{color:var(--ink)}
.desktop-nav a:hover::after,.desktop-nav a.active::after{right:0}
.menu-toggle{display:none;width:46px;height:46px;border:0;background:transparent;position:relative;cursor:pointer}
.menu-toggle span{position:absolute;left:11px;right:11px;height:2px;background:var(--ink);border-radius:2px;transition:.25s}
.menu-toggle span:first-child{top:18px}.menu-toggle span:last-child{top:27px}
.menu-toggle[aria-expanded="true"] span:first-child{transform:translateY(4.5px) rotate(45deg)}
.menu-toggle[aria-expanded="true"] span:last-child{transform:translateY(-4.5px) rotate(-45deg)}
.mobile-panel{display:none}

/* Buttons */
.button{
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  border:0;
  border-radius:14px;
  padding:13px 19px;
  color:#fff;
  background:linear-gradient(135deg,#176fff,#0e54e9 62%,#10b8ff);
  font-size:13px;
  font-weight:800;
  letter-spacing:-.01em;
  box-shadow:0 14px 34px rgba(18,91,235,.23);
  transition:transform .22s ease,box-shadow .22s ease,filter .22s ease;
  cursor:pointer;
}
.button:hover{transform:translateY(-2px);box-shadow:0 18px 43px rgba(18,91,235,.31);filter:saturate(1.08)}
.button-small{min-height:42px;padding:10px 15px;border-radius:12px;font-size:12px}
.button-light{background:#fff;color:#0b2d67;box-shadow:0 14px 35px rgba(0,0,0,.16)}
.button-light:hover{box-shadow:0 20px 45px rgba(0,0,0,.2)}
.text-link{display:inline-flex;align-items:center;gap:9px;color:#173f82;font-size:13px;font-weight:800}
.text-link span{transition:transform .22s ease}.text-link:hover span{transform:translateX(4px)}

/* Shared type */
.eyebrow{display:inline-flex;align-items:center;gap:10px;color:#3e64a3;font-size:10px;font-weight:850;letter-spacing:.15em;text-transform:uppercase}
.eyebrow>span{width:26px;height:2px;border-radius:2px;background:linear-gradient(90deg,var(--blue),var(--cyan))}
.eyebrow.light{color:#cbdcf9}.eyebrow.light>span{background:linear-gradient(90deg,#fff,#51d6ff)}
.section{position:relative;padding:68px 0}
.section-label{color:#5571a5;font-size:10px;font-weight:850;letter-spacing:.15em;text-transform:uppercase}
.section-heading{display:grid;grid-template-columns:minmax(0,1fr) minmax(260px,.48fr);align-items:end;gap:54px;margin-bottom:38px}
.section-heading.compact{margin-bottom:30px}
.section-heading h2,.intro-statement h2,.vision-copy h2,.requirement-copy h2,.split-story h2,.technology-band h2{
  margin:16px 0 0;
  font-size:clamp(36px,4.8vw,66px);
  line-height:1.02;
  letter-spacing:-.052em;
  font-weight:800;
}
.section-heading>p{margin:0;color:var(--muted);font-size:15px;line-height:1.72}

/* Reactive surfaces */
[data-reactive]{--rx:50%;--ry:50%;position:relative;isolation:isolate}
[data-reactive]::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  border-radius:inherit;
  background:radial-gradient(380px circle at var(--rx) var(--ry),rgba(35,155,255,.13),transparent 48%);
  opacity:0;
  transition:opacity .28s ease;
}
[data-reactive]:hover::before{opacity:1}
[data-reactive]>*{position:relative;z-index:1}

/* Hero */
.hero{
  position:relative;
  min-height:min(740px,92svh);
  padding:112px 0 46px;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.hero[data-reactive]::before{
  border-radius:0;
  background:radial-gradient(700px circle at var(--rx) var(--ry),rgba(19,136,255,.12),transparent 58%);
  opacity:.85;
}
.hero-webgl{position:absolute;inset:0;width:100%;height:100%;pointer-events:none;opacity:.86;z-index:0}
.hero-grid-overlay{
  position:absolute;inset:0;z-index:1;pointer-events:none;
  background-image:linear-gradient(rgba(20,86,191,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(20,86,191,.045) 1px,transparent 1px);
  background-size:58px 58px;
  mask-image:linear-gradient(to bottom,#000 0%,rgba(0,0,0,.85) 55%,transparent 93%);
}
.hero-layout{position:relative;z-index:3;display:grid;grid-template-columns:minmax(0,1.06fr) minmax(430px,.94fr);gap:36px;align-items:center}
.hero-copy{max-width:690px}
.hero h1{
  margin:21px 0 21px;
  max-width:700px;
  font-size:clamp(58px,6.7vw,94px);
  line-height:.92;
  letter-spacing:-.068em;
  font-weight:850;
  background:linear-gradient(116deg,#061126 8%,#0a2252 50%,#0b58d8 78%,#16b1f6);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.hero-lead{max-width:670px;margin:0;color:#56647d;font-size:clamp(17px,1.55vw,21px);line-height:1.64}
.hero-actions{display:flex;align-items:center;gap:23px;margin-top:29px}
.hero-proof{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:40px;max-width:665px}
.hero-proof>div{position:relative;padding:13px 12px 0 0;border-top:1px solid rgba(9,50,110,.14)}
.hero-proof>div::after{content:"";position:absolute;top:-1px;left:0;width:34px;height:2px;background:linear-gradient(90deg,var(--blue),var(--cyan));transition:width .3s ease}
.hero-proof>div:hover::after{width:70%}
.hero-proof strong{display:block;margin-bottom:4px;font-size:12px}
.hero-proof span{display:block;color:#7a879d;font-size:10.5px;line-height:1.45}
.hero-visual{height:460px;position:relative;display:grid;place-items:center;perspective:1200px;transform-style:preserve-3d}
.logo-prism{width:min(400px,82%);aspect-ratio:1;position:relative;display:grid;place-items:center;transform-style:preserve-3d;will-change:transform}
.logo-pulse{width:86%;height:86%;display:grid;place-items:center;transform-style:preserve-3d;animation:brandPulse 4.1s cubic-bezier(.4,0,.2,1) infinite}
.logo-pulse img{width:92%;filter:drop-shadow(0 36px 48px rgba(3,48,136,.23));transform:translateZ(72px)}
.logo-halo{position:absolute;width:67%;height:67%;border-radius:50%;background:radial-gradient(circle,rgba(86,211,255,.82) 0%,rgba(30,111,255,.38) 42%,transparent 70%);filter:blur(42px);opacity:.38;transform:translateZ(-90px)}
.pulse-ring{position:absolute;border-radius:50%;border:1px solid rgba(18,112,255,.2);animation:ringPulse 4.1s ease-out infinite}
.pulse-ring-a{inset:12%}.pulse-ring-b{inset:3%;animation-delay:.55s;border-color:rgba(20,185,255,.15)}
.orbit{position:absolute;border:1px solid rgba(17,106,255,.15);border-radius:50%;transform-style:preserve-3d;animation:orbit 18s linear infinite}
.orbit-one{inset:8%}.orbit-two{inset:19%;transform:rotateX(66deg) rotateY(12deg);animation-duration:13s;animation-direction:reverse}.orbit-three{inset:1%;border-style:dashed;transform:rotateY(68deg) rotateZ(24deg);animation-duration:24s}
.floating-chip{position:absolute;display:flex;align-items:center;gap:9px;padding:11px 14px;border:1px solid rgba(20,91,202,.15);border-radius:15px;background:rgba(255,255,255,.72);backdrop-filter:blur(16px);box-shadow:0 16px 45px rgba(14,57,128,.10);transition:box-shadow .22s ease,border-color .22s ease,background .22s ease;transform-style:preserve-3d}
.floating-chip:hover{background:rgba(255,255,255,.9);border-color:rgba(17,104,255,.25);box-shadow:0 22px 55px rgba(15,69,152,.15)}
.floating-chip span{display:grid;place-items:center;width:30px;height:30px;border-radius:9px;color:#fff;background:linear-gradient(135deg,#0d58e8,#10bbff);font-size:9px;font-weight:900}
.floating-chip b{font-size:11px}.chip-a{right:0;top:20%;animation:floatA 3.2s ease-in-out infinite alternate}.chip-b{left:1%;bottom:22%;animation:floatB 3.7s ease-in-out infinite alternate}.chip-c{right:6%;bottom:11%;animation:floatC 3.4s ease-in-out infinite alternate}
.scroll-cue{position:absolute;left:50%;bottom:18px;z-index:4;display:flex;align-items:center;gap:10px;transform:translateX(-50%);color:#7b899f;font-size:9px;font-weight:750;letter-spacing:.14em;text-transform:uppercase}
.scroll-cue i{width:1px;height:27px;background:linear-gradient(var(--blue),transparent);animation:scrollCue 1.8s ease-in-out infinite}

/* Intro */
.intro-band{padding-top:38px;padding-bottom:60px}
.intro-grid{display:grid;grid-template-columns:.25fr 1fr;gap:68px;align-items:start}
.intro-statement h2{margin:0}
.intro-statement h2 em{font-style:normal;background:linear-gradient(90deg,#135ce8,#11b8ff);-webkit-background-clip:text;background-clip:text;color:transparent}
.intro-statement p{max-width:790px;margin:24px 0 0;color:#64718a;font-size:17px;line-height:1.72}

/* Product cards */
.products-section{padding-top:62px}
.product-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:17px}
.product-card{
  position:relative;
  min-height:260px;
  padding:23px;
  overflow:hidden;
  border:1px solid rgba(15,80,181,.12);
  border-radius:var(--radius-lg);
  background:linear-gradient(150deg,rgba(255,255,255,.98),rgba(239,246,255,.88));
  box-shadow:0 18px 55px rgba(20,64,137,.07);
  transform-style:preserve-3d;
  transition:box-shadow .28s ease,border-color .28s ease,transform .28s ease;
}
.product-card:hover{border-color:rgba(18,103,255,.25);box-shadow:var(--shadow-hover)}
.product-card::after{content:"";position:absolute;inset:0;pointer-events:none;background:linear-gradient(118deg,transparent 15%,rgba(255,255,255,.62) 48%,transparent 62%);transform:translateX(-145%);transition:transform .72s ease}.product-card:hover::after{transform:translateX(145%)}
.card-shine{position:absolute;width:180px;height:180px;border-radius:50%;background:radial-gradient(circle,rgba(26,164,255,.20),transparent 68%);right:-78px;top:-76px;pointer-events:none}
.product-icon{position:relative;width:52px;height:52px;margin-bottom:22px;border-radius:16px;background:linear-gradient(145deg,#071b42,#1268ff);box-shadow:inset 0 1px 1px rgba(255,255,255,.32),0 13px 28px rgba(19,92,219,.22);overflow:hidden;transform:translateZ(24px)}
.product-icon::before,.product-icon::after,.product-icon span,.product-icon i{content:"";position:absolute;display:block;border-color:#fff;opacity:.95}
.product-icon::before{left:14px;right:14px;top:16px;height:2px;background:#fff;border-radius:3px;box-shadow:0 8px 0 rgba(255,255,255,.85),0 16px 0 rgba(255,255,255,.65)}
.product-icon-helpdesk::after{width:17px;height:17px;left:18px;top:13px;border:2px solid #fff;border-bottom-color:transparent;border-radius:50%}
.product-icon-helpdesk::before{display:none}.product-icon-helpdesk span{width:3px;height:11px;background:#fff;left:13px;top:23px;border-radius:3px}.product-icon-helpdesk i{width:3px;height:11px;background:#fff;right:13px;top:23px;border-radius:3px}
.product-icon-cms::before{left:11px;right:11px;top:12px;height:29px;border:2px solid #fff;background:transparent;box-shadow:none;border-radius:4px}.product-icon-cms::after{left:12px;right:12px;top:20px;height:2px;background:#fff}.product-icon-cms span{left:16px;top:15px;width:3px;height:3px;background:#fff;border-radius:50%}
.product-icon-shareholder::before{width:11px;height:11px;border:2px solid #fff;background:transparent;left:11px;top:11px;border-radius:50%;box-shadow:none}.product-icon-shareholder::after{width:11px;height:11px;border:2px solid #fff;right:11px;top:11px;border-radius:50%}.product-icon-shareholder span{left:9px;bottom:10px;width:16px;height:9px;border:2px solid #fff;border-radius:10px 10px 4px 4px}.product-icon-shareholder i{right:9px;bottom:10px;width:16px;height:9px;border:2px solid #fff;border-radius:10px 10px 4px 4px}
.product-icon-hrms::before{left:13px;right:13px;top:18px;height:20px;border:2px solid #fff;background:transparent;box-shadow:none;border-radius:3px}.product-icon-hrms::after{left:19px;right:19px;top:12px;height:8px;border:2px solid #fff;border-bottom:0;border-radius:4px 4px 0 0}.product-icon-hrms span{left:20px;right:20px;top:26px;height:2px;background:#fff}
.product-icon-custom-apps::before{left:14px;top:16px;width:9px;height:16px;border-left:2px solid #fff;border-bottom:2px solid #fff;transform:rotate(45deg);background:transparent;box-shadow:none}.product-icon-custom-apps::after{right:14px;top:16px;width:9px;height:16px;border-right:2px solid #fff;border-top:2px solid #fff;transform:rotate(45deg)}
.product-icon-automation::before{left:25px;top:10px;width:3px;height:34px;background:#fff;border-radius:3px;transform:rotate(27deg);box-shadow:none}.product-icon-automation::after{left:12px;top:25px;width:30px;height:3px;background:#fff;border-radius:3px;transform:rotate(-24deg)}
.product-kicker{color:#4c6da8;font-size:9.5px;font-weight:850;letter-spacing:.14em;text-transform:uppercase}
.product-card h3{margin:9px 0 11px;font-size:23px;line-height:1.15;letter-spacing:-.035em;font-weight:790}
.product-card p{margin:0 0 30px;color:#68758c;font-size:13px;line-height:1.67}
.product-card>a{position:absolute;left:23px;bottom:20px;color:#1d59c1;font-size:11px;font-weight:850}

/* Process */
.process-section{background:linear-gradient(180deg,transparent,rgba(232,241,255,.62),transparent)}
.process-rail{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));border-top:1px solid rgba(8,49,112,.15)}
.process-step{position:relative;min-height:150px;padding:25px 18px 12px 0;border-right:1px solid rgba(8,49,112,.09)}
.process-step+.process-step{padding-left:17px}
.process-dot{display:block;width:8px;height:8px;border-radius:50%;background:linear-gradient(135deg,var(--blue),var(--cyan));box-shadow:0 0 0 6px rgba(18,104,255,.07)}
.process-step h3{margin:24px 0 8px;font-size:16px;letter-spacing:-.02em}
.process-step p{margin:0;color:#738099;font-size:11.5px;line-height:1.57}

/* Support cards */
.partnership-section{background:linear-gradient(180deg,rgba(247,250,255,.25),rgba(233,243,255,.74),rgba(250,252,255,.35))}
.support-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:17px}
.support-card{position:relative;min-height:205px;padding:25px;border:1px solid rgba(15,83,190,.12);border-radius:26px;background:linear-gradient(150deg,rgba(255,255,255,.98),rgba(239,246,255,.88));box-shadow:0 18px 55px rgba(20,65,138,.07);overflow:hidden;transform-style:preserve-3d}
.support-card::after{content:"";position:absolute;inset:0;background:linear-gradient(120deg,transparent 14%,rgba(255,255,255,.55) 48%,transparent 62%);transform:translateX(-140%);transition:transform .7s ease;pointer-events:none}.support-card:hover::after{transform:translateX(140%)}
.support-symbol{width:44px;height:44px;display:grid;place-items:center;border-radius:14px;color:#fff;background:linear-gradient(145deg,#071a42,#1268ff);font-size:18px;font-weight:800;box-shadow:0 12px 30px rgba(18,104,255,.22)}
.support-card h3{margin:29px 0 12px;font-size:25px;line-height:1.12;letter-spacing:-.035em}
.support-card p{margin:0;color:#68758d;font-size:13px;line-height:1.7}

/* Vision */
.vision-shell{display:grid;grid-template-columns:.82fr 1.18fr;gap:72px;align-items:center}
.vision-graphic{height:445px;position:relative;overflow:hidden;border:1px solid rgba(12,77,184,.13);border-radius:32px;background:radial-gradient(circle at center,rgba(25,118,255,.15),transparent 36%),linear-gradient(145deg,rgba(255,255,255,.88),rgba(232,242,255,.85));box-shadow:0 25px 75px rgba(18,65,138,.08);transform-style:preserve-3d}
.vision-graphic::after{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(20,94,207,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(20,94,207,.04) 1px,transparent 1px);background-size:40px 40px;mask-image:radial-gradient(circle at center,#000,transparent 72%)}
.vision-core{position:absolute;left:50%;top:50%;width:176px;height:176px;display:grid;place-items:center;transform:translate(-50%,-50%);border-radius:50%;background:rgba(255,255,255,.72);box-shadow:0 20px 70px rgba(16,80,183,.13);z-index:2}
.vision-pulse{width:78%;animation:brandPulse 4.3s ease-in-out infinite}.vision-pulse img{width:100%;filter:drop-shadow(0 18px 24px rgba(8,61,160,.18))}
.node{position:absolute;z-index:3;padding:9px 12px;border-radius:999px;border:1px solid rgba(14,83,188,.13);background:rgba(255,255,255,.86);box-shadow:0 10px 28px rgba(18,70,150,.08);color:#35578f;font-size:10px;font-weight:800}
.n1{left:12%;top:18%}.n2{right:11%;top:24%}.n3{left:14%;bottom:18%}.n4{right:9%;bottom:14%}
.vision-line{position:absolute;z-index:1;left:25%;top:50%;width:50%;height:1px;background:linear-gradient(90deg,transparent,rgba(18,104,255,.28),transparent);transform-origin:center}.l1{transform:rotate(28deg)}.l2{transform:rotate(-32deg)}
.vision-copy p{max-width:620px;color:#63718a;font-size:16px;line-height:1.76}
.value-pills{display:flex;flex-wrap:wrap;gap:8px;margin:24px 0 28px}.value-pills span{padding:9px 11px;border-radius:999px;background:#eff6ff;border:1px solid rgba(19,92,205,.1);color:#395780;font-size:10px;font-weight:700}

/* Requirement CTA */
.requirement-section{padding-top:72px;padding-bottom:94px}
.requirement-panel{display:grid;grid-template-columns:1fr .92fr;gap:54px;align-items:center;padding:45px;border-radius:32px;color:#fff;overflow:hidden;background:radial-gradient(circle at var(--rx,82%) var(--ry,18%),rgba(31,169,255,.24),transparent 28%),linear-gradient(135deg,#061127,#0a2a68 73%,#0a4ba6);box-shadow:0 30px 90px rgba(7,42,107,.23)}
.requirement-panel::after{content:"";position:absolute;width:260px;height:260px;right:-95px;bottom:-130px;border-radius:50%;border:1px solid rgba(255,255,255,.12);box-shadow:0 0 0 35px rgba(255,255,255,.035),0 0 0 75px rgba(255,255,255,.025)}
.requirement-copy h2{color:#fff;margin-top:15px}.requirement-copy p{margin:17px 0 0;max-width:560px;color:#cbd9f2;font-size:14px;line-height:1.72}
.quick-requirement{position:relative;z-index:2;padding:18px;border:1px solid rgba(255,255,255,.11);border-radius:20px;background:rgba(255,255,255,.075);box-shadow:inset 0 1px rgba(255,255,255,.08),0 18px 48px rgba(0,0,0,.12)}
.quick-requirement label{display:block;margin:0 0 8px;color:#d7e5fb;font-size:10px;font-weight:800;letter-spacing:.1em;text-transform:uppercase}
.quick-requirement textarea{width:100%;min-height:106px;resize:vertical;border:1px solid rgba(255,255,255,.12);border-radius:14px;padding:13px;background:rgba(255,255,255,.095);color:#fff;outline:none;font-size:12.5px;line-height:1.55}.quick-requirement textarea::placeholder{color:#9fb4d8}.quick-requirement textarea:focus{border-color:rgba(91,206,255,.55);box-shadow:0 0 0 3px rgba(51,176,255,.1)}.quick-requirement .button{margin-top:12px}

/* Page heroes */
.page-hero{position:relative;min-height:445px;padding:138px 0 60px;display:flex;align-items:center;overflow:hidden;background:linear-gradient(180deg,rgba(235,244,255,.42),rgba(255,255,255,.05))}
.page-hero::after{content:"";position:absolute;inset:0;pointer-events:none;background-image:linear-gradient(rgba(20,91,202,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(20,91,202,.04) 1px,transparent 1px);background-size:56px 56px;mask-image:linear-gradient(#000,transparent 95%)}
.page-hero[data-reactive]::before{border-radius:0;background:radial-gradient(580px circle at var(--rx) var(--ry),rgba(25,151,255,.14),transparent 57%);opacity:.9}
.page-hero .shell{position:relative;z-index:2}
.page-hero h1{margin:19px 0 19px;font-size:clamp(48px,6.15vw,82px);line-height:.96;letter-spacing:-.06em;font-weight:830}
.page-hero p{max-width:780px;margin:0;color:#5c6981;font-size:clamp(17px,1.5vw,20px);line-height:1.65}
.page-hero .button{margin-top:26px}

/* About */
.story-section{padding-top:80px}
.split-story{display:grid;grid-template-columns:.72fr 1.28fr;gap:90px;align-items:start}
.sticky-copy{position:sticky;top:140px}.sticky-copy h2{margin-top:18px;font-size:clamp(39px,4.5vw,62px)}
.story-copy{max-width:690px}.story-copy p{margin:0 0 20px;color:#63718a;font-size:15px;line-height:1.82}.story-copy .lead-copy{color:#1d2e4f;font-size:19px;line-height:1.68;font-weight:550}
.principles{background:linear-gradient(180deg,transparent,rgba(237,245,255,.65),transparent)}
.principle-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:17px}
.principle-card{position:relative;min-height:270px;padding:28px;border:1px solid rgba(15,83,190,.12);border-radius:26px;background:rgba(255,255,255,.88);box-shadow:0 18px 55px rgba(21,66,139,.07);overflow:hidden;transform-style:preserve-3d}
.principle-icon{width:42px;height:42px;display:grid;place-items:center;border-radius:13px;background:linear-gradient(145deg,#071a42,#1268ff);color:#fff;font-size:17px;margin-bottom:30px}
.principle-card>span{color:#5270a8;font-size:9px;font-weight:850;letter-spacing:.15em;text-transform:uppercase}
.principle-card h3{margin:12px 0 13px;font-size:23px;line-height:1.22;letter-spacing:-.035em}.principle-card p{margin:0;color:#69758c;font-size:13px;line-height:1.72}
.partnership-band{padding-top:72px}
.partnership-panel{display:grid;grid-template-columns:1fr .9fr;gap:70px;align-items:center;padding:48px;border-radius:32px;color:#fff;overflow:hidden;background:radial-gradient(circle at 85% 18%,rgba(29,156,255,.28),transparent 28%),linear-gradient(135deg,#061126,#0a2865 72%,#0a4ba7);box-shadow:0 30px 90px rgba(7,40,103,.23)}
.partnership-panel h2{margin:16px 0 0;font-size:clamp(36px,4.4vw,60px);line-height:1.03;letter-spacing:-.05em}.partnership-copy p{margin:0 0 22px;color:#c7d7f2;font-size:14px;line-height:1.78}.partnership-points{display:flex;flex-wrap:wrap;gap:8px}.partnership-points span{padding:9px 11px;border:1px solid rgba(255,255,255,.14);border-radius:999px;background:rgba(255,255,255,.07);color:#e3edff;font-size:10px}
.technology-band{padding-top:78px}.tech-grid{display:grid;grid-template-columns:1fr .9fr;gap:70px;align-items:start}.technology-band h2{font-size:clamp(37px,4.6vw,62px)}.tech-copy p{margin:0 0 18px;color:#64718a;font-size:15px;line-height:1.8}

/* Solutions */
.solutions-list{padding-top:76px}
.solution-row{display:grid;grid-template-columns:132px 1fr;gap:32px;align-items:start;padding:30px 0;border-top:1px solid rgba(8,48,108,.12)}.solution-row:last-child{border-bottom:1px solid rgba(8,48,108,.12)}
.solution-mark{width:96px;height:96px;display:grid;place-items:center;border-radius:26px;color:#fff;background:linear-gradient(145deg,#071a42,#1268ff);box-shadow:0 18px 42px rgba(18,104,255,.21);font-size:14px;font-weight:900;letter-spacing:.05em;transform:translateZ(20px)}
.solution-row h2{margin:8px 0 12px;font-size:clamp(32px,3.9vw,50px);letter-spacing:-.045em}.solution-row p{max-width:770px;margin:0;color:#68758d;font-size:14px;line-height:1.75}.solution-points{display:flex;flex-wrap:wrap;gap:8px;margin-top:20px}.solution-points span{padding:9px 11px;border:1px solid rgba(15,83,190,.11);border-radius:999px;background:#f2f7ff;color:#3b5682;font-size:10px;font-weight:700}
.support-strip{background:linear-gradient(180deg,transparent,rgba(235,243,255,.72),transparent)}
.support-mini-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.support-mini{min-height:128px;padding:22px;border:1px solid rgba(17,84,190,.11);border-radius:20px;background:rgba(255,255,255,.86);box-shadow:0 13px 42px rgba(21,61,125,.055)}.support-mini b{display:block;margin-bottom:9px;font-size:16px}.support-mini span{display:block;color:#71809a;font-size:11px;line-height:1.6}

/* Platforms */
.platform-list{display:flex;flex-direction:column;gap:64px}
.platform-row{display:grid;grid-template-columns:minmax(390px,.92fr) minmax(0,1.08fr);gap:64px;align-items:center;scroll-margin-top:130px}.platform-row:nth-child(even) .platform-preview{order:2}.platform-row:nth-child(even) .platform-copy{order:1}
.platform-preview{position:relative;min-height:292px;padding:22px;border-radius:30px;overflow:hidden;color:#fff;background:radial-gradient(circle at var(--rx,55%) var(--ry,45%),rgba(42,181,255,.34),transparent 33%),linear-gradient(145deg,#061127,#0b2e70 62%,#0a4aa0);box-shadow:0 28px 78px rgba(8,44,111,.22);transform-style:preserve-3d}
.preview-top{height:44px;display:flex;align-items:center;gap:6px;padding:0 4px;border-bottom:1px solid rgba(255,255,255,.09)}.preview-brand{display:flex;align-items:center;gap:8px;margin-right:auto;color:#fff;font-size:10px}.preview-brand img{width:24px;height:24px;object-fit:contain;filter:brightness(0) invert(1);opacity:.92}.preview-brand b{font-size:11px}.preview-top>i{width:6px;height:6px;border-radius:50%;background:rgba(255,255,255,.35)}
.preview-body{height:230px;display:grid;grid-template-columns:70px 1fr;gap:14px;padding-top:16px}.preview-sidebar{display:flex;flex-direction:column;gap:10px;padding:8px 8px;border-right:1px solid rgba(255,255,255,.08)}.preview-sidebar span{height:8px;border-radius:8px;background:rgba(255,255,255,.13)}.preview-sidebar span:nth-child(2){width:78%}.preview-sidebar span:nth-child(3){width:88%}.preview-sidebar span:nth-child(4){width:65%}
.preview-content{padding:8px 3px}.preview-title{width:40%;height:12px;border-radius:8px;background:rgba(255,255,255,.28);margin-bottom:18px}.preview-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:9px}.preview-cards span{height:54px;border-radius:12px;border:1px solid rgba(255,255,255,.09);background:linear-gradient(145deg,rgba(255,255,255,.12),rgba(255,255,255,.045))}.preview-table{margin-top:14px;padding:12px;border-radius:13px;background:rgba(255,255,255,.065);border:1px solid rgba(255,255,255,.075)}.preview-table i{display:block;height:7px;border-radius:8px;background:rgba(255,255,255,.14);margin:8px 0}.preview-table i:nth-child(2){width:86%}.preview-table i:nth-child(3){width:74%}.preview-table i:nth-child(4){width:92%}.preview-glow{position:absolute;width:210px;height:210px;right:-70px;bottom:-90px;border-radius:50%;background:radial-gradient(circle,rgba(61,205,255,.24),transparent 67%);filter:blur(6px)}
.preview-helpdesk .preview-cards span:first-child{background:linear-gradient(145deg,rgba(28,205,255,.28),rgba(255,255,255,.05))}.preview-cms .preview-content::after{content:"";position:absolute;right:34px;top:88px;width:82px;height:68px;border-radius:12px;background:linear-gradient(145deg,rgba(255,255,255,.20),rgba(255,255,255,.06))}.preview-shareholder .preview-cards span:nth-child(2){background:linear-gradient(145deg,rgba(59,177,255,.26),rgba(255,255,255,.05))}.preview-hrms .preview-title{width:30%}.preview-custom-apps .preview-cards{grid-template-columns:1.3fr .7fr}.preview-automation .preview-table{box-shadow:inset 3px 0 0 #35d1ff}
.platform-copy h2{margin:9px 0 13px;font-size:clamp(34px,4.2vw,55px);line-height:1.02;letter-spacing:-.05em}.platform-copy>p{max-width:620px;margin:0;color:#65728a;font-size:14px;line-height:1.75}.feature-chips{display:flex;flex-wrap:wrap;gap:8px;margin:21px 0 24px}.feature-chips span{padding:9px 11px;border:1px solid rgba(17,85,188,.11);background:#f3f8ff;border-radius:999px;color:#37527f;font-size:10px;font-weight:700}

/* Contact */
.contact-section{padding-top:70px}.contact-grid{display:grid;grid-template-columns:.72fr 1.28fr;gap:28px;align-items:start}.contact-details{display:flex;flex-direction:column;gap:12px}.contact-card{position:relative;padding:20px;border:1px solid rgba(15,82,186,.11);border-radius:20px;background:rgba(255,255,255,.88);box-shadow:0 13px 38px rgba(22,65,136,.055);overflow:hidden;transition:transform .22s ease,box-shadow .22s ease}.contact-card:hover{transform:translateY(-2px);box-shadow:0 18px 48px rgba(25,67,137,.09)}.contact-card>span{display:block;margin-bottom:7px;color:#6a7c9d;font-size:9px;font-weight:800;letter-spacing:.12em;text-transform:uppercase}.contact-card a,.contact-card strong{display:block;color:#173a75;font-size:15px;font-weight:750}.contact-card small{display:block;margin-top:5px;color:#8793a7;font-size:10px}.whatsapp-panel{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:20px;border-radius:20px;color:#fff;background:linear-gradient(135deg,#0c7d5e,#13a576);box-shadow:0 17px 45px rgba(12,125,94,.16)}.whatsapp-panel b{font-size:14px}.whatsapp-panel span{font-size:11px}
.form-panel{position:relative;padding:28px;border:1px solid rgba(15,82,186,.11);border-radius:26px;background:rgba(255,255,255,.92);box-shadow:0 20px 65px rgba(20,64,137,.075);overflow:hidden}.form-heading>span{color:#5270a8;font-size:9px;font-weight:850;letter-spacing:.14em;text-transform:uppercase}.form-heading h2{margin:9px 0 24px;font-size:clamp(27px,3vw,38px);line-height:1.12;letter-spacing:-.04em}.contact-form{display:flex;flex-direction:column;gap:14px}.field-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}.contact-form label{display:flex;flex-direction:column;gap:7px;color:#3c4e6e;font-size:10.5px;font-weight:750}.contact-form input,.contact-form textarea{width:100%;border:1px solid rgba(8,54,127,.13);border-radius:13px;background:#f9fbff;color:var(--ink);padding:12px 13px;outline:none;font-size:12.5px;transition:border-color .2s,box-shadow .2s,background .2s}.contact-form input{height:46px}.contact-form textarea{min-height:145px;resize:vertical;line-height:1.58}.contact-form input:focus,.contact-form textarea:focus{border-color:rgba(17,103,255,.44);box-shadow:0 0 0 3px rgba(17,103,255,.07);background:#fff}.form-footer{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-top:4px}.form-footer p{max-width:420px;margin:0;color:#8490a4;font-size:9.5px;line-height:1.5}.form-errors,.form-success{margin-bottom:18px;padding:13px 14px;border-radius:12px;font-size:11.5px;line-height:1.55}.form-errors{background:#fff2f2;color:#8d2730;border:1px solid #ffd5d8}.form-errors ul{margin:6px 0 0;padding-left:17px}.form-success{background:#eefbf3;color:#1f6a43;border:1px solid #caedd8}.honeypot{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important}

/* Footer */
.site-footer{position:relative;padding:52px 0 23px;background:radial-gradient(circle at 10% 0,rgba(18,104,255,.15),transparent 24%),#050d20;color:#dbe7fb}
.footer-grid{display:grid;grid-template-columns:1.45fr .62fr .9fr 1fr;gap:46px;padding-bottom:44px}
.footer-brand{max-width:390px}.footer-logo-card{display:inline-flex;flex-direction:column;align-items:center;width:184px;padding:9px 10px 8px;border-radius:16px;background:linear-gradient(145deg,#fff,#eff6ff);box-shadow:0 16px 38px rgba(0,0,0,.18)}.footer-logo-card img{width:158px}.footer-logo-card span{margin-top:3px;color:#1767e7;font-size:6.1px;font-weight:780;letter-spacing:.055em;white-space:nowrap}.footer-brand>p{max-width:390px;margin:18px 0 0;color:#8fa1bd;font-size:12px;line-height:1.7}.footer-column h3{margin:0 0 15px;color:#fff;font-size:11px}.footer-column{display:flex;flex-direction:column;gap:11px}.footer-column a,.footer-column span{color:#91a4c3;font-size:11px;line-height:1.45;transition:color .2s}.footer-column a:hover{color:#fff}.footer-bottom{display:flex;justify-content:space-between;gap:20px;padding-top:20px;border-top:1px solid rgba(255,255,255,.08);color:#7387a9;font-size:9.5px}
.whatsapp-fab{position:fixed;right:18px;bottom:18px;z-index:140;display:flex;align-items:center;gap:8px;min-height:42px;padding:10px 14px;border-radius:999px;color:#fff;background:#0f9d6a;box-shadow:0 14px 35px rgba(11,120,83,.24);font-size:11px;font-weight:800}.whatsapp-dot{width:8px;height:8px;border-radius:50%;background:#7dffc3;box-shadow:0 0 0 5px rgba(125,255,195,.12)}

/* Reveal */
.reveal{opacity:0;transform:translateY(18px);transition:opacity .62s ease,transform .62s cubic-bezier(.2,.7,.2,1)}.reveal.in-view{opacity:1;transform:none}

/* Keyframes */
@keyframes brandPulse{0%,100%{transform:scale(1)}34%{transform:scale(1.052)}44%{transform:scale(.992)}55%{transform:scale(1.031)}69%{transform:scale(1)}}
@keyframes ringPulse{0%,46%{transform:scale(.88);opacity:0}58%{opacity:.42}100%{transform:scale(1.12);opacity:0}}
@keyframes orbit{to{transform:rotateZ(360deg)}}
@keyframes floatA{to{transform:translateY(-12px)}}@keyframes floatB{to{transform:translateY(10px)}}@keyframes floatC{to{transform:translateY(-8px) translateX(4px)}}
@keyframes scrollCue{0%,100%{opacity:.25;transform:scaleY(.55);transform-origin:top}50%{opacity:1;transform:scaleY(1)}}

/* Laptop */
@media(max-width:1120px){
  :root{--shell:1020px}
  .desktop-nav{gap:20px}.brand-lockup{width:180px}.nav-shell{gap:20px}.nav-cta{display:none}
  .hero-layout{grid-template-columns:1fr .84fr;gap:20px}.hero-visual{height:440px}.floating-chip{padding:9px 12px}
  .product-card{min-height:268px}
  .platform-row{grid-template-columns:minmax(340px,.92fr) 1.08fr;gap:46px}
  .footer-grid{grid-template-columns:1.3fr .7fr .9fr}.footer-grid>.footer-column:last-child{grid-column:2/4}
}

/* Tablet / small laptop */
@media(max-width:900px){
  :root{--header-offset:92px}
  .shell{width:min(100% - 34px,var(--shell))}
  .site-header{padding:10px 0}.nav-shell{min-height:68px;border-radius:18px}.brand-lockup{width:170px}.brand-lockup small{font-size:6.8px}
  .desktop-nav,.nav-cta{display:none}.menu-toggle{display:block;margin-left:auto}
  .mobile-panel{position:fixed;display:flex;flex-direction:column;gap:4px;left:17px;right:17px;top:86px;padding:12px;border:1px solid rgba(11,66,156,.13);border-radius:18px;background:rgba(250,252,255,.97);box-shadow:0 20px 55px rgba(13,52,117,.15);backdrop-filter:blur(18px);opacity:0;visibility:hidden;transform:translateY(-8px);transition:.22s;z-index:149}.mobile-panel.open{opacity:1;visibility:visible;transform:none}.mobile-panel>a{padding:12px 13px;border-radius:11px;color:#263b60;font-size:13px;font-weight:700}.mobile-panel>a:hover{background:#f0f6ff}.mobile-project{margin-top:6px!important;color:#fff!important;background:linear-gradient(135deg,#176fff,#0f58e9)!important}
  .hero{min-height:auto;padding:116px 0 54px}.hero-layout{grid-template-columns:1fr;gap:15px}.hero-copy{max-width:760px}.hero h1{font-size:clamp(54px,11vw,82px);max-width:760px}.hero-visual{height:390px;max-width:620px;width:100%;margin:0 auto}.logo-prism{width:min(360px,72%)}.chip-a{right:5%}.chip-b{left:7%}.chip-c{right:10%}.scroll-cue{display:none}
  .hero-proof{margin-top:32px}.section{padding:72px 0}.intro-grid{grid-template-columns:1fr;gap:18px}.section-heading{grid-template-columns:1fr;gap:20px}.section-heading>p{max-width:680px}.product-grid{grid-template-columns:repeat(2,1fr)}
  .process-rail{grid-template-columns:repeat(3,1fr);border-top:0;gap:0}.process-step{border-top:1px solid rgba(8,49,112,.12);min-height:142px}.process-step:nth-child(3n){border-right:0}
  .vision-shell{grid-template-columns:1fr;gap:35px}.vision-graphic{max-width:650px;width:100%;height:400px}.requirement-panel{grid-template-columns:1fr;gap:28px;padding:36px}
  .page-hero{min-height:400px;padding:122px 0 54px}.split-story{grid-template-columns:1fr;gap:30px}.sticky-copy{position:static}.principle-grid{grid-template-columns:1fr 1fr}.principle-card:last-child{grid-column:1/3}.partnership-panel,.tech-grid{grid-template-columns:1fr;gap:30px;padding:38px}
  .solution-row{grid-template-columns:110px 1fr;gap:26px}.solution-mark{width:78px;height:78px;border-radius:22px}
  .support-mini-grid{grid-template-columns:repeat(2,1fr)}
  .platform-list{gap:64px}.platform-row,.platform-row:nth-child(even){grid-template-columns:1fr;gap:27px}.platform-row:nth-child(even) .platform-preview,.platform-row:nth-child(even) .platform-copy{order:initial}.platform-preview{min-height:278px}.platform-copy{max-width:720px}
  .contact-grid{grid-template-columns:1fr;gap:20px}.contact-details{display:grid;grid-template-columns:repeat(3,1fr)}.whatsapp-panel{grid-column:1/4}.footer-grid{grid-template-columns:1.2fr 1fr 1fr;gap:32px}.footer-grid>.footer-column:last-child{grid-column:auto}.footer-brand{grid-column:1/4}.footer-brand>p{max-width:500px}
}

/* Mobile */
@media(max-width:640px){
  .shell{width:calc(100% - 28px)}
  .site-header{padding:8px 0}.nav-shell{min-height:62px;padding:8px 9px 8px 12px;border-radius:16px}.brand-lockup{width:148px}.brand-lockup small{font-size:5.9px;letter-spacing:.04em}.menu-toggle{width:44px;height:44px}.mobile-panel{left:14px;right:14px;top:78px}
  .hero{padding:102px 0 42px}.hero h1{margin-top:17px;font-size:clamp(47px,15vw,66px);line-height:.93}.hero-lead{font-size:16px;line-height:1.6}.hero-actions{align-items:flex-start;flex-direction:column;gap:15px;margin-top:25px}.hero-actions .button{width:100%}.hero-proof{grid-template-columns:1fr;gap:5px;margin-top:28px}.hero-proof>div{padding:10px 0}.hero-proof strong{font-size:11.5px}.hero-proof span{font-size:10px}.hero-visual{height:300px;margin-top:4px}.logo-prism{width:265px}.floating-chip{padding:8px 10px;border-radius:12px}.floating-chip span{width:26px;height:26px;font-size:8px}.floating-chip b{font-size:9px}.chip-a{right:1%;top:15%}.chip-b{left:0;bottom:19%}.chip-c{right:2%;bottom:8%}
  .section{padding:58px 0}.intro-band{padding-top:34px}.intro-statement h2,.section-heading h2,.vision-copy h2,.requirement-copy h2,.split-story h2,.technology-band h2{font-size:clamp(34px,11vw,47px)}.intro-statement p{font-size:15px;margin-top:19px}.section-heading{margin-bottom:27px}.section-heading>p{font-size:13.5px}.product-grid{grid-template-columns:1fr;gap:13px}.product-card{min-height:auto;padding:22px;padding-bottom:58px}.product-icon{margin-bottom:24px}.product-card h3{font-size:22px}.product-card p{font-size:12.5px}.product-card>a{left:22px;bottom:21px}
  .process-rail{grid-template-columns:1fr 1fr}.process-step{min-height:135px;padding:21px 14px 10px 0}.process-step+.process-step{padding-left:14px}.process-step:nth-child(2n){border-right:0}.process-step:nth-child(3n){border-right:1px solid rgba(8,49,112,.09)}.process-step:nth-child(6){border-right:0}.process-step h3{margin-top:19px}.process-step p{font-size:10.8px}
  .support-grid{grid-template-columns:1fr;gap:13px}.support-card{min-height:auto;padding:24px}.support-card h3{margin-top:27px;font-size:23px}.vision-graphic{height:330px;border-radius:26px}.vision-core{width:140px;height:140px}.node{font-size:9px;padding:7px 9px}.n1{left:7%;top:14%}.n2{right:6%;top:19%}.n3{left:8%;bottom:15%}.n4{right:5%;bottom:12%}.requirement-section{padding-top:52px;padding-bottom:70px}.requirement-panel{padding:27px 20px;border-radius:25px}.quick-requirement{padding:14px}.quick-requirement .button{width:100%}
  .page-hero{min-height:auto;padding:114px 0 52px}.page-hero h1{font-size:clamp(43px,13vw,59px);margin-top:16px}.page-hero p{font-size:15px}.story-section{padding-top:55px}.story-copy .lead-copy{font-size:17px}.story-copy p{font-size:14px}.principle-grid{grid-template-columns:1fr}.principle-card,.principle-card:last-child{grid-column:auto;min-height:auto;padding:24px}.principle-card h3{font-size:21px}.partnership-panel{padding:28px 21px;border-radius:25px}.partnership-panel h2{font-size:36px}.tech-grid{gap:22px}
  .solution-row{grid-template-columns:1fr;gap:18px;padding:28px 0}.solution-mark{width:62px;height:62px;border-radius:18px;font-size:11px}.solution-row h2{font-size:34px}.solution-row p{font-size:13px}.support-mini-grid{grid-template-columns:1fr;gap:10px}.support-mini{min-height:auto}
  .platform-list{gap:54px}.platform-preview{min-height:250px;padding:16px;border-radius:24px}.preview-top{height:37px}.preview-brand img{width:20px;height:20px}.preview-brand b{font-size:9px}.preview-body{height:180px;grid-template-columns:48px 1fr;gap:9px;padding-top:10px}.preview-sidebar{padding:7px 5px}.preview-content{padding-top:5px}.preview-cards{gap:6px}.preview-cards span{height:42px}.preview-table{margin-top:10px;padding:8px}.preview-table i{height:5px;margin:6px 0}.platform-copy h2{font-size:38px}.platform-copy>p{font-size:13px}.feature-chips{margin-top:18px}.feature-chips span{font-size:9.5px;padding:8px 9px}
  .contact-section{padding-top:54px}.contact-details{grid-template-columns:1fr}.whatsapp-panel{grid-column:auto}.form-panel{padding:21px;border-radius:22px}.field-grid{grid-template-columns:1fr}.form-heading h2{font-size:29px}.form-footer{align-items:stretch;flex-direction:column}.form-footer .button{width:100%}
  .site-footer{padding-top:46px}.footer-grid{grid-template-columns:1fr 1fr;gap:28px 22px}.footer-brand{grid-column:1/3}.footer-logo-card{width:174px}.footer-logo-card img{width:150px}.footer-logo-card span{font-size:6.3px}.footer-grid>.footer-column:last-child{grid-column:1/3}.footer-bottom{flex-direction:column;gap:6px}.whatsapp-fab{right:12px;bottom:12px;padding:10px 12px}.whatsapp-fab>span:last-child{display:none}
}

@media(max-width:400px){
  .brand-lockup{width:139px}.brand-lockup small{font-size:5.5px}
  .hero h1{font-size:45px}.hero-visual{height:270px}.logo-prism{width:235px}.floating-chip b{display:none}.floating-chip{padding:7px}.hero-proof span{max-width:260px}
  .process-rail{grid-template-columns:1fr}.process-step,.process-step+.process-step,.process-step:nth-child(3n){border-right:0;padding-left:0}.footer-grid{grid-template-columns:1fr}.footer-brand,.footer-grid>.footer-column:last-child{grid-column:auto}.footer-logo-card{width:168px}
}

@media(max-height:760px) and (min-width:901px){
  .hero{min-height:700px;padding-top:112px}.hero-visual{height:440px}.hero h1{font-size:clamp(56px,6.2vw,85px)}.hero-proof{margin-top:32px}
}

@media(pointer:coarse),(prefers-reduced-motion:reduce){
  .page-pointer-glow,.cursor-lens{display:none!important}
  [data-reactive]::before{display:none}
}
@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;scroll-behavior:auto!important;transition-duration:.01ms!important}
  .reveal{opacity:1;transform:none}
}

/* v4 interaction corrections */
.site-header.hidden{transform:translateY(-118%);transition:transform .3s ease,padding .28s ease,background .28s ease,border-color .28s ease}
.site-header:not(.hidden){transform:translateY(0)}
.logo-prism{
  transform:translate3d(var(--prism-x,0),var(--prism-y,0),0) rotateX(var(--prism-rx,0deg)) rotateY(var(--prism-ry,0deg));
  transition:transform .32s cubic-bezier(.2,.75,.2,1);
}
@media(min-width:1121px){
  .product-card{min-height:260px}
  .support-card{min-height:205px}
  .support-card h3{margin-top:29px}
}

/* V6.1 enquiry confirmation */
.thank-you-section{position:relative;min-height:760px;padding:150px 0 92px;display:flex;align-items:center;overflow:hidden;background:radial-gradient(circle at 50% 18%,rgba(26,126,255,.12),transparent 31%),linear-gradient(180deg,#f7fbff 0%,#fff 70%)}
.thank-you-section::before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(20,91,202,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(20,91,202,.04) 1px,transparent 1px);background-size:54px 54px;mask-image:radial-gradient(circle at 50% 32%,#000,transparent 68%);pointer-events:none}
.thank-you-shell{position:relative;z-index:2;display:flex;justify-content:center}
.thank-you-card{position:relative;width:min(820px,100%);padding:58px 62px;border:1px solid rgba(15,83,190,.12);border-radius:34px;background:rgba(255,255,255,.92);box-shadow:0 32px 100px rgba(16,62,132,.13);text-align:center;overflow:hidden}
.thank-you-card::after{content:"";position:absolute;width:300px;height:300px;right:-150px;top:-160px;border-radius:50%;background:radial-gradient(circle,rgba(22,122,255,.11),transparent 65%);pointer-events:none}
.thank-you-mark{position:relative;width:94px;height:94px;margin:0 auto 28px;display:grid;place-items:center}
.thank-you-check{position:relative;z-index:3;width:72px;height:72px;display:grid;place-items:center;border-radius:50%;background:linear-gradient(145deg,#071a42,#1268ff);color:#fff;font-size:30px;font-weight:900;box-shadow:0 18px 44px rgba(18,104,255,.27);animation:thankPop .7s cubic-bezier(.2,.9,.25,1.2) both}
.thank-you-ring{position:absolute;inset:6px;border:1px solid rgba(18,104,255,.23);border-radius:50%;animation:thankRing 2.6s ease-out infinite}.ring-two{animation-delay:1.25s}
.thank-you-eyebrow{justify-content:center}.thank-you-card h1{max-width:700px;margin:18px auto 18px;font-size:clamp(42px,5.3vw,68px);line-height:.99;letter-spacing:-.055em}.thank-you-lead{max-width:650px;margin:0 auto;color:#63718a;font-size:16px;line-height:1.75}
.thank-you-summary{display:grid;grid-template-columns:1fr 1fr;gap:10px;max-width:610px;margin:30px auto 0;padding:10px;border:1px solid rgba(15,83,190,.1);border-radius:18px;background:#f7faff;text-align:left}.thank-you-summary>div{padding:14px 16px;border-radius:12px;background:#fff}.thank-you-summary span{display:block;margin-bottom:6px;color:#7c899d;font-size:9px;font-weight:800;letter-spacing:.1em;text-transform:uppercase}.thank-you-summary strong{display:block;overflow-wrap:anywhere;color:#18345f;font-size:13px}
.mail-confirmation{max-width:610px;margin:12px auto 0;padding:13px 15px;display:flex;align-items:flex-start;gap:11px;border:1px solid #cbe9d8;border-radius:14px;background:#f0fbf5;text-align:left;color:#34684d}.mail-confirmation>span{flex:0 0 25px;width:25px;height:25px;display:grid;place-items:center;border-radius:50%;background:#daf2e4;font-size:12px;font-weight:900}.mail-confirmation p{margin:2px 0 0;font-size:11.5px;line-height:1.55}.mail-confirmation.neutral{border-color:#dbe7f7;background:#f6f9fe;color:#536984}.mail-confirmation.neutral>span{background:#e6eef9;color:#1c5db8}
.thank-you-actions{display:flex;justify-content:center;gap:12px;margin-top:28px}.thank-you-actions .button-ghost{border-color:rgba(13,76,176,.13);background:#f3f7fd;color:#244a83;box-shadow:none}.thank-you-note{margin:25px 0 0;color:#95a0b2;font-size:10px;letter-spacing:.03em}
@keyframes thankPop{0%{opacity:0;transform:scale(.45) rotate(-8deg)}70%{opacity:1;transform:scale(1.07)}100%{transform:scale(1)}}
@keyframes thankRing{0%{opacity:.8;transform:scale(.7)}70%,100%{opacity:0;transform:scale(1.4)}}
@media(max-width:900px){.thank-you-section{min-height:700px;padding:126px 0 72px}.thank-you-card{padding:46px 38px;border-radius:28px}}
@media(max-width:640px){.thank-you-section{min-height:auto;padding:108px 0 58px}.thank-you-card{padding:37px 20px 32px;border-radius:24px}.thank-you-mark{width:82px;height:82px;margin-bottom:22px}.thank-you-check{width:64px;height:64px;font-size:26px}.thank-you-card h1{font-size:clamp(38px,12vw,51px)}.thank-you-lead{font-size:14px}.thank-you-summary{grid-template-columns:1fr;margin-top:24px}.thank-you-actions{flex-direction:column}.thank-you-actions .button{width:100%}.mail-confirmation{font-size:11px}.thank-you-note{margin-top:21px}}
/* v6.4 submission safety */
.button:disabled{opacity:.72;cursor:wait;pointer-events:none;transform:none!important}

/* =========================================================
   V6.5 — adaptive ultra-wide layout + crisp pointer + depth
   ========================================================= */
:root{
  --shell:2200px;
  --wide-gutter:clamp(24px,3.75vw,72px);
}
.shell{width:min(var(--shell),calc(100% - (var(--wide-gutter) * 2)));margin-inline:auto}
.narrow{max-width:none}

/* Full-width navigation rail: integrated with the viewport rather than a floating badge. */
.site-header{
  padding:0;
  background:rgba(250,252,255,.72);
  border-bottom:1px solid rgba(9,52,118,.075);
  backdrop-filter:blur(18px) saturate(1.12);
  transition:background .28s ease,border-color .28s ease,box-shadow .28s ease;
}
.site-header.scrolled{
  padding:0;
  background:rgba(248,251,255,.93);
  border-bottom-color:rgba(8,44,101,.105);
  box-shadow:0 10px 32px rgba(16,55,119,.055);
}
.site-header.hidden,.site-header:not(.hidden){transform:none!important}
.nav-shell{
  min-height:84px;
  padding:8px 0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  backdrop-filter:none;
  transition:min-height .28s ease;
}
.site-header.scrolled .nav-shell{min-height:72px}
.brand-lockup{width:205px}
.desktop-nav{gap:clamp(24px,2vw,40px)}
.desktop-nav a{font-size:13.5px}

/* The cursor is now a crisp optical ring; no backdrop blur touches text. */
.cursor-lens{
  width:32px;height:32px;
  border:1px solid rgba(17,104,255,.42);
  background:transparent;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  box-shadow:0 0 0 7px rgba(19,125,255,.028),0 8px 26px rgba(18,104,255,.09);
  transition:width .2s ease,height .2s ease,border-color .2s ease,box-shadow .2s ease,opacity .2s ease;
}
.cursor-lens::before{
  content:"";
  position:absolute;inset:4px;border-radius:50%;
  border:1px solid rgba(19,184,255,.12);
}
.cursor-lens::after{
  content:"";
  position:absolute;left:50%;top:50%;width:4px;height:4px;border-radius:50%;
  background:linear-gradient(135deg,var(--blue),var(--cyan));
  transform:translate(-50%,-50%);
  box-shadow:0 0 14px rgba(19,162,255,.55);
}
body.cursor-focus .cursor-lens{
  width:56px;height:56px;
  border-color:rgba(16,161,255,.55);
  box-shadow:0 0 0 10px rgba(19,125,255,.025),0 14px 34px rgba(18,104,255,.12);
}
.page-pointer-glow{width:500px;height:500px;filter:blur(28px);background:radial-gradient(circle,rgba(28,144,255,.11),rgba(18,103,255,.035) 38%,transparent 68%)}

/* Wider, more cinematic hero on large screens. */
.hero{min-height:clamp(720px,90svh,980px);padding:122px 0 62px}
.hero-layout{grid-template-columns:minmax(0,1.05fr) minmax(480px,.95fr);gap:clamp(34px,5vw,112px)}
.hero-copy{max-width:900px}
.hero h1{max-width:900px;font-size:clamp(60px,5.65vw,116px)}
.hero-lead{max-width:790px;font-size:clamp(17px,1.22vw,22px)}
.hero-visual{height:clamp(470px,34vw,680px)}
.logo-prism{width:min(520px,78%)}
.hero-signal{
  position:absolute;left:9%;right:9%;bottom:4%;height:52px;
  display:flex;align-items:flex-end;justify-content:center;gap:8px;
  opacity:.45;pointer-events:none;transform-style:preserve-3d;
  transform:translate3d(var(--hero-shift-x,0px),var(--hero-shift-y,0px),-35px) rotateX(68deg);
  transition:transform .25s ease;
}
.hero-signal span{width:18%;height:1px;border-radius:99px;background:linear-gradient(90deg,transparent,rgba(17,111,255,.72),rgba(22,195,255,.48),transparent);box-shadow:0 0 22px rgba(18,126,255,.18);animation:signalFlow 3.8s ease-in-out infinite}
.hero-signal span:nth-child(2){width:27%;animation-delay:-1.1s}.hero-signal span:nth-child(3){width:14%;animation-delay:-2.2s}.hero-signal span:nth-child(4){width:22%;animation-delay:-.5s}
@keyframes signalFlow{0%,100%{transform:translateY(0) scaleX(.75);opacity:.25}50%{transform:translateY(-18px) scaleX(1.08);opacity:.8}}

/* Better use of wide displays without stretching reading lines. */
.section{padding:clamp(68px,5.1vw,104px) 0}
.intro-grid{grid-template-columns:minmax(150px,.22fr) minmax(0,1fr);gap:clamp(52px,6vw,130px)}
.intro-statement{max-width:1120px}
.intro-statement p{max-width:900px}
.section-heading{grid-template-columns:minmax(0,1fr) minmax(320px,520px);gap:clamp(42px,6vw,130px)}
.section-heading>div{max-width:1150px}
.section-heading>p{max-width:520px}

/* Compact cards: more content density, less empty vertical space. */
.product-card{min-height:238px;padding:21px 21px 54px}
.product-icon{margin-bottom:18px}
.product-card h3{font-size:22px}
.product-card p{margin-bottom:0}
.product-card>a{left:21px;bottom:19px}
.support-card{min-height:184px;padding:23px}
.support-card h3{margin-top:24px;font-size:23px}
.principle-card{min-height:238px;padding:25px}
.principle-icon{margin-bottom:24px}
.support-mini{min-height:112px}
.process-step{min-height:136px}

/* Wider editorial layouts while keeping readable text measures. */
.page-hero{min-height:430px;padding:134px 0 60px}
.page-hero .shell.narrow{max-width:none}
.page-hero .shell.narrow h1{max-width:1120px}
.page-hero .shell.narrow p{max-width:860px}
.split-story{grid-template-columns:minmax(280px,.55fr) minmax(0,1.45fr);gap:clamp(70px,8vw,170px)}
.story-copy{max-width:900px}
.tech-grid{grid-template-columns:minmax(0,1fr) minmax(420px,.8fr);gap:clamp(60px,7vw,150px)}
.partnership-panel{grid-template-columns:minmax(0,1.15fr) minmax(360px,.85fr);gap:clamp(50px,6vw,120px)}
.solutions-list .shell{max-width:1900px}
.solution-row{grid-template-columns:120px minmax(0,1fr);gap:40px}
.solution-row>div:last-child{max-width:1100px}
.platform-row{grid-template-columns:minmax(480px,.94fr) minmax(0,1.06fr);gap:clamp(56px,6vw,130px)}
.platform-preview{min-height:310px}
.platform-copy{max-width:780px}
.contact-grid{grid-template-columns:minmax(300px,420px) minmax(0,1fr);gap:clamp(28px,5vw,100px)}
.form-panel{max-width:1120px;padding:clamp(28px,2.2vw,42px)}
.contact-details{max-width:420px}
.requirement-panel{grid-template-columns:minmax(0,1fr) minmax(420px,.78fr);gap:clamp(42px,6vw,120px);padding:clamp(38px,3.3vw,62px)}
.requirement-copy{max-width:900px}

/* Footer scales with the wide layout but branding remains restrained. */
.footer-grid{grid-template-columns:minmax(330px,1.5fr) minmax(130px,.55fr) minmax(180px,.78fr) minmax(230px,.95fr);gap:clamp(38px,5vw,110px)}
.footer-brand{max-width:430px}.footer-brand>p{max-width:420px}
.footer-logo-card{width:176px}.footer-logo-card img{width:151px}

/* Large desktop composition. Six product cards use the width instead of becoming oversized. */
@media(min-width:1700px){
  .product-grid{grid-template-columns:repeat(6,minmax(0,1fr));gap:14px}
  .product-card{min-height:276px;padding:20px 19px 54px}
  .product-card h3{font-size:20px}.product-card p{font-size:12px;line-height:1.62}.product-card>a{left:19px;font-size:10.5px}
  .product-icon{width:48px;height:48px;border-radius:15px}
  .support-grid{grid-template-columns:repeat(3,minmax(260px,430px));justify-content:space-between;gap:clamp(24px,4vw,80px)}
  .support-card{min-height:196px}
  .principle-grid{grid-template-columns:repeat(3,minmax(280px,480px));justify-content:space-between;gap:clamp(24px,4vw,72px)}
  .page-hero h1{font-size:clamp(64px,4.6vw,94px)}
}

@media(min-width:2200px){
  .hero-layout{grid-template-columns:minmax(760px,1fr) minmax(620px,.9fr)}
  .hero-copy{max-width:1020px}.hero h1{max-width:1020px}
  .platform-list{gap:84px}
}

@media(max-width:1120px){
  :root{--wide-gutter:clamp(22px,3vw,34px)}
  .nav-shell{min-height:78px}.site-header.scrolled .nav-shell{min-height:70px}
  .brand-lockup{width:184px}
  .hero{padding-top:112px}.hero-layout{grid-template-columns:1fr .84fr;gap:26px}.hero-visual{height:440px}.logo-prism{width:min(420px,82%)}
  .product-card{min-height:250px}
  .platform-row{grid-template-columns:minmax(340px,.92fr) 1.08fr;gap:46px}
}

@media(max-width:900px){
  :root{--wide-gutter:17px}
  .shell{width:calc(100% - 34px)}
  .site-header{background:rgba(250,252,255,.9)}
  .nav-shell{min-height:70px;padding:7px 0}.site-header.scrolled .nav-shell{min-height:66px}
  .brand-lockup{width:170px}
  .hero{padding-top:106px}.hero-signal{left:14%;right:14%;bottom:2%;opacity:.3}
  .page-hero{padding-top:112px}
  .page-hero .shell.narrow h1{max-width:760px}.page-hero .shell.narrow p{max-width:680px}
  .contact-grid{grid-template-columns:1fr}.contact-details{max-width:none}.form-panel{max-width:none}
}

@media(max-width:640px){
  :root{--wide-gutter:14px}
  .shell{width:calc(100% - 28px)}
  .nav-shell{min-height:64px;padding:6px 0}.site-header.scrolled .nav-shell{min-height:62px}
  .brand-lockup{width:148px}
  .hero{padding-top:92px}.hero-signal{display:none}
  .product-card{min-height:auto}
  .support-card,.principle-card{min-height:auto}
  .page-hero{padding-top:98px}
  .requirement-panel{grid-template-columns:1fr;padding:27px 20px}
}

@media(pointer:coarse),(prefers-reduced-motion:reduce){
  .hero-signal{display:none}
}

/* V6.5 responsive guardrails — keep the wide-screen gains without inflating smaller viewports. */
@media(max-width:900px){
  .hero{min-height:auto;padding:106px 0 54px}
  .hero-layout{grid-template-columns:1fr;gap:15px}
  .hero-copy{max-width:760px}
  .hero h1{max-width:760px;font-size:clamp(54px,11vw,82px)}
  .hero-lead{max-width:680px;font-size:17px}
  .hero-visual{height:390px;max-width:620px;width:100%;margin:0 auto}
  .logo-prism{width:min(360px,72%)}
  .section{padding:72px 0}
  .intro-grid{grid-template-columns:1fr;gap:18px}
  .section-heading{grid-template-columns:1fr;gap:20px}
  .section-heading>p{max-width:680px}
  .vision-shell{grid-template-columns:1fr;gap:35px}
  .requirement-panel{grid-template-columns:1fr;gap:28px;padding:36px}
  .partnership-panel,.tech-grid{grid-template-columns:1fr;gap:30px;padding:38px}
  .platform-row,.platform-row:nth-child(even){grid-template-columns:1fr;gap:27px}
  .platform-row:nth-child(even) .platform-preview,.platform-row:nth-child(even) .platform-copy{order:initial}
  .footer-grid{grid-template-columns:1.2fr 1fr 1fr;gap:32px}
  .footer-brand{grid-column:1/4;max-width:500px}
  .footer-brand>p{max-width:500px}
}

@media(max-width:640px){
  .hero{padding:92px 0 42px}
  .hero h1{font-size:clamp(47px,15vw,66px);line-height:.93}
  .hero-lead{font-size:16px;line-height:1.6}
  .hero-visual{height:300px;margin-top:4px}
  .logo-prism{width:265px}
  .section{padding:58px 0}
  .product-card{min-height:auto;padding:22px 22px 58px}
  .product-icon{margin-bottom:24px}
  .product-card h3{font-size:22px}
  .product-card p{font-size:12.5px}
  .product-card>a{left:22px;bottom:21px}
  .support-card{min-height:auto;padding:24px}
  .support-card h3{margin-top:27px;font-size:23px}
  .principle-card{min-height:auto;padding:24px}
  .requirement-panel{padding:27px 20px;border-radius:25px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:28px 22px}
  .footer-brand{grid-column:1/3}
  .footer-grid>.footer-column:last-child{grid-column:1/3}
  .footer-logo-card{width:170px}.footer-logo-card img{width:148px}
}

@media(max-width:400px){
  .footer-grid{grid-template-columns:1fr}
  .footer-brand,.footer-grid>.footer-column:last-child{grid-column:auto}
  .footer-logo-card{width:164px}.footer-logo-card img{width:143px}
}
