/* ViSiB Studio v10 — safe visual layer */

:root{
  --v10-blue:#6C63FF;
  --v10-pink:#FF4081;
  --v10-cyan:#00E5FF;
  --v10-dark:#070A12;
}

body{
  background:
    radial-gradient(circle at 20% 10%, rgba(108,99,255,.22), transparent 32%),
    radial-gradient(circle at 80% 18%, rgba(255,64,129,.14), transparent 34%),
    linear-gradient(135deg,#070A12,#101827,#070A12) !important;
}

body::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:0;
  background-image:radial-gradient(circle,rgba(255,255,255,.22) 1px,transparent 1px);
  background-size:42px 42px;
  opacity:.16;
  animation:v10Particles 22s linear infinite;
}

@keyframes v10Particles{
  from{background-position:0 0}
  to{background-position:420px 420px}
}

.hero-visib{
  position:relative;
  overflow:hidden;
  isolation:isolate;
}

.hero-visib::before{
  content:"";
  position:absolute;
  inset:-35%;
  z-index:-1;
  background:linear-gradient(120deg,var(--v10-blue),var(--v10-pink),var(--v10-cyan),var(--v10-blue));
  background-size:300% 300%;
  filter:blur(100px);
  opacity:.20;
  animation:v10Liquid 14s ease infinite;
}

@keyframes v10Liquid{
  0%,100%{background-position:0% 50%;transform:rotate(0deg)}
  50%{background-position:100% 50%;transform:rotate(8deg)}
}

.card,
.price-mini,
.demo-card-link{
  border-color:rgba(255,255,255,.13) !important;
  box-shadow:0 20px 70px rgba(0,0,0,.20);
}

.card:hover,
.price-mini:hover,
.demo-card-link:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 80px rgba(108,99,255,.22);
}

.hero-badge{
  box-shadow:0 0 28px rgba(108,99,255,.26);
}

.btn-primary{
  box-shadow:0 0 30px rgba(108,99,255,.26);
}

.lang-switch a{
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  padding:6px 10px;
}

.lang-switch a.active{
  background:linear-gradient(135deg,var(--v10-blue),var(--v10-pink));
  color:#fff !important;
}

.v10-ai-line{
  margin:18px auto 24px;
  max-width:760px;
  padding:14px 18px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  background:rgba(0,0,0,.28);
  backdrop-filter:blur(16px);
  color:#dbeafe;
  font-weight:800;
  box-shadow:0 0 34px rgba(108,99,255,.18);
}

.v10-ai-line span{
  color:#00E5FF;
}

.card,
.price-mini,
.demo-card-link{
  position:relative;
  overflow:hidden;
  transform-style:preserve-3d;
  will-change:transform;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card::before,
.price-mini::before,
.demo-card-link::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(0,229,255,.18), transparent 34%);
  opacity:0;
  transition:.2s;
  pointer-events:none;
}

.card:hover::before,
.price-mini:hover::before,
.demo-card-link:hover::before{
  opacity:1;
}

.v10-marquee{
  overflow:hidden;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.035);
  padding:16px 0;
  position:relative;
  z-index:2;
}

.v10-marquee-track{
  display:flex;
  gap:18px;
  width:max-content;
  animation:v10Marquee 32s linear infinite;
}

.v10-chip{
  white-space:nowrap;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:#e5e7eb;
  font-weight:800;
}

