body {
  background-color: #f7f7f7 !important;
}

.orbiss-header:not(.orbiss-header--scrolled) {
  background-color: transparent !important;
  box-shadow: none !important;
}


.hh5-hero {
  --hh5-heading-font: 'akzidenz-grotesk', 'Akzidenz-Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --hh5-body-font: 'brandon-grotesque', 'Brandon Grotesque', 'Helvetica Neue', Arial, sans-serif;

  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  margin-top: calc(-1 * var(--orbiss-header-h, 64px));
  padding-top: var(--orbiss-header-h, 64px);
  box-sizing: border-box;
  overflow: hidden;
  background-color: var(--hh5-bg, #f7f7f7);
}

.hh5-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 600px;
  height: 500px;
  max-width: 60vw;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse at 0% 0%, var(--hh5-vignette, rgba(111, 111, 232, 0.1)) 0%, transparent 70%);
}

.hh5-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--hh5-max-w, 1280px);
  margin: var(--hh5-mt, 0) auto var(--hh5-mb, 0);
  padding: var(--hh5-pt, 48px) var(--hh5-pr, 24px) var(--hh5-pb, 64px) var(--hh5-pl, 24px);
  box-sizing: border-box;
}


@media (min-width: 1024px) {
  .hh5-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
}

.hh5-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hh5-grid {
    grid-template-columns: 1fr 1fr;
    gap: 88px;
  }
}

.hh5-content {
  min-width: 0;
}

.hh5-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  margin-bottom: var(--hh5-badge-mb, 32px);
  font-size: var(--hh5-badge-size, 11px);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 9999px;
  border: 1px solid var(--hh5-badge-border, rgba(58, 46, 123, 0.2));
  background-color: var(--hh5-badge-bg, rgba(58, 46, 123, 0.05));
  color: var(--hh5-badge-color, #3a2e7b);
  font-family: var(--hh5-body-font);
}


.hh5-heading {
  font-family: var(--hh5-heading-font);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--hh5-h-color, #111827);
  margin: 0 0 var(--hh5-h-mb, 24px);
}

.hh5-heading__line1,
.hh5-heading__accent {
  display: inline;
  font-family: var(--hh5-heading-font);
}

.hh5-heading__line1 { font-size: var(--hh5-h-size, 56px); }
.hh5-heading__accent { font-size: var(--hh5-h-accent-size, 56px); }


