.c-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg);
}

.c-hero__grid-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(rgba(6, 182, 212, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 182, 212, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.c-hero__video-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-hero__video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.c-hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1000ms;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 80%, rgba(0, 0, 0, 0.5) 90%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 80%, rgba(0, 0, 0, 0.5) 90%, transparent 100%);
}

.c-hero__video--visible {
  opacity: 0.25;
}

.c-hero__video-tint {
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
  background: linear-gradient(
    to bottom,
    rgba(10, 15, 28, 0.6),
    rgba(10, 15, 28, 0.4),
    rgba(10, 15, 28, 0.6)
  );
}

.c-hero__video-blur {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(1px);
}

.c-hero__glow {
  position: absolute;
  border-radius: 999px;
  z-index: 3;
  animation: hero-pulse 3s var(--ease-standard) infinite;
}

.c-hero__glow--a {
  top: 25%;
  left: -8rem;
  width: 24rem;
  height: 24rem;
  background: rgba(245, 158, 11, 0.07);
  filter: blur(120px);
}

.c-hero__glow--b {
  bottom: 25%;
  right: -8rem;
  width: 20rem;
  height: 20rem;
  background: rgba(245, 158, 11, 0.05);
  filter: blur(100px);
  animation-delay: 2s;
}

@keyframes hero-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.c-hero__line {
  position: absolute;
  z-index: 4;
}

.c-hero__line--v1 {
  top: 5rem;
  right: 2.5rem;
  width: 1px;
  height: 10rem;
  background: linear-gradient(to bottom, transparent, rgba(245, 158, 11, 0.2), transparent);
}

.c-hero__line--h1 {
  top: 8rem;
  right: 2.5rem;
  width: 5rem;
  height: 1px;
  background: linear-gradient(to right, rgba(245, 158, 11, 0.2), transparent);
}

.c-hero__line--v2 {
  bottom: 10rem;
  left: 2.5rem;
  width: 1px;
  height: 8rem;
  background: linear-gradient(to bottom, transparent, rgba(245, 158, 11, 0.15), transparent);
}

.c-hero__content {
  position: relative;
  z-index: 10;
  padding-top: 8rem;
  padding-bottom: 5rem;
  width: 100%;
}

.c-hero__inner {
  max-width: 56rem;
  --iv-y: 2rem;
  transition-duration: 1000ms;
}

.c-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  margin-bottom: 2rem;
  backdrop-filter: blur(4px);
}

.c-hero__badge .icon {
  width: 1rem;
  height: 1rem;
  color: var(--color-amber-400);
}

.c-hero__badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-amber-300);
}

.c-hero__logo-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.c-hero__logo {
  max-width: 100%;
  height: 5rem;
}

.c-hero__tagline {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 1.25rem;
  color: var(--color-slate-400);
  max-width: 40rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.c-hero__description {
  font-size: 1rem;
  color: var(--color-slate-500);
  max-width: 36rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.c-hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 5rem;
}

.c-hero__cta-primary .icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform var(--duration-fast) var(--ease-standard);
}

.c-hero__cta-primary:hover .icon {
  transform: translateX(0.25rem);
}

.c-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(30, 41, 59, 0.5);
}

.c-hero__stat-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  color: var(--color-white);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.c-hero__stat-label {
  font-size: 0.875rem;
  color: var(--color-slate-500);
  margin-top: 0.25rem;
}

.c-hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: hero-bounce 1.5s infinite;
}

.c-hero__scroll-indicator .icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-slate-600);
}

@keyframes hero-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -25%); }
}

@media (min-width: 640px) {
  .c-hero__tagline {
    font-size: 1.5rem;
  }

  .c-hero__ctas {
    flex-direction: row;
  }

  .c-hero__stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .c-hero__logo {
    height: 6.5rem;
  }
}

@media (min-width: 1024px) {
  .c-hero__logo {
    height: 8rem;
  }
}

@media (min-width: 1280px) {
  .c-hero__logo {
    height: 11rem;
  }
}