@keyframes v10Marquee{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

.v10-contact-widget{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:99999;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

.v10-contact-panel{
  width:292px;
  margin-bottom:12px;
  padding:14px;
  border-radius:24px;
  background:rgba(7,10,18,.88);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(22px);
  box-shadow:0 24px 80px rgba(0,0,0,.52);
  transform:translateY(14px) scale(.96);
  opacity:0;
  pointer-events:none;
  transition:.25s ease;
}

.v10-contact-widget.open .v10-contact-panel{
  transform:translateY(0) scale(1);
  opacity:1;
  pointer-events:auto;
}

.v10-contact-title{
  color:#fff;
  font-weight:900;
  margin-bottom:10px;
}

.v10-contact-panel a,
.v10-contact-panel button{
  display:block;
  width:100%;
  margin-top:8px;
  padding:12px 14px;
  border-radius:15px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.08);
  color:#fff;
  text-decoration:none;
  font-weight:800;
  cursor:pointer;
  text-align:center;
}

.v10-contact-toggle{
  width:64px;
  height:64px;
  border-radius:999px;
  border:0;
  float:right;
  background:linear-gradient(135deg,#6C63FF,#FF4081);
  color:#fff;
  font-size:26px;
  cursor:pointer;
  box-shadow:0 0 34px rgba(108,99,255,.55);
}

.v10-mini-form{
  display:none;
  margin-top:10px;
}

.v10-contact-widget.form-open .v10-mini-form{
  display:block;
}

.v10-mini-form input,
.v10-mini-form textarea{
  width:100%;
  margin-top:8px;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.08);
  color:#fff;
  outline:none;
  box-sizing:border-box;
}

.v10-mini-form input::placeholder,
.v10-mini-form textarea::placeholder{
  color:rgba(255,255,255,.58);
}

.hero-visib + .v10-marquee + .section .grid{
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  max-width:920px;
  margin-left:auto;
  margin-right:auto;
}

@media(max-width:768px){
  .hero-visib + .v10-marquee + .section .grid{
    grid-template-columns:1fr !important;
  }
}

/* v10 fix: first workflow grid 2x2 */
.hero-visib + .v10-marquee + .section .grid{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(260px,1fr)) !important;
  gap:22px !important;
  max-width:960px !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* v10 fix: do not fight JS 3D transform */
.card:hover,
.price-mini:hover,
.demo-card-link:hover{
  transform:none;
}

@media(max-width:768px){
  .hero-visib + .v10-marquee + .section .grid{
    grid-template-columns:1fr !important;
  }

  .v10-contact-widget{
    right:12px;
    bottom:12px;
  }

  .v10-contact-panel{
    width:calc(100vw - 24px);
    max-width:320px;
  }
}

/* v10 compact scale fix */
.hero-visib{
  padding-top:70px !important;
  padding-bottom:55px !important;
}

.hero-visib h1{
  font-size:clamp(34px,4.2vw,58px) !important;
  line-height:1.06 !important;
}

.hero-visib p{
  font-size:clamp(16px,1.6vw,21px) !important;
}

.v10-ai-line{
  max-width:620px !important;
  padding:11px 16px !important;
  font-size:15px !important;
}

.section{
  padding-top:58px !important;
  padding-bottom:58px !important;
}

.section-header{
  margin-bottom:28px !important;
}

.section-header h2{
  font-size:clamp(28px,3vw,42px) !important;
}

.card{
  padding:24px !important;
}

.card-icon{
  font-size:34px !important;
  margin-bottom:12px !important;
}

.card h3{
  font-size:20px !important;
}

.card p{
  font-size:15px !important;
  line-height:1.55 !important;
}

.demo-preview{
  font-size:44px !important;
  min-height:110px !important;
}

.demo-label{
  font-size:15px !important;
}

.price-mini{
  flex-basis:190px !important;
  padding:17px !important;
}

.price-mini h4{
  font-size:16px !important;
}

.price-mini .pricetag{
  font-size:22px !important;
}

.v10-contact-toggle{
  width:58px !important;
  height:58px !important;
  font-size:24px !important;
}

/* v10 v8: compact language panel */
.nav{
  padding:10px 12px !important;
}

.nav-inner{
  gap:5px !important;
}

.logo{
  font-size:18px !important;
  line-height:1.1 !important;
}

.logo span{
  display:inline-block;
  opacity:0;
  transform:translateY(-18px) scale(.5) rotate(-8deg);
  animation:v10LogoLetter .55s ease forwards;
}

@keyframes v10LogoLetter{
  to{
    opacity:1;
    transform:translateY(0) scale(1) rotate(0);
  }
}

.lang-switch{
  gap:5px !important;
  flex-wrap:wrap !important;
  max-width:760px !important;
}

.lang-switch a{
  font-size:12px !important;
  padding:4px 8px !important;
  line-height:1.1 !important;
  border-radius:999px !important;
}

/* v10 v8: richer section background */
.section{
  position:relative;
  overflow:hidden;
}

.section::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 12% 18%, rgba(0,229,255,.07), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(255,64,129,.06), transparent 30%),
    linear-gradient(120deg, rgba(255,255,255,.018), transparent 40%, rgba(108,99,255,.025));
  z-index:0;
}

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

/* v10 v8: reveal cards */
.v10-reveal{
  opacity:0;
  transition:
    opacity .65s ease,
    transform .65s cubic-bezier(.2,.8,.2,1),
    box-shadow .18s ease,
    border-color .18s ease;
}

.v10-reveal.from-left{
  transform:translateX(-44px) translateY(18px);
}

.v10-reveal.from-right{
  transform:translateX(44px) translateY(18px);
}

.v10-reveal.show{
  opacity:1;
  transform:translateX(0) translateY(0);
}

/* keep JS 3D active after reveal */
.v10-reveal.show:hover{
  transition:transform .16s ease, box-shadow .18s ease, border-color .18s ease;
}

/* v10 v8: 3D buttons */
.btn,
.v10-contact-panel a,
.v10-contact-panel button{
  transform-style:preserve-3d;
  will-change:transform;
  transition:transform .16s ease, box-shadow .2s ease, filter .2s ease;
}

.btn:hover,
.v10-contact-panel a:hover,
.v10-contact-panel button:hover{
  filter:brightness(1.12);
  box-shadow:0 18px 42px rgba(108,99,255,.32);
}

/* v10 v8: pricing desktop bigger */
@media(min-width:1024px){
  .price-row{
    justify-content:center !important;
    gap:20px !important;
  }

  .price-mini{
    flex:0 0 230px !important;
    min-height:330px !important;
    padding:22px !important;
  }
}

/* v10 v8: pricing mobile fully visible */
@media(max-width:768px){
  .lang-switch{
    max-width:100% !important;
  }

  .lang-switch a{
    font-size:11px !important;
    padding:4px 7px !important;
  }

  .price-row{
    display:grid !important;
    grid-template-columns:1fr !important;
    overflow:visible !important;
    gap:14px !important;
  }

  .price-mini{
    flex:auto !important;
    width:100% !important;
    min-height:auto !important;
  }

  .v10-reveal.from-left,
  .v10-reveal.from-right{
    transform:translateY(24px);
  }

  .v10-reveal.show{
    transform:translateY(0);
  }
}

/* v10 v9: header + hero spacing fix */
.nav{
  position:relative !important;
  z-index:20 !important;
  transform-style:preserve-3d;
  perspective:900px;
}

.nav-inner{
  padding:6px 10px !important;
  border-radius:22px !important;
  background:rgba(7,10,18,.42) !important;
  backdrop-filter:blur(18px);
  box-shadow:0 18px 44px rgba(0,0,0,.24);
  transform:perspective(900px) rotateX(2deg);
}

.hero-visib{
  padding-top:105px !important;
}

/* v10 v9: compact logo letters */
.logo{
  white-space:nowrap !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:0 !important;
}

.logo span{
  font-size:18px !important;
}

/* v10 v9: pricing badge no ugly wrap */
.price-mini.featured h4{
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  gap:7px !important;
}

.price-mini.featured h4 span{
  display:inline-block !important;
  max-width:100% !important;
  white-space:normal !important;
  line-height:1.15 !important;
  font-size:10px !important;
  padding:4px 8px !important;
}

