.otik-sequence-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: visible;
}

.otik-sequence-sticky {
  position: relative;
  width: 100%;
}

.otik-sequence-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 28px;
  overflow: hidden;
  background: #f3f3f3;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

#otik-sequence-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.otik-sequence-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 28px;
  box-sizing: border-box;
}

.otik-copy {

  width: 32%;

  max-width: 200px;

}

.otik-copy-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  color: var(--step-color, #2f2f2f);
padding: 30px;
}

.otik-copy-item.is-active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.otik-copy-kicker {

  margin-bottom: 6px;

  font-size: 10px;

  letter-spacing: 0.14em;

}

.otik-copy-item h2 {

  margin: 0 0 6px;

  font-size: clamp(20px, 1.6vw, 26px);

  line-height: 0.95;

  letter-spacing: -0.04em;

}

.otik-copy-item p {

  font-size: clamp(12px, 0.5vw, 14px)!important;

  line-height: 1;

  max-width: 25ch;

}

@media (max-width: 999px) {
  .otik-sequence-frame {
    aspect-ratio: 4 / 3;
    border-radius: 22px;
  }

  .otik-sequence-overlay {
    padding: 22px;
  }

  .otik-copy {
    width: 52%;
    max-width: 220px;
  }
}

@media (max-width: 767px) {
  .otik-sequence-section {
    min-height: auto;
    display: block;
  }

  .otik-sequence-sticky {
    position: relative;
    width: 100%;
  }

  .otik-sequence-frame {
    aspect-ratio: auto;
    height: auto;
    min-height: 0;
    border-radius: 18px;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .otik-sequence-overlay {
    position: relative;
    inset: auto;
    display: block;
    padding: 0 0 18px 0;
    pointer-events: none;
  }

  .otik-copy {
    position: relative;
    width: 100%;
    max-width: none;
    min-height: 0;
  }

  .otik-copy-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(6px);
    visibility: hidden;
  }

  .otik-copy {
    min-height: 210px;
  }

  .otik-copy-item.is-active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .otik-copy-kicker {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .otik-copy-item h2 {
    margin: 0 0 10px;
    font-size: clamp(20px, 5vw, 28px);
    line-height: 0.94;
    letter-spacing: -0.045em;
  }

  .otik-copy-item p {
    font-size: 14px;
    line-height: 1.32;
    max-width: 80%!important;
  }

  #otik-sequence-canvas {
    display: block;
    width: 100%;
    height: auto;
  }

  .otik-sequence-frame {
    background: #f3f3f3;
    border-radius: 18px;
    overflow: hidden;
  }

  .otik-sequence-frame canvas {
  width: 100%;
  height: 52vh !important;
  min-height: 340px;
  max-height: 440px;
  display: block;
}
}