:root{
  --bg:#070a14;
  --bg2:#0b1020;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --border:rgba(255,255,255,.12);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.68);
  --muted2:rgba(255,255,255,.58);
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --shadow2: 0 10px 30px rgba(0,0,0,.35);
  --grad: linear-gradient(135deg, #7c3aed 0%, #22d3ee 45%, #a3ff5e 100%);
  --grad2: linear-gradient(135deg, rgba(124,58,237,.35), rgba(34,211,238,.25), rgba(163,255,94,.18));
  --r: 18px;
  --r2: 22px;
  --container: 1120px;
  --tileFloat: 6px;
}

*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 800px at 15% 10%, rgba(124,58,237,.28), transparent 60%),
    radial-gradient(900px 700px at 85% 25%, rgba(34,211,238,.22), transparent 55%),
    radial-gradient(900px 700px at 65% 85%, rgba(163,255,94,.13), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  overflow-x:hidden;
}

a{color:inherit}
img{max-width:100%;display:block}

.container{
  width:min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:12px;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  color:#000;
  z-index:9999;
}
.skip-link:focus{left:12px}

.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(8,10,20,.55);
  border-bottom:1px solid rgba(255,255,255,.07);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}
.brand__mark{
  width:34px;height:34px;border-radius:12px;
  background: var(--grad);
  box-shadow: 0 10px 25px rgba(124,58,237,.18), 0 10px 25px rgba(34,211,238,.12);
  position:relative;
  overflow:hidden;
}
.brand__mark::after{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.45), transparent 55%);
  transform: rotate(18deg);
}
.brand__text{
  font-weight:800;
  letter-spacing:.3px;
}
.brand--footer .brand__mark{width:28px;height:28px;border-radius:10px}

.nav{display:flex;align-items:center;gap:14px}
.nav__toggle{
  display:none;
  width:42px;height:42px;border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color:var(--text);
  cursor:pointer;
}
.nav__toggleBars{
  display:block;
  width:18px; height:2px;
  background:rgba(255,255,255,.85);
  margin:0 auto;
  position:relative;
}
.nav__toggleBars::before,
.nav__toggleBars::after{
  content:"";
  position:absolute; left:0;
  width:18px;height:2px;
  background:rgba(255,255,255,.85);
}
.nav__toggleBars::before{top:-6px}
.nav__toggleBars::after{top:6px}

.nav__panel{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav__link{
  text-decoration:none;
  color:rgba(255,255,255,.78);
  font-weight:650;
  font-size:14px;
  letter-spacing:.2px;
  padding:8px 10px;
  border-radius:999px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav__link:hover{
  color:rgba(255,255,255,.95);
  background: rgba(255,255,255,.06);
  transform: translateY(-1px);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:999px;
  padding:12px 16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color:var(--text);
  text-decoration:none;
  font-weight:750;
  letter-spacing:.2px;
  box-shadow: 0 10px 25px rgba(0,0,0,.22);
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  cursor:pointer;
}
.btn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
  box-shadow: var(--shadow2);
}
.btn--primary{
  background: linear-gradient(135deg, rgba(124,58,237,.95), rgba(34,211,238,.92));
  border-color: rgba(255,255,255,.08);
}
.btn--primary:hover{
  background: linear-gradient(135deg, rgba(124,58,237,1), rgba(34,211,238,1));
}
.btn--ghost{
  background: transparent;
  border-color: rgba(255,255,255,.18);
}
.btn--sm{padding:10px 14px;font-size:14px}
.btn--block{width:100%}

.hero{
  padding:64px 0 22px;
  position:relative;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:34px;
  align-items:center;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.8);
  font-weight:650;
  letter-spacing:.2px;
  margin:0 0 16px;
  width:fit-content;
}
.pill__dot{
  width:10px;height:10px;border-radius:999px;
  background: var(--grad);
  box-shadow: 0 0 0 4px rgba(124,58,237,.14);
}