/* v10 v9: demo duplicate CTA visual cleanup */
.demo-grid > div[style*="text-align:center"]:not(:first-of-type){
  display:none !important;
}

/* v10 v9: stronger 3D buttons */
.btn{
  position:relative;
  overflow:hidden;
}

.btn::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,.22),transparent);
  transform:translateX(-120%);
  transition:.45s;
}

.btn:hover::before{
  transform:translateX(120%);
}

@media(max-width:768px){
  .hero-visib{
    padding-top:120px !important;
  }

  .nav-inner{
    transform:none !important;
  }

  .price-mini.featured h4 span{
    font-size:9px !important;
  }
}

/* v10 v10: final header compact + depth */
.nav{
  padding-top:14px !important;
  padding-bottom:8px !important;
}

.nav-inner{
  max-width:760px !important;
  margin:0 auto !important;
}

.hero-visib{
  padding-top:128px !important;
}

.hero-badge{
  transform-style:preserve-3d;
  animation:v10BadgeFloat 3.2s ease-in-out infinite !important;
}

@keyframes v10BadgeFloat{
  0%,100%{
    transform:perspective(800px) rotateX(0deg) translateY(0);
  }
  50%{
    transform:perspective(800px) rotateX(8deg) translateY(-5px);
  }
}

/* v10 v10: cleaner popular badge */
.price-mini.featured{
  flex-basis:255px !important;
}

.price-mini.featured h4{
  line-height:1.25 !important;
}

.price-mini.featured h4 span{
  white-space:nowrap !important;
  font-size:9px !important;
  letter-spacing:.3px !important;
}

/* v10 v10: mobile price visibility */
@media(max-width:768px){
  .hero-visib{
    padding-top:138px !important;
  }

  .price-row{
    padding-left:0 !important;
    padding-right:0 !important;
  }

  .price-mini,
  .price-mini.featured{
    flex-basis:auto !important;
    width:100% !important;
    max-width:100% !important;
  }

  .price-mini.featured h4 span{
    white-space:normal !important;
  }
}

/* v10 v11: demo CTA single centered */
.demo-grid > div[style*="text-align:center"]{
  grid-column:1 / -1 !important;
  text-align:center !important;
}

/* v10 v11: sticky footer overlap fix */
.footer{
  padding-bottom:110px !important;
}

#stickyCta{
  left:50% !important;
  right:auto !important;
  transform:translateX(-50%) !important;
  max-width:520px !important;
  width:calc(100% - 28px) !important;
  bottom:14px !important;
}

#stickyCta a{
  border-radius:18px !important;
  box-shadow:0 14px 42px rgba(0,122,255,.45) !important;
}

/* v10 v11: 3D neon marquee */
.v10-marquee{
  perspective:900px;
}

.v10-marquee-track{
  align-items:center;
}

.v10-chip{
  transform-style:preserve-3d;
  transform:perspective(700px) rotateX(8deg) translateZ(0);
  background:linear-gradient(135deg,rgba(108,99,255,.18),rgba(255,64,129,.10)) !important;
  border-color:rgba(108,99,255,.28) !important;
  box-shadow:
    0 0 14px rgba(108,99,255,.18),
    inset 0 0 16px rgba(255,255,255,.04);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease,
    background .25s ease,
    color .25s ease;
}

.v10-chip.is-center{
  color:#fff !important;
  background:linear-gradient(135deg,rgba(0,229,255,.34),rgba(108,99,255,.34),rgba(255,64,129,.25)) !important;
  border-color:rgba(0,229,255,.75) !important;
  transform:perspective(700px) rotateX(0deg) translateZ(28px) scale(1.08);
  box-shadow:
    0 0 18px rgba(0,229,255,.55),
    0 0 38px rgba(108,99,255,.36),
    inset 0 0 18px rgba(255,255,255,.10);
}

/* v10 v12: AI neural background for sections */
.section:not(.hero):not(.hero-visib){
  background:
    linear-gradient(rgba(7,10,18,.84),rgba(7,10,18,.90)),
    url("/img/ai-bg.jpg") center/cover fixed !important;
}

.section:nth-of-type(even):not(.hero):not(.hero-visib){
  background:
    linear-gradient(rgba(7,10,18,.78),rgba(7,10,18,.88)),
    url("/img/ai-bg.jpg") center/cover fixed !important;
}

@media(max-width:768px){
  .section:not(.hero):not(.hero-visib){
    background:
      linear-gradient(rgba(7,10,18,.88),rgba(7,10,18,.93)),
      url("/img/ai-bg.jpg") center/cover scroll !important;
  }
}

/* v10 v13: footer, language panel, logo particle fix */

/* footer above sticky CTA */
.footer{
  padding-bottom:150px !important;
}

#stickyCta{
  bottom:18px !important;
  max-width:460px !important;
}

/* language panel -20% smaller */
.lang-switch{
  gap:4px !important;
  max-width:620px !important;
}

.lang-switch a{
  font-size:10px !important;
  padding:3px 6px !important;
  line-height:1 !important;
}

/* logo particle assembly */
.logo{
  position:relative !important;
  overflow:visible !important;
  text-shadow:
    0 0 10px rgba(0,229,255,.45),
    0 0 22px rgba(108,99,255,.35);
}

.logo::before{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:120px;
  height:120px;
  transform:translate(-50%,-50%);
  background:
    radial-gradient(circle,rgba(0,229,255,.85) 0 2px,transparent 3px),
    radial-gradient(circle,rgba(255,64,129,.65) 0 2px,transparent 3px),
    radial-gradient(circle,rgba(255,255,255,.8) 0 1px,transparent 2px);
  background-size:28px 28px,36px 36px,18px 18px;
  opacity:0;
  filter:blur(.2px);
  animation:v10LogoParticles 1.3s ease forwards;
  pointer-events:none;
}

