/* Fusion4o godmode multipage system */
:root{
  --bg:#04050c;
  --bg-2:#060810;
  --bg-3:#080b14;
  --surface:rgba(255,255,255,.045);
  --surface-2:rgba(255,255,255,.075);
  --line:rgba(255,255,255,.10);
  --line-strong:rgba(0,229,255,.28);
  --text:#eef4ff;
  --muted:#8ca1ca;
  --muted-2:#c4d3ec;
  --cyan:#00e5ff;
  --blue:#2979ff;
  --mid:#00b4d8;
  --rose:#f43f5e;
  --amber:#fbbf24;
  --green:#34d399;
  --shadow:0 24px 80px rgba(0,0,0,.48);
  --container:1180px;
  --radius:8px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  min-height:100vh;
  font-family:"Outfit",Arial,sans-serif;
  color:var(--text);
  background:
    linear-gradient(135deg,rgba(0,229,255,.08),transparent 28%),
    linear-gradient(315deg,rgba(41,121,255,.11),transparent 32%),
    linear-gradient(180deg,var(--bg),var(--bg-2) 48%,var(--bg));
  line-height:1.6;
  overflow-x:hidden;
}

@media (pointer:fine){
  *,
  *::before,
  *::after{
    cursor:none!important;
  }
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  opacity:.32;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size:72px 72px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.85),transparent 76%);
}

body::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:
    linear-gradient(115deg,transparent 0 38%,rgba(0,229,255,.08) 45%,transparent 52%),
    linear-gradient(245deg,transparent 0 47%,rgba(244,63,94,.07) 52%,transparent 59%);
  opacity:.72;
}

img{display:block;max-width:100%}
a{color:inherit}
button,input,select,textarea{font:inherit}
button{border:0}
main,.site-header,.site-footer{position:relative;z-index:2}
.container{width:min(var(--container),calc(100% - 2rem));margin:0 auto}

#pc{
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  z-index:1;
  pointer-events:none;
  opacity:.58;
}

#cur,
#cur-ring{
  position:fixed;
  left:0;
  top:0;
  z-index:999;
  pointer-events:none;
  will-change:transform;
}

#cur{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--cyan);
  box-shadow:0 0 18px rgba(0,229,255,.85);
}

#cur-ring{
  width:34px;
  height:34px;
  border:1px solid rgba(0,229,255,.42);
  border-radius:50%;
  transition:width .2s,height .2s,border-color .2s;
}

body.is-hovering #cur-ring{
  width:48px;
  height:48px;
  border-color:rgba(41,121,255,.68);
}

.site-header{
  position:fixed;
  top:1.1rem;
  left:50%;
  transform:translateX(-50%);
  width:min(1080px,calc(100% - 2rem));
  z-index:50;
}

.site-header-inner{
  min-height:64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:.55rem .7rem .55rem 1rem;
  border:1px solid rgba(0,229,255,.2);
  border-radius:var(--radius);
  background:rgba(4,5,12,.78);
  backdrop-filter:blur(28px);
  -webkit-backdrop-filter:blur(28px);
  box-shadow:0 18px 60px rgba(0,0,0,.55),0 0 42px rgba(0,229,255,.07);
}

.brand{
  display:flex;
  align-items:center;
  gap:.72rem;
  text-decoration:none;
  min-width:max-content;
}

.brand-logo{
  width:40px;
  height:40px;
  object-fit:contain;
  filter:drop-shadow(0 0 12px rgba(0,229,255,.38));
}

.brand-copy{display:flex;flex-direction:column;line-height:1.1}
.brand-name{
  font-weight:900;
  font-size:1rem;
  background:linear-gradient(90deg,var(--cyan),var(--blue));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.brand-tag{font-size:.66rem;color:var(--muted)}

.site-nav ul{
  display:flex;
  align-items:center;
  gap:.1rem;
  list-style:none;
}

.site-nav a{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:.35rem .7rem;
  border-radius:var(--radius);
  color:var(--muted);
  font-size:.86rem;
  font-weight:700;
  text-decoration:none;
  transition:background .18s,color .18s,box-shadow .18s;
}

.site-nav a:hover,
.site-nav a.is-active{
  color:var(--text);
  background:rgba(0,229,255,.09);
}

.header-cta,
.button,
.button-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  min-height:44px;
  padding:.78rem 1.15rem;
  border-radius:var(--radius);
  font-weight:800;
  text-decoration:none;
  transition:transform .18s,box-shadow .18s,background .18s,color .18s,border-color .18s;
}

.header-cta,
.button{
  color:#04050c;
  background:linear-gradient(135deg,var(--cyan),var(--blue));
  box-shadow:0 0 28px rgba(0,229,255,.28);
}

.button-secondary{
  color:var(--text);
  border:1px solid rgba(0,229,255,.22);
  background:rgba(255,255,255,.045);
}

.header-cta:hover,
.button:hover,
.button-secondary:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 38px rgba(0,229,255,.2);
}

.button-row{display:flex;gap:.8rem;flex-wrap:wrap;align-items:center}

.hero{
  min-height:100dvh;
  display:flex;
  align-items:center;
  padding:8.5rem 0 5rem;
}

.hero-grid,
.page-hero-grid,
.split-grid,
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem;
  align-items:center;
}

.hero-copy{max-width:640px}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  color:var(--cyan);
  background:rgba(0,229,255,.09);
  border:1px solid rgba(0,229,255,.22);
  border-radius:var(--radius);
  padding:.34rem .72rem;
  font-size:.75rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:0;
}

.eyebrow::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--cyan);
  box-shadow:0 0 12px var(--cyan);
}

h1,h2,h3{letter-spacing:0;line-height:1.03}
.hero h1{
  margin-top:1.35rem;
  font-size:5rem;
  font-weight:900;
  max-width:10ch;
}
.hero-line{display:block}
.gt{
  background:linear-gradient(135deg,var(--cyan),var(--blue));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero p,
.page-hero-copy p,
.section-copy,
.lead-copy{
  color:var(--muted);
  font-size:1.05rem;
  max-width:58ch;
}
.hero p{margin:1.45rem 0 2rem}

.hero-stage,
.page-visual,
.signal-panel{
  position:relative;
}

.hero-stage,
.page-visual{
  min-height:520px;
  display:grid;
  place-items:center;
  isolation:isolate;
}

.hero-stage::before,
.page-visual::before{
  content:"";
  position:absolute;
  width:min(82%,520px);
  aspect-ratio:1;
  border-radius:50%;
  background:radial-gradient(circle,rgba(0,229,255,.18),rgba(41,121,255,.08) 45%,transparent 68%);
  filter:blur(34px);
  opacity:.75;
  z-index:-1;
}

.hero-stage::before{
  animation:logoAura 5.5s ease-in-out infinite;
}

.hero-logo-large{
  width:min(82%,520px);
  max-height:70dvh;
}

.page-visual.image-visual{
  align-content:center;
  justify-items:center;
}

.page-visual.image-visual::before{
  width:min(76%,500px);
  background:radial-gradient(circle,rgba(0,229,255,.12),rgba(41,121,255,.055) 44%,transparent 70%);
  filter:blur(42px);
  opacity:.62;
}

.page-visual.image-visual img{
  width:min(88%,540px);
  height:min(64dvh,430px);
  object-fit:cover;
  border-radius:var(--radius);
  filter:saturate(.76) contrast(1.12) brightness(.78);
  box-shadow:0 30px 95px rgba(0,0,0,.42),0 0 54px rgba(0,229,255,.11);
}

.bubble-logo{
  display:block;
  overflow:visible;
  filter:
    drop-shadow(0 0 16px rgba(0,229,255,.45))
    drop-shadow(0 0 54px rgba(41,121,255,.26));
}

.logo-bubble{
  opacity:0;
  transform-box:fill-box;
  transform-origin:center;
  will-change:transform,opacity;
}

.logo-bubble circle{
  transform-box:fill-box;
  transform-origin:center;
  transition:filter .4s ease;
}

.bubble-logo.is-formed .logo-bubble circle{
  animation:bubbleSettle 4.8s ease-in-out infinite;
  animation-delay:calc(var(--i, 0) * 32ms);
}

@keyframes bubbleSettle{
  0%,100%{transform:scale(1);filter:brightness(1)}
  48%{transform:scale(1.055);filter:brightness(1.2)}
}

@keyframes logoAura{
  0%,100%{opacity:.55;transform:scale(.94)}
  50%{opacity:.86;transform:scale(1.08)}
}

.marquee-wrap{
  position:relative;
  z-index:2;
  overflow:hidden;
  border-block:1px solid rgba(0,229,255,.12);
  background:rgba(255,255,255,.025);
}
.marquee{
  display:flex;
  width:max-content;
  animation:marquee 34s linear infinite;
}
.marquee span{
  display:inline-flex;
  align-items:center;
  gap:.7rem;
  padding:1.05rem 1.25rem;
  color:var(--muted-2);
  font-weight:800;
  white-space:nowrap;
}
.marquee span::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--cyan);
}
@keyframes marquee{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

.section{padding:6.5rem 0}
.section.compact{padding:4.5rem 0}
.section-head{
  display:flex;
  justify-content:space-between;
  gap:2rem;
  align-items:end;
  margin-bottom:2.4rem;
}
.section-head h2,
.page-hero-copy h1{
  margin-top:1rem;
  font-size:3.55rem;
  font-weight:900;
  max-width:12ch;
}
.section-copy{margin-bottom:.3rem}

.grid-2,.grid-3,.grid-4{
  display:grid;
  gap:1rem;
}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}

