/* =========================================================
   Aleksandra Pacuska — Portfolio (praca zaliczeniowa)
   Style główne — wersja webowa + telefonowa (RWD)
   Fonty: Inter (UI) + Sacramento (podpis)
   ========================================================= */

:root {
  /* --- KOLORY BAZOWE --- */
  --blue:        #000DFF;   /* web — niebieski */
  --blue-dark:   #0009c4;
  --orange:      #FF9500;   /* web — pomarańczowy */
  --orange-deep: #e68600;
  --cyan:        #5DE7FF;   /* mobile — cyjan */
  --maroon:      #4C051F;   /* mobile — bordo */
  --maroon-deep: #360316;
  --dark:        #161616;
  --text:        #3a3a3a;
  --muted:       #8a8a8a;
  --card:        #f1f1f1;
  --card-line:   #e3e3e3;
  --white:       #ffffff;

  --maxw: 1180px;
  --radius: 22px;
  --radius-sm: 14px;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --shadow: 0 18px 40px rgba(0, 0, 0, .08);

  /* --- AKCENTY MOTYWU (web). Przełączane jednym progiem w wersji mobile --- */
  --title-blue:   var(--blue);
  --title-orange: var(--orange);
  --nav-bg:       var(--blue);
  --alt-bg:       var(--blue);     /* tło sekcji "O mnie"/"Realizacje" */
  --circle:       var(--orange);   /* koło za zdjęciem      */
  --sign:         var(--orange);   /* podpis odręczny       */
  --stat-num:     var(--orange);   /* liczby 500+/50+/5+    */
  --marq-bg:      var(--orange);   /* tło paska marquee     */
  --marq-text:    var(--blue);     /* tekst marquee         */
  --dash-col:     var(--orange);   /* myślnik przy etykietach */
  --ico-bg:       var(--orange);   /* kółka ikon (edu/kontakt) */
  --corner:       var(--orange);   /* narożniki dymka       */
  --blob:         var(--blue);     /* kleks za zdjęciem hero */
  --foot-bg:      var(--blue);     /* tło stopki            */
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Dostępność — wyraźny focus dla klawiatury */
a:focus-visible, button:focus-visible,
input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Placeholdery / zdjęcia ---------- */
.photo-label,
.logo-slot {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(0, 0, 0, .38);
  text-transform: uppercase;
}
.project-thumb {
  background:
    repeating-linear-gradient(45deg, #ededed 0 14px, #e4e4e4 14px 28px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Typografia wspólna ---------- */
.section { padding: 96px 0; }
.section-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.01em;
  margin-bottom: 48px;
}
.section-title.blue   { color: var(--title-blue);   transition: color .6s ease; }
.section-title.orange { color: var(--title-orange); transition: color .6s ease; }
.section-title.center { text-align: center; }

/* Etykiety sekcji — myślnik wg motywu (web: pomarańczowy, mobile: cyjan) */
.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--dark);
}
.dash {
  width: 22px; height: 3px; border-radius: 3px;
  background: var(--dash-col); display: inline-block; flex: 0 0 auto;
  transition: background-color .6s ease;
}
.about .label, .projects .label { color: var(--white); }
.contact .label { color: var(--dark); }

/* ---------- Przyciski ---------- */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 40px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .6s ease;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--orange);
}
.btn-maroon {
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--orange);
}
.btn-maroon:hover { background: var(--blue-dark); }
/* Przycisk hero — niebieski z pomarańczowym cieniem */
.btn-hero {
  background: var(--blue); color: var(--white);
  border: 2px solid var(--orange);
  box-shadow: none;
}
.btn-hero:hover { background: var(--blue-dark); }

/* =========================================================
   NAVBAR — pasek-pigułka z białym CTA (ekran 1)
   ========================================================= */