.logo span{
  animation:v10LogoAssemble .75s cubic-bezier(.2,.8,.2,1) forwards !important;
  opacity:0;
  transform:translate(calc((var(--i,0) - 6) * -10px), -18px) scale(.4);
}

@keyframes v10LogoParticles{
  0%{
    opacity:1;
    transform:translate(-50%,-50%) scale(1.45) rotate(0deg);
  }
  65%{
    opacity:.85;
    transform:translate(-50%,-50%) scale(.55) rotate(90deg);
  }
  100%{
    opacity:0;
    transform:translate(-50%,-50%) scale(.2) rotate(160deg);
  }
}

@keyframes v10LogoAssemble{
  0%{
    opacity:0;
    filter:blur(8px);
    transform:translateY(-24px) scale(.45);
  }
  70%{
    opacity:1;
    filter:blur(1px);
    transform:translateY(3px) scale(1.08);
  }
  100%{
    opacity:1;
    filter:blur(0);
    transform:translateY(0) scale(1);
  }
}

@media(max-width:768px){
  .footer{
    padding-bottom:160px !important;
  }

  #stickyCta{
    max-width:calc(100% - 24px) !important;
  }

  .lang-switch a{
    font-size:9px !important;
    padding:3px 5px !important;
  }
}
/* v10 v14: mobile badge + SEO text layout */
.hero-badge{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  max-width:min(92vw,760px) !important;
  white-space:normal !important;
  text-align:center !important;
  line-height:1.35 !important;
}

@media(max-width:768px){
  .hero-badge{
    max-width:calc(100vw - 32px) !important;
    font-size:13px !important;
    padding:9px 12px !important;
    border-radius:999px !important;
  }

  .hero-content > div:first-child{
    margin-bottom:16px !important;
  }
}

/* SEO section text should fill the block */
.section h2 + p,
.section h2 + p + p,
.section h2 + p + p + p,
.section h2 + p + p + p + p{
  text-align:justify !important;
  text-align-last:left !important;
}

.section .container[style*="max-width:900px"]{
  max-width:1080px !important;
}

.section .container[style*="max-width:900px"] p{
  font-size:16px !important;
  line-height:1.9 !important;
  text-align:justify !important;
  text-align-last:left !important;
}

/* v10 v14: scroll storytelling */
.v10-story{
  background:
    linear-gradient(135deg,rgba(7,10,18,.92),rgba(11,18,32,.88)),
    radial-gradient(circle at 20% 20%,rgba(0,229,255,.16),transparent 30%),
    radial-gradient(circle at 80% 40%,rgba(255,64,129,.12),transparent 32%) !important;
}

.v10-story-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  position:relative;
}

.v10-story-grid::before{
  content:"";
  position:absolute;
  left:8%;
  right:8%;
  top:42px;
  height:2px;
  background:linear-gradient(90deg,rgba(0,229,255,.1),rgba(0,229,255,.8),rgba(255,64,129,.75),rgba(108,99,255,.1));
  box-shadow:0 0 18px rgba(0,229,255,.45);
}

.v10-story-card{
  position:relative;
  z-index:1;
  padding:24px 18px;
  border-radius:24px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.13);
  backdrop-filter:blur(18px);
  text-align:center;
  box-shadow:0 24px 70px rgba(0,0,0,.28);
  transform-style:preserve-3d;
}

.v10-story-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:24px;
  background:radial-gradient(circle at 50% 0%,rgba(0,229,255,.18),transparent 45%);
  opacity:.75;
  pointer-events:none;
}

.v10-story-num{
  color:#00E5FF;
  font-size:13px;
  font-weight:900;
  letter-spacing:.18em;
  margin-bottom:8px;
}

.v10-story-icon{
  width:58px;
  height:58px;
  margin:0 auto 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:linear-gradient(135deg,rgba(108,99,255,.8),rgba(255,64,129,.65));
  box-shadow:0 0 28px rgba(0,229,255,.35);
  font-size:26px;
}

.v10-story-card h3{
  color:#fff;
  font-size:20px;
  margin-bottom:8px;
}

.v10-story-card p{
  color:#cbd5e1;
  line-height:1.55;
  font-size:14px;
}

@media(max-width:900px){
  .v10-story-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .v10-story-grid::before{
    display:none;
  }
}

@media(max-width:560px){
  .v10-story-grid{
    grid-template-columns:1fr;
  }
}

/* v10 v15: Bento grid */
.v10-bento{
  background:
    linear-gradient(135deg,rgba(7,10,18,.92),rgba(8,13,28,.88)),
    radial-gradient(circle at 18% 15%,rgba(108,99,255,.22),transparent 30%),
    radial-gradient(circle at 85% 35%,rgba(0,229,255,.14),transparent 28%) !important;
}

.v10-bento-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  grid-auto-rows:minmax(180px,auto);
  gap:18px;
}

.v10-bento-card{
  position:relative;
  overflow:hidden;
  padding:24px;
  border-radius:28px;
  background:
    linear-gradient(135deg,rgba(255,255,255,.09),rgba(255,255,255,.035));
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(20px);
  box-shadow:0 28px 80px rgba(0,0,0,.32);
  transform-style:preserve-3d;
}

.v10-bento-card.big{
  grid-column:span 2;
  grid-row:span 2;
}

.v10-bento-card.wide{
  grid-column:span 2;
}

.v10-bento-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(circle at var(--mx,50%) var(--my,50%),rgba(0,229,255,.22),transparent 32%);
  opacity:0;
  transition:.25s;
  pointer-events:none;
}

.v10-bento-card:hover::before{
  opacity:1;
}

.v10-bento-icon{
  width:58px;
  height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  background:linear-gradient(135deg,rgba(108,99,255,.85),rgba(255,64,129,.65));
  box-shadow:0 0 32px rgba(108,99,255,.35);
  font-size:28px;
  margin-bottom:18px;
}