.service-card,
.feature-panel,
.process-card,
.team-card,
.product-panel,
.contact-panel,
.cta-panel,
.stat-card{
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.026));
  box-shadow:0 18px 54px rgba(0,0,0,.3);
}

.service-card,
.feature-panel,
.process-card,
.product-panel,
.contact-panel,
.cta-panel,
.stat-card{padding:1.35rem}

.service-card.featured{
  grid-column:span 1;
  background:
    linear-gradient(135deg,rgba(0,229,255,.12),transparent 42%),
    linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.03));
  border-color:rgba(0,229,255,.24);
}

.service-number,
.process-step,
.feature-number,
.team-role,
.product-kicker{
  display:block;
  color:var(--cyan);
  font-size:.78rem;
  font-weight:900;
  margin-bottom:.75rem;
}

.service-card h3,
.feature-panel h3,
.process-card h3,
.product-panel h3,
.contact-panel h3,
.team-card h3{
  font-size:1.35rem;
  font-weight:900;
  margin-bottom:.72rem;
}

.card-copy{color:var(--muted);font-size:.95rem}
.service-route-link{
  display:inline-flex;
  align-items:center;
  width:max-content;
  min-height:38px;
  margin-top:1.1rem;
  padding:.5rem 1rem;
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius);
  color:var(--text);
  background:rgba(255,255,255,.04);
  font-size:.86rem;
  font-weight:800;
  text-decoration:none;
  transition:background .18s,color .18s,border-color .18s,transform .18s;
}
.service-route-link:hover{
  color:var(--text);
  background:rgba(0,229,255,.09);
  border-color:rgba(0,229,255,.28);
  transform:translateY(-1px);
}
.tag-list,
.check-list,
.mini-list{
  display:flex;
  flex-wrap:wrap;
  gap:.55rem;
  margin-top:1rem;
}
.tag,
.check-list span,
.mini-list span{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:.36rem .6rem;
  border-radius:var(--radius);
  color:var(--muted-2);
  border:1px solid rgba(0,229,255,.14);
  background:rgba(0,229,255,.055);
  font-size:.82rem;
  font-weight:800;
}

.stats-row{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1rem;
  margin-top:1.5rem;
}
.stat-value{
  display:block;
  color:var(--text);
  font-size:2.05rem;
  font-weight:900;
  line-height:1;
}
.stat-card span:last-child{color:var(--muted);font-size:.86rem}

.split-copy h2{
  font-size:3.25rem;
  font-weight:900;
  margin:.9rem 0 1rem;
}
.split-copy p{color:var(--muted);margin-bottom:1rem}
.system-list{
  display:grid;
  gap:.75rem;
}
.system-item{
  display:grid;
  grid-template-columns:42px 1fr;
  gap:.9rem;
  align-items:start;
  padding:.95rem;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.035);
}
.system-icon{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:var(--radius);
  color:#04050c;
  background:linear-gradient(135deg,var(--cyan),var(--blue));
  font-weight:900;
}
.system-item strong{display:block;margin-bottom:.2rem}
.system-item p{color:var(--muted);font-size:.9rem}

.page-hero{
  padding:10rem 0 4.5rem;
}
.page-hero-copy p{margin:1.25rem 0 1.8rem}

.team-card{
  overflow:hidden;
  transition:transform .2s,border-color .2s,box-shadow .2s;
}
.team-card:hover{
  transform:translateY(-4px);
  border-color:rgba(0,229,255,.28);
  box-shadow:0 24px 70px rgba(0,229,255,.09),0 18px 54px rgba(0,0,0,.34);
}
.team-photo{
  aspect-ratio:1/1;
  overflow:hidden;
  background:#07101b;
}
.team-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .45s;
}
.team-card:hover .team-photo img{transform:scale(1.04)}
.team-card-copy{padding:1.1rem}
.team-card p{color:var(--muted);font-size:.9rem}
.team-focus{
  margin-top:.9rem;
  color:var(--muted-2);
  font-size:.82rem;
  font-weight:800;
}

.portrait-panel{
  min-height:520px;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(0,229,255,.16);
  background:#07101b;
  box-shadow:var(--shadow);
}
.portrait-panel img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.product-panel{display:flex;flex-direction:column;gap:.9rem}
.product-panel .button-row{margin-top:auto}
.pricing-line{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:.7rem;
  margin-top:.7rem;
}
.price-chip{
  padding:.85rem;
  border-radius:var(--radius);
  border:1px solid rgba(0,229,255,.15);
  background:rgba(0,229,255,.055);
}
.price-chip strong{display:block;color:var(--text)}
.price-chip span{display:block;color:var(--cyan);font-weight:900;margin:.2rem 0}
.price-chip p{color:var(--muted);font-size:.82rem}
.product-directory{display:grid;gap:1rem}
.product-flagship{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(320px,.65fr);
  gap:2rem;
  align-items:center;
  padding:1.6rem;
  border:1px solid rgba(0,229,255,.2);
  border-radius:var(--radius);
  background:linear-gradient(180deg,rgba(0,229,255,.08),rgba(255,255,255,.028));
  box-shadow:0 24px 80px rgba(0,0,0,.36),0 0 50px rgba(0,229,255,.06);
}
.product-flagship h2{
  max-width:10ch;
  margin:.45rem 0 .9rem;
  font-size:clamp(2.4rem,5vw,4.8rem);
  font-weight:900;
  line-height:.95;
}
.product-flagship p{
  max-width:62ch;
  color:var(--muted);
}
.product-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.8rem;
  margin-top:1.5rem;
}
.product-flow{
  display:grid;
  gap:.65rem;
}
.product-flow-row{
  display:grid;
  grid-template-columns:42px 1fr;
  gap:.4rem .8rem;
  align-items:start;
  padding:.85rem;
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  background:rgba(255,255,255,.04);
}
.product-flow-row span{
  grid-row:span 2;
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  border-radius:var(--radius);
  background:rgba(0,229,255,.09);
  color:var(--cyan);
  font-size:.74rem;
  font-weight:900;
}
.product-flow-row strong{color:var(--text);line-height:1.1}
.product-flow-row p{color:var(--muted);font-size:.82rem;line-height:1.35}
.product-secondary-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem;
}
.suite-module-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1rem;
}
.suite-module-card{
  padding:1.15rem;
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  background:linear-gradient(180deg,rgba(255,255,255,.052),rgba(255,255,255,.024));
}
.suite-module-card span{
  display:block;
  color:var(--cyan);
  font-size:.76rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.05em;
  margin-bottom:.55rem;
}
.suite-module-card p{
  color:var(--muted);
  font-size:.88rem;
  line-height:1.5;
}

