
html, body{
  margin:0;
  padding:0;
  height:100%;
  min-height:100%;
  background:#070B10;
}
body{
  min-height:100vh;
  min-height:100dvh;
  padding-bottom: env(safe-area-inset-bottom);
}

.footer{
  padding-bottom: calc(22px + env(safe-area-inset-bottom));
}

:root{
  --bg0:#070B10;
  --bg1:#0B0F14;
  --bg2:#0E1117;

  --card:#0D131A;
  --card2:#0B1016;

  --txt:#E6EAF0;
  --txt2:rgba(230,234,240,.82);
  --muted:rgba(154,163,178,.86);

  --accent:#6C63FF;
  --accent2:rgba(108,99,255,.16);
  --accentAlt:#B347FF;
  --accentGrad:linear-gradient(135deg,#3B82F6 0%, #6D5CFF 52%, #B347FF 100%);

  --stroke:rgba(255,255,255,.10);
  --stroke2:rgba(255,255,255,.14);

  --radius:18px;
  --shadow: 0 26px 70px rgba(0,0,0,.45);
  --shadowSoft: 0 18px 45px rgba(2,6,23,.28);

  --container: 1180px;
}

*{box-sizing:border-box}
html,body{min-height:100%}
body{
  margin:0;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--txt);

  background:
    radial-gradient(900px 500px at 70% 20%, rgba(108,99,255,.22), transparent 60%),
    radial-gradient(800px 600px at 50% 100%, rgba(179,71,255,.18), transparent 70%),
    linear-gradient(180deg, #05070B 0%, #070B10 40%, #0B0F14 100%);
}


a{color:inherit}
img{max-width:100%; display:block}

.container{
  width:min(var(--container), calc(100% - 44px));
  margin-inline:auto;
}

.skip{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;height:1px;
  overflow:hidden;
}
.skip:focus{
  left:16px; top:16px;
  width:auto; height:auto;
  padding:10px 12px;
  border:1px solid var(--stroke2);
  background:rgba(0,0,0,.72);
  border-radius:12px;
  z-index:9999;
}

.nav{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(7,11,16,.62);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand__logo{
  height:32px;
  width:auto;
  display:block;
  position:relative;
  top:0;
}

.menu{
  display:flex;
  gap:18px;
  align-items:center;
}
.menu__link{
  text-decoration:none;
  font-weight:700;
  font-size:13px;
  letter-spacing:.04em;
  color: rgba(230,234,240,.86);
  padding:8px 10px;
  border-radius:12px;
  transition: background .2s ease, color .2s ease;
}
.menu__link:hover{
  background: rgba(108,99,255,.10);
  color: var(--txt);
}

.nav__right{
  display:flex;
  align-items:center;
  gap:10px;
}

.navToggle{
  display:none;
  width:44px;
  height:40px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap:5px;
  padding:0;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.navToggle:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}
.navToggle:active{ transform: translateY(1px); }
.navToggle__bar{
  width:18px;
  height:2px;
  border-radius:99px;
  background: rgba(230,234,240,.92);
  display:block;
}

.navToggle__bar:nth-child(1){ width:20px; }
.navToggle__bar:nth-child(2){ width:14px; }
.navToggle__bar:nth-child(3){ width:18px; }

.mobileMenu{
  display:none;
  border-top:1px solid rgba(255,255,255,.06);
  background: rgba(7,11,16,.70);
  backdrop-filter: blur(14px);
}
.mobileMenu__inner{
  padding:14px 0 16px;
}
.mobileMenu__links{
  display:grid;
  gap:8px;
  margin-bottom:12px;
}
.mobileMenu__link{
  text-decoration:none;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  font-weight:900;
  letter-spacing:.04em;
  font-size:12px;
  color: rgba(230,234,240,.90);
}
.mobileMenu__link:hover{
  background: rgba(108,99,255,.10);
  border-color: rgba(108,99,255,.24);
}
.mobileMenu__cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.mobileMenu--open{
  display:block;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:14px;
  text-decoration:none;
  font-weight:800;
  font-size:13px;
  letter-spacing:.02em;
  border:1px solid transparent;
  cursor:pointer;
  user-select:none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: var(--accentGrad);
  color:#F8FAFF;
  box-shadow: 0 16px 44px rgba(108,99,255,.24);
}
.btn--primary:hover{
  filter:brightness(1.06);
}

.btn--outline{
  background: transparent;
  border-color: rgba(108,99,255,.44);
  color: var(--txt);
}
.btn--outline:hover{
  background: rgba(108,99,255,.10);
  border-color: rgba(179,71,255,.56);
}

.btn--ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.08);
  color: var(--txt);
}
.btn--ghost:hover{
  background: rgba(108,99,255,.10);
  border-color: rgba(108,99,255,.20);
}