.v10-bento-card h3{
  color:#fff;
  font-size:22px;
  margin-bottom:10px;
}

.v10-bento-card p{
  color:#cbd5e1;
  line-height:1.65;
  font-size:15px;
}

.v10-bento-card.big h3{
  font-size:30px;
}

.v10-bento-card.big p{
  font-size:17px;
}

@media(max-width:1024px){
  .v10-bento-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .v10-bento-card.big,
  .v10-bento-card.wide{
    grid-column:span 2;
  }
}

@media(max-width:560px){
  .v10-bento-grid{
    grid-template-columns:1fr;
  }

  .v10-bento-card.big,
  .v10-bento-card.wide{
    grid-column:span 1;
    grid-row:span 1;
  }

  .v10-bento-card{
    min-height:auto;
  }
}

/* v10 v16: effects for dynamic story/bento cards */
.v10-story-card,
.v10-bento-card{
  will-change:transform;
  transition:
    opacity .65s ease,
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease;
}

.v10-story-card:hover,
.v10-bento-card:hover{
  border-color:rgba(0,229,255,.45) !important;
  box-shadow:
    0 28px 90px rgba(0,0,0,.38),
    0 0 34px rgba(0,229,255,.18),
    0 0 54px rgba(108,99,255,.14) !important;
}

.v10-story-card::after,
.v10-bento-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,.14),transparent);
  transform:translateX(-120%);
  transition:.5s;
  pointer-events:none;
}

.v10-story-card:hover::after,
.v10-bento-card:hover::after{
  transform:translateX(120%);
}

/* v10 v17: force show dynamic sections */
.v10-story,
.v10-bento{
  display:block !important;
  opacity:1 !important;
  visibility:visible !important;
}

.v10-story-card,
.v10-bento-card{
  opacity:1 !important;
  visibility:visible !important;
}

/* v10 v20: final layout fixes */

/* workflow block 2x2 */
.hero-visib + .v10-marquee + .section .grid{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(280px,1fr)) !important;
  gap:22px !important;
  max-width:960px !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

/* demo grid CTA centered */
.demo-grid{
  display:grid !important;
}

.demo-grid > div[style*="text-align:center"]{
  grid-column:1 / -1 !important;
  justify-self:center !important;
  width:100% !important;
  text-align:center !important;
}

/* section subtitles centered */
.section-subtitle,
.section-header p,
.section-header .section-subtitle{
  text-align:center !important;
  text-align-last:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
  max-width:760px !important;
}

/* don't justify short subtitles */
.section-header p{
  display:block !important;
}

/* keep SEO long text justified only in SEO block */
.section .container[style*="max-width:900px"] p{
  text-align:justify !important;
  text-align-last:left !important;
}

/* mobile */
@media(max-width:768px){
  .hero-visib + .v10-marquee + .section .grid{
    grid-template-columns:1fr !important;
  }

  .section-subtitle,
  .section-header p,
  .section-header .section-subtitle{
    text-align:center !important;
    text-align-last:center !important;
  }
}

/* v21 subtitle centering */

.section-header{
  text-align:center !important;
}

.section-header h2{
  text-align:center !important;
}

.section-header p{
  text-align:center !important;
}

.section-subtitle{
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
  max-width:760px !important;
}

/* v21 workflow 2x2 */

.section-dark .grid{
  max-width:1000px;
  margin:0 auto;
}

.section-dark .grid .card{
  min-height:280px;
}

.hero-visib + .section .grid{
  grid-template-columns:repeat(2,1fr) !important;
}

@media(max-width:768px){
  .hero-visib + .section .grid{
     grid-template-columns:1fr !important;
  }
}

/* v21 center all v10 blocks */

.v10-story .section-header,
.v10-bento .section-header{
  text-align:center !important;
}

.v10-story h2,
.v10-bento h2{
  text-align:center !important;
}

.v10-story .section-subtitle,
.v10-bento .section-subtitle{
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
  max-width:900px !important;
}

/* v10 v21: AI Network Canvas Background */
#v10-ai-network{
  position:fixed;
  inset:0;
  width:100vw;
  height:100vh;
  pointer-events:none;
  z-index:0;
  opacity:.42;
  mix-blend-mode:screen;
}

body > *:not(#v10-ai-network){
  position:relative;
  z-index:1;
}

.hero-visib{
  isolation:isolate;
}

.hero-visib::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background:
    radial-gradient(circle at 50% 18%,rgba(0,229,255,.16),transparent 28%),
    radial-gradient(circle at 80% 30%,rgba(255,64,129,.10),transparent 32%);
}

/* v10 v21.1: stronger visible AI network */
#v10-ai-network{
  z-index:0 !important;
  opacity:.95 !important;
  mix-blend-mode:screen !important;
  filter:drop-shadow(0 0 8px rgba(0,229,255,.55));
}

body::after{
  opacity:.08 !important;
}

.section::before{
  opacity:.65 !important;
}

/* v10 v22: Infinite Demo Carousel */
.demo-grid.v22-demo-carousel{
  display:flex !important;
  flex-wrap:nowrap !important;
  gap:18px !important;
  overflow:hidden !important;
  width:100% !important;
  max-width:1200px !important;
  margin:0 auto !important;
  padding:18px 0 28px !important;
  position:relative;
  mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
}

.demo-grid.v22-demo-carousel .demo-card-link{
  flex:0 0 220px !important;
  min-width:220px !important;
  transform-style:preserve-3d;
  animation:v22DemoLoop 38s linear infinite;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease,
    filter .25s ease;
}

.demo-grid.v22-demo-carousel:hover .demo-card-link{
  animation-play-state:paused;
}

