:root{
  --bg0:#070a14;
  --bg1:#0b1020;
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.74);
  --stroke:rgba(255,255,255,.14);
  --glass:rgba(255,255,255,.06);
  --glass2:rgba(255,255,255,.10);
  --shadow:0 18px 60px rgba(0,0,0,.45);
  --r:18px;
  --r2:22px;
  --max:1160px;
  --font:18px;
  --g1:linear-gradient(135deg, rgba(18,80,255,.45), rgba(255,70,170,.30), rgba(0,220,190,.22));
  --g2:linear-gradient(135deg, rgba(255,180,80,.22), rgba(120,170,255,.22), rgba(0,220,190,.14));
  --g3:radial-gradient(1200px 700px at 18% 12%, rgba(18,80,255,.28), transparent 56%),
       radial-gradient(1000px 720px at 82% 10%, rgba(255,70,170,.22), transparent 58%),
       radial-gradient(900px 720px at 68% 92%, rgba(0,220,190,.18), transparent 58%),
       radial-gradient(900px 720px at 20% 90%, rgba(255,180,80,.12), transparent 58%),
       linear-gradient(180deg, var(--bg0), var(--bg1) 55%, #050612);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-size:var(--font);
  line-height:1.55;
  color:var(--text);
  background:var(--g3);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,"Apple Color Emoji","Segoe UI Emoji";
  overflow-x:hidden;
}

img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
button,input,select{ font:inherit; }
.wrap{ width:min(var(--max), calc(100% - 44px)); margin:0 auto; }

.skip{
  position:absolute;
  left:-999px;
  top:10px;
  padding:10px 14px;
  border-radius:12px;
  background:rgba(0,0,0,.7);
  border:1px solid var(--stroke);
}
.skip:focus{ left:10px; z-index:999; }

.header{
  position:sticky;
  top:0;
  z-index:60;
  background:rgba(8,10,18,.58);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.10);
}

.head{
  display:grid;
  grid-template-columns:1fr auto auto;
  gap:12px;
  align-items:center;
  padding:14px 0 10px;
}

.brand{
  display:flex;
  gap:12px;
  align-items:center;
  min-width:210px;
}
.brandMark{
  width:44px;
  height:44px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:var(--g1);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 14px 42px rgba(0,0,0,.35);
}
.brandName{
  font-weight:860;
  letter-spacing:.2px;
  text-transform:lowercase;
  display:block;
}
.brandMeta{
  display:block;
  font-size:14px;
  color:var(--muted);
  margin-top:2px;
}

.nav{
  display:flex;
  gap:10px;
  align-items:center;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
}
.nav a{
  padding:10px 12px;
  border-radius:999px;
  color:rgba(255,255,255,.88);
  transition:transform .12s ease, background .12s ease;
  white-space:nowrap;
}
.nav a:hover{ background:rgba(255,255,255,.10); transform:translateY(-1px); }

.navBtn{
  display:none;
  width:44px;
  height:44px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.92);
}

.headCta{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:12px 14px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(18,80,255,.52), rgba(255,70,170,.34));
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 12px 40px rgba(0,0,0,.22);
  white-space:nowrap;
}
.headCta span{ font-weight:650; }

.topline{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  padding:0 0 12px;
}
.topItem{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:rgba(255,255,255,.82);
  max-width:100%;
}
.topItem span{ font-size:15px; }

.btn{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.92);
  cursor:pointer;
  transition:transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{ transform:translateY(-1px); background:rgba(255,255,255,.10); border-color:rgba(255,255,255,.18); }
.btn.primary{ background:linear-gradient(135deg, rgba(18,80,255,.58), rgba(255,70,170,.38)); border-color:rgba(255,255,255,.18); }
.btn.soft{ background:rgba(255,255,255,.05); }
.btn.full{ width:100%; justify-content:center; }
.btn.small{ padding:10px 14px; font-size:16px; }

.badgeRow{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:14px; }
.badge{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:rgba(255,255,255,.86);
}
.badge span{ font-size:15px; }

.hero{ padding:34px 0 22px; }
.heroGrid{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:16px;
  align-items:start;
}
.heroCopy{
  padding:18px;
  border-radius:var(--r2);
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow:0 18px 60px rgba(0,0,0,.22);
}
.heroCopy h1{
  margin:0 0 12px;
  font-size:clamp(30px, 4vw, 52px);
  line-height:1.05;
  letter-spacing:.2px;
}
.lead{ margin:0 0 16px; color:rgba(255,255,255,.82); font-size:19px; }