.contact-list{
  display:grid;
  gap:.9rem;
  margin-top:1.3rem;
}
.contact-quick-paths{
  display:flex;
  flex-wrap:wrap;
  gap:.6rem;
  margin-top:1rem;
}
.contact-quick-paths a{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:.42rem .8rem;
  border:1px solid rgba(0,229,255,.18);
  border-radius:var(--radius);
  background:rgba(0,229,255,.055);
  color:var(--muted-2);
  font-size:.78rem;
  font-weight:800;
  text-decoration:none;
}
.contact-item{
  display:grid;
  gap:.2rem;
  padding:.9rem;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.035);
}
.contact-item strong{color:var(--text)}
.contact-item a,
.contact-item p{color:var(--muted);text-decoration:none}

.contact-form{display:grid;gap:.85rem;margin-top:1rem}
.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:.85rem;
}
.field{display:grid;gap:.35rem}
.field label{
  color:var(--muted-2);
  font-size:.82rem;
  font-weight:800;
}
.field input,
.field select,
.field textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.11);
  border-radius:var(--radius);
  background:rgba(255,255,255,.045);
  color:var(--text);
  padding:.84rem .9rem;
  outline:none;
}
.field textarea{resize:vertical}
.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color:rgba(0,229,255,.42);
  box-shadow:0 0 0 3px rgba(0,229,255,.09);
}
.success-message{
  display:none;
  margin-top:1rem;
  color:var(--green);
  font-weight:800;
}
.response-note{color:var(--muted);font-size:.82rem}

.cta-panel{
  text-align:center;
  display:grid;
  justify-items:center;
  gap:1rem;
  padding:2rem;
  background:
    linear-gradient(135deg,rgba(0,229,255,.12),transparent 44%),
    linear-gradient(315deg,rgba(244,63,94,.08),transparent 46%),
    rgba(255,255,255,.04);
}
.cta-panel h2{
  max-width:760px;
  font-size:3rem;
  font-weight:900;
}
.cta-panel p{
  max-width:660px;
  color:var(--muted);
}

.site-footer{
  padding:1.5rem 0 2rem;
}
.footer-shell{
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  padding:1.3rem;
  background:rgba(255,255,255,.035);
}
.footer-top{
  display:flex;
  justify-content:space-between;
  gap:2rem;
  align-items:flex-start;
}
.footer-copy{
  color:var(--muted);
  max-width:460px;
  margin-top:.85rem;
}
.footer-nav{
  display:flex;
  gap:.6rem;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.footer-nav a{
  color:var(--muted);
  text-decoration:none;
  padding:.42rem .55rem;
  border-radius:var(--radius);
}
.footer-nav a:hover{color:var(--text);background:rgba(255,255,255,.05)}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  color:var(--muted);
  font-size:.86rem;
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:1.2rem;
  padding-top:1rem;
}

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .65s cubic-bezier(.16,1,.3,1),transform .65s cubic-bezier(.16,1,.3,1);
}
.reveal.is-visible{opacity:1;transform:translateY(0)}
.tilt{transform-style:preserve-3d}

@media (max-width:1000px){
  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .contact-grid{grid-template-columns:1fr;gap:2.5rem}
  .products-hero .page-hero-grid{grid-template-columns:1fr}
  .products-hero .product-screen-hero{justify-items:center}
  .hero{padding-top:7.5rem}
  .hero h1{font-size:4rem;max-width:12ch}
  .section-head{display:grid;align-items:start}
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .grid-3{grid-template-columns:1fr}
  .stats-row{grid-template-columns:repeat(2,1fr)}
  .hero-stage,.page-visual{min-height:390px}
  .page-visual.image-visual img{height:min(54dvh,380px)}
}

@media (max-width:760px){
  #cur,#cur-ring{display:none}
  .site-header{
    position:sticky;
    top:0;
    width:100%;
    transform:none;
    left:auto;
    overflow:hidden;
  }
  .site-header-inner{
    min-height:auto;
    border-radius:0;
    border-left:0;
    border-right:0;
    flex-wrap:wrap;
    padding:.7rem 1rem;
  }
  .site-nav{order:3;width:100%;min-width:0}
  .site-nav ul{
    justify-content:flex-start;
    flex-wrap:wrap;
    gap:.08rem;
    overflow:visible;
    padding-bottom:.15rem;
  }
  .site-nav li{flex:0 0 auto}
  .site-nav a{min-height:34px;padding:.3rem .5rem;font-size:.8rem;white-space:nowrap}
  .header-cta{display:none}
  .brand-tag{display:none}
  .hero{min-height:auto;padding:4rem 0 3.5rem}
  .hero h1{font-size:3.1rem}
  .page-hero{padding:4.2rem 0 3rem}
  .section{padding:4rem 0}
  .section.compact{padding:3rem 0}
  .section-head h2,
  .page-hero-copy h1,
  .split-copy h2,
  .cta-panel h2{font-size:2.35rem}
  .grid-2,
  .grid-4,
  .stats-row,
  .pricing-line,
  .form-grid{grid-template-columns:1fr}
  .hero-stage,.page-visual{min-height:280px}
  .hero-logo-large{width:min(88%,330px)}
  .page-visual.image-visual img{width:min(100%,360px);height:260px}
  .footer-top,
  .footer-bottom{display:grid}
  .footer-nav{justify-content:flex-start}
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    scroll-behavior:auto!important;
    transition-duration:.01ms!important;
  }
}

/* ============================================================
   PREMIUM 3D DEPTH SYSTEM — homepage additions
   ============================================================ */

/* Scroll progress bar */
#scroll-progress{
  position:fixed;
  top:0;left:0;
  width:100%;
  height:2px;
  background:linear-gradient(90deg,var(--cyan),var(--blue));
  z-index:200;
  box-shadow:0 0 10px rgba(0,229,255,.7);
  pointer-events:none;
  transform:scaleX(0);
  transform-origin:left center;
  will-change:transform;
}

/* Hero override */
.hero{
  position:relative;
  overflow:hidden;
}

.hero h1{
  font-size:6rem;
}

/* Hero depth: grid layer */
.hero-grid-bg{
  position:absolute;
  inset:0;
  z-index:0;
  background-image:
    linear-gradient(rgba(0,229,255,.028) 1px,transparent 1px),
    linear-gradient(90deg,rgba(0,229,255,.028) 1px,transparent 1px);
  background-size:88px 88px;
  mask-image:radial-gradient(ellipse 90% 70% at 65% 45%,rgba(0,0,0,.65),transparent 74%);
  pointer-events:none;
}

/* Hero depth: color orbs */
.hero-orbs{
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
}

.h-orb{
  position:absolute;
  border-radius:50%;
  filter:blur(90px);
  pointer-events:none;
}

.h-orb-1{
  width:580px;height:580px;
  top:-100px;right:4%;
  background:radial-gradient(circle,rgba(0,229,255,.24),transparent 70%);
  animation:orbFloat 9s ease-in-out infinite;
}

.h-orb-2{
  width:420px;height:420px;
  bottom:8%;left:1%;
  background:radial-gradient(circle,rgba(41,121,255,.17),transparent 70%);
  animation:orbFloat 12s ease-in-out infinite 3.5s;
}

.h-orb-3{
  width:280px;height:280px;
  top:38%;left:36%;
  background:radial-gradient(circle,rgba(251,191,36,.08),transparent 70%);
  animation:orbFloat 14s ease-in-out infinite 7s;
}