.demo-grid.v22-demo-carousel .demo-card-link.v22-center{
  transform:perspective(900px) translateZ(36px) scale(1.12) !important;
  z-index:5;
  border-color:rgba(0,229,255,.65) !important;
  box-shadow:
    0 0 26px rgba(0,229,255,.42),
    0 28px 80px rgba(108,99,255,.28) !important;
  filter:brightness(1.18);
}

.demo-grid.v22-demo-carousel .demo-preview{
  min-height:120px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  font-size:50px !important;
}

.demo-grid.v22-demo-carousel > div[style*="text-align:center"]{
  position:absolute !important;
  left:50% !important;
  bottom:-68px !important;
  transform:translateX(-50%) !important;
  width:auto !important;
  z-index:10;
}

.demo-grid.v22-demo-carousel{
  margin-bottom:90px !important;
}

@keyframes v22DemoLoop{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(calc(-100% - 18px));
  }
}

@media(max-width:768px){
  .demo-grid.v22-demo-carousel .demo-card-link{
    flex-basis:175px !important;
    min-width:175px !important;
  }

  .demo-grid.v22-demo-carousel .demo-preview{
    min-height:96px !important;
    font-size:42px !important;
  }
}

/* v10 v22.1: fixed carousel track */
.demo-grid.v22-demo-carousel{
  display:block !important;
  overflow:hidden !important;
  max-width:1200px !important;
  margin:0 auto 90px !important;
  padding:18px 0 34px !important;
  position:relative !important;
  min-height:230px !important;
  mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
}

.v22-demo-track{
  display:flex !important;
  flex-wrap:nowrap !important;
  gap:18px !important;
  width:max-content !important;
  animation:v22TrackLoop 42s linear infinite !important;
}

.demo-grid.v22-demo-carousel:hover .v22-demo-track{
  animation-play-state:paused !important;
}

.v22-demo-track .demo-card-link{
  flex:0 0 220px !important;
  min-width:220px !important;
  display:block !important;
  opacity:1 !important;
  visibility:visible !important;
  transform-style:preserve-3d;
  animation:none !important;
}

.v22-demo-track .demo-card-link.v22-center{
  transform:perspective(900px) translateZ(36px) scale(1.12) !important;
  z-index:5;
  border-color:rgba(0,229,255,.65) !important;
  box-shadow:
    0 0 26px rgba(0,229,255,.42),
    0 28px 80px rgba(108,99,255,.28) !important;
  filter:brightness(1.18);
}

.v22-demo-track .demo-preview{
  min-height:120px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  font-size:50px !important;
}

.demo-grid.v22-demo-carousel > div[style*="text-align:center"]{
  position:absolute !important;
  left:50% !important;
  bottom:-58px !important;
  transform:translateX(-50%) !important;
  width:auto !important;
  z-index:10;
}

@keyframes v22TrackLoop{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

@media(max-width:768px){
  .demo-grid.v22-demo-carousel{
    min-height:200px !important;
  }

  .v22-demo-track .demo-card-link{
    flex-basis:175px !important;
    min-width:175px !important;
  }

  .v22-demo-track .demo-preview{
    min-height:96px !important;
    font-size:42px !important;
  }
}

/* v10 v222: restore stable demo grid */
.demo-grid{
  display:grid !important;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr)) !important;
  gap:18px !important;
  overflow:visible !important;
  max-width:1200px !important;
  margin:0 auto !important;
  padding:0 !important;
  min-height:auto !important;
  mask-image:none !important;
}

.demo-grid .demo-card-link{
  display:block !important;
  opacity:1 !important;
  visibility:visible !important;
  min-width:0 !important;
  flex:auto !important;
  animation:none !important;
}

.demo-grid .demo-card-link.v22-center{
  transform:none !important;
}

.v22-demo-track{
  display:contents !important;
}

/* =========================
   V23 PREMIUM PRICING 2.0
   ========================= */

.price-mini{
  position:relative;
  overflow:hidden;
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.12);
  transition:.35s ease;
}

.price-mini:hover{
  transform:translateY(-12px) scale(1.04);
  box-shadow:
    0 25px 80px rgba(0,0,0,.45),
    0 0 40px rgba(108,99,255,.25);
}

.price-mini::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:inherit;
  background:
    linear-gradient(
      135deg,
      #00E5FF,
      #6C63FF,
      #FF4081,
      #00E5FF
    );
  background-size:400% 400%;
  animation:v23Border 12s linear infinite;
  z-index:-1;
  opacity:.7;
}

@keyframes v23Border{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

/* =========================
   V24 CRM PREVIEW
   ========================= */

.v24-crm-panel{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:30px;
}

.v24-stat{
  text-align:center;
  padding:28px;
  border-radius:24px;
  background:rgba(255,255,255,.05);
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.12);
}

.v24-stat span{
  font-size:34px;
  display:block;
}

.v24-stat strong{
  display:block;
  font-size:32px;
  color:#00E5FF;
  margin-top:10px;
}

.v24-stat small{
  color:#aaa;
}

.v24-leads{
  margin-top:30px;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
}

.v24-row{
  display:flex;
  justify-content:space-between;
  padding:18px 24px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.v24-row:last-child{
  border-bottom:none;
}

.v24-row b{
  padding:6px 12px;
  border-radius:999px;
}

.v24-row .new{
  background:#00E5FF22;
  color:#00E5FF;
}

.v24-row .paid{
  background:#00ff6622;
  color:#00ff66;
}

.v24-row .work{
  background:#ffb30022;
  color:#ffb300;
}

@media(max-width:768px){
  .v24-crm-panel{
    grid-template-columns:1fr 1fr;
  }
}

/* =========================
   V25 BUILDER PREVIEW
   ========================= */

.v25-builder-wrap{
  display:grid;
  grid-template-columns:1.35fr .9fr;
  gap:26px;
  align-items:stretch;
}

.v25-builder-preview,
.v25-builder-list{
  position:relative;
  overflow:hidden;
  border-radius:30px;
  background:linear-gradient(135deg,rgba(255,255,255,.09),rgba(255,255,255,.035));
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(22px);
  box-shadow:0 30px 90px rgba(0,0,0,.36);
}

.v25-builder-preview::before,
.v25-builder-list::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at var(--mx,50%) var(--my,50%),rgba(0,229,255,.18),transparent 35%);
  opacity:.8;
  pointer-events:none;
}

