﻿:root{
  --bg:#030914;
  --bg2:#01050d;
  --panel:#07111f;
  --card:#071422;
  --line:rgba(221,151,38,.62);
  --line-soft:rgba(221,151,38,.25);
  --gold:#d99a27;
  --gold2:#ffd476;
  --gold3:#9c6518;
  --white:#f8fbff;
  --muted:#c1c8d3;
  --soft:#828b9b;
  --max:1180px;
  --wide:1320px;
  --font-title:"Inter Tight",Inter,system-ui,sans-serif;
  --font-subtitle:"Space Grotesk",Inter,system-ui,sans-serif;
  --font-body:Inter,system-ui,-apple-system,Segoe UI,sans-serif;
}

@property --reveal{
  syntax:"<percentage>";
  inherits:true;
  initial-value:0%;
}

*{box-sizing:border-box}
html{scroll-behavior:auto;background:var(--bg2)}
body{
  margin:0;
  background:
    radial-gradient(circle at 12% 2%,rgba(21,42,64,.46),transparent 24%),
    radial-gradient(circle at 87% 11%,rgba(217,154,39,.12),transparent 25%),
    linear-gradient(180deg,#030914 0%,#020813 100%);
  color:var(--white);
  font-family:var(--font-body);
  line-height:1.5;
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
picture{display:contents}
h1,h2,h3,p{overflow-wrap:break-word}
.site-canvas{
  width:100%;
  margin:0;
  min-height:100vh;
  background:
    radial-gradient(circle at 76% 18%,rgba(221,151,38,.08),transparent 30%),
    radial-gradient(circle at 8% 48%,rgba(20,49,77,.32),transparent 38%),
    linear-gradient(180deg,rgba(6,16,29,.88),rgba(2,8,19,.98));
  box-shadow:none;
  position:relative;
  overflow:hidden;
}
.site-canvas:before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image:
    radial-gradient(circle,rgba(255,210,111,.28) 0 1px,transparent 1.6px),
    radial-gradient(circle,rgba(255,255,255,.18) 0 1px,transparent 1.4px);
  background-size:180px 220px,260px 190px;
  background-position:40px 420px,120px 80px;
  opacity:.26;
}
.site-header{
  width:min(var(--max),calc(100% - 48px));
  height:98px;
  margin:0 auto;
  display:grid;
  grid-template-columns:286px 1fr 182px;
  align-items:center;
  gap:14px;
  position:relative;
  z-index:30;
}

.logo-img{
  width:auto;
  height:92px;
  object-fit:contain;
  filter:none;
  box-shadow:none;
}
.nav-links{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:21px;
  font-family:var(--font-subtitle);
  font-size:12.5px;
  color:#f6f8fb;
  font-weight:400;
}
.nav-links a{opacity:.94;transition:.2s}
.nav-links a:hover{color:var(--gold2)}
.nav-service-menu{
  position:relative;
  z-index:35;
}
.nav-service-menu:after{
  content:"";
  position:absolute;
  left:-12px;
  right:-12px;
  top:100%;
  height:18px;
}
.nav-service-toggle{
  border:0;
  padding:0;
  color:#f6f8fb;
  background:transparent;
  font:inherit;
  cursor:pointer;
  opacity:.94;
  display:inline-flex;
  align-items:center;
  gap:5px;
  transition:.2s;
}
.nav-service-toggle:hover,
.nav-service-toggle:focus-visible{
  color:var(--gold2);
}
.nav-service-toggle span{
  color:var(--gold2);
  font-size:10px;
  transform:translateY(1px);
}
.nav-service-dropdown{
  position:absolute;
  left:50%;
  top:calc(100% + 14px);
  min-width:230px;
  transform:translate(-50%,-6px);
  display:grid;
  gap:4px;
  padding:10px;
  border:1px solid rgba(221,151,38,.34);
  border-radius:10px;
  background:rgba(3,10,18,.96);
  backdrop-filter:none;
  box-shadow:0 24px 54px rgba(0,0,0,.34),inset 0 1px 0 rgba(255,255,255,.05);
  z-index:40;
  opacity:0;
  pointer-events:none;
  will-change:auto;
  transition:opacity .18s ease,transform .18s ease;
}
.nav-service-menu:hover .nav-service-dropdown,
.nav-service-menu:focus-within .nav-service-dropdown,
.nav-service-menu.open .nav-service-dropdown{
  opacity:1 !important;
  transform:translate(-50%,0) !important;
  pointer-events:auto !important;
}
.nav-service-menu.open .nav-service-toggle span,
.nav-service-menu:focus-within .nav-service-toggle span,
.nav-service-menu:hover .nav-service-toggle span{
  transform:translateY(1px) rotate(180deg);
}
.nav-service-dropdown a{
  min-height:38px;
  display:flex;
  align-items:center;
  padding:0 12px;
  border-radius:7px;
  color:#f8fbff;
  white-space:nowrap;
}
.nav-service-dropdown a:hover,
.nav-service-dropdown a:focus-visible{
  color:#ffd476;
  background:rgba(221,151,38,.12);
}
.nav-cta{
  border:1px solid rgba(221,151,38,.82);
  border-radius:8px;
  height:38px;
  padding:0 14px 0 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-family:var(--font-subtitle);
  font-size:12.5px;
  color:#fff;
  white-space:nowrap;
  box-shadow:inset 0 0 0 1px rgba(255,220,132,.05);
}
.nav-cta span{color:var(--gold2);font-size:22px;line-height:1}
.menu-button{
  display:none;
  position:relative;
  width:46px;
  height:46px;
  border:1px solid rgba(255,212,118,.46);
  border-radius:15px;
  background:
    linear-gradient(180deg,rgba(16,27,44,.92),rgba(5,11,23,.96)),
    rgba(2,8,19,.86);
  color:#fff;
  padding:0;
  place-items:center;
  gap:0;
  overflow:hidden;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.12),inset 0 -1px 0 rgba(0,0,0,.34),0 14px 30px rgba(0,0,0,.24);
  cursor:pointer;
  transition:border-color .18s ease,background .18s ease,box-shadow .18s ease;
}
.menu-button::before{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:13px;
  pointer-events:none;
  background:
    linear-gradient(135deg,rgba(255,255,255,.10),transparent 36%),
    radial-gradient(circle at 72% 20%,rgba(255,212,118,.16),transparent 34%);
  opacity:.82;
}
.menu-button::after{
  content:"";
  position:absolute;
  left:14px;
  right:14px;
  bottom:9px;
  height:2px;
  border-radius:999px;
  background:rgba(255,212,118,.54);
  opacity:.72;
}
.menu-button:hover{
  border-color:rgba(255,212,118,.76);
  background:
    linear-gradient(180deg,rgba(20,34,54,.96),rgba(7,14,27,.98)),
    rgba(2,8,19,.9);
}
.menu-button span{
  position:absolute;
  left:13px;
  right:13px;
  z-index:1;
  display:block;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg,#fff1b7,#d99a27);
  box-shadow:0 0 10px rgba(255,212,118,.16);
  transition:top .22s ease,transform .22s ease,opacity .16s ease,width .18s ease;
}
.menu-button span:nth-child(1){top:14px}
.menu-button span:nth-child(2){top:21px;left:18px}
.menu-button span:nth-child(3){top:28px}
.menu-button[aria-expanded="true"]{
  border-color:rgba(255,212,118,.82);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.12),0 16px 34px rgba(0,0,0,.30);
}
.menu-button[aria-expanded="true"]::after{opacity:0}
.menu-button[aria-expanded="true"] span:nth-child(1){top:21px;transform:rotate(45deg)}
.menu-button[aria-expanded="true"] span:nth-child(2){opacity:0}
.menu-button[aria-expanded="true"] span:nth-child(3){top:21px;transform:rotate(-45deg)}
.hero{
  width:min(var(--max),calc(100% - 48px));
  margin:0 auto;
  min-height:628px;
  display:grid;
  grid-template-columns:37.5% 62.5%;
  gap:4px;
  align-items:start;
  position:relative;
  z-index:2;
  padding-top:46px;
}
.hero-copy{position:relative;z-index:3;padding-left:0}
h1{
  font-family:var(--font-title);
  max-width:370px;
  font-size:clamp(41px,4.1vw,50px);
  line-height:.98;
  margin:0 0 17px;
  letter-spacing:-.045em;
  font-weight:800;
  text-shadow:0 4px 24px rgba(0,0,0,.55);
}
h1 em{
  font-style:normal;
  background:linear-gradient(92deg,#fff4bd 0%,#ffca55 43%,#d18b25 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero-subtitle{
  font-family:var(--font-subtitle);
  font-size:17px;
  color:#e8ecf4;
  margin:0 0 18px;
}
.hero-body{
  font-size:14.5px;
  line-height:1.78;
  color:#d4dae5;
  max-width:320px;
  margin:0 0 31px;
}
.hero-actions{
  display:flex;
  gap:14px;
  align-items:center;
  margin-bottom:0;
}
.button{
  height:49px;
  border-radius:7px;
  padding:0 20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  font-size:14px;
  font-weight:600;
  font-family:var(--font-subtitle);
  transition:transform .2s,box-shadow .2s;
}
.button:hover{transform:translateY(-2px)}
.button-gold{
  color:#100b02;
  background:linear-gradient(180deg,#ffe290 0%,#dfaa43 56%,#b8771f 100%);
  box-shadow:0 16px 34px rgba(221,151,38,.24),inset 0 1px 0 rgba(255,255,255,.55);
}
.button-outline{
  border:1px solid rgba(221,151,38,.68);
  color:#fff;
  background:rgba(2,8,19,.28);
}
.services{
  width:min(var(--max),calc(100% - 48px));
  margin:-14px auto 0;
  position:relative;
  z-index:3;
}
.section-heading{
  text-align:center;
  margin-bottom:30px;
}
.section-heading span{
  text-transform:uppercase;
  color:var(--gold2);
  font-weight:800;
  letter-spacing:.17em;
  font-size:12px;
}
.section-heading h2{
  font-family:var(--font-title);
  font-size:clamp(25px,2.6vw,32px);
  line-height:1.02;
  margin:0;
  font-weight:500;
  letter-spacing:-.035em;
  color:#f8fbff;
}
.section-heading h2 em{
  font-style:normal;
  background:linear-gradient(92deg,#fff4bd 0%,#ffca55 43%,#d18b25 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.service-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,230px));
  justify-content:space-between;
  gap:32px;
  align-items:stretch;
}
.service-card{
  position:relative;
  display:block;
  border:1px solid rgba(221,151,38,.56);
  border-radius:7px;
  background:linear-gradient(180deg,rgba(7,20,34,.94),rgba(3,11,21,.96));
  padding:15px 16px 47px;
  min-height:360px;
  height:100%;
  box-shadow:inset 0 0 32px rgba(221,151,38,.035),0 12px 30px rgba(0,0,0,.24);
  overflow:hidden;
  transform:translateY(0);
  transition:border-color .18s ease,box-shadow .18s ease,background .18s ease;
}
.service-card::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:0;
  transform:none;
  transition:opacity .18s ease;
  background:
    radial-gradient(circle at 50% 0%,rgba(255,203,91,.2),transparent 34%),
    linear-gradient(135deg,transparent 0%,rgba(255,214,122,.12) 46%,transparent 58%);
}
.service-card:hover,
.service-card:focus-visible{
  min-height:360px;
  height:100%;
  transform:none;
  border-color:rgba(255,205,88,.92);
  box-shadow:inset 0 0 34px rgba(221,151,38,.07),0 24px 42px rgba(0,0,0,.34),0 0 34px rgba(221,151,38,.14);
}
.service-card:hover::before,
.service-card:focus-visible::before{
  opacity:1;
  transform:none;
}
.service-image{
  height:128px;
  display:grid;
  place-items:center;
  margin:-4px -4px 28px;
  position:relative;
  overflow:hidden;
  border-radius:6px;
  background:#01040f;
  transition:none;
}
.service-card:hover .service-image,
.service-card:focus-visible .service-image{
  height:128px;
  margin-bottom:28px;
}
.service-image img{
  width:100%;
  height:100%;
  object-fit:contain;
  transform:scale(1);
  transition:none;
  -webkit-mask-image:none;
  mask-image:none;
}
.service-card:hover .service-image img,
.service-card:focus-visible .service-image img{
  transform:none;
  filter:none;
}
.service-image::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg,rgba(7,20,34,.92),transparent 18%,transparent 82%,rgba(7,20,34,.92)),
    linear-gradient(180deg,rgba(7,20,34,.72),transparent 22%,transparent 76%,rgba(7,20,34,.8));
}
.service-card h3{
  font-family:var(--font-title);
  font-size:18px;
  line-height:1.12;
  margin:0 0 8px;
  font-weight:650;
  letter-spacing:-.045em;
}
.service-card p{
  color:#d7dce6;
  font-size:12px;
  line-height:1.52;
  margin:0 0 12px;
}
.service-card ul{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:5px;
  color:#e6e8ee;
  font-size:11.2px;
}
.service-card li{display:flex;gap:8px;align-items:flex-start}
.service-card li:before{
  content:'\2713';
  color:#ffbd2e;
  font-weight:900;
  font-size:14px;
  line-height:1.05;
}
.service-cta{
  position:absolute;
  left:16px;
  right:16px;
  bottom:15px;
  color:#ffd46d;
  font-size:12px;
  font-weight:700;
  letter-spacing:-.02em;
  opacity:0;
  transform:translateY(10px);
  transition:opacity .25s ease,transform .25s ease;
}
.service-cta b{
  font-size:16px;
  margin-left:6px;
}
.service-card:hover .service-cta,
.service-card:focus-visible .service-cta{
  opacity:1;
  transform:translateY(0);
}
@keyframes testimonialDrift{
  to{transform:translateX(calc(-50% - 9px))}
}
@keyframes whyIconFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-7px)}
}
@keyframes whyCardSettle{
  from{opacity:.2;transform:translateY(18px)}
  to{opacity:1;transform:translateY(0)}
}
.closing{
  min-height:168px;
  position:relative;
  overflow:hidden;
  border-bottom:1px solid rgba(221,151,38,.28);
  display:flex;
  align-items:center;
}
.planet{
  position:absolute;
  right:-2px;
  bottom:-6px;
  width:63%;
  opacity:.9;
  max-width:none;
  transform:none;
  -webkit-mask-image:
    linear-gradient(90deg,transparent 0%,#000 14%,#000 100%),
    linear-gradient(180deg,transparent 0%,#000 10%,#000 100%);
  -webkit-mask-composite:source-in;
  mask-image:
    linear-gradient(90deg,transparent 0%,#000 14%,#000 100%),
    linear-gradient(180deg,transparent 0%,#000 10%,#000 100%);
  mask-composite:intersect;
}
.parallax-layer{will-change:auto !important}
.reveal{
  opacity:.74;
  transform:none;
  filter:none;
  transition:opacity .36s ease;
}
.reveal.is-visible{
  opacity:1;
}
.closing-copy{
  position:relative;
  z-index:1;
  width:min(var(--max),calc(100% - 48px));
  margin:0 auto;
}
.closing h2{
  font-family:var(--font-title);
  font-size:30px;
  line-height:.98;
  margin:0 0 7px;
}
.closing h2 em{
  font-style:normal;
  color:#e8ad36;
}
.closing p{
  font-size:13px;
  color:#d5d9e2;
  margin:0 0 11px;
  max-width:330px;
}
.closing .button{
  height:34px;
  font-size:12px;
  padding:0 18px;
}
.site-footer{
  height:42px;
  width:min(var(--max),calc(100% - 36px));
  margin:0 auto;
  display:grid;
  grid-template-columns:230px 1fr 210px 120px;
  align-items:center;
  gap:8px;
  color:#9fa7b7;
  font-size:10.5px;
}
.footer-logo img{
  width:auto;
  height:48px;
  object-fit:contain;
  filter:none;
  box-shadow:none;
}
.site-footer nav{
  display:flex;
  justify-content:center;
  gap:29px;
}
.socials{
  display:flex;
  justify-content:flex-end;
  gap:13px;
}
.socials span{
  width:23px;
  height:23px;
  border-radius:50%;
  background:rgba(255,255,255,.18);
  display:grid;
  place-items:center;
  font-size:8px;
  color:#101725;
  font-weight:800;
}
.socials span:last-child{
  background:transparent;
  color:#c99a37;
  border:1px solid rgba(221,151,38,.5);
}
.service-detail{
  width:min(var(--max),calc(100% - 48px));
  margin:0 auto;
  padding:58px 0 86px;
  min-height:calc(100vh - 170px);
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(280px,390px);
  gap:44px;
  align-items:center;
  position:relative;
  z-index:2;
}
.service-detail-copy{max-width:560px}
.service-detail-kicker{
  display:inline-flex;
  border:1px solid rgba(221,151,38,.75);
  border-radius:999px;
  color:var(--gold2);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:8px 14px;
  margin-bottom:20px;
}
.service-detail h1{
  max-width:620px;
  margin-bottom:20px;
}
.service-detail h1 em{
  font-style:normal;
  background:linear-gradient(92deg,#fff4bd 0%,#ffca55 43%,#d18b25 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.service-detail p{
  color:#d7dce6;
  font-size:16px;
  line-height:1.78;
  margin:0 0 24px;
}
.service-detail-list{
  display:grid;
  gap:11px;
  list-style:none;
  margin:0 0 30px;
  padding:0;
  color:#f2f5fb;
  font-size:14px;
}
.service-detail-list li{display:flex;gap:10px;align-items:flex-start}
.service-detail-list li::before{
  content:"âœ“";
  color:#ffbd2e;
  font-weight:900;
}
.service-detail-visual{
  border:1px solid rgba(221,151,38,.48);
  border-radius:10px;
  background:linear-gradient(180deg,rgba(7,20,34,.94),rgba(3,11,21,.96));
  box-shadow:inset 0 0 40px rgba(221,151,38,.05),0 28px 60px rgba(0,0,0,.35);
  overflow:hidden;
  padding:18px;
}
.service-detail-visual img{
  width:100%;
  aspect-ratio:1;
  object-fit:contain;
  filter:saturate(1.04) brightness(1.04);
}
.page-hero{
  width:min(var(--max),calc(100% - 48px));
  margin:0 auto;
  padding:62px 0 42px;
  position:relative;
  z-index:2;
}
.page-hero h1{
  max-width:820px;
  font-size:clamp(48px,6.2vw,82px);
  line-height:.9;
}
.page-kicker{
  display:inline-flex;
  color:var(--gold2);
  font-family:var(--font-subtitle);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:16px;
}
.page-lead{
  max-width:680px;
  color:#d7deea;
  font-size:18px;
  line-height:1.62;
  margin:0;
}
.page-section{
  width:min(var(--max),calc(100% - 48px));
  margin:0 auto;
  padding:42px 0 78px;
  position:relative;
  z-index:2;
}
.service-panel{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(260px,380px);
  gap:30px;
  align-items:center;
  border:1px solid rgba(221,151,38,.36);
  border-radius:10px;
  background:linear-gradient(180deg,rgba(7,20,34,.88),rgba(3,11,21,.94));
  padding:24px;
  scroll-margin-top:24px;
  overflow:hidden;
}
.service-panel > *{min-width:0}
.service-panel h2,.simple-card h2,.simple-card h3{
  font-family:var(--font-title);
  letter-spacing:-.04em;
}
.service-panel h2{
  font-size:clamp(28px,3.4vw,44px);
  line-height:.98;
  margin:0 0 14px;
}
.service-panel p,.simple-card p{
  color:#cbd3df;
  line-height:1.7;
}
.service-panel ul,.simple-list{
  list-style:none;
  padding:0;
  margin:18px 0 0;
  display:grid;
  gap:10px;
}
.service-panel li,.simple-list li{
  position:relative;
  color:#f1f5fb;
  display:block;
  padding-left:28px;
  overflow-wrap:anywhere;
}
.service-panel li::before,.simple-list li::before{
  content:"\2713";
  position:absolute;
  left:0;
  top:0;
  color:#ffbd2e;
  font-weight:900;
}
.service-panel img{
  width:100%;
  aspect-ratio:1.2;
  object-fit:contain;
  border-radius:8px;
  background:#01040f;
}
.simple-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.simple-grid.two{grid-template-columns:repeat(2,minmax(0,1fr))}
.simple-card{
  border:1px solid rgba(221,151,38,.3);
  border-radius:9px;
  background:linear-gradient(180deg,rgba(8,22,36,.8),rgba(3,10,18,.82));
  padding:24px;
  min-width:0;
  overflow:hidden;
}
.simple-card.featured{
  border-color:rgba(255,205,88,.76);
  box-shadow:0 0 34px rgba(221,151,38,.13);
}
.simple-card h2,.simple-card h3{
  margin:0 0 12px;
}
.simple-card p{margin:0}
.contact-panel{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(280px,420px);
  gap:24px;
  align-items:start;
}
.contact-box{
  border:1px solid rgba(221,151,38,.32);
  border-radius:10px;
  padding:24px;
  background:rgba(7,20,34,.78);
}
.form-grid{
  display:grid;
  gap:12px;
}
.form-grid label{
  display:grid;
  gap:7px;
  color:#dfe5ef;
  font-size:13px;
  font-weight:600;
}
.form-grid input,.form-grid textarea,.form-grid select{
  width:100%;
  border:1px solid rgba(221,151,38,.34);
  border-radius:7px;
  background:rgba(1,5,13,.78);
  color:#fff;
  padding:12px 13px;
  font:inherit;
}
.form-grid textarea{min-height:120px;resize:vertical}
.services-story-hero{
  width:min(var(--max),calc(100% - 48px));
  margin:0 auto;
  min-height:628px;
  padding:46px 0 36px;
  display:grid;
  grid-template-columns:37.5% 62.5%;
  gap:4px;
  align-items:start;
  position:relative;
  z-index:2;
}
.services-story-copy h1,.services-story-copy h2,.process-hero h1{
  font-family:var(--font-title);
  font-size:clamp(41px,4.1vw,50px);
  line-height:.98;
  letter-spacing:-.045em;
  margin:0 0 17px;
  max-width:390px;
  text-shadow:0 4px 24px rgba(0,0,0,.55);
}
.services-story-copy h1 em,.services-story-copy h2 em,.process-hero h1 em{
  font-style:normal;
  background:linear-gradient(92deg,#fff4bd 0%,#ffca55 43%,#d18b25 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.services-story-copy p{
  max-width:340px;
  color:#d4dae5;
  font-size:14.5px;
  line-height:1.78;
  margin:0 0 28px;
}
.services-story-copy .hero-subtitle{
  margin:0 0 18px;
  max-width:340px;
  font-size:17px;
  line-height:1.35;
  color:#e8ecf4;
}
.before-after-stage{
  --reveal:7%;
  position:relative;
  min-height:540px;
  margin-top:-4px;
  margin-right:-36px;
  transform:translateX(-38px);
  border:1px solid rgba(221,151,38,.26);
  border-radius:10px;
  overflow:hidden;
  background:
    radial-gradient(circle at 66% 18%,rgba(255,210,112,.12),transparent 26%),
    linear-gradient(180deg,rgba(7,17,31,.92),rgba(1,5,13,.98));
  box-shadow:0 30px 72px rgba(0,0,0,.44),0 0 48px rgba(221,151,38,.08);
  isolation:isolate;
  animation:none;
}
.before-after-stage::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  z-index:3;
  height:34%;
  pointer-events:none;
  background:linear-gradient(180deg,transparent,rgba(2,8,19,.34));
}
.before-after-stage::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:3;
  pointer-events:none;
  background:
    linear-gradient(90deg,rgba(2,8,19,.32),transparent 14%,transparent 86%,rgba(2,8,19,.34)),
    linear-gradient(180deg,rgba(2,8,19,.06),transparent 28%,rgba(2,8,19,.26)),
    radial-gradient(circle at 50% 46%,rgba(255,208,101,.1),transparent 28%);
}
picture.stage-image{
  display:block;
}
.stage-image,.stage-image img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}
.stage-image img{
  object-fit:cover;
  object-position:center;
  transform:scale(1.035);
}
.stage-image.before{
  z-index:1;
  filter:saturate(.9) brightness(.9) contrast(1.02);
}
.stage-image.after{
  z-index:2;
  clip-path:inset(0 0 0 var(--reveal));
  animation:none;
}
.stage-divider{
  position:absolute;
  top:0;
  bottom:0;
  left:var(--reveal);
  z-index:4;
  width:2px;
  background:linear-gradient(180deg,transparent,rgba(255,216,120,.95),transparent);
  box-shadow:0 0 24px rgba(255,206,84,.72);
  animation:none;
}
.stage-divider span{
  display:grid;
  place-items:center;
  position:absolute;
  top:50%;
  left:50%;
  width:56px;
  height:56px;
  transform:translate(-50%,-50%);
  border:1px solid rgba(255,218,126,.78);
  border-radius:50%;
  background:
    radial-gradient(circle at 50% 42%,rgba(255,215,119,.1),transparent 48%),
    linear-gradient(180deg,rgba(7,14,25,.98),rgba(2,7,15,.98));
  box-shadow:0 0 24px rgba(221,151,38,.24),inset 0 1px 0 rgba(255,255,255,.12),inset 0 0 0 6px rgba(255,210,112,.035);
  overflow:hidden;
}
.stage-divider span::before{
  content:"";
  position:absolute;
  inset:9px;
  background:url("logo/logo-icon.webp") center/contain no-repeat;
  filter:drop-shadow(0 1px 2px rgba(0,0,0,.45));
  display:none;
}
.stage-divider picture{
  display:block;
  position:relative;
  z-index:1;
}
.stage-divider img{
  width:50px;
  height:50px;
  object-fit:contain;
  object-position:center;
  opacity:1;
  filter:drop-shadow(0 1px 2px rgba(0,0,0,.45));
}
.before-after-points{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  width:min(var(--max),calc(100% - 48px));
  padding-top:0;
  padding-bottom:46px;
  margin-top:-24px;
}
.pain-card,.solution-card{
  position:relative;
  overflow:hidden;
  min-height:112px;
  padding:16px 20px;
  border-radius:8px;
}
.pain-card{
  border-color:rgba(255,89,74,.46);
  background:linear-gradient(180deg,rgba(6,15,29,.9),rgba(3,9,19,.94));
}
.pain-card h2,.solution-card h2{
  font-family:var(--font-title);
  font-size:clamp(25px,2.6vw,32px);
  line-height:1.02;
  letter-spacing:-.035em;
  font-weight:500;
  margin:0 0 8px;
  color:#f8fbff;
  text-wrap:balance;
}
.pain-card h2 em,.solution-card h2 em{
  display:inline;
  font-style:normal;
  font-weight:500;
}
.pain-card h2 em{
  color:#ff6b63;
}
.pain-card p,.solution-card p{
  max-width:520px;
  color:#d9e0ec;
  font-family:var(--font-subtitle);
  font-size:12.2px;
  line-height:1.55;
  font-weight:500;
  margin:0;
}
.solution-card{
  border-color:rgba(255,205,88,.34);
  background:#aeb6c4;
  box-shadow:0 0 24px rgba(221,151,38,.08);
}
.solution-card::after{
  content:"";
  position:absolute;
  inset:-40% auto -40% -25%;
  width:42%;
  transform:rotate(18deg);
  background:linear-gradient(90deg,transparent,rgba(255,218,127,.12),transparent);
  animation:none;
}
.solution-card h2{
  color:#071225;
}
.solution-card h2 em{
  color:#8e641f;
}
.solution-card p{
  color:#14213c;
}
.service-deep-dive{
  padding-top:28px;
}
.service-deep-dive .section-heading{
  margin-bottom:38px;
}
.service-deep-dive .section-heading h2{
  font-size:clamp(32px,3.8vw,48px);
  line-height:.98;
  font-weight:650;
  letter-spacing:-.05em;
  max-width:760px;
  margin-inline:auto;
}
.process-hero{
  padding-bottom:30px;
}
.process-hero h1{
  font-size:clamp(52px,6.4vw,86px);
  line-height:.9;
  letter-spacing:-.065em;
  max-width:780px;
}
.process-map{
  display:grid;
  gap:28px;
  padding-top:18px;
}
.process-feature{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(300px,430px);
  gap:28px;
  align-items:center;
  border:1px solid rgba(221,151,38,.34);
  border-radius:12px;
  padding:26px;
  background:
    linear-gradient(180deg,rgba(8,22,36,.82),rgba(3,10,18,.9)),
    radial-gradient(circle at 100% 0%,rgba(255,205,92,.1),transparent 34%);
  overflow:hidden;
  box-shadow:inset 0 0 34px rgba(221,151,38,.035),0 22px 48px rgba(0,0,0,.18);
}
.process-feature:nth-child(even){
  grid-template-columns:minmax(300px,430px) minmax(0,1fr);
}
.process-feature:nth-child(even) .process-copy{
  order:2;
}
.process-number{
  display:inline-flex;
  color:#ffd476;
  font-family:var(--font-subtitle);
  font-size:12px;
  font-weight:800;
  letter-spacing:.18em;
  margin-bottom:18px;
}
.process-copy h2{
  font-family:var(--font-title);
  font-size:clamp(38px,4.5vw,64px);
  line-height:.92;
  letter-spacing:-.06em;
  margin:0 0 18px;
}
.process-copy p{
  color:#d4dae5;
  font-size:16px;
  line-height:1.7;
  margin:0;
}
.process-visual{
  min-height:300px;
  position:relative;
  border:1px solid rgba(221,151,38,.28);
  border-radius:10px;
  background:radial-gradient(circle at 50% 50%,rgba(255,205,92,.14),transparent 34%),rgba(1,6,14,.74);
  overflow:hidden;
}
.audit-visual::before{
  content:"";
  position:absolute;
  inset:34px;
  border:1px solid rgba(255,210,112,.22);
  border-radius:50%;
  box-shadow:0 0 0 42px rgba(255,210,112,.04),0 0 0 84px rgba(255,210,112,.025);
  animation:none;
}
.radar-core{
  position:absolute;
  inset:50%;
  width:96px;
  height:96px;
  transform:translate(-50%,-50%);
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg,#ffe08a,#a76d1f);
  color:#120c02;
  font-family:var(--font-subtitle);
  font-weight:900;
}
.signal-card{
  position:absolute;
  z-index:2;
  border:1px solid rgba(255,255,255,.18);
  border-radius:8px;
  background:rgba(5,12,22,.78);
  color:#fff;
  padding:10px 12px;
  font-size:12px;
  font-weight:700;
  box-shadow:0 12px 28px rgba(0,0,0,.26);
  animation:none;
}
.s1{left:24px;top:30px}.s2{right:26px;top:58px;animation-delay:.6s}.s3{left:38px;bottom:42px;animation-delay:1.1s}.s4{right:34px;bottom:58px;animation-delay:1.7s}
.design-visual{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  padding:28px;
}
.flow-node{
  min-width:0;
  display:grid;
  place-items:center;
  min-height:110px;
  border:1px solid rgba(255,210,112,.34);
  border-radius:12px;
  background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.025));
  color:#f8fbff;
  font-family:var(--font-title);
  font-size:24px;
  font-weight:800;
  animation:none;
}
.flow-node:nth-child(2){animation-delay:.4s}.flow-node:nth-child(3){animation-delay:.8s}.flow-node:nth-child(4){animation-delay:1.2s}
.launch-visual{
  display:grid;
  place-items:center;
}
.launch-screen{
  width:min(82%,310px);
  min-height:190px;
  border:1px solid rgba(255,210,112,.32);
  border-radius:16px;
  background:linear-gradient(180deg,rgba(11,22,35,.95),rgba(4,9,18,.96));
  padding:22px;
  box-shadow:0 22px 48px rgba(0,0,0,.34);
}
.launch-screen span{
  display:block;
  height:9px;
  border-radius:99px;
  background:rgba(255,255,255,.13);
  margin-bottom:12px;
}
.launch-screen span:nth-child(1){width:72%}.launch-screen span:nth-child(2){width:52%}.launch-screen span:nth-child(3){width:86%}
.launch-screen b{
  display:block;
  margin-top:30px;
  color:#ffd476;
  font-family:var(--font-title);
  font-size:30px;
}
.launch-screen em{
  color:#cbd3df;
  font-style:normal;
}
.improve-visual{
  display:grid;
  place-items:center;
}
.metric-ring{
  width:190px;
  height:190px;
  border-radius:50%;
  display:grid;
  place-items:center;
  text-align:center;
  padding:28px;
  border:1px solid rgba(255,210,112,.5);
  background:radial-gradient(circle,rgba(255,210,112,.16),rgba(255,210,112,.02) 62%,transparent);
  box-shadow:0 0 44px rgba(221,151,38,.16);
  animation:none;
}
.metric-ring b{
  font-family:var(--font-title);
  font-size:40px;
  line-height:1;
}
.metric-ring span{
  color:#cbd3df;
  font-size:12px;
}
.metric-ring.small{
  position:absolute;
  right:34px;
  bottom:30px;
  width:118px;
  height:118px;
}
.metric-ring.small b{font-size:30px}
.process-close{
  padding-top:0;
}
.process-close .simple-card{
  max-width:820px;
  margin:0 auto;
  text-align:center;
}
.process-close .button{
  margin-top:22px;
}
@keyframes comparisonReveal{
  0%{--reveal:8%}
  50%{--reveal:92%}
  100%{--reveal:8%}
}
@keyframes afterRevealClip{
  0%,15%{clip-path:inset(0 0 0 7%);animation-timing-function:cubic-bezier(.78,0,.22,1)}
  50%,65%{clip-path:inset(0 0 0 93%);animation-timing-function:cubic-bezier(.78,0,.22,1)}
  100%{clip-path:inset(0 0 0 7%)}
}
@keyframes dividerRevealMove{
  0%,15%{left:7%;animation-timing-function:cubic-bezier(.78,0,.22,1)}
  50%,65%{left:93%;animation-timing-function:cubic-bezier(.78,0,.22,1)}
  100%{left:7%}
}
@keyframes softSweep{
  50%{transform:translateX(320%) rotate(18deg)}
}
@keyframes pulseRadar{
  50%{transform:scale(1.08);opacity:.72}
}
@keyframes floatSignal{
  50%{transform:translateY(-8px)}
}
@keyframes nodeGlow{
  50%{border-color:rgba(255,210,112,.72);box-shadow:0 0 28px rgba(221,151,38,.14)}
}
@keyframes ringBreathe{
  50%{transform:scale(1.045);box-shadow:0 0 58px rgba(221,151,38,.24)}
}

@media(max-width:900px){
  .site-header{width:calc(100% - 28px);grid-template-columns:220px 1fr 168px;gap:10px}
  .logo-img{height:76px;width:auto}
  .nav-links{gap:10px;font-size:11.2px}
  .nav-cta{min-width:154px;padding:0 10px;font-size:11.5px}
  .hero{width:calc(100% - 28px);grid-template-columns:39% 61%;gap:8px}
  h1{font-size:55px}
  .services,.closing-copy{width:calc(100% - 28px)}
  .service-grid{grid-template-columns:repeat(4,1fr);justify-content:stretch;gap:12px}
  .service-detail{grid-template-columns:1fr;gap:28px}
  .simple-grid,.simple-grid.two,.contact-panel{grid-template-columns:1fr}
  .service-panel{grid-template-columns:1fr}
  .service-band{
    grid-template-columns:1fr;
    min-height:auto;
    gap:28px;
    padding:58px 28px;
  }
  .service-band:nth-child(even) img{
    order:0;
  }
  .service-columns{
    grid-template-columns:1fr;
  }
  .services-story-hero,.before-after-points,.process-feature,.process-feature:nth-child(even){grid-template-columns:1fr}
  .process-feature:nth-child(even) .process-copy{order:0}
  .before-after-stage{min-height:460px;margin:6px 0 0;transform:none}
  .process-feature{gap:24px}
}

@media(max-width:720px){
  .site-canvas{width:100%}
  .site-header{height:86px;display:flex;justify-content:space-between}
  .logo-img{height:64px;width:auto}
  .menu-button{display:grid;position:relative;z-index:12}
  .nav-cta{display:none}
  .nav-links{
    position:absolute;
    top:76px;
    left:0;
    right:0;
    z-index:11;
    display:grid;
    gap:0;
    padding:10px;
    border:1px solid rgba(221,151,38,.32);
    border-radius:10px;
    background:rgba(3,10,18,.94);
    backdrop-filter:none;
    box-shadow:0 22px 44px rgba(0,0,0,.34),inset 0 1px 0 rgba(255,255,255,.05);
    opacity:0;
    transform:translateY(-8px);
    pointer-events:none;
    transition:opacity .22s ease,transform .22s ease;
  }
  .nav-links.open{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
  }
  .nav-links a{
    display:flex;
    align-items:center;
    min-height:42px;
    padding:0 12px;
    border-radius:7px;
    color:#f8fbff;
    font-size:13px;
  }
  .nav-service-menu{
    display:grid;
  }
  .nav-service-toggle{
    min-height:42px;
    padding:0 12px;
    justify-content:space-between;
    border-radius:7px;
    color:#f8fbff;
    font-size:13px;
  }
  .nav-service-dropdown{
    position:static;
    min-width:0;
    transform:none;
    display:none;
    margin:0 0 6px;
    padding:6px 8px 8px;
    border:0;
    border-radius:8px;
    background:rgba(255,212,118,.045);
    box-shadow:none;
    opacity:1;
    pointer-events:auto;
  }
  .nav-service-menu.open .nav-service-dropdown,
  .nav-service-menu:focus-within .nav-service-dropdown{
    display:grid;
    transform:none;
  }
  .nav-service-dropdown a{
    min-height:36px;
    padding-left:20px;
    font-size:12.5px;
  }
  .nav-links a:hover,
  .nav-links a:focus-visible{
    background:rgba(221,151,38,.12);
    color:#ffd476;
  }
  .hero{display:block;min-height:auto;padding-top:34px}
  h1{
    max-width:340px;
    font-size:clamp(38px,10.8vw,44px);
    line-height:1;
    letter-spacing:-.038em;
  }
  .hero-body{max-width:340px;font-size:14px}
  .hero-actions{flex-direction:column;align-items:stretch;margin-bottom:25px}
  .button{justify-content:center}
  .services{margin:40px auto 0}
  .section-heading h2{
    width:min(100%,300px);
    max-width:300px;
    margin-inline:auto;
    font-size:clamp(21px,6vw,24px);
    line-height:1.08;
    white-space:normal;
    overflow-wrap:break-word;
  }
  .service-grid{grid-template-columns:minmax(0,1fr)}
  .service-card{min-width:0}
  .service-card{min-height:unset}
  .service-card p{max-width:300px}
  .service-image{height:220px}
  .service-card:hover,.service-card:focus-visible{min-height:unset}
  .service-card:hover .service-image,.service-card:focus-visible .service-image{height:260px}
  .closing{min-height:330px;align-items:flex-start;padding-top:36px}
  .planet{width:125%;right:-35%;bottom:0}
  .site-footer{height:auto;padding:18px 0;grid-template-columns:1fr;text-align:center}
  .footer-logo img{margin:0 auto}
  .site-footer nav{flex-wrap:wrap;gap:12px;max-width:320px;margin:0 auto}
  .socials{justify-content:center}
  .service-detail{width:calc(100% - 32px);padding:36px 0 60px}
  .service-detail h1{font-size:40px}
  .page-hero,.page-section{width:calc(100% - 48px)}
  .page-hero{padding-top:38px}
  .page-hero h1{
    max-width:290px;
    font-size:clamp(34px,9.4vw,40px);
    letter-spacing:-.045em;
  }
  .page-lead{max-width:300px;font-size:16px}
  .service-panel{padding:18px}
  .service-panel h2{font-size:28px}
  .service-panel p{max-width:270px;font-size:15px}
  .service-panel ul,.service-panel li{max-width:270px}
  .services-detail-hero{
    width:calc(100% - 32px);
    padding-top:38px;
  }
  .services-detail-hero h1{
    max-width:330px;
    font-size:clamp(37px,10vw,44px);
  }
  .services-detail-hero .page-lead{
    max-width:330px;
  }
  .service-band{
    padding:46px 16px;
  }
  .service-band-copy h2{
    max-width:340px;
    font-size:clamp(34px,9.4vw,42px);
  }
  .service-band-copy > p{
    max-width:330px;
    font-size:15px;
  }
  .service-columns > div{
    padding:16px;
  }
  .service-band .simple-list,
  .service-band .simple-list li{
    max-width:none;
  }
  .services-story-hero{width:calc(100% - 32px);display:block;min-height:auto;padding-top:38px;padding-bottom:34px}
  .services-story-copy h1,.services-story-copy h2,.process-hero h1{
    max-width:320px;
    font-size:clamp(34px,9.8vw,42px);
    letter-spacing:-.045em;
  }
  .services-story-copy p{max-width:318px;font-size:15.5px}
  .before-after-stage{min-height:430px;margin-top:28px;border-radius:10px}
  .stage-image img{object-position:55% center}
  .stage-divider span{width:46px;height:46px}
  .stage-divider span::before{inset:8px}
  .stage-divider img{width:42px;height:42px}
  .before-after-points,.process-map,.service-deep-dive{width:calc(100% - 32px)}
  .before-after-points{gap:12px;margin-top:-8px;padding-bottom:36px}
  .home-before-after-points{margin-bottom:64px}
  .pain-card,.solution-card{padding:16px 16px;min-height:0}
  .pain-card h2,.solution-card h2{font-size:clamp(22px,6.4vw,27px);margin-bottom:8px}
  .pain-card p,.solution-card p{font-size:12px;line-height:1.52}
  .service-deep-dive .section-heading h2{
    max-width:330px;
    font-size:clamp(27px,7vw,34px);
  }
  .simple-card p,.simple-card h2,.simple-card h3,.simple-list{max-width:296px}
  .simple-list li{min-width:0;font-size:15px;line-height:1.5}
  .process-map{gap:18px;padding-top:8px}
  .process-feature{padding:18px;gap:18px;overflow:hidden;border-radius:10px}
  .process-copy h2{font-size:42px}
  .process-copy p{max-width:296px;font-size:15px}
  .process-copy .simple-list{max-width:296px}
  .process-visual{min-height:238px}
  .design-visual{padding:18px}
  .flow-node{font-size:19px;min-height:92px}
  .signal-card{font-size:10px;padding:8px 9px}
  .s1{left:14px;top:24px}.s2{right:14px;top:48px}.s3{left:18px;bottom:34px}.s4{right:18px;bottom:48px}
  .metric-ring{width:162px;height:162px}
  .metric-ring.small{right:18px;bottom:22px;width:96px;height:96px}
}

@media (prefers-reduced-motion: reduce){
  .parallax-layer{transform:none!important}
  .reveal{opacity:1;transform:none;filter:none;transition:none}
  .before-after-stage,.stage-image.after,.stage-divider,.solution-card::after,.audit-visual::before,.signal-card,.flow-node,.metric-ring{animation:none!important}
  .before-after-stage{--reveal:50%}
  .stage-image.after{clip-path:inset(0 0 0 50%)}
  .stage-divider{left:50%}
}

/* ===== Qaimo audit implementation pass: concrete AI acquisition system ===== */
.nav-cta:hover,.nav-cta:focus-visible{
  border-color:rgba(255,212,118,.96);
  background:rgba(221,151,38,.12);
}
.plan-label{
  color:#ffd476;
  font-family:var(--font-subtitle);
  font-size:11px;
  font-weight:800;
  letter-spacing:.13em;
  text-transform:uppercase;
}
.control-section{
  width:min(var(--max),calc(100% - 48px));
  margin:0 auto;
  position:relative;
  z-index:2;
}
.faq-card,.pricing-card,.about-principles article{
  border:1px solid rgba(221,151,38,.3);
  border-radius:10px;
  background:linear-gradient(180deg,rgba(8,22,36,.78),rgba(3,10,18,.88));
  padding:20px;
  min-width:0;
  overflow:hidden;
  box-shadow:inset 0 0 28px rgba(221,151,38,.025),0 16px 36px rgba(0,0,0,.16);
}
.faq-card{
  padding:0;
}
.faq-card p,.pricing-card p,.about-principles p{
  color:#cbd3df;
  margin:0;
  line-height:1.65;
  font-size:13.5px;
}
.control-panel h2,.about-copy h2{
  font-family:var(--font-title);
  font-size:clamp(34px,4.3vw,58px);
  line-height:.94;
  letter-spacing:-.06em;
  margin:0 0 18px;
}
.control-panel p,.about-copy p{
  color:#d4dae5;
  font-size:16px;
  line-height:1.72;
  margin:0 0 24px;
}
.about-principles article span{
  display:inline-flex;
  color:#ffd476;
  font-size:12px;
  font-family:var(--font-subtitle);
  font-weight:900;
  letter-spacing:.16em;
  margin-bottom:18px;
}
.about-principles h3{
  font-family:var(--font-title);
  margin:0 0 10px;
  line-height:1;
  letter-spacing:-.045em;
  font-size:24px;
}
.control-section{
  padding:36px 0 72px;
}
.control-panel{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(300px,.9fr);
  gap:30px;
  align-items:center;
  border:1px solid rgba(255,212,118,.42);
  border-radius:16px;
  padding:34px;
  background:
    radial-gradient(circle at 90% 12%,rgba(255,212,118,.12),transparent 34%),
    linear-gradient(180deg,rgba(8,22,36,.88),rgba(3,10,18,.94));
  box-shadow:0 28px 64px rgba(0,0,0,.24),inset 0 0 34px rgba(221,151,38,.04);
}
.closing-upgraded{
  min-height:230px;
}
.closing-upgraded h2{
  max-width:570px;
  font-size:clamp(33px,4.1vw,56px);
  letter-spacing:-.055em;
}
.closing-upgraded p{
  max-width:470px;
  font-size:15px;
}
.services-page-hero .hero-actions{
  margin-top:22px;
}
.home-services-story{
  margin-top:8px;
  margin-bottom:0;
}
.home-services-story .hero-actions{
  flex-wrap:nowrap;
  align-items:center;
  gap:14px;
}
.home-services-story .button{
  min-width:0;
  white-space:nowrap;
}
.home-services-story .button-outline{
  width:160px;
  padding:0 12px;
  gap:8px;
  font-size:12.5px;
  overflow:visible;
}
.home-services-story .before-after-stage{
  margin-left:24px;
  margin-right:0;
  transform:translateX(0);
}
.story-inline-points{
  width:100%;
  grid-template-columns:1fr;
  gap:10px;
  margin:18px 0 0;
  padding:0;
}
.story-inline-points .simple-card{
  min-height:0;
  padding:15px 16px;
  border-radius:12px;
}
.story-inline-points h2{
  font-size:clamp(20px,2vw,24px);
  line-height:1.08;
  margin-bottom:6px;
}
.story-inline-points p{
  font-size:12.5px;
  line-height:1.48;
}
.home-before-after-points{
  margin-bottom:96px;
}
.system-map{
  padding-top:28px;
  padding-bottom:54px;
}
.system-diagram{
  display:grid;
  grid-template-columns:minmax(0,1fr) 38px minmax(0,1fr) 38px minmax(0,1fr);
  align-items:center;
  gap:10px;
}
.system-diagram article{
  min-height:170px;
  border:1px solid rgba(221,151,38,.34);
  border-radius:12px;
  padding:22px;
  background:linear-gradient(180deg,rgba(8,22,36,.84),rgba(3,10,18,.9));
}
.system-diagram article span{
  display:inline-flex;
  color:#ffd476;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.15em;
  font-weight:900;
  margin-bottom:12px;
}
.system-diagram article h3{
  font-family:var(--font-title);
  font-size:25px;
  line-height:1.05;
  letter-spacing:-.045em;
  margin:0;
}
.system-diagram i{
  height:1px;
  background:linear-gradient(90deg,transparent,#ffd476,transparent);
}
.services-control{padding-top:0}
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.pricing-card{
  padding:26px;
  display:flex;
  flex-direction:column;
  min-height:560px;
}
.pricing-card.featured{
  border-color:rgba(255,212,118,.78);
  box-shadow:0 0 44px rgba(221,151,38,.14),0 22px 54px rgba(0,0,0,.2);
  transform:translateY(-12px);
}
.pricing-card h2{
  font-family:var(--font-title);
  font-size:clamp(28px,3vw,38px);
  letter-spacing:-.055em;
  line-height:.98;
  margin:12px 0 14px;
}
.plan-fit{
  min-height:86px;
}
.pricing-card .button{
  margin-top:auto;
}
.faq-hero .page-lead{max-width:760px}
.faq-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  align-items:start;
}
.faq-question{
  width:100%;
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:20px;
  border:0;
  color:#f8fbff;
  background:transparent;
  text-align:left;
  cursor:pointer;
}
.faq-question span{
  font-family:var(--font-title);
  font-size:22px;
  line-height:1.05;
  letter-spacing:-.045em;
  font-weight:800;
}
.faq-question b{
  width:28px;
  height:28px;
  flex:0 0 28px;
  display:grid;
  place-items:center;
  border:1px solid rgba(221,151,38,.46);
  border-radius:999px;
  color:#ffd476;
  font-family:var(--font-subtitle);
  font-size:17px;
  line-height:1;
  transition:transform .18s ease,background .18s ease;
}
.faq-question:hover b,
.faq-question:focus-visible b{
  background:rgba(221,151,38,.12);
}
.faq-question:focus-visible{
  outline:2px solid rgba(255,212,118,.5);
  outline-offset:3px;
}
.faq-card.is-open .faq-question b{
  transform:rotate(45deg);
}
.faq-answer{
  padding:0 20px 20px;
}
.faq-answer p{
  max-width:620px;
}
.about-story{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,470px);
  gap:34px;
  align-items:start;
}
.about-copy p + p{margin-top:16px}
.about-principles{
  display:grid;
  gap:16px;
}
.about-trust{padding-top:0}
.upgraded-contact .contact-box{
  min-height:260px;
}
.contact-form-panel{
  grid-template-columns:minmax(0,1.12fr) minmax(320px,.88fr);
  align-items:start;
  padding-bottom:92px;
}
.contact-form-card{
  border-color:rgba(255,212,118,.5);
  background:
    radial-gradient(circle at 90% 8%,rgba(255,212,118,.09),transparent 32%),
    linear-gradient(180deg,rgba(8,22,36,.86),rgba(3,10,18,.92));
  box-shadow:0 28px 70px rgba(0,0,0,.24),0 0 34px rgba(221,151,38,.07);
}
.contact-form-card h2,
.contact-details-card h2{
  margin-bottom:22px;
}
.professional-contact-form{
  gap:14px;
}
.professional-contact-form .button{
  justify-self:start;
  margin-top:4px;
}
.contact-details-card{
  min-height:auto;
}
.contact-details-card a{
  color:#fff4bd;
}
.contact-routes.three,.simple-grid.three{
  grid-template-columns:repeat(3,minmax(0,1fr));
}
.onboarding-hero h1{max-width:900px}
.onboarding-panel{
  grid-template-columns:minmax(0,1.2fr) minmax(320px,.8fr);
  align-items:start;
}
.intake-card{
  border-color:rgba(255,212,118,.58);
  box-shadow:0 28px 70px rgba(0,0,0,.24),0 0 34px rgba(221,151,38,.08);
}
.form-row.two{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.form-grid input::placeholder,.form-grid textarea::placeholder{
  color:#838d9e;
}
.form-grid input:focus,.form-grid textarea:focus,.form-grid select:focus{
  outline:none;
  border-color:rgba(255,212,118,.9);
  box-shadow:0 0 0 3px rgba(221,151,38,.12);
}
.checkbox-fieldset{
  border:1px solid rgba(221,151,38,.34);
  border-radius:9px;
  padding:14px;
  margin:0;
}
.checkbox-fieldset legend{
  color:#dfe5ef;
  font-size:13px;
  font-weight:700;
  padding:0 7px;
}
.checkbox-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:9px;
}
.checkbox-grid label,.consent-line{
  display:flex;
  align-items:flex-start;
  gap:9px;
  color:#dfe5ef;
  font-size:13px;
  font-weight:600;
}
.checkbox-grid input,.consent-line input{
  width:auto;
  margin-top:3px;
  accent-color:#d99a27;
}
.consent-line{
  border:1px solid rgba(255,212,118,.26);
  border-radius:9px;
  padding:13px;
  background:rgba(255,212,118,.045);
}
.form-success{
  border:1px solid rgba(111,231,162,.44);
  border-radius:9px;
  padding:13px;
  color:#c7f8db;
  background:rgba(39,129,76,.16);
  margin:0;
  font-size:13px;
  line-height:1.6;
}
.demo-explainer h2,.contact-box h2{
  font-family:var(--font-title);
  letter-spacing:-.045em;
  margin:0 0 18px;
}
.numbered-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:14px;
}
.numbered-list li{
  display:grid;
  grid-template-columns:1fr;
  gap:4px;
  border-bottom:1px solid rgba(255,255,255,.08);
  padding-bottom:14px;
}
.numbered-list b{
  color:#fff;
  font-family:var(--font-title);
  font-size:18px;
  letter-spacing:-.035em;
}
.numbered-list span,.demo-note p{
  color:#cbd3df;
  line-height:1.6;
  font-size:13.5px;
}
.demo-note{
  margin-top:22px;
  border:1px solid rgba(255,212,118,.28);
  border-radius:9px;
  padding:16px;
  background:rgba(255,212,118,.045);
}
.demo-note b{color:#ffd476}
.demo-note p{margin:6px 0 0}
.privacy-content{
  display:grid;
  gap:16px;
  max-width:min(900px,calc(100% - 48px));
}
.privacy-content .simple-card h2{
  font-size:28px;
}
.service-detail-upgraded{
  padding-top:42px;
}
.service-detail-upgraded .hero-actions{
  flex-wrap:wrap;
  margin-top:4px;
}

@media(max-width:1020px){
  .control-panel,.about-story,.onboarding-panel{
    grid-template-columns:1fr;
  }
  .pricing-grid{grid-template-columns:1fr}
  .pricing-card{min-height:auto}
  .pricing-card.featured{transform:none}
  .system-diagram{grid-template-columns:1fr}
  .system-diagram i{height:26px;width:1px;margin:auto;background:linear-gradient(180deg,transparent,#ffd476,transparent)}
}
@media(max-width:900px){
  .contact-routes.three,.simple-grid.three{grid-template-columns:1fr}
  .faq-grid{grid-template-columns:1fr}
}
@media(max-width:720px){
  .control-section{
    width:calc(100% - 32px);
  }
  .form-row.two,.checkbox-grid{
    grid-template-columns:1fr;
  }
  .control-section{padding:44px 0 58px}
  .control-panel h2,.about-copy h2{
    font-size:clamp(30px,8.6vw,38px);
    max-width:330px;
  }
  .control-panel p,.about-copy p{font-size:15px;max-width:320px}
  .control-panel{padding:22px}
  .system-diagram article h3{font-size:22px}
  .pricing-card{padding:22px}
  .pricing-card h2{font-size:30px}
  .faq-card h3{font-size:20px}
  .about-story{width:calc(100% - 32px)}
  .onboarding-panel{width:calc(100% - 32px)}
  .contact-box{padding:20px}
  .privacy-content{width:calc(100% - 32px)}
  .site-footer small{max-width:260px;margin:0 auto}
}

/* Phone contact form: keep the desktop content hierarchy without squeezing it into two columns. */
@media(max-width:720px){
  .contact-hero{
    padding-bottom:24px !important;
  }
  .contact-form-panel{
    width:calc(100% - 32px) !important;
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:16px !important;
    padding:8px 0 54px !important;
  }
  .contact-form-panel .contact-box{
    width:100% !important;
    min-width:0 !important;
    min-height:0 !important;
    padding:18px 16px !important;
    border-radius:12px !important;
  }
  .contact-form-card h2,
  .contact-details-card h2{
    margin-bottom:16px !important;
  }
  .professional-contact-form{
    gap:12px !important;
  }
  .professional-contact-form .form-row.two{
    grid-template-columns:1fr !important;
    gap:10px !important;
  }
  .professional-contact-form label{
    gap:6px !important;
    font-size:12.5px !important;
  }
  .professional-contact-form input,
  .professional-contact-form select,
  .professional-contact-form textarea{
    min-height:44px !important;
    padding:11px 12px !important;
    font-size:14px !important;
  }
  .professional-contact-form textarea{
    min-height:112px !important;
  }
  .professional-contact-form .button{
    width:100% !important;
    min-height:46px !important;
    justify-content:center !important;
    margin-top:2px !important;
  }
  .contact-details-card .page-lead{
    max-width:none !important;
    font-size:16px !important;
  }
  .contact-details-card p:not(.page-lead){
    font-size:14px !important;
    line-height:1.58 !important;
  }
}

/* Footer flexibility after adding Privacy link */
.site-footer{
  min-height:54px;
  height:auto;
  grid-template-columns:220px minmax(0,1fr) 270px 120px;
  padding:6px 0;
}
.site-footer nav{
  flex-wrap:wrap;
  row-gap:6px;
  column-gap:20px;
}
@media(max-width:900px){
  .site-footer{grid-template-columns:1fr;gap:8px;text-align:center;min-height:0;padding:18px 0}
  .site-footer nav{justify-content:center}
}

/* --- Homepage premium rebuild v2: visual-first, shorter hero, richer graphics --- */
.home-canvas{
  background:
    radial-gradient(circle at 73% 14%,rgba(255,205,88,.16),transparent 24%),
    radial-gradient(circle at 18% 22%,rgba(47,125,255,.16),transparent 26%),
    radial-gradient(circle at 50% 100%,rgba(217,154,39,.08),transparent 32%),
    linear-gradient(180deg,#030914 0%,#020813 100%);
}
.home-premium-hero{
  grid-template-columns:minmax(350px,.43fr) minmax(520px,.57fr);
  align-items:center;
  min-height:666px;
  padding-top:22px;
  gap:0;
}
.home-premium-hero .hero-copy{
  padding-bottom:28px;
}
.home-premium-hero h1{
  color:#f8fbff;
  max-width:520px;
  font-size:clamp(62px,7.2vw,94px);
  line-height:.86;
  letter-spacing:-.07em;
  margin-bottom:20px;
}
.home-premium-hero .hero-subtitle{
  font-size:clamp(20px,2vw,25px);
  font-weight:700;
  color:#fff7dd;
  margin-bottom:14px;
}
.home-premium-hero .hero-body{
  max-width:430px;
  font-size:16px;
  line-height:1.66;
  color:#dce4ef;
  margin-bottom:28px;
}
.demo-lab-section{
  width:min(var(--max),calc(100% - 48px));
  margin:0 auto 70px;
  position:relative;
  z-index:3;
  display:grid;
  grid-template-columns:minmax(310px,.36fr) minmax(560px,.64fr);
  gap:18px;
  align-items:center;
  padding:34px 0 28px;
}
.demo-lab-section::before{
  content:"";
  position:absolute;
  inset:10px -22px 0;
  border:1px solid rgba(255,212,118,.13);
  border-radius:38px;
  background:
    radial-gradient(circle at 78% 44%,rgba(47,125,255,.16),transparent 35%),
    radial-gradient(circle at 18% 52%,rgba(255,212,118,.12),transparent 28%),
    rgba(3,9,18,.28);
  z-index:-1;
}
.demo-lab-copy h2{
  font-family:var(--font-title);
  font-size:clamp(38px,4.5vw,58px);
  line-height:.91;
  letter-spacing:-.065em;
  margin:0 0 18px;
  max-width:520px;
}
.demo-lab-copy h2 em{
  font-style:normal;
  background:linear-gradient(92deg,#fff4bd 0%,#ffca55 46%,#d18b25 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.demo-lab-copy p{
  max-width:440px;
  color:#d6deea;
  font-size:16px;
  line-height:1.72;
  margin:0 0 24px;
}
.demo-lab-art{
  position:relative;
  min-width:0;
  margin-right:-32px;
}
.demo-lab-art img{
  width:100%;
  filter:drop-shadow(0 36px 65px rgba(0,0,0,.36));
}
.services-premium{
  margin-top:22px;
  margin-bottom:74px;
}
.services-premium .section-heading{
  margin-bottom:34px;
}
.services-premium .section-heading h2{
  max-width:760px;
  margin:7px auto 0;
  font-size:clamp(32px,3.8vw,48px);
  line-height:.95;
  letter-spacing:-.055em;
}
.services-premium .service-card{
  min-height:390px;
  background:
    radial-gradient(circle at 50% 0%,rgba(255,205,92,.10),transparent 42%),
    linear-gradient(180deg,rgba(8,22,36,.94),rgba(3,10,18,.98));
}
.services-premium .service-image{
  height:160px;
  margin-bottom:24px;
}
.services-premium .service-card:hover .service-image,
.services-premium .service-card:focus-visible .service-image{
  height:205px;
}
.compact-heading{margin-bottom:24px}
.compact-heading h2{
  font-size:clamp(28px,3vw,40px);
  letter-spacing:-.055em;
  max-width:690px;
  margin:7px auto 0;
}
.home-closing{
  margin-top:0;
}
.home-closing .closing-copy h2{
  max-width:760px;
}
@media(max-width:1020px){
  .home-premium-hero{
    grid-template-columns:1fr;
    min-height:auto;
    padding-top:34px;
  }
  .home-premium-hero h1{max-width:620px}
  .home-premium-hero .hero-body{max-width:560px}
  .demo-lab-section{
    grid-template-columns:1fr;
    gap:20px;
  }
  .demo-lab-art{margin-right:0}
  .demo-lab-copy p{max-width:640px}
}
@media(max-width:760px){
  .home-premium-hero{
    width:calc(100% - 32px);
    display:block;
    padding-top:30px;
  }
  .home-premium-hero h1{
    max-width:360px;
    font-size:clamp(54px,16vw,72px);
    line-height:.84;
  }
  .home-premium-hero .hero-subtitle{font-size:19px}
  .home-premium-hero .hero-body{max-width:330px;font-size:15px;line-height:1.65}
  .home-premium-hero .hero-actions{align-items:stretch}
  .demo-lab-section{
    width:calc(100% - 32px);
    margin-bottom:52px;
  }
  .demo-lab-section{padding:24px 0 18px}
  .demo-lab-section::before{inset:0 -8px;border-radius:24px}
  .demo-lab-copy h2{
    font-size:clamp(38px,12vw,52px);
    max-width:340px;
  }
  .demo-lab-copy p{font-size:15px;max-width:330px}
  .demo-lab-art img{
    width:650px;
    max-width:none;
    transform:translateX(-130px);
  }
  .services-premium{width:calc(100% - 32px);margin-bottom:54px}
  .services-premium .section-heading h2{font-size:clamp(34px,10vw,46px);max-width:330px}
  .services-premium .service-image{height:220px}
  .services-premium .service-card:hover .service-image,
  .services-premium .service-card:focus-visible .service-image{height:250px}
  .compact-heading h2{font-size:clamp(28px,8.6vw,38px);max-width:310px}
}

/* --- Qaimo animated phone hero integration --- */
.qaimo-phone-art{
  position:relative;
  z-index:2;
  margin-top:-28px;
  margin-right:-118px;
  margin-left:-70px;
  min-height:620px;
  display:grid;
  place-items:center;
  isolation:isolate;
  transform:translate3d(-10px,var(--parallax-y,0px),0);
  will-change:auto;
}
.qaimo-phone-art::before{
  content:"";
  position:absolute;
  width:700px;
  height:700px;
  right:1%;
  top:49%;
  transform:translateY(-50%);
  border-radius:50%;
  background:
    radial-gradient(circle at 56% 42%,rgba(255,212,118,.16),transparent 24%),
    radial-gradient(circle at 54% 48%,rgba(126,77,255,.26),transparent 48%),
    radial-gradient(circle at 50% 50%,transparent 55%,rgba(255,212,118,.13) 56%,transparent 57%);
  filter:blur(.2px);
  opacity:.78;
  z-index:0;
  pointer-events:none;
}
.qaimo-phone-art::after{
  content:"";
  position:absolute;
  inset:7% 1% 10% auto;
  width:min(650px,62vw);
  pointer-events:none;
  z-index:5;
  background:radial-gradient(circle at 58% 16%,rgba(255,255,255,.18),transparent 18%);
  mix-blend-mode:screen;
  opacity:.34;
}
.qaimo-phone-scene{
  position:relative;
  z-index:2;
  width:min(1320px,106vw);
  aspect-ratio:1002 / 561;
  overflow:visible;
  filter:
    drop-shadow(0 46px 86px rgba(0,0,0,.50))
    drop-shadow(0 0 34px rgba(147,92,255,.18))
    drop-shadow(0 0 18px rgba(255,212,118,.07));
  border-radius:0;
  -webkit-mask-image:none;
  mask-image:none;
}
.qaimo-phone-canvas{
  position:absolute;
  left:0;
  top:0;
  width:1002px;
  height:561px;
  transform-origin:left top;
}
.qaimo-phone-bg{
  position:absolute;
  inset:0;
  width:1002px;
  height:561px;
  object-fit:contain;
  user-select:none;
  pointer-events:none;
}
.qaimo-phone-plane{
  position:absolute;
  left:0;
  top:0;
  width:390px;
  height:720px;
  transform-origin:0 0;
  /* Qaimo phone keystone â€” generated by phone-keystone-calibrator.html
   points: {"tl":{"x":602.0491525423729,"y":92.19939088983051},"tr":{"x":792.2593220338982,"y":80.31125529661017},"br":{"x":672.528813559322,"y":460.731594279661},"bl":{"x":491.6593220338983,"y":429.3129502118644}} */
  --qaimo-phone-transform:matrix3d(0.260233928938, -0.053542477372, 0, -0.000287133831, -0.168673911035, 0.454805675031, 0, -0.000031230369, 0, 0, 1, 0, 602.049152542373, 92.199390889831, 0, 1);
  transform:var(--qaimo-phone-transform);
  overflow:hidden;
  background:
    radial-gradient(circle at 32% 8%,rgba(117,78,255,.34),transparent 34%),
    radial-gradient(circle at 86% 24%,rgba(255,212,118,.08),transparent 32%),
    linear-gradient(158deg,rgba(55,28,78,.98) 0%,rgba(26,12,37,.99) 32%,rgba(5,6,14,.99) 100%);
  border:0;
  border-radius:42px;
  clip-path:inset(0 round 42px);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08),inset 0 -28px 70px rgba(0,0,0,.32);
  backface-visibility:hidden;
  -webkit-font-smoothing:antialiased;
}
.qaimo-phone-plane::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:
    linear-gradient(115deg,rgba(255,255,255,.08),transparent 23%,transparent 70%,rgba(255,212,118,.04)),
    radial-gradient(circle at 62% 11%,rgba(255,255,255,.06),transparent 18%);
  opacity:.72;
}

.qaimo-phone-ui{
  position:relative;
  z-index:1;
  height:100%;
  padding:82px 22px 26px;
}
.qaimo-thread{
  padding-top:0;
  display:flex;
  flex-direction:column;
  gap:11px;
  transform:none;
  transform-origin:50% 42%;
}
.qaimo-message-row,
.qaimo-typing-row{
  display:flex;
  align-items:flex-end;
  gap:8px;
  opacity:0;
  will-change:auto;
}
.qaimo-message-row{
  transform:translateY(14px) scale(.985);
}
.qaimo-typing-row{
  transform:translateY(8px);
  height:34px;
  margin-top:-4px;
  margin-bottom:-6px;
}
.qaimo-message-row.customer,
.qaimo-typing-row.customer{
  justify-content:flex-end;
}
.qaimo-message-row.customer .qaimo-avatar,
.qaimo-typing-row.customer .qaimo-avatar{
  order:2;
}
.qaimo-avatar{
  width:38px;
  height:38px;
  border-radius:999px;
  flex:0 0 auto;
  display:grid;
  place-items:center;
  overflow:hidden;
  background:rgba(5,5,16,.92);
  border:1px solid rgba(246,198,107,.48);
  box-shadow:0 0 18px rgba(139,92,246,.28),inset 0 1px 0 rgba(255,255,255,.1);
}
.qaimo-avatar.ai{
  border-color:rgba(246,198,107,.72);
  background:
    radial-gradient(circle at 38% 30%,rgba(246,198,107,.18),transparent 42%),
    rgba(5,5,16,.94);
  box-shadow:0 0 22px rgba(246,198,107,.18),0 0 26px rgba(139,92,246,.28),inset 0 1px 0 rgba(255,255,255,.12);
}
.qaimo-avatar.ai img{
  width:28px;
  height:28px;
  object-fit:contain;
  display:block;
}
.qaimo-avatar.customer{
  position:relative;
  border-color:rgba(255,255,255,.14);
  background:linear-gradient(145deg,#6b5cab,#342449);
}
.qaimo-avatar.customer::before{
  content:"";
  position:absolute;
  width:13px;
  height:13px;
  left:10px;
  top:7px;
  border-radius:999px;
  background:#f7d3a9;
  box-shadow:0 0 0 4px rgba(255,255,255,.04);
}
.qaimo-avatar.customer::after{
  content:"";
  position:absolute;
  width:23px;
  height:16px;
  left:5px;
  bottom:0;
  border-radius:14px 14px 0 0;
  background:rgba(19,15,36,.96);
}
.qaimo-bubble{
  max-width:226px;
  padding:10px 12px;
  border-radius:17px;
  font-size:14.5px;
  line-height:1.19;
  font-weight:650;
  letter-spacing:-.025em;
  box-shadow:0 14px 24px rgba(0,0,0,.22);
  position:relative;
}
.customer .qaimo-bubble{
  max-width:214px;
  color:rgba(255,248,232,.96);
  background:rgba(73,60,98,.82);
  border:1px solid rgba(255,255,255,.13);
  border-bottom-right-radius:7px;
}
.customer .qaimo-bubble::after{
  content:"";
  position:absolute;
  right:-8px;
  bottom:8px;
  border-left:10px solid rgba(73,60,98,.82);
  border-top:7px solid transparent;
  border-bottom:4px solid transparent;
}
.ai .qaimo-bubble{
  color:#1c1105;
  background:linear-gradient(135deg,#ffe7a3,#f6c66b 65%,#e6a33a);
  border:1px solid rgba(255,255,255,.24);
  border-bottom-left-radius:7px;
}
.ai .qaimo-bubble::before{
  content:"";
  position:absolute;
  left:-8px;
  bottom:8px;
  border-right:10px solid #f6c66b;
  border-top:7px solid transparent;
  border-bottom:4px solid transparent;
}
.qaimo-typing-bubble{
  height:32px;
  min-width:62px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  border:1px solid rgba(255,255,255,.11);
  background:rgba(255,255,255,.10);
}
.ai .qaimo-typing-bubble{
  border-bottom-left-radius:7px;
}
.customer .qaimo-typing-bubble{
  border-bottom-right-radius:7px;
  background:rgba(73,60,98,.62);
  border-color:rgba(255,255,255,.13);
}
.qaimo-typing-bubble i{
  width:6px;
  height:6px;
  border-radius:999px;
  background:rgba(246,198,107,.86);
  animation:none;
}
.customer .qaimo-typing-bubble i{
  background:rgba(255,248,232,.78);
}
.qaimo-typing-bubble i:nth-child(2){animation-delay:.15s}
.qaimo-typing-bubble i:nth-child(3){animation-delay:.3s}
.qaimo-phone-plane.is-playing .ct1{animation:qaimoTypeFlash .88s ease .36s both}
.qaimo-phone-plane.is-playing .m1{animation:qaimoMessageIn .50s cubic-bezier(.18,.8,.18,1) 1.24s forwards}
.qaimo-phone-plane.is-playing .t1{animation:qaimoTypeFlash .95s ease 2.00s both}
.qaimo-phone-plane.is-playing .m2{animation:qaimoMessageIn .50s cubic-bezier(.18,.8,.18,1) 2.96s forwards}
.qaimo-phone-plane.is-playing .ct2{animation:qaimoTypeFlash .86s ease 3.80s both}
.qaimo-phone-plane.is-playing .m3{animation:qaimoMessageIn .50s cubic-bezier(.18,.8,.18,1) 4.66s forwards}
.qaimo-phone-plane.is-playing .t2{animation:qaimoTypeFlash .95s ease 5.42s both}
.qaimo-phone-plane.is-playing .m4{animation:qaimoMessageIn .50s cubic-bezier(.18,.8,.18,1) 6.38s forwards}
.qaimo-phone-plane.is-playing .ct3{animation:qaimoTypeFlash .78s ease 7.22s both}
.qaimo-phone-plane.is-playing .m5{animation:qaimoMessageIn .50s cubic-bezier(.18,.8,.18,1) 8.00s forwards}
.qaimo-phone-plane.is-playing .t3{animation:qaimoTypeFlash .98s ease 8.76s both}
.qaimo-phone-plane.is-playing .m6{animation:qaimoMessageIn .50s cubic-bezier(.18,.8,.18,1) 9.76s forwards}
@keyframes qaimoMessageIn{to{opacity:1;transform:translateY(0) scale(1)}}
@keyframes qaimoTypeFlash{
  0%{opacity:0;transform:translateY(8px)}
  18%{opacity:1;transform:translateY(0)}
  76%{opacity:1;transform:translateY(0)}
  100%{opacity:0;transform:translateY(-4px)}
}
@keyframes qaimoDot{
  0%,100%{opacity:.44;transform:translateY(0)}
  50%{opacity:1;transform:translateY(-3px)}
}

@media(max-width:1180px){
  .qaimo-phone-art{margin-right:-150px;margin-left:-102px;transform:translate3d(-32px,var(--parallax-y,0px),0)}
  .qaimo-phone-scene{width:min(1260px,118vw)}
}
@media(max-width:1020px){
  .qaimo-phone-art{
    min-height:auto;
    margin:8px -72px 0 -50px;
    transform:translate3d(0,var(--parallax-y,0px),0);
  }
  .qaimo-phone-scene{width:min(1180px,128vw)}
}
@media(max-width:760px){
  .qaimo-phone-art{
    margin:28px -98px 0 -24px;
    min-height:420px;
  }
  .qaimo-phone-art::before{width:520px;height:520px;right:-22%;opacity:.68}
  .qaimo-phone-art::after{display:none}
  .qaimo-phone-scene{
    width:920px;
    max-width:none;
    margin-left:-390px;
    border-radius:14px;
  }
}
@media(max-width:460px){
  .qaimo-phone-art{min-height:350px;margin-right:-94px;margin-left:-18px}
  .qaimo-phone-scene{width:790px;margin-left:-338px}
}
@media(prefers-reduced-motion:reduce){
  .qaimo-message-row{opacity:1;transform:none}
  .qaimo-typing-row{display:none}
}

/* --- Homepage premium rebuild v3: commercial AI demo system --- */
.home-canvas{
  background:
    radial-gradient(circle at 74% 9%,rgba(255,212,118,.18),transparent 25%),
    radial-gradient(circle at 23% 19%,rgba(111,78,255,.20),transparent 29%),
    radial-gradient(circle at 84% 62%,rgba(26,108,164,.18),transparent 34%),
    linear-gradient(180deg,#020713 0%,#030914 48%,#020711 100%);
}
.home-canvas::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.32;
  background:
    linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px),
    linear-gradient(180deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size:92px 92px;
  mask-image:linear-gradient(180deg,#000 0%,transparent 72%);
}
.home-hero-v3{
  grid-template-columns:minmax(410px,.41fr) minmax(620px,.59fr);
  min-height:710px;
  padding-top:10px;
  gap:18px;
  align-items:center;
}
.home-hero-v3::before{
  content:"";
  position:absolute;
  left:-9%;
  top:16%;
  width:430px;
  height:430px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(117,78,255,.20),transparent 68%);
  filter:blur(2px);
  pointer-events:none;
  z-index:0;
}
.home-hero-v3 .hero-copy{
  padding:28px 0 58px;
}
.home-hero-v3 h1{
  max-width:610px;
  font-size:clamp(64px,7.6vw,98px);
  line-height:.84;
  letter-spacing:-.078em;
  margin-bottom:22px;
}
.home-hero-v3 .hero-subtitle{
  max-width:500px;
  color:#fff5d6;
  font-size:clamp(19px,1.9vw,24px);
  line-height:1.15;
  margin-bottom:16px;
}
.home-hero-v3 .hero-body{
  max-width:495px;
  color:#dbe5f0;
  font-size:16.5px;
  line-height:1.68;
  margin-bottom:30px;
}
.home-hero-v3 .hero-actions{
  gap:12px;
  margin-bottom:18px;
}
.home-hero-v3 .button{
  border-radius:12px;
  min-width:188px;
  height:52px;
}
.home-hero-v3 .button-outline{
  background:rgba(6,18,32,.54);
  border-color:rgba(255,212,118,.34);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
}
.hero-channel-strip{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  max-width:520px;
  margin:4px 0 18px;
}
.hero-channel-strip span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:36px;
  padding:0 12px 0 7px;
  border-radius:999px;
  border:1px solid rgba(255,212,118,.20);
  background:rgba(2,8,18,.46);
  color:#edf4ff;
  font-size:12.5px;
  font-weight:800;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05);
}
.hero-channel-strip i{
  min-width:32px;
  height:24px;
  padding:0 7px;
  display:inline-grid;
  place-items:center;
  border-radius:999px;
  font-style:normal;
  font-size:9px;
  letter-spacing:.04em;
  color:#130b02;
  background:linear-gradient(180deg,#ffe8a9,#d99a27);
}
.phone-hero-stack{
  position:relative;
  min-height:690px;
  display:grid;
  place-items:center;
  isolation:isolate;
  margin-right:-72px;
  margin-left:-28px;
}
.phone-hero-stack::before{
  content:"";
  position:absolute;
  width:720px;
  height:720px;
  right:3%;
  top:48%;
  transform:translateY(-50%);
  border-radius:50%;
  background:
    radial-gradient(circle at 50% 50%,rgba(255,212,118,.17),transparent 28%),
    radial-gradient(circle at 50% 50%,rgba(129,85,255,.22),transparent 47%),
    radial-gradient(circle at 50% 50%,transparent 54%,rgba(255,212,118,.15) 55%,transparent 56%);
  opacity:.72;
  z-index:0;
  pointer-events:none;
}
.phone-hero-stack::after{
  content:"";
  position:absolute;
  right:4%;
  bottom:74px;
  width:min(650px,78vw);
  height:180px;
  border:0;
  border-radius:50%;
  background:
    radial-gradient(ellipse at 52% 44%,rgba(255,212,118,.16),transparent 30%),
    radial-gradient(ellipse at 52% 50%,rgba(117,78,255,.24),transparent 58%),
    radial-gradient(ellipse at 50% 62%,rgba(0,0,0,.36),transparent 70%);
  transform:rotate(-8deg);
  filter:blur(18px);
  opacity:.62;
  z-index:0;
  pointer-events:none;
}
.phone-hero-stack .qaimo-phone-art{
  z-index:2;
}
.demo-lab-v3{
  grid-template-columns:minmax(360px,.40fr) minmax(620px,.60fr);
  gap:34px;
  padding:50px 0 46px;
  margin-bottom:86px;
}
.demo-lab-v3::before{
  inset:0 -26px;
  border-color:rgba(255,212,118,.16);
  border-radius:42px;
  background:
    radial-gradient(circle at 74% 34%,rgba(102,83,255,.18),transparent 38%),
    radial-gradient(circle at 10% 64%,rgba(255,212,118,.12),transparent 30%),
    linear-gradient(180deg,rgba(6,18,32,.50),rgba(2,8,18,.38));
}
.demo-lab-v3 .demo-lab-copy h2{
  max-width:480px;
}
.services-v3{
  margin-top:0;
  margin-bottom:84px;
}
.services-v3 .section-heading h2{
  max-width:830px;
}
.services-v3 .service-card{
  border-color:rgba(255,212,118,.16);
  box-shadow:0 24px 50px rgba(0,0,0,.26),inset 0 1px 0 rgba(255,255,255,.05);
}
.services-v3 .service-card h3{
  font-size:25px;
  letter-spacing:-.045em;
}
.home-closing-v3{
  border-top:1px solid rgba(255,212,118,.16);
}
.home-closing-v3 .closing-copy h2{
  max-width:780px;
  margin-left:auto;
  margin-right:auto;
}
.home-closing-v3 .closing-copy p{
  max-width:620px;
}

@media(max-width:1180px){
  .home-hero-v3{
    grid-template-columns:minmax(360px,.42fr) minmax(540px,.58fr);
  }
  .phone-hero-stack{
    margin-right:-118px;
    margin-left:-56px;
  }
}
@media(max-width:1020px){
  .home-hero-v3{
    grid-template-columns:1fr;
    padding-top:34px;
    gap:0;
  }
  .home-hero-v3 .hero-copy{padding-bottom:12px}
  .home-hero-v3 h1{max-width:650px}
  .phone-hero-stack{
    min-height:620px;
    margin:0 -86px 0 -28px;
  }
  .demo-lab-v3{grid-template-columns:1fr;gap:26px}
}
@media(max-width:760px){
  .home-hero-v3{
    width:calc(100% - 32px);
    padding-top:28px;
  }
  .home-hero-v3 .hero-copy{padding-bottom:0}
  .home-hero-v3 h1{
    max-width:390px;
    font-size:clamp(56px,16vw,74px);
  }
  .home-hero-v3 .hero-subtitle{max-width:360px;font-size:18.5px;line-height:1.22}
  .home-hero-v3 .hero-body{max-width:352px;font-size:15px;line-height:1.64}
  .home-hero-v3 .button{width:100%;min-width:0}
  .hero-channel-strip{display:grid;grid-template-columns:1fr 1fr;max-width:352px;gap:8px}
  .hero-channel-strip span{font-size:11.5px;padding-right:9px}
  .hero-channel-strip i{min-width:30px;height:23px;font-size:8.5px}
  .phone-hero-stack{
    min-height:458px;
    margin:16px -24px 0;
  }
  .phone-hero-stack::before{width:530px;height:530px;right:-18%;opacity:.62}
  .phone-hero-stack::after{display:none}
  .demo-lab-v3{
    width:calc(100% - 32px);
    margin-bottom:58px;
    padding:28px 0 24px;
  }
  .demo-lab-v3::before{inset:0 -8px;border-radius:26px}
  .services-v3{margin-bottom:58px}
  .home-closing-v3 .closing-copy h2{max-width:340px}
}
@media(max-width:460px){
  .phone-hero-stack{min-height:388px;margin-top:14px}
  .hero-channel-strip{grid-template-columns:1fr}
}
.home-closing-v3{
  min-height:360px;
  padding:66px 0 62px;
  align-items:center;
}
.home-closing-v3 .button{
  height:48px;
  min-width:190px;
  border-radius:12px;
  font-size:13px;
}
@media(max-width:760px){
  .home-closing-v3{
    min-height:430px;
    padding:52px 0 72px;
    align-items:flex-start;
  }
  .home-closing-v3 .closing-copy{width:calc(100% - 32px)}
  .home-closing-v3 .button{width:100%;max-width:260px;height:46px}
}

/* --- Homepage refinement v4: cleaner phone overlay, premium hero, branded channels, animated demo process --- */
.home-hero-v3{
  grid-template-columns:minmax(408px,.40fr) minmax(660px,.60fr);
  gap:0;
}
.home-hero-v3 h1{
  max-width:690px;
  font-size:clamp(61px,7.1vw,94px);
  letter-spacing:-.08em;
}
.home-hero-v3 .hero-subtitle{
  max-width:540px;
  margin-bottom:14px;
  color:#fff5d6;
  font-size:clamp(22px,2.35vw,30px);
  font-weight:800;
  letter-spacing:-.045em;
}
.home-hero-v3 .hero-body{
  max-width:535px;
}
.home-hero-v3 .hero-actions{
  align-items:center;
  flex-wrap:wrap;
  margin-bottom:20px;
}
.home-hero-v3 .button-nav-style{
  min-width:166px;
  border:1px solid rgba(221,151,38,.82);
  border-radius:8px;
  color:#fff;
  background:rgba(2,8,19,.30);
  box-shadow:inset 0 0 0 1px rgba(255,220,132,.05),0 16px 34px rgba(0,0,0,.18);
}
.home-hero-v3 .button-nav-style span{
  color:var(--gold2);
  font-size:22px;
  line-height:1;
}
.home-hero-v3 .button-nav-style:hover{
  border-color:rgba(255,205,88,.95);
  box-shadow:inset 0 0 0 1px rgba(255,220,132,.07),0 18px 38px rgba(0,0,0,.24),0 0 28px rgba(221,151,38,.10);
}
.hero-channel-strip{
  gap:10px;
  max-width:610px;
  margin:8px 0 0;
}
.hero-channel-strip .channel-pill{
  min-height:44px;
  padding:6px 14px 6px 8px;
  gap:10px;
  border-color:rgba(255,212,118,.22);
  background:linear-gradient(180deg,rgba(9,25,42,.62),rgba(3,10,20,.42));
  box-shadow:0 14px 30px rgba(0,0,0,.16),inset 0 1px 0 rgba(255,255,255,.06);
}
.hero-channel-strip .channel-pill b{
  color:#f5f8ff;
  font-size:12.5px;
  font-weight:900;
  letter-spacing:-.015em;
  white-space:nowrap;
}
.hero-channel-strip .channel-logo{
  width:32px;
  height:32px;
  min-width:32px;
  display:grid;
  place-items:center;
  border-radius:999px;
  overflow:hidden;
  background:rgba(255,212,118,.10);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.12),0 0 18px rgba(255,212,118,.08);
}
.hero-channel-strip .channel-logo svg{
  width:27px;
  height:27px;
  display:block;
}
.hero-channel-strip .channel-web .channel-logo,
.hero-channel-strip .channel-voice .channel-logo{
  color:#ffd476;
  border:1px solid rgba(255,212,118,.24);
  background:linear-gradient(180deg,rgba(255,212,118,.15),rgba(255,212,118,.05));
}
.hero-channel-strip .channel-web svg rect,
.hero-channel-strip .channel-web svg path,
.hero-channel-strip .channel-voice svg path{
  fill:none;
  stroke:currentColor;
  stroke-width:2.1;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.hero-channel-strip .channel-line .channel-logo{
  background:rgba(6,199,85,.14);
  box-shadow:0 0 22px rgba(6,199,85,.13),inset 0 1px 0 rgba(255,255,255,.12);
}
.hero-channel-strip .channel-line svg path{fill:#06c755;stroke:none}
.hero-channel-strip .channel-line svg text{
  fill:#fff;
  font-size:6.2px;
  font-weight:900;
  font-family:Arial,Helvetica,sans-serif;
  letter-spacing:.02em;
}
.hero-channel-strip .channel-messenger .channel-logo{
  background:rgba(22,138,255,.11);
  box-shadow:0 0 22px rgba(22,138,255,.16),inset 0 1px 0 rgba(255,255,255,.12);
}

.phone-hero-stack{
  min-height:690px;
  margin-left:-124px;
  margin-right:-156px;
  transform:translateX(-28px);
}
.phone-hero-stack::before{
  width:780px;
  height:780px;
  right:8%;
  top:48%;
  background:
    radial-gradient(circle at 49% 48%,rgba(255,212,118,.15),transparent 19%),
    radial-gradient(circle at 53% 45%,rgba(129,85,255,.26),transparent 42%),
    radial-gradient(circle at 50% 50%,transparent 55%,rgba(255,212,118,.20) 55.4%,transparent 57.5%),
    radial-gradient(circle at 50% 50%,transparent 63%,rgba(126,230,255,.09) 63.4%,transparent 65%);
  opacity:.66;
  filter:blur(.2px);
}
.phone-hero-stack::after{
  right:17%;
  bottom:100px;
  width:520px;
  height:112px;
  background:radial-gradient(ellipse at 50% 50%,rgba(0,0,0,.74) 0%,rgba(0,0,0,.44) 38%,rgba(0,0,0,.14) 64%,transparent 76%);
  transform:rotate(-9deg);
  filter:blur(16px);
  opacity:.82;
  z-index:1;
}
.phone-hero-stack .qaimo-phone-art{
  transform:translate3d(-44px,var(--parallax-y,0px),0);
}
.qaimo-phone-art::before{
  width:660px;
  height:660px;
  right:10%;
  opacity:.50;
  background:
    radial-gradient(circle at 55% 46%,rgba(255,212,118,.10),transparent 22%),
    radial-gradient(circle at 54% 48%,rgba(126,77,255,.22),transparent 47%);
}
.qaimo-phone-art::after{
  opacity:.20;
}
.qaimo-phone-plane{
  background:transparent!important;
  box-shadow:none!important;
  border-radius:0!important;
  clip-path:none!important;
  pointer-events:none;
}
.qaimo-phone-plane::before{display:none!important}
.qaimo-phone-ui{
  padding:92px 23px 58px;
}
.qaimo-thread{
  gap:10px;
}
.qaimo-bubble{
  box-shadow:0 12px 22px rgba(0,0,0,.24),0 0 20px rgba(0,0,0,.10);
}
.customer .qaimo-bubble{
  background:rgba(63,51,86,.70);
  backdrop-filter:none;
}
.customer .qaimo-bubble::after{border-left-color:rgba(63,51,86,.70)}
.qaimo-typing-bubble{
  background:rgba(255,255,255,.08);
  backdrop-filter:none;
}
.customer .qaimo-typing-bubble{background:rgba(63,51,86,.54)}

.demo-lab-v3{
  margin-top:26px;
}
.demo-lab-process-graphic{
  position:relative;
  display:grid;
  grid-template-columns:minmax(190px,1fr) 172px minmax(190px,1fr);
  align-items:center;
  gap:22px;
  min-height:470px;
  margin-right:-28px;
  padding:30px;
  overflow:hidden;
  border-radius:30px;
  border:1px solid rgba(255,212,118,.18);
  background:
    radial-gradient(circle at 54% 45%,rgba(126,77,255,.18),transparent 36%),
    radial-gradient(circle at 84% 20%,rgba(255,212,118,.12),transparent 28%),
    linear-gradient(180deg,rgba(4,14,26,.76),rgba(2,8,18,.82));
  box-shadow:0 34px 72px rgba(0,0,0,.32),inset 0 1px 0 rgba(255,255,255,.06);
}
.demo-lab-process-graphic::before{
  content:"";
  position:absolute;
  inset:0;
  opacity:.34;
  background:
    linear-gradient(90deg,rgba(255,255,255,.055) 1px,transparent 1px),
    linear-gradient(180deg,rgba(255,255,255,.045) 1px,transparent 1px);
  background-size:46px 46px;
  mask-image:radial-gradient(circle at 50% 50%,#000 0 42%,transparent 77%);
  pointer-events:none;
}
.demo-process-glow{
  position:absolute;
  inset:auto 11% 48px;
  height:130px;
  border-radius:50%;
  background:radial-gradient(ellipse at center,rgba(255,212,118,.14),rgba(126,77,255,.13) 42%,transparent 72%);
  filter:blur(20px);
  pointer-events:none;
}
.demo-site-card{
  position:relative;
  z-index:2;
  min-height:286px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg,rgba(12,26,42,.92),rgba(5,12,24,.92));
  box-shadow:0 24px 48px rgba(0,0,0,.32),inset 0 1px 0 rgba(255,255,255,.06);
}
.demo-site-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(145deg,rgba(255,255,255,.08),transparent 28%,transparent 68%,rgba(255,212,118,.05));
  pointer-events:none;
}
.site-browser-bar{
  height:38px;
  display:flex;
  align-items:center;
  gap:6px;
  padding:0 13px;
  border-bottom:1px solid rgba(255,255,255,.08);
  background:rgba(1,6,14,.62);
}
.site-browser-bar span{
  width:7px;
  height:7px;
  border-radius:999px;
  background:rgba(255,255,255,.20);
}
.site-browser-bar span:first-child{background:rgba(255,212,118,.70)}
.site-browser-bar b{
  margin-left:5px;
  color:#dfe8f7;
  font-size:11px;
  font-weight:900;
  letter-spacing:-.02em;
  white-space:nowrap;
}
.site-mock-body{
  position:relative;
  min-height:248px;
  padding:19px 17px;
}
.site-nav-line{
  display:flex;
  justify-content:flex-end;
  gap:8px;
  margin-bottom:18px;
}
.site-nav-line i{
  width:30px;
  height:6px;
  border-radius:999px;
  background:rgba(255,255,255,.16);
}
.site-hero-line{
  width:72%;
  height:52px;
  border-radius:14px;
  margin-bottom:14px;
  background:
    linear-gradient(90deg,rgba(255,212,118,.24),rgba(126,77,255,.18)),
    linear-gradient(180deg,rgba(255,255,255,.09),rgba(255,255,255,.03));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}
.site-copy-line{
  height:8px;
  width:60%;
  border-radius:999px;
  margin-bottom:9px;
  background:rgba(220,231,246,.20);
}
.site-copy-line.wide{width:84%}
.site-card-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
  margin-top:18px;
}
.site-card-row i{
  height:55px;
  border-radius:12px;
  background:linear-gradient(180deg,rgba(255,255,255,.09),rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.06);
}
.demo-site-card small{
  position:absolute;
  left:16px;
  bottom:13px;
  z-index:3;
  color:#ffd476;
  font-size:10px;
  font-weight:900;
  letter-spacing:.10em;
  text-transform:uppercase;
}
.site-chat-widget{
  position:absolute;
  z-index:4;
  right:13px;
  bottom:36px;
  width:126px;
  padding:9px;
  border-radius:15px;
  border:1px solid rgba(255,212,118,.32);
  background:rgba(3,10,20,.78);
  backdrop-filter:none;
  box-shadow:0 18px 34px rgba(0,0,0,.38),0 0 26px rgba(255,212,118,.12),inset 0 1px 0 rgba(255,255,255,.08);
  animation:none;
}
.chat-widget-head{
  display:flex;
  align-items:center;
  gap:6px;
  margin-bottom:8px;
  color:#fff6dc;
  font-size:11px;
  font-weight:900;
}
.chat-widget-head img{
  width:18px!important;
  height:18px;
  filter:none!important;
}
.site-chat-widget p{
  margin:0 0 8px;
  color:#1a1005;
  font-size:10px;
  line-height:1.25;
  font-weight:900;
  padding:7px 8px;
  border-radius:11px 11px 11px 4px;
  background:linear-gradient(135deg,#ffe7a3,#d99a27);
}
.chat-widget-input{
  height:13px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
}
.demo-engine-core{
  position:relative;
  z-index:3;
  width:172px;
  height:172px;
  display:grid;
  place-items:center;
  border-radius:50%;
  border:1px solid rgba(255,212,118,.28);
  background:
    radial-gradient(circle at 42% 35%,rgba(255,212,118,.19),transparent 30%),
    radial-gradient(circle at 62% 62%,rgba(126,77,255,.28),transparent 50%),
    linear-gradient(180deg,rgba(9,24,42,.95),rgba(3,10,21,.95));
  box-shadow:0 0 44px rgba(126,77,255,.22),0 22px 42px rgba(0,0,0,.34),inset 0 1px 0 rgba(255,255,255,.08);
}
.engine-logo{
  position:relative;
  z-index:3;
  width:62px;
  height:62px;
  display:grid;
  place-items:center;
  border-radius:50%;
  border:1px solid rgba(255,212,118,.36);
  background:rgba(2,8,18,.74);
  box-shadow:0 0 24px rgba(255,212,118,.12),inset 0 1px 0 rgba(255,255,255,.10);
}
.engine-logo img{
  width:43px!important;
  height:43px;
  object-fit:contain;
  filter:none!important;
}
.demo-engine-core b{
  position:absolute;
  left:50%;
  bottom:23px;
  transform:translateX(-50%);
  width:max-content;
  color:#fff7df;
  font-size:12px;
  font-weight:900;
  letter-spacing:-.02em;
}
.engine-orbit{
  position:absolute;
  inset:13px;
  border-radius:50%;
  border:1px dashed rgba(255,212,118,.30);
  animation:none;
}
.engine-orbit.orbit-b{
  inset:30px;
  border-color:rgba(126,230,255,.18);
  animation-duration:11s;
  animation-direction:reverse;
}
.demo-flow-line{
  position:relative;
  z-index:2;
  height:2px;
  min-width:70px;
  margin:0 -8px;
  background:linear-gradient(90deg,rgba(255,212,118,.05),rgba(255,212,118,.42),rgba(126,230,255,.20));
  box-shadow:0 0 20px rgba(255,212,118,.14);
}
.demo-flow-line::before,
.demo-flow-line::after{
  content:"";
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:7px;
  height:7px;
  border-radius:999px;
  background:#ffd476;
  box-shadow:0 0 16px rgba(255,212,118,.65);
}
.demo-flow-line::before{left:0}
.demo-flow-line::after{right:0}
.demo-flow-line i{
  position:absolute;
  top:50%;
  left:0;
  width:42px;
  height:2px;
  border-radius:999px;
  transform:translateY(-50%);
  background:linear-gradient(90deg,transparent,#fff3bc,transparent);
  filter:drop-shadow(0 0 10px rgba(255,212,118,.65));
  animation:none;
}
.demo-flow-right i{animation-delay:.42s}
@keyframes demoFlowPulse{
  0%{left:-32px;opacity:0}
  18%{opacity:1}
  80%{opacity:1}
  100%{left:calc(100% - 10px);opacity:0}
}
@keyframes engineSpin{to{transform:rotate(360deg)}}
@keyframes chatWidgetFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-7px)}
}

@media(max-width:1180px){
  .phone-hero-stack{margin-left:-120px;margin-right:-178px;transform:translateX(-18px)}
  .phone-hero-stack .qaimo-phone-art{transform:translate3d(-36px,var(--parallax-y,0px),0)}
  .demo-lab-process-graphic{grid-template-columns:minmax(170px,1fr) 150px minmax(170px,1fr);gap:18px;padding:24px}
  .demo-engine-core{width:150px;height:150px}
}
@media(max-width:1020px){
  .home-hero-v3{grid-template-columns:1fr;gap:0}
  .phone-hero-stack{min-height:610px;margin:0 -88px 0 -68px;transform:translateX(-30px)}
  .demo-lab-process-graphic{margin-right:0;grid-template-columns:minmax(190px,1fr) 160px minmax(190px,1fr)}
}
@media(max-width:760px){
  .home-hero-v3 h1{font-size:clamp(51px,14.6vw,70px);max-width:390px}
  .home-hero-v3 .hero-subtitle{font-size:22px;max-width:352px}
  .home-hero-v3 .hero-actions{align-items:stretch}
  .hero-channel-strip{grid-template-columns:1fr 1fr;max-width:352px;gap:8px;margin-top:2px}
  .hero-channel-strip .channel-pill{min-height:42px;padding:6px 10px 6px 7px}
  .hero-channel-strip .channel-pill b{font-size:11.5px}
  .hero-channel-strip .channel-logo{width:30px;height:30px;min-width:30px}
  .phone-hero-stack{min-height:456px;margin:14px -40px 0 -52px;transform:translateX(-18px)}
  .phone-hero-stack .qaimo-phone-art{transform:translate3d(-22px,var(--parallax-y,0px),0)}
  .phone-hero-stack::after{width:350px;height:78px;right:16%;bottom:55px;filter:blur(12px)}
  .qaimo-phone-ui{padding:92px 23px 58px}
  .demo-lab-v3{margin-top:10px}
  .demo-lab-process-graphic{grid-template-columns:1fr;gap:18px;padding:18px;min-height:0;border-radius:22px}
  .demo-site-card{min-height:258px}
  .site-mock-body{min-height:220px;padding:16px 14px}
  .demo-engine-core{width:150px;height:150px;margin:0 auto}
  .demo-flow-line{display:none}
}
@media(max-width:460px){
  .phone-hero-stack{min-height:392px;margin-top:12px;transform:translateX(-12px)}
  .hero-channel-strip{grid-template-columns:1fr}
}
@media(prefers-reduced-motion:reduce){
  .demo-flow-line i,.engine-orbit,.site-chat-widget{animation:none!important}
}

.hero-channel-strip .channel-logo{
  padding:0!important;
  min-height:32px!important;
  gap:0!important;
  border:0;
  font-size:initial;
  font-weight:initial;
}
@media(max-width:760px){.hero-channel-strip .channel-logo{min-height:30px!important}}

.demo-lab-process-graphic{
  grid-template-columns:minmax(190px,1fr) 76px 172px 76px minmax(190px,1fr);
  column-gap:0;
}
.demo-lab-process-graphic .demo-site-source{grid-column:1}
.demo-lab-process-graphic .demo-flow-left{grid-column:2}
.demo-lab-process-graphic .demo-engine-core{grid-column:3}
.demo-lab-process-graphic .demo-flow-right{grid-column:4}
.demo-lab-process-graphic .demo-site-demo{grid-column:5}
@media(max-width:1180px){
  .demo-lab-process-graphic{grid-template-columns:minmax(170px,1fr) 62px 150px 62px minmax(170px,1fr);column-gap:0}
}
@media(max-width:1020px){
  .demo-lab-process-graphic{grid-template-columns:minmax(180px,1fr) 58px 150px 58px minmax(180px,1fr)}
}
@media(max-width:760px){
  .demo-lab-process-graphic{grid-template-columns:1fr;column-gap:0}
  .demo-lab-process-graphic .demo-site-source,
  .demo-lab-process-graphic .demo-engine-core,
  .demo-lab-process-graphic .demo-site-demo{grid-column:auto}
}

@media(max-width:760px){.qaimo-phone-scene{margin-left:-330px}}
@media(max-width:460px){.qaimo-phone-scene{margin-left:-292px}}


/* --- Qaimo client refinements: left-shifted hero phone, 3D gold reveal swoosh, demo-engine spacing --- */
.home-hero-v3{
  margin-bottom:34px;
}
.phone-hero-stack{
  margin-left:-180px;
  margin-right:-180px;
  transform:translateX(-54px);
}
.phone-hero-stack .qaimo-phone-art{
  transform:translate3d(-76px,var(--parallax-y,0px),0);
}
.phone-hero-stack::before{
  right:15%;
  width:720px;
  height:720px;
  background:
    radial-gradient(circle at 55% 45%,rgba(255,212,118,.10),transparent 18%),
    radial-gradient(circle at 54% 48%,rgba(126,77,255,.24),transparent 45%),
    radial-gradient(circle at 52% 54%,rgba(9,18,34,.18),transparent 65%);
  opacity:.58;
}
.phone-hero-stack::after{
  right:29%;
  bottom:72px;
  width:470px;
  height:98px;
  background:
    radial-gradient(ellipse at 50% 50%,rgba(0,0,0,.76) 0%,rgba(0,0,0,.48) 34%,rgba(0,0,0,.18) 61%,transparent 78%),
    radial-gradient(ellipse at 56% 45%,rgba(255,212,118,.07),transparent 58%);
  transform:rotate(-10deg) skewX(-4deg);
  filter:blur(13px);
  opacity:.86;
}

.demo-lab-section.demo-lab-v3{
  width:min(1320px,calc(100% - 64px));
  grid-template-columns:minmax(320px,.32fr) minmax(760px,.68fr);
  gap:44px;
  padding:62px 0 58px;
  margin-top:58px;
  margin-bottom:118px;
}
.demo-lab-v3::before{
  inset:0 -20px;
}
.demo-lab-process-graphic{
  margin-right:0;
  grid-template-columns:minmax(220px,1fr) 82px 176px 82px minmax(236px,1fr);
  min-height:492px;
  padding:32px;
  border-radius:34px;
  overflow:hidden;
}
.demo-site-card{
  min-height:306px;
}
.site-mock-body{
  min-height:266px;
}
.site-browser-bar b{
  overflow:hidden;
  text-overflow:ellipsis;
}
.demo-engine-core{
  width:176px;
  height:176px;
}
.demo-engine-core .engine-logo{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
}
.demo-engine-core b{
  bottom:22px;
}
.services-v3{
  margin-top:0;
  margin-bottom:112px;
}
.services-v3 .section-heading{
  margin-bottom:40px;
}
.home-closing-v3{
  margin-top:14px;
}

@media(max-width:1260px){
  .demo-lab-section.demo-lab-v3{
    width:min(var(--max),calc(100% - 48px));
    grid-template-columns:1fr;
    gap:30px;
    padding:54px 0 52px;
  }
  .demo-lab-v3 .demo-lab-copy h2,
  .demo-lab-copy p{
    max-width:720px;
  }
  .demo-lab-process-graphic{
    grid-template-columns:minmax(220px,1fr) 88px 176px 88px minmax(236px,1fr);
  }
}
@media(max-width:1180px){
  .phone-hero-stack{margin-left:-166px;margin-right:-190px;transform:translateX(-46px)}
  .phone-hero-stack .qaimo-phone-art{transform:translate3d(-66px,var(--parallax-y,0px),0)}
}
@media(max-width:1020px){
  .phone-hero-stack{margin:0 -88px 0 -98px;transform:translateX(-36px)}
  .phone-hero-stack .qaimo-phone-art{transform:translate3d(-46px,var(--parallax-y,0px),0)}
  .demo-lab-section.demo-lab-v3{margin-top:42px;margin-bottom:96px}
  .demo-lab-process-graphic{
    grid-template-columns:minmax(190px,1fr) 64px 154px 64px minmax(205px,1fr);
    padding:24px;
  }
  .demo-engine-core{width:154px;height:154px}
}
@media(max-width:760px){
  .home-hero-v3{margin-bottom:28px}
  .phone-hero-stack{min-height:456px;margin:12px -42px 0 -64px;transform:translateX(-18px)}
  .phone-hero-stack .qaimo-phone-art{transform:translate3d(-28px,var(--parallax-y,0px),0)}
  .phone-hero-stack::after{right:20%;bottom:39px;width:320px;height:70px;filter:blur(10px)}
  .demo-lab-section.demo-lab-v3{width:calc(100% - 32px);margin-top:34px;margin-bottom:76px;padding:34px 0 32px}
  .demo-lab-process-graphic{grid-template-columns:1fr;gap:18px;padding:18px;border-radius:22px;min-height:0}
  .demo-lab-process-graphic .demo-site-source,
  .demo-lab-process-graphic .demo-engine-core,
  .demo-lab-process-graphic .demo-site-demo{grid-column:auto}
  .demo-site-card{min-height:258px}
  .site-mock-body{min-height:220px}
  .demo-engine-core{width:150px;height:150px;margin:0 auto}
  .services-v3{margin-bottom:76px}
}
@media(max-width:460px){
  .phone-hero-stack{min-height:392px;margin-left:-54px;transform:translateX(-10px)}
}
@media(prefers-reduced-motion:reduce){
}

/* --- Homepage polish pass: phone scene, demo engine sizing, and section rhythm --- */
.home-hero-v3{
  margin-bottom:96px;
}
.phone-hero-stack{
  margin-left:-220px;
  margin-right:-78px;
  transform:translateX(-76px);
}
.phone-hero-stack .qaimo-phone-art{
  transform:translate3d(-90px,var(--parallax-y,0px),0);
}
.phone-hero-stack::before{
  right:16%;
  width:720px;
  height:720px;
  background:
    radial-gradient(circle at 51% 49%,rgba(255,212,118,.12),transparent 18%),
    radial-gradient(circle at 52% 48%,rgba(128,84,255,.25),transparent 45%),
    radial-gradient(circle at 50% 50%,transparent 54%,rgba(255,212,118,.12) 55%,transparent 57%);
  opacity:.56;
}
.phone-hero-stack::after{
  right:29%;
  bottom:76px;
  width:430px;
  height:82px;
  background:
    radial-gradient(ellipse at 52% 50%,rgba(0,0,0,.66) 0%,rgba(0,0,0,.44) 38%,rgba(0,0,0,.15) 64%,transparent 78%),
    radial-gradient(ellipse at 55% 52%,rgba(255,212,118,.10),transparent 55%);
  transform:rotate(-10deg) skewX(-8deg);
  filter:blur(13px);
  opacity:.86;
  z-index:1;
}
.qaimo-phone-scene{
  filter:
    drop-shadow(0 40px 74px rgba(0,0,0,.48))
    drop-shadow(0 10px 18px rgba(0,0,0,.22))
    drop-shadow(0 0 28px rgba(147,92,255,.16))
    drop-shadow(0 0 18px rgba(255,212,118,.08));
}
.demo-lab-v3{
  width:min(1260px,calc(100% - 48px));
  grid-template-columns:minmax(330px,.34fr) minmax(790px,.66fr);
  gap:42px;
  margin-top:0;
  margin-bottom:126px;
  padding:58px 0 54px;
}
.demo-lab-v3::before{
  inset:0 -18px;
}
.demo-lab-process-graphic{
  width:100%;
  margin-right:0;
  min-width:0;
  min-height:500px;
  padding:34px 32px;
  grid-template-columns:minmax(215px,1.12fr) 58px 184px 58px minmax(230px,1.18fr);
  column-gap:8px;
}
.demo-site-card{
  min-height:316px;
  min-width:0;
}
.site-mock-body{
  min-height:278px;
}
.demo-site-demo .site-browser-bar b{
  font-size:10.5px;
}
.demo-engine-core{
  width:184px;
  height:184px;
  align-self:center;
  justify-self:center;
}
.engine-logo{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
}
.demo-engine-core b{
  bottom:21px;
}
.services-v3{
  margin-top:18px;
  margin-bottom:122px;
}
.home-closing{
  margin-top:12px;
}
@media(max-width:1320px){
  .phone-hero-stack{margin-left:-190px;transform:translateX(-58px)}
  .phone-hero-stack .qaimo-phone-art{transform:translate3d(-74px,var(--parallax-y,0px),0)}
  .demo-lab-v3{width:min(1220px,calc(100% - 40px));grid-template-columns:minmax(315px,.34fr) minmax(730px,.66fr);gap:34px}
  .demo-lab-process-graphic{grid-template-columns:minmax(196px,1fr) 48px 168px 48px minmax(205px,1fr);padding:30px 26px;column-gap:6px}
  .demo-engine-core{width:168px;height:168px}
}
@media(max-width:1180px){
  .phone-hero-stack{margin-left:-150px;margin-right:-178px;transform:translateX(-36px)}
  .phone-hero-stack .qaimo-phone-art{transform:translate3d(-54px,var(--parallax-y,0px),0)}
  .demo-lab-v3{grid-template-columns:1fr;gap:28px;width:calc(100% - 48px)}
  .demo-lab-v3 .demo-lab-copy{max-width:760px}
  .demo-lab-process-graphic{grid-template-columns:minmax(200px,1fr) 52px 168px 52px minmax(210px,1fr);padding:28px;max-width:100%}
}
@media(max-width:1020px){
  .home-hero-v3{margin-bottom:76px}
  .phone-hero-stack{margin:0 -96px 0 -88px;transform:translateX(-46px)}
  .phone-hero-stack .qaimo-phone-art{transform:translate3d(-36px,var(--parallax-y,0px),0)}
}
@media(max-width:760px){
  .home-hero-v3{margin-bottom:64px}
  .phone-hero-stack{margin:16px -42px 0 -70px;transform:translateX(-20px)}
  .phone-hero-stack .qaimo-phone-art{transform:translate3d(-24px,var(--parallax-y,0px),0)}
  .demo-lab-v3{width:calc(100% - 32px);margin-bottom:88px;padding:34px 0 30px}
  .demo-lab-process-graphic{grid-template-columns:1fr;padding:18px;gap:18px;min-height:0}
  .demo-engine-core{width:154px;height:154px;margin:0 auto}
  .demo-site-card{min-height:268px}
  .site-mock-body{min-height:230px}
  .services-v3{margin-bottom:88px}
}
@media(max-width:460px){
  .phone-hero-stack{margin-left:-58px;transform:translateX(-14px)}
}

/* Desktop-only phone placement tuning: left enough to enter the hero scene without crowding the headline. */
@media(min-width:1321px){
  .phone-hero-stack{
    margin-left:-180px;
    transform:translateX(-54px);
  }
  .phone-hero-stack .qaimo-phone-art{
    transform:translate3d(-72px,var(--parallax-y,0px),0);
  }
}

/* --- Phone side-button language toggle: English / Thai conversation --- */
.qaimo-phone-language-toggle{
  position:absolute;
  left:742px;
  top:154px;
  width:58px;
  height:94px;
  z-index:8;
  display:block;
  padding:0;
  border:0;
  border-radius:999px;
  background:transparent;
  transform:rotate(15deg);
  transform-origin:50% 50%;
  cursor:pointer;
  pointer-events:auto;
  -webkit-tap-highlight-color:transparent;
}
.qaimo-phone-language-toggle span{
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
  white-space:nowrap;
}
.qaimo-phone-language-toggle::before{
  content:"";
  position:absolute;
  inset:18px 17px;
  border-radius:999px;
  background:linear-gradient(180deg,rgba(255,245,196,.92),rgba(246,198,107,.48));
  box-shadow:
    0 0 0 1px rgba(255,244,190,.52),
    0 0 18px rgba(246,198,107,.44),
    0 8px 16px rgba(0,0,0,.28);
  opacity:0;
  transition:opacity .22s ease, transform .22s ease;
  transform:scale(0.902);
}
.qaimo-phone-language-toggle:hover::before,
.qaimo-phone-language-toggle:focus-visible::before{
  opacity:.56;
  transform:scale(1.100);
}
.qaimo-phone-language-toggle:focus-visible{
  outline:2px solid rgba(255,212,118,.72);
  outline-offset:3px;
}
@media(max-width:760px){
  .qaimo-phone-language-toggle::before{opacity:0!important}
}

/* --- Canva layered hero scene: background swoosh + separate blank tablet + live dashboard overlay --- */
.home-hero-v3 .phone-hero-stack{
  min-height:720px;
  margin-left:-250px;
  margin-right:-178px;
  transform:translateX(-58px);
  overflow:visible;
}
.home-hero-v3 .phone-hero-stack::before,
.home-hero-v3 .phone-hero-stack::after{
  display:none!important;
}
.qaimo-tablet-scene{
  position:absolute;
  z-index:2;
  right:72px;
  top:74px;
  width:940px;
  aspect-ratio:16/9;
  pointer-events:none;
  filter:
    drop-shadow(0 46px 62px rgba(0,0,0,.48))
    drop-shadow(0 0 18px rgba(255,212,118,.10));
  opacity:.96;
}
.qaimo-tablet-canvas{
  position:absolute;
  left:0;
  top:0;
  width:1920px;
  height:1080px;
  transform:scale(.49);
  transform-origin:0 0;
}
.qaimo-tablet-screen{
  position:absolute;
  inset:0;
  width:1920px;
  height:1080px;
  object-fit:contain;
  user-select:none;
  pointer-events:none;
}
.qaimo-dashboard-plane{
  position:absolute;
  left:0;
  top:0;
  width:940px;
  height:540px;
  transform-origin:0 0;
  /* Qaimo dashboard keystone â€” generated by tablet-keystone-calibrator.html
   points: {"tl":{"x":353.78881987577637,"y":233.4782608695652},"tr":{"x":1319.7515527950309,"y":245.40372670807452},"br":{"x":1590.062111801242,"y":807.8881987577639},"bl":{"x":558.5093167701863,"y":891.3664596273292}} */
  --qaimo-dashboard-transform:matrix3d(1.244085680338, 0.052937804009, 0, 0.000164020077, 0.271562565568, 1.046665306748, 0, -0.000192565213, 0, 0, 1, 0, 353.788819875776, 233.478260869565, 0, 1);
  transform:var(--qaimo-dashboard-transform);
  overflow:hidden;
  border-radius:26px;
  opacity:.92;
  pointer-events:none;
}
.qaimo-dashboard-ui{
  position:relative;
  width:100%;
  height:100%;
  padding:18px;
  overflow:hidden;
  color:#eaf1ff;
  font-family:var(--font-body);
  background:
    radial-gradient(circle at 78% 20%,rgba(126,77,255,.26),transparent 34%),
    radial-gradient(circle at 18% 12%,rgba(255,212,118,.14),transparent 28%),
    linear-gradient(145deg,rgba(4,13,27,.82),rgba(3,7,16,.88));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.10),inset 0 0 88px rgba(0,0,0,.32);
  backdrop-filter:none;
}
.dash-ambient{
  position:absolute;
  inset:-1px;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.026) 1px,transparent 1px),
    radial-gradient(circle at 82% 18%,rgba(255,212,118,.18),transparent 28%);
  background-size:54px 54px,54px 54px,100% 100%;
  mask-image:linear-gradient(90deg,rgba(0,0,0,.50),#000 35%,#000 76%,rgba(0,0,0,.55));
  opacity:.78;
}
.dash-topbar{
  position:relative;
  z-index:1;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:0 3px 13px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.dash-brand,
.dash-live{
  display:inline-flex;
  align-items:center;
  gap:10px;
  white-space:nowrap;
  font-family:var(--font-subtitle);
  font-weight:900;
  letter-spacing:-.035em;
}
.dash-brand{font-size:21px;color:#fff7dd;text-shadow:0 0 18px rgba(255,212,118,.16)}
.dash-brand img{width:29px!important;height:29px;filter:none!important}
.dash-live{
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(126,230,255,.18);
  background:rgba(4,14,28,.46);
  color:#adc0d6;
  font-size:12px;
  letter-spacing:.02em;
}
.dash-live i{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#7ee6ff;
  box-shadow:0 0 16px rgba(126,230,255,.76);
  animation:none;
}
.dash-layout{
  position:relative;
  z-index:1;
  height:calc(100% - 42px);
  display:grid;
  grid-template-columns:132px 1fr;
  gap:14px;
  padding-top:14px;
}
.dash-sidebar{
  display:grid;
  align-content:start;
  gap:8px;
  padding:4px 0;
}
.dash-sidebar span{
  min-height:31px;
  display:flex;
  align-items:center;
  padding:0 11px;
  border-radius:11px;
  color:#92a0b5;
  font-size:12px;
  font-weight:850;
}
.dash-sidebar .active{
  color:#fff7df;
  background:linear-gradient(90deg,rgba(126,77,255,.34),rgba(126,77,255,.06));
  border:1px solid rgba(126,77,255,.22);
  box-shadow:0 0 24px rgba(126,77,255,.08);
}
.dash-main{
  min-width:0;
  display:grid;
  grid-template-rows:82px minmax(0,1fr) 116px;
  gap:11px;
}
.dash-metrics{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
}
.dash-metrics article,
.dash-chart-card,
.dash-sentiment-card,
.dash-topics-card,
.dash-leads-card,
.dash-source-card{
  position:relative;
  overflow:hidden;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg,rgba(9,24,42,.72),rgba(4,10,22,.72));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.07),0 18px 34px rgba(0,0,0,.18);
}
.dash-metrics article{
  padding:12px 12px 11px;
}
.dash-metrics article::after{
  content:"";
  position:absolute;
  inset:auto 10px 0 10px;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg,rgba(126,230,255,.78),rgba(143,88,255,.55),rgba(255,212,118,.72));
  opacity:.72;
}
.dash-metrics small{
  display:block;
  margin-bottom:7px;
  color:#91a0b8;
  font-size:10px;
  font-weight:900;
  letter-spacing:.03em;
  text-transform:uppercase;
}
.dash-metrics b{
  display:block;
  color:#f8fbff;
  font-family:var(--font-title);
  font-size:24px;
  line-height:1;
  letter-spacing:-.04em;
}
.dash-metrics em{
  display:block;
  margin-top:7px;
  color:#7ee6ff;
  font-size:10px;
  font-style:normal;
  font-weight:900;
}
.dash-content-row{
  min-height:0;
  display:grid;
  grid-template-columns:minmax(0,1.45fr) minmax(178px,.82fr);
  gap:11px;
}
.dash-insight-stack{
  min-width:0;
  display:grid;
  grid-template-rows:1fr .82fr;
  gap:11px;
}
.dash-card-head{
  height:39px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:0 13px;
  color:#f8fbff;
  font-size:12px;
  font-weight:950;
}
.dash-card-head b{
  color:#8c9ab0;
  font-size:9px;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.dash-chart{
  position:absolute;
  left:15px;
  right:15px;
  bottom:30px;
  width:calc(100% - 30px);
  height:calc(100% - 66px);
  min-height:150px;
  overflow:visible;
}
.chart-grid{
  fill:none;
  stroke:rgba(255,255,255,.08);
  stroke-width:1;
}
.chart-area{fill:url(#dashAreaGlow)}
.chart-line{
  fill:none;
  stroke-width:6;
  stroke-linecap:round;
  stroke-dasharray:720;
  stroke-dashoffset:720;
  animation:none;
}
.chart-line-primary{
  stroke:url(#dashLineGlow);
  filter:drop-shadow(0 0 10px rgba(143,88,255,.70));
}
.chart-line-secondary{
  stroke:url(#dashMessageLine);
  stroke-width:4;
  opacity:.88;
  filter:drop-shadow(0 0 9px rgba(255,212,118,.44));
  animation-delay:.35s;
}
.dash-chart-labels{
  position:absolute;
  left:16px;
  right:16px;
  bottom:10px;
  display:flex;
  justify-content:space-between;
  color:#7e8da3;
  font-size:9px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.07em;
}
.sentiment-bars{
  display:grid;
  gap:9px;
  padding:4px 13px 13px;
}
.sentiment-bars span{
  display:grid;
  grid-template-columns:62px 1fr 34px;
  align-items:center;
  gap:9px;
  color:#aab8ca;
  font-size:10px;
  font-weight:900;
}
.sentiment-bars span i{
  position:relative;
  height:8px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  overflow:hidden;
}
.sentiment-bars span i::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:var(--bar);
  border-radius:inherit;
  background:linear-gradient(90deg,#7ee6ff,#8f58ff,#ffd476);
  box-shadow:0 0 12px rgba(126,230,255,.28);
  animation:none;
}
.sentiment-bars b{color:#e9f0ff}
.sentiment-bars em{color:#fff7dc;font-style:normal;text-align:right}
.topic-cloud{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  padding:2px 13px 13px;
}
.topic-cloud span{
  padding:7px 9px;
  border-radius:999px;
  border:1px solid rgba(255,212,118,.16);
  background:rgba(255,212,118,.08);
  color:#fff4cf;
  font-size:10px;
  font-weight:900;
  box-shadow:0 0 20px rgba(255,212,118,.05);
}
.dash-bottom-row{
  min-height:0;
  display:grid;
  grid-template-columns:minmax(0,1.12fr) minmax(0,.88fr);
  gap:11px;
}
.lead-feed{
  display:grid;
  gap:7px;
  padding:0 12px 12px;
}
.lead-feed span{
  min-height:22px;
  display:grid;
  grid-template-columns:27px 1fr 83px 52px;
  align-items:center;
  gap:8px;
  color:#aab8ca;
  font-size:10px;
  font-weight:850;
}
.lead-feed i{
  width:25px;
  height:25px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:linear-gradient(135deg,rgba(126,77,255,.55),rgba(255,212,118,.38));
  color:#fff;
  font-style:normal;
  font-size:9px;
}
.lead-feed strong{color:#f8fbff;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.lead-feed em{font-style:normal;color:#91a0b8;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.lead-feed b{
  justify-self:end;
  padding:4px 7px;
  border-radius:999px;
  background:rgba(126,230,255,.10);
  color:#9eefff;
  font-size:9px;
}
.source-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:9px 10px;
  padding:0 13px 13px;
}
.source-grid span{
  display:grid;
  grid-template-columns:1fr auto;
  gap:5px 8px;
  align-items:center;
  color:#f8fbff;
  font-size:10px;
  font-weight:900;
}
.source-grid span i{
  grid-column:1 / -1;
  height:7px;
  border-radius:999px;
  background:linear-gradient(90deg,rgba(126,230,255,.82) var(--source),rgba(255,255,255,.08) var(--source));
  box-shadow:0 0 12px rgba(126,230,255,.12);
}
.source-grid span em{color:#ffd476;font-style:normal}
@keyframes dashPulse{
  0%,100%{transform:scale(.85);opacity:.76}
  50%{transform:scale(1.25);opacity:1}
}
@keyframes dashChartDraw{
  0%{stroke-dashoffset:720;opacity:.72}
  24%,70%{stroke-dashoffset:0;opacity:1}
  100%{stroke-dashoffset:0;opacity:.72}
}
@keyframes barReveal{
  0%{transform:scaleX(.25);transform-origin:left;opacity:.72}
  28%,75%{transform:scaleX(1);opacity:1}
  100%{transform:scaleX(1);opacity:.78}
}
.home-hero-v3 .phone-hero-stack .qaimo-phone-art{
  position:absolute;
  z-index:5;
  right:-24px;
  top:268px;
  width:690px;
  height:390px;
  min-height:0;
  margin:0;
  display:block;
  transform:translate3d(0,var(--parallax-y,0px),0)!important;
}
.home-hero-v3 .phone-hero-stack .qaimo-phone-scene{
  width:690px;
  max-width:none;
  filter:
    drop-shadow(0 42px 66px rgba(0,0,0,.54))
    drop-shadow(0 11px 18px rgba(0,0,0,.24))
    drop-shadow(0 0 22px rgba(255,212,118,.10));
}
.home-hero-v3 .phone-hero-stack .qaimo-phone-art::before,
.home-hero-v3 .phone-hero-stack .qaimo-phone-art::after{
  display:none!important;
}
@media(max-width:1320px){
  .home-hero-v3 .phone-hero-stack{margin-left:-210px;margin-right:-160px;transform:translateX(-42px)}
  .qaimo-tablet-scene{width:850px;right:56px;top:86px}
  .home-hero-v3 .phone-hero-stack .qaimo-phone-art{right:-14px;top:284px;width:640px;height:362px}
  .home-hero-v3 .phone-hero-stack .qaimo-phone-scene{width:640px}
}
@media(max-width:1180px){
  .home-hero-v3 .phone-hero-stack{margin-left:-170px;margin-right:-170px;transform:translateX(-34px)}
  .qaimo-tablet-scene{width:780px;right:54px;top:96px}
  .home-hero-v3 .phone-hero-stack .qaimo-phone-art{right:2px;top:306px;width:575px;height:326px}
  .home-hero-v3 .phone-hero-stack .qaimo-phone-scene{width:575px}
}
@media(max-width:1020px){
  .home-hero-v3 .phone-hero-stack{min-height:620px;margin:14px -88px 0 -116px;transform:translateX(-22px)}
  .qaimo-tablet-scene{width:720px;right:92px;top:50px}
  .home-hero-v3 .phone-hero-stack .qaimo-phone-art{right:34px;top:270px;width:520px;height:294px}
  .home-hero-v3 .phone-hero-stack .qaimo-phone-scene{width:520px}
}
@media(max-width:760px){
  .home-hero-v3 .phone-hero-stack{min-height:458px;margin:20px -42px 0 -76px;transform:translateX(-12px)}
  .qaimo-tablet-scene{width:540px;right:-42px;top:42px;opacity:.82}
  .qaimo-dashboard-plane{opacity:.72}
  .home-hero-v3 .phone-hero-stack .qaimo-phone-art{right:-26px;top:214px;width:398px;height:226px}
  .home-hero-v3 .phone-hero-stack .qaimo-phone-scene{width:398px}
}
@media(max-width:460px){
  .home-hero-v3 .phone-hero-stack{min-height:400px;margin-left:-60px;transform:translateX(-8px)}
  .qaimo-tablet-scene{width:465px;right:-82px;top:38px;opacity:.76}
  .home-hero-v3 .phone-hero-stack .qaimo-phone-art{right:-48px;top:196px;width:354px;height:202px}
  .home-hero-v3 .phone-hero-stack .qaimo-phone-scene{width:354px}
}

/* --- Homepage hero scale + background blending pass --- */
.home-canvas{
  background:
    radial-gradient(circle at 71% 14%,rgba(84,52,145,.24),transparent 39%),
    radial-gradient(circle at 88% 31%,rgba(255,212,118,.08),transparent 31%),
    radial-gradient(circle at 9% 50%,rgba(18,47,76,.30),transparent 38%),
    linear-gradient(180deg,#020814 0%,#030914 46%,#020711 100%);
}
.home-hero-v3{
  min-height:760px;
}
.home-hero-v3::after{
  content:"";
  position:absolute;
  z-index:0;
  inset:-88px -18vw -52px 30%;
  pointer-events:none;
  background:
    radial-gradient(ellipse at 54% 42%,rgba(99,70,171,.28),transparent 44%),
    radial-gradient(ellipse at 64% 62%,rgba(255,212,118,.10),transparent 36%),
    linear-gradient(90deg,transparent 0%,rgba(5,13,26,.46) 26%,rgba(4,10,20,.30) 100%);
  opacity:.88;
}
.home-hero-v3 .phone-hero-stack{
  min-height:790px;
  margin-left:-282px;
  margin-right:-238px;
  transform:translateX(-78px);
}
.hero-devices-portrait{
  display:none;
}
.qaimo-tablet-scene{
  width:1034px;
  right:32px;
  top:46px;
}
.home-hero-v3 .phone-hero-stack .qaimo-phone-art{
  right:-24px;
  top:248px;
  width:759px;
  height:429px;
}
.home-hero-v3 .phone-hero-stack .qaimo-phone-scene{
  width:759px;
  filter:
    drop-shadow(0 52px 82px rgba(0,0,0,.58))
    drop-shadow(0 14px 22px rgba(0,0,0,.28))
    drop-shadow(0 0 26px rgba(255,212,118,.12));
}
@media(max-width:1320px){
  .home-hero-v3{min-height:735px}
  .home-hero-v3 .phone-hero-stack{min-height:760px;margin-left:-244px;margin-right:-210px;transform:translateX(-62px)}
  .qaimo-tablet-scene{width:935px;right:24px;top:62px}
  .home-hero-v3 .phone-hero-stack .qaimo-phone-art{right:-20px;top:264px;width:704px;height:398px}
  .home-hero-v3 .phone-hero-stack .qaimo-phone-scene{width:704px}
}
@media(max-width:1180px){
  .home-hero-v3{min-height:710px}
  .home-hero-v3 .phone-hero-stack{min-height:730px;margin-left:-206px;margin-right:-198px;transform:translateX(-48px)}
  .qaimo-tablet-scene{width:858px;right:34px;top:72px}
  .home-hero-v3 .phone-hero-stack .qaimo-phone-art{right:-4px;top:284px;width:633px;height:358px}
  .home-hero-v3 .phone-hero-stack .qaimo-phone-scene{width:633px}
}
@media(max-width:1020px){
  .home-hero-v3{min-height:auto}
  .home-hero-v3 .phone-hero-stack{min-height:675px;margin:16px -108px 0 -138px;transform:translateX(-34px)}
  .qaimo-tablet-scene{width:792px;right:66px;top:34px}
  .home-hero-v3 .phone-hero-stack .qaimo-phone-art{right:20px;top:250px;width:572px;height:323px}
  .home-hero-v3 .phone-hero-stack .qaimo-phone-scene{width:572px}
}
@media(max-width:760px){
  .home-hero-v3 .phone-hero-stack{min-height:492px;margin:22px -52px 0 -92px;transform:translateX(-18px)}
  .qaimo-tablet-scene{width:594px;right:-58px;top:34px;opacity:.80}
  .qaimo-dashboard-plane{opacity:.70}
  .home-hero-v3 .phone-hero-stack .qaimo-phone-art{right:-42px;top:204px;width:438px;height:248px}
  .home-hero-v3 .phone-hero-stack .qaimo-phone-scene{width:438px}
}
@media(max-width:460px){
  .home-hero-v3 .phone-hero-stack{min-height:430px;margin-left:-76px;transform:translateX(-12px)}
  .qaimo-tablet-scene{width:512px;right:-100px;top:31px;opacity:.74}
  .home-hero-v3 .phone-hero-stack .qaimo-phone-art{right:-64px;top:184px;width:389px;height:220px}
  .home-hero-v3 .phone-hero-stack .qaimo-phone-scene{width:389px}
}
.home-hero-v3 .phone-hero-stack{z-index:1}

/* --- Active homepage hero cleanup: devices on the main site canvas --- */
.home-hero-v3{
  background:transparent !important;
  background-image:none !important;
  transform:translateX(-78px) !important;
}
.home-hero-v3 .phone-hero-stack{
  margin-left:-210px !important;
  margin-right:-360px !important;
  transform:translateX(-112px) !important;
}
.hero-surface-light{
  position:absolute;
  z-index:4;
  left:210px;
  right:120px;
  bottom:54px;
  height:178px;
  pointer-events:none;
  transform:perspective(900px) rotateX(62deg) rotateZ(-8deg) skewX(-9deg);
  transform-origin:50% 60%;
  border-radius:50%;
  background:
    radial-gradient(ellipse at 58% 50%,rgba(0,0,0,.62) 0%,rgba(0,0,0,.42) 31%,rgba(0,0,0,.18) 57%,transparent 80%),
    radial-gradient(ellipse at 70% 44%,rgba(255,214,104,.26) 0%,rgba(217,154,39,.13) 24%,transparent 54%),
    radial-gradient(ellipse at 44% 56%,rgba(126,77,255,.18) 0%,rgba(126,77,255,.08) 30%,transparent 62%);
  filter:blur(12px) saturate(1.08);
  opacity:.94;
  mix-blend-mode:normal;
}
.hero-surface-light::before,
.hero-surface-light::after,
.hero-phone-contact-light::before,
.hero-phone-contact-light::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
}
.hero-surface-light::before{
  inset:38% 13% 14% 10%;
  background:radial-gradient(ellipse at 52% 50%,rgba(0,0,0,.82),rgba(0,0,0,.54) 36%,rgba(0,0,0,.20) 66%,transparent 84%);
  filter:blur(8px);
  opacity:.92;
  mix-blend-mode:multiply;
}
.hero-surface-light::after{
  inset:-8% -4% 8% 3%;
  background:
    radial-gradient(ellipse at 70% 42%,rgba(255,241,188,.46) 0%,rgba(255,202,80,.27) 18%,transparent 46%),
    radial-gradient(ellipse at 46% 56%,rgba(132,83,255,.28) 0%,rgba(126,77,255,.13) 26%,transparent 62%);
  filter:blur(18px);
  opacity:.88;
  mix-blend-mode:screen;
}
.hero-phone-contact-light{
  position:absolute;
  z-index:4;
  right:134px;
  bottom:34px;
  width:220px;
  height:52px;
  border-radius:50%;
  pointer-events:none;
  transform:perspective(760px) rotateX(66deg) rotateZ(11deg) skewX(9deg);
  transform-origin:50% 50%;
  background:
    radial-gradient(ellipse at 46% 48%,rgba(255,231,158,.38) 0%,rgba(217,154,39,.20) 24%,transparent 58%),
    radial-gradient(ellipse at 66% 54%,rgba(138,86,255,.24) 0%,rgba(126,77,255,.10) 30%,transparent 66%);
  filter:blur(8px) saturate(1.1);
  opacity:.84;
  mix-blend-mode:screen;
}
.hero-phone-contact-light::before{
  display:none;
}
.hero-phone-contact-light::after{
  inset:-8% 8% 8% -4%;
  background:radial-gradient(ellipse at 42% 48%,rgba(255,244,201,.44),rgba(255,205,82,.22) 24%,transparent 58%);
  filter:blur(10px);
  opacity:.82;
  mix-blend-mode:screen;
}
.home-hero-v3::before,
.home-hero-v3::after,
.phone-hero-stack::before,
.phone-hero-stack::after,
.home-hero-v3 .phone-hero-stack .qaimo-phone-art::before,
.home-hero-v3 .phone-hero-stack .qaimo-phone-art::after,
.qaimo-phone-art::before,
.qaimo-phone-art::after{
  display:none !important;
  content:none !important;
  background:none !important;
  background-image:none !important;
  box-shadow:none !important;
  filter:none !important;
  opacity:0 !important;
}
.phone-hero-stack,
.qaimo-tablet-scene,
.qaimo-tablet-canvas,
.qaimo-dashboard-plane,
.home-hero-v3 .phone-hero-stack .qaimo-phone-art,
.home-hero-v3 .phone-hero-stack .qaimo-phone-scene,
.qaimo-phone-canvas,
.qaimo-phone-plane{
  background:transparent !important;
  background-image:none !important;
  box-shadow:none !important;
  backdrop-filter:none !important;
}
.qaimo-tablet-screen{
  background:transparent !important;
  box-shadow:none !important;
  filter:drop-shadow(0 30px 48px rgba(0,0,0,.34)) !important;
}
.home-hero-v3 h1{
  font-family:var(--font-title) !important;
  font-size:clamp(58px,5.35vw,68px) !important;
  line-height:1 !important;
  font-weight:500 !important;
  letter-spacing:-.035em !important;
  margin:0 0 22px !important;
  color:#f8fbff !important;
  max-width:700px !important;
}
.home-hero-v3 h1 em{
  font-style:normal !important;
  font-weight:500 !important;
  background:linear-gradient(92deg,#fff4bd 0%,#ffca55 43%,#d18b25 100%) !important;
  -webkit-background-clip:text !important;
  background-clip:text !important;
  color:transparent !important;
}
.home-hero-v3 .hero-subtitle{
  font-family:var(--font-title) !important;
  font-weight:500 !important;
  letter-spacing:-.035em !important;
}
.home-hero-v3 .phone-hero-stack .qaimo-phone-art{
  transform:translate3d(20px,var(--parallax-y,0px),0) scale(1.44) !important;
  transform-origin:center center !important;
}
.qaimo-tablet-scene{
  transform:scale(1.15) !important;
  transform-origin:center center !important;
}
@media(max-width:1320px){
  .home-hero-v3 .phone-hero-stack{
    margin-left:-200px !important;
    margin-right:-330px !important;
    transform:translateX(-98px) !important;
  }
  .hero-surface-light{
    left:190px;
    right:110px;
    bottom:52px;
    height:168px;
  }
  .hero-phone-contact-light{
    right:120px;
    bottom:34px;
    width:202px;
    height:48px;
  }
}
@media(max-width:1180px){
  .home-hero-v3{
    transform:translateX(-14px) !important;
  }
  .home-hero-v3 .phone-hero-stack{
    margin-left:-172px !important;
    margin-right:-300px !important;
    transform:translateX(-76px) !important;
  }
  .hero-surface-light{
    left:166px;
    right:96px;
    bottom:50px;
    height:152px;
  }
  .hero-phone-contact-light{
    right:102px;
    bottom:34px;
    width:186px;
    height:46px;
  }
}
@media(max-width:1020px){
  .home-hero-v3{
    transform:translateX(-8px) !important;
  }
  .home-hero-v3 .phone-hero-stack{
    margin-left:-96px !important;
    margin-right:-150px !important;
    transform:translateX(-50px) !important;
  }
  .hero-surface-light{
    left:132px;
    right:82px;
    bottom:40px;
    height:128px;
    opacity:.82;
  }
  .hero-phone-contact-light{
    right:86px;
    bottom:30px;
    width:154px;
    height:38px;
    opacity:.82;
  }
}
@media(max-width:760px){
  .home-hero-v3{
    transform:none !important;
  }
  .home-hero-v3 h1{
    font-size:clamp(48px,13vw,72px) !important;
  }
  .home-hero-v3 .phone-hero-stack{
    margin-left:-62px !important;
    margin-right:-68px !important;
    transform:translateX(-32px) !important;
  }
  .home-hero-v3 .phone-hero-stack .qaimo-phone-art{
    transform:translate3d(18px,var(--parallax-y,0px),0) scale(1.28) !important;
  }
  .hero-surface-light{
    left:128px;
    right:58px;
    bottom:48px;
    height:110px;
    opacity:.70;
    filter:blur(14px) saturate(1.04);
  }
  .hero-phone-contact-light{
    right:62px;
    bottom:30px;
    width:126px;
    height:34px;
    filter:blur(6px) saturate(1.04);
  }
}

/* Final robot containment: keep any Spline canvas background on the robot side only. */
@media(min-width:1021px){
  .home-hero-v3{
    grid-template-columns:minmax(430px,42%) minmax(560px,58%) !important;
    align-items:center !important;
  }
  .home-hero-v3 .hero-copy{
    grid-column:1 !important;
    grid-row:1 !important;
    z-index:8 !important;
    max-width:540px !important;
  }
  .home-hero-v3 .robot-hero-stack{
    grid-column:2 !important;
    grid-row:1 !important;
    justify-self:end !important;
    align-self:center !important;
    width:min(650px,100%) !important;
    height:600px !important;
    min-height:600px !important;
    margin:0 !important;
    transform:none !important;
    overflow:hidden !important;
    contain:paint !important;
    isolation:isolate !important;
  }
  .home-hero-v3 .robot-hero-frame{
    position:absolute !important;
    inset:10px 0 auto auto !important;
    width:620px !important;
    max-width:100% !important;
    height:560px !important;
    margin:0 !important;
    transform:none !important;
    overflow:hidden !important;
    contain:paint !important;
    background:transparent !important;
  }
  .home-hero-v3 .robot-hero-spline{
    position:relative !important;
    width:100% !important;
    max-width:100% !important;
    height:100% !important;
    overflow:hidden !important;
    contain:paint !important;
    background:transparent !important;
  }
  .home-hero-v3 .robot-hero-stack::before{
    left:55% !important;
    bottom:92px !important;
    width:360px !important;
    height:70px !important;
  }
  .home-hero-v3 .robot-hero-stack::after{
    left:56% !important;
    bottom:46px !important;
    width:440px !important;
    height:116px !important;
  }
}
@media(max-width:460px){
  .home-hero-v3 .phone-hero-stack{
    margin-left:-52px !important;
    margin-right:-58px !important;
    transform:translateX(-24px) !important;
  }
  .home-hero-v3 .phone-hero-stack .qaimo-phone-art{
    transform:translate3d(12px,var(--parallax-y,0px),0) scale(1.20) !important;
  }
  .hero-surface-light{
    left:102px;
    right:44px;
    bottom:30px;
    height:92px;
  }
  .hero-phone-contact-light{
    right:52px;
    bottom:28px;
    width:110px;
    height:30px;
  }
}

@media(min-width:761px) and (max-width:1320px){
  .home-hero-v3{
    grid-template-columns:1fr !important;
    width:min(var(--max),calc(100% - 48px)) !important;
    transform:none !important;
  }
  .home-hero-v3 .hero-copy{
    max-width:760px;
  }
  .home-hero-v3 .phone-hero-stack{
    width:100%;
    min-height:650px !important;
    margin:10px 0 0 !important;
    transform:none !important;
  }
  .qaimo-tablet-scene{
    right:50% !important;
    transform:translateX(50%) scale(1.03) !important;
  }
  .home-hero-v3 .phone-hero-stack .qaimo-phone-art{
    right:50% !important;
    transform:translate3d(50%,var(--parallax-y,0px),0) scale(1.24) !important;
  }
  .hero-surface-light{
    left:12% !important;
    right:12% !important;
  }
}

/* Demo engine uses a single product visual between the title and body copy. */
.demo-lab-section.demo-lab-v3{
  width:min(var(--wide),calc(100% - 64px)) !important;
  grid-template-columns:1fr !important;
  gap:0 !important;
  padding:70px 0 64px !important;
}
.demo-lab-section.demo-lab-v3::before{
  display:none !important;
  content:none !important;
  background:none !important;
  border:0 !important;
}
.demo-lab-section.demo-lab-v3 .demo-lab-art{
  display:none !important;
  order:1;
  margin-right:0 !important;
  margin-left:0 !important;
}
.demo-lab-section.demo-lab-v3 .demo-lab-copy{
  order:1;
  justify-self:stretch;
  display:grid;
  justify-items:start;
}
.demo-lab-section.demo-lab-v3 .demo-lab-copy h2,
.demo-lab-section.demo-lab-v3 .demo-lab-copy p,
.demo-lab-section.demo-lab-v3 .demo-copy-cta{
  max-width:720px;
}
.private-demo-engine-visual{
  width:min(100%,640px);
  height:auto;
  object-fit:contain;
  margin:18px 0 28px;
  border-radius:0;
  opacity:.98;
  filter:drop-shadow(0 34px 78px rgba(0,0,0,.34)) drop-shadow(0 0 58px rgba(217,154,39,.08));
  -webkit-mask-image:
    linear-gradient(90deg,transparent 0%,#000 2.2%,#000 97.8%,transparent 100%),
    linear-gradient(180deg,transparent 0%,#000 3%,#000 97%,transparent 100%);
  -webkit-mask-composite:source-in;
  mask-image:
    linear-gradient(90deg,transparent 0%,#000 2.2%,#000 97.8%,transparent 100%),
    linear-gradient(180deg,transparent 0%,#000 3%,#000 97%,transparent 100%);
  mask-composite:intersect;
}
.demo-lab-section.demo-lab-v3 .demo-lab-copy p{
  max-width:760px;
}
.home-hero-v3 .hero-channel-strip{
  display:flex !important;
  flex-wrap:nowrap !important;
  align-items:center !important;
  width:max-content !important;
  max-width:none !important;
  margin-top:20px !important;
}
.home-hero-v3 .hero-channel-strip .channel-pill{
  flex:0 0 auto !important;
}
.demo-lab-process-graphic{
  --demo-visual-row-x:-51px;
  --demo-visual-row-y:38px;
  grid-template-columns:minmax(396px,1fr) 32px 138px 32px minmax(396px,1fr) !important;
  min-height:630px !important;
  padding:48px 42px 124px !important;
}
.demo-lab-process-graphic .demo-site-source,
.demo-lab-process-graphic .demo-flow-left,
.demo-lab-process-graphic .demo-engine-core,
.demo-lab-process-graphic .demo-flow-right,
.demo-lab-process-graphic .demo-site-demo{
  transform:translate(var(--demo-visual-row-x),var(--demo-visual-row-y));
}
.demo-lab-process-graphic .demo-engine-core{
  width:138px;
  height:138px;
}
.demo-lab-process-graphic .demo-engine-core b{
  top:calc(100% + 9px);
  bottom:auto;
  font-size:11px;
  line-height:1;
  text-shadow:0 2px 8px rgba(0,0,0,.65);
}
.demo-copy-cta{
  display:flex;
  justify-content:flex-start;
  margin-top:24px;
}
.demo-copy-cta .button{
  margin:0;
}
.demo-monitor-card{
  --demo-monitor-width:396px;
  --demo-monitor-screen-x:19.2%;
  --demo-monitor-screen-y:20.4%;
  --demo-monitor-screen-w:62.1%;
  --demo-monitor-screen-h:43.7%;
  aspect-ratio:384 / 326;
  width:min(100%,var(--demo-monitor-width));
  min-height:0 !important;
  align-self:center;
  justify-self:center;
  overflow:visible !important;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
}
.demo-monitor-card::after{
  display:none !important;
}
.demo-monitor-frame{
  position:absolute;
  inset:0;
  z-index:1;
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  filter:drop-shadow(0 26px 46px rgba(0,0,0,.36));
  pointer-events:none;
}
.demo-monitor-screen{
  position:absolute;
  z-index:2;
  left:var(--demo-monitor-screen-x);
  top:var(--demo-monitor-screen-y);
  width:var(--demo-monitor-screen-w);
  height:var(--demo-monitor-screen-h);
  overflow:hidden;
  border-radius:8px;
  background:linear-gradient(180deg,rgba(8,21,36,.96),rgba(3,10,20,.96));
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
}
.demo-monitor-card .site-browser-bar{
  height:28px;
  padding:0 10px;
  background:rgba(1,6,14,.74);
}
.demo-monitor-card .site-browser-bar b{
  font-size:9.5px;
}
.demo-monitor-card .site-mock-body{
  min-height:calc(100% - 28px) !important;
  padding:11px 13px 10px;
}
.demo-monitor-card .site-nav-line{
  margin-bottom:14px;
}
.demo-monitor-card .site-nav-line i{
  width:27px;
  height:5px;
}
.demo-monitor-card .site-hero-line{
  height:36px;
  margin-bottom:10px;
}
.demo-monitor-card .site-copy-line{
  height:7px;
  margin-bottom:8px;
}
.demo-monitor-card .site-card-row{
  gap:7px;
  margin-top:10px;
}
.demo-monitor-card .site-card-row i{
  height:32px;
}
.demo-monitor-card small{
  z-index:3;
  left:50%;
  bottom:6.5%;
  width:max-content;
  max-width:82%;
  text-align:center;
  transform:translateX(-50%);
}
.demo-monitor-card .site-chat-widget{
  right:10px;
  bottom:10px;
  width:112px;
  padding:8px;
}
.demo-monitor-card .site-chat-widget p{
  font-size:9px;
  padding:6px 7px;
}
.demo-process-flow{
  position:absolute;
  left:50%;
  bottom:38px;
  z-index:3;
  width:min(690px,calc(100% - 92px));
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
}
.demo-process-flow span{
  min-width:92px;
  padding:10px 14px;
  border:1px solid rgba(255,212,118,.34);
  border-radius:999px;
  background:linear-gradient(180deg,rgba(255,214,126,.17),rgba(8,15,29,.86));
  color:#fff6cf;
  font-family:var(--font-title);
  font-size:12px;
  line-height:1;
  letter-spacing:0;
  text-align:center;
  text-transform:uppercase;
  box-shadow:0 12px 26px rgba(0,0,0,.28),0 0 22px rgba(255,186,66,.12);
}
.demo-process-flow i{
  position:relative;
  flex:1 1 48px;
  max-width:82px;
  height:1px;
  background:linear-gradient(90deg,rgba(255,212,118,.18),rgba(255,212,118,.85));
}
.demo-process-flow i::after{
  content:"";
  position:absolute;
  right:-1px;
  top:50%;
  width:7px;
  height:7px;
  border-top:1px solid rgba(255,212,118,.9);
  border-right:1px solid rgba(255,212,118,.9);
  transform:translateY(-50%) rotate(45deg);
}
.home-closing-v3 .closing-copy{
  text-align:left;
}
.home-closing-v3 .closing-copy h2{
  max-width:780px;
  margin-left:0;
  margin-right:0;
  text-align:left;
}
.home-closing-v3 .closing-copy p{
  margin-left:0;
  margin-right:0;
  text-align:left;
}
@media(max-width:1320px){
  .demo-lab-section.demo-lab-v3{
    grid-template-columns:minmax(920px,.70fr) minmax(315px,.30fr) !important;
    gap:34px !important;
  }
  .demo-lab-process-graphic{
    grid-template-columns:minmax(366px,1fr) 28px 132px 28px minmax(366px,1fr) !important;
    min-height:600px !important;
    padding:42px 34px 118px !important;
  }
  .demo-lab-process-graphic .demo-engine-core{
    width:132px;
    height:132px;
  }
  .demo-monitor-card{
    --demo-monitor-width:366px;
  }
}
@media(max-width:1180px){
  .demo-lab-section.demo-lab-v3{
    grid-template-columns:1fr !important;
  }
  .demo-lab-process-graphic{
    grid-template-columns:minmax(330px,1fr) 30px 132px 30px minmax(330px,1fr) !important;
  }
  .demo-lab-section.demo-lab-v3 .demo-lab-copy{
    justify-self:start;
  }
  .demo-lab-section.demo-lab-v3 .demo-lab-copy h2,
  .demo-lab-section.demo-lab-v3 .demo-lab-copy p,
  .demo-lab-section.demo-lab-v3 .demo-copy-cta{
    max-width:720px;
  }
}
@media(max-width:760px){
  .home-hero-v3 .hero-channel-strip{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    width:auto !important;
    max-width:352px !important;
    margin-top:14px !important;
  }
  .demo-lab-process-graphic{
    grid-template-columns:1fr !important;
    padding-bottom:112px !important;
    --demo-visual-row-x:0px;
    --demo-visual-row-y:0px;
  }
  .demo-process-flow{
    width:calc(100% - 36px);
    flex-wrap:wrap;
    bottom:22px;
    gap:8px;
  }
  .demo-process-flow span{
    min-width:74px;
    padding:9px 10px;
    font-size:10.5px;
  }
  .demo-process-flow i{
    display:none;
  }
  .demo-copy-cta{
    margin-top:24px;
  }
  .home-services-story .hero-actions{
    flex-direction:column;
    align-items:stretch;
  }
  .home-services-story .button,
  .home-services-story .button-outline{
    width:100%;
  }
  .demo-monitor-card{
    --demo-monitor-width:360px;
    width:min(100%,var(--demo-monitor-width));
    margin:0 auto;
  }
  .demo-lab-section.demo-lab-v3 .demo-lab-copy{
    order:1;
  }
  .demo-lab-section.demo-lab-v3 .demo-lab-art{
    order:2;
  }
  .demo-lab-section.demo-lab-v3 .demo-lab-copy h2,
  .demo-lab-section.demo-lab-v3 .demo-lab-copy p,
  .demo-lab-section.demo-lab-v3 .demo-copy-cta{
    max-width:330px;
  }
  .private-demo-engine-visual{
    width:calc(100% + 24px);
    max-width:none;
    margin:18px -12px 24px;
  }
}
@media(max-width:460px){
  .home-hero-v3 .hero-channel-strip{
    grid-template-columns:1fr !important;
  }
}

/* --- Services page readability pass --- */
.system-diagram article{
  display:flex;
  min-height:184px;
  flex-direction:column;
  justify-content:center;
}
.system-diagram article h3{
  line-height:1.16;
  letter-spacing:0;
}
.service-deep-dive{
  padding-top:18px;
}
.service-deep-dive .section-heading{
  margin-bottom:44px;
}
.service-deep-dive .section-heading h2{
  max-width:860px;
  line-height:1.08;
  letter-spacing:0;
}

@media(max-width:760px){
  
  .service-deep-dive .section-heading h2{
    max-width:350px;
    line-height:1.1;
    letter-spacing:0;
  }
  .system-diagram article{
    min-height:auto;
  }
  .system-diagram article h3{
    font-size:21px;
    line-height:1.18;
  }
  .service-deep-dive{
    padding-top:4px;
  }
}

/* --- Services detail page: full sections and alternating backgrounds --- */
.services-detail-hero{
  padding-top:70px;
  padding-bottom:38px;
}
.services-detail-hero h1{
  max-width:850px;
  font-family:var(--font-title);
  font-size:clamp(48px,5.4vw,70px);
  line-height:1;
  font-weight:500;
  letter-spacing:-.035em;
}
.services-detail-hero .page-lead{
  max-width:760px;
}
.services-detail-hero{
  width:min(var(--wide),calc(100% - 64px));
}
.service-detail-bands{
  width:100%;
  display:grid;
  gap:42px;
  padding:0 0 42px;
  background:#030914;
}
.service-band{
  width:100%;
  min-height:760px;
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(280px,420px);
  gap:44px;
  align-items:center;
  padding:76px max(32px,calc((100vw - var(--wide)) / 2));
  border:0;
  border-top:1px solid rgba(221,151,38,.22);
  border-bottom:1px solid rgba(221,151,38,.10);
  border-radius:0;
  scroll-margin-top:18px;
}
.service-band:nth-child(odd){
  background:
    radial-gradient(circle at 88% 22%,rgba(255,212,118,.11),transparent 28%),
    linear-gradient(180deg,rgba(7,20,34,.82),rgba(2,8,18,.94));
}
.service-band:nth-child(even){
  background:
    radial-gradient(circle at 12% 24%,rgba(91,72,186,.15),transparent 30%),
    linear-gradient(180deg,rgba(4,12,24,.96),rgba(8,19,32,.9));
}
.service-band-copy{
  min-width:0;
}
.service-band-copy h2{
  max-width:720px;
  font-family:var(--font-title);
  font-size:clamp(42px,5vw,66px);
  line-height:1;
  font-weight:500;
  letter-spacing:-.035em;
  margin:0 0 20px;
}
.service-band-copy > p{
  max-width:760px;
  color:#d3dce9;
  font-size:17px;
  line-height:1.74;
  margin:0 0 14px;
}
.service-columns{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  margin-top:28px;
}
.service-columns > div{
  border:1px solid rgba(221,151,38,.26);
  border-radius:10px;
  padding:18px;
  background:rgba(2,8,18,.42);
}
.service-columns h3{
  font-family:var(--font-title);
  font-size:24px;
  line-height:1.1;
  letter-spacing:-.02em;
  margin:0 0 12px;
}
.service-band img{
  width:100%;
  aspect-ratio:1;
  object-fit:contain;
  border:1px solid rgba(221,151,38,.18);
  border-radius:12px;
  background:rgba(1,5,13,.74);
  box-shadow:0 28px 64px rgba(0,0,0,.32);
}
.service-band:nth-child(even) img{
  order:-1;
}
.service-band.band-chat{
  grid-template-columns:minmax(0,.88fr) minmax(520px,.98fr);
  gap:58px;
}
.service-band img.service-chat-visual{
  aspect-ratio:3 / 2;
  object-fit:cover;
  width:min(100%,640px);
  justify-self:end;
  border:0;
  border-radius:18px;
  background:transparent;
  box-shadow:0 34px 84px rgba(0,0,0,.28),0 0 78px rgba(217,154,39,.10);
  opacity:.96;
  -webkit-mask-image:radial-gradient(ellipse at 50% 50%,#000 58%,rgba(0,0,0,.86) 74%,rgba(0,0,0,.32) 91%,transparent 100%);
  mask-image:radial-gradient(ellipse at 50% 50%,#000 58%,rgba(0,0,0,.86) 74%,rgba(0,0,0,.32) 91%,transparent 100%);
}
.service-band .service-chat-picture{
  display:block;
  width:min(100%,640px);
  justify-self:end;
  border-radius:18px;
  overflow:hidden;
  background:#020b15;
  box-shadow:0 34px 84px rgba(0,0,0,.28),0 0 78px rgba(217,154,39,.10);
}
.service-band .service-chat-picture img.service-chat-visual{
  display:block;
  width:100%;
  height:auto;
  max-width:none;
  aspect-ratio:3 / 2;
  object-fit:cover;
  border:0;
  border-radius:18px;
  box-shadow:none;
  opacity:1;
}
.service-band.band-voice{
  grid-template-columns:minmax(520px,.94fr) minmax(0,.9fr);
  gap:58px;
}
.service-band img.service-voice-visual{
  aspect-ratio:1;
  object-fit:cover;
  width:min(100%,600px);
  justify-self:start;
  border:0;
  border-radius:18px;
  background:transparent;
  box-shadow:0 34px 84px rgba(0,0,0,.28),0 0 78px rgba(217,154,39,.10);
  opacity:.96;
  -webkit-mask-image:radial-gradient(ellipse at 50% 50%,#000 58%,rgba(0,0,0,.86) 74%,rgba(0,0,0,.32) 91%,transparent 100%);
  mask-image:radial-gradient(ellipse at 50% 50%,#000 58%,rgba(0,0,0,.86) 74%,rgba(0,0,0,.32) 91%,transparent 100%);
}
.service-band .service-voice-picture{
  display:block;
  width:min(100%,600px);
  justify-self:start;
  border-radius:18px;
  overflow:hidden;
  background:#020b15;
  box-shadow:0 34px 84px rgba(0,0,0,.28),0 0 78px rgba(217,154,39,.10);
}
.service-band .service-voice-picture img.service-voice-visual{
  display:block;
  width:100%;
  height:auto;
  max-width:none;
  aspect-ratio:1;
  object-fit:cover;
  border:0;
  border-radius:18px;
  box-shadow:none;
  opacity:1;
}
.service-band.band-automation{
  grid-template-columns:minmax(0,.9fr) minmax(520px,.98fr);
  gap:58px;
}
.service-band img.service-automation-visual{
  aspect-ratio:1.11 / 1;
  object-fit:cover;
  width:min(100%,620px);
  justify-self:end;
  border:0;
  border-radius:18px;
  background:transparent;
  box-shadow:0 34px 84px rgba(0,0,0,.28),0 0 78px rgba(217,154,39,.10);
  opacity:.96;
  -webkit-mask-image:radial-gradient(ellipse at 50% 50%,#000 58%,rgba(0,0,0,.86) 74%,rgba(0,0,0,.32) 91%,transparent 100%);
  mask-image:radial-gradient(ellipse at 50% 50%,#000 58%,rgba(0,0,0,.86) 74%,rgba(0,0,0,.32) 91%,transparent 100%);
}
.service-band .service-automation-picture{
  display:block;
  width:min(100%,620px);
  justify-self:end;
  border-radius:18px;
  overflow:hidden;
  background:#020b15;
  box-shadow:0 34px 84px rgba(0,0,0,.28),0 0 78px rgba(217,154,39,.10);
}
.service-band .service-automation-picture img.service-automation-visual{
  display:block;
  width:100%;
  height:auto;
  max-width:none;
  aspect-ratio:1.11 / 1;
  object-fit:cover;
  border:0;
  border-radius:18px;
  box-shadow:none;
  opacity:1;
}
.service-band.band-websites{
  grid-template-columns:minmax(620px,1.06fr) minmax(0,.82fr);
  gap:58px;
}
.service-band img.service-website-visual{
  aspect-ratio:4 / 3;
  object-fit:cover;
  width:min(100%,700px);
  justify-self:start;
  border:0;
  border-radius:18px;
  background:transparent;
  box-shadow:0 34px 84px rgba(0,0,0,.28),0 0 78px rgba(217,154,39,.10);
  opacity:.96;
  -webkit-mask-image:radial-gradient(ellipse at 50% 50%,#000 58%,rgba(0,0,0,.86) 74%,rgba(0,0,0,.32) 91%,transparent 100%);
  mask-image:radial-gradient(ellipse at 50% 50%,#000 58%,rgba(0,0,0,.86) 74%,rgba(0,0,0,.32) 91%,transparent 100%);
}
.services-control{
  width:100%;
  max-width:none;
  margin:0;
  padding:92px max(32px,calc((100vw - var(--wide)) / 2)) 104px;
  border-top:1px solid rgba(221,151,38,.16);
}
.services-control .control-panel{
  width:100%;
  max-width:var(--wide);
  margin:0 auto;
  padding:0;
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(300px,.9fr);
  gap:30px;
  align-items:center;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}
.process-system-map{
  padding-top:8px;
}

@media(max-width:1100px){
  .service-band{
    min-height:auto;
    grid-template-columns:1fr;
    gap:30px;
    padding:60px max(24px,calc((100vw - var(--wide)) / 2));
  }
  .service-band:nth-child(even) img{
    order:0;
  }
  .service-band.band-chat{
    grid-template-columns:1fr;
  }
  .service-band.band-voice{
    grid-template-columns:1fr;
  }
  .service-band.band-automation{
    grid-template-columns:1fr;
  }
  .service-band.band-websites{
    grid-template-columns:1fr;
  }
  .service-band img.service-chat-visual{
    width:100%;
    justify-self:center;
  }
  .service-band .service-chat-picture{
    width:min(100%,780px);
    justify-self:center;
  }
  .service-band .service-chat-picture img.service-chat-visual{
    aspect-ratio:16 / 9;
  }
  .service-band img.service-voice-visual{
    width:100%;
    justify-self:center;
  }
  .service-band .service-voice-picture{
    width:min(100%,780px);
    justify-self:center;
  }
  .service-band .service-voice-picture img.service-voice-visual{
    aspect-ratio:16 / 9;
  }
  .service-band img.service-automation-visual{
    width:100%;
    justify-self:center;
  }
  .service-band .service-automation-picture{
    width:min(100%,780px);
    justify-self:center;
  }
  .service-band .service-automation-picture img.service-automation-visual{
    aspect-ratio:16 / 9;
  }
  .service-band img.service-website-visual{
    width:min(100%,780px);
    justify-self:center;
    aspect-ratio:16 / 9;
    object-fit:cover;
    object-position:center center;
  }
  .services-control{
    padding:72px 24px 82px;
  }
  .services-control .control-panel{
    grid-template-columns:1fr;
    gap:28px;
  }
  .service-columns{
    grid-template-columns:1fr;
  }
}

@media(max-width:1100px) and (orientation:landscape){
  .service-band.band-websites{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:16px !important;
  }
  .service-band.band-websites .service-band-copy{
    display:contents !important;
  }
  .service-band.band-websites .page-kicker{
    order:1;
  }
  .service-band.band-websites h2{
    order:2;
  }
  .service-band.band-websites .service-band-copy > p{
    order:3;
  }
  .service-band.band-websites img.service-website-visual{
    order:4 !important;
    width:min(100%,780px) !important;
    height:auto !important;
    aspect-ratio:16 / 9 !important;
    object-fit:cover !important;
    object-position:center center !important;
    margin:0 auto 4px !important;
  }
  .service-band.band-websites .service-columns{
    order:5;
  }
}

@media(max-width:720px){
  .services-detail-hero{
    width:calc(100% - 32px);
    padding-top:38px;
    padding-bottom:30px;
  }
  .services-detail-hero h1{
    max-width:330px;
    font-size:clamp(37px,10vw,44px);
  }
  .services-detail-hero .page-lead{
    max-width:330px;
  }
  .service-band{
    padding:48px 16px;
    scroll-margin-top:16px;
  }
  .service-band-copy h2{
    max-width:340px;
    font-size:clamp(34px,9.4vw,42px);
  }
  .service-band-copy > p{
    max-width:330px;
    font-size:15px;
  }
  .service-columns > div{
    padding:16px;
  }
  .service-columns h3{
    font-size:21px;
  }
  .service-band .simple-list,
  .service-band .simple-list li{
    max-width:none;
  }
  .process-system-map{
    width:calc(100% - 32px);
  }
}

/* --- Pricing page v2: managed acquisition systems --- */
.pricing-hero-v2{
  padding-top:72px;
  padding-bottom:34px;
}
.pricing-hero-v2::before{
  content:"";
  position:absolute;
  width:520px;
  height:520px;
  right:-160px;
  top:-120px;
  pointer-events:none;
  border-radius:50%;
  background:radial-gradient(circle,rgba(255,212,118,.13),rgba(106,81,255,.08) 38%,transparent 68%);
  filter:blur(8px);
}
.pricing-hero-v2 h1{
  max-width:700px;
  font-family:var(--font-title) !important;
  font-size:clamp(58px,5.35vw,68px) !important;
  line-height:1 !important;
  font-weight:500 !important;
  letter-spacing:-.035em !important;
  margin:0 0 22px !important;
  color:#f8fbff !important;
}
.pricing-hero-v2 .page-lead{
  max-width:700px;
  font-family:var(--font-title);
  font-weight:500;
  letter-spacing:-.035em;
  font-size:clamp(25px,2.3vw,31px);
  line-height:1.18;
  color:#fff8e5;
}
.pricing-intro{
  max-width:820px;
  margin:22px 0 0;
  color:#cbd4e2;
  font-size:16px;
  line-height:1.72;
}
.site-canvas[data-pricing-region="th"] .price-intl,
.site-canvas[data-pricing-region="th"] [data-region-label-intl]{
  display:none;
}
.site-canvas[data-pricing-region="intl"] .price-th,
.site-canvas[data-pricing-region="intl"] [data-region-label-th]{
  display:none;
}
.pricing-region-note{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  margin:0 0 16px;
  padding:0 14px;
  border:1px solid rgba(255,212,118,.24);
  border-radius:999px;
  color:#fff4bd;
  background:rgba(255,212,118,.06);
  font-size:12px;
  font-weight:800;
}
.pricing-grid-v2{
  padding-top:26px;
}
.pricing-grid-four{
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
  align-items:start;
}
.pricing-card-v2{
  position:relative;
  min-height:232px;
  padding:24px;
  border-radius:12px;
  overflow:hidden;
  background:
    radial-gradient(circle at 20% 0%,rgba(255,212,118,.09),transparent 32%),
    linear-gradient(180deg,rgba(8,22,37,.92),rgba(3,10,18,.96));
}
.pricing-card-v2::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(135deg,rgba(255,255,255,.06),transparent 28%,rgba(255,212,118,.04));
  opacity:.75;
}
.pricing-card-v2 > *{
  position:relative;
  z-index:1;
}
.pricing-card-v2.featured{
  transform:translateY(-16px);
  background:
    radial-gradient(circle at 24% 0%,rgba(255,212,118,.18),transparent 38%),
    linear-gradient(180deg,rgba(17,31,48,.96),rgba(4,11,20,.98));
}
.recommended-badge{
  display:inline-flex;
  align-items:center;
  align-self:flex-start;
  min-height:28px;
  padding:0 12px;
  border:1px solid rgba(255,212,118,.48);
  border-radius:999px;
  color:#101014;
  background:linear-gradient(180deg,#ffe69d,#d5942a);
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:14px;
}
.plan-head{
  min-height:164px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}
.pricing-card-v2 h2{
  margin:11px 0 0;
  font-size:clamp(25px,2.1vw,32px);
  line-height:1.13;
  letter-spacing:0;
}
.plan-toggle{
  margin-top:auto;
  min-height:38px;
  width:100%;
  border:1px solid rgba(255,212,118,.28);
  border-radius:999px;
  color:#fff4bd;
  background:rgba(255,212,118,.055);
  font-family:var(--font-subtitle);
  font-size:11px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 14px;
}
.plan-toggle span{
  font-size:17px;
  line-height:1;
}
.pricing-card-v2 .price-block,
.pricing-card-v2 .plan-fit,
.pricing-card-v2 .plan-list,
.pricing-card-v2 .plan-note,
.pricing-card-v2 > .button{
  max-height:0;
  opacity:0;
  overflow:hidden;
  pointer-events:none;
  margin-top:0;
  margin-bottom:0;
  padding-top:0;
  padding-bottom:0;
  transition:max-height .45s ease,opacity .28s ease,margin .28s ease,padding .28s ease;
}
.pricing-card-v2:hover .price-block,
.pricing-card-v2:focus-within .price-block,
.pricing-card-v2.is-expanded .price-block{
  max-height:180px;
  opacity:1;
  pointer-events:auto;
  margin:18px 0;
  padding-top:15px;
  padding-bottom:15px;
}
.pricing-card-v2:hover .plan-fit,
.pricing-card-v2:focus-within .plan-fit,
.pricing-card-v2.is-expanded .plan-fit{
  max-height:190px;
  opacity:1;
  pointer-events:auto;
}
.pricing-card-v2:hover .plan-list,
.pricing-card-v2:focus-within .plan-list,
.pricing-card-v2.is-expanded .plan-list{
  max-height:560px;
  opacity:1;
  pointer-events:auto;
  margin-top:18px;
  padding-bottom:18px;
}
.pricing-card-v2:hover .plan-note,
.pricing-card-v2:focus-within .plan-note,
.pricing-card-v2.is-expanded .plan-note{
  max-height:190px;
  opacity:1;
  pointer-events:auto;
  margin-bottom:18px;
  padding-top:12px;
  padding-bottom:12px;
}
.pricing-card-v2:hover > .button,
.pricing-card-v2:focus-within > .button,
.pricing-card-v2.is-expanded > .button{
  max-height:60px;
  opacity:1;
  pointer-events:auto;
}
.price-block{
  display:grid;
  gap:9px;
  margin:18px 0 18px;
  padding:15px;
  border:1px solid rgba(255,212,118,.22);
  border-radius:10px;
  background:rgba(0,0,0,.18);
}
.price-block p{
  display:grid;
  gap:3px;
  margin:0;
  color:#d4dce9;
  font-size:12px;
  line-height:1.35;
}
.price-block span{
  color:#8fa0b6;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:10px;
}
.price-block b{
  color:#fff8dd;
  font-size:16px;
  line-height:1.3;
}
.pricing-card-v2 .plan-fit{
  min-height:126px;
  color:#d9e1ec;
  line-height:1.58;
  margin:0;
}
.pricing-card-v2 .plan-fit b{
  color:#fff;
}
.plan-list{
  gap:8px;
  margin-top:18px;
  padding-bottom:18px;
}
.plan-list li{
  color:#eef4fb;
  font-size:13px;
  line-height:1.45;
  padding-left:24px;
}
.plan-note{
  margin:0 0 18px;
  padding:12px 13px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:9px;
  color:#aeb9ca;
  background:rgba(255,255,255,.035);
  font-size:12px;
  line-height:1.55;
}
.pricing-card-v2 .button{
  width:100%;
  min-width:0;
  margin-top:auto;
}
.pricing-feature-section,
.pricing-addons-section{
  padding-top:18px;
}
.pricing-feature-section .section-heading h2,
.website-pricing-section .section-heading h2,
.pricing-addons-section .section-heading h2,
.pricing-guide-section .section-heading h2,
.pricing-faq-section .section-heading h2{
  max-width:760px;
  font-family:var(--font-title);
  font-weight:500;
  line-height:1.08;
  letter-spacing:-.025em;
}
.website-pricing-section{
  padding-top:10px;
}
.website-pricing-lead{
  max-width:820px;
  margin:0 auto 24px;
  color:#d4dce8;
  font-size:16px;
  line-height:1.72;
  text-align:center;
}
.website-option-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.website-option-card{
  min-height:265px;
}
.website-option-card.featured{
  border-color:rgba(255,212,118,.7);
  background:
    radial-gradient(circle at 28% 0%,rgba(255,212,118,.14),transparent 34%),
    linear-gradient(180deg,rgba(12,26,42,.92),rgba(3,10,18,.96));
}
.website-option-card h3{
  margin:10px 0 12px;
  font-size:clamp(31px,3vw,42px);
  line-height:1;
  letter-spacing:-.035em;
}
.pricing-market-note{
  margin:18px auto 0;
  max-width:880px;
  color:#98a8bd;
  font-size:13px;
  line-height:1.65;
  text-align:center;
}
.addon-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.addon-card{
  min-height:282px;
}
.addon-card h3{
  margin:10px 0 8px;
  font-size:clamp(26px,2.3vw,34px);
  line-height:1.05;
  letter-spacing:-.025em;
}
.addon-setup{
  display:inline-flex;
  min-height:30px;
  align-items:center;
  margin:0 0 14px !important;
  padding:0 10px;
  border:1px solid rgba(255,212,118,.22);
  border-radius:999px;
  color:#fff4bd !important;
  background:rgba(255,212,118,.055);
  font-size:12px;
  font-weight:800;
}
.price-intl{
  display:none;
}
.site-canvas[data-pricing-region="intl"] .price-intl{
  display:grid;
}
.pricing-feature-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}
.pricing-feature-card{
  min-height:230px;
}
.pricing-feature-card h3{
  font-size:25px;
  line-height:1.14;
  letter-spacing:0;
  margin-top:0;
}
.pricing-transparent-section{
  padding-top:4px;
  padding-bottom:56px;
}
.pricing-wide-card{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(221,151,38,.38);
  border-radius:14px;
  padding:34px;
  background:
    radial-gradient(circle at 86% 20%,rgba(255,212,118,.13),transparent 32%),
    linear-gradient(180deg,rgba(8,22,36,.88),rgba(3,10,19,.94));
}
.pricing-wide-card h2{
  font-family:var(--font-title);
  font-size:clamp(34px,4vw,54px);
  line-height:.98;
  letter-spacing:-.04em;
  margin:0 0 16px;
}
.pricing-wide-card p{
  max-width:920px;
  margin:0;
  color:#d4dce8;
  font-size:16px;
  line-height:1.75;
}
.pricing-guide-section{
  padding-top:0;
  padding-bottom:58px;
}
.pricing-choice-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.pricing-choice-list article{
  display:grid;
  grid-template-columns:170px minmax(0,1fr);
  gap:16px;
  align-items:center;
  min-height:88px;
  border:1px solid rgba(221,151,38,.28);
  border-radius:10px;
  padding:18px;
  background:linear-gradient(180deg,rgba(7,20,34,.8),rgba(3,10,18,.9));
}
.pricing-choice-list b{
  color:#ffd476;
  font-family:var(--font-subtitle);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:12px;
}
.pricing-choice-list span{
  color:#eef4fb;
  line-height:1.55;
}
.pricing-faq-section{
  padding-top:0;
}
.pricing-faq-grid{
  grid-template-columns:repeat(2,minmax(0,1fr));
}
.pricing-faq-grid .faq-card:last-child{
  grid-column:1 / -1;
}
.pricing-closing{
  margin-top:10px;
}
.pricing-closing .closing-copy h2{
  max-width:780px;
}

@media(max-width:1120px){
  .pricing-grid-four{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
  }
  .pricing-card-v2,
  .pricing-card-v2.featured{
    min-height:232px;
    transform:none;
  }
  .pricing-feature-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:720px){
  .pricing-hero-v2{
    padding-top:38px;
    padding-bottom:22px;
  }
  .pricing-hero-v2 h1{
    max-width:340px;
    font-size:clamp(38px,10.8vw,44px) !important;
    line-height:1 !important;
  }
  .pricing-hero-v2 .page-lead{
    max-width:330px;
    font-size:22px;
    line-height:1.22;
  }
  .pricing-intro{
    max-width:330px;
    font-size:15.5px;
  }
  .pricing-grid-v2{
    width:calc(100% - 28px);
    padding-top:14px;
  }
  .pricing-grid-four,
  .pricing-feature-grid,
  .website-option-grid,
  .addon-grid,
  .pricing-choice-list,
  .pricing-faq-grid{
    grid-template-columns:1fr;
  }
  .pricing-card-v2{
    min-height:auto;
    padding:20px;
  }
  .plan-head,
  .pricing-card-v2 .plan-fit{
    min-height:auto;
  }
  .plan-head{
    min-height:148px;
  }
  .pricing-card-v2 h2{
    font-size:28px;
    line-height:1.13;
  }
  .price-block b{
    font-size:15px;
  }
  .pricing-feature-section,
  .website-pricing-section,
  .pricing-addons-section,
  .pricing-transparent-section,
  .pricing-guide-section,
  .pricing-faq-section{
    width:calc(100% - 32px);
  }
  .pricing-feature-card{
    min-height:auto;
  }
  .website-pricing-lead,
  .pricing-market-note{
    text-align:left;
  }
  .website-option-card{
    min-height:auto;
  }
  .addon-card{
    min-height:auto;
  }
  .pricing-wide-card{
    padding:22px;
  }
  .pricing-wide-card h2{
    max-width:300px;
    font-size:36px;
    line-height:1;
  }
  .pricing-wide-card p{
    font-size:14.5px;
  }
  .pricing-choice-list article{
    grid-template-columns:1fr;
    gap:8px;
    min-height:auto;
  }
  .pricing-faq-grid .faq-card:last-child{
    grid-column:auto;
  }
}

/* Shared heading scale: based on the homepage Services section title. */
:root{
  --section-title-size:clamp(32px,3.8vw,48px);
  --hero-title-size:clamp(34px,calc(3.8vw + 2px),50px);
  --shared-title-line-height:.95;
  --shared-title-spacing:-.055em;
  --shared-title-weight:500;
}
.section-heading h1,
.section-heading h2,
.demo-lab-copy h2,
.services-story-copy h2,
.control-panel h2,
.about-copy h2,
.demo-explainer h2,
.contact-box h2,
.service-panel h2,
.service-detail h1,
.process-copy h2,
.service-band-copy h2,
.closing-copy h2,
.pricing-feature-section .section-heading h2,
.website-pricing-section .section-heading h2,
.pricing-addons-section .section-heading h2,
.pricing-guide-section .section-heading h2,
.pricing-faq-section .section-heading h2{
  font-family:var(--font-title) !important;
  font-size:var(--section-title-size) !important;
  line-height:var(--shared-title-line-height) !important;
  letter-spacing:var(--shared-title-spacing) !important;
  font-weight:var(--shared-title-weight) !important;
}
.hero-copy h1,
.home-hero-v3 h1,
.page-hero h1,
.services-detail-hero h1,
.process-hero h1,
.pricing-hero-v2 h1,
.onboarding-hero h1{
  font-family:var(--font-title) !important;
  font-size:var(--hero-title-size) !important;
  line-height:var(--shared-title-line-height) !important;
  letter-spacing:var(--shared-title-spacing) !important;
  font-weight:var(--shared-title-weight) !important;
}

/* Laptop-safe visual layout: prevent oversized hero art from drifting off-screen. */
@media(min-width:1321px) and (max-width:1600px){
  .home-hero-v3{
    width:min(var(--max),calc(100% - 56px)) !important;
    grid-template-columns:minmax(360px,.38fr) minmax(620px,.62fr) !important;
    gap:0 !important;
    transform:none !important;
  }
  .home-hero-v3 .hero-copy{
    padding-right:10px !important;
  }
  .home-hero-v3 .phone-hero-stack{
    min-height:720px !important;
    margin-left:-170px !important;
    margin-right:-92px !important;
    transform:translateX(-58px) !important;
  }
  .qaimo-tablet-scene{
    width:910px !important;
    right:28px !important;
    top:66px !important;
    transform:scale(1.04) !important;
  }
  .home-hero-v3 .phone-hero-stack .qaimo-phone-art{
    right:22px !important;
    top:278px !important;
    width:648px !important;
    height:366px !important;
    transform:translate3d(-6px,var(--parallax-y,0px),0) scale(1.24) !important;
  }
  .home-hero-v3 .phone-hero-stack .qaimo-phone-scene{
    width:648px !important;
  }
  .hero-surface-light{
    left:176px !important;
    right:86px !important;
  }
  .hero-phone-contact-light{
    right:96px !important;
  }
}

@media(min-width:761px) and (max-width:1320px){
  .home-hero-v3{
    grid-template-columns:1fr !important;
    width:min(var(--max),calc(100% - 48px)) !important;
    transform:none !important;
  }
  .home-hero-v3 .hero-copy{
    max-width:760px !important;
  }
  .home-hero-v3 .phone-hero-stack{
    width:100% !important;
    min-height:650px !important;
    margin:10px 0 0 !important;
    transform:none !important;
  }
  .qaimo-tablet-scene{
    right:50% !important;
    transform:translateX(50%) scale(1.03) !important;
  }
  .home-hero-v3 .phone-hero-stack .qaimo-phone-art{
    right:50% !important;
    transform:translate3d(50%,var(--parallax-y,0px),0) scale(1.24) !important;
  }
  .hero-surface-light{
    left:12% !important;
    right:12% !important;
  }
  .demo-lab-section.demo-lab-v3{
    width:calc(100% - 48px) !important;
    grid-template-columns:1fr !important;
    gap:28px !important;
  }
  .demo-lab-v3 .demo-lab-copy{
    max-width:760px !important;
  }
  .demo-lab-process-graphic{
    max-width:100% !important;
  }
}

@media(max-width:1600px){
  .demo-lab-section.demo-lab-v3,
  .services-story-hero,
  .before-after-points,
  .pricing-grid-v2,
  .pricing-feature-section,
  .website-pricing-section,
  .pricing-addons-section,
  .pricing-transparent-section,
  .pricing-guide-section,
  .pricing-faq-section{
    max-width:calc(100% - 48px) !important;
  }
}

/* Homepage rhythm: keep the roomy hero feel through the rest of the page. */
.home-canvas .demo-lab-section.demo-lab-v3{
  margin-bottom:clamp(132px,8.8vw,170px) !important;
}
.home-canvas .services-v3{
  margin-bottom:clamp(128px,8.4vw,166px) !important;
}
.home-canvas .home-services-story{
  margin-bottom:clamp(28px,2.4vw,44px) !important;
}
.home-canvas .home-before-after-points{
  margin-top:-28px !important;
  margin-bottom:clamp(118px,8vw,152px) !important;
  padding-bottom:0 !important;
}

@media(max-width:760px){
  .home-canvas .demo-lab-section.demo-lab-v3,
  .home-canvas .services-v3,
  .home-canvas .home-before-after-points{
    margin-bottom:82px !important;
  }
  .home-canvas .home-services-story{
    margin-bottom:28px !important;
  }
  .home-canvas .home-before-after-points{
    margin-top:10px !important;
  }
}

/* 2026-05-16 performance pass: prefer static paint over continuous compositing. */
.before-after-stage,
.stage-image.after,
.stage-divider,
.solution-card::after,
.audit-visual::before,
.signal-card,
.flow-node,
.metric-ring,
.site-chat-widget,
.engine-orbit,
.demo-flow-line i,
.dash-live i,
.chart-line,
.sentiment-bars span i::before{
  animation:none !important;
}
.before-after-stage:not(.is-sweeping){--reveal:50% !important}
.before-after-stage:not(.is-sweeping) .stage-image.after{clip-path:inset(0 0 0 50%) !important}
.before-after-stage:not(.is-sweeping) .stage-divider{left:50% !important}
.home-services-story .before-after-stage.is-sweeping{
  --reveal:8%;
  animation:comparisonReveal 10.5s ease-in-out infinite !important;
}
.home-services-story .before-after-stage.is-sweeping .stage-image.after{
  clip-path:inset(0 0 0 var(--reveal));
  animation:none !important;
}
.home-services-story .before-after-stage.is-sweeping .stage-divider{
  left:var(--reveal);
  animation:none !important;
}
.qaimo-typing-bubble i{animation:none !important}
.chart-line{stroke-dashoffset:0 !important}
.sentiment-bars span i::before{transform:none !important;opacity:1 !important}
.services-premium .service-card:hover .service-image,
.services-premium .service-card:focus-visible .service-image{
  height:160px !important;
}
.services-v3 .service-card:hover,
.services-v3 .service-card:focus-visible{
  transform:none !important;
}
.qaimo-phone-art,
.qaimo-message-row,
.qaimo-typing-row{
  will-change:auto !important;
}
.qaimo-phone-scene,
.home-hero-v3 .phone-hero-stack .qaimo-phone-scene,
.qaimo-tablet-scene,
.private-demo-engine-visual,
.demo-monitor-frame,
.service-band img,
.service-band img.service-chat-visual,
.service-band img.service-voice-visual,
.service-band img.service-automation-visual,
.service-band img.service-website-visual{
  filter:none !important;
}
.qaimo-dashboard-ui,
.customer .qaimo-bubble,
.qaimo-typing-bubble,
.site-chat-widget{
  backdrop-filter:none !important;
}
.private-demo-engine-visual,
.service-band img.service-chat-visual,
.service-band .service-chat-picture,
.service-band img.service-voice-visual,
.service-band .service-voice-picture,
.service-band img.service-automation-visual,
.service-band .service-automation-picture,
.service-band img.service-website-visual{
  -webkit-mask-image:none !important;
  mask-image:none !important;
  border-radius:14px;
}
.demo-process-glow,
.home-canvas::after,
.dash-ambient{
  display:none !important;
}
.pricing-card-v2 .price-block,
.pricing-card-v2 .plan-fit,
.pricing-card-v2 .plan-list,
.pricing-card-v2 .plan-note,
.pricing-card-v2 > .button{
  transition:opacity .16s ease !important;
}
main > section:not(.hero):not(.page-hero){
  content-visibility:auto;
  contain-intrinsic-size:1px 760px;
}
@media(max-width:1020px), (hover:none), (pointer:coarse), (prefers-reduced-motion:reduce){
  .qaimo-phone-plane.is-playing .qaimo-message-row,
  .qaimo-phone-plane.is-playing .qaimo-typing-row,
  .qaimo-message-row,
  .qaimo-typing-row{
    animation:none !important;
  }
  .qaimo-message-row{
    opacity:1 !important;
    transform:none !important;
  }
  .qaimo-typing-row{
    display:none !important;
  }
  .qaimo-phone-language-toggle::before,
  .hero-surface-light,
  .hero-phone-contact-light{
    display:none !important;
  }
  .private-demo-engine-visual,
  .service-band img{
    box-shadow:none !important;
  }
}

/* Mobile/tablet portrait: keep all enquiry channels in one premium four-up row. */
@media(max-width:1020px) and (orientation:portrait){
  .home-hero-v3 .hero-copy{
    display:flex !important;
    flex-direction:column !important;
  }
  .home-hero-v3 .hero-copy h1{
    order:1;
  }
  .home-hero-v3 .hero-copy > .hero-subtitle{
    order:2;
    max-width:100% !important;
    width:100% !important;
    text-align:left !important;
    line-height:1.18 !important;
  }
  .home-hero-v3 .hero-devices-portrait-inline{
    order:3;
  }
  .home-hero-v3 .hero-copy > .hero-body{
    order:4;
  }
  .home-hero-v3 .hero-copy > .hero-channel-strip{
    order:5;
  }
  .home-hero-v3 .hero-copy > .hero-actions{
    order:6;
  }
  .home-services-story.services-story-hero{
    display:flex !important;
    flex-direction:column !important;
    align-items:stretch !important;
    gap:0 !important;
    padding-bottom:8px !important;
  }
  .home-services-story .services-story-copy{
    display:contents !important;
  }
  .home-services-story .services-story-copy h2{
    order:1;
  }
  .home-services-story .services-story-copy .hero-subtitle{
    order:2;
  }
  .home-services-story .before-after-stage{
    order:3;
    width:100% !important;
    margin:4px 0 22px !important;
    transform:none !important;
  }
  .home-services-story .services-story-copy > p:not(.hero-subtitle){
    order:4;
    width:100% !important;
    max-width:none !important;
    margin-bottom:0 !important;
  }
  .home-services-story .story-inline-points{
    order:5;
    width:100% !important;
    max-width:none !important;
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:6px !important;
    margin:12px 0 8px !important;
    padding:0 !important;
  }
  .home-services-story .story-inline-points .simple-card{
    min-height:0 !important;
    padding:0 !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    box-shadow:none !important;
    overflow:visible !important;
  }
  .home-services-story .story-inline-points .solution-card::after{
    display:none !important;
  }
  .home-services-story .story-inline-points h2{
    font-size:clamp(18px,5vw,22px) !important;
    line-height:1.08 !important;
    margin-bottom:4px !important;
    max-width:none !important;
  }
  .home-services-story .story-inline-points p{
    max-width:none !important;
    font-size:12px !important;
    line-height:1.45 !important;
  }
  .home-services-story .story-inline-points .solution-card h2{
    color:#f8fbff !important;
  }
  .home-services-story .story-inline-points .solution-card h2 em{
    color:#d99a27 !important;
  }
  .home-services-story .story-inline-points .solution-card p{
    color:#d9e0ec !important;
  }
  .home-services-story .services-story-copy .hero-actions{
    order:6;
    display:grid !important;
    grid-template-columns:1fr !important;
    width:190px !important;
    max-width:190px !important;
    margin:18px auto 0 !important;
    gap:10px !important;
    align-items:center !important;
  }
  .home-services-story .services-story-copy .hero-actions .button,
  .home-services-story .services-story-copy .hero-actions .button-outline{
    width:190px !important;
    min-width:0 !important;
    height:40px !important;
    padding:0 14px !important;
    font-size:11.5px !important;
    justify-content:center !important;
  }
  .demo-lab-section.demo-lab-v3{
    width:calc(100% - 32px) !important;
    margin-top:-90px !important;
    padding-top:34px !important;
  }
  .demo-lab-section.demo-lab-v3 .demo-lab-copy{
    width:100% !important;
  }
  .demo-lab-section.demo-lab-v3 .demo-lab-copy p,
  .demo-lab-section.demo-lab-v3 .demo-copy-cta{
    width:100% !important;
    max-width:none !important;
  }
  .demo-lab-section.demo-lab-v3 .demo-copy-cta .button{
    width:100% !important;
    max-width:360px;
  }
  .home-hero-v3 .phone-hero-stack{
    display:none !important;
    min-height:0 !important;
    width:100% !important;
    margin:0 !important;
    transform:none !important;
    overflow:visible !important;
  }
  .home-hero-v3 .hero-devices-portrait{
    display:block !important;
    position:relative;
    z-index:3;
    width:114vw;
    max-width:none;
    height:auto;
    align-self:center;
    margin:-14px 0 -4px -7vw;
    pointer-events:none;
    user-select:none;
  }
  .home-hero-v3 .qaimo-tablet-scene,
  .home-hero-v3 .phone-hero-stack .qaimo-phone-art,
  .home-hero-v3 .hero-surface-light,
  .home-hero-v3 .hero-phone-contact-light{
    display:none !important;
  }
  .home-hero-v3 .phone-hero-stack .qaimo-phone-art{
    right:auto !important;
    left:34vw !important;
    top:clamp(214px,29vw,238px) !important;
    width:min(520px,70vw) !important;
    height:auto !important;
    transform:none !important;
  }
  .home-hero-v3 .phone-hero-stack .qaimo-phone-scene{
    width:100% !important;
  }
  .home-hero-v3 .hero-channel-strip{
    display:grid !important;
    grid-template-columns:repeat(4,minmax(0,1fr)) !important;
    width:100% !important;
    max-width:100% !important;
    gap:8px !important;
    margin-top:10px !important;
    margin-bottom:18px !important;
  }
  .home-hero-v3 .hero-channel-strip .channel-pill{
    min-width:0 !important;
    min-height:48px !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    gap:4px !important;
    padding:0 2px !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    box-shadow:none !important;
  }
  .home-hero-v3 .hero-channel-strip .channel-logo{
    width:28px !important;
    height:28px !important;
    min-width:28px !important;
    min-height:28px !important;
  }
  .home-hero-v3 .hero-channel-strip .channel-pill b{
    max-width:100%;
    color:#f8fbff;
    font-size:clamp(9.4px,2.35vw,11px) !important;
    line-height:1.05;
    letter-spacing:-.02em;
    text-align:center;
    white-space:normal !important;
  }
}

@media(max-width:760px) and (orientation:portrait){
  .home-hero-v3 .phone-hero-stack{
    min-height:0 !important;
    width:100% !important;
    margin:20px 0 0 !important;
    transform:none !important;
  }
  .home-hero-v3 .phone-hero-stack .qaimo-phone-art{
    left:50vw !important;
    top:clamp(178px,31vw,218px) !important;
    width:min(505px,82vw) !important;
  }
  .home-hero-v3 .hero-devices-portrait{
    width:118vw;
    margin:12px 0 15px;
  }
}

@media(max-width:460px) and (orientation:portrait){
  .home-hero-v3 .phone-hero-stack{
    min-height:0 !important;
    width:100% !important;
    margin:18px 0 0 !important;
    transform:none !important;
  }
  .home-hero-v3 .phone-hero-stack .qaimo-phone-art{
    left:47vw !important;
    top:178px !important;
    width:320px !important;
  }
}

@media(max-width:1020px){
  .home-hero-v3 .hero-copy{
    display:flex !important;
    flex-direction:column !important;
  }
  .home-hero-v3 .hero-copy h1{
    order:1;
  }
  .home-hero-v3 .hero-copy > .hero-subtitle{
    order:2;
    max-width:100% !important;
    line-height:1.18 !important;
  }
  .home-hero-v3 .hero-devices-portrait-inline{
    order:3;
  }
  .home-hero-v3 .hero-copy > .hero-body{
    order:4;
  }
  .home-hero-v3 .hero-copy > .hero-channel-strip{
    order:5;
  }
  .home-hero-v3 .hero-copy > .hero-actions{
    order:6;
  }
  .home-hero-v3 .phone-hero-stack{
    display:none !important;
    min-height:0 !important;
    width:100% !important;
    margin:0 !important;
    transform:none !important;
    overflow:visible !important;
  }
  .home-hero-v3 .hero-devices-portrait{
    display:block !important;
    position:relative;
    z-index:3;
    width:114vw;
    max-width:none;
    height:auto;
    align-self:center;
    margin:-14px 0 -4px -7vw;
    pointer-events:none;
    user-select:none;
  }
  .home-hero-v3 .qaimo-tablet-scene,
  .home-hero-v3 .phone-hero-stack .qaimo-phone-art,
  .home-hero-v3 .hero-surface-light,
  .home-hero-v3 .hero-phone-contact-light{
    display:none !important;
  }
}

@media(max-width:760px){
  .home-hero-v3 .hero-devices-portrait{
    width:114vw;
    margin:-16px 0 -6px -7vw;
  }
}

@media(max-width:460px){
  .home-hero-v3 .hero-devices-portrait{
    width:116vw;
    margin:-18px 0 -8px -8vw;
  }
}

/* Mobile live hero devices: restore the CSS dashboard and phone conversation. */
@media(max-width:1020px){
  .home-hero-v3{
    display:flex !important;
    flex-direction:column !important;
    overflow:hidden !important;
  }
  .home-hero-v3 .hero-copy{
    display:contents !important;
  }
  .home-hero-v3 .hero-copy h1{
    order:1;
  }
  .home-hero-v3 .hero-copy > .hero-subtitle{
    order:2;
    max-width:100% !important;
    line-height:1.18 !important;
  }
  .home-hero-v3 .hero-devices-portrait-inline{
    display:none !important;
  }
  .home-hero-v3 .phone-hero-stack{
    display:block !important;
    order:3;
    position:relative !important;
    width:116vw !important;
    height:338px !important;
    min-height:338px !important;
    align-self:center !important;
    margin:-18px 0 -56px -3vw !important;
    transform:none !important;
    overflow:visible !important;
  }
  .home-hero-v3 .qaimo-tablet-scene{
    display:block !important;
    position:absolute !important;
    z-index:2;
    width:620px !important;
    right:auto !important;
    left:50% !important;
    top:-36px !important;
    opacity:.92 !important;
    transform:translateX(-52%) scale(.84) !important;
    transform-origin:center center !important;
  }
  .home-hero-v3 .phone-hero-stack .qaimo-phone-art{
    display:block !important;
    position:absolute !important;
    z-index:5;
    width:374px !important;
    height:auto !important;
    right:auto !important;
    left:40% !important;
    top:70px !important;
    margin:0 !important;
    transform:translateX(-24%) !important;
  }
  .home-hero-v3 .phone-hero-stack .qaimo-phone-scene{
    width:100% !important;
    margin:0 !important;
  }
  .home-hero-v3 .hero-surface-light,
  .home-hero-v3 .hero-phone-contact-light{
    display:none !important;
  }
  .home-hero-v3 .hero-copy > .hero-body{
    order:4;
    margin-top:0 !important;
  }
  .home-hero-v3 .hero-copy > .hero-channel-strip{
    order:5;
  }
  .home-hero-v3 .hero-copy > .hero-actions{
    order:6;
    width:100% !important;
    max-width:none !important;
    align-items:stretch !important;
  }
  .home-hero-v3 .hero-copy > .hero-actions .button{
    width:100% !important;
    max-width:none !important;
  }
}

@media(max-width:460px){
  .home-hero-v3 .phone-hero-stack{
    width:118vw !important;
    height:338px !important;
    min-height:338px !important;
    margin:-20px 0 -60px -4vw !important;
  }
  .home-hero-v3 .qaimo-tablet-scene{
    width:600px !important;
    top:-34px !important;
    transform:translateX(-52%) scale(.82) !important;
  }
  .home-hero-v3 .phone-hero-stack .qaimo-phone-art{
    width:362px !important;
    left:39% !important;
    top:74px !important;
  }
}

/* Mobile story comparison: show more of each side while animating only in view. */
@media(max-width:760px){
  .service-detail-bands{
    gap:30px !important;
    padding-bottom:30px !important;
  }
  .service-band.band-chat{
    display:grid !important;
    gap:14px !important;
  }
  .service-band.band-chat .service-band-copy{
    display:contents !important;
  }
  .service-band.band-chat .page-kicker{
    order:1;
  }
  .service-band.band-chat h2{
    order:2;
  }
  .service-band.band-chat .service-band-copy > p{
    order:3;
    position:relative;
    z-index:2;
  }
  .service-band .service-chat-picture{
    order:4;
    width:min(94%,460px) !important;
    margin:-6px auto -8px !important;
    overflow:hidden !important;
    border-radius:18px !important;
    background:#020b15 !important;
    position:relative;
    z-index:1;
  }
  .service-band .service-chat-picture img.service-chat-visual{
    aspect-ratio:3 / 4 !important;
    height:auto !important;
    object-fit:cover !important;
    border-radius:0 !important;
    transform:none !important;
    transform-origin:center center !important;
  }
  .service-band.band-chat .service-columns{
    order:5;
    position:relative;
    z-index:2;
  }
  .service-band.band-voice{
    display:grid !important;
    gap:18px !important;
  }
  .service-band.band-voice .service-band-copy{
    display:contents !important;
  }
  .service-band.band-voice .page-kicker{
    order:1;
  }
  .service-band.band-voice h2{
    order:2;
  }
  .service-band.band-voice .service-band-copy > p{
    order:3;
  }
  .service-band .service-voice-picture{
    order:4;
    width:min(100%,520px) !important;
    margin:2px auto 4px !important;
    overflow:hidden !important;
    border-radius:18px !important;
    background:#020b15 !important;
  }
  .service-band .service-voice-picture img.service-voice-visual{
    aspect-ratio:9 / 16 !important;
    height:auto !important;
    object-fit:cover !important;
    border-radius:0 !important;
    transform:scale(1.026) !important;
    transform-origin:center center !important;
  }
  .service-band.band-voice .service-columns{
    order:5;
  }
  .service-band.band-automation{
    display:grid !important;
    gap:14px !important;
  }
  .service-band.band-automation .service-band-copy{
    display:contents !important;
  }
  .service-band.band-automation .page-kicker{
    order:1;
  }
  .service-band.band-automation h2{
    order:2;
  }
  .service-band.band-automation .service-band-copy > p{
    order:3;
    position:relative;
    z-index:2;
  }
  .service-band .service-automation-picture{
    order:4;
    width:min(100%,520px) !important;
    margin:-18px auto -26px !important;
    overflow:hidden !important;
    border-radius:18px !important;
    background:#020b15 !important;
    position:relative;
    z-index:1;
  }
  .service-band .service-automation-picture img.service-automation-visual{
    aspect-ratio:9 / 16 !important;
    height:auto !important;
    object-fit:cover !important;
    border-radius:0 !important;
    transform:scale(1.012) !important;
    transform-origin:center center !important;
  }
  .service-band.band-automation .service-columns{
    order:5;
    position:relative;
    z-index:2;
  }
  .service-band.band-websites{
    display:grid !important;
    gap:14px !important;
  }
  .service-band.band-websites .service-band-copy{
    display:contents !important;
  }
  .service-band.band-websites .page-kicker{
    order:1;
  }
  .service-band.band-websites h2{
    order:2;
  }
  .service-band.band-websites .service-band-copy > p{
    order:3;
    position:relative;
    z-index:2;
  }
  .service-band.band-websites img.service-website-visual{
    order:4 !important;
    width:min(100%,520px) !important;
    height:clamp(410px,115vw,475px) !important;
    aspect-ratio:4 / 5 !important;
    object-fit:cover !important;
    object-position:52% 48% !important;
    margin:-10px auto -18px !important;
    border-radius:18px !important;
    transform:scale(1.015) !important;
    transform-origin:center center !important;
    position:relative;
    z-index:1;
  }
  .service-band.band-websites .service-columns{
    order:5;
    position:relative;
    z-index:2;
  }
  .home-services-story .before-after-stage{
    min-height:330px !important;
    margin-top:18px !important;
  }
  .home-services-story .stage-image img{
    transform:scale(.96) !important;
    object-fit:cover !important;
    object-position:center center !important;
    background:#050914;
  }
}

/* Compact mobile closing CTA: crop the planet around the copy and reduce dead space. */
@media(max-width:760px){
  .home-hero-v3{
    margin-bottom:0 !important;
  }
  .home-canvas .home-services-story{
    margin-bottom:0 !important;
  }
  .home-closing-v3{
    min-height:260px !important;
    padding:34px 0 36px !important;
    align-items:center !important;
  }
  .home-closing-v3 .planet{
    width:142% !important;
    right:-58% !important;
    bottom:-18% !important;
    opacity:.82 !important;
    -webkit-mask-image:linear-gradient(90deg,transparent 0%,#000 22%,#000 100%) !important;
    mask-image:linear-gradient(90deg,transparent 0%,#000 22%,#000 100%) !important;
  }
  .home-closing-v3 .closing-copy{
    width:calc(100% - 32px) !important;
  }
  .home-closing-v3 .closing-copy h2{
    max-width:360px !important;
    font-size:clamp(31px,8.2vw,38px) !important;
    line-height:1.02 !important;
    margin-bottom:8px !important;
  }
  .home-closing-v3 .closing-copy p{
    max-width:340px !important;
    margin-bottom:14px !important;
  }
.home-closing-v3 .button{
    max-width:260px !important;
  }
}

/* Spline robot hero: published scene supplied from Spline. */
.home-hero-v3 .robot-hero-stack{
  min-height:610px;
  display:grid;
  place-items:center;
  isolation:isolate;
}

.home-hero-v3 .robot-hero-frame{
  position:relative;
  z-index:6;
  width:min(760px,100%);
  height:610px;
  overflow:hidden;
  border-radius:0;
}

.home-hero-v3 .robot-hero-spline{
  width:100%;
  height:100%;
  display:block;
  border:0;
  background:transparent;
}

.home-hero-v3 .robot-hero-stack > .hero-surface-light,
.home-hero-v3 .robot-hero-stack > .hero-phone-contact-light,
.home-hero-v3 .robot-hero-stack > .qaimo-tablet-scene,
.home-hero-v3 .robot-hero-stack > .qaimo-phone-art{
  display:none !important;
}

@media(min-width:1121px){
  .home-hero-v3{
    grid-template-columns:minmax(420px,.42fr) minmax(560px,.58fr) !important;
    align-items:center !important;
  }
  .home-hero-v3 .hero-copy{
    max-width:none !important;
  }
  .home-hero-v3 .robot-hero-stack{
    width:auto !important;
    margin:0 -46px 0 -18px !important;
    transform:none !important;
  }
  .home-hero-v3 .robot-hero-frame{
    transform:translateX(18px);
  }
}

@media(max-width:1120px){
  .home-hero-v3 .robot-hero-stack{
    min-height:560px;
  }
  .home-hero-v3 .robot-hero-frame{
    width:min(700px,100%);
    height:560px;
  }
}

@media(max-width:760px){
  .home-hero-v3 .robot-hero-stack{
    width:100% !important;
    height:390px !important;
    min-height:390px !important;
    margin:10px 0 0 !important;
    overflow:hidden !important;
  }
  .home-hero-v3 .robot-hero-frame{
    width:720px;
    max-width:none;
    height:390px;
    left:50%;
    transform:translateX(-50%);
  }
}

@media(max-width:460px){
  .home-hero-v3 .robot-hero-stack{
    width:100% !important;
    height:350px !important;
    min-height:350px !important;
    margin:0 0 -8px !important;
  }
  .home-hero-v3 .robot-hero-frame{
    width:660px;
    max-width:none;
    height:350px;
    left:50%;
    transform:translateX(-50%);
  }
}

/* Visible angled 3D surface hero scene: lets the Spline robot hover over a grounded stage. */
.home-hero-v3{
  overflow:visible !important;
  isolation:isolate;
}

.home-hero-v3::before{
  content:"" !important;
  display:block !important;
  position:absolute !important;
  z-index:-2 !important;
  pointer-events:none !important;
  left:calc(50% - 50vw) !important;
  right:auto !important;
  top:-112px !important;
  bottom:-128px !important;
  width:100vw !important;
  min-width:100vw !important;
  height:auto !important;
  border-radius:0 !important;
  opacity:1 !important;
  transform:none !important;
  filter:none !important;
  background:
    linear-gradient(90deg,rgba(2,7,17,.94) 0%,rgba(2,7,17,.80) 32%,rgba(2,7,17,.18) 56%,rgba(2,7,17,.08) 100%),
    linear-gradient(180deg,rgba(2,7,17,.12) 0%,rgba(2,7,17,0) 42%,rgba(2,7,17,.04) 68%,#030914 99%),
    url("hero/angled-surface-hero-bg.png") 22% top / cover no-repeat !important;
}

.home-hero-v3::after{
  content:"" !important;
  display:block !important;
  position:absolute !important;
  z-index:-1 !important;
  pointer-events:none !important;
  left:0 !important;
  right:0 !important;
  bottom:-170px !important;
  height:360px !important;
  width:auto !important;
  border-radius:0 !important;
  opacity:1 !important;
  transform:none !important;
  background:
    linear-gradient(180deg,rgba(3,9,20,0) 0%,rgba(3,9,20,.64) 46%,#030914 80%,#020711 100%) !important;
}

.home-hero-v3 .hero-copy{
  text-shadow:0 8px 30px rgba(0,0,0,.62);
}

.home-hero-v3 .robot-hero-stack{
  position:relative;
}

.home-hero-v3 .robot-hero-stack::before{
  content:"";
  position:absolute;
  z-index:2;
  left:56%;
  bottom:106px;
  width:min(410px,58%);
  height:76px;
  transform:translateX(-50%);
  pointer-events:none;
  border-radius:50%;
  background:
    radial-gradient(ellipse at 50% 46%,rgba(255,224,160,.26),transparent 35%),
    radial-gradient(ellipse at 50% 58%,rgba(0,0,0,.46),transparent 72%);
  filter:blur(10px);
  opacity:.72;
}

.home-hero-v3 .robot-hero-stack::after{
  content:"";
  display:block !important;
  position:absolute;
  z-index:1;
  left:58%;
  bottom:54px;
  width:min(520px,68%);
  height:126px;
  transform:translateX(-50%) perspective(760px) rotateX(60deg);
  transform-origin:center center;
  pointer-events:none;
  border-radius:50%;
  background:
    radial-gradient(ellipse at 50% 42%,rgba(255,232,184,.26),rgba(219,172,100,.12) 25%,rgba(92,103,122,.14) 48%,rgba(7,12,22,.56) 78%),
    linear-gradient(180deg,rgba(255,215,146,.16),rgba(4,8,17,.62));
  box-shadow:
    inset 0 2px 0 rgba(255,221,166,.24),
    inset 0 -14px 26px rgba(0,0,0,.42),
    0 18px 50px rgba(0,0,0,.38),
    0 0 38px rgba(255,190,94,.10);
  opacity:.82;
}

@media(min-width:1121px){
  .home-hero-v3{
    grid-template-columns:minmax(410px,.42fr) minmax(560px,.58fr) !important;
    gap:0 !important;
    align-items:center !important;
    transform:none !important;
  }
  .home-hero-v3 .hero-copy{
    grid-column:1 !important;
    grid-row:1 !important;
    max-width:540px !important;
    z-index:5 !important;
    padding-right:18px !important;
  }
  .home-hero-v3 .robot-hero-stack{
    grid-column:2 !important;
    grid-row:1 !important;
    width:100% !important;
    min-height:610px !important;
    margin:0 !important;
    transform:none !important;
    overflow:hidden !important;
    z-index:3 !important;
  }
  .home-hero-v3 .robot-hero-frame{
    width:min(620px,100%) !important;
    height:560px !important;
    margin-top:-20px;
    transform:none !important;
  }
  .home-hero-v3 .robot-hero-spline{
    background:transparent !important;
  }
}

@media(max-width:1020px){
  .home-hero-v3::before{
    left:0 !important;
    right:0 !important;
    top:-96px !important;
    bottom:-118px !important;
    width:100vw !important;
    min-width:100vw !important;
    transform:none !important;
    background:
      linear-gradient(180deg,rgba(2,7,17,.26) 0%,rgba(2,7,17,.02) 42%,#030914 99%),
      linear-gradient(90deg,rgba(2,7,17,.88),rgba(2,7,17,.36),rgba(2,7,17,.18)),
      url("hero/angled-surface-hero-bg.png") 30% top / cover no-repeat !important;
  }
  .home-hero-v3::after{
    bottom:-144px !important;
    height:320px !important;
  }
}

@media(max-width:760px){
  .home-hero-v3::before{
    left:0 !important;
    right:0 !important;
    top:-88px !important;
    bottom:-90px !important;
    width:100vw !important;
    min-width:100vw !important;
    transform:none !important;
    background:
      linear-gradient(180deg,rgba(2,7,17,.34) 0%,rgba(2,7,17,.06) 40%,#030914 97%),
      linear-gradient(90deg,rgba(2,7,17,.82),rgba(2,7,17,.30),rgba(2,7,17,.22)),
      url("hero/angled-surface-hero-bg.png") 40% top / cover no-repeat !important;
  }
  .home-hero-v3 .robot-hero-stack::before{
    left:58%;
    bottom:50px;
    width:62%;
    height:60px;
  }
  .home-hero-v3 .robot-hero-stack::after{
    left:58%;
    bottom:20px;
    width:440px;
    max-width:76vw;
    height:108px;
  }
}

/* Final robot-stage alignment override: keep Spline contained and stage full-bleed. */
.home-hero-v3::before{
  left:calc(50% - 50vw) !important;
  right:auto !important;
  width:100vw !important;
  min-width:100vw !important;
  transform:none !important;
  background:
    linear-gradient(90deg,rgba(2,7,17,.94) 0%,rgba(2,7,17,.82) 32%,rgba(2,7,17,.24) 56%,rgba(2,7,17,.10) 100%),
    linear-gradient(180deg,rgba(2,7,17,.10) 0%,rgba(2,7,17,0) 42%,rgba(2,7,17,.04) 68%,#030914 99%),
    url("hero/angled-surface-hero-bg.png") 24% top / cover no-repeat !important;
}

.home-hero-v3::after{
  left:calc(50% - 50vw) !important;
  right:auto !important;
  width:100vw !important;
}

@media(min-width:1021px){
  .home-hero-v3{
    grid-template-columns:minmax(410px,.42fr) minmax(540px,.58fr) !important;
    align-items:center !important;
    gap:0 !important;
    transform:none !important;
  }
  .home-hero-v3 .hero-copy{
    grid-column:1 !important;
    grid-row:1 !important;
    max-width:540px !important;
    z-index:7 !important;
    padding-right:22px !important;
  }
  .home-hero-v3 .robot-hero-stack{
    grid-column:2 !important;
    grid-row:1 !important;
    justify-self:end !important;
    align-self:center !important;
    display:grid !important;
    place-items:center !important;
    width:min(640px,100%) !important;
    min-height:610px !important;
    height:610px !important;
    margin:0 !important;
    transform:none !important;
    overflow:hidden !important;
    contain:paint !important;
    z-index:3 !important;
  }
  .home-hero-v3 .robot-hero-frame{
    position:relative !important;
    width:min(590px,100%) !important;
    height:540px !important;
    margin:0 !important;
    transform:none !important;
    overflow:hidden !important;
    contain:paint !important;
    z-index:6 !important;
    background:transparent !important;
  }
  .home-hero-v3 .robot-hero-spline{
    position:relative !important;
    display:block !important;
    width:100% !important;
    height:100% !important;
    max-width:100% !important;
    overflow:hidden !important;
    contain:paint !important;
    background:transparent !important;
  }
  .home-hero-v3 .robot-hero-stack::before{
    left:58% !important;
    bottom:112px !important;
    width:min(350px,54%) !important;
    height:70px !important;
    opacity:.70 !important;
  }
  .home-hero-v3 .robot-hero-stack::after{
    left:60% !important;
    bottom:72px !important;
    width:min(430px,66%) !important;
    height:112px !important;
    opacity:.74 !important;
  }
}

@media(max-width:1020px){
  .home-hero-v3::before{
    left:calc(50% - 50vw) !important;
    right:auto !important;
    width:100vw !important;
    min-width:100vw !important;
    background:
      linear-gradient(180deg,rgba(2,7,17,.32) 0%,rgba(2,7,17,.06) 40%,#030914 97%),
      linear-gradient(90deg,rgba(2,7,17,.86),rgba(2,7,17,.34),rgba(2,7,17,.24)),
      url("hero/angled-surface-hero-bg.png") 36% top / cover no-repeat !important;
  }
  .home-hero-v3 .robot-hero-stack::before{
    left:60% !important;
    bottom:52px !important;
    width:54% !important;
    height:58px !important;
    opacity:.62 !important;
  }
  .home-hero-v3 .robot-hero-stack::after{
    left:60% !important;
    bottom:24px !important;
    width:360px !important;
    max-width:68vw !important;
    height:96px !important;
    opacity:.68 !important;
  }
}

/* Final polish: keep the copy as one block and keep the stage out from under it. */
.home-hero-v3 .hero-copy{
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-start !important;
}

.home-hero-v3::before{
  background:
    linear-gradient(90deg,#020711 0%,rgba(2,7,17,1) 45%,rgba(2,7,17,.90) 54%,rgba(2,7,17,.28) 68%,rgba(2,7,17,.10) 100%),
    linear-gradient(180deg,rgba(2,7,17,.10) 0%,rgba(2,7,17,0) 42%,rgba(2,7,17,.04) 68%,#030914 99%),
    url("hero/angled-surface-hero-bg.png") center top / cover no-repeat !important;
}

@media(min-width:1021px){
  .home-hero-v3 .hero-copy{
    display:flex !important;
    grid-column:1 !important;
    grid-row:1 !important;
    max-width:540px !important;
    z-index:8 !important;
  }
  .home-hero-v3 .robot-hero-stack::before{
    left:63% !important;
    bottom:114px !important;
    width:min(300px,48%) !important;
    height:58px !important;
  }
  .home-hero-v3 .robot-hero-stack::after{
    left:64% !important;
    bottom:76px !important;
    width:min(360px,58%) !important;
    height:92px !important;
  }
}

@media(max-width:1020px){
  .home-hero-v3 .hero-copy{
    display:flex !important;
    grid-column:1 !important;
    grid-row:1 !important;
    max-width:760px !important;
    z-index:8 !important;
  }
  .home-hero-v3 .robot-hero-stack{
    grid-column:1 !important;
    grid-row:2 !important;
  }
  .home-hero-v3::before{
    background:
      linear-gradient(180deg,rgba(2,7,17,.82) 0%,rgba(2,7,17,.60) 28%,rgba(2,7,17,.12) 58%,#030914 98%),
      linear-gradient(90deg,rgba(2,7,17,.90),rgba(2,7,17,.44),rgba(2,7,17,.20)),
      url("hero/angled-surface-hero-bg.png") 50% top / cover no-repeat !important;
  }
}

@media(max-width:760px){
  .home-hero-v3 .hero-copy,
  .home-hero-v3 h1,
  .home-hero-v3 .hero-subtitle,
  .home-hero-v3 .hero-body,
  .home-hero-v3 .hero-actions,
  .home-hero-v3 .hero-channel-strip{
    width:100% !important;
    max-width:calc(100vw - 32px) !important;
  }
  .home-hero-v3 .hero-actions{
    display:grid !important;
    grid-template-columns:1fr !important;
  }
  .home-hero-v3 .hero-channel-strip{
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:8px !important;
  }
  .home-hero-v3 .hero-channel-strip .channel-pill{
    min-width:0 !important;
    width:auto !important;
  }
  .home-hero-v3 .hero-body{
    max-width:360px !important;
    display:block !important;
    white-space:normal !important;
    overflow-wrap:break-word !important;
    word-break:normal !important;
    line-height:1.55 !important;
  }
}

/* Futuristic awards-stage hero: believable venue, dark copy side, bright front stage divider. */
.home-hero-v3{
  overflow:visible !important;
  isolation:isolate !important;
  background:#030914 !important;
}

.home-hero-v3::before{
  content:"" !important;
  display:block !important;
  position:absolute !important;
  pointer-events:none !important;
  left:calc(50% - 50vw) !important;
  right:auto !important;
  top:-118px !important;
  bottom:-8px !important;
  width:100vw !important;
  min-width:100vw !important;
  z-index:-3 !important;
  opacity:1 !important;
  transform:none !important;
  background:
    linear-gradient(90deg,#020711 0%,rgba(2,7,17,.98) 27%,rgba(2,7,17,.84) 43%,rgba(2,7,17,.20) 63%,rgba(2,7,17,.08) 100%),
    linear-gradient(180deg,rgba(2,7,17,.16) 0%,rgba(2,7,17,.05) 48%,rgba(2,7,17,0) 78%,rgba(2,7,17,.10) 100%),
    url("hero/futuristic-awards-stage-hero-bg.png") center top / cover no-repeat !important;
}

.home-hero-v3::after{
  content:"" !important;
  display:block !important;
  position:absolute !important;
  pointer-events:none !important;
  left:calc(50% - 50vw) !important;
  right:auto !important;
  bottom:-28px !important;
  width:100vw !important;
  height:150px !important;
  z-index:-2 !important;
  opacity:1 !important;
  transform:none !important;
  background:
    linear-gradient(180deg,rgba(3,9,20,0) 0%,rgba(3,9,20,.18) 28%,#030914 86%,#030914 100%) !important;
}

@media(min-width:1021px){
  .home-hero-v3 .robot-hero-stack{
    min-height:650px !important;
    height:650px !important;
    overflow:visible !important;
  }
  .home-hero-v3 .robot-hero-frame{
    height:570px !important;
    transform:translateY(84px) !important;
  }
  .home-hero-v3 .robot-hero-stack::before{
    left:60% !important;
    bottom:32px !important;
    width:min(330px,52%) !important;
    height:58px !important;
    z-index:4 !important;
    opacity:.86 !important;
    transform:translateX(-50%) !important;
    border-radius:50% !important;
    filter:blur(14px) !important;
    background:
      radial-gradient(ellipse at 50% 50%,rgba(0,0,0,.78),rgba(0,0,0,.40) 48%,transparent 78%),
      radial-gradient(ellipse at 52% 50%,rgba(255,211,126,.22),transparent 40%) !important;
  }
  .home-hero-v3 .robot-hero-stack::after{
    left:60% !important;
    bottom:14px !important;
    width:min(430px,64%) !important;
    height:96px !important;
    z-index:1 !important;
    opacity:.36 !important;
    transform:translateX(-50%) perspective(760px) rotateX(67deg) !important;
    background:radial-gradient(ellipse at 50% 42%,rgba(255,219,147,.26),rgba(12,16,24,.46) 70%,transparent 100%) !important;
    box-shadow:0 20px 55px rgba(0,0,0,.42) !important;
  }
}

@media(max-width:1020px){
  .home-hero-v3::before{
    top:-96px !important;
    bottom:-8px !important;
    background:
      linear-gradient(180deg,rgba(2,7,17,.28) 0%,rgba(2,7,17,.06) 46%,rgba(2,7,17,.20) 100%),
      linear-gradient(90deg,rgba(2,7,17,.92) 0%,rgba(2,7,17,.72) 38%,rgba(2,7,17,.22) 72%,rgba(2,7,17,.08) 100%),
      url("hero/futuristic-awards-stage-hero-bg.png") 44% top / cover no-repeat !important;
  }
  .home-hero-v3::after{
    bottom:-24px !important;
    height:130px !important;
  }
  .home-hero-v3 .robot-hero-stack{
    overflow:visible !important;
  }
  .home-hero-v3 .robot-hero-frame{
    transform:translateX(-50%) translateY(48px) !important;
  }
  .home-hero-v3 .robot-hero-stack::before{
    left:60% !important;
    bottom:10px !important;
    width:52% !important;
    height:50px !important;
    opacity:.80 !important;
    filter:blur(13px) !important;
    background:radial-gradient(ellipse at 50% 50%,rgba(0,0,0,.78),rgba(0,0,0,.34) 52%,transparent 78%) !important;
  }
  .home-hero-v3 .robot-hero-stack::after{
    left:60% !important;
    bottom:-4px !important;
    width:340px !important;
    max-width:66vw !important;
    height:84px !important;
    opacity:.34 !important;
    background:radial-gradient(ellipse at 50% 42%,rgba(255,218,148,.24),rgba(7,10,18,.42) 70%,transparent 100%) !important;
  }
}

/* Active demo engine layout: copy and visual belong together on desktop. */
@media(min-width:1021px){
  .demo-lab-section.demo-lab-v3{
    width:min(1180px,calc(100% - 64px)) !important;
    padding:64px 0 72px !important;
  }
  .demo-lab-section.demo-lab-v3 .demo-lab-copy{
    display:grid !important;
    grid-template-columns:minmax(0,1fr) minmax(360px,440px) !important;
    align-items:center !important;
    justify-content:space-between !important;
    column-gap:clamp(44px,5vw,76px) !important;
    width:100% !important;
  }
  .demo-lab-section.demo-lab-v3 .demo-lab-text{
    display:flex !important;
    flex-direction:column !important;
    align-items:flex-start !important;
    justify-content:center !important;
    max-width:560px !important;
  }
  .demo-lab-section.demo-lab-v3 .demo-lab-text h2{
    max-width:540px !important;
    margin-bottom:18px !important;
  }
  .demo-lab-section.demo-lab-v3 .demo-lab-text p{
    max-width:560px !important;
    margin-bottom:0 !important;
  }
  .demo-lab-section.demo-lab-v3 .demo-copy-cta{
    max-width:560px !important;
    margin-top:26px !important;
  }
  .demo-lab-section.demo-lab-v3 .private-demo-engine-visual{
    width:100% !important;
    max-width:440px !important;
    height:clamp(350px,28vw,390px) !important;
    margin:0 !important;
    justify-self:end !important;
    object-fit:cover !important;
    object-position:center center !important;
    border-radius:16px !important;
  }
}

@media(max-width:1020px){
  .demo-lab-section.demo-lab-v3 .demo-lab-text{
    display:contents !important;
  }
}

/* Absolute final desktop crop: reveal more futuristic stage floor under the hero. */
@media(min-width:1021px){
  .home-hero-v3::before{
    top:-118px !important;
    bottom:-8px !important;
    background:
      linear-gradient(90deg,#020711 0%,rgba(2,7,17,.98) 25%,rgba(2,7,17,.80) 41%,rgba(2,7,17,.16) 62%,rgba(2,7,17,.04) 100%),
      linear-gradient(180deg,rgba(2,7,17,.12) 0%,rgba(2,7,17,.02) 38%,rgba(2,7,17,0) 68%,rgba(2,7,17,.02) 100%),
      url("hero/futuristic-awards-stage-hero-bg.png") center -215px / auto 1120px no-repeat !important;
  }
  .home-hero-v3::after{
    display:block !important;
    height:84px !important;
    bottom:-24px !important;
    background:linear-gradient(180deg,rgba(3,9,20,0) 0%,rgba(3,9,20,.06) 34%,#030914 94%,#030914 100%) !important;
  }
}

/* Hard override: explicit layer sizing so desktop actually exposes the floor. */
@media(min-width:1021px){
  .home-hero-v3::before{
    background-image:
      linear-gradient(90deg,#020711 0%,rgba(2,7,17,.98) 25%,rgba(2,7,17,.80) 41%,rgba(2,7,17,.16) 62%,rgba(2,7,17,.04) 100%),
      linear-gradient(180deg,rgba(2,7,17,.12) 0%,rgba(2,7,17,.02) 38%,rgba(2,7,17,0) 68%,rgba(2,7,17,.02) 100%),
      url("hero/futuristic-awards-stage-hero-bg.png") !important;
    background-position:0 0,0 0,50% -255px !important;
    background-size:auto,auto,auto 1180px !important;
    background-repeat:repeat,repeat,no-repeat !important;
  }
}

/* Active hero backdrop: minimal textured wall with a clean surface for the robot. */
.home-hero-v3{
  overflow:visible !important;
  isolation:isolate !important;
  background:#030914 !important;
}

.home-hero-v3::before{
  content:"" !important;
  display:block !important;
  position:absolute !important;
  pointer-events:none !important;
  left:calc(50% - 50vw) !important;
  right:auto !important;
  top:-118px !important;
  bottom:-8px !important;
  width:100vw !important;
  min-width:100vw !important;
  z-index:-3 !important;
  opacity:1 !important;
  transform:none !important;
  background-image:
    linear-gradient(90deg,#020711 0%,rgba(2,7,17,.99) 30%,rgba(2,7,17,.78) 45%,rgba(2,7,17,.20) 68%,rgba(2,7,17,.08) 100%),
    linear-gradient(180deg,rgba(2,7,17,.04) 0%,rgba(2,7,17,0) 56%,rgba(2,7,17,.08) 100%),
    url("hero/minimal-textured-surface-hero-bg.png") !important;
  background-position:0 0,0 0,center bottom !important;
  background-size:auto,auto,cover !important;
  background-repeat:repeat,repeat,no-repeat !important;
}

.home-hero-v3::after{
  content:"" !important;
  display:block !important;
  position:absolute !important;
  pointer-events:none !important;
  left:calc(50% - 50vw) !important;
  right:auto !important;
  bottom:-30px !important;
  width:100vw !important;
  height:132px !important;
  z-index:-2 !important;
  opacity:1 !important;
  transform:none !important;
  background:linear-gradient(180deg,rgba(3,9,20,0) 0%,rgba(3,9,20,.28) 36%,#030914 90%,#030914 100%) !important;
}

@media(min-width:1021px){
  .home-hero-v3 .robot-hero-stack{
    min-height:650px !important;
    height:650px !important;
    overflow:visible !important;
  }
  .home-hero-v3 .robot-hero-frame{
    height:570px !important;
    transform:translateY(84px) !important;
  }
  .home-hero-v3 .robot-hero-stack::before{
    left:60% !important;
    bottom:34px !important;
    width:min(340px,54%) !important;
    height:58px !important;
    z-index:4 !important;
    opacity:.88 !important;
    transform:translateX(-50%) !important;
    border-radius:50% !important;
    filter:blur(14px) !important;
    background:
      radial-gradient(ellipse at 50% 50%,rgba(0,0,0,.78),rgba(0,0,0,.42) 48%,transparent 80%),
      radial-gradient(ellipse at 52% 50%,rgba(255,211,126,.22),transparent 40%) !important;
  }
  .home-hero-v3 .robot-hero-stack::after{
    left:60% !important;
    bottom:12px !important;
    width:min(440px,66%) !important;
    height:98px !important;
    z-index:1 !important;
    opacity:.38 !important;
    transform:translateX(-50%) perspective(760px) rotateX(67deg) !important;
    background:radial-gradient(ellipse at 50% 42%,rgba(255,219,147,.28),rgba(12,16,24,.48) 70%,transparent 100%) !important;
    box-shadow:0 20px 55px rgba(0,0,0,.42) !important;
  }
}

@media(max-width:1020px){
  .home-hero-v3::before{
    top:-96px !important;
    bottom:-8px !important;
    background-image:
      linear-gradient(180deg,rgba(2,7,17,.20) 0%,rgba(2,7,17,.05) 48%,rgba(2,7,17,.22) 100%),
      linear-gradient(90deg,rgba(2,7,17,.94) 0%,rgba(2,7,17,.70) 40%,rgba(2,7,17,.20) 78%,rgba(2,7,17,.08) 100%),
      url("hero/minimal-textured-surface-hero-bg.png") !important;
    background-position:0 0,0 0,48% bottom !important;
    background-size:auto,auto,cover !important;
    background-repeat:repeat,repeat,no-repeat !important;
  }
  .home-hero-v3::after{
    display:block !important;
    bottom:-24px !important;
    height:126px !important;
  }
  .home-hero-v3 .robot-hero-stack{
    overflow:visible !important;
  }
  .home-hero-v3 .robot-hero-frame{
    transform:translateX(-50%) translateY(48px) !important;
  }
  .home-hero-v3 .robot-hero-stack::before{
    left:60% !important;
    bottom:10px !important;
    width:52% !important;
    height:50px !important;
    opacity:.80 !important;
    filter:blur(13px) !important;
    background:radial-gradient(ellipse at 50% 50%,rgba(0,0,0,.78),rgba(0,0,0,.34) 52%,transparent 78%) !important;
  }
  .home-hero-v3 .robot-hero-stack::after{
    left:60% !important;
    bottom:-4px !important;
    width:340px !important;
    max-width:66vw !important;
    height:84px !important;
    opacity:.34 !important;
    background:radial-gradient(ellipse at 50% 42%,rgba(255,218,148,.24),rgba(7,10,18,.42) 70%,transparent 100%) !important;
  }
}

/* Desktop floor reveal: lift the set image so the reflective stage plane is visible. */
@media(min-width:1021px){
  .home-hero-v3::before{
    background:
      linear-gradient(90deg,#020711 0%,rgba(2,7,17,.98) 25%,rgba(2,7,17,.80) 41%,rgba(2,7,17,.16) 62%,rgba(2,7,17,.04) 100%),
      linear-gradient(180deg,rgba(2,7,17,.12) 0%,rgba(2,7,17,.02) 43%,rgba(2,7,17,0) 72%,rgba(2,7,17,.02) 100%),
      url("hero/futuristic-awards-stage-hero-bg.png") center -155px / cover no-repeat !important;
  }
  .home-hero-v3::after{
    height:104px !important;
    bottom:-26px !important;
    background:linear-gradient(180deg,rgba(3,9,20,0) 0%,rgba(3,9,20,.08) 34%,#030914 92%,#030914 100%) !important;
  }
}

/* Minimal dark stage hero: code-built backdrop so the robot can sit lower and read as grounded. */
.home-hero-v3{
  overflow:visible !important;
  isolation:isolate !important;
  background:#030914 !important;
}

.home-hero-v3::before{
  left:calc(50% - 50vw) !important;
  right:auto !important;
  top:-116px !important;
  bottom:-24px !important;
  width:100vw !important;
  min-width:100vw !important;
  z-index:-3 !important;
  opacity:1 !important;
  background:
    linear-gradient(90deg,#020711 0%,#020711 40%,rgba(3,9,20,.94) 52%,rgba(7,12,21,.68) 72%,rgba(13,17,26,.84) 100%),
    radial-gradient(ellipse at 72% 86%,rgba(255,215,138,.46) 0%,rgba(255,215,138,.22) 22%,rgba(255,215,138,.06) 48%,transparent 72%),
    radial-gradient(ellipse at 77% 98%,rgba(255,246,214,.18) 0%,rgba(255,246,214,.06) 40%,transparent 68%),
    radial-gradient(ellipse at 82% 24%,rgba(108,119,145,.18) 0%,rgba(39,50,72,.10) 32%,transparent 58%),
    linear-gradient(180deg,#040a13 0%,#040a13 48%,#080d17 66%,#17191e 100%) !important;
}

.home-hero-v3::after{
  display:none !important;
}

@media(min-width:1021px){
  .home-hero-v3 .robot-hero-stack{
    min-height:630px !important;
    height:630px !important;
    overflow:visible !important;
  }
  .home-hero-v3 .robot-hero-frame{
    height:560px !important;
    transform:translateY(70px) !important;
  }
  .home-hero-v3 .robot-hero-stack::before{
    left:61% !important;
    bottom:52px !important;
    width:min(290px,46%) !important;
    height:52px !important;
    z-index:4 !important;
    opacity:.78 !important;
    background:
      radial-gradient(ellipse at 50% 50%,rgba(0,0,0,.72),rgba(0,0,0,.34) 45%,transparent 74%),
      radial-gradient(ellipse at 50% 48%,rgba(255,210,122,.20),transparent 38%) !important;
    filter:blur(13px) !important;
  }
  .home-hero-v3 .robot-hero-stack::after{
    left:61% !important;
    bottom:34px !important;
    width:min(390px,58%) !important;
    height:104px !important;
    z-index:1 !important;
    opacity:.44 !important;
    transform:translateX(-50%) perspective(760px) rotateX(66deg) !important;
    background:
      radial-gradient(ellipse at 50% 40%,rgba(255,218,148,.28),rgba(112,91,55,.10) 28%,rgba(7,10,18,.46) 75%,transparent 100%) !important;
    box-shadow:inset 0 1px 0 rgba(255,232,183,.16),0 28px 58px rgba(0,0,0,.42) !important;
  }
}

@media(max-width:1020px){
  .home-hero-v3::before{
    top:-96px !important;
    bottom:-18px !important;
    background:
      linear-gradient(90deg,#020711 0%,rgba(2,7,17,.94) 46%,rgba(6,11,20,.72) 72%,rgba(13,17,25,.84) 100%),
      radial-gradient(ellipse at 75% 90%,rgba(255,215,138,.40) 0%,rgba(255,215,138,.16) 30%,transparent 70%),
      linear-gradient(180deg,#020711 0%,#030914 54%,#15171d 100%) !important;
  }
  .home-hero-v3::after{
    display:none !important;
  }
  .home-hero-v3 .robot-hero-stack{
    margin-top:0 !important;
    overflow:visible !important;
  }
  .home-hero-v3 .robot-hero-frame{
    transform:translateX(-50%) translateY(40px) !important;
  }
  .home-hero-v3 .robot-hero-stack::before{
    left:60% !important;
    bottom:18px !important;
    width:48% !important;
    height:46px !important;
    opacity:.72 !important;
    filter:blur(12px) !important;
    background:radial-gradient(ellipse at 50% 50%,rgba(0,0,0,.70),rgba(0,0,0,.30) 48%,transparent 76%) !important;
  }
  .home-hero-v3 .robot-hero-stack::after{
    left:60% !important;
    bottom:0 !important;
    width:330px !important;
    max-width:64vw !important;
    height:86px !important;
    opacity:.36 !important;
    background:radial-gradient(ellipse at 50% 42%,rgba(255,218,148,.24),rgba(7,10,18,.42) 70%,transparent 100%) !important;
  }
}

/* Final active hero set: futuristic awards venue with robot contact shadow. */
.home-hero-v3::before{
  content:"" !important;
  display:block !important;
  position:absolute !important;
  pointer-events:none !important;
  left:calc(50% - 50vw) !important;
  right:auto !important;
  top:-118px !important;
  bottom:-8px !important;
  width:100vw !important;
  min-width:100vw !important;
  z-index:-3 !important;
  opacity:1 !important;
  transform:none !important;
  background:
    linear-gradient(90deg,#020711 0%,rgba(2,7,17,.98) 27%,rgba(2,7,17,.84) 43%,rgba(2,7,17,.20) 63%,rgba(2,7,17,.08) 100%),
    linear-gradient(180deg,rgba(2,7,17,.16) 0%,rgba(2,7,17,.05) 48%,rgba(2,7,17,0) 78%,rgba(2,7,17,.10) 100%),
    url("hero/futuristic-awards-stage-hero-bg.png") center top / cover no-repeat !important;
}

.home-hero-v3::after{
  content:"" !important;
  display:block !important;
  position:absolute !important;
  pointer-events:none !important;
  left:calc(50% - 50vw) !important;
  right:auto !important;
  bottom:-28px !important;
  width:100vw !important;
  height:150px !important;
  z-index:-2 !important;
  opacity:1 !important;
  transform:none !important;
  background:linear-gradient(180deg,rgba(3,9,20,0) 0%,rgba(3,9,20,.18) 28%,#030914 86%,#030914 100%) !important;
}

@media(min-width:1021px){
  .home-hero-v3 .robot-hero-stack{
    min-height:650px !important;
    height:650px !important;
    overflow:visible !important;
  }
  .home-hero-v3 .robot-hero-frame{
    height:570px !important;
    transform:translateY(84px) !important;
  }
  .home-hero-v3 .robot-hero-stack::before{
    left:60% !important;
    bottom:32px !important;
    width:min(330px,52%) !important;
    height:58px !important;
    z-index:4 !important;
    opacity:.86 !important;
    transform:translateX(-50%) !important;
    border-radius:50% !important;
    filter:blur(14px) !important;
    background:
      radial-gradient(ellipse at 50% 50%,rgba(0,0,0,.78),rgba(0,0,0,.40) 48%,transparent 78%),
      radial-gradient(ellipse at 52% 50%,rgba(255,211,126,.22),transparent 40%) !important;
  }
  .home-hero-v3 .robot-hero-stack::after{
    left:60% !important;
    bottom:14px !important;
    width:min(430px,64%) !important;
    height:96px !important;
    z-index:1 !important;
    opacity:.36 !important;
    transform:translateX(-50%) perspective(760px) rotateX(67deg) !important;
    background:radial-gradient(ellipse at 50% 42%,rgba(255,219,147,.26),rgba(12,16,24,.46) 70%,transparent 100%) !important;
    box-shadow:0 20px 55px rgba(0,0,0,.42) !important;
  }
}

@media(max-width:1020px){
  .home-hero-v3::before{
    top:-96px !important;
    bottom:-8px !important;
    background:
      linear-gradient(180deg,rgba(2,7,17,.28) 0%,rgba(2,7,17,.06) 46%,rgba(2,7,17,.20) 100%),
      linear-gradient(90deg,rgba(2,7,17,.92) 0%,rgba(2,7,17,.72) 38%,rgba(2,7,17,.22) 72%,rgba(2,7,17,.08) 100%),
      url("hero/futuristic-awards-stage-hero-bg.png") 44% top / cover no-repeat !important;
  }
  .home-hero-v3::after{
    display:block !important;
    bottom:-24px !important;
    height:130px !important;
  }
  .home-hero-v3 .robot-hero-stack{
    overflow:visible !important;
  }
  .home-hero-v3 .robot-hero-frame{
    transform:translateX(-50%) translateY(48px) !important;
  }
  .home-hero-v3 .robot-hero-stack::before{
    left:60% !important;
    bottom:10px !important;
    width:52% !important;
    height:50px !important;
    opacity:.80 !important;
    filter:blur(13px) !important;
    background:radial-gradient(ellipse at 50% 50%,rgba(0,0,0,.78),rgba(0,0,0,.34) 52%,transparent 78%) !important;
  }
  .home-hero-v3 .robot-hero-stack::after{
    left:60% !important;
    bottom:-4px !important;
    width:340px !important;
    max-width:66vw !important;
    height:84px !important;
    opacity:.34 !important;
    background:radial-gradient(ellipse at 50% 42%,rgba(255,218,148,.24),rgba(7,10,18,.42) 70%,transparent 100%) !important;
  }
}