.hero__title{
  font-size: clamp(36px, 3.9vw, 56px);
  line-height: 1.03;
  margin:0 0 14px;
  letter-spacing:-.8px;
}
.gradientText{
  background: var(--grad);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero__subtitle{
  margin:0 0 22px;
  color:var(--muted);
  font-size: clamp(15px, 1.45vw, 18px);
  line-height:1.55;
  max-width: 56ch;
}
.hero__actions{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:26px}

.hero__stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}
.stat{
  padding:14px 14px;
  border-radius: var(--r);
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
}
.stat__value{
  font-weight:850;
  font-size:14px;
  letter-spacing:.2px;
}
.stat__label{
  margin-top:6px;
  color:var(--muted2);
  font-size:13px;
  line-height:1.35;
}

.hero__visual{position:relative;min-height:420px}
.orb{
  position:absolute;
  width:280px;height:280px;border-radius:999px;
  filter: blur(18px);
  opacity:.9;
}
.orb--a{left:0;top:40px;background: rgba(124,58,237,.28)}
.orb--b{right:0;top:0;background: rgba(34,211,238,.23)}
.noise{
  position:absolute; inset:-40px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.33'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity:.08;
  pointer-events:none;
}

.card3d{
  position:absolute;
  inset: 40px 20px 20px 20px;
  display:grid;
  place-items:center;
}
.card3d__inner{
  width:min(430px, 100%);
  aspect-ratio: 4 / 3;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  position:relative;
  padding:18px;
  transform-style:preserve-3d;
}
.card3d__inner::before{
  content:"";
  position:absolute; inset:-1px;
  border-radius: 26px;
  background: var(--grad2);
  opacity:.7;
  filter: blur(14px);
  z-index:-1;
}
.card3d__top{
  display:flex;align-items:center;justify-content:space-between;
  padding:6px 4px 12px;
}
.spark{
  width:14px;height:14px;border-radius:5px;background:var(--grad);
  box-shadow: 0 0 0 6px rgba(124,58,237,.12);
}
.miniLogo{
  font-weight:900;
  letter-spacing:.8px;
  background: rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.12);
  padding:6px 10px;
  border-radius: 999px;
}
.chip{
  width:46px;height:34px;border-radius:10px;
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.16);
}
.card3d__mid{display:grid;gap:10px;margin:6px 0 16px}
.meter{
  height:12px;border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  overflow:hidden;
}
.meter__bar{
  height:100%;
  width: var(--w, 70%);
  background: linear-gradient(90deg, rgba(124,58,237,.95), rgba(34,211,238,.9));
  border-right:1px solid rgba(255,255,255,.22);
}
.meter__bar--alt{
  background: linear-gradient(90deg, rgba(34,211,238,.95), rgba(163,255,94,.85));
}
.meter__bar--soft{
  background: linear-gradient(90deg, rgba(163,255,94,.85), rgba(255,255,255,.55));
}
.card3d__bottom{display:flex;gap:10px;flex-wrap:wrap}
.tag{
  padding:9px 10px;
  border-radius: 999px;
  background: rgba(124,58,237,.16);
  border:1px solid rgba(124,58,237,.22);
  font-weight:750;
  font-size:13px;
}
.tag--alt{background: rgba(34,211,238,.14); border-color: rgba(34,211,238,.22)}
.tag--soft{background: rgba(163,255,94,.12); border-color: rgba(163,255,94,.2)}