.btn--loading{
  opacity:.88;
  cursor:wait;
}
.btn--loading::after{
  content:"";
  width:14px;
  height:14px;
  border-radius:999px;
  border:2px solid rgba(7,11,16,.42);
  border-top-color: rgba(7,11,16,.92);
  display:inline-block;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero{
  padding-top: calc(10px + 18px);
  position: relative;
  overflow: hidden; 
}

.hero__ai{
  p  osition:relative;
  padding:30px;
  border-radius:18px;
  background:#05070A;
  border:1px solid rgba(255,255,255,.06);
  box-shadow:0 40px 100px rgba(0,0,0,.7);
}

.aiCore{
  position:relative;
  height:260px;
}

.aiNode{
  position:absolute;
  padding:10px 14px;
  border-radius:10px;
  font-size:12px;
  font-weight:600;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  backdrop-filter:blur(6px);
  box-shadow:0 0 20px rgba(108,99,255,.15);
}

.aiNode--data{left:10px; top:100px;}
.aiNode--model{left:160px; top:40px;}
.aiNode--decision{left:160px; top:160px;}
.aiNode--action{right:10px; top:100px;}

.aiLine{
  position:absolute;
  height:2px;
  background:linear-gradient(90deg,#6C63FF,#B347FF);
  opacity:.5;
}

.aiLine--1{left:80px; top:120px; width:80px;}
.aiLine--2{left:240px; top:80px; width:120px;}
.aiLine--3{left:240px; top:180px; width:120px;}


.aiParticle{
  position:absolute;
  width:6px;
  height:6px;
  background:#B347FF;
  border-radius:50%;
  box-shadow:0 0 10px #B347FF;
}

.p1{
  top:120px;
  left:80px;
  animation:flow1 3s linear infinite;
}

.p2{
  top:80px;
  left:240px;
  animation:flow2 3s linear infinite;
}

.p3{
  top:180px;
  left:240px;
  animation:flow2 3s linear infinite 1.5s;
}

@keyframes flow1{
  0%{left:80px;}
  100%{left:160px;}
}

@keyframes flow2{
  0%{left:240px;}
  100%{left:360px;}
}

.metric__value,
.aiStat b{
  animation:softPulse 4s ease-in-out infinite;
}

@keyframes softPulse{
  0%{opacity:.85; transform:translateY(0);}
  50%{opacity:1; transform:translateY(-1px);}
  100%{opacity:.85; transform:translateY(0);}
}

.metric,
.aiStat{
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
    
  border:1px solid rgba(255,255,255,.08);
  background:rgba(10,12,16,.6);
  backdrop-filter:blur(10px);
}

.metric:hover,
.aiStat:hover{
  transform:translateY(-6px);
  box-shadow:
    0 20px 50px rgba(0,0,0,.6),
    0 0 40px rgba(108,99,255,.25);

  border-color:rgba(108,99,255,.4);
}

.hero{
  position:relative;
  overflow:hidden;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;

  background:
    radial-gradient(circle at 30% 40%, rgba(108,99,255,.08), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(59,130,246,.08), transparent 40%);

  animation:bgMove 12s ease-in-out infinite alternate;
  pointer-events:none;
}

@keyframes bgMove{
  from{transform:translateY(0);}
  to{transform:translateY(-20px);}
}

.panel__list{
  margin-top:16px;
  display:flex;
  flex-direction:column;
  gap:12px;

  padding:0 16px;
}

.hero__panel{
  padding:14px 14px 12px;
}

.panel__top{
  margin-bottom:1px;
}

.panel__kpis{
  gap:8px;
}

.kpi{
  padding:12px;
}

.spark{
  margin-top:6px;
  padding:12px;
}

.panel__list{
  margin-top:3px;
  gap:3px;
  padding:0 12px;
}

.panelItem{
  padding:10px;
}

.aiStats{
  margin-top:10px;
  gap:8px;
}
.hero__copy .hero__p{
  margin-top:15px;
}
.hero{
  -webkit-mask-image: none;
  mask-image: none;
  overflow: visible;
}
.hero__panel{
  border-radius:14px;
}

.hero::before{
  content:"";
  position:absolute;
  inset:-20%;
  background:
    radial-gradient(600px 300px at 70% 30%, rgba(108,99,255,.25), transparent 60%),
    radial-gradient(500px 300px at 30% 20%, rgba(59,130,246,.20), transparent 60%);
  filter: blur(60px);
  opacity:.6;
  z-index:0;
}


.hero::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:180px;

  pointer-events:none;

  background: linear-gradient(
    to bottom,
    rgba(7,11,16,0) 0%,
    rgba(7,11,16,.4) 40%,
    rgba(7,11,16,.8) 75%,
    rgba(7,11,16,1) 100%
  );

  z-index:1;
}

.hero .container{
  position:relative;
  z-index:2;
}

.hero__grid{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap:34px;
  align-items:stretch;
  position:relative;
}

.hero__copy{
  display:flex;
  flex-direction:column;
  align-self:stretch;
  min-height:100%;
}

.kicker{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.12em;
  font-size:12px;
  color: rgba(230,234,240,.74);
}
.kicker__dot{
  width:10px;height:10px;
  border-radius:999px;
  background: var(--accentGrad);
  box-shadow: 0 0 0 8px rgba(108,99,255,.14);
}

.hero__h1{
  margin:14px 0 10px;
  font-size:54px;
  line-height:1.03;
  letter-spacing:-.02em;
}

.hero__p{
  margin:0 0 12px;
  color: var(--txt2);
  font-size:15px;
  line-height:1.6;
}
.hero__p--lead{
  font-size:18px;
  font-weight:800;
  color: rgba(230,234,240,.92);
}
.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:16px 0 14px;
}
.hero__chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:auto;
  padding-top:12px;
}
.chip{
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.02em;
  border:1px solid rgba(108,99,255,.20);
  background: rgba(108,99,255,.06);
  color: rgba(230,234,240,.90);
}