.v25-builder-top{
  height:54px;
  display:flex;
  align-items:center;
  gap:8px;
  padding:0 18px;
  border-bottom:1px solid rgba(255,255,255,.1);
  background:rgba(0,0,0,.22);
}

.v25-builder-top span{
  width:11px;
  height:11px;
  border-radius:50%;
  background:#ff5f57;
}

.v25-builder-top span:nth-child(2){
  background:#ffbd2e;
}

.v25-builder-top span:nth-child(3){
  background:#28c840;
}

.v25-builder-top b{
  margin-left:12px;
  color:#cbd5e1;
  font-size:13px;
}

.v25-builder-body{
  display:grid;
  grid-template-columns:180px 1fr;
  min-height:330px;
}

.v25-builder-sidebar{
  padding:18px;
  border-right:1px solid rgba(255,255,255,.1);
  background:rgba(0,0,0,.18);
}

.v25-builder-sidebar div{
  padding:11px 13px;
  border-radius:13px;
  color:#cbd5e1;
  margin-bottom:8px;
  background:rgba(255,255,255,.04);
  font-size:14px;
}

.v25-builder-sidebar .active{
  color:#fff;
  background:linear-gradient(135deg,rgba(0,229,255,.28),rgba(108,99,255,.28));
  box-shadow:0 0 22px rgba(0,229,255,.18);
}

.v25-builder-main{
  padding:22px;
}

.v25-builder-block{
  border-radius:22px;
  padding:24px;
  background:
    linear-gradient(135deg,rgba(0,229,255,.13),rgba(108,99,255,.10)),
    rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.13);
}

.v25-builder-block small{
  color:#00E5FF;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.v25-builder-block strong{
  display:block;
  color:#fff;
  font-size:28px;
  margin:10px 0;
}

.v25-builder-block p{
  color:#cbd5e1;
}

.v25-builder-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  margin-top:16px;
}

.v25-mini-card{
  padding:16px 10px;
  text-align:center;
  border-radius:18px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  font-weight:800;
  box-shadow:inset 0 0 16px rgba(255,255,255,.035);
}

.v25-builder-list{
  padding:26px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:14px;
}

.v25-check{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 15px;
  border-radius:18px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.1);
  color:#e5e7eb;
  font-weight:700;
}

.v25-check span{
  width:28px;
  height:28px;
  flex:0 0 28px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:linear-gradient(135deg,#00E5FF,#6C63FF);
  color:#fff;
  box-shadow:0 0 18px rgba(0,229,255,.38);
}

@media(max-width:900px){
  .v25-builder-wrap{
    grid-template-columns:1fr;
  }

  .v25-builder-body{
    grid-template-columns:1fr;
  }

  .v25-builder-sidebar{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.1);
  }

  .v25-builder-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:560px){
  .v25-builder-sidebar{
    grid-template-columns:repeat(2,1fr);
  }

  .v25-builder-block strong{
    font-size:22px;
  }
}

/* =========================
   V25.1 MOBILE PERFORMANCE
   ========================= */

@media(max-width:768px){
  #v10-ai-network{
    opacity:.22 !important;
    filter:none !important;
  }

  body::after{
    opacity:.04 !important;
    animation:none !important;
  }

  .section:not(.hero):not(.hero-visib){
    background-attachment:scroll !important;
  }

  .card,
  .price-mini,
  .demo-card-link,
  .v10-story-card,
  .v10-bento-card,
  .v24-stat,
  .v24-leads,
  .v25-builder-preview,
  .v25-builder-list,
  .v25-mini-card{
    transform:none !important;
    will-change:auto !important;
  }

  .v10-reveal,
  .v10-reveal.from-left,
  .v10-reveal.from-right,
  .v10-reveal.show{
    transform:none !important;
    opacity:1 !important;
    transition:opacity .25s ease !important;
  }

  .card::before,
  .price-mini::before,
  .demo-card-link::before,
  .v10-bento-card::before,
  .v25-builder-preview::before,
  .v25-builder-list::before{
    display:none !important;
  }

  .v10-chip{
    transform:none !important;
    box-shadow:none !important;
  }

  .v10-chip.is-center{
    transform:none !important;
    box-shadow:0 0 14px rgba(0,229,255,.25) !important;
  }

  .hero-badge{
    animation:none !important;
  }
}

/* =========================
   V26 MARKETPLACE PREVIEW
   ========================= */

.v26-market-wrap{
  display:grid;
  grid-template-columns:1.4fr .75fr;
  gap:26px;
  align-items:stretch;
}

.v26-market-main,
.v26-market-side{
  position:relative;
  overflow:hidden;
  border-radius:30px;
  background:linear-gradient(135deg,rgba(255,255,255,.09),rgba(255,255,255,.035));
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(22px);
  box-shadow:0 30px 90px rgba(0,0,0,.34);
}

.v26-market-main::before,
.v26-market-side::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at var(--mx,50%) var(--my,50%),rgba(255,64,129,.16),transparent 36%),
    radial-gradient(circle at 80% 20%,rgba(0,229,255,.12),transparent 34%);
  pointer-events:none;
}

.v26-market-top{
  position:relative;
  z-index:1;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 22px;
  border-bottom:1px solid rgba(255,255,255,.1);
  background:rgba(0,0,0,.18);
}

.v26-market-top span{
  color:#fff;
  font-weight:900;
}