@keyframes orbFloat{
  0%,100%{transform:translate(0,0) scale(1);opacity:.7}
  33%{transform:translate(18px,-28px) scale(1.06);opacity:1}
  66%{transform:translate(-14px,18px) scale(.94);opacity:.8}
}

/* Hero right column */
.hero-right{
  position:relative;
}

/* Hero micro-trust bar */
.hero-trust{
  display:flex;
  align-items:center;
  gap:1.4rem;
  margin-top:2rem;
  padding-top:1.5rem;
  border-top:1px solid rgba(255,255,255,.08);
}

.ht-item{
  display:flex;
  flex-direction:column;
  gap:.14rem;
}

.ht-num{
  font-size:1.45rem;
  font-weight:900;
  color:var(--text);
  line-height:1;
}

.ht-label{
  font-size:.7rem;
  color:var(--muted);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.ht-sep{
  width:1px;
  height:30px;
  background:rgba(255,255,255,.11);
  flex-shrink:0;
}

/* Floating capability pills */
.hero-pills{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:3;
}

.h-pill{
  position:absolute;
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding:.55rem 1rem;
  border-radius:999px;
  background:rgba(4,5,12,.9);
  border:1px solid rgba(255,255,255,.1);
  box-shadow:0 10px 36px rgba(0,0,0,.55),0 0 0 1px rgba(255,255,255,.04);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  font-size:.8rem;
  font-weight:800;
  color:var(--muted-2);
  white-space:nowrap;
  opacity:0;
}

.h-pill-dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--c,var(--cyan));
  box-shadow:0 0 8px var(--c,var(--cyan));
  flex-shrink:0;
}

.h-pill-1{top:4%;left:-12%}
.h-pill-2{top:36%;right:-14%}
.h-pill-3{bottom:24%;right:-10%}
.h-pill-4{bottom:6%;left:-8%}

@keyframes pillFloat{
  0%,100%{transform:translateY(0) rotate(0deg)}
  50%{transform:translateY(-10px) rotate(-.4deg)}
}

@keyframes pillIn{
  from{opacity:0;transform:scale(.85) translateY(8px)}
  to{opacity:1;transform:scale(1) translateY(0)}
}

/* Hero entrance choreography */
.hero-anim-1,
.hero-anim-2,
.hero-anim-3,
.hero-anim-4,
.hero-anim-5{
  opacity:0;
  transform:translateY(28px);
}

.hero-anim-2{transform:translateY(40px)}

body:not(.is-ready) .hero-anim-1,
body:not(.is-ready) .hero-anim-2,
body:not(.is-ready) .hero-anim-3,
body:not(.is-ready) .hero-anim-4,
body:not(.is-ready) .hero-anim-5,
body.is-ready .hero-copy:not(.hero-entering) .hero-anim-1,
body.is-ready .hero-copy:not(.hero-entering) .hero-anim-2,
body.is-ready .hero-copy:not(.hero-entering) .hero-anim-3,
body.is-ready .hero-copy:not(.hero-entering) .hero-anim-4,
body.is-ready .hero-copy:not(.hero-entering) .hero-anim-5{
  opacity:1;
  transform:none;
}

.hero-entering .hero-anim-1{animation:heroIn .7s cubic-bezier(.16,1,.3,1) .12s forwards}
.hero-entering .hero-anim-2{animation:heroIn .95s cubic-bezier(.16,1,.3,1) .26s forwards}
.hero-entering .hero-anim-3{animation:heroIn .7s cubic-bezier(.16,1,.3,1) .5s forwards}
.hero-entering .hero-anim-4{animation:heroIn .7s cubic-bezier(.16,1,.3,1) .65s forwards}
.hero-entering .hero-anim-5{animation:heroIn .7s cubic-bezier(.16,1,.3,1) .82s forwards}

.hero-copy.hero-entering .hero-anim-1,
.hero-copy.hero-entering .hero-anim-2,
.hero-copy.hero-entering .hero-anim-3,
.hero-copy.hero-entering .hero-anim-4,
.hero-copy.hero-entering .hero-anim-5{
  animation:none;
  opacity:1;
  transform:none;
}

@keyframes heroIn{
  from{opacity:0;transform:translateY(28px)}
  to{opacity:1;transform:translateY(0)}
}

.hero-right.hero-entering .h-pill-1{animation:pillIn .65s cubic-bezier(.16,1,.3,1) 1s forwards,pillFloat 6s ease-in-out infinite 1.65s}
.hero-right.hero-entering .h-pill-2{animation:pillIn .65s cubic-bezier(.16,1,.3,1) 1.18s forwards,pillFloat 7.5s ease-in-out infinite 1.83s}
.hero-right.hero-entering .h-pill-3{animation:pillIn .65s cubic-bezier(.16,1,.3,1) 1.34s forwards,pillFloat 5.5s ease-in-out infinite 1.99s}
.hero-right.hero-entering .h-pill-4{animation:pillIn .65s cubic-bezier(.16,1,.3,1) 1.5s forwards,pillFloat 8s ease-in-out infinite 2.15s}

/* Scroll-down indicator */
.scroll-down{
  position:absolute;
  bottom:2.5rem;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.45rem;
  z-index:3;
  pointer-events:none;
}

.sd-line{
  width:1px;
  height:38px;
  background:linear-gradient(180deg,transparent,var(--cyan));
  transform-origin:top;
  animation:sdPulse 2.2s ease-in-out infinite;
}

@keyframes sdPulse{
  0%{opacity:0;transform:scaleY(0)}
  40%{opacity:1;transform:scaleY(1);transform-origin:top}
  60%{opacity:1;transform:scaleY(1);transform-origin:bottom}
  100%{opacity:0;transform:scaleY(0);transform-origin:bottom}
}

.sd-text{
  font-size:.68rem;
  font-weight:800;
  color:var(--muted);
  letter-spacing:.12em;
  text-transform:uppercase;
}

/* ===== PILLAR CARDS ===== */
.pillars-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.25rem;
}

.pillar-card{
  position:relative;
  border-radius:12px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.07);
  box-shadow:0 20px 64px rgba(0,0,0,.3);
  overflow:hidden;
  transition:transform .38s cubic-bezier(.16,1,.3,1),box-shadow .38s,border-color .38s;
}

.pillar-card[data-accent="cyan"]{--pa-color:var(--cyan);--pa-rgb:0,229,255}
.pillar-card[data-accent="blue"]{--pa-color:var(--blue);--pa-rgb:41,121,255}
.pillar-card[data-accent="amber"]{--pa-color:var(--amber);--pa-rgb:251,191,36}

.pillar-accent-line{
  position:absolute;
  top:0;left:0;right:0;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--pa-color,var(--cyan)) 50%,transparent);
  opacity:.65;
}

.pillar-card::before{
  content:"";
  position:absolute;
  top:0;left:0;right:0;
  height:110px;
  background:linear-gradient(180deg,rgba(var(--pa-rgb,0,229,255),.07),transparent);
  pointer-events:none;
  z-index:0;
}

.pillar-bg-num{
  position:absolute;
  bottom:-.4rem;
  right:.4rem;
  font-size:8.5rem;
  font-weight:900;
  line-height:1;
  color:rgba(255,255,255,.028);
  user-select:none;
  pointer-events:none;
  z-index:0;
}

.pillar-inner{
  position:relative;
  z-index:1;
  padding:1.85rem;
  display:flex;
  flex-direction:column;
  gap:.55rem;
  min-height:290px;
}

.pillar-inner h3{
  font-size:1.45rem;
  font-weight:900;
  line-height:1.1;
}

.pillar-link{
  margin-top:auto;
  padding-top:.9rem;
  color:var(--pa-color,var(--cyan));
  font-size:.82rem;
  font-weight:800;
  text-decoration:none;
  opacity:.85;
  transition:opacity .2s;
}

.pillar-link:hover{opacity:1}