.heroStats{
  display:grid;
  gap:10px;
  grid-template-columns:1fr;
  margin:14px 0 16px;
}
.stat{
  display:grid;
  gap:4px;
  padding:12px 14px;
  border-radius:var(--r);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
}
.statK{ color:rgba(255,255,255,.82); font-weight:750; }
.statV{ color:rgba(255,255,255,.74); font-size:16px; }

.heroActions{ display:flex; flex-wrap:wrap; gap:10px; }

.heroPanel{
  position:relative;
}
.panelCard{
  border-radius:var(--r2);
  border:1px solid rgba(255,255,255,.14);
  background:rgba(10,12,22,.58);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.panelHead{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding:16px 16px 10px;
  align-items:flex-start;
}
.panelTitle{ display:grid; gap:4px; }
.panelEyebrow{ color:rgba(255,255,255,.72); font-size:14px; letter-spacing:.2px; }
.panelH{ font-weight:820; }
.pill{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:rgba(255,255,255,.84);
  font-size:14px;
  white-space:nowrap;
}

.finder{ padding:0 16px 16px; display:grid; gap:12px; }
.field span{ display:block; margin:0 0 7px; color:rgba(255,255,255,.82); }
input,select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.92);
  outline:none;
}
input::placeholder{ color:rgba(255,255,255,.52); }
select option{ color:#0b1020; }

.panelMedia{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  overflow:hidden;
  background:rgba(255,255,255,.04);
}
.panelMedia img{ aspect-ratio:16/9; object-fit:cover; }

.section{ padding:44px 0; }
.alt{
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
}
.secHead{ display:grid; gap:8px; margin-bottom:16px; }
.secHead h2{ margin:0; font-size:34px; line-height:1.15; }
.secHead p{ margin:0; color:rgba(255,255,255,.78); max-width:76ch; }

.laneGrid{ display:grid; gap:14px; }
.lane{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:14px;
  border-radius:var(--r2);
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  overflow:hidden;
  box-shadow:0 18px 46px rgba(0,0,0,.24);
}
.laneMedia img{ width:100%; height:100%; object-fit:cover; min-height:260px; }
.laneBody{ padding:16px; display:grid; gap:10px; }
.laneTop{ display:flex; align-items:center; gap:10px; }
.laneIcon{
  width:40px;
  height:40px;
  border-radius:16px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.14);
  background:var(--g2);
}
.laneBody h3{ margin:0; font-size:22px; }
.laneBody p{ margin:0; color:rgba(255,255,255,.78); }
.bullets{ list-style:none; padding:0; margin:0; display:grid; gap:8px; }
.bullets li{ display:flex; gap:10px; align-items:center; color:rgba(255,255,255,.84); }
.link{ display:inline-flex; gap:10px; align-items:center; padding-top:6px; }
.link i{ opacity:.9; }

.miniCallout{
  margin-top:14px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:12px;
  align-items:center;
  padding:14px;
  border-radius:var(--r2);
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(135deg, rgba(18,80,255,.18), rgba(255,70,170,.10), rgba(0,220,190,.10));
}
.miniIcon{
  width:44px;
  height:44px;
  border-radius:16px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
}
.miniText{ display:grid; gap:4px; }
.miniText strong{ font-weight:820; }
.miniText span{ color:rgba(255,255,255,.78); font-size:16px; }

.serviceGrid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:12px;
  margin-top:12px;
}
.svc{
  padding:16px;
  border-radius:var(--r2);
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
}
.svcTop{ display:flex; gap:10px; align-items:center; margin-bottom:8px; }
.svcIcon{
  width:42px;
  height:42px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, rgba(255,70,170,.24), rgba(18,80,255,.22));
  border:1px solid rgba(255,255,255,.14);
}
.svc h3{ margin:0; font-size:20px; }
.svc p{ margin:0 0 12px; color:rgba(255,255,255,.76); }
.svcTags{ display:flex; flex-wrap:wrap; gap:8px; }
.chip{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:rgba(255,255,255,.84);
  font-size:14px;
}

