/* ==========================================================================
   McCoy Home Page (v2) - Routing/Navigation Page
   ========================================================================== */

/* --- Hero Section --- */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home-hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.home-hero__video--mobile {
  display: none;
}

.home-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero-overlay);
  z-index: 1;
}

.home-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--container-padding);
}

.home-hero__headline {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: #ffffff;
}

.home-hero__subtitle {
  font-size: 22px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 48px;
  line-height: 1.5;
}

.home-hero__ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.home-hero__cta {
  min-width: 200px;
}

/* --- Dual Audience Section --- */
.home-audience {
  height: 460px;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(
    -59deg,
    rgb(28, 22, 58) 0%,
    rgb(28, 22, 58) 47%,
    #f5f5f7 53%,
    #f5f5f7 100%
  );
}

.home-audience__inner {
  max-width: none;
  margin: 0;
  padding: 0;
  background: transparent;
  height: 100%;
  position: relative;
}

/* Audience blocks */
.home-audience__blocks {
  background: transparent;
  position: relative;
  height: 460px;
  width: 100%;
  max-width: none;
  margin: 0;
}

.home-audience__block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-audience__block--b2b {
  position: absolute;
  top: 56px;
  left: 72px;
  width: 32%;
  align-items: flex-start;
  text-align: left;
}

.home-audience__block--b2c {
  position: absolute;
  bottom: 56px;
  right: 72px;
  width: 32%;
  align-items: flex-end;
  text-align: right;
}

.home-audience__block--b2b .home-audience__block-label { color: #8035ca; }
.home-audience__block--b2b .home-audience__block-headline { color: #2A2C34; }
.home-audience__block--b2b .home-audience__block-body { color: #6b6d7a; }
.home-audience__block--b2c .home-audience__block-label { color: rgba(160, 130, 230, 0.9); }
.home-audience__block--b2c .home-audience__block-headline { color: #ffffff; }
.home-audience__block--b2c .home-audience__block-body { color: rgba(255, 255, 255, 0.6); }

.home-audience__block-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-audience__block-headline {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.home-audience__block-body {
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
}

.home-audience__block-cta {
  margin-top: 8px;
}

/* --- Responsive --- */
@media (max-width: 800px) {
  .home-hero__headline {
    font-size: 44px;
  }

  .home-hero__subtitle {
    font-size: 18px;
    margin-bottom: 36px;
  }

  .home-hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .home-hero__cta {
    width: 100%;
    max-width: 300px;
  }

  .home-hero__video--desktop {
    display: none;
  }

  .home-hero__video--mobile {
    display: block;
  }

  /* Audience */
  .home-audience {
    height: auto;
    background: none;
    padding: 0;
  }
  .home-audience__inner {
    padding: 0;
  }
  .home-audience__blocks {
    display: flex;
    flex-direction: column;
    gap: 0;
    height: auto;
    padding: 0;
  }
  .home-audience__block--b2b {
    position: relative;
    top: auto; left: auto;
    width: 100%;
    background: rgb(28, 22, 58);
    padding: 60px 32px;
    text-align: left;
    align-items: flex-start;
  }
  .home-audience__block--b2c {
    position: relative;
    bottom: auto; right: auto;
    width: 100%;
    background: #f5f5f7;
    padding: 60px 32px;
    text-align: left;
    align-items: flex-start;
  }
  .home-audience__block--b2b .home-audience__block-label { color: rgba(160, 130, 230, 0.9); }
  .home-audience__block--b2b .home-audience__block-headline { color: #ffffff; }
  .home-audience__block--b2b .home-audience__block-body { color: rgba(255, 255, 255, 0.6); }
  .home-audience__block--b2c .home-audience__block-label { color: #8035ca; }
  .home-audience__block--b2c .home-audience__block-headline { color: #2A2C34; }
  .home-audience__block--b2c .home-audience__block-body { color: #6b6d7a; }
  .home-audience__block-headline { font-size: 26px; }
  .home-audience__block-body { font-size: 16px; }
}