.pillar-card:hover{
  transform:translateY(-8px) scale(1.012);
  border-color:rgba(var(--pa-rgb,0,229,255),.28);
  box-shadow:0 32px 80px rgba(0,0,0,.45),0 0 40px rgba(var(--pa-rgb,0,229,255),.08);
}

/* ===== HOME POS ROUTE ===== */
.home-pos-grid{
  display:grid;
  grid-template-columns:minmax(0,.92fr) minmax(320px,.72fr);
  gap:3rem;
  align-items:center;
}
.home-pos-copy h2{
  max-width:11ch;
  font-size:clamp(2.35rem,4.8vw,4.8rem);
  line-height:.94;
  letter-spacing:0;
  margin:.7rem 0 1rem;
}
.home-pos-copy p{
  max-width:620px;
  color:var(--muted);
  font-size:1.02rem;
}
.home-pos-points{
  display:flex;
  flex-wrap:wrap;
  gap:.55rem;
  margin:1.25rem 0 1.6rem;
}
.home-pos-points span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:.34rem .7rem;
  border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius);
  background:rgba(255,255,255,.045);
  color:var(--muted-2);
  font-size:.76rem;
  font-weight:800;
}
.home-pos-panel{
  position:relative;
  padding:1rem;
  border:1px solid rgba(0,229,255,.18);
  border-radius:var(--radius);
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.024));
  box-shadow:0 24px 78px rgba(0,0,0,.38),0 0 54px rgba(0,229,255,.07);
}
.home-pos-register{
  overflow:hidden;
  border:1px solid rgba(0,229,255,.18);
  border-radius:var(--radius);
  background:rgba(4,5,12,.95);
}
.home-pos-top,
.home-pos-line,
.home-pos-total{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  align-items:center;
}
.home-pos-top{
  padding:.8rem .9rem;
  border-bottom:1px solid rgba(0,229,255,.14);
  background:rgba(0,229,255,.055);
  color:var(--cyan);
  font-size:.72rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.05em;
}
.home-pos-top strong{color:var(--muted-2);font-size:.68rem}
.home-pos-line{
  margin:.55rem .85rem;
  padding:.55rem .65rem;
  border-radius:6px;
  background:rgba(255,255,255,.045);
  color:var(--muted-2);
  font-size:.82rem;
}
.home-pos-line strong,
.home-pos-total strong{
  color:var(--text);
  font-variant-numeric:tabular-nums;
}
.home-pos-total{
  padding:.9rem;
  border-top:1px solid rgba(255,255,255,.08);
}
.home-pos-total span{
  color:var(--muted);
  font-size:.72rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.home-pos-total strong{font-size:1.45rem}
.home-pos-kpis{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:.6rem;
  margin-top:.8rem;
}
.home-pos-kpis div{
  padding:.75rem;
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  background:rgba(255,255,255,.04);
}
.home-pos-kpis span{
  display:block;
  color:var(--muted);
  font-size:.66rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.05em;
}
.home-pos-kpis strong{
  display:block;
  margin-top:.25rem;
  color:var(--text);
  font-size:1.1rem;
}

/* ===== HOME BIZ SUITE ROUTE ===== */
.home-suite-grid{
  display:grid;
  grid-template-columns:minmax(0,.92fr) minmax(320px,.72fr);
  gap:3rem;
  align-items:center;
}
.home-suite-copy h2{
  max-width:13ch;
  font-size:clamp(2.35rem,4.8vw,4.8rem);
  line-height:.94;
  letter-spacing:0;
  margin:.7rem 0 1rem;
}
.home-suite-copy p{
  max-width:660px;
  color:var(--muted);
  font-size:1.02rem;
}
.suite-module-strip{
  display:flex;
  flex-wrap:wrap;
  gap:.55rem;
  margin:1.25rem 0 1.6rem;
}
.suite-module-strip span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:.34rem .7rem;
  border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius);
  background:rgba(255,255,255,.045);
  color:var(--muted-2);
  font-size:.76rem;
  font-weight:800;
}
.suite-snapshot{
  padding:1rem;
  border:1px solid rgba(0,229,255,.18);
  border-radius:var(--radius);
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.024));
  box-shadow:0 24px 78px rgba(0,0,0,.38),0 0 54px rgba(0,229,255,.07);
}
.app-shot{
  overflow:hidden;
  margin:0;
}
.app-shot img{
  display:block;
  width:100%;
  height:auto;
  border-radius:6px;
  background:#eef2f7;
}
.app-shot figcaption,
.app-shot-mini figcaption{
  display:grid;
  gap:.25rem;
  padding:.8rem .15rem 0;
}
.app-shot figcaption span,
.app-shot-mini figcaption span{
  color:var(--cyan);
  font-size:.7rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.05em;
}
.app-shot figcaption strong,
.app-shot-mini figcaption strong{
  color:var(--muted-2);
  font-size:.86rem;
  line-height:1.35;
}
.page-visual.image-visual.product-screen-hero img{
  width:min(100%,860px);
  height:auto;
  max-height:min(62dvh,560px);
  padding:.35rem;
  object-fit:contain;
  object-position:center;
  background:#eef2f7;
}
.products-hero .page-hero-grid{
  grid-template-columns:minmax(0,.72fr) minmax(560px,1.28fr);
  gap:2rem;
}
.products-hero .product-screen-hero{
  justify-items:start;
}
.app-shot-stack{
  display:grid;
  gap:.85rem;
}
.app-shot-mini{
  display:grid;
  grid-template-columns:minmax(210px,.9fr) minmax(0,1fr);
  gap:.85rem;
  align-items:center;
  margin:0;
  padding:.75rem;
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  background:rgba(255,255,255,.04);
}
.app-shot-mini img{
  display:block;
  width:100%;
  height:clamp(118px,10vw,150px);
  aspect-ratio:16/9;
  object-fit:contain;
  object-position:center;
  border-radius:6px;
  background:#eef2f7;
}
.app-shot-mini figcaption{padding:0}
.pos-real-shot{
  width:min(100%,680px);
  padding:.9rem;
  border:1px solid rgba(0,229,255,.18);
  border-radius:var(--radius);
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.024));
  box-shadow:0 30px 90px rgba(0,0,0,.48),0 0 70px rgba(0,229,255,.08);
}
.pos-real-shot img{
  aspect-ratio:16/9;
  object-fit:cover;
  object-position:left top;
}
.suite-snapshot-top{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  align-items:center;
  padding:.75rem .8rem;
  border:1px solid rgba(0,229,255,.15);
  border-radius:var(--radius);
  background:rgba(0,229,255,.055);
  color:var(--cyan);
  font-size:.72rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.05em;
}
.suite-snapshot-top strong{color:var(--muted-2);font-size:.68rem}
.suite-kpi-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.65rem;
  margin:.8rem 0;
}
.suite-kpi-grid div,
.suite-alert-list span{
  padding:.75rem;
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  background:rgba(255,255,255,.04);
}
.suite-kpi-grid span{
  display:block;
  color:var(--muted);
  font-size:.66rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.05em;
}
.suite-kpi-grid strong{
  display:block;
  margin-top:.25rem;
  color:var(--text);
  font-size:1.08rem;
}
.suite-alert-list{
  display:grid;
  gap:.55rem;
}
.suite-alert-list span{
  color:var(--muted-2);
  font-size:.82rem;
  font-weight:700;
}

/* ===== STATS BAND ===== */
.stats-band{
  padding:5rem 0;
  position:relative;
  border-block:1px solid rgba(255,255,255,.055);
  background:rgba(255,255,255,.017);
}

.stats-band::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,transparent,rgba(0,229,255,.04) 50%,transparent);
  pointer-events:none;
}

.stats-inner{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1rem;
  text-align:center;
}

.stat-big{
  padding:1.5rem;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.45rem;
}

.stat-big-row{
  display:flex;
  align-items:flex-start;
  gap:.06em;
  line-height:1;
}

