/* RENOVA CRTR-PE — campaign hero */
.renova-hero {
  --renova-accent: #f4c34d;
  --renova-text: #ffffff;
  --renova-muted: #e5edf1;
  --renova-overlay: #071e2a;
  --renova-overlay-strength: 84%;
  position: relative;
  isolation: isolate;
  display: flex;
  width: 100%;
  min-height: 820px;
  overflow: hidden;
  color: var(--renova-text);
  background: #071e2a;
  font-family: "Manrope", "Avenir Next", "Helvetica Neue", sans-serif;
}

.renova-hero *,
.renova-hero *::before,
.renova-hero *::after {
  box-sizing: border-box;
}

.renova-hero__media {
  --renova-zoom: 100%;
  --renova-brightness: 82%;
  --renova-contrast: 112%;
  --renova-saturation: 88%;
  position: absolute;
  z-index: -4;
  inset: -2%;
  background-repeat: no-repeat;
  background-position: 50% 40%;
  background-size: var(--renova-zoom) auto;
  filter: brightness(var(--renova-brightness)) contrast(var(--renova-contrast)) saturate(var(--renova-saturation));
  transform: scale(1.04);
}

.renova-hero__wash {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(90deg,
      color-mix(in srgb, var(--renova-overlay) var(--renova-overlay-strength), transparent) 0%,
      color-mix(in srgb, var(--renova-overlay) 72%, transparent) 38%,
      color-mix(in srgb, var(--renova-overlay) 24%, transparent) 67%,
      color-mix(in srgb, var(--renova-overlay) 8%, transparent) 100%),
    linear-gradient(0deg, rgba(3, 16, 23, .74) 0%, rgba(3, 16, 23, .08) 45%, rgba(3, 16, 23, .26) 100%);
}

/* Fine texture prevents flat digital gradients while remaining image-light. */
.renova-hero__grain {
  position: absolute;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  opacity: .14;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.84' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}

.renova-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -22vw;
  right: -14vw;
  width: 52vw;
  height: 52vw;
  min-width: 520px;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 9vw rgba(255, 255, 255, .035), 0 0 0 18vw rgba(255, 255, 255, .025);
  pointer-events: none;
}

.renova-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: clamp(22px, 4vw, 72px);
  width: clamp(68px, 8vw, 140px);
  height: 5px;
  background: var(--renova-accent);
}

.renova-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: min(100%, 1440px);
  min-height: inherit;
  margin: 0 auto;
  padding: 96px 56px 88px;
}

.renova-hero__content {
  width: 100%;
  max-width: 760px;
}

.renova-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--renova-accent);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  animation: renova-rise .7s cubic-bezier(.2, .75, .25, 1) both;
}

.renova-hero__eyebrow-mark {
  width: 30px;
  height: 2px;
  background: currentColor;
}

.renova-hero__title {
  max-width: 820px;
  margin: 0;
  color: var(--renova-text);
  font-family: "DM Sans", "Avenir Next", "Helvetica Neue", sans-serif;
  font-size: clamp(50px, 5.5vw, 91px);
  font-weight: 750;
  line-height: .94;
  letter-spacing: -.062em;
  text-wrap: balance;
  text-shadow: 0 2px 34px rgba(0, 0, 0, .18);
}

.renova-hero__fixed,
.renova-hero__animated-wrap {
  display: block;
}

.renova-hero__fixed {
  animation: renova-rise .8s .08s cubic-bezier(.2, .75, .25, 1) both;
}

.renova-hero__animated-wrap {
  min-height: 1.92em;
  padding-top: .08em;
  overflow: hidden;
  color: var(--renova-accent);
}

.renova-hero__animated {
  display: block;
  max-width: 780px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .36s ease, transform .48s cubic-bezier(.2, .75, .25, 1);
}

.renova-hero__animated.is-leaving {
  opacity: 0;
  transform: translateY(-.45em);
}

.renova-hero__animated.is-entering {
  opacity: 0;
  transform: translateY(.45em);
  transition: none;
}

.renova-hero__description {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--renova-muted);
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 480;
  line-height: 1.62;
  letter-spacing: -.015em;
  text-wrap: pretty;
  animation: renova-rise .8s .18s cubic-bezier(.2, .75, .25, 1) both;
}

.renova-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  animation: renova-rise .8s .28s cubic-bezier(.2, .75, .25, 1) both;
}

