*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
  --bg:#06060e;
  --bg2:#0c0c1a;
  --bg3:#12122a;
  --surface:rgba(255,255,255,.03);
  --border:rgba(255,255,255,.06);
  --accent:#00e5ff;
  --accent2:#7c3aed;
  --accent3:#f43f5e;
  --success:#10b981;
  --text:#eef2ff;
  --text2:#8892b0;
  --radius:16px;
  --shadow:0 25px 60px -12px rgba(0,0,0,.6);
}
html{scroll-behavior:smooth}
body{
  font-family:'Inter',sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}
::selection{background:var(--accent);color:var(--bg)}

canvas#bg{
  position:fixed;
  top:0;left:0;
  width:100vw;height:100vh;
  z-index:0;
  pointer-events:none;
}

.glow-orb{
  position:fixed;
  border-radius:50%;
  filter:blur(80px);
  pointer-events:none;
  z-index:0;
}
.glow-orb.a{
  width:500px;height:500px;
  background:rgba(0,229,255,.06);
  top:-10%;left:-5%;
  animation:drift 20s ease-in-out infinite;
}
.glow-orb.b{
  width:400px;height:400px;
  background:rgba(124,58,237,.05);
  bottom:-5%;right:-5%;
  animation:drift 25s ease-in-out infinite reverse;
}
.glow-orb.c{
  width:300px;height:300px;
  background:rgba(244,63,94,.04);
  top:40%;left:50%;
  animation:drift 18s ease-in-out infinite 5s;
}
@keyframes drift{
  0%,100%{transform:translate(0,0)}
  33%{transform:translate(60px,-40px)}
  66%{transform:translate(-30px,60px)}
}