.stat-big-num{
  display:block;
  font-size:4rem;
  font-weight:900;
  line-height:1;
  background:linear-gradient(135deg,var(--text) 30%,var(--muted-2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.stat-big-plus{
  font-size:2rem;
  font-weight:900;
  color:var(--cyan);
  line-height:1.18;
  margin-top:.06em;
}

.stat-big-label{
  font-size:.8rem;
  color:var(--muted);
  font-weight:600;
  max-width:14ch;
  text-align:center;
}

/* ===== DEPTH CARD ===== */
.depth-card{
  transition:transform .28s cubic-bezier(.16,1,.3,1),box-shadow .28s,border-color .28s;
}

.depth-card:hover{
  transform:translateY(-3px);
  border-color:rgba(0,229,255,.2);
  box-shadow:0 18px 52px rgba(0,0,0,.35),0 0 24px rgba(0,229,255,.06);
}

/* ===== PROCESS ===== */
.process-track{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.25rem;
  position:relative;
  margin-top:1rem;
}

.process-step-card{
  position:relative;
  padding:2rem;
  border-radius:12px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.07);
  box-shadow:0 16px 50px rgba(0,0,0,.28);
  transition:transform .35s cubic-bezier(.16,1,.3,1),box-shadow .35s,border-color .35s;
}

.psc-badge{
  width:52px;
  height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:linear-gradient(135deg,var(--cyan),var(--blue));
  font-size:.88rem;
  font-weight:900;
  color:#04050c;
  margin-bottom:1.3rem;
  flex-shrink:0;
  box-shadow:0 0 20px rgba(0,229,255,.28);
}

.psc-connector{
  position:absolute;
  top:3.25rem;
  right:-.7rem;
  width:1.4rem;
  height:1px;
  background:linear-gradient(90deg,rgba(0,229,255,.5),transparent);
  z-index:2;
}

.psc-body h3{
  font-size:1.25rem;
  font-weight:900;
  margin-bottom:.6rem;
}

.psc-body p{
  color:var(--muted);
  font-size:.92rem;
}

/* ===== PROOF SECTION ===== */
.proof-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2.5rem;
  align-items:center;
}

.proof-quote{
  padding:2.5rem;
  border-radius:14px;
  background:linear-gradient(135deg,rgba(0,229,255,.07),rgba(41,121,255,.04));
  border:1px solid rgba(0,229,255,.17);
  box-shadow:0 24px 72px rgba(0,0,0,.35),0 0 40px rgba(0,229,255,.06);
  position:relative;
  overflow:hidden;
}

.proof-quote::before{
  content:"";
  position:absolute;
  top:0;left:0;right:0;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--cyan),transparent);
}

.pq-mark{
  font-size:5.5rem;
  line-height:.8;
  color:var(--cyan);
  opacity:.2;
  font-weight:900;
  margin-bottom:.4rem;
  font-family:Georgia,serif;
}

.proof-quote blockquote p{
  font-size:1.05rem;
  color:var(--text);
  line-height:1.68;
  font-style:italic;
}

.proof-quote blockquote footer{
  margin-top:1.5rem;
  display:grid;
  gap:.2rem;
}

.pq-name{
  font-weight:800;
  color:var(--text);
  font-style:normal;
}

.pq-role{
  font-size:.82rem;
  color:var(--muted);
  font-style:normal;
}

.proof-side{
  display:flex;
  flex-direction:column;
  gap:1rem;
}

.proof-side h2{
  font-size:2.8rem;
  font-weight:900;
  max-width:14ch;
  margin-top:.4rem;
}

.proof-side>p{
  color:var(--muted);
  max-width:48ch;
}

.trust-chips{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  margin-top:.35rem;
}

.trust-chip{
  padding:.32rem .72rem;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  font-size:.78rem;
  font-weight:800;
  color:var(--muted-2);
}

/* ===== SPOTLIGHT CTA ===== */
.cta-spotlight{
  position:relative;
  text-align:center;
  padding:5.5rem 2rem;
  border-radius:16px;
  background:rgba(255,255,255,.028);
  border:1px solid rgba(255,255,255,.07);
  overflow:hidden;
  display:grid;
  justify-items:center;
  gap:1.2rem;
}

.cta-spotlight-glow{
  position:absolute;
  top:-55%;
  left:50%;
  transform:translateX(-50%);
  width:720px;
  height:420px;
  border-radius:50%;
  background:radial-gradient(ellipse,rgba(0,229,255,.13) 0%,rgba(41,121,255,.06) 40%,transparent 70%);
  filter:blur(44px);
  pointer-events:none;
  animation:spotlightPulse 6.5s ease-in-out infinite;
}

@keyframes spotlightPulse{
  0%,100%{opacity:.7;transform:translateX(-50%) scale(1)}
  50%{opacity:1;transform:translateX(-50%) scale(1.12)}
}

.cta-spotlight .eyebrow{
  position:relative;z-index:1
}

.cta-spotlight h2{
  font-size:3.5rem;
  font-weight:900;
  max-width:700px;
  position:relative;
  z-index:1;
}

.cta-spotlight>p{
  color:var(--muted);
  max-width:54ch;
  position:relative;
  z-index:1;
}

.cta-btns{
  justify-content:center;
  position:relative;
  z-index:1;
}