.workflow{
  margin-top:14px;
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:12px;
  padding:16px;
  border-radius:var(--r2);
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
}
.wfLeft h3{ margin:0 0 8px; font-size:22px; }
.wfLeft p{ margin:0; color:rgba(255,255,255,.78); }
.wfSteps{ display:grid; gap:10px; }
.wfStep{
  display:grid;
  grid-template-columns:44px 1fr;
  gap:12px;
  padding:12px;
  border-radius:var(--r2);
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
}
.wfN{
  width:44px;
  height:44px;
  border-radius:16px;
  display:grid;
  place-items:center;
  font-weight:860;
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(135deg, rgba(0,220,190,.16), rgba(255,180,80,.14));
}
.wfT strong{ display:block; margin-bottom:4px; }
.wfT span{ color:rgba(255,255,255,.76); font-size:16px; }

.cityGrid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
}
.city{
  border-radius:var(--r2);
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  overflow:hidden;
  box-shadow:0 18px 46px rgba(0,0,0,.22);
}
.cityMedia img{ aspect-ratio:4/3; object-fit:cover; }
.cityBody{ padding:14px; display:grid; gap:10px; }
.cityTop{ display:flex; justify-content:space-between; gap:10px; align-items:center; }
.cityTop h3{ margin:0; font-size:20px; }
.cityPill{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:rgba(255,255,255,.84);
  font-size:14px;
}
.cityBody p{ margin:0; color:rgba(255,255,255,.76); }
.cityLine{ display:flex; flex-wrap:wrap; gap:10px; color:rgba(255,255,255,.82); font-size:14px; }
.cityLine span{ display:inline-flex; gap:8px; align-items:center; }

.askGrid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:12px;
  align-items:start;
}
.askCard{
  padding:16px;
  border-radius:var(--r2);
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
}
.askCard h3{ margin:0 0 12px; font-size:22px; }
.needGrid{ display:grid; grid-template-columns:repeat(2, 1fr); gap:10px; }
.need{
  display:grid;
  grid-template-columns:36px 1fr;
  gap:10px;
  padding:12px;
  border-radius:var(--r2);
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
}
.need i{ margin-top:2px; opacity:.9; }
.need strong{ display:block; margin-bottom:4px; }
.need span{ color:rgba(255,255,255,.76); font-size:16px; }

.askBar{ display:flex; flex-wrap:wrap; gap:10px; margin-top:12px; }

.refMosaic{
  margin-top:12px;
  padding:16px;
  border-radius:var(--r2);
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(135deg, rgba(18,80,255,.14), rgba(255,70,170,.08), rgba(0,220,190,.08));
}
.refHead{ display:flex; justify-content:space-between; gap:10px; align-items:baseline; margin-bottom:10px; }
.refHead h3{ margin:0; font-size:22px; }
.refHint{ color:rgba(255,255,255,.74); font-size:14px; }
.mosaic{
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:10px;
}
.tile{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  min-height:140px;
}
.tile img{ width:100%; height:100%; object-fit:cover; }
.tile figcaption{
  position:absolute;
  left:10px;
  right:10px;
  bottom:10px;
  padding:9px 10px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(10,12,22,.55);
  backdrop-filter:blur(10px);
  color:rgba(255,255,255,.90);
  font-size:14px;
}
.t1{ grid-column:span 7; grid-row:span 2; min-height:240px; }
.t2{ grid-column:span 5; min-height:170px; }
.t3{ grid-column:span 5; min-height:170px; }
.t4{ grid-column:span 12; min-height:170px; }

.gen{
  padding:16px;
  border-radius:var(--r2);
  border:1px solid rgba(255,255,255,.14);
  background:rgba(10,12,22,.58);
  box-shadow:var(--shadow);
}
.genTop{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:flex-start;
  margin-bottom:10px;
}
.genTop h3{ margin:6px 0 0; font-size:22px; }