.hero__panel{
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0B0F14, #070B10);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 30px 80px rgba(0,0,0,.6),
    0 0 80px rgba(108,99,255,.15),
    inset 0 0 60px rgba(108,99,255,.05);
}

.hero__panel::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(circle at 20% 30%, rgba(108,99,255,.25), transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(179,71,255,.18), transparent 40%);
  opacity:.6;
  animation: panelGlow 8s ease-in-out infinite alternate;
  z-index:0;
}

@keyframes panelGlow{
  from{transform:scale(1); opacity:.4;}
  to{transform:scale(1.1); opacity:.7;}
}
.graphLine{
  stroke-dasharray:1000;
  stroke-dashoffset:1000;
  animation:drawLine 2.5s ease forwards;
}

@keyframes drawLine{
  to{stroke-dashoffset:0;}
}

.hero__panel *{
  position:relative;
  z-index:1;
}
.panel__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
}
.panel__title{
  font-weight:900;
  letter-spacing:.12em;
  font-size:11px;
  color: rgba(230,234,240,.72);
}
.panel__status{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  font-size:11px;
  letter-spacing:.10em;
  color: rgba(230,234,240,.80);
}
.panel__statusDot{
  width:8px;
  height:8px;
  background:#22c55e;
  border-radius:50%;
  box-shadow:0 0 10px #22c55e;
  animation:pulseDot 1.6s infinite;
}

@keyframes pulseDot{
  0%{transform:scale(1); opacity:1;}
  70%{transform:scale(1.8); opacity:.4;}
  100%{transform:scale(1); opacity:1;}
}
.panel__kpis{
  padding:16px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.kpi, .panelItem{
  transition:all .25s ease;
}

.kpi:hover, .panelItem:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 40px rgba(108,99,255,.25);
}
.kpi{
  padding:14px 14px 12px;
  border-radius:16px;
  border:1px solid rgba(108,99,255,.18);
  background: rgba(108,99,255,.04);
}
.kpi__label{
  font-weight:900;
  letter-spacing:.12em;
  font-size:10px;
  color: rgba(230,234,240,.66);
}
.kpi__value{
  font-size:34px;
  font-weight:800;
  letter-spacing:-1px;
  background:linear-gradient(135deg,#fff,#a5b4fc);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
.kpi__hint{
  margin-top:6px;
  font-size:12px;
  color: rgba(230,234,240,.70);
}
.spark{
  grid-column: 1 / -1;
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(108,99,255,.18);
  background: rgba(108,99,255,.04);
}
.spark__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:10px;
}
.spark__label{
  font-weight:900;
  letter-spacing:.12em;
  font-size:10px;
  color: rgba(230,234,240,.66);
}
.spark__badge{
  font-weight:900;
  font-size:11px;
  letter-spacing:.10em;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(108,99,255,.35);
  background: rgba(108,99,255,.10);
  color: rgba(230,234,240,.90);
}
.panel__list{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.panelItem{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(108,99,255,.16);
  background: rgba(108,99,255,.04);
}

.panelCheck{
  width:22px;
  height:22px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background: var(--accentGrad);
  box-shadow: 0 10px 30px rgba(108,99,255,.24);
  flex:0 0 auto;
  color:#F8FAFF;
  position: relative;
}
.panelCheck::before{
  content:"✓";
  font-weight:900;
  font-size:14px;
  line-height:1;
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-48%, -52%);
}

.panelItem strong{
  display:block;
  font-size:13px;
  margin-bottom:3px;
}
.panelItem span{
  display:block;
  font-size:12px;
  color: rgba(230,234,240,.76);
  line-height:1.45;
}

.hero__metrics{
  margin-top:22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.metric{
  padding:16px 16px 14px;
  border-radius:18px;
  border:1px solid rgba(108,99,255,.16);
  background: rgba(108,99,255,.04);
}
.metric__value{
  font-size:26px;
  font-weight:900;
}
.metric__label{
  margin-top:6px;
  font-weight:900;
  font-size:11px;
  letter-spacing:.12em;
  color: rgba(230,234,240,.72);
}
.metric__note{
  margin-top:6px;
  font-size:12px;
  color: rgba(230,234,240,.70);
  line-height:1.45;
}

.logoStrip{
  margin-top:18px;
  padding:16px 16px 14px;
  border-radius:20px;

  border:1px solid rgba(108,99,255,.18);

  background:
    linear-gradient(
      180deg,
      rgba(108,99,255,.08),
      rgba(108,99,255,.02)
    );

  backdrop-filter: blur(18px);

  box-shadow:
    0 0 0 1px rgba(255,255,255,.04) inset,
    0 18px 45px rgba(0,0,0,.28);
}
.logoStrip__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}
.logoStrip__title{
  font-weight:900;
  letter-spacing:.12em;
  font-size:11px;
  color: rgba(230,234,240,.70);
}
.logoStrip__badges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.badgeMini{
  padding:6px 10px;
  border-radius:999px;
  font-size:10px;
  font-weight:900;
  letter-spacing:.10em;
  border:1px solid rgba(108,99,255,.18);
  background: rgba(108,99,255,.06);
  color: rgba(230,234,240,.86);
}
.logoStrip__row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.mark{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(108,99,255,.16);
  background: rgba(108,99,255,.04);
  font-weight:900;
  letter-spacing:.10em;
  font-size:11px;
  color: rgba(230,234,240,.78);
}
.proofRow{
  margin-top:12px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.proof{
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(108,99,255,.16);
  background: rgba(108,99,255,.04);
}
.proof__k{
  font-weight:900;
  letter-spacing:.12em;
  font-size:10px;
  color: rgba(230,234,240,.66);
}
.proof__v{
  margin-top:6px;
  font-size:12px;
  color: rgba(230,234,240,.84);
}

.sectionBreak{ padding:10px 0; }
.divider{
  border:0;
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(108,99,255,.22), transparent);
  opacity:.9;
}

.section{
  position:relative;
}

.section::before{
  content:"";
  position:absolute;
  inset:-100px 0 0 0;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(7,11,16,.6),
    rgba(7,11,16,1)
  );
  pointer-events:none;
}
.sectionHead{
  text-align:center;
  margin-bottom:30px;
}
.sectionHead--left{ text-align:left; }
.h2{
  margin:0 0 10px;
  font-size:32px;
  letter-spacing:-.02em;
}
.sub{
  max-width:640px;
  margin:auto;
}