.statsBar{
  padding: 18px 0 10px;
}
.statsBar__inner{
  border-radius: 22px;
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
  padding: 18px 18px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  position:relative;
  overflow:hidden;
}
.statsBar__inner::before{
  content:"";
  position:absolute;
  inset:-80px -40px auto -40px;
  height:200px;
  background: var(--grad2);
  opacity:.25;
  filter: blur(28px);
}
.kpi{
  padding: 12px 10px;
  border-radius: 18px;
  background: rgba(0,0,0,.16);
  border:1px solid rgba(255,255,255,.10);
  text-align:center;
  position:relative;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.kpi:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.16);
  background: rgba(0,0,0,.22);
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
}
.kpi__value{
  font-weight: 950;
  letter-spacing: .2px;
  font-size: clamp(20px, 2.2vw, 30px);
  background: linear-gradient(180deg, rgba(255,214,102,1), rgba(255,214,102,.75));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.kpi__label{
  margin-top: 6px;
  font-weight: 850;
  font-size: 12px;
  letter-spacing: .35px;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}

.section{padding:70px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:24px;
}
.section__title{
  margin:0;
  font-size: clamp(26px, 2.4vw, 36px);
  letter-spacing:-.5px;
}
.section__subtitle{
  margin:0;
  color:var(--muted);
  max-width: 60ch;
  line-height:1.55;
}

.cards{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:16px;
}
.card{
  border-radius: var(--r2);
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
  padding:18px;
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
  position:relative;
  overflow:hidden;
  transform: translateZ(0);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.card::before{
  content:"";
  position:absolute;
  inset:-60px -40px auto -40px;
  height:160px;
  background: var(--grad2);
  opacity:.55;
  filter: blur(22px);
}
.card::after{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(closest-side, rgba(255,255,255,.18), transparent 60%),
    linear-gradient(120deg, transparent 35%, rgba(255,255,255,.10) 50%, transparent 65%);
  transform: translateX(-20%) rotate(10deg);
  opacity:.0;
  pointer-events:none;
}
.card:hover{
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  background: rgba(255,255,255,.05);
}
.card:hover::after{
  opacity:.9;
  animation: sheen 1.25s ease both;
}
.card__badge{
  position:absolute;
  top:14px; right:14px;
  font-size:12px;
  font-weight:850;
  letter-spacing:.3px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
}
.card__icon{
  width:44px;height:44px;border-radius:14px;
  display:grid;place-items:center;
  font-weight:900;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  margin-bottom:12px;
  position:relative;
}
.iconImg{
  width:28px;height:28px;
  display:block;
}
.card__title{margin:0 0 8px;font-size:18px;letter-spacing:-.2px}
.card__text{margin:0 0 12px;color:var(--muted);line-height:1.55}
.list{margin:0;padding-left:18px;color:rgba(255,255,255,.78);line-height:1.7}
.card--featured{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.035));
  border-color: rgba(255,255,255,.16);
}

.strip{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
}
.strip__item{
  border-radius: var(--r);
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.09);
  padding:14px;
}
.strip__kicker{font-weight:850;font-size:12px;letter-spacing:.4px;color:rgba(255,255,255,.82);text-transform:uppercase}
.strip__text{margin-top:6px;color:var(--muted);line-height:1.4}