.navbar { position: sticky; top: 0; z-index: 50; padding-top: 22px; background: transparent; }
.nav-bar {
  position: relative;
  display: flex; align-items: center; gap: 28px;
  background: var(--nav-bg);
  border-radius: 18px;
  padding: 0 0 0 34px;
  height: 64px;
  transition: background-color .6s ease;
}
.logo { font-size: 24px; font-weight: 800; color: var(--white); letter-spacing: -.01em; }
.logo span { color: var(--cyan); }
.nav-links { display: flex; align-items: center; gap: 30px; margin-left: 20px; }
.nav-links a { font-weight: 500; color: var(--white); font-size: 15px; }
.nav-links a:hover { color: var(--cyan); }
.nav-cta {
  margin-left: auto;
  background: var(--white); color: var(--dark) !important;
  font-weight: 600; font-size: 15px;
  padding: 20px 30px; border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .15);
  align-self: stretch; display: flex; align-items: center;
}
.nav-cta:hover { color: var(--blue) !important; }

/* checkbox sterujący menu mobilnym — ukryty (bez JS) */
.nav-cb { position: absolute; width: 0; height: 0; opacity: 0; pointer-events: none; }
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 3px; border-radius: 3px; background: var(--white);
  transition: .25s;
}
.nav-cb:checked ~ .nav-bar .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-cb:checked ~ .nav-bar .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-cb:checked ~ .nav-bar .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =========================================================
   HERO (ekran 2)
   ========================================================= */
.hero { position: relative; padding: 60px 0 0; overflow: hidden; }
.hero-inner {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 40px; align-items: center; min-height: 560px;
}
/* Dymek "Cześć!" z narożnikami (ekran 2) */
.bubble {
  position: relative; display: inline-block;
  background: var(--white); color: var(--dark);
  font-weight: 600; font-size: 18px;
  padding: 14px 30px; border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  margin-bottom: 28px;
}
.bubble .corner {
  position: absolute; width: 13px; height: 13px;
  background: var(--corner); border-radius: 3px;
  transition: background-color .6s ease;
}
.bubble .corner.tl { top: -6px; left: -6px; }
.bubble .corner.tr { top: -6px; right: -6px; }
.bubble .corner.bl { bottom: -6px; left: -6px; }
.bubble .corner.br { bottom: -6px; right: -6px; }

.hero-text h1 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800; line-height: 1.22; letter-spacing: -.01em;
  color: var(--dark); margin-bottom: 22px;
}
.hero-text .hl-name {
  color: var(--orange); font-style: italic; text-decoration: underline;
  text-underline-offset: 3px; transition: color .6s ease;
}
.hero-sub { font-size: 16px; color: var(--text); margin-bottom: 32px; max-width: 440px; }

.hero-visual { position: relative; min-height: 480px; display: flex; align-items: center; justify-content: center; }
/* HERO — sama grafika (PNG z przezroczystym tłem), bez kształtu pod spodem */
.hero-photo {
  position: relative; z-index: 1;
  display: block;
  width: 100%; max-width: 640px;
  margin: 0 auto;
}
.hero-photo img { display: block; width: 100%; height: auto; }
/* zamiana zdjęć desktop <-> mobile (czysty CSS) — wyższa waga niż .hero-photo img */
.hero-photo .ph-mobile, .about-photo .ph-mobile { display: none; }
.badge {
  position: absolute; z-index: 2;
  font-weight: 600; font-size: 14px;
  padding: 9px 18px; border-radius: 40px;
  white-space: nowrap; box-shadow: var(--shadow);
  transition: background-color .6s ease, color .6s ease;
}
.badge-orange { background: var(--orange); color: var(--dark); }
.badge-blue   { background: var(--blue);   color: var(--white); }
.badge-1 { top: 6%;  right: -2%; }   /* Projektowanie graficzne */
.badge-2 { bottom: 32%; left: -8%; } /* Montaż wideo */
.badge-3 { bottom: 18%; left: 2%; }  /* Grafika 3D — nad paskiem */
.badge-4 { bottom: 10%; right: 0; }  /* UX/UI */


/* =========================================================
   MARQUEE — animowany, przewijany (ekran 3, Inter Medium 40)
   ========================================================= */