.cta-footnote{
  font-size:.78rem;
  color:var(--muted);
  position:relative;
  z-index:1;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media(max-width:1000px){
  .pillars-grid{grid-template-columns:1fr}
  .home-pos-grid{grid-template-columns:1fr;gap:2rem}
  .home-suite-grid{grid-template-columns:1fr;gap:2rem}
  .home-pos-copy h2{max-width:13ch}
  .home-suite-copy h2{max-width:14ch}
  .pos-real-shot{width:min(100%,760px)}
  .stats-inner{grid-template-columns:repeat(2,1fr)}
  .process-track{grid-template-columns:1fr;gap:1rem}
  .psc-connector{display:none}
  .proof-grid{grid-template-columns:1fr}
  .hero-pills{display:none}
  .cta-spotlight h2{font-size:2.6rem}
  .hero h1{font-size:4.3rem}
  .hero-stage{min-height:330px}
}

@media(max-width:760px){
  .hero-trust{display:none}
  .home-pos-copy h2{font-size:2.25rem;max-width:12ch}
  .home-suite-copy h2{font-size:2.25rem;max-width:13ch}
  .home-pos-kpis{grid-template-columns:1fr}
  .suite-kpi-grid{grid-template-columns:1fr}
  .home-pos-panel{padding:.75rem}
  .suite-snapshot{padding:.75rem}
  .app-shot-mini{grid-template-columns:1fr}
  .app-shot-mini img{height:auto;max-height:none}
  .page-visual.image-visual.product-screen-hero img{width:100%;height:auto;max-height:none}
  .pos-real-shot{padding:.65rem}
  .stats-inner{grid-template-columns:repeat(2,1fr)}
  .stat-big-num{font-size:3rem}
  .cta-spotlight{padding:3.5rem 1.5rem}
  .cta-spotlight h2{font-size:2rem}
  .proof-side h2{font-size:2rem}
  .hero{padding:3rem 0 3rem}
  .hero h1{font-size:2.9rem}
  .hero p{margin:1.1rem 0 1.35rem}
  .hero-stage{min-height:240px}
  .scroll-down{display:none}
}

/* ============================================================
   POS LANDING PAGE
   ============================================================ */
.pos-terminal{position:relative;max-width:400px;margin:auto;padding:2.5rem 3rem 2.5rem .5rem}
.pos-screen{background:rgba(4,5,12,.96);border:1px solid rgba(0,229,255,.24);border-radius:14px;overflow:hidden;box-shadow:0 30px 90px rgba(0,0,0,.55),0 0 60px rgba(0,229,255,.08)}
.pos-bar{display:flex;justify-content:space-between;align-items:center;padding:.72rem 1rem;background:rgba(0,229,255,.06);border-bottom:1px solid rgba(0,229,255,.14);font-size:.7rem;font-weight:800;color:var(--cyan);letter-spacing:.03em}
.pos-bar span:last-child{color:var(--muted);font-weight:600}
.pos-items{padding:.8rem 1rem;display:flex;flex-direction:column;gap:.42rem}
.pos-row{display:flex;justify-content:space-between;align-items:center;padding:.42rem .65rem;border-radius:6px;background:rgba(255,255,255,.04);font-size:.8rem}
.pos-row span:first-child{color:var(--muted-2)}
.pos-row span:last-child{color:var(--text);font-weight:700;font-variant-numeric:tabular-nums}
.pos-totals{display:flex;justify-content:space-between;align-items:center;padding:.75rem 1rem;border-top:1px solid rgba(255,255,255,.07)}
.pos-totals span{color:var(--muted);font-size:.7rem;font-weight:900;text-transform:uppercase;letter-spacing:.06em}
.pos-totals strong{font-size:1.5rem;font-weight:900;color:var(--text);font-variant-numeric:tabular-nums}
.pos-complete{margin:0 1rem 1rem;padding:.85rem;border-radius:8px;background:linear-gradient(135deg,var(--cyan),var(--blue));color:#04050c;font-weight:900;font-size:.75rem;text-align:center;letter-spacing:.08em;text-transform:uppercase}
.pos-badge{position:absolute;display:inline-flex;align-items:center;gap:.42rem;padding:.42rem .85rem;border-radius:999px;background:rgba(4,5,12,.92);border:1px solid rgba(255,255,255,.1);box-shadow:0 8px 28px rgba(0,0,0,.55);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);font-size:.7rem;font-weight:800;color:var(--muted-2);white-space:nowrap;animation:badgeFloat 4s ease-in-out infinite}
.pos-badge::before{content:'';width:6px;height:6px;border-radius:50%;background:var(--c,var(--green));box-shadow:0 0 8px var(--c,var(--green));flex-shrink:0}
.pos-badge-1{top:1.2rem;left:-1.8rem;animation-delay:0s}
.pos-badge-2{top:42%;right:-2rem;animation-delay:1.4s}
.pos-badge-3{bottom:3rem;left:-2rem;animation-delay:2.8s}
@keyframes badgeFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-7px)}}
.pos-stats{display:flex;gap:2rem;margin-top:2.2rem;padding-top:1.8rem;border-top:1px solid rgba(255,255,255,.08);align-items:center}
.pos-stat-item{display:flex;flex-direction:column;gap:.12rem}
.pos-stat-num{font-size:1.5rem;font-weight:900;color:var(--text);line-height:1}
.pos-stat-label{font-size:.68rem;color:var(--muted);font-weight:700;text-transform:uppercase;letter-spacing:.04em}
.pos-stat-sep{width:1px;height:30px;background:rgba(255,255,255,.1);flex-shrink:0}
.pain-card{padding:1.35rem;border:1px solid rgba(244,63,94,.14);border-radius:var(--radius);background:linear-gradient(180deg,rgba(244,63,94,.06),rgba(255,255,255,.022));box-shadow:0 18px 54px rgba(0,0,0,.3)}
.pain-icon{font-size:1.5rem;display:block;margin-bottom:.8rem;line-height:1}
.pain-card h3{font-size:1rem;margin-bottom:.45rem}
.pain-card p{color:var(--muted);font-size:.86rem;line-height:1.5}
.vertical-card{padding:1.6rem;border:1px solid rgba(255,255,255,.08);border-radius:var(--radius);background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.026));box-shadow:0 18px 54px rgba(0,0,0,.3)}
.vertical-num{display:block;font-size:2.6rem;font-weight:900;color:rgba(0,229,255,.18);line-height:1;margin-bottom:.75rem;font-variant-numeric:tabular-nums}
.vertical-card h3{font-size:1.15rem;margin-bottom:.9rem}
.vertical-card .check-list span{font-size:.83rem}
.report-tier{padding:1.35rem;border:1px solid rgba(255,255,255,.08);border-radius:var(--radius);background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.026))}
.report-tier-label{display:inline-block;font-size:.7rem;font-weight:900;text-transform:uppercase;letter-spacing:.04em;color:var(--cyan);background:rgba(0,229,255,.09);border:1px solid rgba(0,229,255,.2);border-radius:var(--radius);padding:.2rem .65rem;margin-bottom:.9rem}
.report-tier h3{font-size:1rem;margin-bottom:.75rem}
.role-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.role-card{padding:1.25rem;border:1px solid rgba(255,255,255,.08);border-radius:var(--radius);background:rgba(255,255,255,.04);text-align:center}
.role-icon{width:44px;height:44px;border-radius:50%;background:rgba(0,229,255,.08);border:1px solid rgba(0,229,255,.2);display:flex;align-items:center;justify-content:center;margin:0 auto .85rem;font-size:.65rem;font-weight:900;color:var(--cyan);letter-spacing:.04em;text-transform:uppercase}
.role-card h3{font-size:.9rem;margin-bottom:.4rem}
.role-card p{color:var(--muted);font-size:.78rem;line-height:1.45}
.pplus-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.pplus-card{padding:1.7rem;border-radius:var(--radius);background:linear-gradient(135deg,rgba(0,229,255,.08),rgba(41,121,255,.04));border:1px solid rgba(0,229,255,.2);box-shadow:0 18px 54px rgba(0,0,0,.3)}
.pplus-badge{display:inline-flex;align-items:center;gap:.4rem;padding:.22rem .7rem;border-radius:999px;background:linear-gradient(90deg,var(--amber),#f59e0b);color:#0a0603;font-size:.65rem;font-weight:900;text-transform:uppercase;letter-spacing:.05em;margin-bottom:.85rem}
.pplus-card h3{font-size:1.1rem;margin-bottom:.8rem}
.pricing-table{display:grid;grid-template-columns:repeat(5,1fr);gap:.8rem;align-items:start}
.plan-card{padding:1.35rem;border:1px solid rgba(255,255,255,.08);border-radius:var(--radius);background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02));position:relative}
.plan-card.featured{border-color:rgba(0,229,255,.35);background:linear-gradient(180deg,rgba(0,229,255,.1),rgba(41,121,255,.05));margin-top:-8px}
.plan-featured-badge{position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:linear-gradient(90deg,var(--cyan),var(--blue));color:#04050c;font-size:.62rem;font-weight:900;padding:.2rem .85rem;border-radius:999px;text-transform:uppercase;letter-spacing:.04em;white-space:nowrap}
.plan-name{font-size:1rem;font-weight:900;margin-bottom:.55rem;color:var(--text)}
.plan-free-badge{display:inline-block;font-size:.65rem;font-weight:900;color:var(--green);background:rgba(52,211,153,.1);border:1px solid rgba(52,211,153,.22);border-radius:var(--radius);padding:.15rem .5rem;margin-bottom:.55rem}
.plan-card .check-list{margin-top:.9rem}
.plan-card .check-list span{font-size:.76rem}
.os-badge{display:inline-flex;align-items:center;gap:.5rem;padding:.32rem .8rem;border-radius:var(--radius);background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);font-size:.75rem;font-weight:700;color:var(--muted-2);margin-top:1.1rem}
@media(max-width:1000px){
  .pricing-table{grid-template-columns:repeat(3,1fr)}
  .product-flagship,
  .product-secondary-grid{grid-template-columns:1fr}
  .products-hero .page-hero-grid{grid-template-columns:1fr}
  .products-hero .product-screen-hero{justify-items:center}
  .suite-module-grid{grid-template-columns:repeat(2,1fr)}
  .role-grid{grid-template-columns:repeat(2,1fr)}
  .pplus-grid{grid-template-columns:1fr}
  .pos-terminal{padding:2rem 2rem 2rem .5rem}
}
@media(max-width:760px){
  .pricing-table{grid-template-columns:1fr 1fr}
  .product-flagship{padding:1.15rem}
  .product-flagship h2{font-size:2.4rem}
  .product-actions{display:grid}
  .page-visual.image-visual.product-screen-hero img{width:100%;height:auto;max-height:none}
  .suite-module-grid{grid-template-columns:1fr}
  .pos-stats{gap:1.2rem}
  .pos-badge-1,.pos-badge-3{left:-.5rem}
  .pos-badge-2{right:-.5rem}
}