.logoStrip{
  margin-top:14px;
  border-radius: var(--r2);
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  padding:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.logoStrip__label{
  font-weight:850;
  color:rgba(255,255,255,.78);
  letter-spacing:.2px;
  white-space:nowrap;
}
.logoStrip__logos{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.logo{
  padding:10px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.72);
  font-weight:850;
  font-size:13px;
}

.workGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:16px;
}
.workGrid--dense{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.work{
  padding:16px;
  border-radius: var(--r2);
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.1);
  box-shadow: 0 10px 25px rgba(0,0,0,.14);
  position:relative;
  overflow:hidden;
  transform: translateZ(0);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.work::after{
  content:"";
  position:absolute;
  inset:-35%;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.10) 50%, transparent 65%);
  transform: translateX(-30%) rotate(10deg);
  opacity:0;
  pointer-events:none;
}
.work:hover{
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 18px 50px rgba(0,0,0,.26);
  background: rgba(255,255,255,.04);
}
.work:hover::after{
  opacity:.9;
  animation: sheen 1.25s ease both;
}
.work__thumb{
  border-radius: 18px;
  height:160px;
  background:
    radial-gradient(140px 140px at 20% 20%, rgba(124,58,237,.55), transparent 70%),
    radial-gradient(220px 180px at 80% 30%, rgba(34,211,238,.45), transparent 65%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.12);
  overflow:hidden;
  position:relative;
}
.thumbImg{
  position:absolute;
  inset:-2px;
  width:calc(100% + 4px);
  height:calc(100% + 4px);
  object-fit:cover;
  opacity:.95;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.02);
}
.work__thumb--b{
  background:
    radial-gradient(220px 180px at 20% 30%, rgba(34,211,238,.55), transparent 68%),
    radial-gradient(220px 180px at 80% 30%, rgba(163,255,94,.28), transparent 65%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}
.work__thumb--c{
  background:
    radial-gradient(220px 180px at 25% 25%, rgba(163,255,94,.32), transparent 70%),
    radial-gradient(220px 180px at 80% 30%, rgba(124,58,237,.42), transparent 65%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}
.work__thumbInner{
  position:absolute; inset:0;
  padding:14px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.work__label{
  width:fit-content;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.14);
  font-weight:800;
  font-size:12px;
  letter-spacing:.3px;
}
.work__metric{
  width:fit-content;
  padding:10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.14);
  font-weight:900;
  letter-spacing:.2px;
}
.work__title{margin:14px 0 6px;font-size:17px;letter-spacing:-.2px}
.work__text{margin:0;color:var(--muted);line-height:1.55}

.diffGrid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:14px;
}
.diff{
  border-radius: var(--r2);
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.1);
  padding:16px;
  position:relative;
  overflow:hidden;
  transform: translateZ(0);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.diff::before{
  content:"";
  position:absolute;
  inset:-60px -60px auto -60px;
  height:170px;
  background: var(--grad2);
  opacity:.42;
  filter: blur(22px);
}
.diff__icon{
  width:44px;height:44px;border-radius:14px;
  display:grid;place-items:center;
  font-weight:900;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  margin-bottom:10px;
  position:relative;
}
.diff__title{margin:0 0 8px;font-size:16px;letter-spacing:-.2px;position:relative}
.diff__text{margin:0;color:var(--muted);line-height:1.55;position:relative}
.diff:hover{
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}

.solutionGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:16px;
}
.solution{
  border-radius: var(--r2);
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.1);
  padding:18px;
  box-shadow: 0 10px 25px rgba(0,0,0,.12);
  position:relative;
  overflow:hidden;
  transform: translateZ(0);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.solution::before{
  content:"";
  position:absolute;
  inset:-80px -60px auto -60px;
  height:180px;
  background: var(--grad2);
  opacity:.32;
  filter: blur(24px);
}
.solution--featured{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border-color: rgba(255,255,255,.16);
}
.solution__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
  position:relative;
}
.solution__title{margin:0;font-size:18px;letter-spacing:-.2px}
.solution__pill{
  padding:8px 10px;
  border-radius:999px;
  background: rgba(124,58,237,.16);
  border:1px solid rgba(124,58,237,.22);
  font-weight:850;
  font-size:12px;
  letter-spacing:.3px;
}
.solution__pill--alt{background: rgba(34,211,238,.14); border-color: rgba(34,211,238,.22)}
.solution__pill--soft{background: rgba(163,255,94,.12); border-color: rgba(163,255,94,.2)}
.solution:hover{
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
  background: rgba(255,255,255,.04);
}

.packageGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:16px;
}
.package{
  border-radius: var(--r2);
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.1);
  padding:18px;
  position:relative;
  overflow:hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.12);
  transform: translateZ(0);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.package::before{
  content:"";
  position:absolute;
  inset:-70px -60px auto -60px;
  height:170px;
  background: var(--grad2);
  opacity:.28;
  filter: blur(26px);
}
.package--featured{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border-color: rgba(255,255,255,.16);
}
.package__badge{
  position:absolute;
  top:14px; right:14px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.25px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
}
.package__title{margin:0 0 8px;font-size:18px;letter-spacing:-.2px;position:relative}
.package__text{margin:0 0 12px;color:var(--muted);line-height:1.55;position:relative}
.package:hover{
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
  background: rgba(255,255,255,.04);
}