.pillars{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:18px;
}
.pillar{
  border-radius:20px;
  border:1px solid rgba(108,99,255,.16);
  background: rgba(108,99,255,.04);
  padding:18px;
}
.pillar--dominant{
  border-color: rgba(179,71,255,.55) !important;
  background: rgba(179,71,255,.10) !important;

  box-shadow:
    0 0 50px rgba(179,71,255,.25),
    0 25px 80px rgba(0,0,0,.6);

  transform: translateY(-8px);
  z-index:2;
}
.pillar__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.pillar__title{
  margin:0;
  font-weight:900;
  letter-spacing:.14em;
  font-size:12px;
}
.pillTag{
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  font-weight:900;
  letter-spacing:.12em;
  font-size:10px;
  color: rgba(230,234,240,.86);
}
.pillTag--dominant{
  border-color: rgba(108,99,255,.32);
  background: rgba(108,99,255,.10);
}
.pillar__desc{
  margin:12px 0 14px;
  color: rgba(230,234,240,.76);
  font-size:13px;
  line-height:1.55;
}
.dominantNote{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(108,99,255,.28);
  background: rgba(108,99,255,.08);
  font-weight:900;
  letter-spacing:.12em;
  font-size:10px;
  color: rgba(230,234,240,.86);
  margin-bottom:12px;
}
.dominantDot{
  width:10px;height:10px;border-radius:99px;
  background: var(--accentGrad);
  box-shadow: 0 0 0 8px rgba(108,99,255,.14);
}
.capList{ display:grid; gap:10px; }
.capItem{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(108,99,255,.16);
  background: rgba(108,99,255,.04);
}
.capIcon{
  width:26px;height:26px;
  border-radius:10px;
  display:grid;
  place-items:center;
  font-weight:900;
  color: rgba(230,234,240,.90);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  flex:0 0 auto;
}
.capIcon--dominant{
  border-color: rgba(108,99,255,.28);
  background: rgba(108,99,255,.10);
  color: rgba(230,234,240,.92);
}
.capName{
  font-weight:900;
  font-size:13px;
  margin-bottom:4px;
}
.capText{
  font-size:12px;
  color: rgba(230,234,240,.74);
  line-height:1.45;
}