.hh5-heading__accent {
  color: var(--hh5-accent-solid, #4a3fc4);
}

@supports ((background-clip: text) or (-webkit-background-clip: text)) {
  .hh5-heading__accent {
    background-image: var(--hh5-accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

@media (forced-colors: active) {
  .hh5-heading__accent {
    background-image: none;
    color: CanvasText;
    -webkit-text-fill-color: CanvasText;
  }
}

.hh5-subtext {
  font-size: var(--hh5-sub-size, 18px);
  color: var(--hh5-sub-color, #6b7280);
  max-width: var(--hh5-sub-maxw, 460px);
  margin: 0 0 var(--hh5-sub-mb, 40px);
  line-height: 1.65;
  font-family: var(--hh5-body-font);
}

.hh5-btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}


.hh5-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: -0.01em;
  line-height: 1;
  box-sizing: border-box;
  font-family: var(--hh5-body-font);
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease,
              border-color 0.2s ease, color 0.2s ease;
}

.hh5-btn,
.hh5-btn:hover,
.hh5-btn:focus,
.hh5-btn:active,
.hh5-btn:visited {
  text-decoration: none !important;
}

.hh5-btn--primary {
  background-color: var(--hh5-btn-p-bg, #3a2e7b);
  color: var(--hh5-btn-p-color, #ffffff);
  font-size: var(--hh5-btn-p-size, 15px);
  border-radius: var(--hh5-btn-p-radius, 100px);
  padding: var(--hh5-btn-p-py, 14px) var(--hh5-btn-p-px, 28px);
}

.hh5-btn--primary:hover,
.hh5-btn--primary:focus {
  background-color: var(--hh5-btn-p-hover-bg, #2e2463);
  color: var(--hh5-btn-p-hover-color, #ffffff);
  transform: scale(1.05);
}

.hh5-btn--secondary {
  background: transparent;
  border: 1.5px solid var(--hh5-btn-s-border, #d1d5db);
  color: var(--hh5-btn-s-color, #374151);
  font-size: var(--hh5-btn-s-size, 15px);
  border-radius: var(--hh5-btn-s-radius, 100px);
  padding: var(--hh5-btn-s-py, 14px) var(--hh5-btn-s-px, 28px);
}

.hh5-btn--secondary:hover,
.hh5-btn--secondary:focus {
  border-color: var(--hh5-btn-s-hover-border, #3a2e7b);
  color: var(--hh5-btn-s-hover-color, #3a2e7b);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.09);
}

.hh5-btn--video {

  font-family: var(--hh5-body-font);
  cursor: pointer;
}

.hh5-mosaic {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(8, 1fr);
  gap: 16px;
  height: 520px;
}
@media (min-width: 768px) {
  .hh5-mosaic {
    display: grid;
  }
}
@media (min-width: 1024px) {
  .hh5-mosaic {
    height: 600px;
  }
}

.hh5-mosaic__img {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #e5e7eb;
}


.hh5-mosaic__frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hh5-mosaic__frame.is-active {
  opacity: 1;
  z-index: 1;
}

.hh5-mosaic__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hh5-mosaic__img--1 { grid-column: 1; grid-row: 1 / span 3; }
.hh5-mosaic__img--2 { grid-column: 2; grid-row: 2 / span 5; }
.hh5-mosaic__img--3 { grid-column: 3; grid-row: 1 / span 4; }
.hh5-mosaic__img--4 { grid-column: 1; grid-row: 4 / span 5; }
.hh5-mosaic__img--5 { grid-column: 3; grid-row: 5 / span 4; }

@keyframes hh5-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hh5-animate-up {
  opacity: 0;
  animation: hh5-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hh5-animate-up--d1 { animation-delay: 0.12s; }
.hh5-animate-up--d2 { animation-delay: 0.2s; }
.hh5-animate-up--d3 { animation-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .hh5-animate-up { animation: none; opacity: 1; }
}

.hh5-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}

.hh5-video-modal[hidden] { display: none; }

.hh5-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hh5-video-modal--open .hh5-video-modal__backdrop { opacity: 1; }

.hh5-video-modal__container {
  position: relative;
  width: 100%;
  max-width: 900px;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hh5-video-modal--open .hh5-video-modal__container {
  opacity: 1;
  transform: scale(1);
}

.hh5-video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  box-sizing: border-box;
}

.hh5-video-modal__close:hover { background: rgba(255, 255, 255, 0.25); }

.hh5-video-modal__video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.hh5-video-modal__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: #000;
  outline: none;
}


@media (max-width: 767px) {
  .hh5-hero__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hh5-heading__line1,
  .hh5-heading__accent {
    font-size: clamp(1.75rem, 7.5vw, 2.5rem);
  }
  .hh5-subtext { max-width: 100%; }
  .hh5-btns { width: 100%; }
  .hh5-btn { flex: 1 1 auto; justify-content: center; }
}

@media (max-width: 767px) {
  /* The badge is inline-level so it hugs its text; making it a fitted block
     lets the auto margins centre the pill alone, leaving the heading and copy
     beside it left-aligned. */
  .hh5-badge {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  /* Video overlay only: the dialog is close to full width here, so the close
     control is scaled down to give the frame more of the screen. Kept above
     the WCAG 2.2 AA 24px target minimum. */
  .hh5-video-modal__close {
    top: -38px;
    width: 32px;
    height: 32px;
  }

  .hh5-video-modal__close svg {
    width: 16px;
    height: 16px;
  }
}