@keyframes floaty{
  0%{ transform: translateY(0) }
  50%{ transform: translateY(calc(-1 * var(--tileFloat))) }
  100%{ transform: translateY(0) }
}
@keyframes sheen{
  0%{ transform: translateX(-35%) rotate(10deg); opacity:.0 }
  30%{ opacity:.9 }
  100%{ transform: translateX(35%) rotate(10deg); opacity:0 }
}

/* Subtle continuous motion (desktop only) */
@media (hover:hover) and (pointer:fine){
  .card[data-reveal].is-in,
  .diff[data-reveal].is-in,
  .solution[data-reveal].is-in,
  .package[data-reveal].is-in,
  .work[data-reveal].is-in{
    animation: floaty 6.5s ease-in-out infinite;
  }
  .diff[data-reveal].is-in{ animation-duration: 7.2s }
  .solution[data-reveal].is-in{ animation-duration: 7.8s }
  .package[data-reveal].is-in{ animation-duration: 8.2s }
  .work[data-reveal].is-in{ animation-duration: 7.0s }
}

.ticks{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
  color:rgba(255,255,255,.78);
  position:relative;
}
.ticks li{
  padding-left:26px;
  position:relative;
  line-height:1.45;
}
.ticks li::before{
  content:"";
  position:absolute;
  left:0; top:.25em;
  width:16px;height:16px;border-radius:6px;
  background: rgba(34,211,238,.18);
  border:1px solid rgba(34,211,238,.28);
  box-shadow: 0 6px 18px rgba(34,211,238,.08);
}
.ticks li::after{
  content:"✓";
  position:absolute;
  left:4px; top:.15em;
  font-weight:950;
  font-size:12px;
  color: rgba(255,255,255,.85);
}

.fab{
  position:fixed;
  right:16px;
  bottom:16px;
  display:grid;
  gap:10px;
  z-index:60;
}
.fab__btn{
  width:52px;height:52px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 14px 35px rgba(0,0,0,.35);
  transform: translateZ(0);
  transition: transform .2s ease, filter .2s ease;
}
.fab__btn:hover{transform: translateY(-2px)}
.fab__btn--wa{
  background: linear-gradient(135deg, rgba(34,211,238,.95), rgba(163,255,94,.8));
}
.fab__btn--call{
  background: linear-gradient(135deg, rgba(124,58,237,.92), rgba(255,255,255,.25));
}
.fab__icon{
  font-weight:950;
  letter-spacing:.4px;
  color: rgba(0,0,0,.85);
  mix-blend-mode: screen;
}
.fab__img{
  width:26px;
  height:26px;
  display:block;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.28));
}
.fab__btn--call .fab__icon{
  color: rgba(255,255,255,.92);
  mix-blend-mode: normal;
}

[data-reveal]{
  opacity:0;
  transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].is-in{
  opacity:1;
  transform: translateY(0);
}

.steps{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:14px;
}
.step{
  border-radius: var(--r2);
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.1);
  padding:16px;
}
.step__num{
  font-weight:950;
  letter-spacing:.5px;
  color:rgba(255,255,255,.72);
  font-size:12px;
}
.step__title{margin:10px 0 8px;font-size:16px}
.step__text{margin:0;color:var(--muted);line-height:1.55}

.quotes{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
}
.quote{
  margin:0;
  border-radius: var(--r2);
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.1);
  padding:16px;
}
.quote__text{
  margin:0;
  color:rgba(255,255,255,.84);
  line-height:1.6;
  font-weight:600;
}
.quote__meta{
  margin-top:12px;
  display:flex;
  flex-direction:column;
  gap:2px;
  color:var(--muted2);
}
.quote__name{font-weight:900;color:rgba(255,255,255,.86)}
.quote__role{font-size:13px}

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:stretch;
}
.contact__left{
  border-radius: var(--r2);
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.1);
  padding:20px;
}
.contact__title{margin:0 0 10px;font-size:28px;letter-spacing:-.4px}
.contact__text{margin:0 0 14px;color:var(--muted);line-height:1.6}
.contact__chips{display:flex;flex-wrap:wrap;gap:8px;margin:10px 0 18px}
.chipPill{
  padding:9px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  font-weight:750;
  font-size:13px;
}
.contact__details{display:grid;gap:10px}
.detail{
  display:flex;justify-content:space-between;gap:12px;
  padding:12px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
}
.detail__k{color:var(--muted2);font-weight:800}
.detail__v a{color:rgba(255,255,255,.9);text-decoration:none}
.detail__v a:hover{text-decoration:underline}