.trustGrid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
  margin-top:26px;
}
.trustCard{
  backdrop-filter: blur(18px);
  border:1px solid rgba(179,71,255,.3);
  padding:20px;   

  border-radius:20px;

  border:1px solid rgba(207,63,221,.22);

  background:
    radial-gradient(600px 280px at 80% 0%, rgba(207,63,221,.18), transparent 60%),
    linear-gradient(180deg, rgba(20,24,40,.9), rgba(10,14,24,.95));

  box-shadow:
    0 0 30px rgba(207,63,221,.18),
    0 20px 60px rgba(0,0,0,.55);

  backdrop-filter: blur(12px);
}
.trustCard__title{
  font-weight:900;
  letter-spacing:.14em;
  font-size:11px;
  color: rgba(230,234,240,.78);
  margin-bottom:12px;
  opacity:1;
}
.trustItem{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:12px 0;
  border-top:1px solid rgba(207,63,221,.12);
}
.trustItem:first-of-type{ border-top:0; padding-top:0; }

.trustDot{
  width:10px;
  height:10px;
  border-radius:999px;

  margin-top:6px;

  background:#CF3FDD;

  box-shadow:
    0 0 0 6px rgba(207,63,221,.14),
    0 0 12px rgba(207,63,221,.45);
}
.trustItem strong{
  display:block;

  font-size:14px;
  font-weight:800;
  line-height:1.35;

  margin-bottom:4px; 

  color: rgba(230,234,240,.96);
}

.trustItem span{
  display:block;

  font-size:13px;
  line-height:1.6;

  color: rgba(230,234,240,.68);
}

.trustItem:first-of-type{
  border-top:0;
  padding-top:0;
}

.howSteps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:16px;                 
  margin-top:22px;
}
.howStep{
  border-radius:24px;

  padding:20px;

  position:relative;
  overflow:hidden;

  border:1px solid rgba(207,63,221,.18);

  background:
    radial-gradient(500px 220px at 20% 0%, rgba(207,63,221,.14), transparent 60%),
    linear-gradient(180deg, rgba(20,24,40,.92), rgba(10,14,24,.96));

  box-shadow:
    0 0 20px rgba(207,63,221,.12),
    0 18px 50px rgba(0,0,0,.55);

  transition: transform .25s ease, box-shadow .25s ease, border .25s ease;
}
.howStep:hover{
  transform: translateY(-4px);

  border-color: rgba(207,63,221,.35);

  box-shadow:
    0 0 30px rgba(207,63,221,.25),
    0 25px 70px rgba(0,0,0,.65);
}
.howStep::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:20px;
  background: radial-gradient(420px 220px at 30% 0%, rgba(108,99,255,.12), transparent 60%);
  pointer-events:none;
  opacity:.75;
}
.howStep__num{
  width:34px;
  height:34px;

  border-radius:10px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:14px;
  font-weight:900;

  background: linear-gradient(135deg,#CF3FDD,#8B5CF6);

  color:white;

  box-shadow:
    0 6px 18px rgba(207,63,221,.35);

  margin-bottom:12px;
}
.howStep__title{
  margin:0 0 6px;

  font-size:13px;          
  font-weight:800;

  letter-spacing:.08em;

  color: rgba(230,234,240,.92);
}
.howStep__text{
  margin:0;

  font-size:13px;
  line-height:1.6;

  color: rgba(230,234,240,.68);
}
.howStep::after{
  content:"";
  position:absolute;
  top:28px;
  right:-8px;
  width:16px;
  height:1px;

  background: linear-gradient(90deg, rgba(207,63,221,.4), transparent);
}

.howStep:last-child::after{
  display:none;
}
.section--contact{
  padding-bottom:20px;
  position:relative;
  overflow:hidden;
}

.section--contact::before{
  content:"";
  position:absolute;
  inset:-1px;
  pointer-events:none;
  background:
    radial-gradient(900px 520px at 50% 18%, rgba(108,99,255,.10), transparent 62%),
    radial-gradient(700px 420px at 50% 52%, rgba(179,71,255,.06), transparent 66%);
  opacity:.9;
  z-index:0;
}

.section--contact::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: linear-gradient(
    180deg,
    rgba(7,11,16,1) 0%,
    rgba(7,11,16,.92) 26%,
    rgba(7,11,16,.78) 54%,
    rgba(7,11,16,.92) 78%,
    rgba(7,11,16,1) 100%
  );
  z-index:0;
}

.section--contact .container{
  position:relative;
  z-index:1;
}

.contactHeader{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:18px;
  margin-bottom:18px;
}
.contactTitle{
  margin:0 0 10px;

  font-size:34px; 

  font-weight:900;
  letter-spacing:-.02em;
}