/* ============================================================
   POS RETAIL-FIRST REWORK
   ============================================================ */
.pos-hero{padding:8.8rem 0 5.6rem}
.pos-hero-grid{align-items:center;gap:4rem}
.pos-hero .page-hero-copy h1{max-width:12ch}
.pos-hero .page-hero-copy p{max-width:620px}
.pos-proof-row{
  display:flex;
  flex-wrap:wrap;
  gap:.65rem;
  margin-top:1.35rem;
}
.pos-proof-row span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:.38rem .7rem;
  border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius);
  background:rgba(255,255,255,.045);
  color:var(--muted-2);
  font-size:.76rem;
  font-weight:800;
}
.pos-visual{
  min-height:auto;
  display:flex;
  align-items:center;
  justify-content:center;
}
.pos-mockup{
  width:min(100%,440px);
  padding:1rem;
  border:1px solid rgba(0,229,255,.18);
  border-radius:var(--radius);
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.025));
  box-shadow:0 30px 90px rgba(0,0,0,.48),0 0 70px rgba(0,229,255,.08);
}
.mockup-tabs{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:.45rem;
  margin-bottom:.8rem;
}
.mockup-tab{
  min-height:38px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-size:.75rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.04em;
  cursor:pointer;
}
.mockup-tab.is-active,
.mockup-tab:focus-visible{
  color:#04050c;
  background:linear-gradient(135deg,var(--cyan),var(--blue));
  outline:0;
}
.mockup-panel{display:none}
.mockup-panel.is-active{display:block}
.retail-screen{border-radius:var(--radius)}
.scan-line{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.8rem;
  margin:.9rem 1rem .2rem;
  padding:.7rem .75rem;
  border:1px solid rgba(0,229,255,.14);
  border-radius:var(--radius);
  background:rgba(0,229,255,.055);
}
.scan-line span,
.stock-card span,
.stock-grid span,
.report-total span,
.report-bars span{
  color:var(--muted);
  font-size:.68rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.05em;
}
.scan-line strong{color:var(--cyan);font-size:.86rem}
.tender-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:.4rem;
  padding:0 1rem .85rem;
}
.tender-row span{
  padding:.42rem .55rem;
  border:1px solid rgba(255,255,255,.08);
  border-radius:6px;
  background:rgba(255,255,255,.04);
  color:var(--muted-2);
  font-size:.68rem;
  font-weight:800;
  text-align:center;
}
.stock-card{
  margin:1rem;
  padding:1rem;
  border:1px solid rgba(251,191,36,.22);
  border-radius:var(--radius);
  background:linear-gradient(180deg,rgba(251,191,36,.12),rgba(255,255,255,.035));
}
.stock-card strong{display:block;margin:.22rem 0;color:var(--text);font-size:1.25rem}
.stock-card small{color:var(--amber);font-weight:800}
.stock-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.6rem;
  padding:0 1rem .8rem;
}
.stock-grid div{
  padding:.8rem;
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  background:rgba(255,255,255,.04);
}
.stock-grid strong{display:block;color:var(--text);font-size:1rem}
.inventory-list{
  display:grid;
  gap:.45rem;
  padding:0 1rem 1rem;
}
.inventory-list span{
  padding:.55rem .65rem;
  border-radius:6px;
  background:rgba(255,255,255,.04);
  color:var(--muted-2);
  font-size:.76rem;
  font-weight:700;
}
.report-total{
  margin:1rem;
  padding:1rem;
  border:1px solid rgba(0,229,255,.16);
  border-radius:var(--radius);
  background:rgba(0,229,255,.06);
}
.report-total strong{display:block;color:var(--text);font-size:1.7rem;line-height:1.1}
.report-bars{
  display:grid;
  gap:.55rem;
  padding:0 1rem .9rem;
}
.report-bars div{
  position:relative;
  display:flex;
  justify-content:space-between;
  gap:.75rem;
  overflow:hidden;
  padding:.58rem .7rem;
  border-radius:6px;
  background:rgba(255,255,255,.04);
}
.report-bars div::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:var(--w);
  background:linear-gradient(90deg,rgba(0,229,255,.2),transparent);
}
.report-bars span,
.report-bars strong{position:relative;z-index:1}
.report-bars strong{color:var(--text);font-size:.78rem}
.workflow-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1rem;
}
.workflow-card{
  min-height:100%;
  padding:1.35rem;
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.024));
  box-shadow:0 18px 54px rgba(0,0,0,.25);
}
.workflow-step{
  display:inline-flex;
  margin-bottom:.85rem;
  color:var(--cyan);
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.08em;
}
.workflow-card h3{font-size:1rem;margin-bottom:.48rem}
.workflow-card p{color:var(--muted);font-size:.88rem;line-height:1.55}
.local-grid{display:grid;gap:.85rem}
.local-row{
  display:grid;
  grid-template-columns:minmax(170px,.34fr) 1fr;
  gap:1rem;
  align-items:start;
  padding:1.05rem 1.15rem;
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  background:rgba(255,255,255,.04);
}
.local-row strong{color:var(--text)}
.local-row span{color:var(--muted)}
.pricing-compare{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:.85rem;
  align-items:stretch;
}
.compare-card{
  position:relative;
  min-height:100%;
  padding:1.25rem;
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  background:linear-gradient(180deg,rgba(255,255,255,.052),rgba(255,255,255,.024));
}
.compare-card.featured{
  border-color:rgba(0,229,255,.38);
  background:linear-gradient(180deg,rgba(0,229,255,.11),rgba(41,121,255,.045));
  box-shadow:0 24px 74px rgba(0,0,0,.35),0 0 42px rgba(0,229,255,.07);
}
.compare-head span{
  display:block;
  color:var(--cyan);
  font-size:.72rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.compare-head strong{
  display:block;
  margin-top:.4rem;
  color:var(--text);
  font-size:1rem;
  line-height:1.2;
}
.compare-head.premium-plus span{color:var(--amber)}
.compare-card p{margin-top:.8rem;color:var(--muted);font-size:.84rem;line-height:1.5}
.pricing-note{
  margin-top:1.35rem;
  color:var(--muted);
  font-size:.86rem;
  text-align:center;
}

@media(max-width:1000px){
  .pos-hero{padding:6rem 0 4.4rem}
  .pos-hero-grid{gap:2.4rem}
  .pos-hero .page-hero-copy h1{max-width:14ch}
  .workflow-grid,
  .pricing-compare{grid-template-columns:repeat(2,1fr)}
  .pos-mockup{width:min(100%,500px)}
}

@media(max-width:760px){
  .pos-hero{padding:3.2rem 0 2.8rem}
  .pos-hero-grid{gap:2rem}
  .pos-hero .page-hero-copy h1{max-width:12ch;font-size:2.45rem}
  .pos-hero .page-hero-copy p{font-size:1rem}
  .pos-proof-row{gap:.5rem}
  .pos-proof-row span{font-size:.7rem}
  .pos-visual{min-height:auto}
  .pos-mockup{padding:.7rem;width:100%}
  .mockup-tabs{gap:.32rem}
  .mockup-tab{min-height:34px;font-size:.64rem;letter-spacing:.02em}
  .pos-bar{gap:.5rem;font-size:.62rem}
  .pos-row{font-size:.74rem}
  .pos-totals strong,
  .report-total strong{font-size:1.35rem}
  .workflow-grid,
  .pricing-compare,
  .local-row{grid-template-columns:1fr}
  .workflow-card,
  .compare-card{padding:1.1rem}
  .role-grid{grid-template-columns:1fr}
}
