@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap");

/* =============================================================================
   BecA Hero 100vw — 100vw image hero with right-side glassmorphic panel
   Height: 60vh | Image: full viewport width | Copy: centered inside glass panel
   ============================================================================= */

.beca-hero100vw,
.beca-hero100vw *,
.beca-hero100vw *::before,
.beca-hero100vw *::after {
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.beca-hero100vw,
.beca-hero100vw * {
  cursor: default;
}

.beca-hero100vw a,
.beca-hero100vw button,
.beca-hero100vw [role="button"] {
  cursor: pointer;
}

.beca-hero100vw {
  --beca-hero-primary: #135AD5;
  --beca-hero-accent: #07A5F6;
  --beca-container-max: 1240px;
  --beca-section-pad-top: 4rem;
  --beca-section-pad-bottom: 4rem;
  
  --beca-hero-height: 60vh;
  --beca-hero-panel-width: clamp(330px, 38vw, 560px);
  --beca-hero-panel-radius: 1.35rem;
  --beca-hero-panel-padding: clamp(0.75rem, 1.5vh, 1.25rem) clamp(1.25rem, 2.5vw, 2.25rem);
  --beca-hero-glass-blur: 22px;
  --beca-hero-glass-opacity: 0.28;
  --beca-hero-image-overlay-opacity: 0.26;
  --beca-hero-side-gap: clamp(1rem, 5vw, 5.5rem);
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  height: var(--beca-hero-height);
  min-height: 0;
  margin-left: -50vw;
  margin-right: -50vw;
  isolation: isolate;
  overflow: hidden;
  background: #0b1320;
  color: #ffffff;
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.beca-hero100vw__viewport,
.beca-hero100vw__slide,
.beca-hero100vw__media,
.beca-hero100vw__image,
.beca-hero100vw__overlay {
  width: 100%;
  height: 100%;
}

.beca-hero100vw__viewport {
  position: relative;
}

.beca-hero100vw__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 720ms cubic-bezier(0.4, 0, 0.2, 1),
    visibility 720ms cubic-bezier(0.4, 0, 0.2, 1);
}

.beca-hero100vw__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.beca-hero100vw__media {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 46%, rgba(7, 165, 246, 0.16), transparent 34%),
    linear-gradient(120deg, #101827 0%, #22364f 50%, #0f1827 100%);
}

.beca-hero100vw__image {
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.08);
  transform-origin: center center;
  will-change: transform;
}

.beca-hero100vw__slide.is-active .beca-hero100vw__image {
  animation: beca-hero100vw-zoom-out 7800ms ease-out forwards;
}

@keyframes beca-hero100vw-zoom-out {
  0% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.beca-hero100vw__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 10, 22, var(--beca-hero-image-overlay-opacity)) 0%, rgba(3, 10, 22, calc(var(--beca-hero-image-overlay-opacity) * 0.38)) 44%, rgba(3, 10, 22, var(--beca-hero-image-overlay-opacity)) 100%),
    linear-gradient(180deg, rgba(3, 10, 22, calc(var(--beca-hero-image-overlay-opacity) * 0.35)) 0%, rgba(3, 10, 22, var(--beca-hero-image-overlay-opacity)) 100%);
}

.beca-hero100vw__overlay {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: min(calc(100% - 2rem), var(--beca-container-max));
  height: 100%;
  margin-inline: auto;
  padding: 0 0 3rem;
}

.beca-hero100vw__glass-panel {
  width: fit-content;
  max-width: min(520px, 100%);
  height: auto;
  min-height: 0;
  max-height: calc(var(--beca-hero-height) - 6.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  overflow-x: hidden;
  padding: var(--beca-hero-panel-padding);
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: var(--beca-hero-panel-radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, var(--beca-hero-glass-opacity)), rgba(255, 255, 255, calc(var(--beca-hero-glass-opacity) * 0.43))),
    linear-gradient(180deg, rgba(10, 18, 30, 0.16), rgba(10, 18, 30, 0.36));
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(var(--beca-hero-glass-blur)) saturate(155%);
  -webkit-backdrop-filter: blur(var(--beca-hero-glass-blur)) saturate(155%);
  scrollbar-width: thin;
}


.beca-hero100vw--panel-left .beca-hero100vw__overlay {
  justify-content: flex-start;
}

.beca-hero100vw--panel-center .beca-hero100vw__overlay {
  justify-content: center;
}

.beca-hero100vw--valign-top .beca-hero100vw__overlay {
  align-items: flex-start;
}

.beca-hero100vw--valign-bottom .beca-hero100vw__overlay {
  align-items: flex-end;
}

.beca-hero100vw--align-center .beca-hero100vw__glass-panel {
  align-items: center;
  text-align: center;
}

.beca-hero100vw--align-right .beca-hero100vw__glass-panel {
  align-items: flex-end;
  text-align: right;
}

.beca-hero100vw--cta-left .beca-hero100vw__cta {
  align-self: flex-start;
}

.beca-hero100vw--cta-center .beca-hero100vw__cta {
  align-self: center;
}

.beca-hero100vw--cta-right .beca-hero100vw__cta {
  align-self: flex-end;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .beca-hero100vw__glass-panel {
    background: rgba(18, 30, 46, 0.76);
  }
}