.contactLead{
  font-size:16px;
  line-height:1.6;

  color: rgba(230,234,240,.72);
}
.contactHeader__right{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.contactGrid{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap:20px; 
  align-items:stretch;
}
.contactInfo,
.contactForm{
  border-radius:22px;

  padding:22px;

  border:1px solid rgba(207,63,221,.18);

  background:
    radial-gradient(600px 260px at 20% 0%, rgba(207,63,221,.12), transparent 60%),
    linear-gradient(180deg, rgba(20,24,40,.92), rgba(10,14,24,.96));

  box-shadow:
    0 0 20px rgba(207,63,221,.12),
    0 20px 60px rgba(0,0,0,.55);

  backdrop-filter: blur(12px);
}
.contactInfo__meta{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.metaRow{
  background: linear-gradient(
    180deg,
    rgba(108,99,255,.08),
    rgba(108,99,255,.03)
  );

  border: 1px solid rgba(108,99,255,.24);

  box-shadow: 0 4px 18px rgba(0,0,0,.25);
}

.contactInfo::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity:.16;
  mask-image: radial-gradient(700px 400px at 50% 20%, rgba(0,0,0,1), transparent 72%);
}

.contactInfo__kickerRow{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}
.contactInfo__kicker{
  font-weight:900;
  letter-spacing:.14em;
  font-size:11px;
  color: rgba(230,234,240,.70);
  margin:0;
}

.pillBtn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:7px 12px;
  border-radius:999px;
  border:1px solid rgba(108,99,255,.32);
  background: rgba(108,99,255,.10);
  color: rgba(230,234,240,.92);
  font-weight:900;
  letter-spacing:.10em;
  font-size:10px;
  text-decoration:none;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.pillBtn:active{ transform: translateY(1px); }
.pillBtn:hover{
  background: rgba(108,99,255,.14);
  border-color: rgba(179,71,255,.44);
}
.pillBtn__dot{
  width:8px;height:8px;border-radius:99px;
  background: var(--accentGrad);
  box-shadow: 0 0 0 6px rgba(108,99,255,.12);
}

.contactInfo__list{
  position:relative;
  margin:0;
  padding-left:18px;
  display:grid;
  gap:8px;
  color: rgba(230,234,240,.84);
  font-size:13px;
  line-height:1.45;
}
.contactInfo__list b{ color: rgba(230,234,240,.96); }

.contactInfo__meta{
  border-top:none;
  position:relative;
}

.contactInfo__meta::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(108,99,255,.25),
    transparent
  );
}
.contactInfo__list{
  margin-bottom:40px;
}

.metaRow{
  display:grid;
  grid-template-columns: 180px 1fr;
  gap:12px;
  align-items:center;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(108,99,255,.14);
  background: rgba(108,99,255,.04);
}
.metaLabel{
  font-weight:900;
  letter-spacing:.14em;
  font-size:10px;
  color: rgba(230,234,240,.70);
  display:flex;
  align-items:center;
  gap:10px;
}
.metaIcon{
  width:22px;height:22px;
  border-radius:10px;
  display:grid;
  place-items:center;
  border:1px solid rgba(108,99,255,.24);
  background: rgba(108,99,255,.10);
}
.metaIcon svg{
  width:14px;height:14px;
  opacity:.95;
  fill: rgba(230,234,240,.88);
}
.metaValue{
  font-size:12px;
  color: rgba(230,234,240,.84);
}
.metaLink{
  color: rgba(230,234,240,.92);
  text-decoration:none;
  border-bottom:1px solid rgba(108,99,255,.28);
}
.metaLink:hover{ border-bottom-color: rgba(179,71,255,.52); }

.contactForm{
  border-radius:22px;
  border:1px solid rgba(108,99,255,.16);
  background: rgba(108,99,255,.04);
  padding:18px;
  box-shadow: var(--shadowSoft);
  display:flex;
  flex-direction:column;
}
.formTop{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,.08);
  margin-bottom:12px;
}
.formTitle{
  font-weight:900;
  font-size:16px;
}
.formHint{
  font-size:12px;
  color: rgba(230,234,240,.68);
}
.formGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.field{ display:grid; gap:8px; }
.field--full{ grid-column: 1 / -1; }
.field__label{
  font-size:12px;
  font-weight:900;
  letter-spacing:.06em;
  color: rgba(230,234,240,.74);
}
.field__input{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(108,99,255,.28);
  background: rgba(0,0,0,.35);
  color: var(--txt);
  padding:12px 12px;
  font-size:14px;
  outline:none;
  transition: border .2s ease, box-shadow .2s ease, background .2s ease;
}
.field__input:focus{
  border-color: rgba(108,99,255,.52);
  box-shadow: 0 0 0 6px rgba(108,99,255,.14);
}
.field__textarea{ resize:vertical; min-height:140px; }
.formActions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}
.formLegal{
  margin-top:auto;
  padding-top:10px;
  font-size:11px;
  color: rgba(230,234,240,.60);
  line-height:1.4;
}

.hp{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
  opacity:0 !important;
  pointer-events:none !important;
}

.field__error{
  min-height:14px;
  font-size:11px;
  color: rgba(255,200,120,.92);
  letter-spacing:.02em;
}

