:root {
  --text: #0A5E61;
}

.hero,
.hero .word,
.hero .badge {
  font-family: 'Poppins', sans-serif;
}

.div-block-204 {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

@media (max-width: 900px) {
  .div-block-204 {
    display: none !important;
  }
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
}

.hero .split {
  display: grid;
  gap: clamp(10px, 1.6vw, 10px);
  align-items: center;
  transform-origin: center;
  user-select: none;
}

.hero .word {
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
  text-transform: uppercase;
  white-space: nowrap;
}

.hero .row-top .word,
.hero .row-bottom .word {
  font-size: clamp(44px, 8vw, 146px);
}

.hero .row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  white-space: nowrap;
}

.hero .word.sost {
  position: relative;
  display: inline-block;
  padding-left: 0;
}

/* STRIPS */
.hero .strip {
  --stripW: clamp(180px, 22vw, 520px);
  --stripH: clamp(56px, 7vw, 120px);
  flex: 0 0 auto;            
  width: var(--stripW);
  height: var(--stripH);
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .10);

  will-change: width, margin, transform, opacity;
  transition:
    width .95s cubic-bezier(.16, 1, .3, 1),
    margin .95s cubic-bezier(.16, 1, .3, 1),
    transform .95s cubic-bezier(.16, 1, .3, 1),
    opacity .6s ease;
}

.hero .strip video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .65s ease, transform .95s cubic-bezier(.16, 1, .3, 1);
  backface-visibility: hidden;
}


.hero.state-split .strip video {
  opacity: 1;
  transform: scale(1);
}


.hero.state-merge .strip {
  width: 0;
  margin: 0;
  opacity: 0;           
  transform: translateY(0) scaleY(.98);
  box-shadow: none;           
}


.hero.state-split .strip {
  width: var(--stripW);
  margin: 0 clamp(10px, 1.8vw, 22px);
  opacity: 1;
  transform: translateY(0) scaleY(1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .10);
}


.hero .strip-1 {
  transition-delay: .06s, .06s, .06s, .06s !important;
}

.hero .strip-2 {
  transition-delay: .18s, .18s, .18s, .18s !important;
}

.badge {
  background: #305BD1;
  color: #ffffff;
  font-size: clamp(16px, 1.6vw, 32px);
  padding: clamp(7px, 0.8vw, 12px) clamp(10px, 1vw, 16px);
  border-radius: 12px;
  transform: rotate(-18deg);
  transform-origin: center;
  line-height: 1;
}

.hero .word.sost {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 22px);
}

.badge-split {
  position: absolute;
  top: -0.55em;
  left: 0.15em;
  z-index: 3;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #305BD1;
  color: #fff;
  font-size: clamp(14px, 1.4vw, 26px);
  padding: clamp(6px, 0.7vw, 10px) clamp(10px, 1vw, 14px);
  border-radius: 12px;

  transform: rotate(-18deg);
  line-height: 1;
  pointer-events: none;
}

@media (max-width: 767px) {
  .hero .strip {
    --stripW: clamp(140px, 42vw, 320px);
    --stripH: clamp(46px, 16vw, 88px);
  }
}

.hero.state-split .row-top .strip {
  flex: 1;                 
  max-width: 58vw;         
}