.marquee {
  position: relative;
  z-index: 5;
  width: 100%;
  background: var(--marq-bg);
  color: var(--marq-text);
  overflow: hidden;
  margin: -52px 0 48px;   /* na prosto, nachodzi na dół zdjęcia (nie na przycisk) */
  padding: 16px 0;
  transition: background-color .6s ease, color .6s ease;
}
.marquee-track {
  display: flex; width: max-content;
  animation: scroll 26s linear infinite;
}
.marquee-track span {
  font-weight: 500; font-size: 26px; padding-right: 24px; white-space: nowrap;
  line-height: 1.1;
}
.marquee i { color: currentColor; font-style: normal; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* =========================================================
   USŁUGI — poziomy suwak przewijający kafelki (ekran 4)
   ========================================================= */
/* Ręcznie przewijana karuzela (suwak podąża za scrollem) */
.loop {
  overflow-x: auto; overflow-y: hidden; width: 100%;
  scrollbar-width: none; -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.loop:active { cursor: grabbing; }
.loop::-webkit-scrollbar { display: none; }
.loop-track { display: flex; gap: 26px; width: max-content; }
.loop-track > * { flex: 0 0 auto; }
.cards-loop .service-card { flex: 0 0 320px; }

.cards-3 { gap: 26px; }
.cards-3 .service-card { flex: 0 0 calc((100% - 52px) / 3); }
.service-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 34px 30px;
  min-height: 220px;
}
.service-card h3 {
  font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 14px;
}
.service-card p { font-size: 15px; color: var(--text); }

/* Wąski suwak-pigułka (pozycja sterowana JS, płynnie) */
.scrollbar {
  margin: 34px auto 0; width: 220px; max-width: 70%;
  height: 6px; border-radius: 6px; background: #e6e6e6; position: relative;
  cursor: pointer;
}
.scrollbar span {
  position: absolute; left: 0; top: 0; height: 100%;
  width: 30%; border-radius: 6px; background: var(--nav-bg);
  transition: background-color .6s ease;
}

/* =========================================================
   O MNIE (ekran 5)
   ========================================================= */
.about { background: var(--alt-bg); color: var(--white); transition: background-color .6s ease; }
.about p { color: rgba(255, 255, 255, .9); font-size: 15px; margin-bottom: 16px; }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
}
.about-photo-wrap { position: relative; text-align: center; }
/* Gotowe okrągłe zdjęcie z pliku (bez kolorowego koła i bez przycinania) */
.about-photo {
  position: relative; z-index: 1;
  display: block;
  width: 430px; max-width: 90%; margin: 0 auto;
}
.about-photo img { width: 100%; height: auto; display: block; }
.about .signature {
  font-family: 'Sacramento', cursive;
  font-size: clamp(48px, 6.3vw, 82px); line-height: .9;
  color: var(--sign); margin: 36px 0 30px; white-space: nowrap;
  transition: color .6s ease;
}
.stats { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; align-items: flex-start; }
.stat { display: flex; flex-direction: column; }
.stat .num { font-size: 60px; font-weight: 800; color: var(--stat-num); line-height: 1; transition: color .6s ease; }
.stat .cap { font-size: 14px; color: rgba(255, 255, 255, .85); margin-top: 6px; max-width: 130px; }

/* =========================================================
   PROGRAMY — prawdziwe logotypy + przewijany suwak (ekran 6)
   ========================================================= */
.skills {
  gap: 22px;
  flex-wrap: nowrap;
  justify-content: flex-start;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
}
.skill {
  width: 150px; padding: 32px 0;
  background: #f4f4f4; border-radius: 70px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  box-shadow: inset 0 0 0 1px #ececec;
}
.app-icon {
  width: 88px; height: 88px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: transparent;
}
.app-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.skill .pct { font-size: 28px; font-weight: 800; color: var(--dark); }

/* =========================================================
   MOJA ŚCIEŻKA / EDUKACJA — ikony czarne, płaskie (ekran 7)
   ========================================================= */