.field__input.is-invalid{
  border-color: rgba(255,200,120,.42);
  box-shadow: 0 0 0 6px rgba(255,200,120,.10);
}

.formMsg{
  margin-top:12px;
}

.formMsg__inner{
  border-radius:18px;
  border:1px solid rgba(108,99,255,.24);
  background: rgba(108,99,255,.08);
  padding:14px;
  position:relative;
  overflow:hidden;
}

.formMsg__inner::before{
  content:"";
  position:absolute;
  inset:-1px;
  background: radial-gradient(520px 240px at 20% 0%, rgba(108,99,255,.14), transparent 60%);
  pointer-events:none;
  opacity:.9;
}

.formMsg__top{
  position:relative;
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.formMsg__title{
  font-weight:900;
  font-size:14px;
  letter-spacing:.02em;
}
.formMsg__hint{
  font-size:12px;
  color: rgba(230,234,240,.70);
}

.formMsg__actions{
  position:relative;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:12px;
}

.formMsg__preview{
  position:relative;
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:12px;
}
.formMsg__k{
  font-weight:900;
  letter-spacing:.12em;
  font-size:10px;
  color: rgba(230,234,240,.70);
  margin-bottom:8px;
}
.formMsg__pre{
  margin:0;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(108,99,255,.14);
  background: rgba(108,99,255,.04);
  color: rgba(230,234,240,.86);
  font-size:12px;
  line-height:1.5;
  white-space:pre-wrap;
}

.toast{
  position:absolute;
  right:14px;
  top:14px;
  padding:8px 10px;
  border-radius:12px;
  border:1px solid rgba(108,99,255,.28);
  background: rgba(7,11,16,.84);
  color: rgba(230,234,240,.92);
  font-weight:900;
  font-size:11px;
  letter-spacing:.06em;
  opacity:0;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease;
  pointer-events:none;
}
.toast--show{
  opacity:1;
  transform: translateY(0);
}

.formMsg__inner--error{
  border-color: rgba(255,200,120,.26);
  background: rgba(255,200,120,.05);
}
.formMsg__inner--error::before{
  background: radial-gradient(520px 240px at 20% 0%, rgba(255,200,120,.10), transparent 60%);
}

.privacySection{
  padding:18px 0 14px;
  background: linear-gradient(
    180deg,
    rgba(7,11,16,0) 0%,
    rgba(7,11,16,.55) 42%,
    rgba(7,11,16,.88) 100%
  );
}
.privacyCard{
  width:100%;
  border-radius:22px;
  padding:18px;
  background: linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.18));
  box-shadow:
    0 0 0 1px rgba(108,99,255,.28) inset,
    var(--shadowSoft);
}
.privacyTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.privacyTitle{
  margin:0;
  font-weight:900;
  font-size:18px;
  letter-spacing:-.01em;
}
.privacyBadge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(108,99,255,.34);
  background: rgba(108,99,255,.10);
  color: rgba(230,234,240,.92);
  font-weight:900;
  letter-spacing:.10em;
  font-size:10px;
  white-space:nowrap;
}
.privacyText{
  margin:0;
  color: rgba(230,234,240,.78);
  font-size:13px;
  line-height:1.6;
}

.footer{
  padding:22px 0;
  border-top:1px solid rgba(255,255,255,.06);
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,.16) 38%,
    rgba(0,0,0,.20) 100%
  );
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  color: rgba(230,234,240,.72);
  font-size:12px;
}
.footer__links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.footer__links a{
  text-decoration:none;
  padding:6px 8px;
  border-radius:12px;
}
.footer__links a:hover{ background: rgba(108,99,255,.10); }

.footer__social{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.social{
  display:flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  padding:8px 10px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  color: rgba(230,234,240,.86);
}
.social:hover{
  background: rgba(108,99,255,.10);
  border-color: rgba(108,99,255,.22);
  color: rgba(230,234,240,.94);
}

.social svg{
  width:18px;
  height:18px;
  opacity:.92;
  fill: currentColor;
}
.social svg path{
  fill: currentColor;
}

@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__metrics{ grid-template-columns: 1fr; }
  .proofRow{ grid-template-columns: 1fr; }
  .pillars{ grid-template-columns: 1fr; }
  .trustGrid{ grid-template-columns: 1fr; }
  .howSteps{ grid-template-columns: 1fr; }
  .contactHeader{ flex-direction:column; }
  .contactGrid{ grid-template-columns: 1fr; }

  .hero__h1{ font-size:44px; }
  .metaRow{ grid-template-columns: 1fr; gap:8px; }

  .privacyTop{ flex-direction:column; align-items:flex-start; }
}

