

/* Mobile: средний zoom — фигура видна крупно, но не обрезается */
@media (max-width: 768px) {
  section#hero div[style*="background-image"] {
    background-size: 264% auto !important;
    background-position: 42% 14% !important;
    background-repeat: no-repeat !important;
  }
  /* Bottom fade на мобиле сильнее — больше места под текст */
  section#hero::after {
    height: 60%;
    background: linear-gradient(180deg,
      transparent 0%,
      rgba(0,0,0,0.30) 25%,
      rgba(0,0,0,0.65) 55%,
      rgba(0,0,0,0.92) 80%,
      #000 100%);
  }
}

/* Typewriter caret */
.dt-tw-hidden { visibility: hidden; }
.dt-tw-caret {
  display: inline-block;
  width: 0.06em;
  height: 0.85em;
  margin-left: 0.06em;
  background: #FF4600;
  vertical-align: text-bottom;
  box-shadow: 0 0 8px rgba(255,255,255,0.6);
  animation: dt-tw-blink 0.7s steps(1) infinite;
}
@keyframes dt-tw-blink {
  0%, 49%   { opacity: 1; }
  50%, 100% { opacity: 0; }
}
