﻿/* HERO */
#hero{
  position:relative;
  height:100vh;min-height:650px;
  display:flex;flex-direction:column;
  justify-content:center;align-items:center;
  text-align:center;
  overflow:hidden;
}
#hero-canvas{
  position:absolute;inset:0;
  width:100%;height:100%;
  z-index:0;
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(4,8,16,0.3) 0%,rgba(4,8,16,0.5) 60%,rgba(4,8,16,1) 100%);
  z-index:1;
}
.hero-content{
  position:relative;z-index:2;
  max-width:820px;
  padding:0 24px;
; text-align: center; width: 100%; display: flex; flex-direction: column; align-items: center;}
.hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--glass-bg);
  border:1px solid var(--glass-border);
  backdrop-filter:blur(10px);
  padding:8px 20px;border-radius:100px;
  font-size:0.8rem;color:var(--neon);
  font-weight:600;letter-spacing:0.08em;text-transform:uppercase;
  margin-bottom:28px;
  animation:fadeUp 0.8s ease both;
}
.hero-badge::before{
  content:'';width:6px;height:6px;
  background:var(--neon);border-radius:50%;
  animation:pulse 2s infinite;
}
.hero-title{
  font-size:clamp(2.8rem,6vw,5rem);
  font-weight:900;
  line-height:1.05;
  letter-spacing:-0.03em;
  margin-bottom:22px;
  animation:fadeUp 0.9s 0.15s ease both;
}
.hero-title em{
  font-style:normal;
  background:linear-gradient(90deg,var(--neon),#60efff);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  background-clip:text;
}
.hero-sub{
  font-size:clamp(1rem,2vw,1.2rem);
  color:rgba(255,255,255,0.65);
  font-weight:400;
  line-height:1.7;
  max-width:560px;margin:0 auto 40px;
  animation:fadeUp 0.9s 0.3s ease both;
}
.hero-logo-img{width:480px;max-width:100%;height:auto;margin-bottom:22px;animation:fadeUp 0.9s 0.15s ease both;}
.hero-btn{
  display:inline-flex;align-items:center;gap:10px;
  background:var(--neon);
  color:#000;padding:16px 36px;
  border-radius:100px;
  font-weight:700;font-size:1rem;
  text-decoration:none;
  animation:fadeUp 0.9s 0.45s ease both;
  transition:all 0.35s cubic-bezier(.175,.885,.32,1.275);
  box-shadow:0 0 40px var(--neon-glow),0 8px 32px rgba(0,0,0,0.4);
}
.hero-btn:hover{transform:scale(1.08) translateY(-3px);box-shadow:0 0 60px var(--neon-glow),0 16px 40px rgba(0,0,0,0.4);}
.hero-btn svg{transition:transform 0.3s;}
.hero-btn:hover svg{transform:translateX(4px);}
.hero-scroll{position:absolute;bottom:40px;left:0;width:100%;z-index:2;display:flex;flex-direction:column;align-items:center;gap:8px;animation:fadeUp 1s 0.8s ease both;}
.hero-scroll span{font-size:0.7rem;letter-spacing:0.15em;color:rgba(255,255,255,0.3);text-transform:uppercase;; padding-left: 0.15em;}
.scroll-arrow{
  width:24px;height:24px;
  border-right:2px solid var(--neon);
  border-bottom:2px solid var(--neon);
  transform:rotate(45deg);
  animation:scrollBounce 2s infinite;
}

/* SECTIONS */
section{padding:100px 5%;}
.section-label{
  display:inline-block;
  font-size:0.75rem;letter-spacing:0.15em;
  text-transform:uppercase;color:var(--neon);
  font-weight:600;margin-bottom:16px;
}
.section-title{
  font-size:clamp(2rem,4vw,3rem);
  font-weight:800;line-height:1.1;
  letter-spacing:-0.025em;
  margin-bottom:16px;
}
.section-sub{
  color:var(--gray-light);
  font-size:1.05rem;line-height:1.7;
  max-width:540px;margin:0 auto;
}