.beca-hero100vw__eyebrow,
.beca-hero100vw__heading,
.beca-hero100vw__subheading,
.beca-hero100vw__cta,
.beca-hero100vw__indicator {
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.beca-hero100vw__eyebrow {
  /*margin: 0 0 clamp(0.65rem, 1.2vh, 0.95rem);
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.72rem, 0.78vw, 0.86rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;*/
  margin: 0 0 0.65rem;
  display: inline-block;
  position: relative;
  padding-left: 15px;
  color: var(--beca-accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

  .beca-hero100vw__eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    border-radius: 2px;
    background: var(--beca-accent);
  }

.beca-hero100vw__heading {
  /*margin: 0 0 clamp(0.8rem, 1.7vh, 1.15rem);
    color: #ffffff;
    font-size: clamp(2rem, 3.65vw, 4.2rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.035em;
    text-wrap: balance;
    text-shadow: 0 2px 26px rgba(0, 0, 0, 0.26);*/

  margin: 0 0 clamp(0.55rem, 1vh, 0.85rem);
  color: #ffffff;
  font-size: clamp(1.65rem, 2.65vw, 2.55rem);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.018em;
  text-wrap: balance;
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.26);
}

.beca-hero100vw__subheading {
  /*max-width: 44ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.96rem, 1.25vw, 1.18rem);
  font-weight: 500;
  line-height: 1.56;
  text-wrap: pretty;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.24);*/
  width: auto;
  max-width: 44ch;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  font-weight: 400;
  line-height: 1.62;
  text-wrap: pretty;
}

.beca-hero100vw__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 48px;
  margin-top: clamp(1rem, 2vh, 1.55rem);
  padding: 0 1.75rem 0 1.95rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: clamp(0.86rem, 0.94vw, 0.98rem);
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1;
  text-decoration: none;
  /*text-transform: uppercase;*/
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  transition:
    background 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.beca-hero100vw__cta-icon {
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  transition: transform 200ms ease;
}

.beca-hero100vw__cta:hover,
.beca-hero100vw__cta:focus-visible {
  background: var(--beca-hero-primary);
  border-color: var(--beca-hero-primary);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.18),
    0 10px 26px rgba(19, 90, 213, 0.26);
}

.beca-hero100vw__cta:hover .beca-hero100vw__cta-icon,
.beca-hero100vw__cta:focus-visible .beca-hero100vw__cta-icon {
  transform: translateX(4px);
}

.beca-hero100vw__cta:focus-visible,
.beca-hero100vw__indicator:focus-visible {
  outline: 3px solid rgba(7, 165, 246, 0.48);
  outline-offset: 3px;
}

.beca-hero100vw__controls {
  position: absolute;
  left: 50%;
  bottom: clamp(0.85rem, 2vh, 1.35rem);
  z-index: 4;
  transform: translateX(-50%);
}

.beca-hero100vw__indicators {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 38px;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
}

.beca-hero100vw__indicator {
  appearance: none;
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  cursor: pointer;
  transition:
    width 240ms cubic-bezier(0.4, 0, 0.2, 1),
    background-color 240ms ease,
    transform 180ms ease;
}

.beca-hero100vw__indicator:hover,
.beca-hero100vw__indicator:focus-visible {
  background: #ffffff;
  transform: scale(1.12);
}

.beca-hero100vw__indicator.is-active {
  width: 1.75rem;
  background: var(--beca-hero-accent);
}

@media (max-width: 991px) {
  .beca-hero100vw__overlay {
    justify-content: center;
    width: min(calc(100% - 2rem), var(--beca-container-max));
    padding: clamp(1rem, 4vw, 2rem) 0 3.5rem;
  }

  .beca-hero100vw__glass-panel {
    width: fit-content;
    max-width: min(680px, 100%);
    min-height: auto;
    max-height: calc(var(--beca-hero-height) - 3rem);
    align-items: center;
    text-align: center;
  }

  .beca-hero100vw__heading {
    font-size: clamp(2rem, 6vw, 3.4rem);
  }
}

@media (max-width: 640px) {
  .beca-hero100vw__overlay {
    width: calc(100% - 2rem);
    padding: 1rem 0 2rem;
  }

  .beca-hero100vw__glass-panel {
    max-height: calc(var(--beca-hero-height) - 2rem);
    padding: 0.9rem 1.25rem;
    border-radius: 1rem;
  }

  .beca-hero100vw__eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .beca-hero100vw__heading {
    font-size: clamp(1.65rem, 8vw, 2.3rem);
    line-height: 1.12;
  }

  .beca-hero100vw__subheading {
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .beca-hero100vw__cta {
    min-height: 44px;
    padding-inline: 1.35rem 1.2rem;
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .beca-hero100vw__slide,
  .beca-hero100vw__cta,
  .beca-hero100vw__cta-icon,
  .beca-hero100vw__indicator,
  .beca-hero100vw__image {
    animation: none !important;
    transition: none !important;
  }

  .beca-hero100vw__image {
    transform: scale(1);
  }
}

.beca-hero100vw__controls{display:none!important;}