@media (max-width: 720px){
  .menu{ display:none; }
  .navToggle{ display:inline-flex; }

  .nav__right .btn{ display:none; }

  .hero__h1{ font-size:38px; }
  .formGrid{ grid-template-columns: 1fr; }
  .brand__logo{ height:34px; }

  .logoStrip__top{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }
  .logoStrip__badges{
    width:100%;
    display:grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap:8px;
  }
  .badgeMini{
    width:100%;
    text-align:center;
    padding:10px 10px;
    border-radius:999px;
  }

  .logoStrip__row{
    width:100%;
    display:grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap:10px;
  }
  .mark{
    width:100%;
    text-align:center;
    padding:12px 10px;
    border-radius:16px;
    background: rgba(108,99,255,.035);
    border-color: rgba(108,99,255,.14);
  }

  .proof{
    padding:12px;
    border-radius:18px;
  }
  .proof__v{
    margin-top:4px;
    line-height:1.35;
  }

  .nav__inner{
    align-items:center;
  }
  .brand{
    align-items:center;
  }
  .brand__logo{
    top:0;
  }

  .hero__actions{
    flex-direction:column;
    align-items:stretch;
  }
  .hero__actions .btn{
    width:100%;
    justify-content:center;
  }

  .hero__chips{
    display:grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap:10px;
  }
  .chip{
    width:100%;
    text-align:center;
  }

  .contactHeader__right{
    width:100%;
    justify-content:stretch;
  }
  .contactHeader__right .btn{
    width:100%;
  }

  .pillBtn{
    display:none;
  }
  .contactInfo__kickerRow{
    justify-content:flex-start;
  }

  .social span{
    display:none;
  }
  .social{
    padding:10px 10px;
    gap:0;
  }

  .footerPrivacy{
    display:none;
  }

  .navToggle{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    gap:6px !important;
  }
  .navToggle::before,
  .navToggle::after{
    content:none !important;
    display:none !important;
  }
  .navToggle__bar{
    width:22px !important;
    height:3px !important;
    border-radius:999px !important;
    background: rgba(230,234,240,.92) !important;
    display:block !important;
  }
}
.sparkline{
  width:100%;
  height:120px;
  position:relative;
  overflow:hidden;
}

.sparkline::before{
  content:"";
  position:absolute;
  inset:0;

  background: linear-gradient(90deg, #CF3FDD, #B347FF, #8B5CF6);

  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 600 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 92 C 60 90, 120 88, 180 84 C 240 80, 300 78, 360 74 C 420 70, 480 67, 540 62 C 570 60, 590 58, 600 56' stroke='white' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 600 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 92 C 60 90, 120 88, 180 84 C 240 80, 300 78, 360 74 C 420 70, 480 67, 540 62 C 570 60, 590 58, 600 56' stroke='white' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");

  -webkit-mask-size:100% 100%;
  mask-size:100% 100%;

  filter: drop-shadow(0 0 6px rgba(207,63,221,.7))
        drop-shadow(0 0 14px rgba(207,63,221,.5));
}


.sparkline::after{
  content:"";
  position:absolute;
  inset:0;

  background: linear-gradient(to top, rgba(207,63,221,0.18), transparent);

  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 600 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 110 L0 92 C 60 90, 120 88, 180 84 C 240 80, 300 78, 360 74 C 420 70, 480 67, 540 62 C 570 60, 590 58, 600 56 L600 110 Z' fill='white'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 600 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 110 L0 92 C 60 90, 120 88, 180 84 C 240 80, 300 78, 360 74 C 420 70, 480 67, 540 62 C 570 60, 590 58, 600 56 L600 110 Z' fill='white'/%3E%3C/svg%3E");

  -webkit-mask-size:100% 100%;
  mask-size:100% 100%;
}


.sparkline{
  border-bottom:2px solid rgba(255,255,255,.10);
}
.metric--highlight{
  border-color: rgba(179,71,255,.6);
  background: rgba(179,71,255,.12);

  box-shadow:
    0 0 40px rgba(179,71,255,.25),
    0 20px 60px rgba(0,0,0,.6);

  transform: translateY(-6px) scale(1.02);
  z-index:2;
}
section{
  position:relative;
  z-index:1;
}
@media (max-width: 768px){

  .hero::before,
  .hero::after,
  .section--contact::before,
  .section--contact::after{
    display:none !important;
  }

}

@media (max-width: 768px){

  .panel__kpis{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
  }

  .kpi{
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    padding:12px;
  }

  .kpi__label{
    min-height:28px;
  }

  .kpi__value{
    min-height:48px;
    display:flex;
    align-items:center;
  }

  .kpi__value{
    justify-content:flex-start;
  }

  .kpi__value svg,
  .kpi__value span:first-child{
    margin-right:6px;
    transform:translateY(1px);
  }

  .kpi__hint{
    margin-top:6px;
  }


  .panel__status{
    display:flex;
    align-items:center;
    gap:6px;
  }

}
.kpi__value{
  font-size:24px;
}
@media (max-width: 768px){

  .section::before{
    display:none !important;
  }

}
@media (max-width: 768px){

  .hero{
    -webkit-mask-image: none !important;
    mask-image: none !important;
    overflow: visible !important;
  }

}