nav{
  position:fixed;
  top:0;left:0;right:0;
  z-index:100;
  padding:.8rem 2rem;
  background:rgba(6,6,14,.75);
  backdrop-filter:blur(24px) saturate(2);
  border-bottom:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.nav-logo{
  font-weight:900;
  font-size:1.4rem;
  letter-spacing:-.5px;
  display:flex;
  align-items:center;
  gap:.35rem;
}
.nav-logo .logo-icon{
  width:32px;height:32px;
  border-radius:8px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.85rem;
  color:#06060e;
  font-weight:900;
}
.nav-logo-dot{
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
.nav-links{display:flex;gap:2rem;list-style:none;align-items:center}
.nav-links a{
  color:var(--text2);
  font-size:.8rem;
  font-weight:500;
  transition:color .3s;
  position:relative;
  letter-spacing:.3px;
}
.nav-links a::after{
  content:'';
  position:absolute;
  bottom:-4px;left:0;
  width:0;height:1.5px;
  background:var(--accent);
  transition:width .3s;
  border-radius:2px;
}
.nav-links a:hover{color:var(--text)}
.nav-links a:hover::after{width:100%}
.nav-cta{
  padding:.5rem 1.2rem;
  border-radius:8px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#06060e !important;
  font-weight:600;
  font-size:.8rem;
  transition:all .3s;
}
.nav-cta::after{display:none !important}
.nav-cta:hover{transform:translateY(-1px);box-shadow:0 4px 20px rgba(0,229,255,.25)}

section{
  position:relative;
  z-index:1;
  padding:7rem 2rem;
  max-width:1200px;
  margin:0 auto;
}
.section-tag{
  font-family:'JetBrains Mono',monospace;
  font-size:.7rem;
  color:var(--accent);
  letter-spacing:4px;
  text-transform:uppercase;
  margin-bottom:.75rem;
  opacity:.6;
}
.section-title{
  font-size:clamp(2rem,4.5vw,3.2rem);
  font-weight:800;
  letter-spacing:-1.5px;
  margin-bottom:1rem;
  background:linear-gradient(135deg,#fff,var(--text2));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
.section-sub{
  color:var(--text2);
  font-size:1.05rem;
  max-width:600px;
  line-height:1.8;
}

#hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding-top:7rem;
  position:relative;
  z-index:1;
}
.hero-content{position:relative;z-index:2;max-width:900px}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  font-family:'JetBrains Mono',monospace;
  font-size:.7rem;
  padding:.35rem .9rem;
  border-radius:100px;
  background:rgba(0,229,255,.06);
  border:1px solid rgba(0,229,255,.12);
  color:var(--accent);
  margin-bottom:1.5rem;
}
.hero-badge .dot{
  width:5px;height:5px;
  border-radius:50%;
  background:var(--accent);
  animation:pulse-dot 1.5s infinite;
}
@keyframes pulse-dot{
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.3;transform:scale(.6)}
}
.hero-title{
  font-size:clamp(2.8rem,8vw,5.5rem);
  font-weight:900;
  line-height:1.04;
  letter-spacing:-2.5px;
  margin-bottom:1.5rem;
}
.hero-title .gradient{
  background:linear-gradient(135deg,var(--accent),var(--accent2),var(--accent3));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
.hero-title .outline{
  -webkit-text-fill-color:transparent;
  -webkit-text-stroke:1.2px var(--text);
}
.typing-wrap{
  display:inline-block;
  border-right:2px solid var(--accent);
  padding-right:3px;
  animation:cursor-blink .8s step-end infinite;
  color:var(--accent);
}
@keyframes cursor-blink{
  50%{border-color:transparent}
}
.hero-text{
  font-size:1.1rem;
  color:var(--text2);
  max-width:620px;
  line-height:1.9;
  margin-bottom:2.5rem;
}
.hero-highlight{color:var(--text)}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap}
.hero-stats{
  display:flex;
  gap:3rem;
  margin-top:3.5rem;
  padding-top:2.5rem;
  border-top:1px solid var(--border);
}
.hero-stat{text-align:left}
.hero-stat h4{
  font-size:2rem;
  font-weight:800;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  line-height:1;
}
.hero-stat .stat-label{
  font-size:.7rem;
  color:var(--text2);
  font-family:'JetBrains Mono',monospace;
  margin-top:.25rem;
  letter-spacing:.5px;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  padding:.85rem 2rem;
  border-radius:10px;
  font-weight:600;
  font-size:.9rem;
  transition:all .35s;
  cursor:pointer;
  border:none;
  text-decoration:none;
}
.btn-primary{
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#06060e;
  box-shadow:0 4px 25px rgba(0,229,255,.2);
}
.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 40px rgba(0,229,255,.35);
}
.btn-ghost{
  background:transparent;
  border:1px solid var(--border);
  color:var(--text);
}
.btn-ghost:hover{
  border-color:var(--accent);
  background:rgba(0,229,255,.04);
  transform:translateY(-3px);
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:1.5rem;
  margin-top:3rem;
}
.service-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:2.8rem 2rem;
  transition:all .4s;
  position:relative;
  overflow:hidden;
  cursor:default;
}
.service-card::before{
  content:'';
  position:absolute;
  top:0;left:0;
  width:100%;height:3px;
  background:linear-gradient(90deg,var(--accent),var(--accent2),var(--accent3));
  opacity:0;
  transition:opacity .4s;
}
.service-card:hover{
  border-color:rgba(0,229,255,.12);
  transform:translateY(-6px);
  box-shadow:var(--shadow);
}
.service-card:hover::before{opacity:1}
.service-card .icon{
  width:52px;height:52px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.3rem;
  margin-bottom:1.5rem;
  border:1px solid var(--border);
  position:relative;
  overflow:hidden;
}
.service-card .icon::after{
  content:'';
  position:absolute;
  inset:0;
  opacity:.1;
}
.service-card:nth-child(1) .icon{background:rgba(0,229,255,.08);color:var(--accent)}
.service-card:nth-child(2) .icon{background:rgba(124,58,237,.08);color:var(--accent2)}
.service-card:nth-child(3) .icon{background:rgba(244,63,94,.08);color:var(--accent3)}
.service-card h3{font-size:1.2rem;font-weight:700;margin-bottom:.75rem}
.service-card p{color:var(--text2);font-size:.88rem;line-height:1.75}