.renova-hero .renova-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: -.01em;
  text-decoration: none !important;
  transition: transform .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.renova-hero .renova-hero__button:focus-visible {
  outline: 3px solid var(--renova-text);
  outline-offset: 3px;
}

.renova-hero .renova-hero__button--primary {
  gap: 22px;
  color: #0a202a !important;
  background: var(--renova-accent);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
}

.renova-hero .renova-hero__button--secondary {
  color: var(--renova-text) !important;
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .42);
  backdrop-filter: blur(8px);
}

.renova-hero .renova-hero__button:hover {
  transform: translateY(-3px);
}

.renova-hero .renova-hero__button--primary:hover {
  color: #0a202a !important;
  background: #ffda68;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .26);
}

.renova-hero .renova-hero__button--secondary:hover {
  color: var(--renova-text) !important;
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .72);
}

.renova-hero__arrow {
  font-size: 20px;
  line-height: 1;
  transition: transform .25s ease;
}

.renova-hero .renova-hero__button:hover .renova-hero__arrow {
  transform: translate(3px, -3px);
}

.renova-hero__signature {
  position: absolute;
  z-index: 2;
  right: clamp(28px, 4vw, 70px);
  bottom: 34px;
  color: rgba(255, 255, 255, .78);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .2em;
}

.renova-hero__signature span {
  color: var(--renova-accent);
}

.renova-hero__scroll {
  position: absolute;
  z-index: 2;
  right: 18px;
  top: 50%;
  width: 1px;
  height: 70px;
  overflow: hidden;
  background: rgba(255, 255, 255, .2);
}

.renova-hero__scroll span {
  display: block;
  width: 100%;
  height: 26px;
  background: var(--renova-accent);
  animation: renova-scroll 2.4s ease-in-out infinite;
}

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

@keyframes renova-scroll {
  0% { transform: translateY(-28px); }
  55%, 100% { transform: translateY(72px); }
}

@media (max-width: 1024px) {
  .renova-hero {
    min-height: 760px !important;
  }

  .renova-hero__media {
    background-position: 54% 40% !important;
  }

  .renova-hero__wash {
    background:
      linear-gradient(90deg, rgba(5, 24, 34, .92) 0%, rgba(5, 24, 34, .72) 52%, rgba(5, 24, 34, .26) 100%),
      linear-gradient(0deg, rgba(3, 16, 23, .7) 0%, rgba(3, 16, 23, .08) 48%, rgba(3, 16, 23, .2) 100%);
  }

  .renova-hero__content {
    max-width: 680px !important;
  }

  .renova-hero__inner {
    padding: 84px 36px 80px !important;
  }

  .renova-hero__description {
    font-size: clamp(16px, 2vw, 18px);
  }
}

@media (max-width: 767px) {
  .renova-hero {
    min-height: clamp(640px, 82svh, 720px) !important;
  }

  .renova-hero__media {
    inset: 0;
    background-position: 50% 50% !important;
    background-size: cover !important;
    transform: none;
  }

  .renova-hero__wash {
    background:
      linear-gradient(0deg, rgba(4, 22, 31, .98) 0%, rgba(4, 22, 31, .82) 50%, rgba(4, 22, 31, .34) 100%),
      linear-gradient(90deg, rgba(4, 22, 31, .66), rgba(4, 22, 31, .18));
  }

  .renova-hero::before {
    top: -180px;
    right: -280px;
  }

  .renova-hero::after {
    left: 22px;
    height: 4px;
  }

  .renova-hero__inner {
    align-items: flex-start;
    padding: clamp(54px, 9svh, 70px) 22px 44px !important;
  }

  .renova-hero__content {
    max-width: 100% !important;
  }

  .renova-hero__eyebrow {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .renova-hero__title {
    font-size: clamp(41px, 12.1vw, 64px);
    letter-spacing: -.055em;
  }

  .renova-hero__animated-wrap {
    min-height: 2.75em;
  }

  .renova-hero__description {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
  }

  .renova-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .renova-hero .renova-hero__button {
    width: 100%;
    min-height: 58px;
    padding: 16px 18px;
    font-size: 16px;
    line-height: 1.35;
    white-space: normal;
  }

  .renova-hero__signature {
    right: 22px;
    bottom: 22px;
  }

  .renova-hero__scroll {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .renova-hero *,
  .renova-hero *::before,
  .renova-hero *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