.v26-market-top b{
  padding:7px 12px;
  border-radius:999px;
  color:#00E5FF;
  background:rgba(0,229,255,.10);
  border:1px solid rgba(0,229,255,.25);
}

.v26-market-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  padding:22px;
}

.v26-market-card{
  min-height:155px;
  padding:18px;
  border-radius:22px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.11);
  box-shadow:inset 0 0 18px rgba(255,255,255,.035);
  transition:.25s ease;
}

.v26-market-card:hover{
  transform:translateY(-5px);
  border-color:rgba(0,229,255,.42);
  box-shadow:
    0 18px 52px rgba(0,0,0,.28),
    0 0 24px rgba(0,229,255,.16);
}

.v26-market-card.featured{
  background:linear-gradient(135deg,rgba(0,229,255,.14),rgba(108,99,255,.12));
  border-color:rgba(0,229,255,.36);
}

.v26-market-card div{
  font-size:34px;
  margin-bottom:10px;
}

.v26-market-card h3{
  color:#fff;
  font-size:18px;
  margin-bottom:6px;
}

.v26-market-card p{
  color:#cbd5e1;
  font-size:14px;
  line-height:1.45;
}

.v26-market-side{
  padding:26px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:16px;
}

.v26-market-stat{
  position:relative;
  z-index:1;
  padding:18px;
  border-radius:22px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.11);
}

.v26-market-stat strong{
  display:block;
  color:#fff;
  font-size:34px;
  line-height:1;
}

.v26-market-stat span{
  color:#cbd5e1;
  font-weight:700;
}

.v26-market-side .btn{
  position:relative;
  z-index:1;
  justify-content:center;
  margin-top:8px;
}

@media(max-width:950px){
  .v26-market-wrap{
    grid-template-columns:1fr;
  }

  .v26-market-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:560px){
  .v26-market-grid{
    grid-template-columns:1fr;
  }

  .v26-market-card{
    min-height:auto;
  }
}

/* =========================
   V27 INTEGRATIONS PREVIEW
   ========================= */

.v27-integrations-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:center;
}

.v27-orbit{
  position:relative;
  min-height:420px;
  border-radius:34px;
  background:
    radial-gradient(circle at 50% 50%,rgba(0,229,255,.16),transparent 28%),
    linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(22px);
  box-shadow:0 30px 90px rgba(0,0,0,.36);
  overflow:hidden;
}

.v27-orbit::before{
  content:"";
  position:absolute;
  inset:50px;
  border-radius:50%;
  border:1px dashed rgba(0,229,255,.28);
  animation:v27Spin 28s linear infinite;
}

.v27-orbit::after{
  content:"";
  position:absolute;
  inset:100px;
  border-radius:50%;
  border:1px dashed rgba(255,64,129,.22);
  animation:v27SpinReverse 34s linear infinite;
}

.v27-core{
  position:absolute;
  left:50%;
  top:50%;
  width:128px;
  height:128px;
  transform:translate(-50%,-50%);
  border-radius:36px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#00E5FF,#6C63FF,#FF4081);
  color:#fff;
  box-shadow:
    0 0 34px rgba(0,229,255,.48),
    0 0 80px rgba(108,99,255,.32);
  z-index:3;
}

.v27-core strong{
  font-size:24px;
  line-height:1;
}

.v27-core span{
  font-size:13px;
  font-weight:800;
  opacity:.88;
}

.v27-node{
  position:absolute;
  z-index:2;
  padding:12px 16px;
  border-radius:999px;
  color:#fff;
  font-weight:900;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(14px);
  box-shadow:0 18px 46px rgba(0,0,0,.28);
  animation:v27Float 4.8s ease-in-out infinite;
}

.v27-node.tg{left:9%;top:18%;color:#00E5FF}
.v27-node.wa{right:9%;top:20%;color:#25D366;animation-delay:.4s}
.v27-node.vk{left:10%;bottom:24%;color:#4C8BF5;animation-delay:.8s}
.v27-node.max{right:10%;bottom:23%;color:#fff;animation-delay:1.2s}
.v27-node.ig{left:37%;top:7%;color:#FF4081;animation-delay:1.6s}
.v27-node.wc{left:39%;bottom:8%;color:#28c840;animation-delay:2s}

.v27-flow{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.v27-flow-row{
  position:relative;
  display:flex;
  gap:16px;
  padding:18px;
  border-radius:24px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(18px);
  box-shadow:0 24px 70px rgba(0,0,0,.25);
}

.v27-flow-row span{
  width:36px;
  height:36px;
  flex:0 0 36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(0,229,255,.12);
  color:#00E5FF;
  font-weight:900;
  box-shadow:0 0 20px rgba(0,229,255,.18);
}

.v27-flow-row.active{
  border-color:rgba(0,229,255,.45);
  box-shadow:
    0 24px 70px rgba(0,0,0,.28),
    0 0 36px rgba(0,229,255,.18);
}

.v27-flow-row b{
  color:#fff;
  font-size:17px;
}

.v27-flow-row p{
  color:#cbd5e1;
  margin-top:4px;
  line-height:1.5;
  font-size:14px;
}

@keyframes v27Spin{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}

@keyframes v27SpinReverse{
  from{transform:rotate(360deg)}
  to{transform:rotate(0deg)}
}

@keyframes v27Float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}

@media(max-width:900px){
  .v27-integrations-wrap{
    grid-template-columns:1fr;
  }

  .v27-orbit{
    min-height:360px;
  }
}

@media(max-width:560px){
  .v27-orbit{
    min-height:320px;
  }

  .v27-node{
    font-size:12px;
    padding:9px 11px;
  }

  .v27-core{
    width:104px;
    height:104px;
    border-radius:28px;
  }
}

/* =========================
   V28 AI HERO PARTICLES
   ========================= */

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

.hero-particles-canvas{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  pointer-events:none;
  opacity:.85;
  z-index:0;
}

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