.timeline{
  position:relative;
  margin-top:3rem;
  padding-left:3rem;
}
.timeline::before{
  content:'';
  position:absolute;
  left:11px;top:0;
  width:2px;
  height:100%;
  background:linear-gradient(180deg,var(--accent),var(--accent2),transparent);
}
.timeline-item{
  position:relative;
  margin-bottom:2.5rem;
  padding-left:1.5rem;
}
.timeline-item:last-child{margin-bottom:0}
.timeline-item .dot{
  position:absolute;
  left:-3rem;
  top:4px;
  width:24px;height:24px;
  border-radius:50%;
  border:2px solid var(--accent);
  background:var(--bg);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.6rem;
  font-weight:700;
  color:var(--accent);
  font-family:'JetBrains Mono',monospace;
}
.timeline-item .dot.current{
  background:var(--accent);
  color:var(--bg);
  box-shadow:0 0 20px rgba(0,229,255,.3);
}
.timeline-item h4{font-size:1.1rem;font-weight:700;margin-bottom:.3rem}
.timeline-item p{color:var(--text2);font-size:.85rem;line-height:1.7}

.features-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:1.5rem;
  margin-top:3rem;
}
.feature-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:2rem 1.8rem;
  transition:all .4s;
  text-align:center;
}
.feature-card:hover{
  transform:translateY(-5px);
  border-color:rgba(0,229,255,.1);
  box-shadow:var(--shadow);
}
.feature-card .icon{
  width:60px;height:60px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 1.25rem;
  font-size:1.4rem;
  transition:all .4s;
}
.feature-card:hover .icon{transform:scale(1.1)}
.feature-card:nth-child(1) .icon{background:rgba(0,229,255,.08);color:var(--accent)}
.feature-card:nth-child(2) .icon{background:rgba(124,58,237,.08);color:var(--accent2)}
.feature-card:nth-child(3) .icon{background:rgba(244,63,94,.08);color:var(--accent3)}
.feature-card:nth-child(4) .icon{background:rgba(16,185,129,.08);color:var(--success)}
.feature-card h4{font-size:1.05rem;font-weight:700;margin-bottom:.5rem}
.feature-card p{color:var(--text2);font-size:.83rem;line-height:1.7}

.team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
  gap:2rem;
  margin-top:3rem;
}
.member-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:2.5rem;
  transition:all .4s;
  position:relative;
  overflow:hidden;
}
.member-card::before{
  content:'';
  position:absolute;
  top:0;left:0;
  width:100%;height:3px;
  background:linear-gradient(90deg,var(--accent),var(--accent2));
  opacity:0;
  transition:opacity .4s;
}
.member-card:hover::before{opacity:1}
.member-card:hover{
  border-color:rgba(0,229,255,.1);
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}
.member-card .top{
  display:flex;
  align-items:center;
  gap:1.25rem;
  margin-bottom:1.25rem;
}
.member-card .avatar{
  width:64px;height:64px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.5rem;
  font-weight:800;
  flex-shrink:0;
}
.member-card:nth-child(1) .avatar{background:rgba(0,229,255,.1);color:var(--accent)}
.member-card:nth-child(2) .avatar{background:rgba(124,58,237,.1);color:var(--accent2)}
.member-card .info h3{font-size:1.15rem;font-weight:700}
.member-card .info .role{
  font-family:'JetBrains Mono',monospace;
  font-size:.7rem;
  color:var(--accent);
  letter-spacing:1px;
  margin-top:.1rem;
}
.member-card .bio{color:var(--text2);font-size:.85rem;line-height:1.7;margin-bottom:1.25rem}
.bio-highlight{color:var(--accent)}
.member-card .skills{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:1.25rem}
.member-card .skills span{
  font-family:'JetBrains Mono',monospace;
  font-size:.6rem;
  padding:.25rem .7rem;
  border-radius:100px;
  background:rgba(0,229,255,.05);
  border:1px solid rgba(0,229,255,.08);
  color:var(--text2);
  text-transform:uppercase;
  letter-spacing:.5px;
}
.member-card .links{display:flex;gap:.75rem}
.member-card .links a{
  width:34px;height:34px;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--border);
  color:var(--text2);
  font-size:.8rem;
  transition:all .3s;
  text-decoration:none;
}
.member-card .links a:hover{
  border-color:var(--accent);
  color:var(--accent);
  background:rgba(0,229,255,.05);
}

