@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Manrope:wght@600;700;800&display=swap');

.cv-hero {
  position: relative;
  height: 100vh;
  height: calc(100vh - 74px);
  height: calc(100dvh - 74px);
  min-height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #0A0E17;
}

.cv-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cv-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 85% 60% at 50% 45%, transparent 25%, rgba(10,14,23,.65) 100%),
    linear-gradient(180deg, rgba(10,14,23,.35) 0%, transparent 30%, transparent 70%, rgba(10,14,23,.45) 100%);
  pointer-events: none;
}

.cv-hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 40% at 50% 45%, rgba(59,130,246,.1) 0%, rgba(37,99,235,.03) 40%, transparent 65%);
  pointer-events: none;
}

.cv-hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(100px, 20vh, 240px) 48px 0;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cv-hero__content {
  max-width: 750px;
  text-align: center;
  animation: cvFadeUp .9s .15s both ease-out;
}

.cv-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  margin-bottom: 28px;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  letter-spacing: .01em;
  animation: cvFadeUp .9s .1s both ease-out;
}

.cv-hero__badge-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #3B82F6;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}

.cv-hero__title {
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: #fff;
  margin: 0 0 16px;
  text-wrap: balance;
  text-shadow: 0 2px 40px rgba(0,0,0,.15);
  animation: cvFadeUp .9s .2s both ease-out;
}

.cv-hero__desc {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,.6);
  margin: 0 auto 36px;
  max-width: 600px;
  animation: cvFadeUp .9s .3s both ease-out;
}

.cv-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: cvFadeUp .9s .35s both ease-out;
}

.cv-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: "Inter", -apple-system, sans-serif;
  font-size: .95rem;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all .3s ease;
  text-decoration: none;
  line-height: 1;
}

.cv-hero__btn--primary {
  background: #fff;
  color: #0A0E17;
  box-shadow: 0 4px 24px rgba(0,0,0,.2);
}

.cv-hero__btn--primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,255,255,.15);
}

.cv-hero__btn--secondary {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px) saturate(150%);
  -webkit-backdrop-filter: blur(8px) saturate(150%);
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.15);
}

.cv-hero__btn--secondary:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.25);
  transform: translateY(-2px);
}

.cv-hero__btn svg {
  width: 16px;
  height: 16px;
  transition: transform .25s ease;
}

.cv-hero__btn--primary:hover svg {
  transform: translateX(4px);
}

.cv-hero__metrics {
  position: relative;
  z-index: 2;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  gap: 0;
  padding: 18px 24px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 40px rgba(0,0,0,.2);
  animation: cvFadeUp .9s .55s both ease-out;
}

.cv-hero__metric {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.cv-hero__metric + .cv-hero__metric::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.08);
}

.cv-hero__metric strong {
  display: block;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 4px;
}

.cv-hero__metric span {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .06em;
}

@keyframes cvFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991px) {
  .cv-hero { min-height: 100vh; height: auto; padding: 80px 0 40px; }
  .cv-hero__container { padding: 0 32px; padding-top: 72px; }
  .cv-hero__title { font-size: 2.4rem; }
}

@media (max-width: 768px) {
  .cv-hero { min-height: 100vh; height: auto; padding: 100px 0 40px; }
  .cv-hero__container { padding: 0 20px; padding-top: 60px; }
  .cv-hero__content { max-width: 100%; }
  .cv-hero__title { font-size: 2rem; }
  .cv-hero__desc { font-size: .95rem; max-width: 100%; }
  .cv-hero__actions { margin-bottom: 20px; }
  .cv-hero__badge { margin-bottom: 20px; }
  .cv-hero__metrics {
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px;
    padding: 14px 16px;
    border-radius: 16px;
  }
  .cv-hero__metric { flex: 0 0 50%; padding: 6px 8px; }
  .cv-hero__metric:nth-child(3)::before { display: none; }
}