.genForm{ display:grid; gap:12px; }
.two{ display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.fine{
  margin-top:2px;
  display:grid;
  gap:8px;
  color:rgba(255,255,255,.72);
  font-size:14px;
}
.fine span{ display:flex; gap:10px; align-items:center; }

.faq{
  margin-top:12px;
  padding:16px;
  border-radius:var(--r2);
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
}
.faq h3{ margin:0 0 10px; font-size:22px; }
.qa{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  overflow:hidden;
}
.qa + .qa{ margin-top:10px; }
.qa summary{
  padding:12px 12px;
  cursor:pointer;
  list-style:none;
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:center;
  color:rgba(255,255,255,.90);
}
.qa summary::-webkit-details-marker{ display:none; }
.qaA{ padding:0 12px 12px; color:rgba(255,255,255,.76); font-size:16px; }

.contactShell{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:12px;
  padding:18px;
  border-radius:var(--r2);
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(135deg, rgba(18,80,255,.18), rgba(255,70,170,.10), rgba(0,220,190,.10));
}
.contactCopy h2{ margin:0 0 10px; }
.contactCopy p{ margin:0 0 14px; color:rgba(255,255,255,.78); }
.contactBtns{ display:flex; flex-wrap:wrap; gap:10px; }

.contactCards{ display:grid; gap:10px; }
.cCard{
  display:grid;
  grid-template-columns:44px 1fr;
  gap:12px;
  align-items:center;
  padding:12px 14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
}
.cIco{
  width:44px;
  height:44px;
  border-radius:16px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
}
.cTxt{ display:grid; gap:4px; }
.cK{ color:rgba(255,255,255,.76); font-size:14px; }
.cV{ color:rgba(255,255,255,.92); }

.footLinks{
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  color:rgba(255,255,255,.82);
}
.footLinks a{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
}
.footLinks a:hover{ background:rgba(255,255,255,.08); }

.footer{
  padding:28px 0 76px;
  border-top:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.16);
}
.foot{
  display:grid;
  grid-template-columns:1.2fr 1fr auto;
  gap:14px;
  align-items:start;
}
.footBrand{ display:flex; gap:12px; align-items:center; }
.footTitle{ font-weight:860; }
.footSub{ color:rgba(255,255,255,.74); font-size:15px; margin-top:2px; }
.footMeta{ display:grid; gap:8px; color:rgba(255,255,255,.78); }
.footLine{ display:flex; gap:10px; align-items:flex-start; }
.footLine a{ text-decoration:underline; text-underline-offset:3px; }
.copy{ color:rgba(255,255,255,.74); white-space:nowrap; }

.cookie{
  position:fixed;
  left:16px;
  right:16px;
  bottom:16px;
  z-index:90;
  border-radius:var(--r2);
  border:1px solid rgba(255,255,255,.18);
  background:rgba(10,12,22,.72);
  backdrop-filter:blur(14px);
  box-shadow:0 18px 60px rgba(0,0,0,.45);
  max-width:calc(var(--max) + 44px);
  margin:0 auto;
}
.cookieInner{
  display:grid;
  grid-template-columns:1fr auto;
  gap:12px;
  padding:14px;
  align-items:center;
}
.cookieTxt strong{ display:block; margin-bottom:4px; }
.cookieTxt span{ display:block; color:rgba(255,255,255,.78); font-size:16px; }
.cookieBtns{ display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; }

@media (max-width: 1100px){
  .serviceGrid{ grid-template-columns:repeat(2, 1fr); }
  .foot{ grid-template-columns:1fr; }
  .copy{ white-space:normal; }
}

@media (max-width: 980px){
  .heroGrid{ grid-template-columns:1fr; }
  .askGrid{ grid-template-columns:1fr; }
  .workflow{ grid-template-columns:1fr; }
  .cityGrid{ grid-template-columns:1fr; }
  .lane{ grid-template-columns:1fr; }
  .laneMedia img{ min-height:220px; }
  .needGrid{ grid-template-columns:1fr; }
  .t1{ grid-column:span 12; }
  .t2{ grid-column:span 12; }
  .t3{ grid-column:span 12; }
  .t4{ grid-column:span 12; }
  .contactShell{ grid-template-columns:1fr; }
}

@media (max-width: 760px){
  .navBtn{ display:inline-grid; place-items:center; }
  .nav{
    position:fixed;
    top:72px;
    left:16px;
    right:16px;
    display:grid;
    gap:8px;
    padding:12px;
    border-radius:var(--r2);
    background:rgba(10,12,22,.86);
    transform:translateY(-8px);
    opacity:0;
    pointer-events:none;
    transition:opacity .14s ease, transform .14s ease;
  }
  body.navOpen .nav{ opacity:1; transform:translateY(0); pointer-events:auto; }
  .nav a{ border-radius:16px; }
  .head{ grid-template-columns:1fr auto auto; }
  .headCta span{ display:none; }
  .cookieInner{ grid-template-columns:1fr; }
  .cookieBtns{ justify-content:flex-start; }
}

@media (max-width: 420px){
  .wrap{ width:min(var(--max), calc(100% - 28px)); }
}
main {
  overflow-x: hidden;
}