*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --bg:#070816;
  --bg2:#0d1024;
  --card:#11152d;
  --text:#ffffff;
  --muted:#b9c0e0;
  --purple:#b54cff;
  --blue:#44c7ff;
  --gradient:linear-gradient(90deg, #c24fff 0%, #7b61ff 45%, #44c7ff 100%);
  --shadow:0 10px 35px rgba(68,199,255,0.12);
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(181,76,255,0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(68,199,255,0.18), transparent 26%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  line-height:1.6;
}

/* header */
header{
  position:sticky;
  top:0;
  z-index:999;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 60px;
  background:rgba(9,12,30,0.78);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.logo{
  height:64px;
  width:auto;
}

nav{
  display:flex;
  gap:22px;
  flex-wrap:wrap;
}

nav a{
  color:#fff;
  text-decoration:none;
  font-size:15px;
  transition:0.3s;
}

nav a:hover,
nav a.active{
  color:var(--blue);
}

/* shared */
.container{
  width:min(1200px, 92%);
  margin:auto;
}

section{
  padding:90px 0;
}

.section-title{
  font-size:38px;
  margin-bottom:14px;
  text-align:center;
}

.section-subtitle{
  max-width:760px;
  margin:0 auto 45px;
  text-align:center;
  color:var(--muted);
  font-size:17px;
}

.gradient-text{
  background:var(--gradient);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  color:transparent;
}

.btn-group{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}

.btn{
  display:inline-block;
  padding:13px 24px;
  border-radius:30px;
  text-decoration:none;
  font-weight:bold;
  transition:0.3s;
}

.btn-primary{
  background:var(--gradient);
  color:#fff;
  box-shadow:0 8px 24px rgba(127,102,255,0.35);
}

.btn-primary:hover{
  transform:translateY(-2px);
}

.btn-secondary{
  color:#fff;
  border:1px solid rgba(255,255,255,0.15);
  background:rgba(255,255,255,0.04);
}

.btn-secondary:hover{
  border-color:var(--blue);
  color:var(--blue);
}

/* hero */
.hero{
  min-height:92vh;
  display:flex;
  align-items:center;
}

.hero-wrap{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:40px;
  align-items:center;
}

.hero h1{
  font-size:64px;
  line-height:1.08;
  margin-bottom:20px;
}

.hero p{
  font-size:18px;
  color:var(--muted);
  max-width:650px;
}

.hero-badge{
  display:inline-block;
  padding:8px 16px;
  border:1px solid rgba(255,255,255,0.14);
  border-radius:30px;
  margin-bottom:18px;
  color:#d8ddf8;
  background:rgba(255,255,255,0.04);
  font-size:14px;
}

.hero-card{
  background:linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border:1px solid rgba(255,255,255,0.08);
  padding:30px;
  border-radius:28px;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}

.hero-card::before{
  content:"";
  position:absolute;
  inset:-80px auto auto -80px;
  width:180px;
  height:180px;
  background:rgba(181,76,255,0.22);
  filter:blur(30px);
  border-radius:50%;
}

.hero-card::after{
  content:"";
  position:absolute;
  right:-50px;
  bottom:-50px;
  width:180px;
  height:180px;
  background:rgba(68,199,255,0.2);
  filter:blur(30px);
  border-radius:50%;
}

.showcase-box{
  position:relative;
  z-index:2;
  text-align:center;
  padding:20px;
}

.showcase-box img{
  width:120px;
  margin-bottom:14px;
}

.showcase-box h3{
  font-size:28px;
  margin-bottom:10px;
}

.showcase-box p{
  color:var(--muted);
  font-size:15px;
}

/* stats */
.stats{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
  margin-top:30px;
}

.stat-box{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  padding:24px;
  border-radius:18px;
  text-align:center;
}

.stat-box h3{
  font-size:30px;
  margin-bottom:6px;
}

.stat-box p{
  color:var(--muted);
  font-size:14px;
}

/* cards */
.cards{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.card{
  background:linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border:1px solid rgba(255,255,255,0.08);
  padding:28px;
  border-radius:22px;
  transition:0.3s;
  box-shadow:var(--shadow);
}

.card:hover{
  transform:translateY(-8px);
  border-color:rgba(68,199,255,0.35);
}

.card h3{
  margin-bottom:12px;
  font-size:23px;
}

.card p{
  color:var(--muted);
  font-size:15px;
}

.icon{
  width:58px;
  height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  margin-bottom:18px;
  background:var(--gradient);
  color:#fff;
  font-size:24px;
  font-weight:bold;
}

/* about split */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:center;
}

.panel{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  padding:30px;
  border-radius:24px;
}

.panel h3{
  font-size:28px;
  margin-bottom:14px;
}

.panel p{
  color:var(--muted);
  margin-bottom:12px;
}

.list{
  list-style:none;
  margin-top:14px;
}

.list li{
  margin-bottom:10px;
  color:#d8ddf8;
}

/* clients */
.client-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.client-logo{
  min-height:120px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  padding:20px;
}

.client-logo img{
  max-width:130px;
  max-height:70px;
  object-fit:contain;
}

.client-logo span{
  color:#d7dbef;
  font-weight:bold;
}

/* project grid */
.project-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.project-card{
  overflow:hidden;
  border-radius:22px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
}

.project-card img{
  width:100%;
  height:250px;
  object-fit:cover;
  display:block;
}

.project-info{
  padding:20px;
}

.project-info h3{
  margin-bottom:8px;
}

.project-info p{
  color:var(--muted);
  font-size:15px;
}

/* contact */
.contact-wrap{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:30px;
}

.info-box,
.contact-form{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  padding:30px;
  border-radius:24px;
}

.info-box h3,
.contact-form h3{
  margin-bottom:14px;
  font-size:28px;
}

.info-box p{
  color:var(--muted);
  margin-bottom:12px;
}

form{
  display:grid;
  gap:14px;
}

input,
textarea{
  width:100%;
  padding:15px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.08);
  background:#0e132b;
  color:#fff;
  outline:none;
}

textarea{
  min-height:150px;
  resize:vertical;
}

button{
  padding:14px 20px;
  border:none;
  border-radius:14px;
  background:var(--gradient);
  color:#fff;
  font-size:16px;
  font-weight:bold;
  cursor:pointer;
}

/* footer */
footer{
  padding:28px 0;
  border-top:1px solid rgba(255,255,255,0.08);
  background:rgba(0,0,0,0.18);
}

.footer-wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.footer-wrap p,
.footer-wrap a{
  color:var(--muted);
  text-decoration:none;
}

/* responsive */
@media(max-width:992px){
  .hero-wrap,
  .split,
  .contact-wrap{
    grid-template-columns:1fr;
  }

  .cards,
  .project-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .stats,
  .client-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .hero h1{
    font-size:48px;
  }

  header{
    padding:16px 20px;
  }
}

@media(max-width:640px){
  nav{
    gap:12px;
  }

  nav a{
    font-size:14px;
  }

  .hero h1{
    font-size:38px;
  }

  .section-title{
    font-size:30px;
  }

  .cards,
  .stats,
  .client-grid,
  .project-grid{
    grid-template-columns:1fr;
  }

  .logo{
    height:52px;
  }
}

.video-box{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:320px;
}

.hero-video{
  width:100%;
  height:100%;
  max-height:320px;
  object-fit:contain;
  border-radius:20px;
  background:#000;
  display:block;
}