/* Modern motion layer */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-anim > *,
  .hero-game,
  .eyebrow span,
  .marquee-track {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .55s cubic-bezier(.22, 1, .36, 1),
    transform .55s cubic-bezier(.22, 1, .36, 1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }
.reveal-d5 { transition-delay: .4s; }

.hero-anim > * {
  opacity: 0;
  transform: translateY(22px);
  animation: heroIn .85s cubic-bezier(.22, 1, .36, 1) forwards;
}
.hero-anim > *:nth-child(1) { animation-delay: .05s; }
.hero-anim > *:nth-child(2) { animation-delay: .14s; }
.hero-anim > *:nth-child(3) { animation-delay: .22s; }
.hero-anim > *:nth-child(4) { animation-delay: .3s; }
.hero-anim > *:nth-child(5) { animation-delay: .38s; }
.hero-anim > *:nth-child(6) { animation-delay: .46s; }
.hero-anim > *:nth-child(7) { animation-delay: .54s; }
@keyframes heroIn {
  to { opacity: 1; transform: none; }
}

.hero-game {
  opacity: 1;
  transform: none;
}

.eyebrow span {
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.eyebrow span:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  background: rgba(198, 242, 109, 0.1);
  box-shadow: 0 0 18px rgba(198, 242, 109, 0.25);
}

.btn {
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.22) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}
.btn:hover::after { transform: translateX(120%); }
.btn-main:hover {
  box-shadow: 0 0 28px rgba(198, 242, 109, 0.45);
}
.btn-ghost:hover {
  box-shadow: 0 0 20px rgba(122, 209, 179, 0.2);
}

.stat {
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.stat:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 242, 109, 0.4);
  box-shadow: 0 12px 32px rgba(0,0,0,.25), 0 0 24px rgba(198, 242, 109, 0.12);
}
.stat b {
  transition: color .3s ease;
}

.section-head h2 {
  position: relative;
  display: inline-block;
}
.section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transition: width .8s cubic-bezier(.22, 1, .36, 1);
}
.section-head.is-in h2::after { width: 72%; }

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  margin: 8px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  background: rgba(8, 16, 13, 0.35);
}
.marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  color: var(--muted);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-track span::before {
  content: "◆";
  color: var(--accent);
  margin-right: 28px;
  font-size: .65rem;
  opacity: .7;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.feature-card,
.seo-card,
.faq-item,
.skill,
.case {
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.feature-card:hover,
.seo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.3), 0 0 36px rgba(122, 209, 179, 0.12);
}
.skill:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,.25), 0 0 22px rgba(198, 242, 109, 0.12);
}

.trust-row span {
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.trust-row span:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 16px rgba(122, 209, 179, 0.3);
}
