:root{
  --max: 1320px;
  --pad: 18px;
  --text: #0f172a;
  --muted: rgba(15,23,42,.72);
  --border: rgba(15,23,42,.10);
  --ease: cubic-bezier(.2,.8,.2,1);
}

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.hero{
  padding: 26px 0 10px;
}

.hero-box{
  border-radius: 22px;
  overflow: hidden;
  height: 746px;
  position: relative;
  display: flex;
  align-items: flex-end;
}


.hero-bg-img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content{
  position: relative;
  width: min(640px, 92%);
  margin: 22px;
  padding: 20px 20px 22px;
  border-radius: 18px;
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(15,23,42,.10);
  border: 1px solid rgba(255,255,255,.55);
}

.hero h1{
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05;
  color: var(--text);
}

.hero p{
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--muted);
}

.hero-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 18px;
  border-radius: 12px;
  background: #f6d24a;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(0,0,0,.08);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), filter 180ms var(--ease);
}

.hero-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(15,23,42,.10);
  filter: brightness(0.98);
}

@media (max-width: 980px){
  .hero-box{
    height: 420px;
  }
  .hero-content{
    margin: 14px;
    width: min(560px, 94%);
  }
}

@media (max-width: 520px){
  .hero{
    padding: 18px 0 6px;
  }
  .hero-box{
    height: 380px;
    border-radius: 18px;
  }
  .hero-content{
    margin: 12px;
    padding: 16px 16px 18px;
    border-radius: 16px;
  }
  .hero p{
    font-size: 13px;
  }
}