.hero{
  position:relative;
  width:100%;
  min-height:100vh;
  overflow:hidden;
  display:flex;
  align-items:center;
}

.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(9,47,79,.88) 0%, rgba(9,47,79,.72) 42%, rgba(9,47,79,.35) 100%),
    radial-gradient(circle at 70% 35%, rgba(187,225,250,.22), transparent 32%);
  z-index:1;
}

.hero-circle{
  position:absolute;
  border-radius:50%;
  border:1px solid rgba(187,225,250,.28);
  z-index:2;
  pointer-events:none;
}

.hero-circle::after{
  content:"";
  position:absolute;
  inset:18px;
  border-radius:50%;
  border:1px solid rgba(187,225,250,.18);
}

.hero-circle-one{
  width:420px;
  height:420px;
  right:-120px;
  top:18%;
}

.hero-circle-two{
  width:260px;
  height:260px;
  left:-100px;
  bottom:8%;
}

.hero-content{
  position:relative;
  z-index:3;
  color:#fff;
  max-width:720px;
  text-align:left;
  padding-top:80px;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  margin-bottom:26px;
  padding:10px 20px;
  border:1px solid rgba(187,225,250,.42);
  border-radius:999px;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(14px);
  color:#d8eefc;
  font-size:.9rem;
  font-weight:500;
  letter-spacing:.06em;
}

.hero-content h1{
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(2.5rem, 5vw, 3.5rem);
  line-height:.98;
  font-weight:700;
  letter-spacing:-.035em;
  margin-bottom:26px;
}

.hero-content p{
  max-width:620px;
  font-size:1.12rem;
  line-height:1.9;
  color:#eaf6ff;
  margin-bottom:38px;
  font-weight:300;
}

.hero-btn{
  display:inline-flex;
  align-items:center;
  gap:12px;
  background:linear-gradient(135deg, #bbe1fa, #3282b8 55%, #0f4c75);
  color:#fff;
  text-decoration:none;
  padding:18px 34px;
  border-radius:999px;
  font-weight:700;
  letter-spacing:.02em;
  box-shadow:0 18px 42px rgba(50,130,184,.36);
  transition:.3s ease;
}

.hero-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 50px rgba(50,130,184,.48);
}

@media(max-width:768px){
  .hero{
    min-height:92vh;
  }

  .hero-overlay{
    background:linear-gradient(90deg, rgba(9,47,79,.92), rgba(9,47,79,.72));
  }

  .hero-content{
    padding-top:110px;
  }

  .hero-content h1{
    font-size:2.75rem;
  }

  .hero-content p{
    font-size:1rem;
  }

  .hero-circle-one{
    width:280px;
    height:280px;
    right:-160px;
  }
}