/* =========================================================
   HERO
========================================================= */

.profil-hero{
  min-height:100vh;
  padding:130px 8% 100px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:70px;
  position:relative;
}

.profil-hero-content{
  max-width:650px;
  z-index:2;
}

.hero-badge{
  display:inline-flex;
  padding:10px 22px;
  border-radius:40px;
  background:rgba(0,229,255,.08);
  border:1px solid rgba(0,229,255,.2);
  color:#00e5ff;
  font-size:13px;
  font-weight:700;
  margin-bottom:28px;
  backdrop-filter:blur(10px);
}

.hero-title{
  font-size:clamp(55px,7vw,92px);
  line-height:1;
  margin-bottom:24px;
  color:white;
  font-family:var(--font-display);
}

.hero-glow{
  color:#00e5ff;
  text-shadow:
    0 0 20px rgba(0,229,255,.8),
    0 0 50px rgba(0,229,255,.5);
}

.hero-desc{
  color:var(--clr-muted);
  line-height:1.9;
  font-size:17px;
  max-width:560px;
  margin-bottom:36px;
}

/* =========================================================
   BUTTON
========================================================= */

.hero-buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.hero-btn{
  text-decoration:none;
  padding:16px 30px;
  border-radius:18px;
  font-family:var(--font-display);
  font-weight:700;
  transition:.35s ease;
}

.primary-btn{
  background:linear-gradient(135deg,#00c6ff,#7c4dff);
  color:white;
  box-shadow:0 0 30px rgba(0,229,255,.2);
}

.secondary-btn{
  background:rgba(255,255,255,.05);
  color:white;
  border:1px solid rgba(255,255,255,.08);
}

.hero-btn:hover{
  transform:translateY(-6px);
}

/* =========================================================
   VISUAL
========================================================= */

.profil-visual{
  position:relative;
  width:420px;
  height:420px;
}

.planet-main{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:120px;
  animation:floatPlanet 5s ease-in-out infinite;
}

@keyframes floatPlanet{
  50%{
    transform:translateY(-15px);
  }
}

.orbit{
  position:absolute;
  inset:0;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.08);
  animation:spin linear infinite;
}

.orbit1{
  animation-duration:12s;
}

.orbit2{
  inset:40px;
  animation-duration:18s;
}

.orbit3{
  inset:80px;
  animation-duration:24s;
}

@keyframes spin{
  from{
    transform:rotate(0deg);
  }
  to{
    transform:rotate(360deg);
  }
}

.planet{
  position:absolute;
  width:18px;
  height:18px;
  border-radius:50%;
  top:-8px;
  left:50%;
  transform:translateX(-50%);
}

.p1{
  background:#00e5ff;
  box-shadow:0 0 18px #00e5ff;
}

.p2{
  background:#ff9800;
  box-shadow:0 0 18px #ff9800;
}

.p3{
  background:#b388ff;
  box-shadow:0 0 18px #b388ff;
}

/* =========================================================
   PROFILE WRAP
========================================================= */

.profil-wrap{
  padding:40px 8% 120px;
  display:flex;
  flex-direction:column;
  gap:70px;
}

/* =========================================================
   CARD
========================================================= */

.profil-card{
  display:grid;
  grid-template-columns:350px 1fr;
  align-items:center;
  gap:50px;
  padding:45px;
  border-radius:36px;
  background:rgba(8,18,45,.55);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(24px);
  position:relative;
  overflow:hidden;
  transition:.4s ease;
}

.profil-card:hover{
  transform:translateY(-10px);
  box-shadow:
    0 20px 50px rgba(0,0,0,.4),
    0 0 30px rgba(0,229,255,.12);
}

.profil-card::before{
  content:'';
  position:absolute;
  inset:0;
  background:
  linear-gradient(
    135deg,
    rgba(255,255,255,.06),
    transparent 40%
  );
}

.profil-card.reverse{
  grid-template-columns:1fr 350px;
}

.profil-card.reverse .profil-content{
  order:1;
}

.profil-card.reverse .profil-image{
  order:2;
}

/* =========================================================
   IMAGE
========================================================= */

.profil-image{
  display:flex;
  justify-content:center;
}

.profil-image img{
  width:100%;
  max-width:300px;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:30px;
  border:2px solid rgba(255,255,255,.08);
  box-shadow:
    0 0 40px rgba(0,229,255,.15);
  transition:.4s ease;
}

.profil-card:hover .profil-image img{
  transform:scale(1.03);
}

/* =========================================================
   CONTENT
========================================================= */

.profil-badge{
  display:inline-flex;
  padding:8px 18px;
  border-radius:40px;
  margin-bottom:20px;
  font-size:12px;
  font-weight:700;
}

.cyan-badge{
  background:rgba(0,229,255,.08);
  color:#00e5ff;
}

.purple-badge{
  background:rgba(179,136,255,.08);
  color:#b388ff;
}

.profil-content h2{
  font-size:42px;
  color:white;
  margin-bottom:20px;
  font-family:var(--font-display);
}

.profil-content p{
  color:var(--clr-muted);
  line-height:1.9;
  margin-bottom:20px;
}

.profil-tags{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:20px;
}

.profil-tags span{
  padding:10px 18px;
  border-radius:40px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:white;
  font-size:13px;
}

/* =========================================================
   VISI MISI
========================================================= */

.visi-wrap{
  padding:0 8% 120px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.visi-card{
  padding:40px;
  border-radius:32px;
  background:rgba(8,18,45,.55);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(24px);
  text-align:center;
  transition:.4s ease;
}

.visi-card:hover{
  transform:translateY(-10px);
  box-shadow:
    0 20px 50px rgba(0,0,0,.4),
    0 0 30px rgba(0,229,255,.12);
}

.visi-icon{
  width:90px;
  height:90px;
  margin:auto auto 24px;
  border-radius:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:42px;
  background:rgba(0,229,255,.08);
  border:1px solid rgba(0,229,255,.18);
}

.visi-card h3{
  font-size:32px;
  color:white;
  margin-bottom:16px;
  font-family:var(--font-display);
}

.visi-card p{
  color:var(--clr-muted);
  line-height:1.9;
}

/* =========================================================
   FADE
========================================================= */

.fade-in{
  opacity:0;
  transform:translateY(40px);
  transition:all .8s ease;
}

.fade-in.show{
  opacity:1;
  transform:translateY(0);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1000px){

  .profil-hero{
    flex-direction:column;
    text-align:center;
  }

  .hero-desc{
    margin:auto auto 36px;
  }

  .hero-buttons{
    justify-content:center;
  }

  .profil-card,
  .profil-card.reverse{
    grid-template-columns:1fr;
  }

  .profil-card.reverse .profil-content,
  .profil-card.reverse .profil-image{
    order:unset;
  }

  .visi-wrap{
    grid-template-columns:1fr;
  }
}

@media(max-width:700px){

  .profil-hero{
    padding:120px 6% 80px;
  }

  .profil-visual{
    width:280px;
    height:280px;
  }

  .planet-main{
    font-size:85px;
  }

  .profil-wrap{
    padding:20px 6% 100px;
  }

  .profil-card{
    padding:30px;
  }

  .profil-content h2{
    font-size:32px;
  }

  .visi-wrap{
    padding:0 6% 100px;
  }

  .visi-card{
    padding:30px;
  }
}

@media(max-width:500px){

  .hero-title{
    font-size:48px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .hero-btn{
    width:100%;
    text-align:center;
  }

  .profil-tags{
    flex-direction:column;
  }
}