.path-eyebrow { font-size: .62em; font-weight: 700; }
.education .section-title { margin-bottom: 50px; }
.edu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-bottom: 26px; }
.edu-card {
  background: var(--card); border-radius: var(--radius); padding: 28px 30px;
}
.edu-head {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 17px; color: var(--dark);
  padding-bottom: 16px; margin-bottom: 18px; border-bottom: 1px solid var(--card-line);
}
.edu-ico {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--ico-bg);
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto; transition: background-color .6s ease;
}
.edu-ico svg { width: 18px; height: 18px; fill: #000; display: block; }
.timeline li { padding: 12px 0 12px 16px; border-left: 2px solid #d8d8d8; }
.timeline li + li { margin-top: 6px; }
.timeline .date { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .03em; }
.timeline h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin: 2px 0 3px; }
.timeline p { font-size: 13px; color: var(--text); }
.certs { margin-top: 4px; }
.cert-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

/* =========================================================
   REALIZACJE
   ========================================================= */
.projects { background: var(--alt-bg); color: var(--white); transition: background-color .6s ease; }
.projects-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.project-thumb {
  width: 100%; aspect-ratio: 16 / 10; border-radius: var(--radius);
  overflow: hidden;
}
.project-thumb.t1 { background: linear-gradient(135deg, #f5a623, #d94a2b); }
.project-thumb.t2 { background: linear-gradient(135deg, #1b8a5a, #0b3d2e); }
.project-thumb.t3 { background: linear-gradient(135deg, #3a3a55, #15151f); }
.project-thumb.t4 { background: linear-gradient(135deg, #6a1b3a, #2a0915); }
.project-thumb .photo-label { color: rgba(255, 255, 255, .8); }
.project-cap { font-size: 14px; color: rgba(255, 255, 255, .9); margin-top: 14px; font-style: italic; }

/* =========================================================
   KONTAKT — ikony czarne w kółkach (ekran 8)
   ========================================================= */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info p { font-size: 15px; color: var(--text); margin-bottom: 26px; }
.contact-list li {
  display: flex; align-items: center; gap: 14px;
  font-weight: 600; color: var(--dark); margin-bottom: 16px;
}
.contact-list .ci {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--ico-bg);
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto; transition: background-color .6s ease;
}
.contact-list .ci svg { width: 18px; height: 18px; fill: #000; display: block; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label {
  display: flex; flex-direction: column; gap: 7px;
  font-size: 13px; font-weight: 600; color: var(--dark);
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font); font-size: 15px;
  padding: 13px 16px; border: 1px solid #e2e2e2; border-radius: 10px;
  background: #f6f6f6; color: var(--dark); resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: 2px solid var(--blue); background: #fff; }
.contact-form .btn { align-self: flex-start; margin-top: 6px; }

/* =========================================================
   FOOTER (ekran 8)
   ========================================================= */
.footer { background: var(--foot-bg); color: var(--white); position: relative; transition: background-color .6s ease, color .6s ease; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px; padding-bottom: 26px; flex-wrap: wrap; gap: 8px;
  font-size: 14px;
}
.footer strong { color: var(--orange); }
.footer-links a:hover { color: var(--cyan); }

/* =========================================================
   RESPONSYWNOŚĆ — TABLET
   ========================================================= */
@media (max-width: 980px) {
  .section { padding: 72px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 30px; min-height: auto; }
  .hero-visual { min-height: 440px; max-width: 420px; margin: 0 auto; }
  .about-inner { display: flex; flex-direction: column; gap: 36px; }
  .about-text { order: 1; }
  .about-photo-wrap { order: 2; }
  .stats { flex-direction: row; justify-content: space-between; align-items: flex-start; gap: 16px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .cert-cols { grid-template-columns: 1fr 1fr; }
  .marquee-track span { font-size: 22px; }
}

/* =========================================================
   RESPONSYWNOŚĆ — MOBILE (dokładnie wg screenów: bordo + cyjan)
   ========================================================= */
@media (max-width: 720px) {
  /* === cała paleta zmienia się naraz (płynnie) === */
  :root {
    --title-blue:   var(--maroon);
    --title-orange: var(--maroon);
    --nav-bg:       var(--cyan);
    --alt-bg:       var(--maroon);
    --circle:       var(--cyan);
    --sign:         var(--cyan);
    --stat-num:     var(--cyan);
    --marq-bg:      var(--maroon);
    --marq-text:    var(--cyan);
    --dash-col:     var(--cyan);
    --ico-bg:       var(--cyan);
    --corner:       var(--maroon);
    --blob:         var(--cyan);
    --foot-bg:      var(--cyan);
  }
  /* tytuły na bordowym tle -> cyjan */
  .about .section-title.orange, .projects .section-title.orange { color: var(--cyan); }

  /* zamiana zdjęć na wersje mobilne */
  .hero-photo .ph-desktop, .about-photo .ph-desktop { display: none; }
  .hero-photo .ph-mobile, .about-photo .ph-mobile { display: block; }

  /* nav */
  .nav-toggle { display: flex; order: 1; }
  .nav-bar { background: var(--nav-bg); padding: 0 20px; height: 54px; border-radius: 16px; justify-content: space-between; gap: 0; }
  .logo { color: var(--white); margin-left: auto; order: 2; }
  .logo span { color: var(--white); }
  .nav-toggle span { background: var(--white); }
  .nav-cta { display: none; }
  .nav-links {
    position: absolute; top: calc(100% + 6px); left: 0; right: auto;
    flex-direction: column; gap: 0; margin: 0; width: 230px;
    background: var(--white); border-radius: 16px;
    overflow: hidden; box-shadow: 0 18px 34px rgba(0,0,0,.16);
    transform: scaleY(0); transform-origin: top; opacity: 0;
    transition: transform .25s ease, opacity .2s ease;
  }
  .nav-cb:checked ~ .nav-bar .nav-links { transform: scaleY(1); opacity: 1; }
  .nav-links a {
    width: 100%; padding: 15px 24px; text-align: center;
    color: var(--dark); font-weight: 600; border-bottom: 1px solid #f0f0f0;
  }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a:hover { color: var(--maroon); }

  /* etykiety */
  .label { color: var(--dark); }
  .about .label { color: var(--white); }
  .projects .label { color: var(--white); }

  /* hero */
  .hl-name { color: var(--maroon); }
  .btn-hero { background: var(--maroon); border-color: var(--cyan); box-shadow: none; }
  .btn-maroon { background: var(--maroon); border-color: var(--cyan); }
  .btn-outline-light { border-color: var(--cyan); }
  .badge-blue { background: var(--cyan); color: var(--maroon); }
  .badge-orange { background: var(--maroon); color: var(--white); }

  /* hero mobile: zdjęcie nie wystaje, pasek minimalnie nachodzi, badge poza twarzą */
  .hero-photo { max-width: 360px; }
  .marquee { margin-top: -8px; }
  .badge-1 { top: -3%; right: -2%; }   /* „Projektowanie graficzne" nad głową */
  .badge-3 { bottom: 14%; left: 2%; }

  /* suwaki */
  .cards-3 { gap: 16px; }
  .cards-3 .service-card { flex: 0 0 84%; min-height: auto; }
  .skills { gap: 16px; }

  /* siatki */
  .edu-grid { grid-template-columns: 1fr; }
  .cert-cols { grid-template-columns: 1fr; gap: 6px; }
  .projects-grid { grid-template-columns: 1fr; gap: 22px; }

  /* O mnie — kolejność: tekst, liczby, potem zdjęcie (jak na screenie) */
  .about-inner { display: flex; flex-direction: column; gap: 36px; }
  .about-text { order: 1; text-align: left; }
  .about-photo-wrap { order: 2; }
  .stats { flex-direction: row; justify-content: space-between; gap: 12px; align-items: flex-start; }
  .stat .num { font-size: 40px; }
  .stat .cap { max-width: none; }

  /* stopka na cyjanie — ciemny tekst dla czytelności (poprawka kontrastu) */
  .footer { color: var(--maroon); }
  .footer strong { color: var(--maroon); }
  .footer-links a:hover { color: var(--white); }
  .footer-inner { flex-direction: column; text-align: center; }

  .section-title { margin-bottom: 32px; }
  .marquee-track span { font-size: 17px; }
}

@media (max-width: 420px) {
  .container { padding: 0 18px; }
  .hero-photo { max-width: 360px; }
  .badge { font-size: 12px; padding: 7px 13px; }
  .stat .num { font-size: 34px; }
  .about .signature { font-size: 46px; }
  .cards-3 .service-card { flex: 0 0 88%; }
}

/* =========================================================
   DOSTĘPNOŚĆ — ograniczenie ruchu
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .marquee-track,
  .loop-track,
  .scrollbar span { animation: none !important; }
  .loop-track { transform: none !important; }
  * { transition-duration: .01ms !important; }
}