.form{
  border-radius: var(--r2);
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
  padding:20px;
  box-shadow: 0 10px 25px rgba(0,0,0,.12);
}
.form__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.field{display:grid;gap:7px;margin-bottom:12px}
.field__label{font-weight:850;font-size:13px;color:rgba(255,255,255,.82)}
.field__input{
  width:100%;
  border-radius: 16px;
  padding:12px 12px;
  background: rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.14);
  color:rgba(255,255,255,.92);
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.field__input:focus{
  border-color: rgba(34,211,238,.55);
  box-shadow: 0 0 0 4px rgba(34,211,238,.14);
}
.field__input--area{
  min-height: 120px;
  resize: vertical;
}
.form__note{
  margin:10px 0 0;
  color:var(--muted2);
  font-size:13px;
  line-height:1.5;
}

.footer{
  padding:36px 0;
  border-top:1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.18);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:flex-start;
}
.footer__tagline{margin:10px 0 0;color:var(--muted);line-height:1.5}
.footer__right{display:flex;gap:14px;flex-wrap:wrap}
.footer__link{
  color:rgba(255,255,255,.78);
  text-decoration:none;
  font-weight:750;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid transparent;
}
.footer__link:hover{
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
  color:rgba(255,255,255,.92);
}
.footer__bottom{
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.06);
  display:flex;
  justify-content:space-between;
  gap:14px;
  color:rgba(255,255,255,.72);
}
.muted{color:var(--muted2)}

@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr;gap:18px}
  .hero__visual{min-height: 360px}
  .hero__stats{grid-template-columns:1fr;gap:10px}
  .statsBar__inner{grid-template-columns:1fr 1fr}
  .section__head{flex-direction:column;align-items:flex-start}
  .cards{grid-template-columns:1fr 1fr;gap:12px}
  .strip{grid-template-columns:1fr}
  .logoStrip{flex-direction:column;align-items:flex-start}
  .logoStrip__logos{justify-content:flex-start}
  .workGrid{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr 1fr}
  .quotes{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  .diffGrid{grid-template-columns:1fr 1fr}
  .solutionGrid{grid-template-columns:1fr}
  .packageGrid{grid-template-columns:1fr}
}

@media (max-width: 720px){
  .nav__toggle{display:inline-flex;align-items:center;justify-content:center}
  .nav__panel{
    position:fixed;
    left:16px; right:16px; top:74px;
    display:grid;
    gap:10px;
    padding:14px;
    border-radius: 22px;
    background: rgba(10,12,22,.88);
    border:1px solid rgba(255,255,255,.12);
    transform: translateY(-8px);
    opacity:0;
    pointer-events:none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav__panel.is-open{
    opacity:1;
    transform: translateY(0);
    pointer-events:auto;
  }
  .nav__link{padding:12px 12px;background: rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.08)}
  .nav__cta{margin-top:4px}
  .form__row{grid-template-columns:1fr}
  .footer__inner{flex-direction:column}
  .footer__bottom{flex-direction:column;align-items:flex-start}
  .statsBar__inner{grid-template-columns:1fr}
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .btn,.nav__link{transition:none}
  [data-reveal]{opacity:1;transform:none;transition:none}
  .card,.diff,.solution,.package,.work{transition:none}
  .card::after,.work::after{animation:none}
  .card[data-reveal].is-in,
  .diff[data-reveal].is-in,
  .solution[data-reveal].is-in,
  .package[data-reveal].is-in,
  .work[data-reveal].is-in{animation:none}
}

.brand__logo {
  height: 42px;
  width: auto;
  display: block;
  filter: invert(1);
}