.stack-tag{
  text-align:center;margin-top:5rem;opacity:.4
}

.tech-carousel-wrap{
  overflow:hidden;
  margin-top:3rem;
  position:relative;
}
.tech-carousel-wrap::before,.tech-carousel-wrap::after{
  content:'';
  position:absolute;
  top:0;width:80px;
  height:100%;
  z-index:2;
  pointer-events:none;
}
.tech-carousel-wrap::before{left:0;background:linear-gradient(90deg,var(--bg),transparent)}
.tech-carousel-wrap::after{right:0;background:linear-gradient(-90deg,var(--bg),transparent)}
.tech-carousel{
  display:flex;
  gap:2rem;
  animation:scroll-tech 30s linear infinite;
  width:max-content;
}
.tech-carousel:hover{animation-play-state:paused}
.tech-carousel span{
  font-family:'JetBrains Mono',monospace;
  font-size:.75rem;
  padding:.5rem 1.25rem;
  border-radius:100px;
  background:var(--surface);
  border:1px solid var(--border);
  color:var(--text2);
  white-space:nowrap;
  transition:all .3s;
}
.tech-carousel span:hover{
  border-color:var(--accent);
  color:var(--accent);
  background:rgba(0,229,255,.05);
}
@keyframes scroll-tech{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}

#cta{
  text-align:center;
  padding:6rem 2rem;
}
.cta-box{
  max-width:820px;
  margin:0 auto;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:24px;
  padding:5rem 3.5rem;
  position:relative;
  overflow:hidden;
}
.cta-box::before{
  content:'';
  position:absolute;
  top:-60%;left:-50%;
  width:200%;height:200%;
  background:radial-gradient(circle at 40% 50%,rgba(0,229,255,.05),transparent 60%);
  pointer-events:none;
}
.cta-box .section-title{font-size:clamp(1.8rem,4vw,2.8rem)}
.cta-box .section-sub{margin:0 auto 2.5rem;max-width:500px}
.cta-tag{color:var(--success);opacity:.8}
.cta-sub{margin:0 auto 2.5rem;max-width:500px}
.cta-wp-btn{
  display:inline-flex;
  align-items:center;
  gap:.8rem;
  padding:1.1rem 2.8rem;
  border-radius:50px;
  background:linear-gradient(135deg,#25d366,#128C7E);
  color:#fff;
  font-size:1.05rem;
  font-weight:700;
  box-shadow:0 8px 30px rgba(37,211,102,.3);
  transition:all .35s;
  border:none;
  text-decoration:none;
  position:relative;
  z-index:1;
}
.cta-wp-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 45px rgba(37,211,102,.45);
}
.cta-wp-btn i{font-size:1.5rem}

.whatsapp-float{
  position:fixed;
  bottom:24px;
  right:24px;
  z-index:999;
  width:56px;
  height:56px;
  border-radius:50%;
  background:linear-gradient(135deg,#25d366,#128C7E);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.5rem;
  box-shadow:0 4px 20px rgba(37,211,102,.35);
  transition:all .3s;
  cursor:pointer;
  border:none;
  animation:wp-pulse 2s infinite;
  text-decoration:none;
}
.whatsapp-float:hover{
  transform:scale(1.1);
  box-shadow:0 8px 30px rgba(37,211,102,.5);
}
@keyframes wp-pulse{
  0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.35)}
  50%{box-shadow:0 4px 30px rgba(37,211,102,.55)}
}
.whatsapp-float .tooltip{
  position:absolute;
  right:64px;
  background:var(--bg2);
  color:var(--text);
  padding:.45rem 1rem;
  border-radius:8px;
  font-size:.75rem;
  font-weight:500;
  white-space:nowrap;
  opacity:0;
  pointer-events:none;
  transition:opacity .3s;
  border:1px solid var(--border);
}
.whatsapp-float:hover .tooltip{opacity:1}

footer{
  position:relative;
  z-index:1;
  border-top:1px solid var(--border);
  padding:3rem 2rem;
  text-align:center;
  color:var(--text2);
  font-size:.82rem;
}
footer .brand{color:var(--accent);font-weight:600}
.footer-inner{max-width:1200px;margin:0 auto}
.footer-links{display:flex;justify-content:center;gap:1.5rem;margin-top:.75rem}
.footer-links a{color:var(--text2);font-size:.78rem;transition:color .3s}
.footer-links a:hover{color:var(--accent)}

/* FAQ */
#faq .faq-grid{
  max-width:720px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:.75rem;
}
.faq-item{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:12px;
  overflow:hidden;
  transition:border-color .3s;
}
.faq-item.open{border-color:rgba(0,229,255,.15)}
.faq-q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:1.1rem 1.5rem;
  background:none;
  border:none;
  color:var(--text);
  font-family:'Inter',sans-serif;
  font-size:.95rem;
  font-weight:600;
  text-align:left;
  cursor:pointer;
  transition:color .3s;
}
.faq-q i{
  font-size:.75rem;
  color:var(--text2);
  transition:transform .3s;
  flex-shrink:0;
}
.faq-item.open .faq-q i{transform:rotate(180deg);color:var(--accent)}
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease,padding .4s ease;
  padding:0 1.5rem;
  color:var(--text2);
  font-size:.85rem;
  line-height:1.75;
}
.faq-item.open .faq-a{
  max-height:300px;
  padding:0 1.5rem 1.2rem;
}

/* LOADER */
#loader{
  position:fixed;
  inset:0;
  z-index:9999;
  background:var(--bg);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  transition:opacity .6s,visibility .6s;
}
#loader.hidden{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}
#loader .logo{
  width:72px;height:72px;
  border-radius:18px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.6rem;
  font-weight:900;
  color:#06060e;
  margin-bottom:1.5rem;
  animation:loader-pulse 1.2s ease-in-out infinite;
}
@keyframes loader-pulse{
  0%,100%{transform:scale(1);box-shadow:0 0 0 0 rgba(0,229,255,.4)}
  50%{transform:scale(1.05);box-shadow:0 0 0 20px rgba(0,229,255,0)}
}
#loader .bar{
  width:160px;height:3px;
  background:var(--border);
  border-radius:4px;
  overflow:hidden;
}
#loader .bar-inner{
  height:100%;
  width:0%;
  background:linear-gradient(90deg,var(--accent),var(--accent2));
  border-radius:4px;
  animation:loader-bar 1.8s ease-in-out infinite;
}
@keyframes loader-bar{
  0%{width:0%;margin-left:0}
  50%{width:60%;margin-left:20%}
  100%{width:0%;margin-left:100%}
}
#loader .loading-text{
  font-family:'JetBrains Mono',monospace;
  font-size:.65rem;
  color:var(--text2);
  margin-top:.75rem;
  letter-spacing:2px;
}

.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:opacity .7s ease,transform .7s ease;
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

@media(max-width:768px){
  nav{padding:.7rem 1.25rem}
  .nav-links{display:none}
  section{padding:4rem 1.25rem}
  #hero{padding-top:5rem}
  .hero-title{letter-spacing:-1.5px}
  .hero-stats{gap:1.5rem;flex-wrap:wrap}
  .cta-box{padding:3rem 1.5rem}
  .services-grid,.team-grid{grid-template-columns:1fr}
  .timeline{padding-left:2rem}
  .timeline-item .dot{left:-2rem;width:20px;height:20px;font-size:.5rem}
  .glow-orb{display:none}
  .whatsapp-float{width:48px;height:48px;font-size:1.2rem;bottom:16px;right:16px}
  .whatsapp-float .tooltip{display:none}
}
